@charset "utf-8";

/* 共通設定 */

* {
    box-sizing: border-box;
    word-break: break-all;
    word-wrap: break-word;
}

html {
    /*overflow:auto;*/
    -webkit-tap-highlight-color: transparent;
    font-family: sans-serif;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    transition: 0.3s;
  }
  
  a:hover {
    text-decoration: none;
    opacity: 0.75;
  }
  
  a:active,
  a:hover {
    outline-width: 0;
  }
  
  ul,
  ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  p {
    margin: 0;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    text-align: left;
  }
  
  dl,
  dt,
  dd {
    margin: 0;
    padding: 0;
  }
  
  figure {
    margin: 0;
  }
  
  figcaption,
  figure,
  main {
    display: block;
  }
  
  article,
  aside,
  footer,
  header,
  nav,
  section {
    display: block;
  }
  
  pre {
    font-family: monospace, monospace;
    font-size: 1em;
  }
  
  b,
  strong {
    font-weight: bolder;
  }
  
  small {
    font-size: 80%;
  }
  
  img {
    border-style: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
  }
  
  input,
  optgroup,
  select,
  textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
  }
  
  button,
  input {
    overflow: visible;
  }
  
  button,
  select {
    text-transform: none;
  }
  
  button,
  html [type=button],
  [type=reset],
  [type=submit] {
    -webkit-appearance: none;
  }
  
  button::-moz-focus-inner,
  [type=button]::-moz-focus-inner,
  [type=reset]::-moz-focus-inner,
  [type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  
  button:-moz-focusring,
  [type=button]:-moz-focusring,
  [type=reset]:-moz-focusring,
  [type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  
  textarea {
    overflow: auto;
  }
  
  [type=checkbox],
  [type=radio] {
    box-sizing: border-box;
    padding: 0;
  }
  
  ::-webkit-file-upload-button {
    -webkit-appearance: none;
    font: inherit;
  }
  
  [hidden] {
    display: none;
  }
  
  address {
    font-style: normal;
  }
  
  figure {
    margin: 0;
  }
  
  table {
    border-collapse: collapse;
  }
  
  button {
    border: none;
  }
  

html {
    scroll-behavior: smooth
}

body {
    color: #594137;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: #594137;
    word-break: break-all;
    text-underline-offset: 0.2em;
}

a:hover {
    opacity: .6;
}

li {
    list-style-type: none;
}

.wrapper {
    max-width: 778px;
    padding-left: 35px;
    padding-right: 35px;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.fixed {
    position: fixed;
}

/* header */
.header-fixed {
    background-color: #fff;
    width: 100%;
    justify-content: space-between;
    height: 110px;
    top: 0;
    left: 0;
    z-index: 5;
    transition: height 0.3s;
    padding-left: 25px;
    box-shadow: 0 5px 5px rgb(0 0 0 / 3%);
}

.header__title {
    padding-top: 12px;
    max-width: 216px;
}

/* gnav */
.gnav {
    width: 50%;
    height: calc(100% - 110px);
    top: 110px;
    right: 0;
    background-color: #fff;
    box-shadow: -5px 0 5px rgb(0 0 0 / 3%);
    transform: translateX(100%);
    transition: all 0.3s;
    z-index: 100;
}

.gnav__scroll {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    width: 100%;
    height: 100%;
    padding: 20px;
}

.gnav.open {
    right: 0;
    transform: translateX(0);
}

.gnav__item {
    width: 100%;
    font-size: 24px;
    padding: 1em 20px;
}

.gnav__link {
    position: relative;
}

.gnav__link:hover {
    opacity: 1;
    position: relative;
}

.gnav__link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    background-color: #FF7D7D;
    transition: all 0.3s ease;
}

.gnav__link:hover::after {
    transform: scaleX(1);
}

/* ハンバーガーボタン */
.gnav-btn {
    width: 110px;
    height: 110px;
    position: relative;
    cursor: pointer;
}

.gnav-btn span {
    width: 43px;
    height: 2px;
    background-color: #2a424b;
    display: inline-block;
    position: absolute;
    left: 30px;
    transition: all 0.3s;
}

.gnav-btn span:first-child {
    top: 38px;
}

.gnav-btn span:nth-child(2) {
    top: 55px;
}

.gnav-btn span:last-child {
    top: 72px;
}

.gnav-btn.close span:first-child {
    top: 55px;
    transform: rotate(45deg);
}

.gnav-btn.close span:nth-child(2) {
    display: none;
}

.gnav-btn.close span:last-child {
    top: 55px;
    transform: rotate(-45deg);
}

/* main */
/* mv */
main .ld-sec {
    background-color: #fefef3;
}

main .ld-sec:nth-child(even) {
    background-color: #ffebcc;
}

main .ld-sec.bg {
    background-color: #fefef3;
}

.main-visual,
.contact {
    background-image: url(../img/bgi1.png);
    background-size: cover;
}

.main-visual {
    margin-top: 110px;
    padding: 140px 0;
}

.mv__title {
    font-family: 'Kosugi Maru', sans-serif;
    font-size: 42px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 55px;
    letter-spacing: 5px;
}

.mv__title time {
    display: block;
    padding: 30px 0;
}

/* svg */
svg {
    overflow: visible;
}

.svgDate text {
    font-size: 148px;
    stroke: #ffffff;
    fill: #ff7d7d;
    text-anchor: middle;
    dominant-baseline: alphabetic;
    font-family: 'Mochiy Pop P One', sans-serif;
    letter-spacing: normal;
}

.svgDate svg use:nth-of-type(1) {
    stroke-width: 15px;
    paint-order: stroke;
    stroke-linejoin: round;
}

.svgDate svg use:nth-of-type(2) {
    stroke-width: 0;
}

.mv__title span {
    font-size: 40px;
    display: block;
}

.mv__imgBox {
    text-align: center;
}

/* mvより後 */
.ld-sec {
    padding: 78px 0;
}

.ld-sec__title {
    text-align: center;
    font-family: 'Kosugi Maru', sans-serif;
    font-size: 40px;
    margin-bottom: 50px;
    line-height: 1.2;
    padding: 0 25px;
    letter-spacing: 2px;
}

.ld-sec__title span {
    display: block;
    border-bottom: 2px dotted #594237;
    width: fit-content;
    margin: 0 auto 28px;
    padding-bottom: 14px;
}

.sec__imgBox {
    text-align: center;
    margin-bottom: 30px;
}

.sec__text,
.sec__item,
.box__text,
.box__item {
    font-size: 24px;
    line-height: 1.8;
}

.sec__text span {
    font-weight: 700;
}

.sec__link {
    display: block;
    font-weight: 700;
    color: #fff;
    text-align: center;
    font-size: 28px;
    background-color: #ff7d7d;
    border-radius: 55px;
    padding: 1.15em 0;
    margin: 40px auto 0;
    border: 2px solid #ff7d7d;
    transition: all 0.3s;
    max-width: 708px;
}

.sec__link:hover {
    opacity: 1;
    color: #ff7d7d;
    background-color: #fff;
}

.ld-sec__box {
    background-color: #fff;
    position: relative;
    border-radius: 20px;
    padding: 0 40px 50px;
}

.box__title {
    font-weight: 700;
    font-size: 28px;
}

.box__item,
.sec__item {
    list-style-type: disc;
    list-style-position: inside;
    text-indent: -1.2em;
    margin-left: 1.2em;
}

.attention .box__item,
.faq .box__item {
    list-style-type: none;
    list-style-position: outside;
    text-indent: 0;
    margin-left: 0;
}

.box__text a,
.box__list a {
    text-decoration: underline;
    /* 221228 */
    color: #FF7D7D;
}

.recommendation {
    padding: 120px 0 82px;
}

.payment .ld-sec__title {
    margin-bottom: 0;
}

.payment .ld-sec__box {
    padding-top: 195px;
    margin: 125px 0 0;
}

.payment .box__title {
    text-align: center;
    line-height: 1.2;
    margin-bottom: 45px;
    vertical-align: middle
}

.payment .box__title span {
    margin-right: 15px;
}

.payment-imgBox {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.payment .ld-sec__box:last-child {
    margin-bottom: 0;
}


.case01 .sec__list {
    margin: 20px 0 50px;
}

.faq ol .box__item {
    text-indent: -1.3em;
    margin-left: 1.3em;
}

.contact__inner {
    background-color: #fff;
    padding: 30px 35px 37px;
    text-align: center;
    max-width: 708px;
    margin: 0 auto;
}

.contact__content {
    padding: 0 25px;
}

.contact .sec__text {
    letter-spacing: 2px;
}

.tel {
    margin: 0 15px 25px;
    line-height: 1;
}

.tel__box {
    justify-content: center;
    margin-top: 30px;
}

.tel__link {
    display: block;
    position: relative;
    padding-left: 47px;
}

.tel__link::before {
    position: absolute;
    content: "";
    background-image: url(../img/tel.png);
    background-size: contain;
    width: 41px;
    height: 22px;
    top: 2px;
    left: 0;
}

.fax__link::before {
    background-image: url(../img/fax.png);
}

/* アコーディオンパネル */
.accordion-box {
    background-color: #fefef3;
    border: 1px solid #FFEBCC;
    padding: 0;
    margin-bottom: 42px;
}

.accordion-box:last-child {
    margin-bottom: 0;
}

.accordion-box__title {
    padding: 1.2em 95px 1.2em 40px;
    background-color: #ffebcc;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
}

.accordion-box__content {
    padding: 0 40px;
    line-height: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition-duration: .3s;
}

.accordion-box__title::after {
    position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-left: 2px solid #594237;
    border-bottom: 2px solid #594237;
    top: calc(50% - 13px);
    right: 40px;
    transform: rotate(-45deg);
    transition-duration: .3s;
}

.accordion-box__content.open {
    line-height: 1.8;
    height: auto;
    opacity: 1;
    padding-top: 30px;
    padding-bottom: 50px;
}

.accordion-box__title.active {
    border-radius: 20px 20px 0 0;
}

.accordion-box__title.active::after {
    transform: rotate(135deg);
    top: calc(50% - 4px);
}

.faq .accordion-box {
    border: none;
    background-color: #fff;
}

.faq .accordion-box__title {
    background-color: #fff;
    padding-left: 78px;
    position: relative;
}

.faq .accordion-box__title.active {
    border-bottom: 1px dotted #594137;
}

.faq .accordion-box__title::before {
    position: absolute;
    content: "";
    background-image: url(../img/q.png);
    background-size: contain;
    width: 23px;
    height: 25px;
    top: 43px;
    left: 40px;
}

.faq .accordion-box__title::after {
    top: 39px;
}

.faq .accordion-box__title.active::after {
    top: 48px;
}

.faq .accordion-box__content {
    padding-left: 90px;
    padding-right: 65px;
    position: relative;
}

.faq .accordion-box__content::before {
    position: absolute;
    content: "";
    background-image: url(../img/a.png);
    background-size: contain;
    width: 22px;
    height: 22px;
    top: 43px;
    left: 40px;
}

/* footer */
.footer-inner {
    padding: 40px 60px 61px 25px;
    margin-bottom: 114px;
}

.fotter__content {
    justify-content: space-between;
}

.fotter-title {
    max-width: 291px;
    margin-bottom: 15px;
}

.footer-right {
    margin-top: 20px;
}

.footer__link,
.copy small {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.footer__link {
    font-size: 24px;
    color: #ff7d7d;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 1em;
    line-height: 1;
}

.copy {
    margin-top: 65px;
}

.copy small {
    font-size: 21px;
}

/* bottom-fixed */
.bottom-fixed {
    bottom: 0;
    width: 100%;
}

.bottom__text {
    background-color: #fcb97c;
    border: 2px solid #fff;
    border-radius: 10px 10px 0 0;
    font-weight: 700;
    position: relative;
    color: #fff;
    text-align: center;
    font-size: 28px;
    padding: 1.2em 0;
    transition: all 0.3s;
    display: block;
}

.bottom__icon {
    text-align: center;
    position: absolute;
    padding-top: 50px;
    width: 142px;
    height: 143px;
    background-image: url(../img/bottom-link-bgi.png);
    background-size: contain;
    right: 25px;
    bottom: 6px;
    font-size: 18px;
    color: #fff;
}

.bottom__link:hover {
    opacity: .9;
}

.bottom__link:hover span {
    opacity: .7;
}


.bottom__text:hover {
    opacity: 1;
    background-color: #fff;
    color: #fcb97c;
    border: 2px solid #fcb97c;
}

/* animation */
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

time.fadeIn {
    animation-delay: .8s;
}

/* flex-direction */
.payment__content {
    flex-direction: column;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fadeUpTrigger {
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* responsive */
@media(min-width: 1251px) {
    .wrapper {
        max-width: 1340px;
        padding-left: 120px;
        padding-right: 120px;
    }

    .header-fixed {
        height: 80px;
        padding-left: 30px;
    }

    .header__title {
        max-width: 160px;
        padding-top: 7px;
    }

    .gnav {
        top: 80px;
        height: calc(100% - 80px);
    }

    .gnav-btn {
        width: 100px;
        height: 80px;
    }

    .gnav-btn span {
        left: 20px;
    }

    .gnav-btn span:first-child {
        top: 23px;
    }

    .gnav-btn span:nth-child(2) {
        top: 40px;
    }

    .gnav-btn span:last-child {
        top: 57px;
    }

    .gnav-btn.close span:first-child {
        top: 40px;
    }

    .gnav-btn.close span:last-child {
        top: 40px;
    }

    .main-visual {
        margin-top: 80px;
    }

    .recommendation .sec__text {
        text-align: center;
    }

    .footer-inner {
        margin-bottom: 0;
    }

    .bottom-fixed {
        top: 120px;
        right: 0;
        width: auto;
    }

    .bottom__text {
        writing-mode: vertical-lr;
        background-color: #fcb97c;
        border: 2px solid #fff;
        border-radius: 10px 0 0 10px;
        font-size: 28px;
        padding: 25px;
        font-size: 24px;
    }

    .bottom__icon {
        writing-mode: horizontal-tb;
        text-align: center;
        position: absolute;
        padding-top: 30px;
        width: 93px;
        height: 93px;
        top: 25px;
        right: 65px;
        font-size: 13px;
    }

    /* flex-direction */
    .payment__content {
        flex-direction: row;
        justify-content: space-between;
    }

    .payment .ld-sec__box {
        width: calc(50% - 20px);
    }
}

@media(max-width: 680px) {
    .gnav {
        width: 100%;
    }

    .gnav__item {
        font-size: 22px;
    }

    .main-visual,
    .contact {
        background-image: url(../img/bgi2.png);
    }


    .mv__title {
        font-size: 6.1vw;
    }

    .svgDate text {
        font-size: 21vw;
    }

    .mv__title time {
        padding: 20px 0;
    }

    .mv__title span {
        font-size: 5.8vw;
    }

    .ld-sec__title {
        font-size: 36px;
    }

    .sec__text,
    .sec__item,
    .box__text,
    .box__item {
        font-size: 22px;
    }

    .sec__link {
        font-size: 24px;
        max-width: 500px;
    }

    .box__title {
        font-size: 26px;
    }

    .payment .ld-sec__box:nth-child(2) {
        padding-top: 32%;
    }

    .accordion-box__title {
        padding-right: 80px;
    }

    .accordion-box__title::after {
        width: 18px;
        height: 18px;
        right: 33px;
    }

    .faq .accordion-box__title::before {
        top: 40px;
    }

    .faq .accordion-box__content::before {
        top: 40px;
    }

    .footer-inner {
        margin-bottom: 95px;
    }

    .footer__link {
        font-size: 22px;
    }

    .fotter-title {
        max-width: 216px;
    }

    .copy small {
        font-size: 18px;
    }

    .bottom__icon {
        width: 90px;
        height: 90px;
        right: 6px;
        bottom: 50px;
        font-size: 14px;
        padding-top: 27px;
    }

    .bottom__text {
        font-size: 26px;
        padding: 1em 0;
    }
}

@media(max-width: 500px) {
    .header-fixed {
        height: 80px;
        padding-left: 30px;
    }

    .header__title {
        max-width: 160px;
        padding-top: 7px;
    }

    .gnav {
        top: 80px;
        height: calc(100% - 80px);
    }

    .gnav-btn {
        width: 85px;
        height: 80px;
    }

    .gnav-btn span {
        left: 20px;
    }

    .gnav-btn span:first-child {
        top: 23px;
    }

    .gnav-btn span:nth-child(2) {
        top: 40px;
    }

    .gnav-btn span:last-child {
        top: 57px;
    }

    .gnav-btn.close span:first-child {
        top: 40px;
    }

    .gnav-btn.close span:last-child {
        top: 40px;
    }

    .wrapper {
        padding-left: 25px;
        padding-right: 25px;
    }

    .main-visual {
        padding: 65px 0;
        margin-top: 80px;
    }

    .mv__title {
        font-size: 6vw;
    }

    .mv__title time {
        padding: 0;
    }

    .svgDate svg use:nth-of-type(1) {
        stroke-width: 12px;
    }

    .sec__text,
    .sec__item,
    .box__text,
    .box__item,
    .footer__link {
        font-size: 18px;
    }

    .box__title {
        font-size: 20px;
    }

    .ld-sec {
        padding: 60px 0;
    }

    .ld-sec__title {
        font-size: 28px;
    }

    .ld-sec__title span {
        font-size: 18px;
    }

    .sec__link {
        font-size: 20px;
        margin-top: 25px;
        padding: 1em 0;
    }

    .recommendation {
        padding-top: 80px;
    }

    .payment .ld-sec__box:nth-child(2) {
        padding-top: 29%;
    }

    .payment .box__title {
        margin-bottom: 33px;
    }

    .payment .box__title span {
        margin-right: 13px;
        line-height: 1.4;
    }

    .payment .ld-sec__box:first-child .box__title span img {
        width: 23px;
    }

    .payment .ld-sec__box:nth-child(2) .box__title span img {
        width: 25px;
    }

    .accordion-box__title {
        padding-right: 60px;
    }

    .accordion-box__title::after {
        width: 16px;
        height: 16px;
        right: 29px;
    }

    .faq .accordion-box__title {
        padding-left: 65px;
    }

    .faq .accordion-box__title::before {
        width: 21px;
        height: 23px;
        top: 29px;
        left: 30px;
    }

    .faq .accordion-box__title::after {
        top: 27px;
    }

    .faq .accordion-box__title.active::after {
        top: 36px;
    }

    .faq .accordion-box__content {
        padding-left: 77px;
        padding-right: 52px;
    }

    .faq .accordion-box__content::before {
        width: 20px;
        height: 20px;
        top: 37px;
        left: 34px;
    }

    .contact__inner {
        padding: 45px 0 40px;
    }

    .contact .ld-sec__title {
        margin-bottom: 30px;
    }

    .tel__link {
        font-size: 30px;
    }

    .tel__link::before {
        top: 7px;
    }

    .copy small {
        font-size: 16px;
    }

    .footer-inner {
        padding-top: 30px;
        margin-bottom: 81px;
        padding-bottom: 47px;
    }

    .copy {
        margin-top: 48px;
    }

    .bottom__icon {
        font-size: 13px;
        width: 83px;
        height: 83px;
        font-size: 12px;
        padding-top: 26px;
    }

    .bottom__text {
        font-size: 22px;
    }
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.txt-link {
    text-decoration: underline;
    color: #FF7D7D;
}

.mail__box {
    justify-content: center;
    margin-top: 10px;
}

.mail {
    margin: 0 15px 25px;
    line-height: 1;
}

.mail__link {
    display: block;
    position: relative;
    padding-left: 47px;
}

.mail__link::before {
    position: absolute;
    content: "";
    background-image: url(../img/mail.png);
    background-size: contain;
    width: 50px;
    height: 22px;
    top: 2px;
    left: 0;
}

@media(max-width: 786px) {
    .mail__link::before {
        width: 41px;
    }

}

/* 20231225追加 */
.recommendation__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

@media(max-width: 786px) {
    .recommendation__grid {
        grid-template-columns: 1fr;
    }
}

.time_limit {
    padding-top: 120px;
    margin-top: -120px;
}