@font-face {
  font-family: '04b09';
  src: url('../fonts/04b09.woff2') format('woff2'),
       url('../fonts/04b09.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

html {
    position: static;
    margin: 0 !important;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background-image: url('../img/bg_pc.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    font-family: '04b09', sans-serif;
}
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}
.heading {
    max-width: 1200px;
    width: 100%;
    padding: 80px min(15%, 180px);
    box-sizing: border-box;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    display: inline-block;
}
a:hover {
    opacity: 0.8;
}
img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 960px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }

    .heading {
        max-width: 500px;
        padding: 50px min(5.333%, 20px);
    }
}
/* header */
.header01 {
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(255, 255, 255, 0);
    z-index: 999;

}
.nav01 {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 107px;
    padding: 20px 0 0 0;
}
.header_logo {
    width: min(21.667vw , 260px);
    margin: 0 0 0 min(2.5vw, 30px);
}
.header_left,
.header_right {
    display: flex;
}
.header_ul {
    display: flex;
}
.header_li {
    margin: 0 min(2.5vw, 30px) 0 0;
}
.header_text1 {
    text-decoration: none;
    font-weight: 700;
    font-size: min(1.833vw, 22px);
    color: #333;

}
.header_text1:hover {
  animation: noiseFlicker 0.2s infinite;
  color: #F7A3AA;
}

@media screen and (max-width: 960px) {
    .header01 {
    z-index: 99999;

    }
    .nav01 {
        height: 50px;
        padding: 0;
    }

    .ham_btn {
      width: 50px;
      height: 50px;
      border: none;
      background: rgba(255, 255, 255, 0);
      position: relative;
      cursor: pointer;
      z-index: 99990;
    }
    .header_left {
        align-items: center;
    }
    .header_logo {
        width: 130px;
        margin: 0 0 0 20px;
        z-index: 99990;
    }



    .header_li {
        width: 100%;
        border-bottom: 1px solid #ddd;
        padding: 20px 0;
        margin: 0;        
    }

    .header_text1 {
        font-size: 14px;
    }
    .header_text2 {
        font: normal normal bold 16px/23px Noto Sans JP;
        margin: 0 0 0 10px;
    }
    .header_text2 span {
        font: normal normal bold 8px/11px Noto Sans JP;
    }

    .header_modal {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        align-items: start;
    }

    .header_modal.is-active {
        right: 0;
    }

    .header_modal .header_ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 60px 20px;
    }

    .ham_btn span {
      position: absolute;
      height: 2px;
      background: #000;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    .ham_btn span:nth-of-type(1) {
      width: 30px;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
    }
    .ham_btn span:nth-of-type(2) {
      width: 20px;
      top: 30px;
      left: 10px;
    }
    .ham_btn.is-active span:nth-of-type(1),
    .ham_btn.is-active span:nth-of-type(2) {
      width: 30px;
      left: 10px;
      top: 25px;
      transform: rotate(45deg);
      transform-origin: center;
    }
    .ham_btn.is-active span:nth-of-type(2) {
      transform: rotate(-45deg);
    }

    body.no-scroll {
        overflow: hidden;
    }

  }
/* 共通 スクロール位置 見出し */
#about,
#news,
#member,
#media,
#guideline,
#store,
#contact {
    padding-top: 70px;
    margin-top: -70px;
    position: relative;
    z-index: 1;
}
.common_h2 {
    width: 60%;
    margin: 0 auto 50px auto;
}
.common_h2._big {
    width: 100%;
}
.common_text1 {
    font: normal normal normal 16px/16px Noto Sans JP;
    margin: 0;
}
.cat_flex {
    display: flex;
    justify-content: space-between;
}
.cat_ul,
.tax_cat_ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    align-items: stretch;
}
.tax_cat_ul {
    margin: 0 0 50px 0;
    gap: 0.8rem;
}
.cat_li {
}
.cat_link {
    font-family: Noto Sans JP;
    font-size: 11px;
    text-decoration: none;
    padding: 2px 6px;
    color: #fff;
    box-sizing: border-box;
    background: #EE4F5C;
    border-radius: 8px;
}
.tax_cat_link {
    font-family: Noto Sans JP;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 25px;
    color: #fff;
    box-sizing: border-box;
    background: #EE4F5C;
    border-radius: 13px;
}

@media screen and (max-width: 960px) {
    #about,
    #news,
    #member,
    #media,
    #guideline,
    #store,
    #contact {
        padding-top: 50px;
        margin-top: -50px;
    }
    .common_h2 {
    }
    .common_h2._big {
        width: 89%;
    }
}
/* 共通 ボタン */
.btn_wrapper1,
.btn_wrapper2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
}
.btn_wrapper1 {
    margin: 30px 0 0 0;
}
.btn_wrapper1._detail {
    margin: 30px 0 50px 0;
}
.btn_wrapper2 {
    margin: 10px 0 0 0;
}

.btn_more1,
.btn_more2,
.btn_more3 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    letter-spacing: 2.1px;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn_more1 {
    width: 260px;
    padding: 13px 0;
    background: #EE4F5C 0% 0% no-repeat padding-box;
    color: #FFFFFF;
    border-radius: 5px;
}
.btn_more2 {
    width: 260px;
    padding: 13px 0;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    color: #EE4F5C;
    border-radius: 5px;
}
.btn_more3 {
    font: normal normal bold 18px/18px Noto Sans JP;
    width: min(74%, 200px);
    background: #000 0% 0% no-repeat padding-box;
    color: #fff;
    padding: 5px 0;
    border-radius: 25px;
    box-sizing: border-box;
}

.btn_more1._small {
    font-size: 24px;
    padding: 18px 0;
}
.btn_more1:hover,
.btn_more2:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}
.btn_img1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 13px;
    width: 18px;
    transition: right 0.4s ease;
}
.btn_more1:hover .btn_img1,
.btn_more2:hover .btn_img1 {
    right: 11px;
}
@media screen and (max-width: 960px) {
    .btn_more1,
    .btn_more2 {
        max-width: 260px;
        width: 78%;
        font-size: 26px;
        padding: 10px 0;
    }
    .btn_more1._small {
        font-size: 22px;
        padding: 15px 0;
    }

}
/* 共通 YouTube */
.movie_wrapper {
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.movie_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 960px) {
}
/* 共通 index single archive 404 */
._minheight,
._error {
    min-height: 45vh;
}
.error {
    background: #fff 0% 0% no-repeat padding-box;
}
/* 共通 記事投稿0件 */
.post_none {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* fv */
.fv {
    position: relative;
    background: rgba(0,0,0,0.2);
}
.fv_bg_wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 64vw;
}
.fv_bg_img {
    position: absolute;
    top: -40vw;
    left: -21vw;
    width: 142%;
    animation: rotate 120s linear infinite;
}
.fv_logo {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  animation: logoZoomIn 0.3s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes logoZoomIn {
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 960px) {
    .fv_bg_wrapper {
        height: 100vw;
    }
    .fv_bg_img {
        top: -22vw;
    }
    .fv_logo {
        width: 70%;
    }
}
/* about */
.about .heading {
    content: '';
    background-image: url('../img/about_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.about_h2 {
    text-align: center;
    font: normal normal bold 30px/55px Noto Sans JP;
    color: #EE4F5C;
    margin: 0 0 20px 0;
}
.about_h3 {
    text-align: center;
    font: normal normal 900 36px/54px Noto Sans JP;
    letter-spacing: 1.08px;
    color: #000000;
    margin: 0 0 35px 0;
}
.about_text1 {
    text-align: center;
    font: normal normal normal 16px/32px Noto Sans JP;
    letter-spacing: 1.12px;
    color: #000000;
    margin: 0 0 40px 0;
}
.about_text1:last-child {
    margin: 0;
}
._red {
    font: normal normal bold 16px/32px Noto Sans JP;
    color: #EE4F5C;
}
@media screen and (max-width: 960px) {
    .about_h2 {
        font: normal normal bold 22px/36px Noto Sans JP;
    }
    .about_h3 {
        font: normal normal 900 21px/34px Noto Sans JP;
    }
    .about_text1 {
        font: normal normal normal 15px/20px Noto Sans JP;
    }
}
/* news */
.news .heading {
    content: '';
    background-image: url('../img/news_bg.png');
    background-size: cover;
    background-repeat: no-repeat;

}
.news_area {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}


.news_block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 6px #00000029;
    border-radius: 10px;
    padding: min(1.667vw, 20px);
    box-sizing: border-box;
}
.news_text1 {
    text-decoration: none;
    font: normal normal bold 16px/24px Noto Sans JP;
    letter-spacing: 1.12px;
    color: #000000;
    margin: 0 0 5px 0;
}
.news_text2 {
    text-decoration: none;
    font: normal normal normal 11px/11px Noto Sans JP;
    letter-spacing: 0.84px;
    color: #DDDDDD;
    margin: 0;
}
.news_img_wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 55/34;
    margin: 0 0 10px 0;
}
.news_img1 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.3s ease;
}
.news_img1:hover {
  transform: scale(1.05);
}
@supports (-webkit-touch-callout: none) {
    .news_img1 {
        transform: scale(1);
        max-width: 105%;
        max-height: 105%;
  }
  .news_block {
        padding: min(5.333vw, 20px);
    }
    .news_area {
        gap: 3rem;
    }
}

@media screen and (max-width: 960px) {
    .news_area {
        grid-template-columns: 1fr;
    }
    .news_block {
        padding: min(5.333vw, 20px);
    }
    .news_text1 {
        font: normal normal bold 15px/20px Noto Sans JP;
    }
    .news_text2 {
        font: normal normal normal 11px/11px Noto Sans JP;
    }
}

/* sns */
.sns {
    content: '';
    background-image: url('../img/sns_bg.png');
    background-size: cover;
    background-repeat: no-repeat;

}
.sns_wrapper {
    margin: 0 auto;
    width: 50%;
    background: #F2F2F2 0% 0% no-repeat padding-box;
    border: 3px solid #EE4F5C;
}
@media screen and (max-width: 960px) {
}

/* official */
.official {
    content: '';
    background-image: url('../img/official_bg.png');
    background-size: cover;
    background-repeat: no-repeat;

}

/* member */
.member .heading {
    content: '';
    background-image: url('../img/member_bg.png');
    background-size: cover;
    background-repeat: no-repeat;

}
.member_area {
    width: 100%;
    position: relative;
}
.member_img1 {
    position: absolute;
    top: -5vw;
    right: 0;
    width: 80%;
    z-index: -1;
}
.member_img2 {
    width: 57%;
}
.member_content_block1 {
    width: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.member_h3_en {
    font-size: 16px;
    color: #000000;
    margin: 0 0 3px 0;
}
.member_h3 {
    font: normal normal 900 50px/50px Noto Sans JP;
    color: #EE4F5C;
    margin: 0 0 20px 0;
}

.member_sns_ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.member_sns_img {
    width: auto;
    height: 25px;
}

.member_text2 {
    text-align: center;
    font-size: 30px;
    color: #EE4F5C;
    margin: 0 0 20px 0;
}
.tab_under {
    margin: 30px 0 0 0;
}
.member_img3 {
    width: 100%;
    height: auto;
    position: absolute;
    left: 50%;
    bottom:0;
    transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
    .member_img2 {
        width: 66%;
        padding: 0 20px 0 0;
        margin: 0 auto;
    }
    .member_content_block1 {
        padding: 20px 0 0 0;
        width: 100%;
        position: relative;
        top: auto;
        transform: none;
        right: auto;
    }
    .member_h3_en {
        font-size: 15px;
    }
    .member_h3 {
        font: normal normal 900 38px/38px Noto Sans JP;
    }
    .member_text2 {
        font-size: 22px;
    }
}


/* member tab */
.tab_labels {
    width: 60%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
    margin: 0 auto;
}
label.tab_label1,
label.tab_label2,
label.tab_label3,
label.tab_label4 {
    position: relative;
    z-index: 1;
    cursor: pointer;
    border: 6px solid #EE4F5C;
    overflow: hidden;
    position: relative;
    aspect-ratio: 7/6;
}

.tab_none_text {
    text-align: center;
    font: normal normal bold 28px/28px Noto Sans JP;
    height: 200px;
    margin: 200px 0 0 0;
}
.tab_content {
    flex: 100%;
    display: none;
    box-sizing: border-box;
    position: relative;
    animation: fadeIn 1s ease;
}
input[name="tab_switch"] {
  display: none;
}

#tab3:checked ~ .tab_under .tab_labels label[for="tab3"],
#tab4:checked ~ .tab_under .tab_labels label[for="tab4"],
label.tab_label3:hover,
label.tab_label4:hover {
    background: #dddddd;
}

#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content,
#tab3:checked ~ #tab3_content,
#tab4:checked ~ #tab4_content {
  display: block;
}
@media screen and (max-width: 960px) {
    .tab_labels {
        width: 89%;
    }
    label.tab_label1,
    label.tab_label2,
    label.tab_label3,
    label.tab_label4 {
        border: 3px solid #EE4F5C;

    }
    .tab_content {

    }

}

/* derutaya */
#tab1:checked ~ .tab_under .tab_labels label[for="tab1"],
label.tab_label1:hover {
    background: #a8e6b1;
}

/* kirameki */
#tab2:checked ~ .tab_under .tab_labels label[for="tab2"],
label.tab_label2:hover {
    background: #8fbfc9;
}


/* media */
.media {
    background: rgba(0,0,0,0.2);
}
@media screen and (max-width: 960px) {
}

/* store */
.store {
    background: rgba(0,0,0,0.2);
}
.store_h3 {
text-align: center;
    font: normal normal bold 22px / 28px Noto Sans JP;
    letter-spacing: 1.54px;
    color: #000000;
    margin: 0 0 50px 0;
}
.store_area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}
.store_link1 {
    width: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 13/9;
    margin: 0 0 10px 0;
}
.store_img1 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    transform-origin: center center;
    transition: transform 0.3s ease;
}
.store_img1:hover {
  transform: scale(1.05);
}
.store_text1 {
    width: 100%;
    text-decoration: none;
    font: normal normal bold 20px/25px Noto Sans JP;
    letter-spacing: 1.4px;
    color: #000000;
    margin: 0 0 5px 0;
}
.store_text2 {
    width: 100%;
    text-decoration: none;
    font: normal normal bold 18px/21px Noto Sans JP;
    letter-spacing: 0.84px;
    color: #A0A0A0;
    margin: 0;
}
.store_text2 ._small {
    font-size: 12px;
}
@supports (-webkit-touch-callout: none) {
  .store_img1 {
    transform: scale(1);
    max-width: 105%;
    max-height: 105%;
  }
}



@media screen and (max-width: 960px) {
    .store_area {
        grid-template-columns: 1fr;
        gap: 3rem;
    }    
}

/* contact */
.contact {
    background: rgba(238,79,92,0.9);
    width: 100%;
}
.contact_h2 {
    text-align: center;
    font: normal normal bold 45px/45px Noto Sans JP;
    letter-spacing: 3.15px;
    color: #FFFFFF;
    margin: 0 0 30px 0;
}
.contact_h3 {
    text-align: center;
    font: normal normal bold 22px/33px Noto Sans JP;
    letter-spacing: 1.54px;
    color: #FFFFFF;
    margin: 0 0 30px 0;
}
.contact_text3 {
    text-align: center;
    font: normal normal normal 12px/21px Noto Sans JP;
    letter-spacing: 0.84px;
    color: #FFFFFF;
    margin: 0 0 30px 0;
}
.contact_block {
    margin: 0 0 20px 0;
}
.contact_text1 {
    font: normal normal bold 16px/24px Noto Sans JP;
    letter-spacing: 0px;
    color: #FFFFFF;
    padding: 20px 0 0 0;
    margin: 0 0 8px 0;
}
.contact_text1 .required {
    font: normal normal bold 16px/24px Noto Sans JP;
    color: #FFFFFF;
    margin: 0 0 0 10px;
}
input.form-control,
select.form-select,
textarea.form-control {
    width: 100%;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #F2A643;
    border-radius: 5px;
    padding: 8px min(0.833vw, 10px);
    box-sizing: border-box;
    height: 64px;
    font: normal normal normal 16px/28px Zen Kaku Gothic New;
    color: #444444;
}
textarea.form-control {
    height: 240px !important;
}
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 24px;
    height: 24px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #fff;
    position: relative;
    cursor: pointer;
    margin: 0 10px 0 0 !important;
}
input[type="checkbox"]:checked {
    background-color: #EE7DAE;
}
input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 14px;
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.consent_wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
}
.contact_text2 {
    font: normal normal bold 16px/28px Noto Sans JP;
    color: #FFFFFF;
    margin: 0;
}
@media screen and (max-width: 960px) {
    .contact_h2 {
        font: normal normal bold 30px/30px Noto Sans JP;
    }
    .contact_h3 {
        font: normal normal bold 16px/24px Noto Sans JP;
    }
}
/* validation */
#consent-error {
    position: absolute;
    left: 50%;
    margin-top: 35px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    color: #f2f2f2;
    font-weight: normal;
    font-size: 16px;
}
.validation-block {
    color: #f2f2f2;
}
.has-error .validation-block {
    text-align: left;
    color: #ddd;
}
/* bootstrap */
button.btn-success {
    cursor: pointer;
}
.btn {
    font-size: 15px;
    font-weight: 400;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 8px 20px;
}
.btn01 .btn {
    background-color: #EE4F5C;
    width: 120px;
    margin-left: 20px;
    margin-left: 15px;
    color: #fff;
}
.modal-dialog {
    max-width: 600px;
    margin: 150px auto 0;
    width: calc(100% - 40px);
}
.modal-body {
    text-align: center;
}
.modal-footer {
    display: flex;
    justify-content: center;
}
.btn.btn-md {
    padding: 8px 20px !important;
}
.btn.btn-lg {
    padding: 18px 36px !important;
}
.btn:hover, .btn:active, .btn:focus {
    box-shadow: none !important;
    outline: none !important;
}
.btn-primary {
    background: #EE4F5C;
    color: #fff;
    border: 2px solid #EE4F5C;
}
@media screen and (max-width: 960px) {
}



/* footer */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    height: 60px;
    margin: -1px 0 0 0;
}
.footer_text1 {
    font: normal normal normal 14px/24px Noto Sans JP;
    letter-spacing: 0px;
    color: #A5A5A5;
    margin: 0;
    opacity: 0.4;
}
.fixed_arrow {
    position: fixed;
    height: auto;
    right: 10px;
    bottom: 10px;
    z-index: 13;
    transition: opacity 0.3s ease-in-out;
}

.fixed_sns {
    position: fixed;
    height: auto;
    right: 20px;
    bottom: 80px;
    z-index: 13;
}
.sns_link {
    width: 30px;
}

.footer_cta {
    position: fixed;
    right: 30px;
    top: 60px;
    border: 4px solid #EE4F5C;
    border-radius: 5px;
    z-index: 9999;
}
.footer_cta_link {
    text-decoration: none;
    border: 4px solid #ffffff;
    padding: 8px 25px;
    border-radius: 5px;
    background: #EE4F5C;
    display: flex;
    align-items: center;
    justify-content: center;
    font: normal normal bold 18px/18px Noto Sans JP;
    color: #fff;
}
@media screen and (max-width: 960px) {
    .footer {
    }
    .fixed_cta {
        bottom: 60px;
    }
    .fixed_sns {
        bottom: 130px;
    }
    .footer_cta {
        width: 100%;
        position: fixed;
        right: auto;
        left: 0;
        top: auto;
        bottom: 0;
        border: none;
    }
    .footer_cta_link {
        height: 50px;
        border: none;
        padding: 0;
    }
    .fixed_arrow {
        bottom: 60px;
    }

}
/* page02 common */
.fv2 {
    display: flex;
    align-items: center;
    text-align: left;
    background: #EE4F5C;
    height: 328px;
    box-sizing: border-box;
}
.fv2_h2 {
    font: normal normal bold 40px/60px Noto Sans JP;
    color: #FFFFFF;
    margin: 0;
}
/* page02 page03 パンくずリスト */
.crumbs {
    max-width: 1200px;
    width: 100%;
    margin: 10px auto 0 auto;
    position: relative;
    padding: 0 min(15%, 180px);
    box-sizing: border-box;
    overflow: hidden;
}
.crumbs_wrapper {
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    display: flex;
    align-items: center;
}
.crumbs_text1,
.crumbs_text2,
.crumbs_text3 {
    font-family: 'Noto Sans JP';
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
}
.crumbs_text1 {
    color: #EE4F5C;
    font-weight: 700;
    margin: 0;
}
.crumbs_text2 {
    color: #000;
    margin: 0 0 0 16px;
}
.crumbs_text3 {
    color: #000;
    margin: 0 0 0 16px;
}
/* page02 ページネーション */
.pagenum_wrapper {
    display: flex;
    justify-content: center;
    margin: 24px 0 0 0;
    flex-wrap: wrap;
}
.pagenum {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 5px;
}
.pagenum li {
    padding: 0;
    margin: 0;
}
.pagenum li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border-radius: 24px;
    border: 1px solid #EDF3F5;
    text-align: center;
    font: normal normal bold 16px/16px Noto Sans JP;
    color: #EE4F5C;
    text-decoration: none;
    margin: 0 5px;
    width: 47px;
    height: 47px;
}
.pagenum li a:hover {
    background: #EE4F5C 0% 0% no-repeat padding-box;
    color: #fff !important;
    border-color: #EE4F5C;
}
.pagenum li a.current {
    background: #EE4F5C 0% 0% no-repeat padding-box;
    color: #FFFFFF !important;
    border-color: #EE4F5C;
    cursor: default;
}
.pagenum li a.first-btn {
    font-size: 12px;
}
.pagenum li a.last-btn {
    font-size: 12px;
}
@media screen and (max-width: 960px) {
    .fv2 {
        height: 226px;
        padding: 0 5.33%;
    }
    .fv2_h2 {
        font: normal normal bold 32px/48px Noto Sans JP;
    }
    .crumbs {
        padding: 0 5.3%;
    }
    .pagenum li a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* page03 common */
.fv3 {
    height: 180px;
}
.detail_text1 {
    font: normal normal normal 16px/24px Noto Sans JP;
    letter-spacing: 0px;
    color: #DDDDDD;
    margin: 0 0 10px 0;
}
.detail_img1 {
    width: 80%;
    margin: 0 auto 40px auto;
}
.detail h1 {
    font: normal normal bold 24px/36px Noto Sans JP;
    color: #333;
    border-bottom: 3px solid #EE4F5C;
    padding: 0 0 30px 0;
    margin: 0 0 50px 0;
}
.detail_common_area h2 {
    font: normal normal bold 24px/36px Noto Sans JP;
    color: #333333;
    border-left: 6px solid #EE4F5C;
    padding: 0 0 0 10px;
    margin: 0 0 40px 0;
}
.detail_common_area h3 {
    font: normal normal bold 20px/30px Noto Sans JP;
    letter-spacing: 0.48px;
    color: #EE4F5C;
    border-bottom: 2px solid #EE4F5C;
    padding: 0 0 10px 0;
    margin: 0 0 40px 0;
}
.detail_common_area h4 {
    font: normal normal bold 20px/20px Noto Sans JP;
    color: #000;
    margin: 0 0 40px 0;
}
.detail_common_area p {
    font: normal normal normal 16px/28px Noto Sans JP;
    color: #000;
    margin: 0 0 30px 0;
}
.detail_common_area a {
    text-decoration: underline;
    font: normal normal normal 16px/28px Noto Sans JP;
    color: #EE4F5C;
    margin: 0 0 10px 0;
}
.detail_common_area th {
    background: #EE4F5C 0% 0% no-repeat padding-box;
    border: 1px solid #EE4F5C;
    color: #fff;
    padding: 20px 16px;
    box-sizing: border-box;
}
.detail_common_area td {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #EE4F5C;
    color: #EE4F5C;
    padding: 20px 16px;
    box-sizing: border-box;
}

.detail_common_area img {
    margin: 0 0 30px 0;
}

@media screen and (max-width: 960px) {
}



.pagination-area {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 10px;
}

.pagination-item {
    display: inline-flex;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* 円形 */
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination-link:hover:not(.disabled) {
    background-color: #007bff;
    color: #fff;
}

.pagination-link.current {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
}

.pagination-link.disabled {
    background-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

.pagination-link.prev, .pagination-link.next {
    font-size: 18px;
    line-height: 1;
}


/* 1011 準備中を追加 */
.header_li._preparation .header_text1 {
  color: #dddddd;
  pointer-events: none;
  cursor: default;
}

.attachment-post-thumbnail {
    margin: 0 0 30px 0;
}