@charset "UTF-8";

/*
VARIABLES
================================================ */
:root {
  --green: #bed01c;
  --yellow-green: #6ab91c;
  --light-grey: #eee;
  --grey: #484A4e;
  --deep-gray: #27343c;
  --dark-grey: #222;
  --black: #000;
  --white: #fff;
  --light-gold: #DACB7B;
  --gold: #BE9352;
}

/*
共通パーツ
================================================ */
body {
  color: #252525;
}

.wrapper {
  max-width: 1280px;
  margin: 79px auto;
}

.mainBg-01 {
  background-color: var(--light-grey);
}

.bg-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: var(--white);
  font-size: 2.5rem;
  font-size: 40px;
  filter: drop-shadow(1px 1px 10px #c0c0c0);
}

.ttl1 {
  width: 100%;
  text-align: center;
  color: var(--white);
  font-size: 2.5rem;
  font-size: 40px;
  filter: drop-shadow(1px 1px 10px #c0c0c0);
}

.ttl2 {
  display: inline-block;
  font-size: 2rem;
  font-size: 32px;
  border-bottom: solid 6px #e03131;
  margin-bottom: 70px;
}

.inner {
  /* wrapper */
  max-width: 1000px;
  text-align: center;
  margin: 0 auto;
}

.txt-center {
  text-align: center;
}

.mb5 {
  margin-bottom: 5px;
}

.mb15 {
  margin-bottom: 15px;
}

.m1rem {
  margin: 0 1rem;
}

p.txt {
  line-height: 2;
  text-align: justify;
  /*均等割り付け*/
}

section {
  position: relative;
  z-index: 0;
}

ul,
dl {
  text-align: left;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 26px;
  }

  h2,
  h3 {
    font-size: 24px;
  }

  .styled_h2 {
    font-size: 26px;
  }
}

h1 {
  letter-spacing: 0.07em;
  font-family: "futura-pt-n4", "futura-pt", sans-serif;
  padding: 15px 15px 15px 5px;
}

h2,
h3 {
  letter-spacing: 0.07em;
  font-family: "futura-pt-n4", "futura-pt", sans-serif;
  /*line-height: 1.3;*/
}

.styled_h2 {
  text-align: left;
  color: #000000;
  border-top: 0px solid #dddddd;
  border-bottom: 2px solid #0a0a0a;
  border-left: 0px solid #dddddd;
  border-right: 0px solid #dddddd;
  padding: 15px 15px 15px 5px;
  margin: 0px 0px 42px;
  margin-top: 0px;
}

.desc {
  padding: 10px 0;
}

.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.txt-center {
  text-align: center;
}

/*
ローディング
================================================ */
#loading {
  background-color: var(--light-grey);
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-items: center;
}

#loading p {
  font-size: 1.3rem;
  font-weight: bold;
}

/*
header
================================================ */
/* PC */
@media screen and (min-width: 960px) {
  .header-inner {
    display: grid;
    grid-gap: 30px;
    align-items: center;
    /*grid-template-columns: 260px auto 190px 190px;*/
    grid-template-columns: 500px auto;
    padding: 18px 40px;
    background-color: var(--white);
  }

  header {
    position: relative;
  }

  .header-inner {
    position: absolute;
    right: 0;
    left: 0;
    z-index: 1;
  }

  header nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }

  nav li {
    margin-left: 30px;
  }

  .menu-list {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
  }

  nav a,
  .logo a {
    color: var(--black);
    font-weight: bold;
  }
}

/* SP */
@media screen and (max-width: 820px) {
  .logo a {
    color: var(--black);
    font-weight: bold;
  }

  .header-inner {
    padding: 0px 16px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
  }
}

/*
メイン画像
================================================ */
.main-ttl {
  font-size: min(10vw, 1rem);
}

.hero {
  height: 500px;
  background-image: url("../images/mainvisual.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  background-color: #757575;
  opacity: 0.95;
}

.hero-txt {
  text-align: center;
  padding: 50px 0;
}

.btn {
  padding: 1rem 6rem;
  color: #fff;
  border-radius: 0;
  background: var(--gold);
}


/*
SP nav
================================================ */
/* スライドメニューパネル */
@media screen and (max-width: 820px) {
  .menu-list li {
    margin: 1.5rem 0;
  }

  .menu-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
  }

  /* スライドメニューパネルここから */
  .open .sp-nav {
    right: 0;
  }

  .sp-nav {
    position: fixed;
    top: 0%;
    right: -100%;
    width: max(100vw, 18rem);
    height: 100vh;
    background-color: var(--gold);
    /*box-shadow: 0 0 2rem var(--dark-grey);*/
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto;
    padding: 8rem 2rem 2rem;
    opacity: 0.95;
  }

  .hamburger {
    position: relative;
    width: 27px;
    height: 15px;
    cursor: pointer;
    z-index: 300;
  }

  .open .hamburger__line {
    background-color: var(--white);
  }

  .hamburger__line {
    content: "";
    position: absolute;
    left: 0;
    width: 27px;
    height: 1px;
    background-color: var(--black);
    transition: all 0.5s;
  }

  .hamburger__line-1 {
    top: 0px;
  }

  .open .hamburger__line-1 {
    transform: rotate(-45deg);
    top: 11px;
  }

  .hamburger__line-2 {
    top: 7px;
  }

  .open .hamburger__line-2 {
    opacity: 0;
  }

  .hamburger__line-3 {
    top: 14px;
  }

  .open .hamburger__line-3 {
    transform: rotate(45deg);
    top: 11px;
  }

  .menuScroll {
    overflow: hidden;
  }
}

/* スライドメニューパネルここまで */

/*
section ご質問
================================================ */
.sample {
  /*width: 80%;*/
  margin: 0 auto;
}

/* ここからアコーディオン用 */

.content {
  /*width: 80%;*/
  padding: 0;
  margin: 0 auto;
}

/*Question*/
.question {
  position: relative;
  background: #e0e0e0;
  margin: 0;
  padding: 10px 10px 10px 50px;
  display: block;
  width: 100%;
  cursor: pointer;
}

/*Answer*/
.answers {
  padding: 0px 15px;
  margin: 0 0 10px;
  width: 100%;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  background: #fff;
  -webkit-transition: .8s ease;
  -moz-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
}

.questions:checked~.answers {
  height: auto;
  opacity: 1;
  padding: 15px 45px 15px 15px;
  text-align: justify;
}

/*FAQ Toggle*/
.plus {
  position: absolute;
  margin-left: 10px;
  z-index: 5;
  font-size: 2em;
  line-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .8s ease;
  -moz-transition: .8s ease;
  -o-transition: .8s ease;
  transition: .8s ease;
}

.questions:checked~.plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.questions {
  display: none;
}

/*
section flow
================================================ */
.column {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  /*max-width: 80%;*/
  margin: auto;
}

.flow .box {
  background-color: var(--white);
  border: solid 5px var(--light-grey);
  box-sizing: border-box;
  margin: 0 10px 0px;
  padding: 15px 10px;
  position: relative;
  width: -webkit-calc(100% / 4 - 20px);
  width: calc(100% / 5 - 20px);
  text-align: center;
  font-size: 90%;
  background: -moz-linear-gradient(45deg, #fff 10px, #fff 10px), -moz-linear-gradient(135deg, transparent 10px, #fff 10px),
    -moz-linear-gradient(225deg, #fff 10px, #fff 10px), -moz-linear-gradient(315deg, transparent 10px, #fff 10px);
  background-position: bottom left, bottom right, top right, top left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}

.flow .flow_ttl {
  color: var(--gold);
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  text-align: center;
}

p {
  text-align: justify;
}

.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 0px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  right: -30px;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border: 10px solid transparent;
  border-left: 10px solid var(--light-gold);
}

@media (max-width: 640px) {
  .arrow {
    display: block;
  }

  .arrow::after {
    position: absolute;
    top: calc(100% + 30px);
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 0;
    left: 0;
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    border: 10px solid transparent;
    border-top: 10px solid #0baccf;
  }
}

@media screen and (max-width: 780px) {
  .flow .column {
    display: block;
  }

  .flow .box {
    width: 100%;
    margin: 0 0 20px
  }

  .flow .box .image {
    margin: 20px 0;
  }
}

@media screen and (max-width: 480px) {
  .flow .column {
    display: block;
  }

  .flow .box {
    width: 100%;
    margin: 0 0 20px
  }

  .flow .box .image {
    margin: 20px 0;
  }
}

#site_loader_overlay.active #site_loader_animation {
  opacity: 0;
  -webkit-transition: all 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0s;
  transition: all 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0s;
}



/*
section 店舗情報
================================================ */
.info-inner .box {
  width: -webkit-calc(100% / 2 - 20px);
  width: calc(100% / 2 - 20px);
  font-size: 90%;
}

.ttl_sec::after {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--gold);
  height: 84%;
  width: 1px;
}

.ttl_sec {
  position: relative;
  /*letter-spacing: 0.09em;*/
  font-family: "futura-pt-n4", "futura-pt", sans-serif;
  /*line-height: 1.3;*/
  padding-left: 27px;
  margin-bottom: 5px;
}

/*
section access
================================================ */
.map {
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  height: 300px;
}

.map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
}

/*
top戻るボタン
================================================ */
.button_top {
  position: absolute;
  right: 5px;
  bottom: 5px;
}

.button_top {
  background-color: var(--gold);
  color: white;
  /*font-size: 13px;*/
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: .3s;
  font-weight: bold;
}

/*btn*/
.page-top {
  background: #37b998;
  bottom: 0;
  cursor: pointer;
  display: none;
  height: 85px;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 85px;
}

.button_top::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(-45deg);
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .page-top::before {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    height: 2.5vw;
    top: 2.375vw;
    width: 2.5vw;
  }
}

.page-top::before {
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  content: "";
  height: 20px;
  left: 46%;
  position: absolute;
  top: 19px;
  -webkit-transform: rotate(-45deg) translateX(-50%);
  transform: rotate(-45deg) translateX(-50%);
  width: 20px;
}

@media screen and (max-width: 768px) {
  .page-top {
    height: 10.625vw;
    width: 10.625vw;
    right: 0;
    bottom: 11vw;
  }
}

@media screen and (max-width: 768px) {
  .page-top .text {
    padding-top: 5vw;
  }
}

@media screen and (max-width: 768px) {
  .page-top::before {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    height: 2.5vw;
    top: 2.375vw;
    width: 2.5vw;
  }
}

@media screen and (max-width: 768px) {
  .page-top .text {
    padding-top: 5vw;
  }
}

.page-top .text {
  color: #fff;
  font-size: 2.4rem;
  padding-top: 40px;
}

/*
footer
================================================ */
.footer-inner {
  margin-top: 141px;
  padding: 10px 0;
}

#footer {
  position: relative;
  font-size: 0.5rem;
  text-align: center;
}

/*
contact.html
================================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
  display: flex;
}

tbody {
  width: 800px;
  margin: 0 auto;
}

.formTable tr {
  display: flex;
  /*sp*/
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 16px;
}

.formTable th {
  text-align: left;
  width: 35%;
  padding-right: 16px;
}

.formTable th span {
  color: #fff;
  font-weight: bold;
  background: var(--green);
  padding: 0px 5px;
  float: right;
  border-radius: 5px;
}

.formTable td {
  width: 65%;
  text-align: left;
}

.formTable input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  border-radius: 5px;
}

.formTable textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
  border-radius: 5px;
}

#formWrap {
  margin-top: 106px;
}

.formWrap__policy {
  max-width: 700px;
  width: 100%;
  height: 200px;
  margin: 14px auto 30px;
  overflow: auto;
  border: 1px solid #ccc;
  padding: 16px;
  border-radius: 5px;
  text-align: left;
}

.formWrap__botton__submit {
  background: var(--yellow-green);
  width: 300px;
  padding: 20px;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  border-radius: 10px;
}

.formWrap__botton {
  text-align: center;
  margin: 20px auto;
}

@media screen and (max-width: 700px) {
  #formWrap {
    margin: 0 auto 20px;
    padding: 0px 30px 0px;
  }

  .formWrap__h2 {
    margin-bottom: 0px;
  }

  .formWrap__h2 img {
    margin: 0 auto;
    text-align: center;
    display: block;
  }

  #formWrap h2 {
    font-size: 1.5rem;
    margin: 60px 0 54px;
  }

  .formTable th {
    width: 100%;
    display: block;
    padding: 0 0 5px;
  }

  .formTable .th2 {
    background: #eee;
  }

  .formTable td {
    width: 100%;
    display: block;
  }

  .formTable textarea {
    width: 100%;
    padding: 10px;
  }

  .formWrap__botton {
    text-align: center;
    margin: 20px auto;
  }

  .formWrap__botton__submit {
    width: 50%;
    padding: 15px;
    background-size: contain;
  }

  .formWrap__botton {
    text-align: center;
    margin: 20px auto;
  }

  .formWrap__policy {
    height: 150px;
  }

  .formWrap__policy p {
    font-size: 0.8rem;
    margin-bottom: 20px;
    line-height: 1.5rem;
  }

  .formTable__sutxt {
    line-height: 1.0rem;
    margin-top: 3px;
  }

  /**/
  #formWrap2 {
    width: 100%;
    margin: 10px auto 50px;
  }

  .error_messe_h3 {
    font-size: 1.0rem;
  }

  .error_messe {
    margin: 0 auto 10px;
    width: 95%;
  }

  .form__error__back {
    font-size: 1.0rem;
    letter-spacing: 1px;
    border-radius: 10px;
    width: 50%;
    margin: 0 auto;
    display: block;
  }

  .form__error__next {
    font-size: 1.0rem;
    letter-spacing: 1px;
    border-radius: 10px;
    width: 50%;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .form__fix__h3__tx {
    padding: 0 20px;
  }

  #formWrap .formWrap__botton__check {
    width: 100%;
  }

  #formWrap .formWrap__back {
    padding: 10px 20px;
    font-size: 1.2rem;
    border: 0;
    border-radius: 15px;
    float: none;
    margin-top: 13px;
  }

  #formWrap .formWrap__botton__submit__float {
    float: none;
  }

  #formWrap h3 {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  #formWrap .formWrap__txt {
    font-size: 0.9rem;
    line-height: 1.8rem;
    text-align: left;
  }

  #formWrap .formWrap__submitpage tr {
    display: block;
  }

  #formWrap .formWrap__submitpage th,
  #formWrap .formWrap__submitpage td {
    width: 100%;
    display: block;
    padding: 10px;
    border: none;
  }

  .form__submit {
    width: 100%;
    background: #FF6464;
    padding: 20px 0;
  }

  /*.form__submit  h2{color: #fff; font-weight: bold; text-align: center; letter-spacing: 3px; font-size: 1.0rem;}*/
  .form__submit__sub {
    margin: 20px auto 0;
    font-size: 1.0rem;
    letter-spacing: 1px;
    width: 80%;
    font-weight: bold;
  }

  .form__submit__txtarea {
    width: 95%;
    margin: 20px auto;
  }

  .form__submit__area {
    width: 100%;
    margin: 50px auto;
  }

  .thanks_pt {
    padding-top: 2px;
  }

}

/*プライバシーポリシー*/
.has-text-align-right {
  text-align: right;
}

.post-content ol {
  margin-left: 30px;
  list-style: decimal;
}

.post-content p,
.post-content ul,
.post-content ol,
.post-content dl,
.post-content blockquote,
.post-content pre,
.post-content table {
  margin-bottom: 2em;
}

.post-content table th,
.post-content table td {
  padding: 8px 10px;
  border: #ddd solid 1px;
}