/* Webフォントを定義 */
@font-face {
    font-family: 'yonaga';
    src: url('../fonts/YonagaOldMincho-Bold.ttf');
}

/* 共通 */

* {
    box-sizing: border-box;
}

body {
    background-color: #f4f4f4;
    color: #000;
    overflow-x: hidden;
    width: 100vw;
    overscroll-behavior-x: none; 
}

.iOS_body {
    overflow-x: hidden; /* safariで見た時の横スクロールを無効化 */
}



.margin-r20-l20 {
    width: 90%;
    margin: 0 auto; 
}

.margin-r20 {
    margin-right: 20px;
}

/* スプラッシュ画像 */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3333;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.splash-screen-sp {
    width: 65%;
    height: auto;
    z-index: 1222;
    padding-left: 10%;
}

.splash-screen-pc {
    display: none;
}

/*========= ハンバーガーメニューの三本線 =========*/
.openbtn{
	position: relative;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
    z-index: 2223;
}

.openbtn .openbtn-area{
    transition: all .6s;
	width:50px;
	height:50px;
}

.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active .openbtn-area{
	transform: rotate(360deg);
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*=============== ハンバーガーメニュー ===============*/
.hamburger-active {
    overflow: hidden;
}

#g-nav{
    position:fixed;
	z-index: -1;
	opacity: 0;
	top:0;
	width:100%;
    height: 100vh;
	background:#fff;
	transition: all 0.7s;
    padding: 0 15%;
    overflow: auto;
}

#g-nav.panelactive{
	opacity: 1;
	z-index: 2222;
}

#g-nav.panelactive #g-nav-list{
    width: 100%;
    height: auto;
    overflow-y: auto;
    
}

#g-nav ul {
    display: none;
    z-index: 999;
}

#g-nav.panelactive ul {
    display: block;
}

.nav-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 46px;
}

#g-nav li{
	list-style: none;
    font-family: Futura;
    font-weight: 300;
    font-size: 12px;
    margin-bottom: 25px;
    width: 88%;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
    width: 100%;
}

.hamburger-button-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger-button-img {
    width: 50px;
    height: 21px;
}

.hamburger-sns-icons-wrapper {
    display: flex;
    justify-content: center;
    margin: 10% 0;
}

/* ========= ハンバーガーメニューの「×」ボタン ========= */
.openbtn{
	position:fixed;
    z-index: 2223;
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #000;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* ========= ヘッダー ========= */
header {
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 10;
    width: 100%;
}

.curtain-top {
    position: absolute;
    top: -4px;
    height: 160px;
    width: auto;
    z-index: 11;
}

.curtain-bottom {
    position: absolute;
    top: 144px;
    height: 106px;
    width: auto;
}

.curtain-left {
    left: -23px;
}

.curtain-right {
    right: -23px;
}

.curtain:first-child {
    left: -10px;
}

.curtain:nth-child(2) {
    right: 0;
}

.logo {
    width: 131px;
    height: 23px;
    margin-top: 19px;
}




.section-title::first-letter {
    font-size: 35px;
    border-bottom: 1px solid #707070;
}

.section-title {
    font-size: 14px;
    font-family: Futura;
    font-weight: 300;
    letter-spacing: 2px;
    padding-bottom: 11px;
    margin-bottom: 28px;
    z-index: 1;
}

.section-title-no-border::first-letter {
    font-size: 35px;
}

.section-title-no-border {
    font-size: 14px;
    font-family: Futura;
    font-weight: 300;
    letter-spacing: 2px;
    padding-bottom: 11px;
    margin-bottom: 28px;
}

.long-border {
    border-bottom: 1px solid #707070;
}

#dressy-cafe-section,
#placole-dressy-section, 
#dressy-room-section, 
#photo-spot-section,
#placole-wedding-adovisor-section,
#access-section {
    position: relative;
    padding-top: 68px;
}

.sp {
    display: block;
}

.pc {
    display: none !important;
}


/* hamburger menu */
/* .Menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    color: #111;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }
    .Menu-CloseBtn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px;
    }
    .Menu-CloseBtn-Icon {
    width: 32px;
    color: #111;
    }
    .Menu-Group {
    display: flex;
    flex-wrap: wrap;
    padding: 32px 12px;
    }
    .Menu-Group > * + * {
    border-top: solid 2px #111;
    }
    .Menu-Group-Item {
    width: 100%;
    flex: auto;
    padding: 4px;
    }
    .Menu-Group-Item-Link {
    padding: 1em 0.5em;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.02em;
    } */

/* ========= TOP ========= */
#top-section {
    height: 90vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#top-section div {
    background-image: url(../img/top-background/top-background-sp.png);
    width: 100%;
    height: 100%;
    background-size: cover; 
    background-position: center center;
    background-repeat: no-repeat;
}

.top-title {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 18px;
    background-color: #fff;
    font-family: yonaga;
    letter-spacing: 2px;
    padding: 7px 2px;
    z-index: 11;
}

.top-title:first-child {
    position: absolute;
    top: 15%;
    right: 9%;
}

.top-title:nth-child(2) {
    position: absolute;
    top: 24%;
    right: 18%;
}

#page-link div {
    display: none;
    position: absolute;
}

.top-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.top-fuwafuwa {
    animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
    display: inline-block;
    transition: 1.5s ease-in-out;
}

#page-link div:first-child {
    top: 12%;
    left: 31%;
}

#page-link div:nth-child(2) {
    top: 29%;
    left: 6%;
}

#page-link div:nth-child(3) {
    top: 45%;
    left: 40%;
}

#page-link div:nth-child(4) {
    top: 66%;
    left: 12%;
}

#page-link div:nth-child(5) {
    top: 62%;
    left: 56%;
}

.top-button img {
    width: 104px;
    height: 104px;
}

.top-button span {
    font-family: Hiragino Kaku Gothic ProN;
    font-size: 8px;
    color: white;
    font-weight: 600;
    background-color: #000;
    padding: 6px 4px;
    display: block;
    width: 100px;
    text-align: center;
}

.top-button-text-long {
    width: 130px !important;
}

.booking-button {
    position: fixed;
    bottom: 5%;
    right: 5%;
    z-index: 1110;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-button span {
    font-size: 12px;
    padding-bottom: 10px;
    font-family: Yonaga;
    text-align: center;
}

.booking-button img{
    width: 65px;
    height: 65px;
}

.popup-banner-wrapper {
    position: fixed;
    bottom: 3%;
    left: 7%;
    z-index: 1110;
    max-width: 60%;
    display: none;
}

.popup-banner-wrapper button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-banner-wrapper span {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    position: absolute;
    top: -3.5px;
    left: 8px;
}

.fuwafuwa {
    animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 70px;
    height: 70px;
  }

@keyframes fuwafuwa {
    0% {
      transform:translate(0, 0) rotate(-7deg);
    }
    50% {
      transform:translate(0, -7px) rotate(0deg);
    }
    100% {
      transform:translate(0, 0) rotate(7deg);
    }
  }

.explanation-section {
    padding-top: 60px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.explanation-section > img {
    width: 283px;
    position: absolute;
    top: 0;
    right: -69px;
}

.concept-text-image  {
    width: 217px;
    margin-bottom: 40px;
}

/* .explanation-section h1{
    font-size: 31px;
    line-height: 54px;
    margin-bottom: 17px;
    font-family: 'yonaga';
} */

.explanation-section p {
    line-height: 23px;
    font-family: Hiragino Kaku Gothic ProN;
    font-size: 12px;
}

/* NEWS */

#news-section {
    margin-bottom: 85px;
}

.news-button-wrapper {
    margin-bottom: 18px;
    font-size: 13px;
}

.news-button-wrapper a {
    color: #000;
}

#additional-news {
    display: none;
}

.news-show-more-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.news-show-more-button-wrapper > button {
    font-size: 13px;
    padding: 8px 16px;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
}

/* WIFI */
#wifi-section {
    text-align: center;
}

.wifi-text {
    font-size: 16px;
    margin-bottom: 13px;
}

.wifi-text-small {
    font-size: 12px;
}

.wifi-pointer {
    width: auto;
    height: 30%;
    position: absolute;
    top: 16%;
    left: 25%;
}

#wifi-section div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#wifi-section div a {
    position: relative;
    height: 80px;
    width: 80px;
    margin: 40px 0;
}

.wifi-circle {
    width: 80px;
    height: 80px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
        from {
          transform: rotate(0deg);
        }
        to {
          transform: rotate(360deg);
        }
      }

.wifi-key {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* DRESSY CAFE */
.dressy-cafe-round-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 104px;
}

.dressy-cafe-item {
    padding-bottom: 68px;
}

.store-item, .store-item__long, .store-item__short{
    padding-bottom: 100px;
}

.store-item__short > ul > .slick-arrow {
    bottom: -161px;
}

.store-item__short > ul > .slick-num {
    bottom: -156px;
}

.store-item > ul > .slick-arrow {
    bottom: -188px;
}

.store-item > ul > .slick-num {
    bottom: -183px;
}

.store-item__long > ul > .slick-arrow {
    bottom: -220px;
}

.store-item__long > ul > .slick-num {
    bottom: -215px;
}

.dressy-cafe-item-explanation-wrapper {
    display: flex;
    justify-content: space-between;
}

.dressy-cafe-item-explanation-wrapper > div {
    width: 48%;
}

.dressy-cafe-item-explanation-wrapper > div > .dressy-cafe-item-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
}

.dressy-cafe-item-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 17px;
    padding-bottom: 11px;
    border-bottom: 1px solid #707070;
    margin-bottom: 14px;
}

.dressy-cafe-item-title-wrapper h4 {
    font-size: 13px;
}

.dressy-cafe-item-title-wrapper p {
    font-size: 11px;
}

.dressy-cafe-item-text-wrapper p {
    font-size: 13px;
    line-height: 25px;
}

.placole-wedding-adovisor-decoration-wrapper {
    position: relative;
    overflow: hidden;
}

/* CAFE MENU */
#cafe-menu-section {
    margin-top: 60px;
}

.cafe-news-text-wrapper p{
    font-size: 11px;
    text-align: center;
    line-height: 25px;
}

.section-bottom-button-wrapper a {
    display: block;
    border: 1px solid #000;
    width: 100%;
    padding: 25px 0;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    margin: 53px 0;
    background-color: #fff;
}

.cafe-menu-button-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.cafe-menu-button {
    margin: 0 0 53px 0 !important;
}

.section-bottom-button {
    /* margin: 53px 0px 0px 0px !important; */
}

.cafe-menu-slider .slick-list {
    height: 500px;
}

/* PLACOLE & DRESSY */
.placole-dressy-decoration-wrapper {
    position: relative;
}

.placole-dressy-decoration {
    position: absolute;
    top: -99px;
    left: -46%;
    transform: scale(0.3);
}

#placole-dressy-section {
    overflow: hidden;
}

.placole-dressy-round-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 104px;
}

#placole-dressy-section .cafe-news-text-wrapper {
    padding-top: 120px;
}

/* DRESSY ROOM */
#dressy-room-section {
    margin-bottom: 140px;
}

.dressy-room-wrapper {
    display: none;
}

#dressy-room-section .section-bottom-button-wrapper {
    padding-top: 80px;
}

/* PHOTO SPOT */
#photo-spot-section {
    margin-bottom: 140px;
}

#photo-spot-section .section-bottom-button-wrapper {
    padding-top: 60px;
}

/* PLACOLE WEDDING ADVISOR */
.placole-wedding-adovisor-wrapper-pc {
    display: none;
}

#placole-wedding-adovisor-section {
    overflow: hidden;
    margin-bottom: 30px;
}

.placole-wedding-adovisor-flower {
    transform: scale(0.3);
    position: absolute;
    bottom: 15%;
    right: -69px;
}

#placole-wedding-adovisor-section .section-bottom-button-wrapper {
    padding-top: 30px;
}

.checkbox-text-wrapper {
    display: flex;
    align-items: center;
}

.checkbox-text-wrapper img {
    height: 18px;
    width: 18px;
    margin-right: 5px;
}

.placole-wedding-adovisor-decoration-smartphone-pc {
    display: none;
}

.placole-wedding-adovisor-wrapper-sp {
    display: block;
    position: relative;
}

.placole-wedding-adovisor-decoration-flower2-sp {
    position: absolute;
    transform: scale(0.3);
    top: -473px;
    right: -126px;
}

/* MEDIA */
.media-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.media-box {
    width: 45%;
    margin-bottom: 40px;
    text-decoration: none;
    color: #000;
}

.media-box.show {
    display: none;
}

.media-box-image-wrapper {
    width: 100%;
    padding-bottom: calc(100% * (5 / 7)); /* 5:7の縦横比を設定 */
    position: relative;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-box-image-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 90%;
    object-fit: cover; /* 画像を枠にフィットさせる */
}

.media-box-text-wrapper {
    margin-top: 14px;
    line-height: 21px;
    font-size: 13px;
}


/* ACCESS */
.access-text-wrapper {
    text-align: center;
    margin-bottom: 35px;
}

.access-text-wrapper h4 {
    font-family: Futura;
    font-weight: 300;
    line-height: 25px;
    padding: 20px 0;
}

.access-text-wrapper span {
    font-size: 11px;
    font-family: Hiragino Kaku Gothic ProN;
}

.access-image-wrapper img {
    margin-bottom: 20px;
}

/* FLLOW ME */
.follow-me-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.follow-me-section h3 {
    font-size: 18px;
    font-family: Hiragino Kaku Gothic ProN;
}

.sns-icons-wrapper {
    display: flex;
    justify-content: center;
    margin: 28px 0;
}

.sns-icon img{
    width: 20px;
    height: 20px;
}

/* FOOTER */
footer {
    font-size: 10px;
    text-align: center;
    padding: 24px 0 38px;
}

.footer-background {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(transparent, #c0c0c0);
    z-index: 1109;
}
  
.footer-button-container {
    position: fixed;
    bottom: 1%;
    left: 7%;
    display: flex;
    justify-content: space-between;
    width: 55%;
    z-index: 1110;
}

.footer-button-container > a > img {
    width: auto;
    height: 75px;
}
  
/* 背景を暗くするスタイル */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  /* モーダルのスタイル */
  .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.7);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
  }

  .modal-content > div {
    width: 70%;
  }

  .modal-button {
    margin-top: 20px;
    display: block;
    border: 1px solid #000;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    background-color: #fff;
  }
  
  .modal-close-button {
    font-size: 40px;
    color: #fff;
    padding: 0 20px;
  }

  /* 背景が暗くなった時のアニメーション */
  .modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
  }

  /* モーダルが表示された時のアニメーション */
  .modal-content.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

@media screen and (min-width: 960px) {
	/* 960px以上に適用されるCSS（PC用） */
    .margin-r20-l20 {
        width: 80%;
    }

    .sp {
        display: none !important;
    }

    .pc {
        display: block !important;
    }

    .splash-screen-pc {
        display: block;
        z-index: 1222;
        width: auto;
        height: 40%;
        padding-left: 15%;
    }
    
    .splash-screen-sp {
        display: none;
    }

    .header-curtain {
        height: 290px;
    }

    #top-section {
        height: 100vh;
    }

    #top-section div {
        background-image: url(../img/top-background/top-background-pc.png);
    }

    .top-title {
        font-size: 30px;
        letter-spacing: 2px;
        padding: 7px 2px;
    }
    
    .top-title:first-child {
        top: 13%;
        right: 15%;
    }
    
    .top-title:nth-child(2) {
        top: 29%;
        right: 20%;
    }

    .top-button img {
        width: 150px;
        height: 150px;
    }

    .top-button span {
        font-size: 12px;
        width: 140px;
        text-align: center;
    }
    
    .top-button-text-long {
        width: 170px !important;
    }

    #page-link div:first-child {
        top: 10% !important;
        left: 58% !important;
    }
    
    #page-link div:nth-child(2) {
        top: 20%;
        left: 27%;
    }
    
    #page-link div:nth-child(3) {
        top: 42%;
        left: 44%;
    }
    
    #page-link div:nth-child(4) {
        top: 50%;
        left: 19%;
    }
    
    #page-link div:nth-child(5) {
        top: 60%;
        left: 66%;
    }

    .explanation-section > img {
        width: 340px;
        right: -15px;
    }

    .wifi-pointer {
        left: 39%;
    }

    .dressy-cafe-items-wrapper, .cafe-menu-items-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .container, .dressy-cafe-item, .store-item, .store-item__short, .store-item__long {
        width: 48%;
    }

    .dressy-cafe-item-title-wrapper {
        display: flex;
        height: 68px;
    }

    .section-bottom-button-wrapper {
        display: flex;
        justify-content: center;
    }

    .section-bottom-button-wrapper a {
        width: 335px;
    }

    /* .container {
        padding-bottom: 30px;
    } */

    .container2 ul li img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .access-image-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .access-image-wrapper img {
        height: auto;
        width: 400px;
    }

    .cafe-menu-slider .slick-list {
        height: 580px;
    }

    #placole-dressy-section .container2 .slider .slick-prev,
    #dressy-room-section .container2 .slider .slick-prev,
    #photo-spot-section .container2 .slider .slick-prev,
    #placole-wedding-adovisor-section .container2 .slider .slick-prev {
        left: 80% !important;
    }

    #placole-dressy-section .container2 .slider .slick-next,
    #dressy-room-section .container2 .slider .slick-next,
    #photo-spot-section .container2 .slider .slick-next,
    #placole-wedding-adovisor-section .container2 .slider .slick-next {
        right: 0 !important;
    }

    #placole-dressy-section .container2 .slider .slide-arrow,
    #dressy-room-section .container2 .slider .slick-arrow,
    #photo-spot-section .container2 .slider .slick-arrow {
        bottom: -13% !important;
    }

    #placole-wedding-adovisor-section .container2 .slider .slide-arrow {
        bottom: -13% !important;
    }

    #placole-dressy-section .container2 .slider .slick-num,
    #dressy-room-section .container2 .slider .slick-num,
    #photo-spot-section .container2 .slider .slick-num {
        bottom: -11.5% !important; 
        right: -40%;
    }

    #placole-wedding-adovisor-section .container2 .slider .slick-num {
        bottom: -11.5% !important; 
        right: -40%;
    }

    .placole-dressy-decoration {
        top: 27px;
        left: -22%;
        transform: scale(0.4);
    }

    .dressy-room-wrapper {
        display: block;
        position: relative;
    }

    .dressy-room-decoration {
        position: absolute;
        right: -66px;
        top: -344px;
        transform: scale(0.5);
    }

    .placole-wedding-adovisor-wrapper-pc {
        display: block;
        position: relative;
    }

    .placole-wedding-adovisor-decoration-pc {
        position: absolute;
        left: -119px;
        top: -120px;
        transform: scale(0.3);
    }

    .placole-wedding-adovisor-decoration-smartphone-pc {
        display: block;
        position: absolute;
        bottom: 70px;
        right: -60px;
        transform: scale(0.27);
    }

    .cafe-news-text-wrapper {
        margin-top: 0px;
    }

    #placole-dressy-section .cafe-news-text-wrapper {
        padding-top: 0;
    }

    /* .cafe-news-text-wrapper {
        margin-top: 100px;
    } */

    .cafe-news-text-wrapper p {
        padding-top: 30px;
    }

    .popup-banner-wrapper {
        max-width: 30%;
    }

    .store-item > ul > .slick-arrow {
        bottom: -161px !important;
    }
    
    .store-item > ul > .slick-num {
        bottom: -156px !important;
    }

    .store-item, .store-item__long, .store-item__short {
        padding-bottom: 150px;
    }
    .footer-button-container {
        width: 22% !important;
    }
    .modal-content {
        width: 27% !important;
    }

    /* .modal-content > img {
        height: 550px;
    } */

    #notice-modal {
        width: 32% !important;
    }

    .media-box {
        width: 21%;
    }

    .media-box.show {
        display: block;
    }
}

/* slick */
.container {
    /* margin-bottom: 40px; */
    position: relative;
}


.slick-track {
width: 48%;
}
.slide-arrow {
bottom: -7px;
margin: auto;
position: absolute;
width: 12px;
height: 30px;
z-index: 100;
}

.slick-img img {
height: auto;
width: 100%;
}

.slick-prev {
left: 30%;
}

.slick-next {
right: 30%;
}

.slick-num {
bottom: -2px;
font-size: 11px;
line-height: 2;
position: absolute;
right: 0;
text-align: center;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
font-family: Hiragino Kaku Gothic ProN;
}

.vertical-bar {
display: inline-block;
width: 1px;
height: 10px; /* 縦棒の高さ */
background-color: #A3A3A3; /* 縦棒の色 */
margin: 0 15px; /* 縦棒の左右の余白 */
}

#dressy-room-section .container2 .slider .slide-arrow,
#photo-spot-section .container2 .slider .slide-arrow {
bottom: -90%; 
}

#placole-dressy-section .container2 .slider .slide-arrow {
bottom: -497px; 
}

#placole-wedding-adovisor-section .container2 .slider .slide-arrow {
bottom: -132%; 
}

#placole-dressy-section .container2 .slider .slick-num {
bottom: -491px; 
}

#dressy-room-section .container2 .slider .slick-num,
#photo-spot-section .container2 .slider .slick-num {
bottom: -86.5%; 
}

#placole-wedding-adovisor-section .container2 .slider .slick-num {
    bottom: -130%; 
}





/* ========= TOPのアニメーション =============== */
.animated-element {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-7px);
    }
    100% {
        transform: translatey(0px);
    }
}
  
.animated {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.animate {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.7s ease;
  }

.animate.is-show {
    opacity: 1;
    transform: translateY(0);
  }
  

.rotate-y {
    animation:rotate_anime 1s;
}

@keyframes rotate_anime {
    0% {
        transform:rotateY(0deg);
    }
    100% {
        transform:rotateY(360deg);
    }
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1199;
  }

  #notice-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 1200;
    width: 90%;
  }

  #notice-modal button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#notice-modal span {
    color: #555;
    font-size: 22px;
    position: absolute;
    top: -3.5px;
    left: 8px;
}