html {
    margin: 0 !important;
    padding: 0 !important;
    scroll-behavior: smooth;
}

.body {
    /* position: relative; */
    margin: 0;
    padding: 0;
    /* font-family: 'Noto Serif JP', serif; */
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    color: #333;
    line-height: 1.75;
}

.page01::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('../img/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.heading {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 100px min(15%, 180px);
    box-sizing: border-box;
}

a {
    display: inline-block;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

address {
  font-style: normal;
}

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

    .pc {
        display: none !important;
    }

    .heading {
        max-width: 480px;
        padding: 80px min(5.333%, 20px);
    }
}

/* header */
.header01 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: background-color 0.3s, padding 0.3s;
}

.header01.is-scrolled {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav01 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 0 0 0 20px;
    background: rgba(255,255,255,0);
    box-sizing: border-box;
}

.header-logo {
    text-decoration: none;
    width: 56px;
    margin: 0;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    height: 70px;
}

.header-ul {
    display: flex;
    align-items: center;
    line-height: 1;
}

.header-li {
    margin: 0 min(1.333vw, 20px) 0 0;
}

.header-li._last {
    margin: 0;
}

.header-text1 {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 13px;
    margin: 0;
}

.header-text1:hover {
    text-decoration: none;
    color: #84C3DC;
}

.header01.is-scrolled .header-text1 {
    color: #565656;
}

.header-btn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 0 26px;
    font-size: 18px;
    color: #FFFFFF;
    background: #7C2D2D 0% 0% no-repeat padding-box;
    text-decoration: none;
    box-sizing: border-box;
}

@media screen and (max-width: 960px) {
    .header01 {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        top: 0;
    }
    .header01.is-scrolled {
        background-color: rgba(255, 255, 255, 0);        
        box-shadow: none;
    }

    .nav01 {
        width: 100%;
        height: 50px;
        padding: 0;
        border-radius: 0;
        margin: 0;
    }

    .header-left {
        width: 100%;
        display: flex;
        justify-content: space-between;
        height: 50px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .header-logo {
        width: 40px;
        margin: 0;
        position: relative;
        z-index: 1001;
        transition: opacity 0.2s ease-in-out;
        /* display: none;
        opacity: 0; */
     }   

    .header-logo.visible {
        display: block;
        opacity: 1;
    }

/* ハンバーガーモーダル */
    .header-text1 {
        font-size: 16px;
        /* padding: 0 20px; */
        margin: 0;
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;
        color: #565656;
    }

    .header-icon1 {
        width: 10px;
        margin: 0 5px 0 0;
    }

    .header-icon2 {
        width: 30px;
    }

    .header-modal {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        padding: 50px 20px 20px 20px;
        box-sizing: border-box;
        /* box-shadow: 0px 1px 6px #00000029; */
    }

    .header-modal.is-active {
        right: 0;
        display: flex;
    }

    .header-ul {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .header-ul2 {
        width: 100%;
        padding: 20px 0;
    }

    .header-img1 {
        margin: 0 15px 0 0;
        padding: 20px 0 0 0;
    }

    .header-li {
        width: 100%;
        border-bottom: 1px solid #333333;
        padding: 20px 0;
        margin: 0;
        border-right: none;
    }

    .header-li._last {
        border-bottom: none;
    }
/* ハンバーガーボタン */
    .ham-btn {
      width: 50px;
      height: 50px;
      border: none;
     background: #7C2D2D 0% 0% no-repeat padding-box;
        position: relative;
      cursor: pointer;
      z-index: 1001;
      margin: 0;

    }
    .ham-btn span {
      position: absolute;
      height: 2px;
      background: #fff;
      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: 30px;
      top: 30px;
      left: 50%;
      transform: translateX(-50%);
    }

    .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;
    }
}
/* 共通 スクロール位置 見出し */
#what,
#news,
#strength,
#service,
#greeting,
#voice,
#about,
#contact {
    scroll-margin-top: 70px;
}

.common-h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-decoration: none;
    line-height: 1;
}

.common-h2-en {
    text-align: center;
    color: #7C2D2D;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 40px 0;
    text-decoration: none;
}

.common-h2._wh {
    color: #fff;
}

.common-h2-en._wh {
    color: #fff;
}

.common-text1 {
    font-size: 16px;
    color: #565656;
    margin: 0;
    text-decoration: none;
}

.common-text1._center {
    text-align: center;
}

.common-text1._bold {
    font-weight: 700;
}

.common-text1._wh {
    color: #ffffff;
}

.common-h3 {
    font-size: 28px;
    font-weight: 700;
    color: #B59B55;
    margin: 0 0 20px 0;
}

.common-h4 {
    font-size: 20px;
    font-weight: 700;
    color: #7C2D2D;
    margin: 0 0 30px 0;
}

@media screen and (max-width: 960px) {
    #what,
    #news,
    #strength,
    #service,
    #greeting,
    #voice,
    #about,
    #contact {
        scroll-margin-top: 50px;
    }

    .common-h2 {
        font-size: 32px;
    }

    .common-h2-en {
        font-size: 16px;
    }

    .common-h3 {
        font-size: min(6.4vw, 24px);
    }

}

/* 共通 ボタン */
.btn-wrapper1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 30px 0 0 0;
}

.btn-more1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    background: #B59B55 0% 0% no-repeat padding-box;
    border-radius: 5px;
    max-width: 210px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    letter-spacing: 2.56px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    padding: 13px 0;
}

.btn-more1:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

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

/* 共通 index single archive 404 */
._minheight {
    min-height: 48vh;
}
.non-text {
    text-align: center;
    font-size: 16px;
    margin: 0;
}

._error {
    overflow-wrap: anywhere;
}

@media screen and (max-width: 960px) {
    ._minheight {
        min-height: 62vh;
    }
}

/* カテゴリー タグ */
.cat-ul,
.btn-cat-ul,
.tag-ul,
.archive-tag-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: stretch;
}

.cat-ul {
    margin: 0 0 5px 0;
}

.btn-cat-ul {
    margin: 0 0 20px 0;
}

.tag-ul {
    margin: 40px 0 0 auto;
    width: fit-content;
    gap: 2rem;
}


.archive-tag-ul {
    margin: 0 0 20px 0;
    width: fit-content;
    gap: 1rem;
}

.cat-link,
.btn-cat-link,
.tag-link {
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 1.12px;
    color: #fff;
}

.tag-link {
    font-size: 16px;
}

.btn-cat-link {
    padding: 5px 10px;
    box-sizing: border-box;
    background: #B59B55 0% 0% no-repeat padding-box;
    border-radius: 15px;

}

@media screen and (max-width: 960px) {
    .cat-link,
    .btn-cat-link {
        font-size: 13px;
    }
}

/* modal */
#service-modal-area1,
#service-modal-area2,
#story-modal-area1 {
  z-index: 1000;
}

.modal-area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.modal-bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
}

.modal-block::-webkit-scrollbar {
  display: none;
}

.modal-block {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  background: #fff;
  padding: min(6.667vw, 80px) min(3.333vw, 40px);
  box-shadow: 0px 2px 10px #333333;
  overflow: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 53vh;
  box-sizing: border-box;
}

.modal-close {
    position: absolute;
    top: 3%;
    right: 3%;
    cursor: pointer;
    text-align: center;
    color: #333333;
    font-size: 1.5vw;
    font-weight: 500;
    margin: 0;
}

@media screen and (max-width: 960px) {
  .modal-close {
    font-size: 2.933vw !important;
  }

  .modal-block {
    width: 90%;
    height: 66vh;
  }

  .open-modal {
    margin: 0 0 20px 0;
  }
}


/* fv */
.fv {
    background: #fff;
    position: relative;
    margin: -1px 0 0 0;
}

.fv-title-block {
    position: absolute;
    left: 10%;
    bottom: 10vw;
}

.fv-h1 {
    font-size: 3.333vw;
    color: #FFFFFF;
    text-shadow: 0px 0px 5px #333333;
    margin: 0 0 2.833vw 0;
}

.fv-text1 {
    font-size: 1.667vw;
    letter-spacing: 2.2px;
    color: #FFFFFF;
    text-shadow: 0px 0px 5px #333333;
    margin: 0;
}

@media screen and (max-width: 960px) {
    .fv-title-block {
        left: 5.333%;
        bottom: 8vw;
    }
    .fv-h1 {
        font-size: 4.8vw;
        margin: 0 0 4vw 0;
    }

    .fv-text1 {
        font-size: 3.2vw;

    }
}

/* movie */
.youtube-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

/* what */
.what {
    background: #fff;
}

.heading._what {
    max-width: 1330px;
    padding: 90px min(15%, 180px) 100px min(4.166%, 50px);
}

.what-wrapper {
    display: grid;
    grid-template-columns: 53fr 40fr;
    gap: 3rem;
}

.what-h2 {
    text-decoration: none;
    font-size: min(2.5vw, 30px);
    font-weight: 700;
    color: #7C2D2D;
    margin: 0 0 20px 0;
}

@media screen and (max-width: 960px) {
    .heading._what {
        max-width: 480px;
        padding: 80px min(5.333%, 20px);
    }

    .what-wrapper {
        grid-template-columns: 1fr;
    }

    .what-h2 {
        font-size: min(6.933vw, 28px);
    }
}

/* news */
.news {
    background: #FBF9F4 0% 0% no-repeat padding-box;
}

.news-block {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.date-text1 {
    font-size: 16px;
    color: #565656;
    margin: 0 0 2px 0;
}

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

/* problem */
.problem {
    background: #F2F2F2 0% 0% no-repeat padding-box;
}

.heading._problem-upper {
    padding-bottom: 0;
}

.heading._problem-down {
    max-width: 100%;
    padding-top: 0;
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.problem-img2 {
    width: 100%;
}

.problem-img3 {
    max-width: 200px;
    width: 100%;
    margin: 40px auto 15px auto;
}

.problem-text1 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #7C2D2D;
    margin: 0 0 20px 0;
}

.problem-text2 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #565656;
    margin: 0;
}

@media screen and (max-width: 960px) {
    .heading._problem-down {
        padding: 0 0 80px 0;
    }

    .problem-text1 {
        font-size: 24px;
    }
}

/* strength */
.strength {
    background: #FBF9F4 0% 0% no-repeat padding-box;
}
.heading._division {
    max-width: 1200px;
    padding-left: 0;
    padding-right: 0;
}

.division-wrapper {
    display: grid;
    grid-template-columns: 53fr 40fr;
    gap: 3rem;
    margin: 0 0 70px 0;
}

.division-wrapper._swap {
    grid-template-columns: 40fr 53fr;
}

.division-wrapper:last-child {
    margin: 0;
}

@media screen and (max-width: 960px) {
    .heading._division {
        max-width: 480px;
        padding: 80px min(5.333%, 20px);
    }

    .division-wrapper,
    .division-wrapper._swap  {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 0 50px 0;
    }
}


/* service */
.service {
    background: #fff;
}

.common-h3._service {
    font-size: 40px;
    margin: 0 0 10px 0;
}


@media screen and (max-width: 960px) {
    .common-h3._service {
        font-size: 32px;
    }

}

/* greeting */
.greeting {
    background: #FBF9F4 0% 0% no-repeat padding-box;
}

.greeting-upper-wrapper {
    display: grid;
    grid-template-columns: 3fr 5fr;
    gap: 2rem;
    margin: 0 0 30px 0;
}

.greeting-img1 {
    margin: 0 auto 20px 0;
}

.greeting-text1 {
    font-size: 16px;
    font-weight: 700;
    color: #565656;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.greeting-text2 {
    font-size: 22px;
    font-weight: 700;
    color: #7C2D2D;
    margin: 0;
}

.greeting-h3 {
    font-size: 26px;
    font-weight: 700;
    color: #7C2D2D;
    margin: 0 0 10px 0;
}

.greeting-h4 {
    font-size: 20px;
    font-weight: 700;
    color: #B59B55;
    margin: 0 0 10px 0;
}

.greeting-down-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.greeting-down-content._half {
    width: 47%;
}

.greeting-down-content-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    padding: min(1.667vw, 20px);
    box-sizing: border-box;
    margin: 0;
}


.greeting-text3 {
    font-size: 14px;
    color: #565656;
    margin: 0;
}

@media screen and (max-width: 960px) {
    .greeting-upper-wrapper {
        grid-template-columns: 1fr;
    }


    .greeting-down-content._half {
        width: 100%;
    }
    .greeting-down-content-block {
        padding: min(5.333vw, 20px);
    }

    .greeting-img1 {
        width: 89%;
    }

}

/* voice */
.voice-block {
    background: rgba(181,155,85,0.6);
    padding: min(1.667vw, 20px);
    box-sizing: border-box;
}

.voice-content {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: min(1.667vw, 20px);
    box-sizing: border-box;
    margin: 0 0 20px 0;
}

.voice-content:last-child {
    margin: 0;
}

.voice-h3 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}


.voice-h4 {
    font-size: 18px;
    font-weight: 700;
    color: #B59B55;
    margin: 0 0 10px 0;
}


@media screen and (max-width: 960px) {
    .voice-block {
        padding: min(5.333vw, 20px);
    }
    .voice-content {
        padding: min(5.333vw, 20px);        
    }

}

/* about */
.about {
    background: #FBF9F4 0% 0% no-repeat padding-box;
}

.about-h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #7C2D2D;
    margin: 0 0 20px 0;
}

.company-block {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.company-text1 {
    font-size: 16px;
    font-weight: 700;
    color: #7C2D2D;
    margin: 0 0 5px 0;
}

.about-wrapper {
    margin: 0 0 50px 0;
}

.about-wrapper:last-child {
    margin: 0;
}

.vision-img-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-logo-block{
    background: #FFFFFF 0% 0% no-repeat padding-box;
    padding: 20px min(5vw, 60px) ;
    display: grid;
    grid-template-columns: 4.8fr 8fr;
    gap: 2rem;
    align-items: center;
    box-sizing: border-box;
}

.about-logo-text1 {
    font-size: min(1.667vw, 18px);
    font-weight: 700;
    color: #565656;
    margin: 0;
}

@media screen and (max-width: 960px) {
    .vision-img-wrapper {
        grid-template-columns: 1fr;
    }

    .about-logo-block{
        grid-template-columns: 1fr;
    }

    .about-logo-img {
        max-width: 250px;
        margin: 0 auto;
    }

    .about-logo-text1 {
        font-size: min(4.8vw, 18px);
    }

}

/* story */

.story {
    content: '';
    background-image: url('../img/story-bg-pc.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.story-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: min(3.333vw, 40px);
    box-sizing: border-box;
}

.common-text1._story {
    line-height: 2;
}

.story-modal-text1 {
    line-height: 2;
    font-size: 16px;
    margin: 0 0 20px 0;
    color: #565656;
}

.story-modal-img1 {
    margin: 0 0 20px 0;
}

@media screen and (max-width: 960px) {
    .story {
        background-image: url('../img/story-bg-sp.png');
    }

    .story-block {
        padding: min(5.333vw, 20px);
    }
}


/* contact */
.contact {
    background: #FBF9F4 0% 0% no-repeat padding-box;
}

.contact-block {
    margin: 0 0 30px 0;
}

.contact-block._last {
    margin: 0;
}

.contact-text1 {
    font-size: 16px;
    font-weight: 700;
    color: #565656;
    margin: 0 0 10px 0;
}

._required {
    font-weight: 400;
    margin: 0 0 0 10px;
    color: #7C2D2D;
}

.privacy-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px 0;
}

.privacy-wrapper label {
    display: flex !important;
    align-items: center !important;
}

.common-text1._privacy {
    margin: 0;
    color: #B59B55;
}

.common-privacy-link {
    text-decoration: underline;
    color: #B59B55;
}

input.form-control,
select.form-select,
textarea.form-control {
    width: 100%;
    padding: 15px 2%;
    height: 70px;
        background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #B59B55;
    border-radius: 5px;
    box-sizing: border-box;
color: #565656;
    font-size: 16px;
}
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 #B59B55;
    position: relative;
    cursor: pointer;
    margin: 0 10px 0 0 !important;
}

input[type="checkbox"]:checked {
    background-color: #B59B55;
}

input[type="checkbox"]:checked::after {
    content: "✔";
    font-size: 14px;
    position: absolute;
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

/* validation */
#consent-error {
    position: absolute;
    left: 50%;
    margin-top: 40px;
    transform: translateX(-50%);
    color: #D30001;
        font-weight: normal;
    font-size: 16px;
}
.validation-block {
    color: #D30001;
}
.has-error .validation-block {
    text-align: left;
    color: #D30001;
}

#email-error {
    color: #d30001;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* 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: #009E96;
    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: #3958A7;
    color: #fff;
    border: 2px solid #3958A7;
}
@media screen and (max-width: 960px) {
}



/* footer */
.footer {
    background: #FFFFFF 0% 0% no-repeat padding-box;
}

.heading._footer {
    padding: 30px min(15%, 180px);
}

.footer-wrapper {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.footer-link-wrapper ul {
    display: flex;
    gap: 1rem;
}

.footer-text1 {
    text-align: center;
    font-size: 14px;
    color: #B59B55;
    margin: 0;
}

.arrow-fixed {
    position: fixed;
    height: auto;
    right: 10px;
    bottom: 10px;
    z-index: 13;
}

.arrow-link {
    width: 50px;
    height: auto;
}

@media screen and (max-width: 960px) {
    .heading._footer {
        padding: 40px min(5.333%, 20px) ;
    }

    .footer-wrapper,
    .footer-link-wrapper ul {
        text-align: center;
        display: block;
    }

    .footer-link-wrapper li {
        margin: 0 0 5px 0;
    }

    .footer-link-wrapper {
        margin: 0 0 40px 0;
    }

    .cta-fixed {
        position: fixed;
        width: 100%;
        bottom: 0;
        z-index: 13;
    }

    .cta-fixed-link {
        background: #7C2D2D 0% 0% no-repeat padding-box;
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        color: #FFFFFF;
        text-decoration: none;
    }

    .arrow-fixed {
        bottom: 60px;
    }
}

/* page02 common */
.page02 {
    background: #FBF9F4 0% 0% no-repeat padding-box;
    padding: 0 !important;
}

.heading._page02 {
    padding: 170px min(15%, 180px);
}

.fv2 {
    display: flex;
    justify-content: center;
    align-items: end;
    background: #84C3DC 0% 0% no-repeat padding-box;
    height: 288px;
}

.fv2._premium {
    background: #5B7EAD 0% 0% no-repeat padding-box;
}

.fv2._family {
    background: #41616D 0% 0% no-repeat padding-box;
}

.fv2._academy {
    background: #706048 0% 0% no-repeat padding-box;
}


.fv2-h1 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-align: center;
}

.archive-link {
    text-decoration: none;
    padding: 20px 0;
    border-bottom: 1px solid #DDDDDD;
    display: block;
}


@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }

    .fv2-h1 {
        font-size: 28px;
    }
}

/* page02 page03 パンくずリスト */
.heading._crumbs {
    padding: 20px min(15%, 180px);
}

#crumbs {
    position: relative;
}

.crumbs {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.crumbs::-webkit-scrollbar {
  display: none;
}

.crumbs-link {
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.crumbs-separator {
    margin: 0 8px;
    color: #333;
}

.crumbs-current {
    font-size: 16px;
    color: #333;
}

@media screen and (max-width: 960px) {
    .heading._page02 {
        padding: 80px min(5.333%, 20px);
    }
}

/* page02 ページネーション */
.pagenum-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
}
.pagenum {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1rem;
}
.pagenum li {
    padding: 0;
    margin: 0;
}
.pagenum li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    width: 45px;
    height: 45px;
    background: #F2F8FB 0% 0% no-repeat padding-box;
    border-radius: 24px;
    color: #84C3DC;

}

.pagenum li a:hover,
.pagenum li a.current,
.pagenum li a.active {
    background: #84C3DC 0% 0% no-repeat padding-box;
    color: #fff;
}

.pagenum li a.current,
.pagenum li a.active {
    cursor: default;
}

@media screen and (max-width: 960px) {
    .pagenum li a {
        width: 40px;
        height: 40px;
    }
}

/* page03 共通 */
.page03 {
    padding: 80px 0 0 0;
}

.fv3 {
    height: 20px;
}

.detail-img1 {
    width: 80%;
    margin: 0 auto 40px auto;
}

.detail h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3.36px;
    color: #333;
    padding: 0 0 30px 0;
    margin: 0 0 80px 0;
    border-bottom: 2px solid #84C3DC;
}

.detail-common-area h2,
.common-archive-h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    border-left: 6px solid #84C3DC;
    padding: 0 0 0 10px;
    margin: 0 0 40px 0;
    color: #333;
}

.detail-common-area img {
    margin: 0 0 20px 0;
}

.detail-common-area h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.48px;
    color: #84C3DC;
    border-bottom: 1px solid #84C3DC;
    padding: 0 0 10px 0;
    margin: 0 0 40px 0;
}
.detail-common-area h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 40px 0;
    color: #333;
}
.detail-common-area p {
    font-size: 16px;
    margin: 0 0 30px 0;
    color: #333;
}
.detail-common-area a {
    font-size: 16px;
    color: #84C3DC;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.detail-common-area ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
}
.detail-common-area ul li {
    font-size: 16px;
    color: #333;
    margin: 0 0 10px 0;
    position: relative;
    padding: 0 0 0 18px;
    line-height: 24px;
}
.detail-common-area ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #84C3DC;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media screen and (max-width: 960px) {
    .page03 {
        padding: 50px 0 0 0;
    }

}

