@charset "utf-8";

/*---------------------------------------------------------------------------------------------

ベース

---------------------------------------------------------------------------------------------*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  min-width: 1000px;
  width: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-size: 1.6rem;
}

.os {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px); /* 下からスライドインなど任意で */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  body {
    min-width: auto;
  }

}

/*---------------------------------------------------------------------------------------------

FLEX

---------------------------------------------------------------------------------------------*/

.flex {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}

.al-start {
  -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.al-center {
  -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.jt-center {
  -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.jt-around {
  -ms-flex-pack: distribute;
	justify-content: space-around;
}

.jt-between {
  -webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.jt-start {
  -webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.jt-end {
  -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

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

  .sp_noflex {
    display: block;
  }

  .sp_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

}

/*---------------------------------------------------------------------------------------------

PC

---------------------------------------------------------------------------------------------*/

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

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

}

/*---------------------------------------------------------------------------------------------

SP

---------------------------------------------------------------------------------------------*/


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

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}


/*---------------------------------------------------------------------------------------------

ヘッダー

---------------------------------------------------------------------------------------------*/

.head_wrap {
  width: 100%;
  background: #FFF;
}

.head_cont {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 40px;
}

.logo_left {
  display: block;
  max-width: 247px;
}

.logo_right {
  display: block;
  max-width: 161px;
}

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

  .head_cont {
    padding: 20px;
  }

  .logo_left {
    width: 32%;
  }

  .logo_right {
    width: 19.6%;
  }

}

/*---------------------------------------------------------------------------------------------

フッター

---------------------------------------------------------------------------------------------*/

.foot_wrap {
  width: 100%;
  background: #63AFCD;
  position: relative;
  padding-top: 130px;
  padding-bottom: 40px;
}

.foot_wrap::after {
  content: "";
  position: absolute;
  background: url(../img/pt_footer.svg);
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
}

.foot_cont {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.foot_logo {
  max-width: 240px;
  margin: auto;
  margin-bottom: 52px;
}

.foot_company {
  max-width: 314px;
  margin: auto;
  margin-bottom: 30px;
}

.foot_copy {
  font-size: 1.4rem;
  line-height: 1.71;
  text-align: center;
  color: #FFF;
}


/*---------------------------------------------------------------------------------------------

コンテンツ

---------------------------------------------------------------------------------------------*/

.mv_wrap {
  width: 100%;
  background: #FFF;
  padding-bottom: 80px;
}

.mv_cont {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.mv_area h1 img {
  width: 100%;
}

.mv_txt_area {
  margin-top: 60px;
}

.mv_sub_copy {
  max-width: 850px;
  width: 100%;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 2.11;
  color: #62AFCD;
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
  position: relative;
}

.mv_sub_read {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.9;
  color: #62AFCD;
  text-align: center;
  margin-bottom: 40px;
}

.mv_sub_txt {
  max-width: 700px;
  width: 100%;
  line-height: 2.25;
  margin: auto;
}

.shop_wrap {
  width: 100%;
  background: #E6F0F4;
  position: relative;
  padding-top: 130px;
  padding-bottom: 81px;
}

.shop_wrap::after {
  content: "";
  position: absolute;
  background: url(../img/pt_footer.svg);
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 50px;
  top: 0;
  left: 0;
}

.shop_copy {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.57;
  text-align: center;
  color: #62AFCD;
  margin-bottom: 30px;
}

.shop_image {
  max-width: 700px;
  width: 100%;
  margin: 50px auto 40px auto;
}

.main_cont {
  max-width: 1000px;
  width: 86.666%;
  margin: auto;
}

.floor_wrap {
  width: 100%;
  background: #FFF;
  padding-top: 80px;
  padding-bottom: 80px;
}

.floor_area {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.floor_image {
  max-width: 392px;
  width: 95%;
}

.floor_txt {
  max-width: 508px;
  width: 100%;
}

.floor_txt_box {
  margin-bottom: 30px;
}

.floor_txt_box:last-of-type {
  margin-bottom: 0;
}

.floor_head {
  margin-bottom: 15px;
  border-bottom: 1px solid #62AFCD;
}

.floor_head span {
  font-size: 5rem;
  line-height: 1.48;
  color: #62AFCD;
}

.floor_head p {
  font-size: 2.4rem;
  line-height: 1.33;
  font-weight: 500;
  margin-left: 20px;
}

.floor_read {
  font-size: 1.4rem;
  line-height: 1.71;
}

.coution {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}

.kds_wrap {
  width: 100%;
  background: #E6F0F4;
  padding-top: 80px;
  padding-bottom: 80px;
}

.kds_image {
  max-width: 470px;
  width: 48%;
  /* margin: 50px auto; */
}

.kds_txt {
  max-width: 480px;
  width: 48%;
  /* margin: auto; */
}

.kds_copy {
  font-size: 2.8rem;
  font-weight: bold;
  color: #62AFCD;
  line-height: 1.57;
  text-align: left;
  margin-bottom: 20px;
}

.kds_read {
  line-height: 2.25;
}

.link {
  text-decoration: underline;
  opacity: 1;
  transition: .3s;
}

.link:hover {
  opacity: .6;
}

.access_wrap {
  width: 100%;
  background: #FFF;
  padding-top: 100px;
  padding-bottom: 99px;
}

.banner_area {
  text-align: center;
  margin-bottom: 100px;
}

.banner_box {
  max-width: 640px;
  width: 100%;
  margin: auto;
}

.access_tit {
  font-size: 4.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.47;
  color: #62AFCD;
  margin-bottom: 60px;
}

.access_map {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}

.map_image {
  max-width: 480px;
  border: 1px solid #62AFCD;
}

.map_data {
  width: 480px;
  border: 1px solid #62AFCD;
}

.access_txt {
  margin-top: 50px;
  text-align: center;
}

.btnMore {
  width: 28%;
  margin: 50px auto 0;
}

.btnMore a {
  display: block;
  text-align: center;
  padding: 5%;
  color: #fff;
  background: #62afcd;
  font-size: 1.28em;
  font-weight: bold;
  border-radius: 3px;
  position: relative;
}

.btnMore a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  width: 9px;
  height: 13px;
  margin-top: -5px;
  background: url(../img/icn_arow_01.png) no-repeat left center;
  background-size: 100% auto;
}

.shop_list_area {
  margin-top: 80px;
}

details {
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 8px;
}

summary {
  position: relative;
  background: #62AFCD;
  color: #FFF;
  padding: 12px;
    text-align: center;
    font-size: 2.4rem;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
}

summary::after {
  position: absolute;
  content: "";
  background: url(../img/arrow_shop_list.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 16px;
  height: 9px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
}

details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
}

details > *:not(summary) {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
}

.shop_list {
  background: #fff;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

 /* details[open] > .shop_list {
  max-height: 2500px;
  opacity: 1;
} */

.shop_floor {
  background: #E6F0F4;
  font-size: 3.2rem;
  color: #62AFCD;
  text-align: center;
  padding: 5px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.shop_list_box {
  width: calc(100% / 3 - 20px);
  padding-bottom: 15px;
  border-bottom: 1px solid #62AFCD;
  margin-bottom: 30px;
  margin-right: 30px;
}

.shop_list_box:nth-of-type(3n) {
  margin-right: 0;
}

.shop_name {
  font-size: 1.8rem;
    color: #62AFCD;
    font-weight: bold;
    margin-bottom: 15px;
}

.shop_cat {
  font-size: 1.4rem;
    color: #888888;
}

@media screen and (min-width: 769px) and (max-width: 1100px) {

  .head_cont {
    padding: 35px;
  }

  .mv_sub_copy::before {
    display: none;
  }

  .mv_sub_copy::after {
    display: none;
  }

  .floor_image {
    width: 40%;
  }

  .floor_txt {
    width: 50%;
  }

  .map_image {
    width: 48%;
  }

  .map_data {
    width: 48%;
  }

  .map_data iframe {
    height: 310px !important;
  }

}

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

  .mv_wrap {
    padding-bottom: 0;
  }

  .mv_sub_copy::before {
    display: none;
  }

  .mv_sub_copy::after {
    display: none;
  }

  .mv_sub_copy {
    line-height: 1.7;
    font-size: 2.4rem;
  }

  .mv_sub_read {
    font-size: 1.8rem;
  }

  .map_data {
    width: 100%;
  }

  .shop_wrap {
    padding-top: 80px;
    padding-bottom: 50px;
  }

  .shop_wrap::after {
    background: url(../img/pt_footer_sp.svg);
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    height: 40px;
  }

  .floor_image {
    margin: auto;
    margin-bottom: 20px;
  }

  .floor_txt {
    max-width: 100%;
  }

  .floor_head p {
    font-size: 2rem;
  }

  .btnMore {
    width: 100%;
  }

  .floor_wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .kds_wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .kds_copy {
    text-align: left;
  }

  .kds_image {
    width: 100%;
    margin: auto;
    margin-bottom: 30px;
  }

  .kds_txt {
    width: 100%;
    margin: auto;
  }

  .access_wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .coution {
    text-align: left;
  }

  .banner_area {
    margin-bottom: 70px;
  }

  .access_tit {
    font-size: 3.6rem;
    margin-bottom: 40px;
  }

  .map_image {
    max-width: 100%;
    width: 100%;
    margin-bottom: 30px;
  }

  .map_data iframe {
    height: 322px !important;
  }

  .access_txt {
    font-size: 1.4rem;
    margin-top: 30px;
    line-height: 2;
  }

  .foot_logo {
    width: 53.3%;
  }

  .foot_wrap::after {
    background: url(../img/pt_footer_sp.svg);
    background-repeat: repeat-x;
    background-position: center;
    background-size: contain;
    height: 40px;
  }

  .shop_list_box {
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 15px;
  }

  /* details[open] > .shop_list {
  max-height: 6000px;
  } */

}