/*-- common --*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: bottom;
}
a {
    color: #333333;
    text-decoration: none;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
html {
    font-size: 10px;
}
body {
    font-family: 'Noto Sans JP', serif;
    background-color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-wrap: break-word;
}
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
h2 span,
h3 span,
h4 span {
    display: inline-block;
}
img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
	.wrapper img {
		image-rendering: pixelated;
	}
}
.pc-only {
    display: block;
}
.sp-only {
    display: none;
}
/*-- header --*/
#header {
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
}
#header .header-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-left: clamp(90px, 11.8vw, 170px);
}
#header .header-left {
    padding-right: 20px;
}
h1 {
    font-size: 1rem;
    font-weight: 400;
    white-space: nowrap;
}
#header .header-logo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 0;
}
#header .header-logo img {
    width: 100%;
    max-width: 414px;
}
#header .header-right {
    display: flex;
}
#header .phone {
    width: 100%;
    max-width: 310px;
    margin-top: 10px;
}
#header .phone img {
    width: 100%;
}
#header .request {
    width: 255px;
    height: 70px;
    margin: 10px 20px 0;
    border-radius: 35px;
    border: 1px solid #E5E5E5;
    background: linear-gradient(to right, #304EC7 0%, #AB36F4 50%, #304EC7 100%);
    background-size: 200% 100%;
    transition: 0.3s ease-in-out;
}
#header .request:hover {
    background-position: 100% 0;
}
#header .request a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
#header .request img.book_icon {
    width: 28px;
    height: 31px;
    margin-right: 18px;
}
#header .request div {
    margin-right: 16px;
}
#header .request div p {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    color: #fff;
}
#header .request div p.yellow {
    font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #FFEB00;
}
#header .request div p.yellow::after {
    display: inline-block;
    content: '';
    width: 13px;
    height: 13px;
    background-image: url(../images/header_pencil.png);
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 4px;
}
#header .request img.arrow {
    width: 16px;
    height: 16px;
}


/*-- nav --*/
#g-nav.panelactive {
    position:fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
}
#g-nav-list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    background: #36375E;
}
#g-nav.panelactive #g-nav-list {
    display: block; 
}
#g-nav ul {
    opacity: 0;
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-left: 19px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
}
#g-nav.panelactive ul {
    opacity: 1;
}
#g-nav.panelactive ul li {
    position: relative;
    width: 30%;
    margin-top: 44px;
    text-align: left;
    white-space: nowrap;
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
#g-nav.panelactive ul li:first-child {
    margin-top: 0;
}
#g-nav.panelactive ul li::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 0.5em;
    height: 0.5em;
    background-image: url(../images/g-nav-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}
@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
#g-nav li {
    text-align: center; 
    list-style: none;
}
#g-nav li a {
    display: block;
    padding-left: 7px;
    margin-left: 13px;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    text-decoration: none;
}

.openbtn {
    position: relative;
    cursor: pointer;
    width: 90px;
    height: 90px;
    background-color: #36375E;
    z-index: 9999;
    overflow: hidden;
}
.openbtn .openbtn-area {
    transition: all .4s;
}
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25px;
    height: 1px;
    background: #fff;
    width: 40px;
}
.openbtn span:nth-of-type(1) {
    top: 27px;	
}
.openbtn span:nth-of-type(2) {
    top: 45px;
}
.openbtn span:nth-of-type(3) {
    top: 63px;
}
.openbtn.active .openbtn-area {
    transform: rotateX(360deg);
}
.openbtn.active span:nth-of-type(1) {
    top: 34px;
    left: 25px;
    transform: translateY(6px) rotate(-135deg);
    width: 50%;
    background: #fff;
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 46px;
    left: 25px;
    transform: translateY(-6px) rotate(135deg);
    width: 50%;
    background: #fff;
}

/*-- banner --*/
.banner {
    padding: 50px 20px;
    background-color: #fff;
}
ul.banner-001 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}
.banner li {
    width: 238px;
}

/*-- footer --*/
.footer {
    width: 100%;
    padding: 106px 20px 0;
    background-image: url(../images/bg_footer_01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
.footer-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    padding-bottom: 110px;
    display: flex;
    justify-content: space-between;
}
.footer-logo {
    width: 100%;
    max-width: 260px;
}
.footer-inner {
    display: flex;
    justify-content: center;
    column-gap: 55px;
}
.footer-nav {
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}
.footer-menu {
    list-style: none;
    position: relative;
}
.footer-menu::before {
    position: absolute;
    top: 50%;
    left: -12px;
    content: '';
    width: 5px;
    height: 7px;
    background-image: url(../images/bg_footer_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.footer-link {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
}
.copyright {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 22px 20px 280px;
    border-top: 1px solid #5C5D86;
}
.copyright a {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
}
.copyright span {
    display: inline-block;
}


/*-- fixed-footer フッタータブ --*/
#fixed-footer {
    position: fixed;
    z-index: 99;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 24px 10px 18px;
    background: linear-gradient(to right, rgba(251, 240, 255, 0.85) 0%, rgba(238, 242, 255, 0.85) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 37px;
}
#fixed-footer .image {
    width: 100%;
    max-width: 370px;
}
#fixed-footer .image.contact:hover {
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
}
/*-- fixed-footer フッタータブ end --*/

/*-- thanks --*/
#thanks .mailsend {
    text-align: center;
    margin: 100px auto;
}

#index {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}
/* petal */
.petal {
    position: absolute;
    z-index: 99;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 120vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.petal li {
    width: clamp(10px, 2.3vw, 18px);
    position: absolute;
    list-style: none;
    top: -50px;
    animation: 
    fall 4s linear infinite, 
    rotate1 2s ease-in-out infinite alternate;
}
@keyframes fall {
    to {
        top: 120%;
        opacity: 0;
    }
}
@keyframes rotate1 {
    from {
        transform: translateX(0px) rotate(0deg);
    }
    to {
        transform: translateX(200px) rotate(-80deg) rotateX(180deg);
    }
}
@keyframes rotate2 {
    from {
        transform: translateX(200px) rotate(-45deg);
    }
    to {
        transform: translateX(0px) rotate(0deg);
    }
}
.petal li:nth-child(1) {
    left: 0;
    animation: 
    fall 10s linear infinite, 
    rotate1 3s ease-in-out infinite alternate;
}
.petal li:nth-child(2) {
    left: 5vw;
    animation: 
    fall 15s linear infinite, 
    rotate1 2s ease-in-out infinite alternate;
}
.petal li:nth-child(3) {
    left: 15vw;
    animation: 
    fall 9s linear infinite,
    rotate1 3.5s ease-in-out infinite alternate;
}
.petal li:nth-child(4) {
    left: 30vw;
    animation: 
    fall 8s linear infinite, 
    rotate2 4s ease-in-out infinite alternate;
}
.petal li:nth-child(5) {
    right: 50vw;
    animation: 
    fall 10s linear infinite, 
    rotate1 4s ease-in-out infinite alternate;
}
.petal li:nth-child(6) {
    right: 35vw;
    animation: 
    fall 11s linear infinite, 
    rotate2 3s ease-in-out infinite alternate;
}
.petal li:nth-child(7) {
    right: 25vw;
    animation: 
    fall 7s linear infinite,
    rotate2 3.5s ease-in-out infinite alternate;
}
.petal li:nth-child(8) {
    right: 20vw;
    animation: 
    fall 7s linear infinite, 
    rotate1 3s ease-in-out infinite alternate;
}

/*-- index --*/
.topmain {
    width: 100%;
    height: calc((869 / 1440) * 100vw);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.topmain-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg_index_01.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    z-index: -1;
    opacity: 0;
    transition: background-size 0.1s ease-out, opacity 0.01s ease-out;
}
.topmain picture {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: clamp(336px, 43.75vw, 630px);
}
#index .first {
    width: 100%;
    background-image: url(../images/bg_index_02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    padding: 127px 20px 278px;
}
#index .title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: calc(46 / 32);
    letter-spacing: 0.03em;
    text-align: center;
}
#index .title::first-letter {
    color: #595DC8;
}
#index .plans {
    display: flex;
    justify-content: center;
    column-gap: 20px;
    width: 100%;
    max-width: 886px;
    margin: 50px auto 0;
}
#index .plan {
    width: 100%;
    background-color: #fff;
    border: 3px solid #595DC8;
    border-radius: 20px;
    overflow: hidden;
}
#index .sub-name {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
    text-align: center;
    background-color: #595DC8;
    padding: 10px 0;
}
#index .container {
    width: 100%;
    background-color: #fff;
    padding: 26px 10px 30px;
}
#index .main-name {
    font-size: 3rem;
    font-weight: 700;
    color: #595DC8;
    text-align: center;
}
#index .plan-image {
    width: 100%;
    max-width: 360px;
    margin: 20px auto 0;
}
#index .plan-name {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #595DC8;
    text-align: center;
    margin-top: 25px;
}
#index .price {
    font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    margin: 16px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#index span.big {
    display: inline-block;
    font-size: 2.8rem;
    margin: 0 6px;
}
#index .descs {
    width: 100%;
    max-width: 380px;
    margin: 20px auto 0;
    padding-top: 20px;
    border-top: 1px solid #E5E5E5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: max-content;
}
#index .plan-desc {
    font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: start;
    width: 100%;
    padding-left: 23px;
    position: relative;
}
#index .plan-desc::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: inline-block;
    content: '';
    width: 1em;
    height: 1em;
    background-image: url(../images/img_check_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
}
#index .btn-container {
    width: 360px;
    height: 62px;
    margin: 23px auto 0;
    padding: 0 10px;
    background-color: #595DC8;
    border: 1px solid #595DC8;
    border-radius: 37px;
    text-align: center;
    text-decoration: none;
    outline: none;
    transition: ease .2s;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
#index .btn-container:before,
#index .btn-container::after {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
}
#index .btn-container:before {
    background-image:url(../images/arrow-white.png);
    opacity: 1;
}
#index .btn-container::after {
    background-image:url(../images/arrow-blue.png);
    opacity: 0;
}
#index .btn-container.red {
    height: 62px;
    background-color: #D9554A;
    border: 1px solid #D9554A;
}
#index .btn-container.red::after {
    background-image:url(../images/arrow-red.png);
    opacity: 0;
}
#index .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    font-weight: 700;
    color:#fff;
}
#index .btn-container:hover {
    background-color: #fff;
}
#index .btn-container:hover .btn {
    color:#595DC8;
}
#index .btn-container:hover .btn.red {
    color:#D9554A;
}
#index .btn-container:hover:before {
    opacity: 0;
}
#index .btn-container:hover:after {
    opacity: 1;
}
#index .plan-big {
    width: 100%;
    max-width: 886px;
    margin: 100px auto 0;
    padding: 42px 20px;
    border: 2px solid #D9554A;
    border-radius: 20px;
    background-color: #fff;
}
#index .speech {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    width: fit-content;
    margin: auto;
    position: relative;
}
#index .speech::before,
#index .speech::after {
    position: absolute;
    top: 50%;
    content: '';
    width: 1px;
    height: 38px;
    background-color: #333;
    transform: rotate(-30deg);
}
#index .speech::before {
    left: -27px;
    transform: translateY(-50%) rotate(-30deg);
}
#index .speech::after {
    right: -27px;
    transform: translateY(-50%) rotate(30deg);
}
#index .speech span {
    display: inline-block;
    width: 42px;
    height: 44px;
    background-color: #D9554A;
    border-radius: 2px;
    font-size: 3.1rem;
    font-weight: 700;
    letter-spacing: 0;
    color: #fff;
}
#index .speech span:nth-of-type(1) {
    margin-left: 7px;
}
#index .speech span:nth-of-type(2) {
    margin: 0 3px;
}
#index .speech span:nth-of-type(3) {
    margin-right: 9px;
}
#index .inner {
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 50px;
    margin-top: 30px;
}
#index .inner-image {
    width: 100%;
    max-width: 387px;
}
#index .inner-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 360px;
}
#index .content {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(35 / 16);
}
#index .second {
    width: 100%;
    background-color: #fff;
    padding: 60px 20px 107px;
}
#index .main-content {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: calc(35 / 16);
    max-width: 800px;
    margin: 44px auto 0;
}
#index .image-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    max-width: 606px;
    margin: 52px auto 0;
}
#index figcaption {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    margin-top: 13px;
}
#index .second .btn-container {
    margin-top: 37px;
}

#index .news {
    width: 100%;
    padding: 135px 20px 107px;
    position: relative;
}
#index .news-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/bg_index_03.jpg");
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    /* background-attachment: fixed; */
    z-index: -10;
    opacity: 0;
    transition: background-size 0.1s ease-out;
     /* ▼ フェードインアニメーション設定 */
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-delay: 5s;     /* 2秒後に開始 */
  animation-fill-mode: forwards; /* 終了後に opacity:1 を維持 */
}
/* ▼ フェードインのキーフレーム */
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
#index .news-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 47px 20px 85px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}
#index .news .title {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
}
#index .news .title::first-letter {
    color: #333333;
}
#index .news dl {
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding-bottom: 53px;
    border-bottom: 1px solid #E5E5E5;
}
#index .news-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #595DC8;
    padding: 0 18px;
    margin-top: 46px;
}
#index .news-date {
    font-size: 1.4rem;
    font-weight: 500;
    color: #898989;
    padding: 0 18px;
    margin-top: 17px;
}
#index .news-content {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: calc(25 / 16);
    padding: 0 18px;
    margin-top: 14px;
}

/* cta-section */
.cta {
    width: 100%;
    padding: 107px 20px 100px;
    background-color: #595DC8;
}
.cta-title {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: calc(35 / 24);
    text-align: center;
    color: #fff;
}
.cta-cards {
    width: 100%;
    max-width: 640px;
    margin: 43px auto 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.cta-card {
    width: 100%;
    max-width: 300px;
    padding: 40px 32px 27px;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-image {
    width: 153px;
}
.cta-card:nth-of-type(2) .cta-image {
    width: 73px;
}
.cta-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-align: center;
    margin-top: 26px;
}
.cta-content {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: calc(20 / 12);
    margin-top: 16px;
}
.cta-btn-container {
    width: 235px;
    height: 52px;
    margin-top: 23px;
    padding: 0 20px 0 24px;
    border: 1px solid #595DC8;
    background-color: #fff;
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: ease .2s;
}
.cta-btn-container:hover {
    background-color: #595DC8;
}
.cta-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.cta-icon {
    background-image: url(../images/cta_phone.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
}
.cta-btn-container:hover .cta-icon {
    background-image: url(../images/cta_phone-blue.png);
}
.cta-card:nth-of-type(2) .cta-icon {
    width: 20px;
    height: 15px;
    background-image: url(../images/cta_mail.png);
}
.cta-btn-container:hover .cta-card:nth-of-type(2) .cta-icon {
    background-image: url(../images/cta_mail-blue.png);
}
.cta-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #595DC8;
}
.cta-btn-container:hover .cta-text {
    color: #fff;
}
.cta-arrow {
    background-image: url(../images/arrow-blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    height: 13px;
}
.cta-btn-container:hover .cta-arrow {
    background-image: url(../images/arrow-white.png);
}


/*-- cattleya --*/
/*-- eitaibo --*/
/*-- goshibo --*/
/*-- feature --*/
/*-- access --*/
/*-- inquiry --*/

.fv {
    width: 100%;
    height: calc((648 / 1440) * 100vw);
    position: relative;
    z-index: 0;
}
.fv-bg {
    width: 100%;
}
.child .wrapper {
    width: 100%;
    background-image: url(../images/bg_wrapper_01.jpg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center top;
    padding: clamp(72px, 6.25vw, 90px) 0 clamp(80px, 6.94vw, 100px);
    margin-top: -10.61vw;
    border-radius: 100px 100px 0 0;
    position: relative;
    z-index: 2;
}
.child .title {
    font-size: clamp(2.6rem, 2.36vw, 3.4rem);
    font-weight: 700;
    color: #595DC8;
    text-align: center;
}
.child .container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: clamp(90px, 7.84vw, 113px);
}
.child .contents {
    padding-left: 15.27vw;
    padding-right: clamp(48px, 4.16vw, 60px);
}
.child .content-title {
    font-size: clamp(2.1rem, 1.8vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: calc(40 / 26);
}
.child .content-title::first-letter {
    color: #595DC8;
}
.child .content {
    font-size: clamp(1.3rem, 1.11vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: calc(35 / 16);
    margin-top: 30px;
}
/* スライド */
.slides {
    width: 100%;
    margin-top: 60px;
}
.swiper {
    width: 100%;
}
.swiper-wrapper {
    transition-timing-function: linear;
    display: flex;
}
.swiper-slide {
    width: clamp(360px, 29.8vw, 430px);
    height: auto;
}


.child .container.wide {
    width: 100%;
    max-width: 1270px;
    display: flex;
    margin-top: 160px;
    background: linear-gradient(to bottom, #FBF0FF 0%, #EEF2FF 100%);
    border-radius: 0 80px 80px 0;
    position: relative;
    z-index: 2;
}
.child .container.middle {
    width: 100%;
    max-width: 1040px;
    max-height: 512px;
    display: flex;
    justify-content: center;
    column-gap: 25px;
    margin-top: -42px;
    padding: clamp(51px, 6.66vw, 96px) 0 clamp(51px, 6.66vw, 96px) clamp(32px, 4.16vw, 60px);
    background: linear-gradient(to bottom, #FBF0FF 0%, #EEF2FF 100%);
    border-radius: 0 80px 80px 0;
    position: static;
    z-index: 1;
}
.child .container.middle .image-box {
    max-width: 317px;
}
.child .container.full {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    column-gap: clamp(27px, 3.61vw, 52px);
    margin-top: 100px;
}
.child .container.full .contents {
    max-width: 440px;
    padding: 0 0 60px 20px;
}
.child .container.full .image-box {
    max-width: 668px;
}
.child .wrap {
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
    margin: auto;
}
.child.inquiry .wrap {
    margin: 120px auto 0;
}
.child .container.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    width: 100%;
    max-width: 1000px;
    margin: 60px auto 0;
}
.child .bg-gardening {
    position: absolute;
    content:'';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.child .img-garden {
    width: calc((664 / 1270) * 100%);
    height: calc((448 / 524.35)* 100%);
}
.child .contents.gardening {
    width: 100%;
    padding: clamp(48px, 4.16vw, 60px) clamp(48px, 4.16vw, 60px) clamp(48px, 4.16vw, 60px) clamp(166px, 14.37vw, 207px);
    background-color: transparent;
    position: relative;
}
.child.grave .contents.gardening {
    width: clamp(447px, 44.7vw, 644px);
}
.child.feature .contents.gardening {
    display: flex;
    gap: 60px;
}
.child .profiles {
    width: 35.69vw;
}
.child .profile-title {
    font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
    font-size: clamp(1.5rem, 1.25vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #595DC8;
}
.child .profile-content {
    font-size: clamp(1.4rem, 1.11vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: calc(35 / 16);
    width: 100%;
    height: 24.16vw;
    padding: 17px 45px 26px 20px;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 10px;
    overflow-y: scroll;
}
.child .labels {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 7px;
    margin-top: 30px;
}
.child .label {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #595DC8;
    text-align: center;
    width: fit-content;
    height: 40px;
    padding: 0 16px;
    background-color: #FAFAFA;
    border: 1px solid #595DC8;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.child .small {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-top: 24px;
}
.child .image-box.gardening {
    padding: clamp(48px, 4.16vw, 60px) clamp(48px, 4.16vw, 60px) clamp(48px, 4.16vw, 60px) 0;
    max-width: clamp(260px, 34vw, 490px);
}
.child .image-box.feature {
    width: clamp(202px, 26.38vw, 380px);
    height: clamp(247px, 32.15vw, 463px);
    margin-top: -100px;
}
.child .image-box.sp {
    display: none;
}

.child .container.flex {
    width: 100%;
    max-width: 1040px;
    display: flex;
    column-gap: clamp(52px, 4.51vw, 65px);
    margin: 50px auto 0;
    padding: 0 20px clamp(40px, 3.47vw, 50px);
    border-bottom: 1px solid #BEC4ED;
}
.child .container.flex.bd-none {
    border-bottom: 0;
}
.child .container.flex .contents {
    max-width: 427px;
    min-width: 300px;
    padding: 0 0 0 clamp(25px, 3.26vw, 47px);
}
.child .container.flex .image-box {
    max-width: 420px;
}
.child .outer {
    width: 100%;
    max-width: 1270px;
    padding: clamp(86px, 7.5vw, 108px) 0 clamp(80px, 6.94vw, 100px);
    margin: clamp(120px, 10.41vw, 150px) 0 0 auto;
    position: relative;
    overflow: hidden;

}
.child .outer::before {
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    width: 100%;
    max-width: 1270px;
    height: 100%;
    background: linear-gradient(to left, #FBF0FF 0%, #EEF2FF 100%);
    border-radius: 80px 0 0 80px;
    z-index: -1;
}
.child .outer::after {
    position: absolute;
    top: 0;
    left: clamp(43px, 5.62vw, 81px);
    content: '';
    width: clamp(80px, 8.05vw, 116px);
    height: clamp(100px, 10vw, 145px);
    background-image: url(../images/img_ribbon.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.iris .outer::after {
    content: none;
}
.child .bg-bubble {
    position: absolute;
    z-index: 0;
    content:'';
    top: 0;
    right: 0;
    width: 100%;
    height: 120%;
    background-image: url("../images/bg_bubble.png");
    background-size: cover;
    background-position: center;
    will-change: transform; 
  }
.child .inner {
    position: relative;
    width: 100%;
    max-width: 940px;
    margin: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.child .inner-title {
    font-size: clamp(2.5rem, 2.22vw, 3.2rem);
    font-weight: 700;
    color: #595DC8;
    text-align: center;
} 
.child .inner-subtitle {
    font-size: clamp(1.8rem, 1.52vw, 2.2rem);
    font-weight: 500;
    color: #fff;
    text-align: center;
    background-color: #595DC8;
    border-radius: 26px;
    width: 100%;
    padding: 13px 0;
    margin-top: 25px;
}
.child .price-inner {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin: clamp(32px, 2.77vw, 40px) auto 0;
}
.child .price-image {
    width: 100%;
    max-width: 392px;
}
.child .floor-wrapper {
    display: flex;
    flex-wrap: wrap;
    max-width: 242px;
    gap: 12px;
}
.child .floor {
    font-size: clamp(1.8rem, 1.52vw, 2.2rem);
    font-weight: 500;
}
.child .floor::before {
    display: inline-block;
    content: '⚫︎';
    font-size: 1em;
    color: #595DC8;
}
.child .price-box {
    width: 100%;
    display: flex;
    align-items: center;
    gap: clamp(10px, 0.83vw, 12px);
}
.child.grave .price-box {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 23px;
}
.child .num {
    font-size: clamp(1.5rem, 1.25vw, 1.8rem);
    font-weight: 500;
    color: #595DC8;
    background-color: #fff;
    border: 1px solid #595DC8;
    border-radius: 37px;
    height: clamp(32px, 2.7vw, 39px);
    padding: 4px 33px;
    vertical-align: baseline;
}
.child .num span {
    font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
    font-weight: 400;
}
.child .total {
    font-size: clamp(2.6rem, 2.22vw, 3.2rem);
    font-weight: 500;
    align-self: flex-start;
}
.child .price {
    font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
    font-size: clamp(6.2rem, 5.41vw, 7.8rem);
    color: #595DC8;
    font-weight: 700;
}
.child .price .bg-white {
    position: relative;
}
.child .price span.small {
    font-family: Helvetica, Arial, "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
    font-size: clamp(5rem, 4.37vw, 6.3rem);
    color: #595DC8;
    font-weight: 700;
}
.child .price .bg-white::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    width: 105%;
    height: 105%;
    background-color: #fff;
    filter: blur(12px);
}
.child .cost {
    font-size: clamp(2.4rem, 2.08vw, 3rem);
    color: #333;
    display: inline-block;
    margin: 0 0 8px 8px;
}
.child.grave .cost {
    font-weight: 700;
    align-self: flex-end;
    margin: -12px 8px 0 0;
}
.child .tax {
    font-size: clamp(1.4rem, 1.11vw, 1.6rem);
    font-weight: 500;
    width: fit-content;
    align-self: flex-end;
}
.child .grave-image {
    max-width: 220px;
}
.child .annotations {
    width: 100%;
    padding: 20px;
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.child .annotation {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: calc(22 / 14);
}
.child .container.info {
    width: 100%;
    max-width: 1000px;
    margin: 100px auto 0;
    padding: 20px 16px 50px 60px;
    background-color: #FAFAFA;
    border-radius: 20px;
    display: flex;
    gap: 14px;
}
.child .container.info.book {
    width: 100%;
    max-width: 1000px;
    margin: 100px auto 0;
    padding: 20px 16px 50px 60px;
    background-color: #FAFAFA;
    border-radius: 20px;
    display: flex;
    gap: 60px;
}
.child .flow-image {
    margin-top: 48px;
}
.child .flow-image figcaption {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: end;
    margin-top: 13px;
}
.child .contents.info {
    max-width: 500px;
    padding: 44px 0 0;
}
.child .link-container {
    width: 100%;
    max-width: 1040px;
    margin: clamp(80px, 6.94vw, 100px) auto 0;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.child .link {
    width: clamp(240px, 20.83vw, 300px);
    height: clamp(96px, 8.33vw, 120px);
    background-image: url(../images/bg_link_01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border: 2px solid #595DC8;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
}
.child .link:nth-of-type(2) {
    background-image: url(../images/bg_link_02.jpg);
}
.child .link:nth-of-type(3) {
    background-image: url(../images/bg_link_03.jpg);
}
.child .link a {
    font-size: clamp(1.4rem, 1.25vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
    text-align: center;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: rgba(89, 93, 200, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s;
    position: relative;
}
.child .link a::after {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../images/arrow-white.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.child .link:hover a {
    background-color: rgba(89, 93, 200, 0.15);
}
 #garden-wrapper {
      width: clamp(416px, 41.6vw, 600px);
      height: clamp(288px, 28.8vw, 416px);
      margin: auto;
      position: relative;
      overflow: visible;
      z-index: 10;
      perspective: 800px;
}
#garden-wrapper input {
    display: none;
}
.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}
.carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
  }
.item {
    width: clamp(166px, 16.66vw, 240px);
    height: clamp(254px, 25.4vw, 366px);
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-150px) scale(0.8);
    z-index: 1;
    transition: transform 0.7s cubic-bezier(.22,.9,.29,1), opacity 0.7s ease;
}
  
/* 背景画像 */
.img1 {
    background-image: url(../images/img_grave_07.png);
    animation-delay: 0s;
 }
  .img2 {
    background-image: url(../images/img_grave_08.png);
    animation-delay: 3s;
}
  .img3 {
    background-image: url(../images/img_grave_09.png);
    animation-delay: 6s;
}

/* そして各チェック状態ごとの位置（transitionで滑らかに） */
/* s1 が中央 */
#s1:checked ~ .carousel .carousel-inner .img1 { transform: translateX(clamp(125px, 12.5vw, 180px)) scale(1); opacity:1; z-index:3; }
#s1:checked ~ .carousel .carousel-inner .img2 { transform: translateX(clamp(250px, 25vw, 360px)) scale(0.8); opacity:0.6; z-index:2; }
#s1:checked ~ .carousel .carousel-inner .img3 { transform: translateX(0px) scale(0.8); opacity:0.6; z-index:2; }

/* s2 が中央 */
#s2:checked ~ .carousel .carousel-inner .img2 { transform: translateX(clamp(125px, 12.5vw, 180px)) scale(1); opacity:1; z-index:3; }
#s2:checked ~ .carousel .carousel-inner .img3 { transform: translateX(clamp(250px, 25vw, 360px)) scale(0.8); opacity:0.6; z-index:2; }
#s2:checked ~ .carousel .carousel-inner .img1 { transform: translateX(0px) scale(0.8); opacity:0.6; z-index:2; }

/* s3 が中央 */
#s3:checked ~ .carousel .carousel-inner .img3 { transform: translateX(clamp(125px, 12.5vw, 180px)) scale(1); opacity:1; z-index:3; }
#s3:checked ~ .carousel .carousel-inner .img1 { transform: translateX(clamp(250px, 25vw, 360px)) scale(0.8); opacity:0.6; z-index:2; }
#s3:checked ~ .carousel .carousel-inner .img2 { transform: translateX(0px) scale(0.8); opacity:0.6; z-index:2; }


.table-container {
    width: 100%;
    max-width: 1040px;
    height: max-content;
    margin: 100px auto 0;
    padding: 65px 20px;
    background-color: #FAFAFA;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(41, 30, 108, .16);
   -ms-overflowY-style: none;
   scrollbar-width: none; 
}
.table-title {
    font-size: clamp(1.7rem, 1.52vw, 2.2rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    color: #fff;
    background-color: #595DC8;
    max-width: 800px;
    margin: auto;
    padding: 8px;
}
.table-subtitle {
    font-size: clamp(1.5rem, 1.25vw, 1.8rem);
    font-weight: 500;
    text-align: center;
    max-width: 800px;
    margin: 22px auto 0;
}
.table {
    width: 100%;
    margin: 12px auto 0;
    overflow-x: scroll;
}
table {
    width: 800px;
    margin: auto;
}
.table thead {
    background: #F0F1F8;
    font-size: 1.4rem;
}
.table thead tr th,
.table tbody tr td {
    border: 1px solid #333;
    font-weight: 500;
    color: #63676A;
    height: 46px;
}
.table tbody tr td {
    vertical-align: middle;
    height: 57px;
}
.table tbody tr td.cancel {
    text-decoration: line-through;
}
.table tbody tr td span.label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    background-color: #EC4525;
    border-radius: 2px;
    border: none;
    padding: 2px;
    margin: auto;
    height: auto;
}
.table tbody tr td span.final {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #EC4525;
}
.table thead tr th:nth-of-type(1) {
    padding: 16px 50px;
}
.table thead tr th:nth-of-type(2) {
    padding: 16px 13px;
}
.table thead tr th:nth-of-type(3) {
    padding: 16px 16px;
}
.table thead tr th:nth-of-type(4) {
    padding: 16px 30px;
}
.table thead tr th:nth-of-type(5) {
    padding: 16px 9px;
}
.table thead tr th:nth-of-type(6) {
    padding: 16px 15px;
}
.table thead tr th:nth-of-type(7) {
    padding: 16px 8px;
}
.table tbody tr td {
    text-align: center;
}
.caption {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.42px;
    width: 100%;
    max-width: 800px;
    margin: 10px auto 0;
}

.access-title {
    font-size: clamp(1.6rem, 1.38vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 13px 10px 14px;
    margin-top: 80px;
    background-color: #595DC8;
    border-radius: 20px 20px 0 0;
}
.access-box {
    width: 100%;
    padding: 30px 20px 47px;
    border: 2px solid #595DC8;
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: center;
    gap: clamp(64px, 5.55vw, 80px);
}
.access-info {
    width: 100%;
    max-width: 370px;
}
.access-info a {
    display: block;
}
.carnavi-box {
    width: 100%;
    max-width: 1000px;
    border: 1px solid #D9554A;
    padding: 10px;
    margin-top: 68px;
}
.carnavi {
    font-size: clamp(1.6rem, 1.38vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: calc(35 / 20);
    text-align: center;
    width: fit-content;
    padding: 10px 0;
    margin: auto;
    position: relative;
}
.carnavi::before {
    position: absolute;
    top: 50%;
    left: clamp(-90px, -6.25vw, -72px);
    transform: translateY(-50%);
    content:'';
    width: clamp(60px, 5.34vw, 77px);
    height: clamp(44px, 3.95vw, 57px);
    background-image: url(../images/carnavi-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.carnavi span {
    display: inline-block;
    color: #D9554A;
}
.googlemap {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 54.1%; 
    margin-top: 50px;
}
.googlemap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.map-address {
    font-size: clamp(1.4rem, 1.11vw, 1.6rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    margin-top: 20px;
}
