@charset "UTF-8";
/* ==========================================================
  カラー変数
========================================================== */
/* ==========================================================
  フォント
========================================================== */
/* ==========================================================
  FONT SIZES (rem)
========================================================== */
/* ===================================================================
CSS information
 file name  :shared.scss
 style info :共通のスタイル
=================================================================== */
/* ==========================================================
  BASE
========================================================== */
@media screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}
@media screen and (min-width: 1921px) {
  html {
    font-size: 0.9vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 3.4vw;
  }
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 1rem;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #fff;
  background: #fff;
  line-height: 1.6;
  text-align: center;
}
body:focus {
  outline: none;
}
body #wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

/* ==========================================================
  LINK
========================================================== */
a, a:visited, a:hover {
  text-decoration: none;
}

/* ==========================================================
  HEADER
========================================================== */
header {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
@media screen and (min-width: 768px) {
  header .inner {
    height: 3rem;
  }
}
@media screen and (max-width: 767px) {
  header .inner {
    height: 10vw;
  }
}
header .inner .lBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
header .inner .lBox .logo {
  background: #262626;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
}
@media screen and (min-width: 768px) {
  header .inner .lBox .logo {
    left: -3rem;
    padding-left: 4rem;
    width: 18rem;
  }
}
@media screen and (max-width: 767px) {
  header .inner .lBox .logo {
    left: -6vw;
    padding-left: 8vw;
    width: 40vw;
  }
}
header .inner .lBox .logo a img {
  vertical-align: baseline;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
}
@media screen and (min-width: 768px) {
  header .inner .lBox .logo a img {
    width: 12rem;
  }
}
@media screen and (max-width: 767px) {
  header .inner .lBox .logo a img {
    width: 28vw;
  }
}
header .inner .lBox .title {
  color: #262626;
  font-size: 0.875rem;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  left: -1rem;
}
header .inner .btnMenu {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  header .inner .btnMenu {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  header .inner .btnMenu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9998;
    width: 6rem;
  }
}
@media screen and (min-width: 768px) {
  header .inner .rBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media screen and (max-width: 1200px) {
  header .inner .rBox {
    display: block;
    border-radius: 0;
    background: #fff;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    right: -100%;
    z-index: 9999;
    padding: 4rem 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  header .inner .rBox.opens {
    width: 16rem !important;
  }
}
@media screen and (max-width: 1200px) {
  header .inner .rBox.opens {
    right: 0;
    width: 50%;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
header .inner .rBox .btnClose {
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  header .inner .rBox .btnClose {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  header .inner .rBox .btnClose {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
  }
}
header .inner .rBox ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1200px) {
  header .inner .rBox ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
header .inner .rBox ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  header .inner .rBox ul li {
    -webkit-transform: skewX(-45deg);
            transform: skewX(-45deg);
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  header .inner .rBox ul li {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
    width: 100%;
  }
}
header .inner .rBox ul li a {
  color: #262626;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  header .inner .rBox ul li a {
    display: block;
    width: 100%;
  }
}
header .inner .rBox ul li a div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #262626;
}
@media screen and (min-width: 768px) {
  header .inner .rBox ul li a div {
    font-size: 0.875rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-right: solid 0.1rem #262626;
    height: 1rem;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 1200px) {
  header .inner .rBox ul li a div {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-right: none;
    height: auto;
    padding: 1rem 2rem;
  }
}
header .inner .rBox ul li a div span {
  display: block;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  header .inner .rBox ul li a div span {
    -webkit-transform: skewX(45deg);
            transform: skewX(45deg);
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  header .inner .rBox ul li a div span {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
  }
}
@media screen and (min-width: 768px) {
  header .inner .rBox ul li.top div {
    border-left: solid 0.1rem #262626;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  header .inner .rBox ul li.top div {
    border-left: none;
  }
}
header .inner .rBox ul li.top.current, header .inner .rBox ul li.top:hover {
  background: #262626;
}
header .inner .rBox ul li.fukuoka.current, header .inner .rBox ul li.fukuoka:hover {
  background: #11b9c3;
}
header .inner .rBox ul li.osaka.current, header .inner .rBox ul li.osaka:hover {
  background: #f4942c;
}
header .inner .rBox ul li.current a span, header .inner .rBox ul li:hover a span {
  color: #fff;
}
header .inner .rBox .corporateLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  header .inner .rBox .corporateLink {
    margin-left: 1.5rem;
  }
}
@media screen and (max-width: 1200px) {
  header .inner .rBox .corporateLink {
    margin-top: 1rem;
    margin-left: 2rem;
  }
}
header .inner .rBox .corporateLink a {
  color: #262626;
  font-size: 0.75rem;
  font-weight: 400;
  background: url(../img/shared/bg_arrow_black.svg) no-repeat center right/1rem;
  padding-right: 1.3rem;
  white-space: nowrap;
}
header .inner .rBox .x {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #262626;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  header .inner .rBox .x {
    height: 100%;
    margin-left: 1.2rem;
  }
}
@media screen and (max-width: 1200px) {
  header .inner .rBox .x {
    width: 3rem;
    height: auto;
    margin-top: 2rem;
    margin-left: 2rem;
  }
}
header .inner .rBox .x img {
  vertical-align: sub;
}
@media screen and (min-width: 768px) {
  header .inner .rBox .x img {
    width: 1.375rem;
  }
}
@media screen and (max-width: 1200px) {
  header .inner .rBox .x img {
    width: 1.6rem;
  }
}

/* ==========================================================
    FOOTER
  ========================================================== */
footer {
  width: 100%;
  background: #262626;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 1vw 0;
  }
}
footer .copyRight {
  display: block;
  color: #fff;
}
@media screen and (min-width: 768px) {
  footer .copyRight {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  footer .copyRight {
    font-size: 2.4vw;
  }
}

/* ==========================================================
    PAGE TOP
  ========================================================== */
.pageTop {
  position: fixed;
  z-index: 990;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(38, 38, 38, 0.85);
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .pageTop {
    right: 2rem;
    bottom: 2rem;
    width: 3.25rem;
    height: 3.25rem;
  }
}
@media screen and (max-width: 767px) {
  .pageTop {
    right: 4vw;
    bottom: 4vw;
    width: 12vw;
    height: 12vw;
  }
}
.pageTop.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.pageTop:hover {
  background: #262626;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.pageTop span {
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: relative;
}
@media screen and (min-width: 768px) {
  .pageTop span {
    width: 0.65rem;
    height: 0.65rem;
    top: 0.15rem;
  }
}
@media screen and (max-width: 767px) {
  .pageTop span {
    width: 2.4vw;
    height: 2.4vw;
    top: 0.6vw;
  }
}