@charset "UTF-8";

/* 全体設定 */
body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    height: 100%;
    /* 全体の高さを確保 */
    overflow: hidden;
    /* スクロールバーを非表示に */
    letter-spacing: 0.01em;
    font-size: 16px;
    line-height: 1.8;
    font-family: "Noto Serif JP", serif;
}

/*img設定*/
picture img,
picture source {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*font設定*/
.font-sans {
    font-family: "Noto Sans JP", "sans-serif";
}

/* 3画面構成の全体 */
.three-panel {
    display: flex;
    height: 100vh;
    /* 全画面表示 */
}

/* 各パネルの基本スタイル */
.panel {
    display: flex;
    align-items: baseline;
    justify-content: center;
    overflow: hidden;
    /* 内容がはみ出さないように設定 */
}

/* 左と右のパネル */
.left {
    background-color: #f0f0f0;
    /* 背景色 */
    text-align: center;
    width: 33%;
    background: center/cover no-repeat url("../img/left-bg.jpg");
    display: grid;
    flex-direction: column;
}

.left img.logo {
    width: 80%;
    max-width: 200px;
    margin: 2rem auto auto 20%;
    z-index: 100;
    display: flex;
}

.left .anchor-links {
    line-height: 3;
    font-size: 0.9rem;
    margin-left: 20%;
    display: block;
    width: 100%;
}

.left .anchor-links li {
    position: relative;
    transition-duration: 0.5s;
    color: #354055;
}

.left .anchor-links li a {
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
}

.left .anchor-links li a span.font-num {
    font-size: 0.8rem;
    margin-right: 5px;
}

.left .anchor-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: #354055;
    transition: width 0.3s ease;
}

.left .anchor-links li:hover {
    transform: translateX(10px);
    color: #191a1d;
}

.left .anchor-links li:hover a::after {
    width: 100%;
}

.left .weddingme {
    display: flex;
    flex-direction: column;
    margin: auto auto 2rem 20%;
}

.left .weddingme a {
    width: 56%;
    margin: auto auto auto 0;
}

.left .weddingme p {
    margin: auto auto auto 0;
    color: #46534e;
}

.right {
    background-color: #f0f0f0;
    /* 背景色 */
    text-align: center;
    width: 33%;
    background: center/cover no-repeat url("../img/right-bg.jpg");
}

.right img.logo-circle {
    position: absolute;
    width: 17%;
    top: 5%;
    right: 5%;
    animation: 40s linear infinite rotation;
}

@keyframes rotation {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 真ん中のパネル */
.center {
    background-color: #ffffff;
    /* 背景色 */
    overflow-y: auto;
    /* 縦スクロールを有効に */
    scroll-behavior: smooth;
    /* スムーズスクロール */
    min-width: 480px;
    scrollbar-width: none;
}

/* スクロール可能なコンテンツの設定 */
.scrollable-content {
    width: 100%;
    max-width: 600px;
    /* 中央コンテンツの最大幅 */
    margin: 0 auto;
    text-align: center;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* リンクのデフォルトスタイル */
a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    /* すべてのa要素にアニメーションを設定 */
}

a:visited {
    color: inherit;
    /* 元の色に戻す */
    text-decoration: none;
    /* 必要に応じて下線なども調整 */
}

li {
    list-style: none;
    text-align: left;
}

h1,
h2,
h3 {
    margin-bottom: 0;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
}

p {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 1rem;
    text-align: left;
}

.font-main {
    font-family: "Shippori Mincho", serif;
}

.font-sub {
    font-family: "Noto Serif JP", serif;
}

.font-num {
    font-family: "Imperial Script", cursive;
}

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

section {
    padding: 5rem 3rem;
}

section h2 {
    margin-bottom: 3rem;
    font-weight: 500;
}

h2.eng-title {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 1.1rem;
}

h2.eng-title span {
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-size: 2.3rem;
    display: block;
    color: #354055;
}

.logo-top {
    width: 54%;
    margin-top: 2rem;
}

/*TOP*/
#top {
    background: center/cover no-repeat url("../img/bg-gr2.jpg");
    padding: 2rem 0;
}

#top .information-box {
    border: solid 2px #c7bc74;
    margin: 2rem;
    padding: 1rem;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}

#top dl {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
}

#top dl:nth-of-type(n + 2) {
    margin-top: 10px;
}

#top dt {
    width: 32%;
}

#top dt p {
    color: #c7bc74;
    border: solid 1px #c7bc74;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
}

#top dd {
    width: 63%;
    text-align: left;
    font-size: 0.8rem;
}

/*TOP*/
#section1 {
    background: center/cover no-repeat url("../img/bg-w3.jpg");
    padding-bottom: 25rem;
}

#section1 h2 {
    text-align: left;
    font-size: 2rem;
}

#section1 p {
    text-align: left;
}

/*イントロダクション*/
#intro {
    background: center/cover no-repeat url("../img/bg-w.jpg");
    padding-bottom: 12rem;
}

#intro h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 500;
    color: #000;
    position: relative;
    z-index: 1;
}

#intro .sub-title {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#intro .sub-title img {
    width: 14%;
    margin-bottom: 0.8rem;
}

#intro h2 span {
    border-bottom: 2px solid #a6cbe1;
}

#intro small {
    text-align: left;
    display: block;
    color: #8e8e8e;
}

#intro .intro_img {
    width: 55%;
    position: absolute;
    bottom: 0rem;
    right: 0;
    z-index: -1;
    margin-left: 10px;
    opacity: 0.7;
    transform: rotate(352deg);
}

#intro p.intro-message {
    text-align: left;
    margin-top: 2rem;
}

#intro .content-container {
    margin: 3rem 0 4rem 0;
}

#intro .content-container h2 {
    font-size: 1.5rem;
    text-align: center;
}

#intro .content-container ul li {
    margin-bottom: 1rem;
    display: flex;
    background-color: white;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    position: relative;
    margin-top: 2rem;
    border-top: 1px solid #354055;
}

#intro .content-container ul li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 90%;
    border-style: solid;
    border-width: 20px 10px 0 10px;
    border-color: #ffffff transparent transparent;
    translate: -50% 100%;
}

#intro .content-container ul li:nth-of-type(even) {
    flex-direction: row-reverse;
}

#intro .content-container ul li:nth-of-type(even)::after {
    content: "";
    left: 10%;
}

#intro .content-container ul li img {
    width: 40px;
}

#intro .content-container ul li p {
    margin-left: 13px;
}

#intro .content-container ul li:nth-of-type(even) p {
    margin-left: 0;
    margin-right: 13px;
}

#intro2 {
    margin-top: -10.5rem;
    padding: 0;
}

#intro2 picture {
    margin: 0 2rem;
    border-radius: 15px;
    display: inline-block;
    overflow: hidden;
}

#intro2 .image-wrap {
    margin-top: -5rem;
}

#intro2 .image-wrap h2 {
    font-size: 1.3rem;
    margin: -7rem auto 3rem auto;
    font-weight: 500;
}

#intro2 .image-wrap h2 span {
    font-size: 1.8rem;
}

#intro2 .intro-text2 {
    font-family: "Noto Sans JP", "sans-serif";
    background-color: white;
    text-align: justify;
    padding: 2rem;
    width: 90%;
    margin: -8rem 0 0 auto;
    position: relative;
    font-size: 1rem;
}

#intro2 .intro-text2 .table {
    display: block;
    margin: 1rem auto;
    font-weight: 600;
}

#intro2 .intro-text2 .table span {
    color: #6390b3;
}

#intro2 .sub-message {
    font-size: 1.2rem;
    font-family: "Shippori Mincho";
    margin: 0 auto 3rem auto;
    color: #354055;
    text-align: center;
}

#intro2 .button-cta {
    display: block;
    max-width: 460px;
    margin: 20px auto 5rem;
    width: 80%;
    padding-right: 30px;
    height: 7vh;
    line-height: 7vh;
    background-image: linear-gradient(to right, #4c9a82, #417c7d);
    color: #ffffff;
    border-radius: 50px;
    font-size: 16px;
    position: relative;
    transition: all 0.3s;
    letter-spacing: 0.1em;
    text-align: center;
}

/* ピックアップ */
#pickup {
    background-color: var(--back-color);
    background-image: url("../img/bg5.jpg");
    background-position-x: center;
    background-size: cover;
}

#pickup .img_container {
    display: flex;
    gap: 10px;
    justify-content: center;
}

#pickup .info_container {
    background: #ffffff;
    padding: 4rem 2rem 2rem;
    margin-top: -4rem;
}

#pickup h3 {
    color: var(--base-color);
    font-size: 1.1rem;
}

#pickup h3 span {
    font-size: 2rem;
    display: block;
    border-bottom: solid 1px #354055;
    width: 30%;
    margin: auto;
    padding-bottom: 0;
    margin-bottom: 1rem;
    color: #354055;
}

#pickup p {
    color: #666666;
    text-align: left;
    font-size: 0.9rem;
}

#pickup .pickup2 {
    margin-top: 4rem;
}

#pickup .flex-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2rem;
}

#pickup .flex-box span {
    color: #71baa8;
    font-weight: 600;
    font-size: 1.1rem;
}

#pickup .flex-box img {
    width: 25px;
    margin-left: 10px;
}

.pickup_thumbnail {
    width: 45%;
}

.pickup_thumbnail img {
    border-radius: 15px;
}

.p-small {
    margin-top: 1rem;
    display: block;
    font-weight: 600;
}

.pickup_copy {
    margin: 2rem auto 1rem;
    position: relative;
}

.pickup_link {
    display: inline-block;
    font-size: 14px;
    border: solid 1px var(--base-color);
    padding: 1em 3em;
    margin: 24px 0;
    position: relative;
}

.pickup_link::before {
    content: "";
    display: none;
    /* 表示は block に変更可 */
    width: 1.4em;
    height: 1.4em;
    background-color: var(--base-color);
    border-radius: 50%;
    margin-left: 15px;
    position: absolute;
    right: 2em;
    top: 50%;
    transform: translateY(-50%);
}

.pickup_link::after {
    content: "";
    display: none;
    /* 表示は block に変更可 */
    position: absolute;
    right: 2.5em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid #ffffff;
    border-top: 2px solid #ffffff;
    width: 8px;
    height: 8px;
    background-color: transparent;
}

/*コンテンツ*/
#contents {
    background: #ffffff;
    padding: 5rem 0;
}

#contents .content-container {
    display: flex;
    align-items: center;
}

#contents .content-container .img-box {
    width: 45%;
    height: 300px;
    position: relative;
}

#contents .content-container .img-box img,
#contents .content-container .img-box source {
    border-radius: 0 10px 10px 0;
}

#contents .content-container .img-box span {
    position: absolute;
    font-size: 2.3rem;
    left: 1rem;
    color: #ffffff;
    opacity: 0.8;
}

#contents .content-container .info-box {
    text-align: right;
    padding: 0 2rem 0 1rem;
    width: 60%;
}

#contents .content-container .info-box span {
    background-color: #b4a062;
    color: white;
    border-radius: 20px;
    padding: 2px 10px;
    font-size: 0.8rem;
    display: table;
    margin: auto 0 0.5rem auto;
}

#contents .content-container .info-box h3 {
    text-align: right;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: inline;
    color: #354055;
    background: #e9f2f6;
}

#contents .content-container .info-box p {
    font-size: 0.9rem;
    margin: 1rem 0 auto auto;
}

#contents .content-container .info-box p small {
    display: block;
}

#contents .content-container:nth-of-type(even) .img-box img,
#contents .content-container:nth-of-type(even) .img-box source {
    border-radius: 10px 0 0 10px;
}

#contents .content-container:nth-of-type(even) .info-box {
    text-align: left;
    padding-right: 0;
    padding: 0 1rem 0 2rem;
}

#contents .content-container:nth-of-type(even) .info-box span {
    margin: auto auto 0.5rem 0;
}

#contents .content-container:nth-of-type(even) .info-box h3 {
    text-align: left;
}

#contents .content-container:nth-of-type(even) .info-box p {
    margin: 1rem auto auto 0;
}

#contents .content-container:nth-of-type(n + 2) {
    margin-top: 3rem;
}

#contents .sub-title {
    margin: 5rem auto;
    min-height: 30px;
}

#contents .sub-title img {
    width: 14%;
    margin-bottom: 0.8rem;
}

#contents .sub-title span {
    display: block;
    text-align: center;
}

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

#contents .content-wrapper .content-container {
    display: flex;
    flex-direction: column;
    width: 49%;
}

#contents .content-wrapper .content-container .img-box {
    width: 100%;
    height: auto;
}

#contents .content-wrapper .content-container .img-box img,
#contents .content-wrapper .content-container .img-box source {
    width: 100%;
    height: auto;
    box-shadow: none;
    border-radius: 10px 10px 0 0;
}

#contents .content-wrapper .content-container .img-box span {
    font-size: 1.9rem;
    color: #ffffff;
    left: 10%;
    top: -1%;
    transform: translateX(-50%);
    opacity: 0.8;
}

#contents .content-wrapper .content-container h3 {
    background: #fff;
    display: inline;
    margin: 0.5rem auto;
    font-size: 1.1rem;
    width: -moz-max-content;
    width: max-content;
}

#contents .content-wrapper .content-container:nth-of-type(n + 2) {
    margin-top: 0;
}

#contents .content-wrapper small {
    margin: 2rem 5% auto auto;
    color: #bcbcbc;
    text-align: right;
}

/*会場*/
.slide-items {
    width: 100%;
    margin-top: 36px;
}

.slide-items p {
    font-size: 1rem;
    margin-top: 14px;
    font-weight: 400;
    text-align: center;
    color: var(--base-color);
}

.slick-slide picture {
    width: 100%;
    border-radius: 10px;
    display: inline-block;
    overflow: hidden;
}

.slick-prev:before,
.slick-next:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid var(--base-color);
    border-top: 2px solid var(--base-color);
    width: 10px;
    height: 10px;
    background-color: transparent;
}

.slick-prev:before {
    transform: rotate(225deg);
    left: 24px;
}

.slick-next:before {
    right: 24px;
}

.slick-dots {
    left: 0;
}

.slick-dots li {
    width: 10px;
    height: 10px;
    left: 0;
    transform: translateX(50%);
}

.slick-dots li button:before {
    font-size: 8px;
    top: 0;
}

.slick-dots li.slick-active button:before {
    color: var(--base-color);
}

.slick-dotted.slick-slider {
    margin-bottom: 36px;
}

#venuesshops {
    background-color: var(--back-color);
    background-image: url("../img/bg-w2.jpg");
    background-size: cover;
    background-position-x: center;
}

#venuesshops .grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 5rem;
}

#venuesshops p.note {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 4rem;
    color: #6a707a;
    padding: 8px 0;
    border-top: solid 1px #6a707a;
    border-bottom: solid 1px #6a707a;
}

#venuesshops .venueshop_list_area h3 {
    font-size: 1.8rem;
    margin: 70px 0 25px 0;
    color: var(--base-color);
}

#venuesshops .venueshop_list_area p {
    color: var(--base-color);
}

#venuesshops .venueshop_list_area ul {
    gap: 20px;
}

#venuesshops .venueshop_list_area .venueshop_list li {
    display: grid;
    vertical-align: middle;
    justify-content: space-between;
    grid-template-columns: 5fr 1fr;
    gap: 3px;
}

#venuesshops .venueshop_list_area .venueshop_list li .insta-icon {
    width: 18px;
}

#venuesshops .venueshop_list_area .smart-kon {
    margin-top: 2rem;
}

/*VOC*/
#voc {
    background: #eff3fb;
}

#voc .content-container {
    background: #e4e9f4;
    padding: 2rem;
    border-radius: 3px;
    box-shadow: 12px 12px 0px 0px #eff3fb;
}

#voc .content-container h3 {
    color: #354055;
    text-align: left;
    font-size: 1.2rem;
}

#voc .voice-item {
    justify-content: space-around;
    align-items: center;
    background-color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1rem;
}

/*Gallery*/
#gallery {
    background-color: #ffffff;
}

#gallery .slide_wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
}

#gallery .movie_thumbnail {
    height: auto;
    padding: 0 10px;
    box-sizing: border-box;
}

#gallery .movie_thumbnail picture,
#gallery .movie_thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    user-select: none;
    -webkit-user-drag: none;
}

#gallery p {
    text-align: center;
}

/* slick矢印ボタン */
#gallery .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

/* slick矢印ボタン */

#gallery .slick-prev {
    display: inline-block;
    padding-left: 20px;
    position: absolute;
    top: 50%;
}

#gallery .slick-prev:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 0;
    border-top: solid 2px #333;
    border-left: solid 2px #333;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

#gallery .slick-next {
    display: inline-block;
    padding-left: 20px;
    position: absolute;
    top: 50%;
}

#gallery .slick-next:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 0;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

#gallery .insta-link {
    padding: 20px 20px 20px 45px;
    margin-top: 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    border-radius: 10px;
    border-bottom: 4px solid #5473bd;
    background: #8298ce;
}

#gallery .insta-link::before {
    content: url(../img/gallery-insta.svg);
    position: absolute;
    top: 28%;
    left: 11%;
    z-index: 10;
    width: 33px;
    height: 33px;
}

#gallery .insta-link a {
    color: #fff;
}

/*ブライダルフェアの違い*/
#features {
    background-color: #fff;
}

#features .custom-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    table-layout: fixed;
    font-size: 1rem;
}

#features .custom-table th,
#features .custom-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #000;
    border: none;
}

#features .custom-table td {
    font-size: 0.9rem;
}

#features .custom-table th:nth-child(1) {
    font-size: 1.2rem;
    border-top: #6390b3 solid 3px;
    background-color: #e4e9f4;
    color: #354055;
    border-bottom: 1px solid #354055;
}

#features .custom-table th:nth-child(3) {
    font-size: 1rem;
    background-color: #e4e9f4;
    color: #354055;
    border-bottom: #354055 1px solid;
}

#features .custom-table td:nth-child(1),
#features .custom-table td:nth-child(3) {
    background-color: #e4e9f4;
    color: #354055;
}

#features .custom-table th:nth-child(1),
#features .custom-table td:nth-child(1) {
    width: 47%;
    border-left: #6390b3 solid 3px;
    border-right: #6390b3 solid 3px;
    border-bottom: 1px solid #354055;
}

#features .custom-table th:nth-child(2) {
    background-color: none;
    color: #fff;
    width: 20%;
    font-size: 0.8rem;
}

#features .custom-table td:nth-child(2) {
    background-color: #354055;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom: 1px solid #ffffff;
}

#features .custom-table td:nth-child(3) {
    width: 30%;
    border-bottom: 1px solid #354055;
}

#features .custom-table th {
    font-weight: bold;
    height: 77px;
}

#features .custom-table tr:last-child td:first-child,
#features .custom-table tr:last-child td:last-child {
    height: 105px;
    border-bottom: none;
    padding-top: 0;
}

#features .custom-table tr:last-child td:nth-child(2) {
    display: block;
    width: 100%;
    padding: 0.9rem;
    border-bottom: none;
}

#features .custom-table tr:last-child td:first-child {
    border-bottom: #6390b3 solid 3px;
}

#features .d-message {
    background-color: #ffffff;
    border-radius: 20px;
    position: relative;
    margin-top: 2rem;
}

#features .d-message span {
    background: #b4a062;
    padding: 3px 10px;
    color: #fff;
    border-radius: 10px 10px 0 0;
    display: block;
    width: 80px;
}

#features .d-message p {
    text-align: left;
    font-size: 0.9rem;
    border-top: 1px solid #b4a062;
    padding-top: 0.5rem;
}

/* プレゼント特典 */
#present {
    background-image: url(../img/bg-gr.jpg);
    background-size: cover;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
    border-top-left-radius: 50% 20%;
    border-top-right-radius: 50% 20%;
}

#present_table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

#present td {
    width: 25%;
    font-size: 0.9rem;
    padding: 0.8rem;
    text-align: left;
    background-color: #fff;
    border-bottom: 1px #fbeaf2 solid;
    border-right: 1px #fbeaf2 solid;
}

#present td:nth-child(1) {
    text-align: center;
    line-height: 1.2;
    color: #234271;
}

#present td:nth-child(1) span {
    font-size: 1.3rem;
    display: block;
}

#present td:nth-child(2) {
    width: 75%;
    font-size: 0.9rem;
    padding: 0.8rem;
    background-color: #fff;
    border-right: none;
    line-height: 1.5;
}

#present td:nth-child(2) span {
    font-size: 110%;
    background: linear-gradient(transparent 50%, #e8dfa5 49%);
    background-size: 100% 50%;
    background-repeat: no-repeat;
    background-position: left bottom;
}

#present tr:nth-child(3) {
    border-bottom: none;
}

#present tr:nth-child(1) td:nth-child(1) {
    border-radius: 20px 0 0 0;
}

#present tr:nth-child(1) td:nth-child(2) {
    border-radius: 0 20px 0 0;
}

#present tr:nth-child(3) td:nth-child(1) {
    border-radius: 0 0 0 20px;
}

#present tr:nth-child(3) td:nth-child(2) {
    border-radius: 0 0 20px 0;
}

#present tr:last-child td {
    border-bottom: none;
}

#present .present_list li p {
    width: 75%;
    font-size: 0.9rem;
}

#present .line-separate {
    display: block;
    background-image: linear-gradient(to right, #b4a062 3px, transparent 5px);
    background-size: 14px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
    height: 1px;
    margin: 10px 0;
    width: 100%;
}

/*スタッフより*/
#staffmessage picture.staff-img {
    border-radius: 300px;
    width: 50%;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

#staffmessage .staff-item {
    display: flex;
    gap: 1rem;
    background: #f8f8f8;
    padding: 1rem;
    border-radius: 10px;
}

#staffmessage .staff-item .staff-imgs-container {
    width: 30%;
    position: relative;
}

#staffmessage .staff-item picture.staff-imgs-container img,
#staffmessage .staff-item picture.staff-imgs-container source {
    height: auto;
    object-fit: contain;
}

#staffmessage .staff-item .staff-imgs-container img {
    border-radius: 3px;
}

#staffmessage .staff-item .staff-information {
    width: 70%;
    position: relative;
}

#staffmessage .staff-item .staff-information a.staff-imgs {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 80%;
}

#staffmessage .staff-item .staff-information h3 {
    color: #6390b3;
    padding: 15px 0;
    border-radius: 10px 0 10px 0;
    font-weight: bold;
    font-size: 1.3rem;
    display: inline-block;
}

#staffmessage .staff-item .staff-information .insta-icon {
    width: 30px;
}

#staffmessage .staff-item .staff-information p {
    border-radius: 10px;
}

#staffmessage .staff-item+.staff-item {
    margin-top: 3rem;
}

/*FAQ*/
#faq {
    background: center/cover no-repeat url("../img/bg-w.jpg");
}

#faq .accordion-item {
    background-color: #ffffff;
    text-align: start;
    font-size: 1.2rem;
    padding: 0.8rem 1rem;
    position: relative;
    margin-bottom: 16px;
    border-radius: 3px;
}

#faq .question {
    position: relative;
    padding: 0 1rem 0 2rem;
    color: #354055;
    font-size: 1rem;
    line-height: 1.8;
}

#faq .question span {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#faq .question:before,
#faq .question:after {
    content: "";
    position: absolute;
    width: 12px;
    height: 1px;
    right: -2px;
    top: 50%;
    transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
    background: #354055;
}

#faq .question:before {
    transform: translateY(-50%);
}

#faq .question:after {
    transform: translateY(-50%) rotate(90deg);
}

#faq .dd_box {
    padding: 10px 0;
    border-top: solid 0.5px #eaeaea;
    display: none;
    padding: 15px 15px 10px 15px;
    font-size: 0.9rem;
    color: #565656;
    margin-top: 1rem;
}

#faq .question.open:after {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
}

/*アクセス*/
#access {
    padding-bottom: 120px;
}

.access_items {
    padding: 20px;
    background: rgba(241, 245, 244, 0.6705882353);
    border-radius: 15px;
}

.access_text_wrap {
    text-align: start;
    color: var(--base-color);
}

.location {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.location span {
    margin-right: 10px;
    margin-top: 2px;
}

.address,
.transportation {
    font-size: 14px;
    line-height: 1.4em;
    margin-bottom: 8px;
}

.map {
    margin-top: 20px;
}

.map iframe {
    height: 50vh;
    width: 100%;
}

/*検索で戻って来れます*/

#getback {
    padding: 0;
}

/*予約*/
#reservation {
    background-image: url("../img/bg-w4.jpg");
    background-size: cover;
    background-position-x: center;
    padding: 5rem 2rem 10rem;
}

p.description {
    margin-top: 0.5rem;
}

/*フッター*/
footer {
    background-color: #e4e9f4;
    padding-bottom: 40px;
    color: white;
    padding: 1rem 0;
}

footer p {
    text-align: center;
}

.modaal-close {
    display: block !important;
    visibility: visible !important;
}

/*バナー*/
.banner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    min-width: 350px;
    z-index: 100;
}

.slide-banner {
    position: fixed;
    bottom: -300px;
    /* 初期位置：画面外に隠す */
    right: 0;
    transform: translateX(0%);
    transition: bottom 1.5s ease-in;
}

.slide-banner.active {
    bottom: 0;
    /* スライドして表示 */
}

/* 初期状態（透明＆移動） */
.fade-in,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 下からフェードイン */
.fade-in {
    transform: translateY(20px);
}

/* 左からフェードイン */
.fade-in-left {
    transform: translateX(-30px);
}

/* 右からフェードイン */
.fade-in-right {
    transform: translateX(30px);
}

/* フェードイン時の共通スタイル */
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.fade-list li {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* フェードイン時 */
.fade-list li.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ボタン押下でさらに表示*/
button.show-button,
button.show-button5 {
    font-family: "Noto Sans JP", "san-serif";
    font-size: 0.8rem;
    display: block;
    margin: 0 0 0 auto;
    color: #354055;
    font-weight: 500;
    border: none;
}

button.show-button2,
button.show-button3,
button.show-button4 {
    font-family: "Noto Sans JP", "san-serif";
    font-size: 0.8rem;
    display: block;
    margin: 0 0 0 auto;
    color: #354055;
    font-weight: 500;
    padding: 3px 8px 5px 12px;
    border-radius: 20px;
    background: #d4e2ec;
    border: none;
}

.dli-chevron-down::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    color: var(--base-color);
    line-height: 1;
    width: 0.5em;
    height: 0.5em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(25%) rotate(135deg);
    margin: -8px 0 0 7px;
}

.overflow-hidden {
    height: 470px;
    overflow: hidden;
    display: grid;
    margin: 1rem 0 0.5rem;
}

.overflow-hidden.active,
.overflow-hidden5.active {
    height: auto;
    text-align: left;
}

.overflow-hidden2,
.overflow-hidden3,
.overflow-hidden4 {
    height: 0;
    overflow: hidden;
    display: grid;
}

.overflow-hidden5 {
    height: 67px;
    overflow: hidden;
    display: grid;
    margin: 1rem 0 1rem;
    text-align: left;
}

.overflow-hidden2.active,
.overflow-hidden3.active,
.overflow-hidden4.active {
    height: auto;
    margin: 1rem 0 0.5rem;
}


/*コンテンツモーダル*/
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal .modal-content {
    position: relative;
    border-radius: 10px;
    text-align: center;
}

.modal .modal-content .close-btn {
    position: absolute;
    top: 5%;
    right: 0%;
    width: 50px;
    height: 50px;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.modal .modal-content .close-btn::before,
.modal .modal-content .close-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: #fff;
}

.modal .modal-content .close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal .modal-content .close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

video {
    width: auto;
    height: auto;
    border-radius: 8px;
    max-width: 300px;
    margin-top: 2rem;
}

#contents .openModal {
    font-size: 0.9rem;
    color: rgb(255, 255, 255);
    display: inline-block;
    margin-top: 1rem;
    position: relative;
    background: rgb(99, 144, 179);
    padding: 3px 2rem 3px 12px;
    border-radius: 40px;
}

.content-wrapper .modal {
    justify-content: center;
    align-items: center;
    opacity: 0;
    /* 初期状態では透明 */
    transition: opacity 0.3s ease-out;
    /* 背景のフェードイン・アウト */
}

.content-wrapper .modal.modal-fade-in {
    opacity: 1;
    /* フェードイン時に黒背景表示 */
    transform: translateY(0);
}

.content-wrapper .modal-content {
    background: white;
    max-width: 365px;
    width: 90%;
    text-align: center;
    border-radius: 3px;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.3s ease-out;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.content-wrapper .modal-content.modal-fade-in {
    opacity: 1;
    transform: translateY(0);
}

.content-wrapper .modal-content .close-btn {
    top: 0;
}

.content-wrapper .modal .modal-content .close-btn::before,
.content-wrapper .modal .modal-content .close-btn::after {
    background: #7c7c7c;
}

.content-wrapper .modal-content picture {
    height: 200px;
    display: block;
    position: relative;
}

.content-wrapper .modal-content picture * {
    object-position: top;
    object-fit: cover;
}

.content-wrapper .modal-content picture .font-num {
    position: absolute;
    top: 0;
    left: 10px;
    color: #fff;
    font-size: 3rem;
    opacity: 0.8;
    line-height: 1.1;
}

.content-wrapper .modal-content .info-box {
    padding: 2rem;
}

.content-wrapper .modal-content .info-box h3 {
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    color: #354055;
    position: relative;
}

.content-wrapper .modal-content .info-box h3::after {
    position: absolute;
    bottom: -30%;
    transform: translateX(50%);
    right: 50%;
    content: "";
    display: inline-block;
    width: 20%;
    height: 1px;
    background-color: #9fa8b8;
}

.content-wrapper .modal-content .info-box p.modal-text {
    font-size: 0.8rem;
    text-align: left;
}

.content-wrapper .modal-content .info-box p.p-recommend {
    font-size: 0.8rem;
    background: #eff3fb;
    margin: 1rem 0 0;
    text-align: left;
    padding: 0.5rem;
}

.content-wrapper .modal-content .info-box p.p-recommend span {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: #354055;
}

.content-wrapper .openModal {
    margin: 0.5rem auto 1rem;
    margin-top: 0.5rem !important;
    padding: 0px 10px 2px !important;
}

.mov-container .openModal {
    margin: 0.5rem auto 1rem;
}

.mov-container .openModal::after {
    -webkit-clip-path: polygon(0px 0px, 100% 50%, 0px 100%);
    clip-path: polygon(0px 0px, 100% 50%, 0px 100%);
    position: absolute;
    content: "";
    top: 50%;
    right: 9px;
    height: 12px;
    width: 12px;
    background-color: rgb(255, 255, 255);
    transform: translate(0px, -50%);
}

/*CTA
-------------------------------------*/
.fixed-cta {
    display: block;
    z-index: 10;
    left: 0;
    position: fixed;
    bottom: -300px;
    /* 初期位置：画面外に隠す */
    right: 0;
    transform: translateX(0%);
    transition: bottom 0.5s ease-in;
}

.fixed-cta.active {
    bottom: 0;
    /* スライドして表示 */
}

.button-cta {
    display: block;
    max-width: 460px;
    margin: 20px auto;
    padding-right: 30px;
    height: 7vh;
    line-height: 7vh;
    background-image: linear-gradient(to right, #4c9a82, #417c7d);
    color: #ffffff !important;
    border-radius: 50px;
    font-size: 16px;
    position: relative;
    transition: all 0.3s;
    width: 90%;
    letter-spacing: 0.1em;
    text-align: center;
}

.button-cta:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 3em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 1px;
    background-color: white;
    transition: 0.3s;
}

.button-cta::after {
    content: "";
    position: absolute;
    top: calc(50% + 1px);
    right: 3em;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background-color: white;
    transition: 0.3s;
}

/* 満席案内 */
.banner-full {
    width: 100%;
    max-width: 430px;
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #e8f7f3;
    position: fixed;
    bottom: -100px;
    /* 初期位置（画面外） */
    right: 0;
    transition: bottom 0.5s ease-out;
    z-index: 10;
}

.banner-full.show {
    bottom: 0;
}

.banner-full p {
    width: 60%;
    padding-right: 0.5rem;
    color: #4c9a82;
    line-height: 1.3;
    font-size: 0.9rem;
    text-align: left;
}

.banner-full .insta-link {
    width: 40%;
    margin: 0;
    padding: 1rem;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background: #9dd4c7;
    border-bottom: 4px solid #71baa8;
    border-radius: 10px;
}

.banner-full .insta-link::before {
    content: "";
}

@media (max-width: 768px) {

    .left,
    .right {
        display: none;
        /* モバイルでは左右を非表示に */
    }

    .center {
        flex: 1;
        /* 中央を全幅に広げる */
        width: 100%;
        min-width: auto;
    }

    .center section {
        padding: 5rem 2rem;
    }

    .center .banner-full {
        width: 100%;
        max-width: auto;
    }

    .sp-none {
        display: none;
    }

    #intro2 .image-wrap h2 {
        margin: -3rem auto 3rem auto;
    }
}

/*# sourceMappingURL=style.css.map */