@charset "utf-8";

/*--------------------------------------------------------------*/
/* ------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ
　　320：スマートフォン縦：基本・レイアウト指定 */
/* ------------------------------------------------------------ */
* html body {
  background: url(null) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
/*ナビ表示のときはスクロールしないように*/
html.is-locked {
  overflow-y: hidden;
}
body {
  margin: 0;
  padding: 0;
  /* background: var(--bg-main-color);
  color: var(--primary-color); */
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  font-family:
    "M PLUS 1p",
    YuGothic,
    "Yu Gothic Medium",
    "Yu Gothic",
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue,
    Verdana,
    Meiryo,
    sans-serif !important;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  @media screen and (max-width: 768px) {
    font-size: 1.4rem;
  }
}
#header {
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
h2 {
  width: 493px;
  margin: 0 auto 1em;
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}
h3 {
  width: 310px;
  margin: 0 auto 1em;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 768px) {
    width: 60%;
  }
}
.sub_txt {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1.5em;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 768px) {
    font-size: 1.6rem;
  }
}
p {
  margin: 0;
}
.color-beige {
  color: #F9E6D1;
}

img {
  border-style: none;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}
img,
video {
  max-width: 100%;
  height: auto;
  /* margin: 0 auto; */
}
figure {
  width: 100%;
  position: relative;
  .img-note {
    font-size: 10px;
    color: #fff;
    position: absolute;
    left: 23px;
    bottom: 3px;
  }
}

ol {
  padding-inline-start: 0 !important;
}

dl {
  margin: 0;
}
.caption {
  font-size: 1.4rem;
  color: #000;
  @media screen and (max-width: 768px) {
    text-align: center;
  }
}
.container {
  width: 100%;
  background: #fff;
}
a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none !important;
}

ul {
  padding: 0;
}
li {
  list-style: none;
}
.illust {
  img {
    width: 100%;
  }
}

.pc {
  display: none;
}

.tab_pc {
  display: none;
}

@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}


/* ------------------------------------------------------------ */
/* common layouts */
.wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.content {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0 auto;
}
.base {
  position: relative;
  padding: 90px 0 100px;
  background-image: url(../img/bg-line.png);
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 20px;
  @media screen and (max-width: 768px) {
    padding: 70px 0 50px;
  }
}

.content_inner {
  width: 960px;
  margin: 0 auto;
  position: relative;
  @media screen and (max-width: 960px) {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}

.txt {
  .linemarker {
    position: relative;
    z-index: 2;
    &:before {
      content: '';
      display: block;
      width: 100%;
      height: 4px;
      background-color: #FDCC14;
      position: absolute;
      left: 0;
      bottom: 0;
    }
  }
}

/* ==============================================================
 flx_box
================================================================= */
.flx_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  z-index: 2;
  .flx_item {
    display: flex;
    background-color: #F9E6D1;
    border: solid 7px #000;
    border-radius: 10px;
    .flow_box {
      display: flex;
      flex-direction: column;
      flex: 1; 
      figure {
        margin: 0;
        padding: 15px 15px 0;
      } 
      .txt {
        margin: auto 0;
        padding: 1em;
      }
    }
  }
  .flx_item-2 {
    width: 48.5%;
    @media screen and (max-width: 768px) {
      width: 100%;
    }
    &:nth-child(n+2) {
       @media screen and (max-width: 768px) {
        margin-top: 20px;
       }
    }
  }
  .flx_item-3 {
    width: 31%;
    @media screen and (max-width: 768px) {
      width: 100%;
    }
    &:nth-child(n+2) {
       @media screen and (max-width: 768px) {
        margin-top: 10px;
       }
    }
  }
  .flx_item-4 {
    width: 24%;
    @media screen and (max-width: 768px) {
      width: 49%;
    }
    &:nth-child(n+3) {
      @media screen and (max-width: 768px) {
        margin-top: 5px;
      }
    }
  }
  .flx_item-normal {
    border: none;
    background-color: unset;
  }
  /*stepBox*/
  .stepBox {
    @media screen and (max-width: 768px) {
        flex-direction: initial!important;
    }
    figure {
      @media screen and (max-width: 768px) {
        width: 45%;
        padding: 5px!important;
      }
    }
    .txt {
      @media screen and (max-width: 768px) {
        text-align: left;
      }
    }
  }
  /*gameBox*/
  .gameBox {
    /* border-left: solid 3px #000;
    border-right: solid 3px #000;
    border-bottom: solid 3px #000;
    border-radius: 0 0 5px 5px;
    margin: 0 7px 15px 7px; */
    border-left: solid 3px #000;
    border-right: solid 3px #000;
    border-bottom: solid 3px #000;
    border-top: solid 3px #000;
    border-radius: 5px 5px 5px 5px;
    margin: 10px;
    .gameBox_name {
      font-size: 2.2rem;
      font-weight: bold;
      margin-top: 1em;
    }
    .gameBox_txt {
      font-size: 1.4rem;
    }
    .gameBox_price {
      font-size: 3rem;
      color: #CC3F45;
      font-weight: bold;
      &:before {
        content: '1回';
        font-size: 2rem;
        margin-right: .5em;
      }
      &:after {
        content: '円';
        font-size: 1.8rem;
      }
    }
  }
}
/*子要素１つパターン*/
.flx_box-only {
  justify-content: center;
}

/* ==============================================================
 jagashiyaHeader
================================================================= */
.jagashiyaHeader {
    width: 100%;
    background-color: #791717;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
}

/* 内側レイアウト */
.jgs-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.jgs-logo img {
    height: 40px;
}

/* ハンバーガー */
.jgs-hamburger {
    width: 28px;
    cursor: pointer;
    position: relative;
    z-index: 999;
}
.jgs-hamburger span {
    display: block;
    height: 3px;
    background-color: #F9E6D1;
    margin: 6px 0;
    transition: 0.3s;
}

/* --- 開いた時の × 変形 --- */
.jgs-hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.jgs-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.jgs-hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* メニュー */
/* メニューを右上に固定してハンバーガーの上にかぶせる */
.jgs-menu {
    display: none;
    background-color: #CC3F45;
    padding: 65px 15px 30px;
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    overflow: hidden;
    transition: 0.3s;
    z-index: 998;
}

.jgs-menu.open {
    display: block;
    width: 390px; /* 右側にスライド表示 */
    text-align: center;
    @media screen and (max-width: 390px) {
      width: 100%;
    }
}


.jgs-menu-list {
  li {
    margin-bottom: 30px;
  }
}
.jgs-menu-list a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

/* SNS */
.jgs-sns-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.jgs-sns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85px;
    height: 85px;
    color: #CC3F45;
    background-color: #F9E6D1;
    border-radius: 50%;
}

/* ==============================================================
 mainvisual
================================================================= */
.mainvisual {
  background-image: url(../img/mv_pc.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 130px 0;
  margin-top: 60px;
  text-align: center;
  position: relative;
  @media screen and (max-width: 568px) {
    background-image: none;
    padding: 0;
  }
  h1 {
    width: 857px;
    margin: 0 auto;
    @media screen and (max-width: 857px) {
      width: 90%;
    }
    @media screen and (max-width: 568px) {
      width: 100%;
    }
    img {
      width: 100%;
    }
  }
}

/* ==============================================================
 about
================================================================= */
.about {
  background-color: #F9E6D1;
  position: relative;
  @media screen and (max-width: 768px) {
      padding: 50px 0;
  }
  .about_txtBox {
    width: 51%;
    line-height: 2;
    @media screen and (max-width: 768px) {
      width: 100%;
      text-align: center;
    }
  }
  .about_ill {
    width: 682px;
    position: absolute;
    left: 48%;
    bottom: 0;
    @media screen and (max-width: 768px) {
      width: 100%;
      left: 0;
      right: 0;
      margin: 0 auto;
      opacity: .2;
    }
  }
}


/* ==============================================================
 tsumeru
================================================================= */
.instaBanner {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  background: linear-gradient(107deg, #5F4DD4 0%, #FF307E 50%, #FFDB5F 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3;  
  transition: 0.2s;
  &:hover {
    opacity: .7;
  }
  @media screen and (max-width: 768px) {
    max-width: 100%;
    border-radius: 0;
    position: static;
  }
  a {
    display: block;
  }
  .instaBanner_inner {
    border: solid 1px #fff;
    border-radius: 10px;
    padding: 25px 20px;
    @media screen and (max-width: 768px) {
      border: none;
       padding: 20px;
    }
    .instaBanner_text {
      font-size: 1.6rem;
      color: #fff;
      margin-bottom: 20px;
    }
    .instaBanner_logo {
      img {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
      }
    }
    .instaBanner_btn {
      display: inline-block;
      background-color: #fff;
      color: #FF407E;
      font-weight: bold;
      text-decoration: none;
      padding: .5em 2em;
      border-radius: 50px;
      @media screen and (max-width: 768px) {
        background-color: unset;
        color: #fff;
        border: solid 1px #fff;
      }
    }
  }
}



/* ==============================================================
 tsumeru
================================================================= */
.tsumeru {
  background-color: #CC3F45;
  text-align: center;
  .pack {
    margin-top: 3em;
    .pack_bag {
      width: 54%;
      margin: 20px auto 0;
      @media screen and (max-width: 768px) {
        width: 100%;
      }
    }
  }
  .tsumeru_ill {
    width: 470px;
    position: absolute;
    left: 0;
    top: 0;
    @media screen and (max-width: 768px) {
      width: 30%;
    }
  }
}

/* ==============================================================
 ateru
================================================================= */
.ateru {
  text-align: center;
  background-color: #FDCC14;
  .ateru_ill {
    width: 395px;
    position: absolute;
    right: 0;
    top: 0;
    @media screen and (max-width: 768px) {
      width: 35%;
    }
  }
}

/* ==============================================================
 asobu
================================================================= */
.asobu {
  text-align: center;
  background-color: #2E9A8E;
  .asobu_ill {
    width: 440px;
    position: absolute;
    left: 0;
    top: 0;
    @media screen and (max-width: 960px) {
      width: 33%;
    }
  }
}

/* ==============================================================
 shop
================================================================= */
.shop {
  text-align: center;
  background-color: #CC3F45;
  .shopBox {
    color: #F9E5D0;
    text-align: left;
    figure {
      padding: 0!important;
    }
    .shopBox_name {
      font-size: 2.2rem;
      font-weight: bold;
      margin: 1em 0 .5em;
    }
    .shopBox_txt {
      font-size: 1.4rem;
    }
    .shopBox_tel {
      width: 80%;
      font-size: 2.6rem;
      text-align: center;
      line-height: 1;
      letter-spacing: .2em;
      font-family: "Oswald", sans-serif;
      background-color: #F9E5D0;
      padding: .5em 1em;
      margin: .5em 0;
      border-radius: 2em;
      @media screen and (max-width: 960px) {
        width: 100%;
        font-size: 2.4rem;
      }
      a {
        color: #CC3F45;
        span {
          display: flex;
          align-items: center;
          justify-content: center;
          &:before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 1em;
            background-image: url(../img/shop_icon-tel.svg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            margin-right: .3em;
          }
        }
      }
    }
  }
}

/* ==============================================================
footer
================================================================= */
.jgs-footer {
    background-color: #791717;
    text-align: center;
    color: #F9E6D1;
}
.jgs-footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
}
.jgs-footer-icon {
    width: 40px;
    img {
      object-fit: contain;
  }
}
.jgs-footer-copy {
    font-size: 1.4rem;
    border-top: solid 1px #F9E6D1;
    padding: 1em 0;
}
