@charset "UTF-8";

/* ユーティリティー */

body {
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 　yu-gothic-pr6n　, "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  position: relative;
}

body.fixed {
  overflow-y: hidden;
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 3s;
  background-color: #40210f;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
  /*width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;*/
  width: 174px;
  height: 172px;
  margin: 200px auto;
  animation: sk-scaleout 3s infinite ease-in-out;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

main {
  /*overflow-x: hidden;*/
  overflow: visible;
}
article {
  position: relative;
  z-index: 2;
}

a {
  color: #fff;
  zoom: 1;
  text-decoration: none;
  transition: opacity 0.7s;
  display: block;
}

a:hover {
  opacity: 0.8;
}

.fgo {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}

.fmin {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/*.page_w {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 0 auto;
}*/
.page {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

.img {
  width: 100%;
  height: auto;
  display: block;
}

.img_cnt {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -o-object-fit: contain;
  object-position: center;
  -o-object-position: center;
}
.img_cvr {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}

a.sptel {
  cursor: default;
  pointer-events: none;
}

.nolink {
  pointer-events: none;
  cursor: default;
}

.sp {
  display: none;
}

img[src*="_sp"] {
  display: none;
}

.spbr {
  display: none;
}

.blk {
  padding: 50px 0;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

/* -------------------------------------
header
------------------------------------- */
header {
  position: relative;
}
header #head {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
header #head.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 5;
}
header nav {
  padding: 20px 0;
  transition: all 0.4s;
  position: relative;
  background-color: #40210f;
  z-index: 5;
}
header #head.fixed nav {
  background-color: #40210f;
  padding: 10px 0;
}

header nav .nav_logo {
  display: none;
}
header nav #gnav {
  width: 100%;
  display: table;
}
header nav #gnav li {
  text-align: center;
  display: table-cell;
}
header nav #gnav li a {
  font-family: "GillSansNova-ExtraBold", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(15px, 2.15vw, 31px);
  font-weight: 800;
  font-feature-settings: "palt";
  letter-spacing: -0.024em;
  line-height: 1;
  padding: 8px 2.77vw;
}
header nav #gnav li img {
  max-width: 130px;
}

header .head_top a#menu_btn {
  display: none;
  width: 60px;
  height: 60px;
  background: url(../imgs/menu_open.svg) center center no-repeat;
  position: fixed;
  right: 2vw;
  bottom: 2vw;
  z-index: 5;
  transition: all 0.4s;
}
header .head_top a#menu_btn.active {
  background-image: url(../imgs/menu_close.svg);
}

/*header .head_top a#menu_btn,
header .head_top a#menu_btn span {
  display: inline-block;
  transition: all 0.4s;
}*/

/*header .head_top a#menu_btn {
display:none;
  width: 49px;
  height: 49px;
  position: absolute;
  right:10px;
  top:10px;
  z-index:5;
}*/

/*header .head_top a#menu_btn span {
  width: 36px;
  height: 2px;
  margin: 0 auto;
  border-radius: 10px;
  background-color: #40210f;
  position: absolute;
  left: 0;
  right: 0;
}

header .head_top a#menu_btn span:nth-of-type(1) {
  top: 15px;
}

header .head_top a#menu_btn span:nth-of-type(2) {
  top: 24px;
}

header .head_top a#menu_btn span:nth-of-type(3) {
  top: 32px;
}

header.fixed .head_top a#menu_btn {
  background-color: rgba(0, 0, 0, 0.5);
}

header.active .head_top a#menu_btn.active {
  background-color: transparent;
  opacity: 1;
}

header .head_top a#menu_btn.active span {
  background-color: #fff;
}

header .head_top a#menu_btn.active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-315deg);
}

header .head_top a#menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}

header .head_top a#menu_btn.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(315deg);
}

header.fixed .head_top a#menu_btn {
  background-color: rgba(0, 0, 0, 0.5);
}
header.fixed .head_top a#menu_btn span,
header.active .head_top a#menu_btn span {
  background-color: #fff;
}*/

/* -------------------------------------
footer
------------------------------------- */
footer {
  text-align: center;
  padding: 40px 0;
  background-color: #40210f;
}
footer .ftop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 780px;
  margin: 0 auto 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #fff;
}
footer .ftop .fname {
  font-size: 25px;
  line-height: 1;
  display: flex;
  align-items: center;
  margin-right: 1em;
  margin-bottom: 5px;
}
footer .ftop .fname span {
  display: inline-block;
  vertical-align: middle;
}
footer .ftop .fname span.lin {
  font-size: 17px;
  margin-right: 15px;
  padding: 5px 7px 3px;
  border: 1px solid #fff;
}
footer .ftop p {
  font-size: 18px;
  display: flex;
}
footer .ftop .add:after {
  content: "/";
  display: inline-block;
}
footer .ftop a.sptel {
}

footer #cp {
  font-size: 13px;
}

.inv_mov {
  opacity: 0;
  transition:
    opacity 1s,
    transform 1s;
}

.tl_yb {
  transform: translate(0, 60px);
}

.tl_yt {
  transform: translate(0, -60px);
}

.tl_xl {
  transform: translate(-60px, 0);
}

.tl_xr {
  transform: translate(60px, 0);
}

.tl_rol {
  transform: rotate(-10deg);
}

.tl_ror {
  transform: rotate(10deg);
}
.tl_xt_ro {
  transform: rotateX(180deg);
}
.tl_yt_ro {
  transform: rotateY(180deg);
}

.mov {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  transition:
    opacity 1s,
    transform 1s;
}

.mov.delay100 {
  transition-delay: 100ms;
}

.mov.delay200 {
  transition-delay: 200ms;
}

.mov.delay300 {
  transition-delay: 300ms;
}

.mov.delay400 {
  transition-delay: 400ms;
}

.mov.delay500 {
  transition-delay: 500ms;
}
.mov.delay600 {
  transition-delay: 600ms;
}
.mov.delay700 {
  transition-delay: 700ms;
}

/* -------------------------------------
404 Not found
------------------------------------- */
.notfound {
  text-align: center;
  padding: 250px 0;
}
.notfound .page {
  padding-left: 0;
}

.notfound .ttl {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.notfound p {
  font-size: 16px;
  margin-bottom: 15px;
}

.notfound p strong {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.notfound a {
  text-decoration: underline;
  display: inline-block;
}

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

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

@media screen and (max-width: 980px) {
  /* -------------------------------------
header
------------------------------------- */

  /* -------------------------------------
footer
------------------------------------- */
}

@media screen and (max-width: 920px) {
  /* -------------------------------------
footer
------------------------------------- */
}

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

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

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

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

@media screen and (max-width: 640px) {
  a.sptel {
    cursor: pointer;
    pointer-events: auto;
  }

  /* -------------------------------------
common
------------------------------------- */

  img[src*="_sp"] {
    display: block;
  }

  img[src*="_pc"] {
    display: none;
  }

  /* -------------------------------------
header
------------------------------------- */
  header {
    border-top: none;
  }

  header #head {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
  }
  header .head_top a#menu_btn {
    display: block;
  }
  header #head nav {
    display: none;
    width: 100%;
    height: 100vh;
    padding: 70px 0 60px;
    background-color: #40210f;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -20;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
  }
  header.active #head nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
  }
  header nav .nav_logo {
    display: block;
    max-width: 263px;
    margin: 0 auto 60px;
  }
  header nav #gnav {
    display: block;
  }
  header nav #gnav li {
    text-align: center;
    display: block;
    border: none;
  }
  header nav #gnav li:first-child {
    border: none;
  }
  header nav #gnav li a {
    font-size: 18px;
    padding: 15px 5px;
  }

  /* -------------------------------------
footer
------------------------------------- */
  footer .ftop .fname {
    font-size: 23px;
    margin-right: 0;
  }
  footer .ftop .fname span.lin {
    padding: 5px 5px 3px;
    margin-right: 5px;
  }
  footer .ftop p {
    font-size: 17px;
    display: block;
  }
  footer .ftop .add:after {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .page {
    width: calc(100% - 30px);
  }
}

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

@media screen and (max-width: 320px) {
  /* -------------------------------------
footer
------------------------------------- */
  footer .ftop .fname {
    font-size: 21px;
  }
}

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