@charset "UTF-8";
/*----------------------------------------
public/css/style.cssに出力
----------------------------------------*/
/*----------------------------------------
base-style/index
共通デザインスタイル
----------------------------------------*/
/*https://coliss.com/articles/build-websites/operation/css/a-more-modern-css-reset.html*/
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* デフォルトのマージンを削除、作成するCSSの制御を改善するため */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin: 0;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* bodyのデフォルトを設定 */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* classを持たないa要素はデフォルトのスタイルを継承 */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
}

/* inputやbuttonなどのfontは継承 */
input, button,
textarea, select {
  font: inherit;
}

/* rows属性のないtextareasが小さくならないようにする */
textarea:not([rows]) {
  min-height: 10em;
}

/* アンカーされている要素には余分なスクロールマージンが必要 */
:target {
  scroll-margin-block: 5ex;
}

/*----------------------------------------
ブレークポイント
----------------------------------------*/
/*----------------------------------------
文字サイズ
----------------------------------------*/
/*----------------------------------------
変数設定
----------------------------------------*/
/*----------------------------------------
フォント設定
----------------------------------------*/
/*----------------------------------------
カラー設定
----------------------------------------*/
/*各種assetのベースデザイン*/
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li {
  margin: 0;
  padding: 1em;
}

/*----------------------------------------
layout/index
共通デザインスタイル
----------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "m-plus-rounded-2p", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(0.6rem, 0.6rem + 2.22vw, 2.6rem);
}

#background {
  position: fixed;
  background-image: url(../img/bg3.png);
  background-size: cover;
  width: 100%;
  height: 100vh;
  opacity: 0.1;
  z-index: -1;
}

.header,
.footer,
.main {
  padding: 0;
  margin: 0 auto;
  box-shadow: 0px 0px 5px 0px rgb(168, 168, 168);
}
.header .logo,
.footer .logo,
.main .logo {
  width: 70%;
  aspect-ratio: 568/98;
  background-image: url(../img/logo_land.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.main {
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .main {
    max-width: 680px;
  }
}

section.contents {
  padding: 2em 0 12em 0;
}
section.contents h1 {
  width: 100%;
  aspect-ratio: 751/299;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: transparent;
  text-transform: uppercase;
  user-select: none;
}
section.contents h2 {
  margin: 0 auto 1.5em auto;
  width: 60%;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: transparent;
  text-transform: uppercase;
  user-select: none;
}
section.contents .text {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
section.contents .img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
section.contents .card_block {
  margin: 1em auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
  width: 90%;
}
section.contents .card {
  width: 100%;
  overflow: hidden;
  border-radius: 1.5em;
}
section.contents .card .img {
  width: 100%;
  aspect-ratio: 16/9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section.contents .card .cardtext {
  position: relative;
  width: 100%;
  text-align: center;
}
section.contents .card .cardtext .number {
  position: absolute;
  top: -1.3em;
  left: 0;
  right: 0;
  margin: auto;
  width: 50%;
  aspect-ratio: 189/53;
  color: transparent;
  user-select: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section.contents .card .cardtext h3 {
  color: white;
  padding-top: 1.5em;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
section.contents .card .cardtext p {
  padding: 1em 0 2em 0;
  color: white;
  letter-spacing: 0.2em;
}

section.contents.menu {
  padding: 0;
  margin-top: 70px;
}

/*----------------------------------------
styles/index
----------------------------------------*/
/*----------------------------------------
public/css/style.cssに出力
----------------------------------------*/
/*ヘッダースタイル*/
.header {
  background-color: rgba(255, 255, 255, 0.9);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 3em 3em -1em #fff, inset 0 -11em 2em -1em #fff; /* 下側の白いシャドウ */
}
.header .hero {
  overflow: hidden;
  width: 100%;
  padding-bottom: 3em;
  background-color: transparent;
  background-image: url(../img/head_bg2.png);
  background-position: bottom;
  position: relative;
  z-index: 9999;
}
.header .hero .logo {
  margin: 3em auto;
}
.header .hero ul.nav {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 1.5em 0;
}
@media screen and (min-width: 768px) {
  .header .hero ul.nav {
    padding: 0 2em;
  }
}
.header .hero ul.nav li {
  font-size: 20px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.1em;
  padding: 0;
  color: white;
  text-transform: uppercase;
  width: 33.3333333333%;
  text-align: center;
}
.header .hero ul.nav li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  padding: 1em 0;
}
.header .hero ul.nav li ruby {
  ruby-position: under;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.header .hero ul.nav li ruby rt {
  text-align: center;
}
.header .hero ul.nav li:not(:nth-child(3n)) {
  border-right: 0.5px solid #ffffff;
}
.header .hero.top {
  padding: 0;
}
.header .hero.top .logo {
  margin: 1em auto;
  max-width: 600px;
}
.header.top {
  width: 100vw;
  position: absolute;
  left: 0;
  background-color: unset;
  box-shadow: unset;
}
.header.top .hero {
  background-size: auto;
}

.hero_img {
  width: 100%;
  aspect-ratio: 752/1469;
  background-image: url(../img/hero_img_pc.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: -1em;
  box-shadow: inset 0 1.5em 1.5em -1em #fff, inset 0 -1em 1em -1em #fff; /* 下側の白いシャドウ */
}

.hero_img_top {
  width: 100%;
  aspect-ratio: 752/1469;
  background-image: url(../img/hero_img_top.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: -1em;
  box-shadow: inset 0 1.5em 1.5em -1em #fff, inset 0 -1em 1em -1em #fff; /* 下側の白いシャドウ */
  margin-top: 50px;
}

@media screen and (max-width: 680px) {
  .hero_img {
    aspect-ratio: 752/1474;
    background-image: url(../img/hero_img_sp.png);
  }
}
@media screen and (min-width: 680px) {
  .header {
    width: 100vw;
    height: 70px;
    position: absolute;
    left: 0;
    background-color: unset;
    box-shadow: unset;
    background-color: transparent;
    background-image: url(../img/head_bg2.png);
    background-position: bottom;
    background-size: auto;
  }
  .header .hero {
    display: flex;
    max-width: 680px;
    margin: auto;
    padding-bottom: 1rem;
    background-color: unset;
    background-image: unset;
    background-position: unset;
  }
  .header .hero .logo {
    width: 30%;
    margin: auto;
  }
  .header .hero .nav {
    flex-wrap: nowrap !important;
    width: 70% !important;
    margin: auto !important;
    padding: 0 !important;
  }
  .header .hero .nav li {
    font-size: 16px !important;
  }
  .hero_img {
    margin-top: 40px;
  }
}
/*----------------------------------------
public/css/style.cssに出力
----------------------------------------*/
/*アバウトセクション*/
section.contents.about {
  background-color: rgba(255, 255, 255, 0.9);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 3em 3em -1em #fff, inset 0 -11em 2em -1em #fff; /* 下側の白いシャドウ */
}
section.contents.about h1 {
  margin-top: -1.5em;
  background-image: url(../img/h_about.png);
}
section.contents.about .img {
  width: 100%;
  aspect-ratio: 1;
  background-image: url(../img/about_photo.png);
}
section.contents.about h2 {
  background-image: url(../img/h_howto.png);
}
section.contents.about .text {
  margin: 3rem auto;
}
section.contents.about .card .img {
  aspect-ratio: 16/9;
}
section.contents.about .card:nth-child(1) .img {
  background-image: url(../img/enjoy_1.png);
}
section.contents.about .card:nth-child(1) .cardtext {
  background-color: rgba(235, 30, 121, 0.6);
}
section.contents.about .card:nth-child(1) .cardtext .number {
  background-image: url(../img/number_1.png);
}
section.contents.about .card:nth-child(2) .img {
  background-image: url(../img/enjoy_2.png);
}
section.contents.about .card:nth-child(2) .cardtext {
  background-color: rgba(0, 14, 243, 0.6);
}
section.contents.about .card:nth-child(2) .cardtext .number {
  background-image: url(../img/number_2.png);
}
section.contents.about .card:nth-child(3) .img {
  background-image: url(../img/enjoy_3.png);
}
section.contents.about .card:nth-child(3) .cardtext {
  background-color: rgba(110, 199, 214, 0.6);
}
section.contents.about .card:nth-child(3) .cardtext .number {
  background-image: url(../img/number_3.png);
}
section.contents.about.top {
  padding: 0;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 60%);
  box-shadow: none;
}
section.contents.about.top h1 {
  background-image: url(../img/h_about_top.png);
  aspect-ratio: unset;
}

/*----------------------------------------
public/css/style.cssに出力
----------------------------------------*/
/*キャストセクション*/
section.contents.cast {
  display: none;
  margin-top: -10em;
  background: linear-gradient(0deg, rgb(230, 160, 189) 0%, rgb(230, 160, 189) 70%, rgba(230, 160, 189, 0.7) 77%, rgba(230, 160, 189, 0) 85%);
}
section.contents.cast h1 {
  background-image: url(../img/h_cast.png);
}
section.contents.cast .castbox {
  background-color: #c9c9c9;
  width: 80%;
  height: 400px;
  margin: 0 auto;
  border-radius: 1.5em;
  overflow: hidden;
}

/*----------------------------------------
public/css/style.cssに出力
----------------------------------------*/
/*システムセクション*/
section.contents.system {
  background-color: rgba(255, 255, 255, 0.9);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 3em 3em -1em #fff, inset 0 -11em 2em -1em #fff; /* 下側の白いシャドウ */
  margin-top: -7em;
}
section.contents.system h1 {
  background-image: url(../img/h_system.png);
  margin: -2.5em auto 1em auto;
}
section.contents.system .systembox {
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
}

/*----------------------------------------
public/css/style.cssに出力
----------------------------------------*/
/*アクセスセクション*/
section.contents.access {
  margin-top: -10em;
  background: linear-gradient(0deg, rgb(239, 112, 122) 0%, rgb(239, 112, 122) 77%, rgba(239, 112, 122, 0.6) 88%, rgba(239, 112, 122, 0) 93%);
  color: #fff;
}
section.contents.access h1 {
  background-image: url(../img/h_access.png);
}
section.contents.access .map {
  background-color: #cfcfcf;
  width: 90%;
  aspect-ratio: 4/5;
  margin: 1em auto;
  border-radius: 1.5em;
  overflow: hidden;
  margin-bottom: 2em;
}
section.contents.access .time {
  background-color: #fff;
  color: #EF707A;
  text-align: center;
  padding: 0.5em 1em 0.2em 1em;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 2em;
}
section.contents.access .address {
  text-align: center;
  margin: 2em auto 1em auto;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 2em;
}
section.contents.access .tel {
  text-align: center;
  margin: 1em auto;
  padding: 0.5em 1em;
  letter-spacing: 0.1em;
  background-color: #fff;
  color: #EF707A;
  width: fit-content;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
  font-style: normal;
}

/*----------------------------------------
public/css/style.cssに出力
----------------------------------------*/
/*キャストセクション*/
section.contents.sns {
  margin-top: -14em;
  padding: 2em 0 0em 0;
}
section.contents.sns h1 {
  background-image: url(../img/h_sns.png);
  aspect-ratio: 749/439;
}
section.contents.sns .snsbox {
  background: linear-gradient(180deg, rgb(110, 197, 212) 0%, rgb(242, 207, 86) 46%, rgba(242, 207, 86, 0) 100%);
  width: 100%;
  padding: 3em 0;
}
section.contents.sns h2 {
  width: 80%;
  height: 100px;
}
section.contents.sns .twitter, section.contents.sns .Instagram {
  width: 90%;
  max-width: 550px;
  margin: 3em auto;
}
section.contents.sns .twitter {
  aspect-ratio: 450/600;
}
section.contents.sns h2.h_twitter {
  background-image: url(../img/h_x.png);
}
section.contents.sns h2.h_insta {
  background-image: url(../img/h_insta.png);
}
section.contents.sns h2.h_insta, section.contents.sns .Instagram {
  display: none;
}
section.contents.sns .recruit a {
  text-decoration: none;
}
section.contents.sns .recruit h1 {
  width: 90%;
}
section.contents.sns .recruit h1.recruit_1 {
  background-image: url(../img/recruit.png);
  aspect-ratio: 718/390;
}
section.contents.sns .recruit h1.recruit_2 {
  background-image: url(../img/fukuri.png);
  aspect-ratio: 718/535;
}

/*----------------------------------------
public/css/style.cssに出力
----------------------------------------*/
/*キャストセクション*/
section.contents.recruit {
  padding: 0;
}
section.contents.recruit .recruitbox {
  width: 100%;
  padding: 3em 0;
}
section.contents.recruit h2 {
  width: 80%;
  height: 100px;
}
section.contents.recruit .recruit a {
  text-decoration: none;
}
section.contents.recruit .recruit h1 {
  width: 90%;
}
section.contents.recruit .recruit h1.recruit_1 {
  background-image: url(../img/recruit.png);
  aspect-ratio: 718/390;
}
section.contents.recruit .recruit h1.recruit_2 {
  background-image: url(../img/fukuri.png);
  aspect-ratio: 718/535;
}

/*----------------------------------------
public/css/style.cssに出力
----------------------------------------*/
/*キャストセクション*/
section.contents.fc {
  display: none;
}
section.contents.fc h1 {
  background-image: url(../img/h_fc.png);
}
section.contents.fc ul.fc_banner_list {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
section.contents.fc ul.fc_banner_list li {
  width: 100%;
}
section.contents.fc.top {
  display: unset;
}
section.contents.fc.top ul.fc_banner_list {
  width: 100%;
  margin-bottom: 1em;
}


section.contents.sister_store h1 {
    background-image: url(../img/sister_store.png);
}

section.contents.main_store h1 {
    background-image: url(../img/main_store.png);
}


section.contents.sister_store ul.fc_banner_list {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  section.contents.sister_store ul.fc_banner_list li {
    width: 100%;
  }
  section.contents.fc.top {
    display: unset;
  }
  section.contents.fc.top ul.fc_banner_list {
    width: 100%;
  }

  
  section.contents.fc ul.fc_banner_list {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  section.contents.fc ul.fc_banner_list li {
    width: 100%;
  }
  section.contents.fc.top {
    display: unset;
  }
  section.contents.fc.top ul.fc_banner_list {
    width: 100%;
  }
  

/*----------------------------------------
public/css/style.cssに出力
----------------------------------------*/
/*フッタースタイル*/
.footer {
  background: linear-gradient(166deg, rgba(239, 172, 202, 0.7) 0%, rgba(245, 0, 138, 0.7) 100%);
  color: white;
  text-align: center;
  padding: 0.5rem 0;
}
.footer .logo {
  width: 50%;
  margin: 1em auto;
}
.footer .copyright {
  font-size: 0.8em;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 800;
  font-style: normal;
  color: white;
}
.footer.top {
  width: 100vw;
  position: absolute;
  left: 0;
}
.footer.top .logo {
  max-width: 350px;
}

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