@charset "utf-8";
@font-face {
  font-family: "Source Han Sans JP";
  font-style: normal;
  font-weight: 400;
  src:
    local(""),
    url("../fonts/SourceHanSansJP-Regular.otf") format("truetype"),
    url("../fonts/SourceHanSansJP-Bold.otf") format("truetype"),
    url("../fonts/SourceHanSansJP-ExtraLight.otf") format("truetype"),
    url("../fonts/SourceHanSansJP-Heavy.otf") format("truetype"),
    url("../fonts/SourceHanSansJP-Light.otf") format("truetype"),
    url("../fonts/SourceHanSansJP-Medium.otf") format("truetype"),
    url("../fonts/SourceHanSansJP-Normal.otf") format("truetype");
}

body {
  height: 100%;
  font-size: 62.5%;
  /* ■1rem 10pxに設定 */
  font-family: "Source Han Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

p {
  font-family: "Source Han Sans JP";
  font-size: 20px;
  line-height: 1.2;
}

h1 {
  font-size: 64px;
}
h3 {
  font-size: 32px;
}

.border {
  border: solid 1px #8b0000;
}

/*---------------
　■■グローバルナビ
---------------*/
.navi-box {
  position: relative;
  font-weight: 600;
}

.navi {
  position: fixed;
  /* transform: translateX(-50%); */
  margin: 0 auto;
  background: #ffffff;
  width: 80%;
  max-width: 1346px;
  height: 40px;
}
.ys-logo {
  font-family: "Source Han Sans JP";
  font-size: 24px;
  font-weight: 600;
  margin-left: 46px;
}
/* .ys-logo a{
  color: inherit;
  text-decoration: none;
} */
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

.contact_header-bar {
  width: 326px;
  /* height: 68px; */
  height: 46px;
  background-color: #0052b1;
  border-radius: 40px;
  display: flex;
  justify-content: center; /* 横方向：中央寄せ */
  align-items: center; /* 縦方向：中央寄せ */
  margin-right: 7px;
  text-align: center;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.contact_header-bar a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contact_header-bar:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.contact_header-bar p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.contact_header-phone_num {
  font-size: 32px;
  font-weight: 400;
}
/*-----------------------------
　■■ヘッダー
-------------------------------*/
header {
  /* height: 80px; */
  height: 60px;
  width: 100%;
  position: fixed;
  /* background-color: #E7DFD0; */
  z-index: 1000;
}
.header-inner {
  max-width: 1346px;
  /* height: 80px; */
  height: 60px;
  margin: 20px auto 0 auto;
}
.fix_navi {
  /* height: 80px; */
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.navi_item {
  display: flex;
  font-family: "Source Han Sans JP";
}
.navi_item li {
  margin-left: 40px;
  font-weight: 600;
}

.header-nav-item-link {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #000000;
  font-size: 18px;
  /* text-shadow: 3px 3px 3px rgba(13, 94, 79, 0.1); */
}
.header-nav-item-link:hover {
  color: #9b7700;
}
.header-nav-item-link span {
  color: #000000;
  font-size: 13px;
  padding-bottom: 6px;
  /* text-shadow: 3px 3px 3px rgba(13, 94, 79, 0.1); */
}
.header-nav-item-link.is-active {
  color: #000000;
}
a {
  text-decoration: none;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .navi_item li:last-child {
    margin-right: 6.2rem;
  }
}
@media screen and (max-width: 960px) {
  header {
    background: none;
    display: none;
  }
}
/*-----------------------------
 ■■ハンバーガーメニュー
-------------------------------*/
.g-navLayer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  transition: opacity 0.65s;
  -webkit-transition: opacity 0.65s;
  -ms-transition: opacity 0.65s;
  -moz-transition: opacity 0.65s;
  pointer-events: none;
  opacity: 0;
  z-index: 998;
}

.g-navLayer.isShow {
  transition: opacity 0.65s;
  -webkit-transition: opacity 0.65s;
  -ms-transition: opacity 0.65s;
  -moz-transition: opacity 0.65s;
  pointer-events: auto;
  opacity: 1;
}

.g-navLayer-Mask {
  position: absolute;
  background: rgba(123, 123, 123, 0.5);
  width: 100%;
  height: 100vh;
}

#g-nav {
  /* font-family: 'Noto Serif JP'; */
  font-family: "Zen Old Mincho";
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: -50%;
  width: 50%;
  height: 100vh;
  /*ナビの高さ*/
  background: #e7d090;
  /*動き*/
  transition: all 0.6s;
  -webkit-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -moz-transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: -1%;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 50%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 372px;
  left: 50%;
  background: #fcfaf5;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  width: 388px;
  padding: 40px 0;
  border-bottom: 1px solid #8c0000;
  background: #fcfaf5;
}

#g-nav li:nth-of-type(1) {
  border-top: 0px;
  border-bottom: 0px;
  background: #e7d090;
  height: 90px;
  /* background-image: url(../img/download.png);
  background-repeat: no-repeat;
  background-size: contain; */
  width: 100%;
  top: 0;
}

#g-nav li:nth-of-type(2) {
  border-top: 1px solid #8c0000;
}

#g-nav li:nth-of-type(7) {
  background: #e7d090;
  border-bottom: 0px;
}

#g-nav li:hover {
  opacity: 0.6;
  transition: 0.3s;
}

#g-nav li:nth-of-type(1):hover {
  opacity: 1;
}

#g-nav li:nth-of-type(7):hover {
  opacity: 1;
}

.g-nav-list-item {
  position: relative;
}

.g-nav-list-link {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 600;
  line-height: 3.3;
  letter-spacing: 0.2px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

@media screen and (max-width: 960px) {
  /* スライドの幅 */
  #g-nav {
    width: 75%;
  }

  #g-nav.panelactive #g-nav-list {
    width: 75%;
  }

  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    left: 51%;
    scale: 0.9;
  }

  #g-nav {
    left: -75%;
  }
}

@media screen and (max-width: 768px) {
  /* スライドの幅 */
  #g-nav {
    width: 75%;
  }

  #g-nav.panelactive #g-nav-list {
    width: 75%;
  }

  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    left: 45%;
    scale: 0.8;
    top: 300px;
  }

  #g-nav {
    left: -75%;
  }
}

@media screen and (max-width: 576px) {
  #g-nav ul {
    left: 35%;
    scale: 0.7;
    top: 229px;
  }
}

@media screen and (max-width: 431px) {
  #g-nav ul {
    left: 25%;
    scale: 0.65;
    top: 202px;
  }
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 30px;
  left: 30px;
  cursor: pointer;
  width: 88px;
  height: 88px;
  /* fill: #E7D090; */
  stroke-width: 1px;
  /* stroke: #8C0000; */
  z-index: 1000;
  display: none;
}

/* .hummenu{
    position: absolute;
    top: 52px;
    left: 25px;
    width: 88px;
    height: 88px;
    
} */
.hum_menu {
  position: absolute;
  top: 0px;
  left: 0px;
  color: #fff;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 7px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 6px */
  scale: 0.8;
  z-index: 1000;
}

.hum_menu.remove {
  /* opacity: 0; */
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -moz-transition: all 0.4s;
  position: absolute;
  left: 19px;
  /* border-radius: 1.5px; */
  border-radius: 3.5px;
  /* background-color: #9B7700; */
  background: #000000;
  /* width: 22px;
    height: 5px; */
  width: 50px;
  height: 4px;
}

.openbtn1 span.opnbtn2 {
  /* width: 34px; */
  width: 80px;
}

.openbtn1 span:nth-of-type(1) {
  top: 25px;
  /* left: 25px; */
}

.openbtn1 span:nth-of-type(2) {
  /* top: 34px; */
  top: 42px;
}

.openbtn1 span:nth-of-type(3) {
  /* top: 43px; */
  /* left: 25px; */
  top: 59px;
  /* left: 25px; */
}

.openbtn1.active span:nth-of-type(1) {
  top: 34px;
  left: 17px;
  transform: translateY(6px) rotate(-45deg);
  -webkit-transform: translateY(6px) rotate(-45deg);
  -ms-transform: translateY(6px) rotate(-45deg);
  -moz-transform: translateY(6px) rotate(-45deg);
  width: 60%;
}

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

.openbtn1.active span:nth-of-type(3) {
  top: 45px;
  left: 17px;
  transform: translateY(-6px) rotate(45deg);
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  -moz-transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

@media screen and (max-width: 768px) {
  .hum_menu {
    scale: 0.5;
  }
}

@media screen and (max-width: 576px) {
  /* .hum_menu {
    scale: 0.3;
} */
}

.title_navlogo {
  /* position: relative;
    top: 30px;
    left: calc(40.2% - 118px);
    width: 388px;
    height: 110px;
    background: #000;*/
}

.hum_sns {
  position: relative;
  top: -40px;
  left: 0%;
  width: 388px;
  height: 50px;
  /* background: #000; */
  display: flex;
}

.sns1 {
  position: absolute;
  top: 20px;
  left: 30%;
  height: 100%;
}

.sns1 img {
  width: 60px;
}

/* .sns1 img:hover {
    opacity: 0.6;
    transition: 0.3s;
} */
.sns2 {
  position: absolute;
  top: 20px;
  right: 45%;
  height: 100%;
}

.sns2 img {
  width: 60px;
}

/* .sns2 img:hover {
    opacity: 0.6;
    transition: 0.3s;
} */

/* ■ハンバーガーメニューPC時 */
@media screen and (min-width: 1367px) {
  .openbtn1 {
    display: none;
  }
  .header-inner {
    display: block;
  }
}
@media screen and (max-width: 1366px) {
  .openbtn1 {
    display: block;
  }
  .header-inner {
    display: none;
  }
}

/*---------------
　■■ヘッド
---------------*/
.main-head-box {
  background: #674E9D;
  width: 100%;
  height: 148px;

  display: flex;
  justify-content: center; /* 横方向：中央寄せ */
  align-items: flex-end; /* 縦方向：下寄せ */
  padding-bottom: 24px; /* 下から少し離す */
}
.main-head-box p {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
.common {
  width: 80%;
  max-width: 1213px;
  margin: 0 auto;
}
.sup {
  line-height: 2;
  margin-top: 40px;
}

.content-inner p {
  margin-left: 40px;
  margin-right: 40px;
  line-height: 1.5;
}
/*---------------
　■■タイトル
---------------*/
.title {
  text-align: center;
  height: 419px;
  display: flex;
  justify-content: center; /* 横方向：中央寄せ */
  align-items: center; /* 縦方向：中央寄せ */
}
.title-text {
  /* margin: 160px auto 120px auto; */
}
/*---------------
　■■コンテンツ
---------------*/
.content-box {
  /* background: #dee6e9; */
  background: #FEEBC7;
  width: 100%;
  /* margin-top: 80px; */
  padding-bottom: 80px;
}

.content-inner {
  background: #ffffff;
  width: 100%;
  max-width: 1213px;
  margin: 0 auto;
  padding: 40px 0;
  border-radius: 10px;
}
.title-box {
  /* background: #dee6e9; */
  background: #FEEBC7;
  width: 100%;
  padding-top: 80px;
}

.studio-box {
  background: #ffffff;
  width: 100%;
  max-width: 1030px;
  margin: 40px auto;
}

.flex-box {
  display: flex;
}

.details {
  width: 100%;
  max-width: 570px;
  margin: 24px 60px 24px 0;
}
.details img {
  width: 100%;
}
.opening-pickup {
  width: 100%;
  max-width: 570px;
  height: 53.92px;
  background: #da0000;
}
.plan {
  width: 100%;
  max-width: 570px;
  height: 53.92px;
  background: #e3dede;
}
.image {
  width: 40%;
  max-width: 390px;
  height: 360px;
  border: solid 1px #8b0000;
  margin: 24px 0;
  text-align: center;
}
.image img {
  /* max-width: 100%; */
  height: 342.82px;
  padding: 10px;
}
.dl-box {
  width: 390px;
  background-color: #88458D;
  position: relative;
  /* border: solid 1px #ac2a2a; */
}
.dl-box:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.dl-box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.dl-box p {
  margin-top: 10px;
  padding: 10px;
  font-size: 14px;
  color: #ffffff;
}

.title-box h2 {
  text-align: center;
  font-size: 32px;
  margin-top: 80px;
  margin-bottom: 40px;
}

.access-box {
  background: #C9B8A1;
  width: 100%;
}
.access-details {
  display: flex;
  padding: auto 80px;

  justify-content: center; /* 横方向：中央寄せ */
  height: 570px;
  padding-top: 100px;
}
.access-img-box {
  width: 40%;
  text-align: center;
}
.studio_name {
  width: 100%;
}
@media screen and (max-width: 1366px) {
  .flex-box {
    display: block;
  }
  .content-inner {
    width: 90%;
  }
  h3 {
    display: inline-block;

    width: 80%;
    margin-left: 1%;
    margin-bottom: 20px;
  }
  .studio_name {
    width: 90%;
    max-width: 570px;
    margin: 0 auto;
  }
  .details {
    width: 90%;
    margin: 0 auto;
  }
  .image {
    width: 80%;
    margin: 40px auto;
  }
  .dl-box {
    width: 100%;
  }
  .access-details {
    display: block;
  }
  .access-img-box {
    width: 100%;
  }
  .access-details {
    height: inherit;
  }
  .access-address-box {
    width: 80%;
    margin: 80px auto;
  }
}

.access-img-box img {
  height: 430px;
  padding: 10px;
}
.access-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 60px;
}
.access-studio_name {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 20px;
}
.contact-box {
  background: #C9B8A1;
  width: 100%;
  height: 260px;

  display: flex;
  justify-content: center; /* 横方向：中央寄せ */
  align-items: center; /* 縦方向：中央寄せ */
}

.contact_bar {
  width: 358px;
  height: 38px;
  background-color: #0052b1;
  border-radius: 40px;
  display: flex;
  justify-content: center; /* 横方向：中央寄せ */
  align-items: center; /* 縦方向：中央寄せ */
  margin: 0 auto;
}
.contact_bar p {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.icon-box {
  margin-top: 24px;
  display: flex;
  justify-content: center; /* 横方向：中央寄せ */
  align-items: center; /* 縦方向：中央寄せ */
}
.mail_icon {
  width: 46px;
  position: relative;
}
.x_icon {
  width: 46px;
  position: relative;
  margin: 0 24px;
}
.line_icon {
  width: 46px;
  position: relative;
}
.line_icon img,
.x_icon img,
.mail_icon img {
  width: 100%;
}
.line_icon:hover,
.x_icon:hover,
.mail_icon:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.line_icon a,
.x_icon a,
.mail_icon a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact_phone {
  font-size: 32px;
}
.tel {
  margin-top: 24px;
  text-align: center;
}
/*---------------
　■■フッター
---------------*/
footer {
  background: #674E9D;
  width: 100%;
  height: 60px;

  display: flex;
  justify-content: center; /* 横方向：中央寄せ */
  align-items: center; /* 縦方向：中央寄せ */
}
footer p {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  p {
    font-family: "Source Han Sans JP";
    font-size: 16px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) {
  p {
    font-family: "Source Han Sans JP";
    font-size: 16px;
    line-height: 1.2;
  }
  .content-inner p {
    margin-left: 5%;
    margin-right: 5%;
    line-height: 1.5;
  }

  .title-box h2 {
    font-size: 24px;
    margin-top: 80px;
    margin-bottom: 40px;
  }
  h1 {
    font-size: 48px;
  }
  h3 {
    font-size: 24px;
  }
  .main-head-box p {
    font-size: 18px;
  }
  .access-title {
    font-size: 24px;
  }
  .access-studio_name {
    font-size: 24px;
  }
  .image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
