@charset "UTF-8";

/*html body setting*/
/* line 3, ../scss/_default.scss */
html {
  overflow-y: scroll;
  font-size: 62.5%;
  padding: 0;
  margin: 0;
  width: 100%;
}

/* line 10, ../scss/_default.scss */
body {
  position: relative;
  /*overflow: hidden;*/
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.6;
  background: #E4E5E8;
  color: #333;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
  margin: auto;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures contextual;
  font-feature-settings: "kern", "liga", "clig", "calt";
}

/*px base setting*/
/* line 31, ../scss/_default.scss */
#pxBase sup {
  vertical-align: super;
  font-size: .5em;
}

/* line 35, ../scss/_default.scss */
#pxBase a:link,
#pxBase a:visited,
#pxBase a:active,
#pxBase a:hover {
  text-decoration: none;
}

/* line 41, ../scss/_default.scss */
#pxBase figure {
  position: relative;
}

/* line 44, ../scss/_default.scss */
#pxBase img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

/* line 48, ../scss/_default.scss */

#pxBase img.object-fit {
  object-fit: cover;
  height: 100%;
}

.kvTitle span,
.kvCopy {
  color: #F3EEE7;
}

/* visible or hidden
--------------------------------------------------------------------------------*/
/* line 57, ../scss/_default.scss */
.hidden-pc {
  display: none !important;
}

@media only screen and (max-width: 991px) {

  /* line 60, ../scss/_default.scss */
  .visible-pc {
    display: none !important;
  }

  /* line 61, ../scss/_default.scss */
  .hidden-pc {
    display: block !important;
  }
}

@media only screen and (min-width: 992px) {

  /* line 64, ../scss/_default.scss */
  .visible-tbsp {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {

  /* line 67, ../scss/_default.scss */
  .visible-sp {
    display: none !important;
  }
}

/* line 69, ../scss/_default.scss */
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

@media (max-width: 767px) {

  /* line 73, ../scss/_default.scss */
  .hidden-xs {
    display: none !important;
  }

  /* line 76, ../scss/_default.scss */
  .visible-xs {
    display: block !important;
  }
}

/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/*
よく使用するmixin
------------------------------------------*/

/*
tab-area
------------------------------------------*/
.tab-area.top {
  margin-top: 55px;
  border-bottom: 1px solid #373637;
}

.tab-area.bottom {
  margin-top: 120px;
  margin-bottom: 55px;
  border-top: 1px solid #373637;
}

.tab-area-inner {
  max-width: 916px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.tabItems {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 43px;
}

.tabItem {
  font-size: 34px;
  font-style: normal;
  text-align: center;
  color: #fff;
  width: 100%;
  cursor: pointer;
  aspect-ratio: 415 / 88;
  position: relative;
  transition: all .3s;
}

.tabItem:hover {
  filter: brightness(0.7);
  transition: all .3s;
}

.tabImg {
  aspect-ratio: 415 / 88;
}

.tabItem img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tabItem.one::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 35px;
  background-image: url(../img/landscape/tabText01.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.tabItem.two-three::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 187px;
  height: 37px;
  background-image: url(../img/landscape/tabText02.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.tabItem.is-current {
  filter: brightness(0.7);
}

.tab-content {
  display: none;
}

@media only screen and (max-width: 767px) {
  .tab-area.top {
    margin-top: 55px;
    border-bottom: 1px solid #373637;
  }

  .tab-area.bottom {
    margin-top: 120px;
    margin-bottom: 55px;
    border-top: 1px solid #373637;
  }

  .tab-area-inner {
    max-width: 916px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }

  .tabItems {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .tabItem {
    font-size: 34px;
    font-style: normal;
    text-align: center;
    color: #fff;
    width: 100%;
    cursor: pointer;
    aspect-ratio: 415 / 88;
    position: relative;
    transition: all .3s;
  }

  .tabItem:hover {
    filter: brightness(0.7);
    transition: all .3s;
  }

  .tabImg {
    aspect-ratio: 415 / 88;
  }

  .tabItem img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tabItem.one::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 18px;
    background-image: url(../img/landscape/tabText01.png);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .tabItem.two-three::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 18px;
    background-image: url(../img/landscape/tabText02.png);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .tabItem.is-current {
    filter: brightness(0.7);
  }

  .tab-content {
    display: none;
  }

}

/*
共通パーツ
------------------------------------------*/
.section-title {
  font-size: clamp(80px, 7.32vw, 100px);
  letter-spacing: 0.01em;
  line-height: 1;
  color: #254357;
  text-align: center;
}

.imgCap figure {
  position: relative;
}

.imgCap figure figcaption {
  position: absolute;
  content: "";
  bottom: 5px;
  right: 0;
  padding: 0 5px;
  line-height: 1.2;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 0px 0px 10px #000, 0px 0px 10px #000;
}
.imgCap figure figcaption.black {
  color: #000;
  text-shadow:
    1px 1px 0 #fff,
    -1px 1px 0 #fff,
    -1px -1px 0 #fff,
    1px -1px 0 #fff;
}

@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 50px;
  }
}

/*
content-area
------------------------------------------*/
.content-area {
  margin-top: 88px;
  overflow-x: hidden;
}

.content-area-inner {
  max-width: 916px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .content-area {
    margin-top: 60px;
    overflow-x: unset;
  }
}

/*
.content1
------------------------------------------*/

.content1 .mapImg {
  /* aspect-ratio: 779 / 475; */
  /* max-width: 779px; */
  width: 100%;
  margin: 0 auto;
}

.content1 .mapImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content1 .mapImg .cap{
  text-align: right;
  line-height: 1.2;
  font-size: 1.1rem;
}

.facilities-sec {
  margin-top: 121px;
}

.facilitiesHead{
  margin-top: 15px;
}
.facilitiesHead p{
  font-size: 21px;
  line-height: calc(36 / 21);
  color: #2F2725;
  text-align: center;
}

.facilitiesImg {
  aspect-ratio: 1023 / 518;
  margin-top: 30px;
}

.facilitiesImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facilitiesText {
  margin-top: 10px;
  text-align: center;
}

.facilitiesText p {
  text-align: center;
  color: #373637;
  font-size: 17px;
  line-height: calc(31 / 17);
  display: inline-block;
}

.facilitiesText p.head {
  font-size: 21px;
  line-height: calc(36 / 21);
  color: #2F2725;
}

.facilitiesText p span.cap{
  display: block;
  line-height: 1.2;
  font-size: 1.1rem;
  text-align: right;
}

.facilitiesText p:nth-child(2) {
  margin-top: 20px;
}

.facilitiesText.service{
  margin-top: 54px;
}

.serviceWrap {
  margin-top: 75px;
  display: flex;
  gap: 30px;
}

.serviceImg {
  aspect-ratio: 568 / 180;
  flex: 0 1 68%;
}

.serviceImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serviceText {
  flex: 0 1 33%;
}

.serviceText p {
  color: #373637;
  font-size: 17px;
  line-height: calc(31 / 17);
}

.serviceText p.head {
  text-align: center;
  font-size: 21px;
  line-height: calc(36 / 21);
  letter-spacing: 0.08em;
  color: #2F2725;
}

.serviceText p:nth-child(2) {
  margin-top: 20px;
}

.serviceConcierge {
  margin-top: 50px;
}

.serviceConcierge .head {
  color: #373637;
  font-size: 17px;
  line-height: calc(31 / 17);
  letter-spacing: 0.1em;
}

.conciergeItems {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  border-top: 1px solid #254357;
  border-bottom: 1px solid #254357;
  padding: 8px 15px;
  margin-top: 3px;
}

.conciergeItem p {
  color: #373637;
  font-size: 14px;
  line-height: calc(21 / 14);
}

.conciergeItem p.head {
  color: #373637;
  font-size: 17px;
  line-height: calc(31 / 17);
  text-align: center;
  letter-spacing: 0;
}

.conciergeItem p:nth-child(2) {
  margin-top: 10px;
}

.facilitiesItems {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

.facilitiesItem .itemImg {
  aspect-ratio: 262 / 160;
}

.facilitiesItem .itemImg figure{
  width: 100%;
  height: 100%;
}

.facilitiesItem .itemImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facilitiesItem .itemText p {
  color: #373637;
  font-size: 17px;
  line-height: calc(31 / 17);
  text-align: center;
  margin-top: 14px;
}

.facilitiesItem .itemText p span{
  line-height: 1.2;
  font-size: 1.1rem;
  display: block;
}

.facilitiesItem .itemText p.head {
  color: #2F2725;
  font-size: 20px;
  line-height: calc(36 / 21);
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 767px) {
  .facilities-sec {
    margin-top: 60px;
  }

  .facilitiesImg {
    aspect-ratio: 1023 / 518;
    margin-top: 35px;
  }


  .serviceWrap {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .serviceImg {
    aspect-ratio: 568 / 180;
    flex: 0 1 68%;
  }

  .serviceImg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .serviceText {
    flex: 0 1 33%;
  }

  .serviceText p{
    text-align: center;
  }

  .serviceText p:nth-child(2) {
    margin-top: 20px;
  }

  .serviceConcierge {
    margin-top: 26px;
  }

  .conciergeItems {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 8px 15px;
    margin-top: 3px;
  }

  .conciergeItem {
    position: relative;
  }

  .conciergeItem:not(:first-child)::after {
    position: absolute;
    content: "";
    width: calc(100% + 30px);
    height: 1px;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #254357;
  }

  .facilitiesItems {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }

  .facilitiesItem .itemImg {
    aspect-ratio: 262 / 160;
  }
}

/*
.content2
------------------------------------------*/
.content2 .mapImg {
  /* aspect-ratio: 779 / 875;
  max-width: 779px;
  width: 100%; */
  margin: 0 auto;
}

.content2 .mapImg img {
  display: block;
  /* width: 100%;
  height: 100%;
  object-fit: contain; */
}

.content2 .mapImg p{
  text-align: right;
  line-height: 1.2;
  font-size: 1.1rem;
}

.studio-sec {
  /* margin-top: 50px; */
  margin-top: 121px;
}

.studioHead {
  margin-top: 15px;
}

.studioHead p {
  text-align: center;
  color: #2F2725;
  font-size: 21px;
  line-height: calc(36 / 21);
}

.studioItems {
  margin-top: 60px;
  display: flex;
  gap: 40px;
}

.stdioItem .itemImg {
  aspect-ratio: 414 / 392;
}

.stdioItem .itemImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stdioItem .itemText {
  margin-top: 25px;
}

.stdioItem .itemText p {
  color: #373637;
  font-size: 17px;
  line-height: calc(31 / 17);
}

.stdioItem .itemText p.head {
  color: #363636;
  font-size: 19px;
  line-height: calc(28 / 19);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.stdioItem .itemText p:nth-child(2) {
  margin-top: 15px;
}

.spolution {
  margin-top: 75px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.spolution-inner {
  margin: 0 auto;
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
}

.spolutionTitle {
  background-color: #254357;
  padding: 18px;
  position: relative;
  cursor: pointer;
}


.spolutionTitle::after {
  position: absolute;
  content: "";
  width: 21px;
  height: 41px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/landscape/spolutionArrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform .3s, top .3s;
}

.spolutionTitle.is-open::after {
  transform: rotate(90deg);
  top: 20%;
}

.spolutionTitle p {
  font-size: 27px;
  line-height: calc(36 / 29);
  letter-spacing: 0.2em;
  color: #fff;
  text-align: center;
}

.spolutionContent {
  display: none;
  background-color: #fff;
}

.spolutionContentWrap {
  max-width: 916px;
  width: 100%;
  margin: 0 auto;
  padding: 55px 20px 18px;
}

.spolutionHead p {
  color: #373637;
  font-size: 14px;
  line-height: calc(23 / 14);
  text-align: center;
}

.spolutionHead p.head {
  font-size: 22px;
  line-height: calc(48 / 22);
}

.spolutionHead p:nth-child(2) {
  margin-top: 1px;
}

.spolutionLogo {
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 418 / 96;
  max-width: 418px;
  width: 100%;
}

.spolutionText {
  margin-top: 40px;
}

.spolutionText p {
  color: #373637;
  font-size: 14px;
  line-height: calc(23 / 14);
  text-align: center;
}

.spolutionText p.head {
  font-size: 22px;
  line-height: calc(48 / 22);
}

.spolutionText p:nth-child(2) {
  margin-top: 1px;
}

.spolutionWrap {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.spolutionItem .itemImg {
  aspect-ratio: 1 / 1;
}

.spolutionItem .itemImg figcaption {
  bottom: 12px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  text-shadow:
    1px 1px 0 #000,
    -1px 1px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000;
}

.spolutionItem .itemImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spolutionItem .itemText {
  margin-top: 20px;
}

.spolutionItem .itemText p {
  text-align: center;
  color: #373637;
  font-size: 14px;
  line-height: calc(23 / 14);
}

.spolutionItem .itemText p.head {
  font-size: 40px;
  letter-spacing: 0.08em;
  color: #2F2725;
}

.spolutionItem .itemText p:nth-child(2) {
  margin-top: 12px;
}

.spolutionIcon {
  aspect-ratio: 1 / 1;
  max-width: 60px;
  width: 100%;
  margin-top: auto;
  margin-bottom: 70px;
}

.spolutionIcon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spolutionSchedule {
  margin-top: 106px;
}

.spolution-subTitle {
  text-align: center;
  color: #254357;
  font-size: 24px;
  letter-spacing: 0.15em;
}

.s-scheduleText {
  margin-top: 7px;
}

.s-scheduleText p {
  color: #373637;
  font-size: 14px;
  line-height: calc(23 / 14);
  text-align: center;
}

.s-scheduleText p.head {
  color: #2F2725;
  font-size: 22px;
  line-height: calc(48 / 22);
  letter-spacing: 0.08em;
}

.s-scheduleText p:nth-child(2) {
  margin-top: 3px;
}

.s-scheduleTable {
  margin-top: 25px;
}

.s-scheduleTable .tableHead p {
  color: #373637;
  font-size: 14px;
}

.s-scheduleTable .tableImg {
  margin-top: 5px;
}

.s-scheduleTable .tableImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#spCommonModalContents figure, #spCommonSlideContents figure{
  width: 270%;
  margin: 0;
}

.s-scheduleTable .tableCap {
  margin-top: 5px;
}

.s-scheduleTable .tableCap p {
  font-size: 8px;
  letter-spacing: 0.04em;
  color: #231815;
}


.spolutionService {
  margin-top: 114px;
}

.s-serviceText {
  margin-top: 5px;
}

.s-serviceText p {
  color: #373637;
  font-size: 14px;
  line-height: calc(23 / 14);
  text-align: center;
}

.s-serviceText p.head {
  color: #2F2725;
  font-size: 22px;
  line-height: calc(48 / 22);
  letter-spacing: 0.08em;
}

.s-serviceItems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 68px 58px;
  margin-top: 55px;
}

.s-serviceItems.event{
  margin-top: 17px;
}

.s-serviceItem .itemImg {
  aspect-ratio: 251 / 170;
}

.s-serviceItem .itemImg figure{
  width: 100%;
  height: 100%;
}

.s-serviceItem .itemImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-serviceItem .itemImg figcaption {
  color: #000;
  text-shadow:
    1px 1px 0 #fff,
    -1px 1px 0 #fff,
    -1px -1px 0 #fff,
    1px -1px 0 #fff;
}
.s-serviceItem .itemImg figcaption.white {
  color: #fff;
  text-shadow:
    1px 1px 0 #000,
    -1px 1px 0 #000,
    -1px -1px 0 #000,
    1px -1px 0 #000;
}

.s-serviceItem .itemText {
  margin-top: 20px;
}

.s-serviceItem .itemText p {
  color: #373637;
  font-size: 13.3px;
  line-height: calc(23 / 14);
}

.s-serviceItem .itemText p.head {
  color: #254357;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}

.s-serviceItem .itemText p:nth-child(2) {
  margin-top: 10px;
}

.s-serviceHead{
  margin-top: 95px;
}

.s-serviceHead p{
  font-size: 22px;
  line-height: calc(38 / 22);
  text-align: center;
  color: #2F2725;
}

.s-serviceCap{
  margin-top: 56px;
}

.s-serviceCap p{
  font-size: 10.5px;
  line-height: calc(14 / 11);
}

.work-sec {
  margin-top: 105px;
}

.workHead {
  text-align: center;
  font-size: 21px;
  line-height: calc(36 / 21);
  margin-top: 20px;
}

.workLogo {
  margin-top: 27px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 504 / 148;
  max-width: 504px;
  width: 100%;
  mix-blend-mode: multiply;
}

.workText {
  margin-top: 24px;
}

.workText p {
  color: #373637;
  font-size: 14px;
  line-height: calc(23 / 14);
  text-align: center;
}

.workText p.head {
  color: #2F2725;
  font-size: 22px;
  line-height: calc(48 / 22);
  letter-spacing: 0.08em;
}

.workText p.head span{
font-size:  14px;
vertical-align: top;
}

.workText p:nth-child(2) {
  margin-top: 6px;
}

.workImg {
  margin-top: 20px;
  aspect-ratio: 875 / 433;
}

.workImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workItems {
  margin-top: 55px;
  display: flex;
  gap: 57px;
}

.workItem .itemImgWrap {
  position: relative;
}

.workItem .itemImg {
  aspect-ratio: 251 / 146;
}

.workItem .itemImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workItem .itemText {
  position: absolute;
  content: "";
  width: 100%;
  top: 21%;
  left: 50%;
  transform: translateX(-50%);
}

.workItem .itemText .point {
  max-width: 90px;
  width: 100%;
  margin: 0 auto;
}

.workItem .itemText .point img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.workItem .itemText .text {
  margin-top: 15px;
}

.workItem .itemText .text p {
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: calc(28 / 14);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.workItem .itemCopy{
  margin-top: 20px;
}

.workItem .itemCopy p{
  text-align: center;
  font-size: 12px;
  line-height: calc(23 / 14);
  color: #373637;
}

.work-sec .cap{
  margin-top: 30px;
}

.work-sec .cap p{
  text-align: center;
  line-height: 1.2;
  font-size: 1.1rem;
}

.party-sec {
  margin-top: 100px;
}

.partyImg {
  aspect-ratio: 875 / 433;
  margin-top: 43px;
}

.partyImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partyText {
  margin-top: 20px;
}

.partyText p {
  text-align: center;
  color: #373637;
  font-size: 17px;
  line-height: calc(31 / 17);
}

.partyText p span{
  line-height: 1.2;
  font-size: 1.1rem;
  display: block;
}

.partyText p.head {
  color: #2F2725;
  font-size: 21px;
  line-height: calc(36 / 21);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.partyText p:nth-child(2) {
  margin-top: 20px;
}

.guest-sec {
  margin-top: 98px;
}

.guestImg {
  aspect-ratio: 875 / 433;
  margin-top: 43px;
}

.guestImg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guestText {
  margin-top: 20px;
}

.guestText p {
  text-align: center;
  color: #373637;
  font-size: 17px;
  line-height: calc(31 / 17);
}

.guestText p span{
  line-height: 1.2;
  font-size: 1.1rem;
  display: block;
}

.guestText p.head {
  color: #2F2725;
  font-size: 21px;
  line-height: calc(36 / 21);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.guestText p:nth-child(2) {
  margin-top: 20px;
}
.common-sec {
  margin-top: 80px;
}

.common-Img {
  aspect-ratio: 1751 / 985;
  margin-top: 43px;
}

.common-Img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .studio-sec {
    margin-top: 50px;
  }

  .studioHead {
    margin-top: 15px;
  }

  .studioItems {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .stdioItem .itemImg {
    aspect-ratio: 414 / 392;
  }


  .stdioItem .itemText {
    margin-top: 25px;
  }

  .spolution {
    margin-top: 75px;
    margin-left: 0;
    margin-right: 0;
  }

  .spolution-inner {
    margin: 0 auto;
    max-width: 1240px;
    width: 100%;
    padding: 0;
  }

  .spolutionTitle {
    background-color: #254357;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 30px;
    position: relative;
    cursor: pointer;
  }


  .spolutionTitle::after {
    width: 16px;
    height: 30px;
    right: 20px;
  }

  .spolutionTitle.is-open::after {
    top: 40%;
  }

  .spolutionTitle p {
    font-size: 18px;
    line-height: calc(36 / 29);
    letter-spacing: 0.2em;
    color: #fff;
    text-align: center;
  }

  .spolutionContent {
    display: none;
    background-color: #fff;
  }

  .spolutionContentWrap {
    max-width: 916px;
    width: 100%;
    margin: 0 auto;
    padding: 55px 20px 18px;
  }

  .spolutionHead p {
    color: #373637;
    font-size: 14px;
    line-height: calc(23 / 14);
    text-align: center;
  }

  .spolutionHead p.head {
    font-size: 22px;
    line-height: calc(38 / 22);
  }

  .spolutionHead p:nth-child(2) {
    margin-top: 10px;
  }

  .spolutionText {
    margin-top: 40px;
  }

  .spolutionText p {
    color: #373637;
    font-size: 14px;
    line-height: calc(23 / 14);
    text-align: center;
  }

  .spolutionText p.head {
    font-size: 22px;
    line-height: calc(38 / 22);
  }

  .spolutionText p:nth-child(2) {
    margin-top: 10px;
  }

  .spolutionWrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
  }

  .spolutionItem .itemText {
    margin-top: 10px;
  }

  .spolutionItem .itemText p.head {
    font-size: 36px;
    letter-spacing: 0.08em;
  }

  .spolutionItem .itemText p:nth-child(2) {
    margin-top: 5px;
  }

  .spolutionIcon {
    aspect-ratio: 1 / 1;
    max-width: 60px;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .spolutionSchedule {
    margin-top: 60px;
  }

  .s-scheduleText p.head {
    line-height: calc(38 / 22);
  }

  .spolutionService {
    margin-top: 60px;
  }

  .s-serviceText p.head {
    line-height: calc(38 / 22);
  }

  .s-serviceItems {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    margin-top: 55px;
  }

  .work-sec {
    margin-top: 80px;
  }


  .workText p.head {
    color: #2F2725;
    font-size: 22px;
    line-height: calc(38 / 22);
  }

  .workText p:nth-child(2) {
    margin-top: 6px;
  }

  .workImg {
    margin-top: 20px;
    aspect-ratio: 875 / 433;
  }

  .workItems {
    margin-top: 55px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .workItem .itemText {
    position: absolute;
    content: "";
    width: 100%;
    top: 25%;
    left: 50%;
  }

  .workItem .itemText .text {
    margin-top: 30px;
  }

  .workItem .itemText .text p {
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: calc(28 / 14);
    letter-spacing: 0.08em;
    font-weight: 600;
  }

  .party-sec {
    margin-top: 80px;
  }

  .guest-sec {
    margin-top: 80px;
  }
}
.tl{
    text-align: left!important;
}
.ml20{
    margin-left: 20px;
}

.mapImg .centerImg {
  position: relative;
  z-index: 0;
}
.centerImgBtn {
  width: min(200px, 25%);
  height: 40px;
  transform: translateY(-50%);
  position: absolute;
}
.centerImgBtn--01 {
  width: min(250px, 30%);
  top: 24%;
  left: 0%;
}
.centerImgBtn--02 {
  top: 41%;
  right: 0%;
}
.centerImgBtn--03 {
  top: 10%;
  right: 36%;
}
.centerImgBtn--04 {
  top: 21%;
  left: 3%;
}
.centerImgBtn--05 {
  top: 40%;
  left: 5%;
}
.centerImgBtn--06 {
  top: 28%;
  right: -1%;
}
.centerImgBtn--07 {
  top: 57%;
  right: -1%;
}
.centerImgBtn::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background-color: #24425743; */
  background: 
  linear-gradient(to right, rgba(36, 65, 86, 0.5), transparent 30%) left,
  linear-gradient(to left, rgba(36, 65, 86, 0.5), transparent 30%) right,
  linear-gradient(to bottom, rgba(36, 65, 86, 0.5), transparent 30%) top,
  linear-gradient(to top, rgba(36, 65, 86, 0.5), transparent 30%) bottom;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  animation: pulsate 2s ease-out;/* スピードなど */animation-iteration-count: infinite;
}

@keyframes pulsate {
	0% {
    transform:  scale(1, 1);
  }
	50% {
			opacity: 1;
	}
	100% {
			transform:  scale(1.5, 1.5);
			opacity: 0;
	}
}

@media only screen and (max-width: 767px) {
  @keyframes pulsate {
    0% {
      transform:  scale(1, 1);
    }
    50% {
        opacity: 1;
    }
    100% {
        transform:  scale(1.3, 1.3);
        opacity: 0;
    }
  }
}
.modaal-close {
  position: absolute;
  top: -50px;
  right: 0;
}

.modaal-gallery-item .modaal-gallery-label {
  position: absolute;
  bottom: 0px;
  color: white;
  padding: 5px 10px;
  text-align: right;
  font-size: clamp(10px, 1.8vw, 18px);
  display: block;
}