@charset 'UTF-8';
body,
html {
    margin: 0;
    padding: 0;
    font-family: "M PLUS Rounded 1c", sans-serif;
    overflow-x: hidden
}

body.loading {
    overflow: hidden;
    height: 100%;
}

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

figure {
    margin: 0
}

h1 {
    display: none
}

picture img {
    width: 100%;
    height: auto;
    vertical-align: top
}

#header {
    position: fixed;
    top: -160px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: top .8s ease-in-out;
}

#header.show {
    top: 0;
}

li {
    display: inline;
    margin: 0 auto;
    font-size: 15px;
}
a{
	
}

.header-svg {
    display: block;
    margin: 0 auto;
    width: 80%;
    max-width: 300px;
    height: auto;
    margin-top: 1.5em;
    /* 上の余白を控えめに */
    margin-bottom: 1em;
    /* 下の余白を縮めてリストに近づける */
}

.sp-nav {
    z-index: 30;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FCE5E8;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform .9s ease-in-out, opacity .9s ease-in-out;
    box-sizing: border-box;
    padding-top: 1em;
    padding-bottom: 2em;
}

.sp-nav.toggle {
    transform: translateY(0);
}

.sp-nav-header {
    padding: 2em 1em;
    text-align: center;
}

#hamburger {
    display: block;
    width: 35px;
    height: 25px;
    margin: 0;
    position: fixed;
    top: 50px;
    right: 55px;
    z-index: 999;
    cursor: pointer;
}

#hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F9154B;
    transform: translateY(-50%);
}

#hamburger::before,
#hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F9154B;
}

#hamburger::before {
    top: 0;
}

#hamburger::after {
    bottom: 0;
}

.sp-nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    flex-grow: 1;
    margin-top: 2.5em;
    /* ロゴの下の余白を縮める */
    padding-bottom: 3em;
    /* 下部余白はそのままでもOK */
}

.sp-nav li {
    width: 350px;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 30px;
    font-size: 18px;
    letter-spacing: .1em;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.sp-nav li a,
.sp-nav li span {
    display: block;
    padding: 13px 0;
    font-weight: 600;
    color: #F9154B;
    text-decoration: none;
}

.sp-nav li.note-2 {
    background-color: #F9154B;
}

.sp-nav li.note-2 a {
    color: #ffffff;
}

.sp-nav .close {
    font-size: 18px;
    font-weight: 600;
    color: #F9154B;
    padding: 20px 0;
    cursor: pointer;
    text-align: center;
    margin-top: 30px;
    /* ← お問い合わせから離す */
    width: 380px;
    /* リストと同じ幅に整える */
    border-radius: 30px;
    background-color: #FCE5E8;
}

.sp-nav .close::before,
.sp-nav .close::after {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #F9154B;
}

.sp-nav .close::before {
    transform: rotate(45deg);
}

.sp-nav .close::after {
    transform: rotate(-45deg);
}

.first-view {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden
}

.first-view video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.video-pc {
    display: block
}

.video-mobile {
    display: none
}

.main-title {
    font-family: "Paytone One", sans-serif;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: .05em;
}

.color-pink {
    color: #F9154B;
}

.color-yellow {
    color: #FFF67F;
}

.color-white {
    color: #FFF;
}

.color-black {
    color: #666666;
}

.size-xl {
    font-size: 3.5em;
}

.size-lg {
    font-size: 2.5em;
}

.size-m {
    font-size: 1.5em;
}

.size-s {
    font-size: 1.3rem;
}

.size-xs {
    font-size: 1.15rem;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.align-center {
    text-align: center;
}
.align-center-2 {
    text-align: center;
}
p {
    margin: 0
}

a {
    text-decoration: none;
    cursor: pointer;
}

nav {
    margin: 0 0 0 auto
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-col2 {
    width: calc((100% - 25px) / 2);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column
}

.flex-col2-2 {
    flex: 1 1 48%;
    min-width: 300px;
    padding: 0 15px;
    /* ★内側の余白も確保（必要に応じて） */
}

.flex-left {
    width: 28.75%;
}

.flex-right {
    width: 68.75%;
}

.flex-row-reverse {
    flex-direction: row-reverse;
    display: flex;
    align-items: center;
    /* 上揃えにする */
    gap: 20px;
    /* 画像とテキストの間のスペース */
}

.flex-row {
    display: flex;
    align-items: center;
    /* 上揃えにする */
    gap: 20px;
    /* 画像とテキストの間のスペース */
}

.flex-image {
    width: 80px;
    /* 画像の幅を調整 */
    height: auto;
}

.flex-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 0.05em;
    text-align: left;
    line-height: 1.6em;
    flex: 1;
    /* テキスト部分を長い項目に合わせて伸ばす */
}

.flex-center-image {
    text-align: center;
    margin-top: 20px;
}

.flex-center-image img {
    width: 300px;
    /* センター画像の幅を調整 */
    height: auto;
}

.image-2 {
    border-radius: 20px;
}

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

.news {
    max-width: 600px;
    margin: 0 auto;
}

.hero-section {
    position: relative;
    text-align: center;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
	justify-content: center; /* 中央寄せのため追加 */
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 2460px;
}

.hero-text {
    font-family: "Paytone One", sans-serif;
    font-weight: 300;
    color: #F9154B;
    font-size: 7rem;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}

.hero-top {
    margin-bottom: -50px;
    margin-top: 60px;
}

.hero-bottom {
    margin-top: -80px;
}

.slide-in {
    overflow: hidden;
    display: inline-block;
}

.slide-in_inner {
    display: inline-block;
}

.leftAnime {
    opacity: 0;
    /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
    animation-name: slideTextX100;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
    from {
        transform: translateX(-100%);
        /*要素を左の枠外に移動*/
        opacity: 0;
    }
    to {
        transform: translateX(0);
        /*要素を元の位置に移動*/
        opacity: 1;
    }
}

.slideAnimeRightLeft {
    animation-name: slideTextX-100;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes slideTextX-100 {
    from {
        transform: translateX(100%);
        /*要素を右の枠外に移動*/
        opacity: 0;
    }
    to {
        transform: translateX(0);
        /*要素を元の位置に移動*/
        opacity: 1;
    }
}

#footer {
    background-color: #F9154B;
    padding: 40px 20px;
    text-align: center;
    color: #FFF;
    line-height: 2em;
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    text-align: center
}

.navi-row {
    display: flex;
    justify-content: center;
}

.copyright {
    font-size: .9em;
    color: #FFF;
    margin-top: 30px
}

.navi-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;
    text-align: center;
    color: #FFF;
    margin: 0 auto;
    max-width: 350px;
    /* SP時の制限 */
}

.nav-item a {
    color: #FFF;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: 500;
}

.custom-slider {
    width: 100%;
    margin: 0 auto;
}

.custom-slider img {
    height: auto;
    object-fit: cover;
    display: block;
}

.custom-slider-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

a:hover {
    color: #FFF;
    font-weight: 500;
	opacity: .8
}

.zoomIn img {
    transform: scale(1); /* 初期状態のスケール */
    transition: transform 0.7s ease-in-out; /* スムーズな拡大縮小のアニメーション */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* シャドウを追加 */
    display: block; /* ブロック要素にすることでセンター配置が可能 */
    margin: 0 auto; /* 左右のマージンを自動にしてセンター配置 */
}

.zoomIn a:hover img {
    transform: scale(1.05); /* ホバー時に拡大 */
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social-link i {
  color: white;
  font-size: 35px;
  transition: color 0.3s;
}

.social-link:hover i {
  color: #ccc;
}
.heading {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 2em;
    letter-spacing: .03em;
    margin: 0 auto
}

.topics {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    line-height: 2em;
    letter-spacing: .03em;
    color: #FFF67F;
    transform: rotate(-5deg);
    margin: 0 auto
}

.content-text {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    line-height: 2em;
    letter-spacing: .1em;
    color: #F9154B;
    background-color: #FCE5E8;
    border-radius: 60px;
    text-align: center;
    padding: 5px 15px;
    margin: 10px auto;
    max-width: 500px;
    width: 90%;
    box-sizing: border-box;
}

.sub-heading {
    font-weight: 500;
    letter-spacing: .05em;
	line-height: 1.5em
}

.sub-heading-2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F9154B;
}

.line-height-xl {
    line-height: 3em;
}

.line-height-lg {
    line-height: 2em;
}

.marker {
    background: linear-gradient(transparent 60%, rgba(252, 229, 232) 60%);
    display: inline;
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 1.5s;
}

.marker.on {
    /* 横方向を100%にして、マーカーを引く */
    background-size: 100% 100%;
}

.note {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2em;
    color: #F9154B;
    text-align: justify;
    margin: 0 auto
}

.note:hover {
    opacity: 0.5;
}

.note-2 {
    background-color: #F9154B;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    padding: 10px 20px;
    margin: 10px auto;
    width: 250px;
    /* 横幅を固定 */
    min-width: 250px;
    /* 最小幅も固定に */
    max-width: 250px;
    /* 最大幅も固定に */
    box-sizing: border-box;
}

.note-2 a {
    color: #ffffff !important;
    display: block;
}

.note-2:hover {
    opacity: 0.5;
}

.close:hover {
    opacity: 0.5;
}

a:focus {
    outline: 2px dashed #F9154B;
    outline-offset: 4px;
}

.center-image {
  display: flex;
  justify-content: center;
}

.center-image img {
  border-radius: 10px;
  display: block;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: auto; /* 明示的に自動にすることで拡大防止 */
  height: auto;
}
		.border-radius {
		border-radius: 1vh;
	}
		.border {
		 border: 2px solid #333333;
	}
.btn {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 400px;
    margin: auto;
    padding: 1.3rem 2.8rem;
    font-weight: 500;
    border: 3px solid #F9154B;
    color: #FFF;
    background: #F9154B;
    border-radius: 1vh;
    transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
    font-size: 1.2em;
    letter-spacing: 0.1em;
    box-sizing: border-box;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2)
}

.btn:hover {
    color: #F9154B;
    border: 3px solid #F9154B;
    /* 幅を変えない */
    background: #FFF;
}

#page-top {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 30;
    /* z-indexを高めに設定 */
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.3s ease;
    /* アニメーションのスムーズさを追加 */
}

#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FCE5E8;
    border-radius: 5px;
    width: 60px;
    height: 60px;
    color: #F9154B;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1em;
    letter-spacing: .1em;
    transition: all .3s;
    font-family: "Paytone One", sans-serif;
}

#page-top a:hover {
    background: #F9154B;
    color: #FFF;
}

#page-top.LeftMove {
    animation: LeftAnime .5s forwards;
}

@keyframes LeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#page-top.RightMove {
    animation: RightAnime .5s forwards;
}

@keyframes RightAnime {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100px);
    }
}

.main-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.container-2 {
    margin: 0 auto;
    text-align: center;
    z-index: 2;
	max-width: 2460px;
}

.container-3 {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.bg-container {
    position: relative;
    margin: 0 auto;
    background: #00B199
}

.side-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(540px);
    z-index: 1;
}

.side-image img {
    max-height: 500px;
    width: auto;
    height: auto;
    display: block;
}

.background {
    background-color: #F0F0F0;
    background-size: cover;
    position: relative
}

.floating-banner-link {
  position: fixed;
  bottom: 1em;
  right: 1em;
  z-index: 998;
  display: block;
  width: 10em;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}

.floating-banner-link.show {
  opacity: 1;
  pointer-events: auto;
}

.floating-banner-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  background-image: url('../images/banner-pc.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.floating-banner-image:hover {
  background-image: url('../images/banner-pc-hover.webp');
}
.gallery {
    margin: 0 0 0px
}

.slick-prev,
.slick-next {
    position: absolute;
    z-index: 3;
    top: 50%;
    outline: none;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    height: 20px;
    width: 20px
}

.slick-prev:before,
.slick-next:before {
    content: '';
}

.slick-prev {
    left: 2.5%;
    transform: rotate(-135deg)
}

.slick-next {
    right: 2.5%;
    transform: rotate(45deg)
}

.choice-btn li {
    cursor: pointer;
    outline: none;
    background: #333;
    width: 25%!important
}

.choice-btn li img {
    opacity: .4
}

.choice-btn li.slick-current img {
    opacity: 1
}

.choice-btn .slick-track {
    transform: unset!important
}

.horizontal-layout {
    display: flex;
    align-items: center;
    gap: 20px;
    /* 画像とテキストの間隔 */
    margin-bottom: 40px;
}

.mbottom-15 {
    margin-bottom: 15px
}

.mbottom-30 {
    margin-bottom: 30px
}

.mbottom-50 {
    margin-bottom: 50px
}

.mbottom-70 {
    margin-bottom: 70px
}

.mbottom-100 {
    margin-bottom: 100px
}

.mbottom-200 {
    margin-bottom: 200px
}

.mtop-200 {
    margin-top: 200px
}

.mtop-100 {
    margin-top: 100px
}

.mtop-50 {
    margin-top: 50px
}

.mtop-70 {
    margin-top: 70px
}

.mtop-30 {
    margin-top: 30px
}

.mtop-15 {
    margin-top: 15px
}

.mtop-10 {
    margin-top: 10px
}

.mtop-5 {
    margin-top: 5px
}

.pbottom-200 {
    padding-bottom: 200px
}

.pbottom-100 {
    padding-bottom: 100px
}

.pbottom-70 {
    padding-bottom: 70px
}

.pbottom-50 {
    padding-bottom: 50px
}

.pbottom-30 {
    padding-bottom: 30px
}

.pbottom-15 {
    padding-bottom: 15px
}

.pbottom-10 {
    padding-bottom: 10px
}

.pbottom-5 {
    padding-bottom: 5px
}

.ptop-200 {
    padding-top: 200px
}

.ptop-150 {
    padding-top: 150px
}

.ptop-100 {
    padding-top: 100px
}

.ptop-70 {
    padding-top: 70px
}

.ptop-50 {
    padding-top: 50px
}

.ptop-30 {
    padding-top: 30px
}

.ptop-15 {
    padding-top: 15px
}

.ptop-10 {
    padding-top: 10px
}

.ptop-5 {
    padding-top: 5px
}

.sp-br {
    display: none
}

.br-sp {
    display: block
}

@media screen and (max-width: 1220px) {
    .main-wrapper {
        display: block;
        text-align: center;
    }
    .container {
        padding: 0 25px
    }
    .container-2 {
        padding: 0 25px
    }
    .container-3 {
        padding: 0 0px
    }
    .content-text {
        padding: 5px 15px;
        margin: 10px auto;
        width: 320px;
        min-width: 320px;
        max-width: 320px;
        box-sizing: border-box;
        font-size: 1.1rem;
    }
    .side-image {
        position: static;
        transform: none;
        margin-top: 30px;
        text-align: center;
    }
    .side-image img {
        display: block;
        margin: 0 auto;
        max-width: 80%;
        height: auto;
        width: auto;
    }
    .flex-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
    .flex-row-reverse {
        flex-direction: row;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }
    .flex-text {
        text-align: center;
        font-size: 1.3rem;
    }
    .flex-image {
        margin-bottom: 10px;
    }
    .flex:last-child {
        margin-bottom: 0
    }
    .flex-left {
        margin-bottom: 5vw;
        width: 100%
    }
    .flex-right {
        width: 100%
    }
    .responsive-container .flex-col2 {
        width: 100%;
        margin-bottom: 20px
    }
    .topics {
        font-size: 2.2rem;
    }
    .sub-heading-2 {
        font-size: 1.2rem;
        font-weight: 500;
        color: #F9154B;
    }
    .align-left,
    .align-right {
        text-align: center;
    }

    .mbottom-15 {
        margin-bottom: 9px
    }
    .mbottom-30 {
        margin-bottom: 15px
    }
    .mbottom-50 {
        margin-bottom: 25px
    }
    .mbottom-70 {
        margin-bottom: 35px
    }
    .mbottom-100 {
        margin-bottom: 50px
    }
    .mtop-200 {
        margin-top: 100px
    }
    .mtop-100 {
        margin-top: 50px
    }
    .mtop-70 {
        margin-top: 35px
    }
    .mtop-50 {
        margin-top: 25px
    }
    .mtop-30 {
        margin-top: 15px
    }
    .mtop-15 {
        margin-top: 7px
    }
    .mtop-10 {
        margin-top: 5px
    }
    .mtop-5 {
        margin-top: 3px
    }
    .pbottom-200 {
        padding-bottom: 100px
    }
    .pbottom-100 {
        padding-bottom: 50px
    }
    .pbottom-70 {
        padding-bottom: 35px
    }
    .pbottom-50 {
        padding-bottom: 25px
    }
    .pbottom-30 {
        padding-bottom: 15px
    }
    .pbottom-15 {
        padding-bottom: 7px
    }
    .pbottom-10 {
        padding-bottom: 5px
    }
    .pbottom-5 {
        padding-bottom: 3px
    }
    .ptop-200 {
        padding-top: 100px
    }
    .ptop-150 {
        padding-top: 75px
    }
    .ptop-100 {
        padding-top: 50px
    }
    .ptop-70 {
        padding-top: 35px
    }
    .ptop-50 {
        padding-top: 25px
    }
    .ptop-30 {
        padding-top: 15px
    }
    .ptop-15 {
        padding-top: 7px
    }
    .ptop-10 {
        padding-top: 5px
    }
    .ptop-5 {
        padding-top: 3px
    }
}

@media screen and (max-width: 768px) {
    .first-view {
        height: auto
    }
	    .flex-col2 {
        width: 100%;
        margin-bottom: 3vw
    }
    .flex-col2:first-child {
        margin-bottom: 3vw
    }

    .first-view video {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: contain
    }
	.align-center-2 {
    text-align: left;
}
    .video-pc {
        display: none
    }
    .video-mobile {
        display: block
    }
    .svg-title {
        max-width: 200px
    }
    .svg-title-2 {
        max-width: 120px
    }
    .container-2 {
        padding: 0 25px
    }
    #hamburger {
        top: 2em;
        right: 2em;
    }
    .btn {
        padding: 2rem 2.5rem;
        font-size: 1.1em;
        width: 320px
    }
   .floating-banner-link {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background-color: #F9154B;
    text-align: center;
  }

  .floating-banner-image {
    display: inline-block;
    width: 100%;
    max-width: 640px; /* 最大幅（任意） */
    aspect-ratio: 640 / 150; /* 画像比率に応じて調整 */
    background-image: url("../images/banner-sp.webp"); /* ←実際のパスに修正 */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: #F9154B;
  }

  .floating-banner-image:hover {
    background-image: url('../images/banner-sp.webp'); /* SPは切替なし */
  }
    .info-box {
        font-size: 0.8rem;
        padding: 15px;
    }
    .note {
        font-size: 0.8em;
        line-height: 1em;
    }
    .hero-text {
        font-size: 3.6em;
        letter-spacing: 0.03em;
    }
    #page-top a {
        border-radius: 4px;
        width: 50px;
        height: 50px
    }
    #page-top {
        left: 15px;
        bottom: 100px
    }
    .image-container {
        flex-direction: column;
        /* 縦並びに変更 */
        align-items: center;
        /* 中央揃え */
    }
    .image-container img {
        max-width: 90%;
        /* 画面幅に合わせる */
    }
    .size-xl {
        font-size: 2.8em;
    }
    .size-lg {
        font-size: 2em;
    }
    .size-m {
        font-size: 1.2rem;
    }
    .size-s {
        font-size: 1rem;
    }
    .size-xs {
        font-size: 1rem;
    }
    .font-w-bold {
        font-weight: 500;
    }
    .svg-day {
        max-width: 11em;
    }
    .slick-prev,
    .slick-next {
        top: 50%;
        height: 10px;
        width: 10px
    }
    .custom-slider img {
        height: auto;
        width: 500px
    }
    .navi {
        grid-template-columns: repeat(2, auto);
        justify-content: center;
    }
    .nav-item a {
        font-size: 1em;
    }
    .copyright {
        flex-basis: 100%;
        text-align: center;
        margin-top: 40px;
    }
    .footer-logo {
        max-width: 130px;
    }
    .mbottom-15 {
        margin-bottom: 2.5vw
    }
    .mbottom-30 {
        margin-bottom: 4vw
    }
    .mbottom-50 {
        margin-bottom: 5vw
    }
    .mbottom-70 {
        margin-bottom: 7vw
    }
    .mbottom-100 {
        margin-bottom: 10vw
    }
    .mtop-200 {
        margin-top: 20vw
    }
    .mtop-100 {
        margin-top: 7vw
    }
    .mtop-70 {
        margin-top: 7vw
    }
    .mtop-50 {
        margin-top: 5vw
    }
    .mtop-30 {
        margin-top: 2vw
    }
    .mtop-15 {
        margin-top: 1.8vw
    }
    .pbottom-200 {
        padding-bottom: 20vw
    }
    .pbottom-100 {
        padding-bottom: 10vw
    }
    .pbottom-70 {
        padding-bottom: 7vw
    }
    .pbottom-50 {
        padding-bottom: 5vw
    }
    .pbottom-30 {
        padding-bottom: 3vw
    }
    .pbottom-15 {
        padding-bottom: 1.5vw
    }
    .ptop-200 {
        padding-top: 20vw
    }
    .ptop-100 {
        padding-top: 10vw
    }
    .ptop-70 {
        padding-top: 7vw
    }
    .ptop-50 {
        padding-top: 5vw
    }
    .ptop-30 {
        padding-top: 3vw
    }
    .ptop-15 {
        padding-top: 1.5vw
    }
    .ptop-150 {
        padding-top: 15vw
    }
    .sp-br {
        display: block
    }
}

@media(min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none
    }
    .navi-box {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        /* PC時に折り返すための制限 */
    }
}

@media screen and (max-width: 400px) {
    .size-s {
        font-size: 0.97rem;
    }
    .size-xs {
        font-size: 0.87rem;
        letter-spacing: 0.03em
    }
    .header-svg {
        width: 80%;
        max-width: 150px;
        margin-top: 0.25em;
        /* 余白をさらに圧縮 */
        margin-bottom: 0.25em;
    }
    .sp-nav ul {
        margin-top: 0.25em;
        /* ロゴ下の余白も小さくする */
        padding-bottom: 1em;
        /* 下部余白を保ちつつ調整 */
    }
}