@charset "utf-8";
/* ----------------
色 color
---------------- */
:root {
  /* 主要な色 */
    --black: #231815;
    --white: #fff;
    --gray: #e9e9e9;
    --yellow: #f2ffc9;
    /* --purple: #660066; */
    --purple: rgb(61 23 84);
    --purple-light: #dcd1dc;
    --purple-light2: #c596cd;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    color: var(--black);
    background-color: var(--gray);
}
a {
    transition: all 0.3s;
}

input {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    width: 100%;
}

textarea {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    width: 100%;
    height: 100%;
    border: none;
}

body p.subttl {
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--purple);
    line-height: 1;
}

body .sec_ttl {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 50px;
    z-index: 5;
    position: relative;
}

body .sec_ttl h3 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: baseline;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 3.0rem;
}

body .sec_ttl h3.is_white {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 3.0rem;
    color: #fff;
}

body .sec_ttl h3 span {
    display: block;
    height: fit-content;
    line-height: 1;
    margin-right: 30px;
    font-size: 6.0rem;
    color: var(--purple);
}

body .sec_ttl h3.is_white span {
    font-size: 6.0rem;
    color: var(--purple-light2);
    margin-right: 30px;
}

body .sec_ttl .btn {
    display: flex;
    height: fit-content;
}

body .sec_ttl .btn a {
    text-align: center;
    position: relative;
    width: 250px;
    padding: 13px 10px;
    color: #fff;
    background-color: var(--purple);
    border: solid 2px var(--purple);
    overflow: visible;
}

body .sec_ttl .btn a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto 0;
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/common/arrow_white.svg) no-repeat;
    transition: all 0.3s;
}

body .sec_ttl .btn a:hover {
    color: var(--purple);
    background-color: #fff;
    border: solid 2px var(--purple);
}

body .sec_ttl .btn a:hover::before {
    right: 10px;
    background: url(../img/common/arrow_purple.svg) no-repeat;
}

body .t_center {
    text-align: center;
}

section .sec_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 60px;
}
@media (max-width: 768px) {
    body p.subttl {
        font-size: 1.6rem;
    }
    body .sec_ttl {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 25px;
    }
    body .sec_ttl h3 {
        font-size: 2rem;
    }
    body .sec_ttl h3.is_white {
        font-size: 2rem;
    }
    body .sec_ttl h3 span {
        margin-right: 15px;
        font-size: 4.0rem;
    }
    body .sec_ttl h3.is_white span {
        font-size: 4.0rem;
        margin-right: 15px;
    }
        section .sec_inner {
        margin: 0 auto;
        padding: 50px 15px;
    }
}

/* ----------------
おしらせ　カテゴリー色
---------------- */
.category {
    transition: all 0.3s;
    background-color: #fff;
}
.category.cate-obog {
    background-color: var(--yellow);
}
.category.cate-event {
    background-color: var(--purple-light);
}
.category.cate-other {
    background-color: #fff;
}

/* ----------------
header
---------------- */

#header {
    width: 100%;
    padding: 30px;
    position: fixed;
    z-index: 1100;
}
#header .header_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    position: relative;
    width: 100%;
    max-height: 120px;
    padding: 30px 75px;
    border: solid 2px var(--purple);
    background-color: #fff;
}
#header .header_inner .logo {
    display: flex;
    justify-content: center;
    align-content: center;    
    position: absolute;
    top: 0;
    left: 0;
    width: 10.5vw;
    min-width: 107px;
    height: 10.5vw;
    min-height: 107px;
    padding: 10px 20px 20px 20px;
    outline: solid 2px var(--purple);
    background-color: var(--purple);
    transition: all 0.3s;
    box-shadow: 0px 0px 15px -5px #000000;
}
#header .header_inner .logo:hover {
    outline: solid 2px var(--purple);
    background-color: #fff;
}
#header .header_inner .logo a {
    width: 100%;
    background: url(../img/common/logo_white.svg) no-repeat;
    background-position: center;
    background-size: 70%;
}
#header .header_inner .logo:hover a {
    width: 100%;
    background: url(../img/common/logo_black.svg) no-repeat;
    background-position: center;
    background-size: 70%;
}
#header .header_inner .header_menu {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-left: calc(10.5vw - 75px + 30px);
}
#header .header_inner .header_menu h1 {
    font-family: "Shippori Mincho", serif;
    font-size: 3.0rem;
    font-weight: 600;
}
#header .header_inner .header_list {
    font-size: 20px;
    font-weight: 700;
    align-items: center;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
#header .header_inner .header_list a {
    padding-bottom: 4px;
    background-image: linear-gradient(var(--purple));
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 0 2px;
    transition: color 0.6s;
    transition: background-size 0.6s;
}
#header .header_inner .header_list a:hover {
    color: var(--purple);
    background-position: bottom left;
    background-size: 100% 2px;
}

#header .header_inner .header_list a.is_current {
    color: var(--purple);
    background-position: bottom left;
    background-size: 100% 2px;
}

@media (max-width: 1700px) {
    #header .header_inner {
        padding: 20px 75px;
    }
    #header .header_inner .header_menu h1 {
        font-size: 2.5rem;
    }
    #header .header_inner .header_list {
        font-size: 16px;
    }
}
@media (max-width: 1480px) {
    #header {
        padding: 0;
        top: 0;
    }
    #header .header_inner {
        border: none;
        background-color: transparent;
    }
    #header .header_inner .header_list {
        display: none;
    }
    #header .header_inner .header_menu h1 {
        display: none;
    }
    #header .header_inner .logo {
        outline: transparent;
        border: solid 2px var(--purple);
        min-width: 150px;
        min-height: 150px;
        padding: 5px 10px 10px 10px;
    }
    #header .header_inner .logo:hover {
        outline: transparent;
        border: solid 2px var(--purple);
    }
}

@media (max-width: 768px) {
#header .header_inner .logo {
    min-width: 75px;
    min-height: 75px;
    padding: 2.5px 5px 5px 5px;
}
}

/*=========================================
#hamburger
=========================================*/
.hamburger {
    position: fixed;
    top: 55px;
    right: 60px;
    z-index: 9999;
    width: 50px;
    height: 50px;
}

.hamburger:hover {
    cursor: pointer;
}

.hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.hamburger span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background-color: var(--purple);
    transition: transform .3s;
}

.hamburger.is-active span {
    background-color: var(--purple);
}

.hamburger span:nth-child(1) {
    top: 30%;
}

.hamburger span:nth-child(2) {
    top: 60%;
}

.hamburger span:nth-child(3) {
    top: 90%;
}
.hamburger.is-active ~ .hamburger-cover {
    position: fixed;
    z-index: 1000;
    background: var(--black);
    opacity: 0.5;
    width: 100vw;
    height: 100vh;
    transition: all 0.3s;
}

@media (max-width: 1480px) {
    .hamburger {
    top: 0;
    right: 0;
    background-color: #fff;
    border: solid 2px var(--purple);
    width: 100px;
    height: 100px;
    transition: all 0.3s;
    }

.hamburger.is-active {
    width: 70px;
    height: 70px;
    
}

    .hamburger span {
    width: calc(100% - 45px);
    transition: all 0.3s;
}

.hamburger.is-active span {
    width: calc(100% - 35px);
    
}

.hamburger span:nth-child(1) {
    top: 30%;
}

.hamburger span:nth-child(2) {
    top: 50%;
}

.hamburger span:nth-child(3) {
    top: 70%;
}
}

@media (max-width: 768px) {
    .hamburger {
    width: 50px;
    height: 50px;
    }

.hamburger.is-active {
    width: 50px;
    height: 50px;
    
}

    .hamburger span {
    width: calc(100% - 25px);
}

.hamburger.is-active span {
    width: calc(100% - 25px);
    
}
}

/*=========================================
#drawer
=========================================*/
.drawer {
    position: fixed;
    top: 0;
    left: 100vw;
    z-index: 9998;
    width: calc(100% - 60vw);
    height: 100vh;
    background-color: #fff;
    border: solid 2px var(--purple);
    padding-left: 30px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    transition: all 0.5s;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-color: var(--purple) #fff;
    scrollbar-width: thin;
}

.drawer.is-active {
    left: 60vw;
}

.drawer-inner {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(100% - 60px);
}

.drawer__nav {
    width: 100%;
}

.drawer__nav .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    height: fit-content;
    padding-bottom: 100px;
}

.drawer__nav .btn a {
    text-align: center;
    position: relative;
    width: 250px;
    padding: 13px 10px;
    color: #fff;
    background-color: var(--purple);
    border: solid 2px var(--purple);
    overflow: visible;
}

.drawer__nav .btn a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto 0;
    width: 2rem;
    height: 1.5rem;
    background: url(../img/common/mail_white.svg) no-repeat;
    transition: all 0.3s;
}

.drawer__nav .btn a:hover {
    color: var(--purple);
    background-color: #fff;
    border: solid 2px var(--purple);
}

.drawer__nav .btn a:hover::before {
    background: url(../img/common/mail_purple.svg) no-repeat;
}

.drawer__list {
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}

.drawer__list .header_list_item {
    padding: 25px 0;
    padding-right: 50px;
    border-top: solid 2px var(--purple);
    position: relative;
    overflow: visible;
    font-weight: 700;
}

.drawer__list .header_list_item:first-child {
    margin-top: 120px;
}

.drawer__list .header_list_item:last-child {
    border-bottom: solid 2px var(--purple);
}

.drawer__list .header_list_item:hover {
    background-color: #e5dae7;
}

.drawer__list .header_list_item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto 0;
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/common/arrow_purple.svg) no-repeat;
    transition: all 0.3s;
}

.drawer__list .header_list_item:hover::before {
    right: 10px;
}

.sp-show {
    display: none;
  }

.drawer .language {
    padding: 0 20px 15px 50px;
    display: flex;
    gap: 35px;
    position: relative;
    margin-top: 20px;
}

.drawer .language li:first-child::before {
    content: "";
    display: block;
    background: url(../img/language.svg) no-repeat;
    background-size: cover;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0px;
    top: 0px;
}

.drawer .language li + li::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 1em;
    background-color: #1a2a51;
    top: auto;
    left: 87px;
    top: 5px;
}
.drawer .bottom {
    display: flex;
    gap: 30px;
    color: #1a2a51;
    font-size: 1.2rem;
    margin-top: 50px;
}
@media screen and (max-width: 1480px) {
    .sp-show {
    display: block;
    }
    .sp-none {
    display: none;
    }
}
@media screen and (max-width: 1480px) {
    .drawer {
        left: 100vw;
        width: calc(100% - 148px);
    }
    .drawer.is-active {
        left: 150px;
    }
}
@media screen and (max-width: 768px) {
    .drawer {
        width: calc(100% - 75px);
        padding-left: 15px;
    }
    .drawer.is-active {
        left: 75px;
    }
    .drawer-inner {
        align-items: center;
        width: calc(100% - 30px);
    }
.drawer__list .header_list_item {
    padding: 15px 0;
    padding-right: 25px;
}
.drawer__list .header_list_item:first-child {
    margin-top: 60px;
}
.drawer__nav .btn {
    padding-bottom: 50px;
}
.drawer__list .header_list_item::before {
    right: 10px;
    width: 1rem;
    height: 1.5rem;
}
}

/* ----------------
kv
---------------- */

#kv {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}
#kv .kv_inner {
    width: 100vw;
}
#kv .kv_inner .kv_text {
    position: absolute;
    z-index: 5;
    bottom: 0;
    width: 100vw;
    padding: 0 100px 3vw;
}
#kv .kv_inner .kv_text h2 {
    text-align: left;
    color: #fff;
    font-size: 8vw;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: -1vw;
    margin-bottom: 1vw;
}
#kv .kv_inner .kv_text h2.copy2 {
    text-align: right;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}
#kv .kv_inner .kv_text h2.copy1 br.is_sp,
#kv .kv_inner .kv_text h2.copy2 br.is_sp {
    display: none;
}
#kv .kv_inner .kv_img {
    margin-top: -5vw;
    background-size: contain;
    width: 100vw;
    height: 52vw;
}
#kv .kv_inner .kv_img.kv_01 {
    background: url(../img/top/kv_01.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
#kv .kv_inner .kv_img.kv_02 {
    background: url(../img/top/kv_02.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
#kv .kv_inner .kv_img.kv_03 {
    background: url(../img/top/kv_03.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
#kv .kv_inner .kv_img.kv_04 {
    background: url(../img/top/kv_04.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
#kv .kv_inner .slider::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 45%;
    background: linear-gradient(rgba(255, 255, 255, 0) 0, var(--purple) 300px);
}

/* dotsを丸くカスタマイズするCSS */
.dots-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    bottom: -30px;
}

.dots-wrap li {
    width: 15px;
    height: 15px;
    margin: 0 15px;
    background: #a6a6a6;
    border-radius: 50%;
    cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: var(--purple);
}
.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
@media (max-width: 1300px){
    #kv .kv_inner .slider::before {
    height: 50%;
}
}
@media (max-width: 1200px){
    #kv .kv_inner .slider::before {
    height: 60%;
}
#kv .kv_inner .kv_text {
    padding: 0 60px 5vw;
}
#kv .kv_inner .kv_text h2.copy2{
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}
}
@media (max-width: 1000px){
    #kv .kv_inner .slider::before {
    height: 65%;
}
}
@media (max-width: 900px){
    #kv .kv_inner .slider::before {
    height: 70%;
}
}
@media (max-width: 800px){
    #kv .kv_inner .slider::before {
    height: 80%;
}
}
@media (max-width: 768px){
    #kv .kv_inner .slider::before {
    height: 50%;
}
}
@media (max-width: 768px) {
#kv {
    overflow: visible;
}
#kv .kv_inner .kv_text {
    padding: 0 15px;
    bottom: -80px;
}
#kv .kv_inner .kv_text h2 {
    font-size: 6rem;
}
#kv .kv_inner .kv_text h2.copy2 {
    text-align: left;
    -webkit-text-stroke: 1.5px var(--purple);
    margin-bottom: 0;
}
#kv .kv_inner .kv_text h2.copy1 br.is_sp,
#kv .kv_inner .kv_text h2.copy2 br.is_sp {
    display: block;
}
    #kv .kv_inner .kv_img {
    display: flex;
    justify-content: center;
    margin-top: 0;
    width: 100vw;
    overflow: hidden;
    height: 100vw; 
    background-size: contain;
}
#kv .kv_inner .kv_img.kv_01 {
    background: url(../img/top/kv_01_sp.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
#kv .kv_inner .kv_img.kv_02 {
    background: url(../img/top/kv_02_sp.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
#kv .kv_inner .kv_img.kv_03 {
    background: url(../img/top/kv_03_sp.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
#kv .kv_inner .kv_img.kv_04 {
    background: url(../img/top/kv_04_sp.webp) no-repeat;
    background-size: cover;
    background-position: center;
}
    #kv .kv_inner .kv_img img {
        height: auto;
        width: 650px;
        max-width: 1200px;
    }
#kv .kv_inner .kv_img::before {
    content: none;
}
.dots-wrap {
    bottom: -25px;
    right: 10px;
    position: absolute;
}

.dots-wrap li {
    width: 7.5px;
    height: 7.5px;
    margin: 0 7.5px;
}
}
@media (max-width: 500px){
    #kv .kv_inner .slider::before {
    height: 65%;
}
}

/* ----------------
下層ページ　タイトル画像
---------------- */
#page_title {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}
#page_title .page_title_inner {
    width: 100vw;
}
#page_title .page_title_inner .page_title_text {
    position: absolute;
    z-index: 5;
    right: 0;
    left: 0;
    bottom: 100px;
    width: 100vw;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 100px;
}
#page_title .page_title_inner .page_title_text h2 {
    text-align: left;
    color: #fff;
    font-size: 16rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: -1vw;
    margin-bottom: 1vw;
}
#page_title .page_title_inner .page_title_text h2.copy1 {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}
#page_title .page_title_inner .page_title_text h2.copy2 {
    margin-top: 20px;
    font-size: 8rem;
}
#page_title .page_title_inner .page_title_text h2 br.is_sp {
    display: none;
}
#page_title .page_title_inner .page_title_img {
    width: 100vw;
    height: 648px;
    background-size: cover;
    background-position: center;
}
#page_title .page_title_inner .page_title_img::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(rgba(255, 255, 255, 0) 0, var(--purple) 300px);
}
@media (max-width: 853px) {
    #page_title .page_title_inner .page_title_text {
        bottom: 75px;
        padding: 0 30px;
    }
    #page_title .page_title_inner .page_title_text h2 {
        font-size: 10rem;
        margin-top: -1vw;
        margin-bottom: 1vw;
    }
    #page_title .page_title_inner .page_title_text h2.copy1 {
        color: transparent;
        -webkit-text-stroke: 1px #fff;
    }
    #page_title .page_title_inner .page_title_text h2.copy2 {
        margin-top: 20px;
        font-size: 5rem;
    }
    #page_title .page_title_inner .page_title_text h2 br.is_sp {
    display: block;
}
}
@media (max-width: 768px) {
    #page_title .page_title_inner .page_title_text {
        bottom: 50px;
        padding: 0 15px;
    }
    #page_title .page_title_inner .page_title_text h2 {
        font-size: 7rem;
        margin-top: -1vw;
        margin-bottom: 1vw;
    }
    #page_title .page_title_inner .page_title_text h2.copy1 {
        color: transparent;
        -webkit-text-stroke: 1px #fff;
    }
    #page_title .page_title_inner .page_title_text h2.copy2 {
        margin-top: 20px;
        font-size: 3.5rem;
    }
    #page_title .page_title_inner .page_title_img {
    height: 50vh;
}
}

/* ----------------
パンくず
---------------- */
.bread_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 60px;
}
.bread_inner .bread_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 0;
    display: inline;
    font-weight: 700;
}
.bread .bread_list li {
    display: inline;
}
.bread .bread_list li a {
    color: var(--purple);
}
.bread .bread_list li:not(:last-child):after {
    content: '＞';
    margin: 0 0.5em 0 1em;
}
@media (max-width: 768px) {
    .bread_inner {
        margin: 0 auto;
        padding: 25px 15px;
        font-size: 1.2rem;
    }
}


/* ----------------
news
---------------- */
#news {
    position: relative;
}

#news .news_inner .news_list .article:last-child {
    border-bottom: solid 2px var(--purple);
}

#news .news_inner .news_list .article a {
    display: flex;
    gap: 2vw;
    position: relative;
    border-top: solid 2px var(--purple);
    width: 100%;
    padding: 15px 0;
    transition: all 0.3s;
    font-size: 2.0rem;
}

#news .news_inner .news_list .article a:hover {
    background-color: var(--purple-light);
}

#news .news_inner .news_list .article .thumbnail {
    width: 125px;
}

#news .news_inner .news_list .article .thumbnail img {
    width: 100%;
    max-width: 125px;
    height: auto;
}

#news .news_inner .news_list .article .article_text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#news .news_inner .news_list .article .article_text .article_d-c {
    display: flex;
    align-items: center;
    gap: 15px;
}

#news .news_inner .news_list .article .article_text .article_d-c .date {
    font-weight: 700;
    color: var(--purple);
}

#news .news_inner .news_list .article .article_text .article_d-c .category {
    padding: 0 10px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--purple);
    border: solid 2px var(--purple);
}
#news .news_inner .news_list .article:hover .article_text .article_d-c .category {
    background-color: #fff;
}

#news .news_inner .news_list .article .article_text .article_ttl {
    padding-right: 50px;
}

#news .news_inner .news_list .article:hover .article_text .article_ttl {
    color: var(--purple);
}

#news .news_inner .news_list .article .article_text .article_ttl::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto 0;
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/common/arrow_purple.svg) no-repeat;
    transition: all 0.3s;
}

#news .news_inner .news_list .article:hover .article_text .article_ttl::before {
    right: 10px;
}


/* 下部ボタン */
#news .news_inner .btn {
    display: flex;
    height: fit-content;
    margin-top: 30px;
    justify-content: center;
}

#news .news_inner .btn a {
    text-align: center;
    position: relative;
    width: 250px;
    padding: 13px 10px;
    color: #fff;
    background-color: var(--purple);
    border: solid 2px var(--purple);
    overflow: visible;
}

#news .news_inner .btn a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto 0;
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/common/arrow_white.svg) no-repeat;
    transition: all 0.3s;
}

#news .news_inner .btn a:hover {
    color: var(--purple);
    background-color: #fff;
    border: solid 2px var(--purple);
}

#news .news_inner .btn a:hover::before {
    right: 10px;
    background: url(../img/common/arrow_purple.svg) no-repeat;
}

#news .news_inner .btn.is_sp {
    display: none;
}
/* ここまで下部ボタン */

/* カテゴリータブ切り替え */
#news .news_inner .news_cate {
    height: fit-content;
    margin-bottom: 40px;
}

#news .news_inner .news_cate ul {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    height: fit-content;
}

#news .news_inner .news_cate ul li {
    position: relative;
    display: block;
    text-align: center;
    width: 150px;
    height: 45px;
    padding: 0px 30px;
    color: var(--purple);
    border: solid 2px var(--purple);
    font-size: 2.0rem;
    font-weight: 700;
    transition: all 0.3s;
    opacity: 0.3;
    scale: 0.9;
}

#news .news_inner .news_cate ul li.news_cate_all {
    background-color: var(--purple);
    color: #fff;
}

#news .news_inner .news_cate ul li.news_cate_obog {
    background-color: var(--yellow);
}

#news .news_inner .news_cate ul li.news_cate_event {
    background-color: var(--purple-light);
}

#news .news_inner .news_cate ul li.news_cate_other {
    background-color: #fff;
}

#news .news_inner .news_cate ul li.news_cate_all.selected,
#news .news_inner .news_cate ul li.news_cate_obog.selected,
#news .news_inner .news_cate ul li.news_cate_event.selected,
#news .news_inner .news_cate ul li.news_cate_other.selected,
#news .news_inner .news_cate ul li:hover {
    opacity: 1;
    scale: 1;
}

#news .news_inner .news_cate ul li:hover {
    cursor: pointer;
}

#news .news_inner .news_list {
    display: none;
}

#news .news_inner .news_list.show {
    display: block;
}

#news .news_inner .news_cate ul li a:hover {
    opacity: 1;
    scale: 1;
}
/* ここまでカテゴリータブ切り替え */

@media (max-width: 768px) {
    #news {
        margin-top: 60px;
    }
    #news .news_inner .sec_ttl .btn {
        display: none;
    }
    #news .news_inner .btn.is_sp {
        display: block;
        display: flex;
        justify-content: center;
        height: fit-content;
        margin-top: 25px;
    }
    #news .news_inner .btn.is_sp a {
        text-align: center;
        position: relative;
        width: 250px;
        padding: 13px 10px;
        color: #fff;
        background-color: var(--purple);
        border: solid 2px var(--purple);
        overflow: visible;
    }
    #news .news_inner .btn.is_sp a:hover {
        color: var(--purple);
        background-color: #fff;
        border: solid 2px var(--purple);
    }
    #news .news_inner .btn.is_sp a::before {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 10px;
        margin: auto 0;
        width: 1.5rem;
        height: 1.5rem;
        background: url(../img/common/arrow_white.svg) no-repeat;
        transition: all 0.3s;
    }
    #news .news_inner .btn.is_sp a:hover::before {
        right: -30px;
        background: url(../img/common/arrow_purple.svg) no-repeat;
    }
    #news .news_inner .news_list .article {
        gap: 15px;
        font-size: 1.4rem;
    }
    #news .news_inner .news_list .article .article_text {
        width: calc(100% - 125px);
    }
    #news .news_inner .news_list .article .article_text .article_d-c {
        display: flex;
        align-items: center;
        gap: 5px 15px;
        padding-right: 30px;
        line-height: 1.5;
        flex-wrap: wrap;
    }
    #news .news_inner .news_list .article .article_text .article_d-c .category {
        padding: 0 10px;
        font-size: 1.2rem;
    }
    #news .news_inner .news_list .article .article_text .article_ttl {
        padding-right: 25px;
        font-size: 1.6rem;
    }
    #news .news_inner .news_list .article .article_text .article_ttl::before {
        right: 5px;
        width: 1rem;
        height: 1.5rem;
    }

        #news .news_inner .news_cate {
        margin-bottom: 20px;
    }

    #news .news_inner .news_cate ul {
        gap: 10px 20px;
    }
    #news .news_inner .news_cate ul li {
        width: 100px;
        height: auto;
        padding: 0px 15px;
        font-size: 1.5rem;
    }

    #news .news_inner .news_cate ul li.visible {
        width: 100px;
        padding: 0px 15px;
        font-size: 1.5rem;
    }

    #news .news_inner .news_cate ul li a {
        width: 100px;
        padding: 0px 15px;
        font-size: 1.5rem;
    }
}

/* ----------------
contact
---------------- */

#contact {
    background-color: var(--purple);
    position: relative;
    overflow: hidden;
}

#contact .contact_inner {
    position: relative;
}

#contact .contact_inner .lead {
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    z-index: 5;
}

#contact .contact_inner .contact_box {
    width: 100%;
    padding: 60px;
    background-color: var(--gray);
    border: solid 2px var(--purple);
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    position: relative;
    z-index: 5;
}

#contact .contact_inner .contact_box dl {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin-bottom: 50px;
}

#contact .contact_inner .contact_box dl div {
    display: flex;
    width: 100%;
    gap: 20px;
}
#contact .contact_inner .contact_box dl div.detail_box .right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact .contact_inner .contact_box dl div dt {
    width: 40%;
    font-weight: 700;
    padding-top: 10px;
}

#contact .contact_inner .contact_box dl div dt span.required {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 10px;
}

#contact .contact_inner .contact_box dl div dt span.required::after {
    content: "必須";
    display: inline-block;
    width: fit-content;
    height: fit-content;
    padding: 0 0.5em;
    color: var(--purple);
    line-height: 1.5;
    font-size: 1.4rem;
    border: solid 2px var(--purple);
}

#contact .contact_inner .contact_box dl div dd {
    width: 100%;
}

#contact .contact_inner .contact_box dl div dd input,
#contact .contact_inner .contact_box dl div dd textarea {
    width: 100%;
    padding: 15px 25px;
    background-color: #fff;
    border: solid 2px var(--purple);
    font-size: 1.6rem;
}

#contact .contact_inner .contact_box dl div dd.radio {
    display: flex;
    gap: 60px;
    padding: 0;
    color: var(--black);
    background-color: transparent;
    border: none;
    font-size: 2.0rem;
    position: relative;
}

#contact .contact_inner .contact_box dl div dd.radio p {
    position: relative;
    text-indent: 5rem;
}

#contact .contact_inner .contact_box dl div dd.radio p::before {
}

#contact .contact_inner .contact_box dl div dd.radio p::after {
    content: "";
    display: block;
    width: 2.0rem;
    height: 2.0rem;
    border: solid 2px var(--purple);
    border-radius: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
}

#contact .contact_inner .contact_box dl div dd.radio .wpcf7-radio {
    display: flex;
    gap: 30px;
    padding: 0;
    color: var(--black);
    background-color: transparent;
    border: none;
    font-size: 2.0rem;
}

#contact .contact_inner .contact_box dl div dd.radio input[type="radio"] {
    position: absolute;
    width: 25px;
    height: 25px;
    margin: auto 0;
    padding: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    border: solid 2px #858585;
    border-radius: 50%;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#contact .contact_inner .contact_box dl div dd.radio input[type="radio"]:checked::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 15px;
    height: 15px;
    margin: auto;
    border-radius: 50%;
    background: var(--purple);
    content: '';
    cursor: pointer;
}

#contact .contact_inner .contact_box dl div dd.radio span.wpcf7-list-item-label {
    margin-left: 2em;
}

#contact .contact_inner .contact_box dl div dd.text {
    height: 250px;
    max-height: 250px;
}

#contact .contact_inner .contact_box dl div dd span.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1.6rem;
    line-height: 1;
    display: block;
    font-weight: 600;
}
#contact .contact_inner .contact_box dl div dd input + span.wpcf7-not-valid-tip {
    margin-top: 10px;
}

#contact .contact_inner .contact_box dl div dd textarea + span.wpcf7-not-valid-tip {
    margin-top: 0;
}

#contact .contact_inner .contact_box p {
    font-size: 1.6rem;
}

#contact .contact_inner .contact_box p strong {
    color: var(--purple);
}
#contact .contact_inner .contact_box .box_center {
    text-align: center;
    margin-top: 30px;
}

#contact .contact_inner .wpcf7-acceptance label:has(input.error-highlight) {
    cursor: not-allowed;
}

#contact .contact_inner .wpcf7-acceptance input {
    width: 1em;
    opacity: 0;
}

#contact .contact_inner .contact_box .btn {
    text-align: center;
    position: relative;
    width: 250px;
    padding: 13px 10px;
    background-color: var(--purple);
    border: solid 2px var(--purple);
    overflow: visible;
    transition: all 0.3s;
    margin: 30px auto 0;
}

#contact .contact_inner .contact_box .btn:hover {
    color: var(--purple);
    background-color: #fff;
    border: solid 2px var(--purple);
    cursor: pointer;
}

#contact .contact_inner .contact_box .btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    margin: auto 0;
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/common/arrow_white.svg) no-repeat;
    transition: all 0.3s;
}

#contact .contact_inner .contact_box .btn:hover::before {
    right: 10px;
    background: url(../img/common/arrow_purple.svg) no-repeat;
}

#contact .contact_inner .contact_box .btn input {
    position: relative;
    color: #fff;
    transition: all 0.2s;
    font-size: 1.8rem;
}
#contact .contact_inner .contact_box .btn:hover input {
    color: var(--purple);
    cursor: pointer;
}
#contact .contact_inner .contact_box .btn:has(input:disabled) {
    cursor: not-allowed;
    background-color: #fff;
    border: solid 2px var(--purple);
}
#contact .contact_inner .contact_box .btn:has(input:disabled)::before {
    background: url(../img/common/arrow_purple.svg) no-repeat;
}
#contact .contact_inner .contact_box .btn:has(input:disabled):hover::before {
    right: 30px;
}
#contact .contact_inner .contact_box .btn:has(input:disabled) input {
    color: var(--purple);
    cursor: not-allowed;
}
#contact .contact_inner .contact_box .contact_text {
    margin-bottom: 30px;
    padding-top: 20px;
}
#contact .contact_inner .contact_box .contact_text br.is_sp {
    display: block;
}

#contact .contact_inner .wpcf7-response-output {
    margin-top: 50px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border-color: var(--yellow) !important;
    background-color: var(--yellow) !important;
}
#contact .contact_inner .screen-reader-response {
    display: none;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: var(--yellow) !important;
}

#contact .bg {
    background: url(../img/common/bg_flag_black.svg) no-repeat;
    background-size: 70%;
    background-position: top 0 right -3vw;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

#contact .contact_inner .contact_box .btn .wpcf7-spinner {
    display: none;
}

/* // チェックボックスの枠を表示 */
.wpcf7-acceptance input.error-highlight + .wpcf7-list-item-label::before {
  background: var(--gray);
  border: 2px solid #797979;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 0em;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid var(--purple);
  transition: all 0.3s;
}

/* // チェックボックスのチェックを画像で表現 */
.wpcf7-acceptance .wpcf7-list-item-label::after {
    content: "";
    display: block;
    position: absolute;
    opacity: 0;
    width: 14px;
    height:7px;
    border-bottom: 2px solid;
    border-left: 2px solid;
    border-color:  #fff;
    transform: rotate(-45deg);
    top: 50%;
    left: 0.2em;
    margin-top: -5px;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background: var(--purple);
  border: 2px solid var(--purple);
  cursor: pointer;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.accordion-004 {
    margin: 0 auto 50px;
    border: 2px solid #797979;
}

.accordion-004 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    font-weight: 600;
    cursor: pointer;
}

.accordion-004 summary::-webkit-details-marker {
    display: none;
}

.accordion-004 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion-004[open] summary::after {
    transform: rotate(225deg);
}

#contact .contact_inner .contact_box dl.inquiry_privacy_dl {
    gap: 0;
    margin-bottom: 0;
}

.accordion-004 dl {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-004[open] dl {
    transform: none;
    opacity: 1;
}

.accordion-004 dl dt {
    font-weight: 600;
    text-indent: -0.5em;
}

.accordion-004 dl dd {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

@media (max-width: 875px) {
    #contact .contact_inner .contact_box dl div dd.radio .wpcf7-radio {
        font-size: 1.5rem;
    }
    #contact .contact_inner .contact_box dl div dd.radio input[type="radio"] {
        width: 20px;
        height: 20px;
    }

    #contact .contact_inner .contact_box dl div dd.radio input[type="radio"]:checked::before {
        width: 10px;
        height: 10px;
    }
    #contact .contact_inner .contact_box .contact_text br.is_sp {
        display: none;
    }
}
@media (max-width: 768px) {
    #contact .contact_inner .lead {
    margin-bottom: 25px;
}
#contact .contact_inner .contact_box {
    padding: 40px 15px;
}
#contact .contact_inner .contact_box dl {
    gap: 40px;
    margin-bottom: 25px;
}
#contact .contact_inner .contact_box dl div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#contact .contact_inner .contact_box dl div.detail_box .right {
    gap: 10px;
}
#contact .contact_inner .contact_box dl div dd {
    font-size: 1.4rem;
}
#contact .contact_inner .contact_box dl div dt {
    width: 100%;
    padding-top: 0;
}
#contact .contact_inner .contact_box dl div dd.radio {
    gap: 30px;
    font-size: 1.5rem;
}
#contact .contact_inner .contact_box dl div dd.radio p {
    text-indent: 3rem;
}
#contact .contact_inner .contact_box dl div dd.radio p::after {
    width: 1.5rem;
    height: 1.5rem;
}
#contact .contact_inner .contact_box dl div dd.radio .wpcf7-radio {
    font-size: 1.5rem;
}
#contact .contact_inner .contact_box dl div dd span.wpcf7-not-valid-tip {
    font-size: 1.4rem;
}
#contact .contact_inner .contact_box p {
    font-size: 1.5rem;
}
#contact .contact_inner .contact_box .btn {
    margin-top: 25px;
}
#contact .contact_inner .wpcf7-response-output {
    font-size: 1.5rem;
}
#contact::before{
    top: 0vw;
    right: -10vw;
}
#contact .contact_inner .wpcf7-response-output {
    margin-top: 25px;
    font-size: 1.5rem;
}
#contact .contact_inner .contact_box dl div dd input,
#contact .contact_inner .contact_box dl div dd textarea {
    padding: 15px 15px;
    font-size: 1.4rem;
}

.accordion-004 {
    margin: 0 auto 30px;
}

.accordion-004 summary {
    padding: 1em 1em;
}

.accordion-004 dl {
    padding: .3em 1em 1.5em;
}

.accordion-004 dl dd {
    font-size: 1.4rem;
    margin-bottom: 20px;
}
}

/* ----------------
sns
---------------- */

#sns .sns_inner .sns_container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    /* justify-content: space-between; */
}

#sns .sns_inner .sns_container.is_sp {
    display: none;
}

#sns .sns_inner .sns_container .sns_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: calc(50% - 7.5px);
}

#sns .sns_inner .sns_container .sns_box .sns_name {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#sns .sns_inner .sns_container .sns_box .sns_name h4{
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--purple);
}

#sns .sns_inner .sns_container .sns_box .sns_name h4 img {
    width: 2.5rem;
    height: 2.5rem;
}

#sns .sns_inner .sns_container .sns_box .sns_name .account_name {
    position: relative;
    height: fit-content;
    min-height: 60px;
    font-size: 2.0rem;
    font-weight: 700;
}

#sns .sns_inner .sns_container .sns_box .sns_name .account_name::before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: var(--purple);
}

#sns .sns_inner .sns_container .sns_box .sns_name .account_name a {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    line-height: 1.5;
}

#sns .sns_inner .sns_container .sns_box .sns_name .account_name a:hover {
    color: var(--purple);
}

#sns .sns_inner .sns_container .sns_box .sns_name .account_name a .name{
    position: relative;
    width: fit-content;
    padding-bottom: 4px; /* テキストと下線の間隔 */
    background-image: linear-gradient(var(--purple));
    background-repeat: no-repeat;
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 2px; /* 下線のサイズ（横幅、高さ） */
    transition: color 0.6s;
    transition: background-size 0.6s;
}

#sns .sns_inner .sns_container .sns_box .sns_name .account_name a:hover .name {
    background-position: bottom left; /* 下線のホバー時位置 */
    background-size: 100% 2px; /* 下線の横幅を100%にする */
}

#sns .sns_inner .sns_container .sns_box .sns_name .account_name a .name::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -2.5rem;
    margin: auto 0;
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/common/blank_purple.svg) no-repeat;
    transition: all 0.3s;
}

#sns .sns_inner .sns_container .sns_box .sns_name .account_name .sns_id {
    font-size: 1.5rem;
    color: var(--purple);
}

#sns .sns_inner .sns_container .sns_box .sns_tl {
    height: 700px;
    background: url(../img/common/bg_flag_purple-light.svg) no-repeat;
    background-size: 60%;
    background-position: center;
    background-position-y: 40%;
    background-color: #fff;
    border: solid 2px var(--purple);
}

#sns .sns_inner .sns_container .sns_box.x .sns_tl {
    overflow-y: scroll;
    scrollbar-color: var(--purple) #fff;
    scrollbar-width: thin;
}
#sns .sns_inner .sns_container .sns_box.instergram .sns_tl {
    padding: 5px 15px;
    overflow-y: scroll;
    scrollbar-color: var(--purple) #fff;
    scrollbar-width: thin;
    background: #fff;
}

._10b4 {
    scrollbar-width: thin !important;
    scrollbar-color: var(--purple) #ccc !important;
}

#sns .sns_inner .sns_container .sns_box .other_account h4 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
}

#sns .sns_inner .sns_container .sns_box .other_account .other_account_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#sns .sns_inner .sns_container .sns_box .other_account .other_account_list li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    line-height: 1;
    padding: 10px 10px 10px 60px;
    width: 100%;
    min-height: 60px;
    background-color: #fff;
    border: solid 2px var(--purple);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    transition: all 0.3s;
}

#sns .sns_inner .sns_container .sns_box .other_account .other_account_list li a .sns_id {
    color: var(--purple);
    transition: all 0.2s;
}

#sns .sns_inner .sns_container .sns_box .other_account .other_account_list li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    margin: auto 0;
    width: 3.0rem;
    height: 3.0rem;
    transition: all 0.3s;
}

#sns .sns_inner .sns_container .sns_box.x .other_account .other_account_list li a::before {
    background: url(../img/common/icon_sns_x_lb.svg) no-repeat;
}

#sns .sns_inner .sns_container .sns_box.facebook .other_account .other_account_list li a::before {
    background: url(../img/common/icon_sns_facebook.svg) no-repeat;
}

#sns .sns_inner .sns_container .sns_box.instergram .other_account .other_account_list li a::before {
    background: url(../img/common/icon_sns_instergram_lb.svg) no-repeat;
}

#sns .sns_inner .sns_container .sns_box .other_account .other_account_list li a::after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    margin: auto 0;
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/common/blank_purple.svg) no-repeat;
    transition: all 0.3s;
}

#sns .sns_inner .sns_container .sns_box .other_account .other_account_list li a:hover {
    color: #fff;
    background-color: var(--purple);
    border: solid 2px var(--purple);
}

#sns .sns_inner .sns_container .sns_box .other_account .other_account_list li a:hover .sns_id {
    color: #fff;
}

#sns .sns_inner .sns_container .sns_box.x .other_account .other_account_list li a:hover::before {
    background: url(../img/common/icon_sns_x_lw.svg) no-repeat;
}

#sns .sns_inner .sns_container .sns_box.facebook .other_account .other_account_list li a:hover::before {
    background: url(../img/common/icon_sns_facebook_white.svg) no-repeat;
}

#sns .sns_inner .sns_container .sns_box.instergram .other_account .other_account_list li a:hover::before {
    background: url(../img/common/icon_sns_instergram_lw.svg) no-repeat;
}

#sns .sns_inner .sns_container .sns_box .other_account .other_account_list li a:hover::after {
    background: url(../img/common/blank_white.svg) no-repeat;
}

.sbi_bio {
    display: none;
}

#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img, #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img img, .sb_instagram_header.sbi_medium .sbi_header_img, .sb_instagram_header.sbi_medium .sbi_header_img img {
    width: 50px !important;
    height: 50px !important;
}

#sb_instagram #sbi_load {
    display: none;
}

@media (max-width: 768px) {
    #sns .sns_inner .sns_container.is_pc {
        display: none;
    }
    #sns .sns_inner .sns_container.is_sp {
        display: block;
    }
    #sns .sns_inner .sns_container.is_sp .tab_container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        max-width: 350px;
        margin: 0 auto;
    }
    #sns .sns_inner .sns_container.is_sp .tab_container input {
        display: none;
    }
    #sns .sns_inner .sns_container.is_sp .tab_container .tab_label {
        display: flex;
        align-items: center;
        gap: 6px;
        position: relative;
        margin-bottom: 20px;
        padding-bottom: 10px;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1;
        color: var(--purple);
        opacity: 0.5;
        order: -1;
        transition: all 0.3s;
    }
    #sns .sns_inner .sns_container.is_sp .tab_container .tab_label img {
        width: 1.8rem;
        height: 1.8rem;
    }
    #sns .sns_inner .sns_container .sns_box.tab_content {
        display: none;
        margin: 0 auto;
    }
    /* アクティブなタブ */
    #sns .sns_inner .sns_container.is_sp .tab_container .tab_switch:checked+.tab_label {
        opacity: 1;
        font-size: 2.0rem;
        width: fit-content;
        padding-left: 10px;
        padding-right: 10px;
    }
    #sns .sns_inner .sns_container.is_sp .tab_container .tab_switch:checked+.tab_label::before {
        content: "";
        display: block;
        background: var(--purple);
        width: 100%;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: 0;
    }
    #sns .sns_inner .sns_container.is_sp .tab_container .tab_switch:checked+.tab_label::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 13px;
        height: 13px;
        box-sizing: border-box;
        border: 2px solid;
        border-color: var(--purple) var(--purple) transparent transparent;
        background-color: var(--gray);
        rotate: 135deg;
        translate: -50%;
    }
    #sns .sns_inner .sns_container.is_sp .tab_container .tab_switch:checked+.tab_label img {
        width: 2.5rem;
        height: 2.5rem;
    }
    #sns .sns_inner .sns_container.is_sp .tab_container .tab_switch:checked+.tab_label+.tab_content {
        display: block;
        width: 100%;
        max-width: 375px;
    }
    #sns .sns_inner .sns_container .sns_box .sns_name,
    #sns .sns_inner .sns_container .sns_box .sns_tl {
        margin-bottom: 15px;
    }
    #sns .sns_inner .sns_container .sns_box .sns_tl {
        height: 500px;
    }
    #sns .sns_inner .sns_container .sns_box .sns_name .account_name {
        min-height: 50px;
    }
    #sns .sns_inner .sns_container .sns_box .sns_name .account_name a .name {
        padding: 0;
        font-size: 1.8rem;
    }
    #sns .sns_inner .sns_container .sns_box .sns_name .account_name .sns_id {
        line-height: 1;
    }
    #sns .sns_inner .sns_container .sns_box .other_account h4 {
        font-size: 1.8rem;
    }
}


/* ----------------
footer
---------------- */

#footer {
    background-color: #fff;
}
#footer .footer_inner {
    max-width: 1200px;
    padding: 100px 60px;
    margin: 0 auto;
}

#footer .footer_inner .footer_menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#footer .footer_inner .footer_menu .logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

#footer .footer_inner .footer_menu .logo a img {
    width: 100%;
    max-width: 120px;
    height: auto;
    transition: all 0.3s;
}

#footer .footer_inner .footer_menu .logo a:hover img {
    opacity: 0.5;
}

#footer .footer_inner .footer_menu .logo h1 {
    font-family: "Shippori Mincho", serif;
    font-size: 2.5rem;
    font-weight: 600;
}

#footer .footer_inner .footer_list {
    display: flex;
    gap: 100px;
    padding-top: 30px;
    font-size: 1.6rem;
    font-weight: 700;
}

#footer .footer_inner .footer_list_content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#footer .footer_inner .footer_list_content .footer_list_item a:hover {
    transition: all 0.3;
    opacity: 0.5;
}

#footer .footer_inner .copyright {
    margin-top: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}
.sbi-critical-notice {
    display: none!important;
}
@media (max-width: 768px) {
    #footer .footer_inner {
    max-width: 100vw;
    padding: 50px 15px;
}
#footer .footer_inner .footer_menu {
    display: flex;
    justify-content: space-around;
}
#footer .footer_inner .footer_menu .logo {
    gap: 15px;
}
#footer .footer_inner .footer_menu .logo a img {
    max-width: 90px;
}
#footer .footer_inner .footer_menu .logo h1 {
    font-size: 1.5rem;
}
#footer .footer_inner .footer_list {
    flex-direction: column;
    gap: 20px;
    padding-top: 15px;
    font-size: 1.2rem;
}
#footer .footer_inner .footer_list_content {
    flex-direction: column;
    gap: 20px;
}
#footer .footer_inner .copyright {
    margin-top: 25px;
    font-size: 1rem;
}
}

/* ----------------
recapture
---------------- */
.grecaptcha-badge {
    z-index: 1000;
}