@charset "UTF=8";
body {
    background-color: #e7e1de;
    position: relative;
}
main {
    padding: 10rem 0 5rem 0;
}
#plan {
    padding: 0 3rem;
}
.section-title {
    margin: 0 auto 3rem auto;
}

.reserve-link {
    position: fixed;
    top: 10%;
    left: 0;
    
    z-index: 10;
}
.reserve-link p {
    color: #ffffff;
    font-size: 2rem;
    writing-mode: vertical-rl; /* 縦書き */
    text-orientation: upright;
    background-color: #7e2c31;
    border-left: 10px solid #c37b44;
    border-radius: 0 1rem 1rem 0;
    padding: 2rem 1.8rem 2rem 1.8rem;
    box-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/*スライダー*/
#slide {
    position: relative;
    min-width: 100%;
    min-height: 30vh;
    color: #fff;
    font-size: 2.2rem;
}
#slide .slider {
    height: 100%;
}
.slider__item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider__item.active {
    display: block;
    opacity: 1;
}
#slide .slider__container {
    height: 30vh;
}

#slide .first {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 4rem;
}
#slide .first::after {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(195,123,68);
    background: linear-gradient(90deg,rgba(195,123,68,1) 0%,rgba(195,123,68,0)  100%);
    z-index: 0;
}
#slide p {
    position: relative;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
    z-index: 1;
}
#slide .second {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 4rem;
}
    
#slide .second::after {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(195,123,68);
    background: linear-gradient(90deg,rgba(195,123,68,1) 0%,rgba(195,123,68,0)  100%);
    z-index: 0;
}
#slide .last {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-left: 4rem;
}
#slide .last::after {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(195,123,68);
    background: linear-gradient(90deg,rgba(195,123,68,1) 0%,rgba(195,123,68,0)  100%);
    z-index: 0;
}
#slide .slider__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
#slide .slider__button {
    background-color: rgb(255, 255, 255); /* 半透明の背景 */
    border: none; /* ボーダーを削除 */
    border-radius: 20px; /* 丸い形状 */
    width: 10px; /* ボタンの幅 */
    height: 20px; /* ボタンの高さ */
    cursor: pointer; /* ホバー時のポインター */
    transition: all 0.3s;
}
#slide .slider__button:active {
    opacity: 0.5;
}
#slide .slider__button--prev {
    transform: rotate(45deg);
}
#slide .slider__button--next {
    transform: rotate(-45deg);
}
#slide .slider__indicator {
    display: flex; /* インジケーターも横並びに */
    gap: 10px; /* 点同士の間隔 */
}
#slide .slider__indicator-item {
    width: 7px;
    height: 20px;
    border-radius: 20px;
    background: #fff;
    transition: all 0.3s;
}
#slide .slider__indicator-item:active {
    opacity: 0.5;
}
#slide .slider__indicator-item.active {
    background-color: #c37b44;
}
#plan {
    color: #fff;
    padding-top: 5rem;
}
#plan .plan__details {
    background-color: #c37b44;
    border-radius: 10px;
    border: 5px solid #ffffff;
    min-height: 150px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#plan .plan__details--flex {
    width: 90%;
}
#plan .plan__details ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 2.4rem;
    width: 100%;
    margin-left: 5%;
}
#plan .plan__details li {
    position: relative;
    width: 50%;
    margin-bottom: 10px;
}
#plan .plan__details li::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 105%;
    transform: translateY(-50%);
}
#plan .plan__details p {
    font-size: 1.6rem;
    text-align: center;
}
#plan .details__text {
    font-size: 1.2rem;
    color: #222;
    padding: 5px 0;
}
#plan .plan__item {
    margin-bottom: 3rem;
}
/*バナーデザイン*/
#plan .plan__banner{
    position: relative;
    aspect-ratio: 11 / 5;
    color: #fff;
    text-align: right;
    padding: 1rem;
    display: grid;
    grid-template-columns: 20% 80%;
    grid-template-rows: 1fr min(61px) 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    transition: all 0.3s ease;
    z-index: 0;
    }
    .banner__logo { grid-area: 1 / 1 / 4 / 2; }
    .empty { grid-area: 1 / 2 / 2 / 3; }
    .banner__title { grid-area: 2 / 2 / 3 / 3; }
    .banner__button { grid-area: 3 / 2 / 4 / 3; }

#plan .plan__banner:active {
    filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.529));
    opacity: 0.9;
}
#plan .plan__banner::after{
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
#plan .plan__banner .banner__title {
    justify-self: end;
    align-self: center;
}
#plan .plan__banner .banner__button {
    font-size: 1.4rem;
    justify-self: end;
    align-self: end;
    margin-right: 10px;
    position: relative;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
    z-index: 2;
}
#plan .plan__banner .banner__button::after {
    content: "";
    min-width: 5px;
    min-height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    left: 100%;
}
#plan .plan__banner h3 {
    position: relative;
    width: 100%;
    font-size: 2.4rem;
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
    z-index: 2;
}
#plan .plan__banner h3 span {
    font-size: 1.8rem;
}
#plan .plan__banner .banner__logo {
    width: 20%;
    align-self: end;
}
/*プランの流れバナー*/
#plan .plan-flow .plan__banner {
    background-color: #849576;
}
#plan .plan-flow .plan__banner::after {
    display: none;
}
#plan .plan-flow .plan__banner {
    grid-template-columns: 30% 70%;
}
#plan .plan-flow .banner__logo {
    width: 120%;
}

.lazy-background {
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: center left;
}

/*フォーマルプランバナー*/
#plan .formal-plan .plan__banner {
    background-color: #2d3046;
}
#plan .formal-plan .plan__banner::after {
    background: rgb(45,48,70);
    background: linear-gradient(90deg, rgba(45,48,70,0) 0%, rgba(45,48,70,1) 50%);
}
/*アンティークプランバナー*/
#plan .antique-plan .plan__banner {
    background-color: #2d4546;
}
#plan .antique-plan .plan__banner::after {
    background: rgb(45,69,70);
    background: linear-gradient(90deg,rgba(45,69,70,0) 0%, rgba(45,69,70,1) 50%);
}
/*浴衣プランバナー*/
#plan .yukata-plan .plan__banner {
    background-color: #c8af87;
}
#plan .yukata-plan .plan__banner::after {
    background: rgb(200,175,135);
    background: linear-gradient(90deg,rgba(200,175,135,0) 0%, rgba(200,175,135,1) 50%);
}
/*おまかせプランバナー*/
#plan .omakase-plan .plan__banner {
    background-color: #753d40;
}
#plan .omakase-plan .plan__banner::after {
    background: rgb(117,61,64);
    background: linear-gradient(90deg,rgba(117,61,64,0) 0%, rgba(117,61,64,1) 50%);
}
/*着付けプランバナー*/
#plan .kituke-plan .plan__banner {
    background-color: #4a5a4d;
}
#plan .kituke-plan .plan__banner::after {
    background: rgb(74,90,77);
    background: linear-gradient(90deg, rgba(74,90,77,0) 0%, rgba(74,90,77,1) 50%);
}
/*ペアプランバナー*/
#plan .pair-plan .plan__banner {
    background-color: #9c6881;
}
#plan .pair-plan .plan__banner::after {
    background: rgb(156,104,129);
    background: linear-gradient(90deg, rgba(156,104,129,0) 0%, rgba(156,104,129,1) 50%);
}
/*オプションプランバナー*/
#plan .option-plan .plan__banner {
    background-color: #4c5471;
}
#plan .option-plan .plan__banner::after {
    background: rgb(76,84,113);
    background: linear-gradient(90deg, rgba(76,84,113,0) 0%, rgba(76,84,113,1) 50%);
}

/*キャンセル*/
.cancel {
    padding: 0 3rem;
}
.cancel .cancel__title {
    font-size: 2.4rem; 
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #222;
}
.cancel .cancel__text {
    font-size: 1.6rem;
    padding: 3rem 0 1.5rem 0;
}
.cancel .cancel__attention {
    font-size: 1.2rem;
}
.cancel .cancel__rental {
    font-size: 1.6rem;
}
.cancel .cancel__rental span {
    color: #c37b44;
}
 /*ボタン*/
.btn-center {
    display: flex;
    justify-content: center;
}
.button {
    color: #ffffff;
    border: 1px solid #c37b44;
}
.btn__container {
    background-color: #c37b44;
    border: 1px solid #c37b44;
}
.button:active {
    background-color: #ffffff00;
}
.button:active .btn__container {
    background-color: #ffffff00;
    border: 1px solid #c37b44;
    color: #c37b44;
}

/*プラン全体共通*/
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(2px); 
    display: none;
    justify-content: center;
    align-items: center;
    display: none;/* 初期状態では非表示 */
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 900;
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}

#plan .plan__content {
    position: relative;
    width: 87.18%;
    height: 70vh;
    padding: 5rem 2rem;
    font-size: 1.6rem;
    overflow-y: auto;
}
.modal-close {
    position: absolute; /* 子要素を中央に配置 */
    top: 5%;
    right: 5%;
    width: 60px; /* ボタンの幅 */
    height: 60px; /* ボタンの高さ */
    border: 2px solid #fff; /* 外枠の色と太さ */
    border-radius: 50%; /* 丸い形にする */
    display: flex;
    justify-content: center; /* 中央揃え */
    align-items: center; /* 中央揃え */
    cursor: pointer; /* ポインタ表示 */
    transition: all 0.3s ease;
}
.modal-close:active {
    background-color: #ffffff83;
}
.modal-close span {
    position: absolute;
    width: 30px; /* クロスの長さ */
    height: 2px; /* クロスの太さ */
    background-color: #fff; /* クロスの色 */
}
.modal-close span:first-child {
    transform: rotate(45deg); /* クロスの1本目 */
}
.modal-close span:last-child {
    transform: rotate(-45deg); /* クロスの2本目 */
}

#plan .plan__content::-webkit-scrollbar {
    width: 5px; 
    background-color: #ffffff48;
}
#plan .plan__content::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 5px;
}
#plan .plan__content--title {
    font-size: 3.2rem;
    margin-bottom: 5rem;
    text-align: center;
}
#plan .title-text {
    margin-bottom: 3rem;
}
/*プラン詳細ボタン*/
.plan__btn {
    margin: 5rem 0 0 0;
    color: #222222;
    border: 1px solid #fff;
    padding: 5px 5px;
    border-radius: 10px;
    display: inline-block;
    transition: all 0.3s ease;
}
.plan__btn--container {
    background-color: #fff;
    border: 1px solid #fff;
    padding: 1rem 2.8rem;
    border-radius: 7px;
    display: inline-block;
    transition: all 0.3s ease;
}
.plan__btn:active {
    background-color: #ffffff00;
}
.plan__btn:active .plan__btn--container {
    background-color: #ffffff00;
    color: #fff;
}
/*プランの流れ詳細*/
#plan .plan-flow .plan__content {
    background-color: #849576;
}
#plan .step-container {
    display: flex;
    align-items: center;
    height: 40px;
    transform: translateX(-7%);
}
#plan .step-number {
    position: relative;
    aspect-ratio: 1 / 1;
    font-size: 2.4rem;
    background-color: #8a242a;
    border-radius: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(50%);
    z-index: 1;
}
#plan .step-text {
    position: relative;
    background-color: #fff;
    color: #222;
    border-radius: 50px;
    line-height: 2;
    padding: 0 1.5rem 0 2.5rem;
    text-align: center;
    display: inline-block;
    z-index: 0;
}
#plan dd {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}
#plan dd .details__attention {
    margin-top: 1.5rem;
    color: #222;
    font-size: 1.2rem;
}
/*流れ以外のプラン詳細共通*/
#plan .plan__content--text {
    text-align: center;
    margin-bottom: 3rem;
}
#plan .plan__content--details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 8px;
}
#plan .plan__content--details li {
    border: 1px solid #fff;
    padding: 1rem;
}
#plan .content__sub-title {
    text-align: center;
    margin: 3rem 0 5rem 0;
}
#plan .content__sub-title span{
    font-size: 2.4rem;
    display: block;
    padding: 1.5rem 0;
}
#plan .plan__price--flex {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
#plan .plan__price--container {
    margin-bottom: 3rem;
}
#plan .plan__price {
    background-color: #c37b44;
    padding: 1.5rem;
    border: 1px solid #fff;
    text-align: center;
}
#plan .blue {
    background-color: #318F96;
}
#plan .plan__price .price__title {
    margin-bottom: 1.5rem;
    position: relative;
}
#plan .plan__price .price__price {
    border-top: 1px solid #fff;
    padding-top: 1.5rem;
}
#plan .price__title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 90%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background-color: #ffffff;
    border-radius: 50%;
}
#plan .price__title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 90%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background-color: #ffffff;
    border-radius: 50%;
}
#plan .price__attention {
    font-size: 1.2rem;
    margin-top: 1.5rem;
}
#plan .plan__price .price__price span {
    font-size: 2.4rem;
}
#plan .price__detail {
    margin-top: 3rem;
    line-height: 1.5;
    font-size: 1.5rem;
    padding-top: 1.5rem;
    border-top:  1px dotted #ababab;
}
#plan .price__detail span {
    color: #47e7f3;
    font-weight: bold;
}
#plan .group-name {
    font-size: 1.4rem;
    padding: 3rem 0;
}
#plan .group-name span {
    display: block;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
#plan .plan__content .gender {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
#plan .plan__content .gender p {
    display: inline-block;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    margin: 0 2rem;
}
#plan .plan__content .gender__text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}
#plan .plan__content .gender__antique--text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}
#plan .plan__content .gender__antique--title {
    display: inline-block;
    font-size: 1.5rem;
    border-bottom: 1px solid #fff;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}
#plan .plan__content .woman {
    background-color: #b36569;
}
#plan .plan__content .man {
    background-color: #6665b3;
}
#plan .content__list {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem 1.5rem;
    margin-bottom: 5rem;
}
#plan .content__list--item {
    width: 45.77%;
    position: relative;
}
#plan .content__list--item img {
    transition: transform 0.3s ease;
}
#plan .content__list--item img:hover {
    transform: scale(1.5);
    filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.511));
    position: relative;
    z-index: 99;
}
#plan .content__list--item .item__number {
    font-size: 2.4rem;
    border-radius: 50px;
    padding: 0.5rem 0;
    text-align: center;
    margin-bottom: 1rem;
}
#plan .content__list--item .item__detail {
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 0.5rem 0;
    text-align: center;
    margin-top: 1.5rem;
}
#plan .small {
    font-size: 1.2rem;
}
#plan .additional-info {
    border: 5px solid #fff;
    border-radius: 50px;
    padding: 3rem;
    text-align: center;
}
#plan .additional__text {
    margin-bottom: 3rem;
}
#plan .additional__flex--pair {
    margin-bottom: 3rem;
}
#plan .additional__flex--item span{
    font-size: 2.4rem;
}
#plan .additional__btn {
    text-align: center;
    margin-top: 2rem;
    display: inline-block;
    border-bottom: 1px solid #fff;
    transition: all 0.3s ease;
}
#plan .additional__btn:active {
    border-bottom: 3px solid #c37b44;
}
#plan .additional__flex--item a {
    color: #fff;
}
#plan .additional__flex--item p {
    position: relative;
    z-index: 1000;
}
#plan .additional__flex--pair p::before {
    content: "";
    width: 60px;
    height: 60px;
    background-color: #9c6881;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}
#plan .additional__flex--haori p::before {
    content: "";
    width: 60px;
    height: 60px;
    background-color: #4c5471;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}
/*フォーマルプラン詳細*/
#plan .formal-plan .plan__content {
    background-color: #2d3046;
}
/*アンティークプラン詳細*/
#plan .antique-plan .plan__content {
    background-color: #2d4349;
}
#plan .antique-plan .is-maintenance {
    position: relative;
}
#plan .antique-plan .is-maintenance .is-maintenance-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.6rem;
    width: 100%;
    padding: 3rem 0;
    background-color: #222222ec;
    text-align: center;
    z-index: 10;
}
#plan .content__list--item .svg-container {
    border: none;
    border-radius: 0px;
    padding: 0;
    text-align: left;
}
#plan .content__list--item .item__detail svg {
    width: 23.08%;
}
#plan .season {
    margin-bottom: 1rem;
}
#plan .season li {
    display: flex;
    align-items: center;
    width: 100%;
}
#plan .season span {
    width: 7%;
    margin-left: 2rem;
}
#plan .season span svg {
    width: 100%;
}
/*浴衣プラン詳細*/
#plan .yukata-plan .plan__content {
    background-color: #C8AF87;
}
/*おまかせプラン詳細*/
#plan .omakase-plan .plan__content {
    background-color: #753D40;
}
#plan .omakase-plan .omakase__details--list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    margin: 3rem 0;
    gap: 1.5rem;
}
#plan .omakase-plan .omakase__details--list li {
    width: 46%;
}
#plan .omakase-plan .image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 1.5rem;
}
#plan .omakase-plan .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#plan .omakase-plan .omakase__details--list p {
    text-align: center;
}
#plan .omakase-plan .omakase__details--list p span {
    font-size: 2.4rem;
}
/*着付けプラン詳細*/
#plan .kituke-plan .plan__content {
    background-color: #4A5A4D;
}
#plan .kituke-plan .price__attention {
    margin-bottom: 1.5rem;
}
#plan .plan__price--detail {
    display: flex;
    justify-content: center;
}
#plan .plan__price--detail p {
    text-align: center;
    padding: 1rem 0.5rem;
    border: 1px solid #fff;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
#plan .plan__price--detail span {
    font-size: 2.4rem;
}
/*ペアプラン詳細*/
#plan .pair-plan .plan__content {
    background-color: #9C6881;
}
#plan .pair-plan .price__attention {
    margin-bottom: 1.5rem;
}
#plan .plan__content--scene {
    text-align: center;
    margin-top: 1.5rem;
}
/*オプションプラン詳細*/
#plan .option-plan .plan__content {
    background-color: #4C5471;
}
#plan .option-plan .price__detail li {
    margin-bottom: 2rem;
}

@media screen and (min-width:768px) {
    main {
        padding: 10rem 0 10rem 0;
    }
    .section-title {
        margin: 0 auto 5rem auto;
    }
    /*スライダー*/
    #slide {
        min-width: 76.5%;
        min-height: 45vh;
        font-size: 2.8rem;
        line-height: 2;
    }
    #slide .slider__container {
        height: 45vh;
    }
    #slide .first {
        min-width: 76.5%;
    }
    #slide .second {
        min-width: 76.5%;
    }
    #slide .last {
        min-width: 76.5%;
    }
    #slide .slider__controls {
        width: 70%;
    }
    #slide .slider__button {
        width: 10px; /* ボタンの幅 */
        height: 30px;
    }
    #slide .slider__indicator-item {
        width: 10px;
        height: 30px;
    }
    #plan {
        padding: 10rem 0 0 0;
    }
    #plan .plan__details {
        width: 78.125%;
        margin: 0 auto;
        padding: 15px;
    }
    #plan .plan__details--flex {
        width: 90%;
    }
    #plan .details__text {
        font-size: 1.6rem;
        text-align: center;
    }
    #plan .plan__list {
        width: 78.125%;
        margin: 0 auto;
        padding: 5rem 0;
    }
    /*バナーデザイン*/
    #plan .plan__banner .banner__button {
        font-size: 2rem;
        margin-right: 15px;
    }
    #plan .plan__banner .banner__button::after {
        content: "";
        min-width: 10px;
        min-height: 10px;
    }
    #plan .plan__banner h3 {
        font-size: 3.2rem;
    }
    #plan .plan__banner h3 span {
        font-size: 2rem;
    }
    /*キャンセル*/
    .cancel {
        width: 85%;
        margin: 0 auto;
    }
    .cancel .cancel__title {
        font-size: 2.4rem; 
    }
    .cancel .cancel__text {
        font-size: 2rem;
    }
    .cancel .cancel__attention {
        font-size: 1.6rem;
    }
    .cancel .cancel__rental {
        font-size: 2rem;
        margin-bottom: 5rem;
    }
    /*プラン全体共通*/
    #plan .plan__content {
        font-size: 2rem;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }
    #plan .plan__content--wrapper {
        width: 80%;
    }
    #plan .plan__content::-webkit-scrollbar {
        width: 10px; 
    }
    #plan .plan__content--title {
        font-size: 3.6rem;
    }
    /*プランの流れ詳細*/
    #plan .title-text {
        text-align: center;
    }
    #plan .step-container {
        height: 50px;
    }
    #plan .step-number {
        font-size: 3.2rem;
    }
    #plan .step-text {
        padding: 0 2rem 0 3rem;
    }
    #plan dd .details__attention {
        font-size: 1.6rem;
    }
    /*流れ以外のプラン詳細共通*/
    #plan .plan__content--text {
        font-size: 2.4rem;
    }
    #plan .plan__content--details {
        font-size: 2.4rem;
    }
    #plan .plan__content--details li {
        padding: 1.5rem;
    }
    #plan .content__sub-title {
        font-size: 2.4rem;
    }
    #plan .content__sub-title span{
        font-size: 3.6rem;
    }
    #plan .plan__price--flex {
        align-items: center;
        width: 100;
    }
    #plan .plan__price {
        padding: 3rem;
        width: 80%;
    }
    #plan .price__title {
        font-size: 2.4rem;
    }
    #plan .price__title::after {
        width: 1.5rem;
        height: 1.5rem;
    }
    #plan .price__title::before {
        width: 1.5rem;
        height: 1.5rem;
    }
    #plan .price__attention {
        font-size: 1.6rem;
        text-align: center;
    }
    #plan .plan__price .price__price span {
        font-size: 3.2rem;
    }
    #plan .price__detail {
        font-size: 2rem;
    }

    #plan .group-name {
        font-size: 2rem;
        padding: 10rem 0 3rem 0;
        text-align: center;
    }
    #plan .group-name span {
        font-size: 3.2rem;
    }
    #plan .plan__content .gender {
        font-size: 2.4rem;
    }
    #plan .plan__content .gender__text {
        font-size: 1.6rem;
    }
    #plan .content__list--item {
        width: 31%;
    }
    #plan .content__list--item img:hover {
        transform: scale(2);
    }
    #plan .small {
        font-size: 1.4rem;
    }
    #plan .additional__info {
        width: 80%;
    }
    #plan .additional__flex {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 10rem;
    }
    #plan .additional__flex--pair {
        margin-bottom: 0;
    }
    #plan .additional__flex--item span{
        font-size: 2.4rem;
    }
    #plan .additional__flex--item {
        font-size: 2rem;
        width: 40%;
    }
    #plan .additional__btn {
        margin-top: 5rem;
    }
    #plan .additional__text {
        font-size: 2rem;
        margin-bottom: 10rem;
    }
    #plan .additional__flex--pair p::before {
        width: 150px;
        height: 150px;
    }
    #plan .additional__flex--haori p::before {
        width: 150px;
        height: 150px;
    }
    /*おまかせプラン詳細*/
    #plan .omakase-plan .omakase__details--list {
        margin: 5rem 0;
    }
    #plan .omakase-plan .price__attention {
        font-size: 1.6rem;
        text-align: left;
    }
    /*着付けプラン詳細*/
    #plan .plan__price--detail p {
        padding: 2rem 1.5rem;
        margin-bottom: 3rem;
        display: inline-block;
    }
    #plan .plan__price--detail span {
        font-size: 3.2rem;
    }
    #plan .kituke-plan img {
        width: 80%;
        margin: 0 auto;
    }
    /*ペアプラン詳細*/
    #plan .pair-plan .price__attention {
        margin-bottom: 1.6rem;
        text-align: left;
    }
    #plan .plan__content--scene {
        text-align: center;
        margin-top: 1.5rem;
    }
    #plan .pair-plan img {
        width: 80%;
        margin: 0 auto;
    }
    /*オプションプラン詳細*/
    #plan .option-plan .plan__price--flex {
        flex-direction: column;
    }
    #plan .option-plan .plan__price--container {
        width: 100%;
    }
    #plan .option-plan .plan__price {
        width: 80%;
        margin: 0 auto;
    }
}
@media screen and (min-width:1024px) {
    .reserve-link:hover p {
        background-color: #c37b44;
    }
    .reserve-link p {
        font-size: 2.4rem;
    }
    .button:hover {
        background-color: #ffffff00;
    }
    .button:hover .btn__container {
        background-color: #ffffff00;
        border: 1px solid #c37b44;
        color: #c37b44;
    }
    /*スライダー*/
    #slide .slider__button:hover {
        opacity: 0.5;
    }
    #slide .slider__indicator-item:hover {
        opacity: 0.5;
    }
    #slide {
        min-height: 80vh;
        font-size: 3.6rem;
        line-height: 2;
    }
    #slide .slider__container {
        height: 80vh;
    }
    #slide .first {
        padding-left: 10rem;
    }
    #slide .second {
        padding-left: 10rem;
    }
    #slide .last {
        padding-left: 10rem;
    }
    #slide .slider__button {
        width: 12px; /* ボタンの幅 */
        height: 40px;
    }
    #slide .slider__indicator-item {
        width: 12px;
        height: 40px;
    }
    #plan .plan__details {
        padding: 20px;
        width: 60%;
    }
    #plan .plan__details ul {
        font-size: 3rem;
    }
    #plan .plan__details li {
        width: 25%;
    }
    #plan .plan__details p {
        font-size: 2.4rem;
    }
    #plan .plan__list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #plan .plan__item {
        width: 48%;
    }
    .modal-close:hover {
        background-color: #ffffff83;
    }
    /*バナーデザイン*/
    #plan .plan__banner h3 {
        font-size: 3.2rem;
    }
    #plan .plan__banner h3 span {
        font-size: 2rem;
    }
    #plan .plan__banner:hover {
        filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.529));
        opacity: 0.9;
    }
    /*キャンセル*/
    .cancel .cancel__title {
        font-size: 3.2rem; 
    }
    .cancel .cancel__text {
        font-size: 2.4rem;
    }
    .cancel .cancel__rental {
        font-size: 2.4rem;
    }
    /*プラン詳細ボタン*/
    .plan__btn:hover {
        background-color: #ffffff00;
    }
    .plan__btn:hover .plan__btn--container {
        background-color: #ffffff00;
        color: #fff;
    }
    /*流れ以外のプラン詳細共通*/
    #plan .plan__price--flex {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
    #plan .plan__price {
        width: 50%;
    }

    #plan .group-name {
        font-size: 2rem;
        padding: 10rem 0 3rem 0;
        text-align: center;
    }
    #plan .content__list {
        gap: 3rem;
    }
    #plan .content__list--item {
        width: 18.75%;
    }
    
    #plan .content__list--item .item__number {
        font-size: 3.2rem;
    }
    #plan .small {
        font-size: 1.4rem;
    }
    #plan .additional__info {
        width: 80%;
    }
    #plan .additional__flex--item span{
        font-size: 3.6rem;
    }
    #plan .additional__flex--item {
        font-size: 2.4rem;
        width: 40%;
    }
    #plan .additional__btn {
        margin-top: 5rem;
    }
    #plan .additional__btn:hover {
        border-bottom: 3px solid #c37b44;
    }
    #plan .additional__text {
        font-size: 2.4rem;
    }
    /*アンティーク*/
    #plan .season {
        display: flex;
        justify-content: center;
    }
    #plan .season li {
        justify-content: center;
    }
    /*おまかせプラン詳細*/
    #plan .omakase-plan .omakase__details--list li {
        width: 22%;
    }
    #plan .omakase-plan .omakase__details--list p {
        font-size: 2.4rem;
    }
    #plan .omakase-plan .omakase__details--list p span {
        font-size: 3.2rem;
    }
    /*着付けプラン詳細*/
    #plan .plan__price--detail {
        display: flex;
        justify-content: center;
    }
    #plan .kituke-plan img {
        width: 40%;
    }
    /*ペアプラン詳細*/
    #plan .pair-plan img {
        width: 40%;
    }
    /*オプションプラン詳細*/
    #plan .option-plan .plan__price {
        width: 50%;
    }
}