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

.body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

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

.heading {
    position: relative;
    width: 100%;
    max-width: 1500px;
    padding: 100px min(10%, 150px);
    box-sizing: border-box;
}

.heading._other {
    padding: 50px min(10%, 150px);
}

a {
    display: inline-block;
}

a:hover {
    opacity: 0.8;
}

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

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

main {
    padding: min(7.292vw, 140px) 0 0 0;
}


address {
  font-style: normal;
}

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

    .pc {
        display: none !important;
    }

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

    .heading._other {
        padding: 20px min(5.333%, 20px);
    }

    main {
        padding: 50px 0 0 0;
    }
}

/* header */
.header01 {
    position: fixed;
    width: 100%;
    z-index: 999;
    box-sizing: border-box;
}

.nav01 {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 100%;
    height: min(7.292vw, 140px);
    padding: 0;
    background: rgba(255,255,255,1);
}

.header-logo {
    width: min(26.042vw, 500px);
    margin: 0
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    height: min(7.292vw, 140px);
}

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

.header-li {
    margin: 0 min(2.396vw, 46px) 0 0;
    box-sizing: border-box;
}
.header-li._none {
    margin: 0;
}

.header-text1 {
    text-decoration: none;
    font-size: min(1.094vw, 21px);
    font-weight: 700;
    color: #000000;
}

.header-text1:hover {
    text-decoration: none;
    color: #1B98DA;
}

.header-icon2 {
    width: min(2.604vw, 50px);
    margin: 0 auto;
}

.header-btn1 {
    width: min(3.125vw, 60px);
}

.header-btn2 {
    width: min(11.146vw, 214px);
}


@media screen and (max-width: 960px) {
    .header01 {
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        top: 0;
    }

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

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

    .header-logo {
        width: 120px;
        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: #333333;
    }

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

    .header-icon2 {
        width: 30px;
    }

    .header-modal {
        position: fixed;
        top: 50px;
        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: 15px 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-img1 {
        margin: 0 15px 0 0;
        padding: 20px 0 0 0;
    }

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

    }
    .ham-btn span {
      position: absolute;
      height: 2px;
      background: #ffffff;
      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;
    }
}
/* 共通 スクロール位置 見出し */
#news,
#about,
#reason,
#flow,
#review,
#contact {
    scroll-margin-top: min(7.292vw, 140px);
}

.common-h2 {
    text-align: center;
    font-size: 23px;
    color: #44392C;
    margin: 0 0 50px 0;
    text-decoration: none;
    position: relative;
    line-height: 1;
}

.common-h2-en {
    font-family: 'Bree Serif';
    text-align: center;
    letter-spacing: 8px;
    color: #000000;
    font-size: 66px;
    margin: 0 0 19px 0;
    text-decoration: none;
    position: relative;
}

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

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

.common-h3-en {    
    font-family: 'Bree Serif';
    font-size: 37px;
    color: #1B98DA;
    text-decoration: none;
    padding: 0 0 21px 0;
    margin: 0 0 37px 0;
    position: relative;
}

.common-h3-en:before {  
    width: 51px;
    height: 9px;
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    background-image: url('../img/icon1.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.common-h3-en ._large {
    font-size: 83px;
    margin: 0 0 0 10px;
}

.common-h3 {
    font-size: 25px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 31px 0;
}

.common-h3._yellow{
    font-size: 30px;
    text-align: center;
    font-weight: 500;
    color: #F3E858;
}

.common-h4 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
}

.common-text1 {
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    margin: 0 0 20px 0;
}

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

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

.common-text1._last {
    margin: 0;
}

.common-text1._mb50 {
    margin: 0 0 50px 0;
}

.common-text1._wh {
    font-size: 16px;
    color: #fff;
}


@media screen and (max-width: 960px) {
    #news,
    #about,
    #reason,
    #flow,
    #review,
    #contact {
        scroll-margin-top: 50px;
    }

    .common-h2-en {
        font-size: min(16vw, 60px);
    }

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

/* 共通 ボタン */
.btn-wrapper1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 60px 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: #1B98DA 0% 0% no-repeat padding-box;
    border-radius: 52px;
    max-width: 336px;
    width: 100%;
    padding: 29px 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

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

.btn-icon1 {
    width: 9px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

@media screen and (max-width: 960px) {
    .btn-more1 {
        font-size: min( 4.267vw, 16px);
    }
}

/* fv */
.fv {
    position: relative;
}

.news-block {
    position: absolute;
    max-width: 1300px;
    width: 89%;
    top: 26.666vw;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 10px #00000029;
    padding: min(2.604vw, 50px) min(5.208vw, 100px);
    box-sizing: border-box;
}

.news-h2 {
    font: normal normal bold 32px/32px Source Han Sans JP;
    color: #000000;
    margin: 0;
    padding: 0 0 16px 0;
    border-bottom: 2px solid #B9B9B9;
}

.news-block ul {
    padding: 16px 0;
    border-bottom: 1px solid #B9B9B9;
}

.news-block li {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}
.news-block li ._title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #1B98DA 0% 0% no-repeat padding-box;
    padding: 3px 17px;
    margin: 0 16px 0 0;
}

.news-block li ._date {
    font: normal normal normal 21px/21px Bree Serif;
    color: #000000;
    margin: 0 16px 0 0;
}

@media screen and (max-width: 960px) {
    .news-block {
        width: 100%;
        position:  static;
        top: auto;
        left: auto;
        transform: none;
        padding: min(13.333vw, 50px) min(5.333vw, 20px);
    }

    .news-wrapper {
        padding: 20px min(5.333%, 20px) 60px min(5.333%, 20px);
    }

    .news-block li ._content {
        display: block;
        margin-top: 10px;
    }
}

/* fv-copy */
.fv-copy {
    content: '';
    background-image: url('../img/fv-copy-bg-pc.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.fv-copy-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.fv-copy-upper {
    padding: 29px 0;
    border-top: 10px solid #F3E858;
    border-bottom: 10px solid #F3E858;
}

.fv-copy-text1 {
    text-align: center;
    font: normal normal bold 25px/25px Source Han Sans JP;
    color: #1B98DA;
    margin: 0 0 10px 0;
}

.fv-copy-text2 {
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    font-size: min(7vw, 112px);
    font-family: 'Sawarabi Mincho';
    letter-spacing: -6.75px;
    font-weight: 500;
    color: #1B98DA;
    margin: 0;
    line-height: 0.8;
}

.fv-copy-text2 ._small {
    font-size: min(1.563vw, 25px);
    font-weight: 700;
    letter-spacing: 0px;
}

.fv-copy-text3 {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #1B98DA;
    padding: 31px 0;
    margin: 0;
}

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

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

    .fv-copy-upper {
        padding: 20px 0;
    }

    .fv-copy-text2 {
        font-size: min(21.333vw, 80px);
        letter-spacing: 0px;
    }
    .fv-copy-text2 ._small {
        font-size: min(8vw, 30px);
    }

    .fv-copy-text3 {
        padding: 20px 0;
    }
}

/* reason */
.reason-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 0 0 87px 0;
}

.reason-block:last-child {
    margin: 0;
}
@media screen and (max-width: 960px) {
    .reason-block {
        grid-template-columns: 1fr;
    }
}

/* about */
.about {
    position: relative;
}
.about-block {
    position: absolute;
    max-width: 1300px;
    width: 89%;
    top: 27vw;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 10px #00000029;
    padding: min(2.604vw, 50px) min(5.208vw, 100px);
    box-sizing: border-box;
    background: #1B98DA 0% 0% no-repeat padding-box;
}

.about-space {
    height: 500px;
}

@media screen and (max-width: 1366px) {
    .about-block {
        width: 100%;
        max-width: 100%;
        position: static;
        transform: none;
        padding: min(21.333vw, 80px) min(5.333vw, 20px);
    }

    .about-space {
        display: none;
    }
}

/* flow */
@media screen and (max-width: 960px) {
    .flow-wrapper {
        overflow-x: auto;
    }

    .flow-wrapper img {
        width: 1300px;
    }
}

/* modal */
#modal-area1,
#modal-area2,
#modal-area3,
#modal-area4 {
  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 {
  width: 70%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  background: #fff;
  padding: min(3.333vw, 40px);
  box-shadow: 0px 2px 10px #00000033;
  border-radius: 14px;
  overflow: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 53vh;
  box-sizing: border-box;
}

.open-modal {
  text-decoration: underline;
  cursor: pointer;
  margin: 0 2% 0 0;
}
    
.common-h4._modal {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1B98DA;
    margin: 0 0 20px 0;
}


.close-modal {
    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) {
  .close-modal {
    font-size: 2.933vw !important;
  }
  .modal-block {
    width: 90%;
    height: 66vh;
  }
  .open-modal {
    margin: 0 0 20px 0;
  }
}

/* review */
.review {
    background: #DBEFFA 0% 0% no-repeat padding-box;
}
.common-h3._review {
    font-size: 28px;
    color: #1B98DA;
    padding: 0 0 19px 0;
    border-bottom: 2px solid #1B98DA;
}

.reviw-area {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    margin: 0 0 70px 0;
}

.reviw-area:last-child {
    margin: 0;
}

.review-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #E6E6E6;
    border-radius: 15px;
    padding: min(1.25vw, 20px);
    box-sizing: border-box;
}

.btn-wrapper1._review {
    margin: 0;
}
.btn-more1._review {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 2px solid #1B98DA;
    border-radius: 25px;
    color: #1B98DA;
    padding: 13px 0;
    max-width: 190px;
}

.review-img1 {
    width: 50%;
    margin: 0 auto 20px auto;
}

.modal-block._review {
    width: 35%;
}


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

    .review-block {
        padding: min(5.333vw, 20px);
    }
    .modal-block._review {
        width: 90%;
    }
}

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

.contact-tel-block {
    width: 50%;
    text-align: center;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 30px;
    padding: 33px 83px;
    box-sizing: border-box;
    margin: 0 auto 60px auto;
}

.contact-tel-text1 {
    text-decoration: none;
    font: normal normal normal 44px/44px Bree Serif;
    letter-spacing: 2.65px;
    color: #1B98DA;
    margin: 0 0 10px 0;
}

.contact-tel-text1 ._small {
    font-size: 23px;
}


.contact-tel-text2 {
    text-align: center;
    font-size: 15px;
    color: #000000;
    margin: 0;
}

.common-text1._contact {
    font-size: 19px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

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

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

._required {
    font-size: 19px;
    font-weight: 700;
    color: #D70C18;
    margin: 0 0 0 10px;
}

.privacy-block {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    padding: 37px 40px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
}

.common-h3._privacy {
    font-weight: 700;
    font-size: 21px;
    color: #000000;
    margin: 0 0 10px 0;
}

.privacy-block li {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    margin: 0 0 5px 0;
}

.contact-label {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

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 #E3E3E3;
    border-radius: 5px;
    box-sizing: border-box;
    color: #333;
    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 #707070;    
    position: relative;
    cursor: pointer;
    margin: 0 10px 0 0 !important;
}

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

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) {
    .contact-tel-block {
        width: 100%;
        padding: min(13.333vw,50px) min(5.333vw, 20px);
    }

    .contact-tel-text1 {
        font-size: 39px;
        margin: 0 0 13px 0;
    }

    .contact-tel-text1 ._small {
        font-size: 20px;
    }

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

/* validation */
#consent-error {
    position: absolute;
    left: 10%;
    margin-top: 45px;
    color: #D30001;
    font-weight: normal;
    font-size: 16px;
}
.validation-block {
    color: #fff;
}
.has-error .validation-block {
    text-align: left;
    color: #D30001;
}
/* 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 {
    margin: -1px 0 0 0;
}

.footer-upper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer-img1 {
    width: 350px;
    margin: 0 0 32px 0;
}

.common-text1._footer {
    font-weight: 300;
    font-size: 16px;
    color: #000000;
}

.common-text1._footer._wh {
    color: #fff;
}

.common-text1._small {
    font-size: 16px;
    font-weight: 600;
}

.footer-right {
    display: flex;
    gap: 1rem;
    margin: 0 0 0 auto;
}

.footer-under {
    justify-content: center;
    display: flex;
    align-items: center;
    height: 86px;
    background: #1B98DA 0% 0% no-repeat padding-box;
}

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

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

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

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

    .footer-img1 {
        width: 100%;
    }

    .footer-right {
        display: block;
        gap: 0;
        margin: 60px 0 0 0;
    }

    .footer-cta {
        position: fixed;
        bottom: 0;
        display: flex !important;
        width: 100%;
        height: 50px;
    }

    .cta-fixed {
        position: fixed;
        width: 100%;
        bottom: 0;
        left: 0;
        height: 50px;
        z-index: 999;
    }

    .cta-fixed-btn1 {
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #1B98DA 0% 0% no-repeat padding-box;
        font-size: 21px;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0;
        text-decoration: none;
    }

}


