@charset "UTF-8";
/* Global Remedies
******************/
/* Use border-box by default, globally */
*, ::before, ::after {
  box-sizing: border-box;
}

/*
* Consistent line spacing...
* CSS Inline Layout Module Level 3: https://drafts.csswg.org/css-inline-3/#line-sizing-property
*/
html {
  line-sizing: normal;
}

/* Remove the tiny space around the edge of the page */
body {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  display: block;
}

/* Headings
***********/
/* Switch to rem units for headings */
/* @@@ Initial values are based on existing browser defaults */
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

/* Keep h1 margins consistent, even when nested */
h1 {
  margin: 0.67em 0;
}

/* Typography
*************/
/* Overflow by default is bad */
pre {
  white-space: pre-wrap;
}

/*
* 1. Solid, thin horizontal rules
* 2. Remove Firefox `color: gray`
* 3. Remove default `1px` height, and common `overflow: hidden`
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

dt, dl, dd {
  margin: 0;
}

/* Embedded Elements
********************/
/*
* 1. Block display is usually what we want
* 2. Remove strange space-below when inline
* 3. Responsive by default
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

/*
* Maintain intrinsic aspect ratios when `max-width` is applied
* (iframe, embed, and object have no intrinsic ratio, set height explicitly)
*/
img, svg, video, canvas {
  height: auto;
}

/*
* There is no good reason elements default to 300px,
* and audio files are unlikely to come with a width attribute
*/
audio {
  width: 100%;
}

/* Old Browsers
***************/
/* Remove the border on images inside links in IE 10 and earlier */
img {
  border-style: none;
}

/* Hide the overflow in IE 10 and earlier */
svg {
  overflow: hidden;
}

/* Default block display on HTML5 elements */
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/*
* 1. Add the correct box sizing in IE 10
* 2. Remove the padding in IE 10
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/*レスポンシブ対応。カラム数とカラム間marginを自由に設定するMixin*/
/*一列組のみ、記事が増え、2段、3段になるカラム組には適さない*/
/*参考→　https://qiita.com/noqua/items/0dc04aa528269db41a07　*/
html {
  font-size: 62.5%;
  font-weight: 400;
  color: #000;
  height: 100%;
}

body {
  display: none;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.7em;
  font-family: "Zen Old Mincho";
  flex-direction: column;
}
@media all and (max-width: 620px) {
  body {
    letter-spacing: 0.05em;
    line-height: 1.6em;
  }
}
body {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
}

h1, h2, h3, h4 {
  color: #000;
  margin: 0;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: lighter;
}

a {
  text-decoration: none;
  color: #666;
  transition: 0.2s all ease-out;
}

a:hover {
  opacity: 0.6;
}

select::-ms-expand {
  display: none;
}

@media all and (min-width: 981px) {
  :focus {
    opacity: 0.6;
  }
}
:focus {
  outline: none;
}

label {
  cursor: pointer;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

th {
  font-weight: normal;
}

::selection {
  color: #fff;
  background: #000;
}

::-moz-selection {
  color: #fff;
  background: #000;
}

ol, ul {
  list-style: none;
  padding: 0;
}

section {
  margin: 0 0 100px 0;
}

p {
  margin: 0 0 30px;
  letter-spacing: 0.05em;
  line-height: 2.4;
}
p a {
  display: inline-block;
  color: #000;
  border-bottom: 1px solid #000;
  line-height: 1;
  margin-bottom: 8px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

/******************
structure
******************/
.wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #EDF1F2;
  padding-bottom: 130px;
}

.contents {
  width: 100%;
  margin-bottom: 130px;
}

@media all and (min-width: 981px) {
  .inner {
    width: 100%;
    padding: 0 20px;
  }
}
@media all and (max-width: 980px) {
  .inner {
    padding: 0 15px;
  }
}
@media all and (max-width: 620px) {
  .inner {
    padding: 0 10px;
  }
}

.js-fadeIn {
  opacity: 0;
  transition: 0.5s 0.2s;
}

.js-fadeIn.animation {
  opacity: 1;
}

.pankuzu {
  position: relative;
  width: 100%;
  font-size: 12px;
  font-size: 1.2rem;
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
  text-align: center;
  padding: 0 0 0 20px;
}
@media all and (max-width: 620px) {
  .pankuzu {
    padding: 0 0 0 10px;
  }
}
.pankuzu ol {
  width: 100%;
  max-width: 1100px;
  list-style: none;
  margin: 5px auto 3px auto;
  position: static;
  text-align: left;
}
.pankuzu li {
  margin-right: 10px;
  vertical-align: middle;
  display: inline;
}
.pankuzu li + li::before {
  display: inline-block;
  content: "";
  border-top: 1px solid;
  border-right: 1px solid;
  margin: 0 10px 0 0;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  vertical-align: 0.2em;
}
.pankuzu li a {
  color: #666;
}
.pankuzu li a.home {
  vertical-align: -0.3em;
}

.pagenation {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 30px 0;
  border-top: 1px solid #9fa0a0;
}
.pagenation a {
  text-decoration: none;
}
@media all and (min-width: 981px) {
  .pagenation a:hover {
    opacity: 0.6;
  }
}
.pagenation .page-next {
  padding: 5px 15px;
  text-align: center;
}
.pagenation ol {
  display: flex;
  flex-wrap: wrap;
  margin: 10px;
}
.pagenation li + li {
  padding: 10px;
  color: #5b5a5a;
}
.pagenation li span {
  border-top: 1px solid #000;
  display: inline-block;
  margin: -1px 0 0 0;
  padding: 10px;
}

.pager {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 980px) {
  .pager {
    margin-bottom: 40px;
  }
}

.pulldown {
  position: relative;
  margin: 0 0 30px;
  padding: 0;
  width: 100%;
}
.pulldown label {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 10px;
  border: solid 1px #9fa0a0;
  cursor: pointer;
}
.pulldown input {
  display: none;
  margin: 0;
}
.pulldown .archive-list {
  display: block;
  width: 100%;
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  transition: 0.2s all ease-out;
}
.pulldown .archive-list ul {
  position: relative;
  border: solid 1px #9fa0a0;
  border-bottom: 0;
  width: 100%;
  top: -15px;
  margin: 0;
  padding: 0;
}
.pulldown .archive-list li {
  border-bottom: solid 1px #9fa0a0;
  cursor: pointer;
  margin: 0;
  padding: 15px 10px 10px;
  width: 100%;
}
.pulldown .archive-list li a {
  display: block;
  color: #666;
  width: 100%;
  height: 100%;
}
.pulldown input:checked ~ .archive-list {
  padding: 10px 0;
  height: auto;
  opacity: 1;
  transition: 0.2s all ease-out;
}

strong {
  font-family: "Zen Old Mincho";
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

img.r {
  float: right;
  border: none;
  margin: 0 0 25px 2px;
  vertical-align: top;
}

img.l {
  float: left;
  margin: 0 2px 25px 0;
  vertical-align: top;
}

img.c {
  display: block;
  text-align: center;
  margin: 0 auto 25px auto;
}

/******************
  header
******************/
.top-site-title {
  width: 100px;
  position: fixed;
  left: 40px;
  top: 70px;
  opacity: 0;
  z-index: 11;
  transition: 0.3s;
}
@media all and (max-width: 980px) {
  .top-site-title {
    width: 100px;
    left: 20px;
    top: 45px;
  }
}
@media all and (max-width: 620px) {
  .top-site-title {
    width: 100px;
    top: 35px;
  }
}

.site-title {
  width: 100px;
  position: fixed;
  left: 40px;
  top: 50px;
  z-index: 11;
  transition: 0.3s;
}
@media all and (max-width: 980px) {
  .site-title {
    width: 100px;
    left: 20px;
    top: 45px;
  }
}
@media all and (max-width: 620px) {
  .site-title {
    width: 100px;
    top: 35px;
  }
}

.gnav {
  position: relative;
}

/*ハンバーガーボタン*/
.el_humburger {
  position: absolute;
  top: 140px;
  margin-top: 0;
  right: 30px;
  box-sizing: border-box;
  padding-top: 0px;
  z-index: 101;
  cursor: pointer;
  pointer-events: auto;
  color: #000;
  text-align: center;
  font-family: "Zen Old Mincho";
}
@media all and (max-width: 980px) {
  .el_humburger {
    position: fixed;
    top: 40px;
    right: 20px;
    margin: 0;
  }
}
@media all and (max-width: 620px) {
  .el_humburger {
    top: 20px;
    right: 10px;
  }
}

.secndary {
  top: 140px;
  position: fixed;
}
@media all and (max-width: 980px) {
  .secndary {
    top: 40px;
  }
}
@media all and (max-width: 620px) {
  .secndary {
    top: 20px;
  }
}

.el_humburger_wrapper {
  width: 40px;
  height: 40px;
  display: inline-block;
  color: #000;
}

.js_humburgerOpen .el_humburger_wrapper {
  width: 40px;
  height: 40px;
  position: relative;
}

.el_humburger_text {
  font-size: 12px;
  letter-spacing: 0.1em;
}

.el_humburger span.el_humburger_bar:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #000;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
  transform: translateY(15px) translateX(0) rotate(-45deg);
  width: 40px;
  height: 1px;
  margin: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  transform: translateY(15px) translateX(0) rotate(45deg);
  width: 40px;
  height: 1px;
  margin: 0;
}

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #000;
}

.navi {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  width: 100%;
  max-width: 500px;
  z-index: 100;
  box-sizing: border-box;
  transform: translateZ(0) translateX(100%);
  overflow: hidden;
}
@media all and (max-width: 980px) {
  .navi {
    max-width: 400px;
  }
}
@media all and (max-width: 620px) {
  .navi {
    max-width: 300px;
  }
}
.navi h2 {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  line-height: 1.8;
  margin: 0 0 40px 0;
}
.navi .menu-title {
  font-size: 10px;
  font-size: 1rem;
  margin: 0 0 20px 0;
}
.navi .navi_main {
  margin: 0;
}
.navi .navi_main li a {
  padding: 10px 0;
}
.navi .navi_sub {
  margin-left: 90px;
}
.navi .navi_sub li {
  position: relative;
}
.navi .navi_sub li::before {
  position: absolute;
  top: 7px;
  left: -18px;
  display: block;
  content: "-";
}
.navi .navi_works {
  display: flex;
}
.navi .navi_works .works {
  padding: 10px 0;
}
.navi .naviunit {
  position: relative;
  height: 100vh;
  width: 100%;
}
.navi .glov {
  transform: translateY(-50%) translateX(-50%);
  top: 50%;
  left: 50%;
  position: absolute;
  font-family: "Zen Old Mincho";
}

.js_humburgerOpen .navi {
  transform: translateZ(0) translateX(0);
}

.navi_item.op_innerLink {
  cursor: pointer;
}

.js_humburgerOpen .menu-bg {
  opacity: 0.6;
  visibility: visible;
}

.js_humburgerOpen .el_humburger.m_fixed {
  position: fixed;
  top: 70px;
  right: 30px;
  margin: 0;
}
@media all and (max-width: 620px) {
  .js_humburgerOpen .el_humburger.m_fixed {
    right: 10px;
  }
}

.js_humburgerOpen .el_humburger {
  position: fixed;
  top: 70px;
  right: 30px;
  margin: 0;
}
@media all and (max-width: 980px) {
  .js_humburgerOpen .el_humburger {
    top: 40px;
    right: 20px;
  }
}
@media all and (max-width: 620px) {
  .js_humburgerOpen .el_humburger {
    top: 20px;
    right: 10px;
  }
}

.el_humburger.m_fixed {
  position: fixed;
  top: 70px !important;
  right: 30px;
}
@media all and (max-width: 980px) {
  .el_humburger.m_fixed {
    right: 20px;
  }
}
@media all and (max-width: 620px) {
  .el_humburger.m_fixed {
    top: 30px;
    right: 0;
  }
}

/* メニューが開いたときの黒い半透明の背景 */
.menu-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  /* 背景の切り替わり秒数 */
  transition: all 0.6s;
  cursor: pointer;
}

/* オープン時メニュー矢印出現 */
.js_humburgerOpen .fade-in-left {
  opacity: 0;
  animation-name: fade-in-left;
  animation-duration: 0.5s;
  /* 出現速度 */
  animation-delay: 0.3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* オープン時メニュー矢印閉じる時 */
.el_humburger span.el_humburger_bar {
  display: block;
  width: 40px;
  margin: 12px auto 15px;
  height: 1px;
  background: #000;
  /* 矢印→ハンバーガー変身速度 */
  transition: all 0.1s ease-in-out;
}

/* オープン時グロバメニュー出現 */
.js_humburgerOpen .fade-in-right {
  opacity: 0;
  animation-name: fade-in-right;
  animation-duration: 0.5s;
  /* オープン時メニューリスト出現速度 */
  animation-delay: 0.2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* グロバメニュー全体出現速度 */
.navi {
  transition: all 400ms ease-out;
}

.top-current {
  position: fixed;
  top: 75px;
  right: 90px;
  z-index: 11;
  transition: 0.3s;
  opacity: 0;
}
.top-current p {
  margin: 0;
  color: #000;
}
@media all and (max-width: 980px) {
  .top-current {
    top: 45px;
    right: 80px;
  }
}
@media all and (max-width: 620px) {
  .top-current {
    top: 28px;
    right: 68px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.current {
  position: fixed;
  top: 145px;
  right: 90px;
  z-index: 11;
  transition: 0.3s;
}
.current p {
  margin: 0;
  color: #000;
}
.current h1 {
  font-size: 14px;
  font-size: 1.4rem;
}
@media all and (max-width: 980px) {
  .current {
    top: 45px;
    right: 80px;
  }
}
@media all and (max-width: 620px) {
  .current {
    top: 28px;
    right: 68px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/*レスポンシブ対応。カラム数とカラム間marginを自由に設定するMixin*/
/*一列組のみ、記事が増え、2段、3段になるカラム組には適さない*/
/*参考→　https://qiita.com/noqua/items/0dc04aa528269db41a07　*/
.footer {
  position: absolute;
  bottom: 0;
  max-width: 1260px;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
  height: 130px;
}
.footer p {
  margin: 0;
  padding: 0 20px;
}

/*レスポンシブ対応。カラム数とカラム間marginを自由に設定するMixin*/
/*一列組のみ、記事が増え、2段、3段になるカラム組には適さない*/
/*参考→　https://qiita.com/noqua/items/0dc04aa528269db41a07　*/
.required {
  color: #FF0000;
  margin-left: 30px;
}

.form-input {
  width: 100%;
  height: 50px;
  padding-left: 10px;
  border: 1px solid #aaaaaa;
  margin-top: 15px;
  font-family: "Zen Old Mincho";
}

.form-textarea {
  width: 100%;
  height: 350px;
  border: 1px solid #aaaaaa;
  margin-top: 15px;
  padding: 10px;
  font-family: "Zen Old Mincho";
}

.form-unit p {
  text-align: left;
}
.form-unit .btn {
  background: #fff;
  color: #000;
  width: 100%;
  border: 1px solid #000;
  max-width: 200px;
  text-align: center;
  padding: 10px 0 10px;
  font-family: "Zen Old Mincho";
  letter-spacing: 0.05em;
}

.reserve-info {
  display: flex;
}
@media all and (max-width: 980px) {
  .reserve-info {
    display: block;
  }
}
.reserve-info .flex {
  display: flex;
  padding-bottom: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #c4c4c4;
  height: 50px;
}
.reserve-info .flex p {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
.reserve-info .flex .icon {
  margin-right: 20px;
}
.reserve-info .reserve-tel {
  width: 50%;
}
@media all and (max-width: 980px) {
  .reserve-info .reserve-tel {
    width: 100%;
    margin-bottom: 30px;
  }
}
.reserve-info .reserve-mail {
  width: 50%;
}
@media all and (max-width: 980px) {
  .reserve-info .reserve-mail {
    width: 100%;
  }
}
.reserve-info .reserve-mail .icon {
  margin-top: 2px;
}
.reserve-info .no {
  font-size: 24px;
  font-size: 2.4rem;
  margin: 0;
}
.reserve-info .no span {
  font-size: 14px;
  font-size: 1.4rem;
  margin-left: 20px;
}

.contact-form .flex {
  display: flex;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #c4c4c4;
  height: 50px;
}
.contact-form .flex p {
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
}
.contact-form .flex .icon {
  margin-right: 20px;
  margin-top: 2px;
}

.contact-direct-wrapper {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  margin: 80px 0;
}
@media all and (max-width: 980px) {
  .contact-direct-wrapper {
    display: inherit;
  }
}
.contact-direct-wrapper .contact-direct {
  width: 50%;
  text-align: center;
}
@media all and (max-width: 980px) {
  .contact-direct-wrapper .contact-direct {
    width: 100%;
  }
}
.contact-direct-wrapper .contact-direct dt {
  border-bottom: 1px solid #a0a0a0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.contact-direct-wrapper .contact-direct .time {
  margin-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
}
@media all and (max-width: 980px) {
  .contact-direct-wrapper .contact-direct .time {
    margin-bottom: 70px;
  }
}
.contact-direct-wrapper .button-direct {
  display: block;
  text-decoration: none;
  background: #000;
  color: #EDF1F2;
  position: relative;
  text-align: center;
  font-family: "Zen Old Mincho";
  @icnlude appearance;
  font-size: 14px;
  font-size: 1.4rem;
  width: 280px;
  height: 50px;
  line-height: 50px;
  margin-top: 10px;
  display: inline-block;
}
@media all and (max-width: 980px) {
  .contact-direct-wrapper .button-direct {
    margin: 0 auto;
  }
}
.contact-direct-wrapper .button-direct .mail-link::before {
  display: inline-block;
  content: "";
  background: url(/img/mail_icon.svg) no-repeat;
  width: 1.5em;
  height: 1.5em;
  margin: 0 10px 0 0;
  vertical-align: middle;
}
.contact-direct-wrapper .button-direct .tel-link::before {
  display: inline-block;
  content: "";
  background: url(/img/tel_icon.svg) no-repeat;
  width: 1.5em;
  height: 1.5em;
  margin: 0 10px 0 0;
  vertical-align: middle;
}

.form-body {
  width: 100%;
}
@media all and (max-width: 620px) {
  .form-body {
    width: calc(100% - 30px);
  }
}

.flex-line {
  display: flex;
  height: 60px;
  margin-bottom: 5px;
}
.flex-line .d-t {
  margin-top: 18px;
  font-size: 16px;
  font-size: 1.6rem;
  width: 70px;
}
.flex-line .radio-list {
  margin-top: 18px;
}

.q-line .radio-list {
  padding-top: 18px;
  padding-bottom: 5px;
  min-height: 60px;
  padding-left: 70px;
}
@media all and (max-width: 980px) {
  .q-line .radio-list {
    padding-left: 20px;
  }
}
.q-line .red {
  border-radius: 5px;
}

.reser {
  margin-bottom: 30px !important;
}
.reser .red {
  border-radius: 5px;
}

.contact-form label {
  font-size: 14px;
  font-size: 1.4rem;
}
.contact-form .contact-form-title {
  font-size: 14px;
  font-size: 1.4rem;
  border-bottom: 1px solid #666;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.contact-form .form-label {
  width: 100%;
  line-height: 1.8;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 12px;
}
@media all and (max-width: 980px) {
  .contact-form .form-label {
    float: none;
    width: 100%;
  }
}
.contact-form .form-contents {
  width: 100%;
  margin-bottom: 50px;
}
@media all and (max-width: 980px) {
  .contact-form .form-contents {
    margin: 0 0 40px 0;
  }
}
.contact-form .form-contents p {
  font-size: 12px;
  font-size: 1.2rem;
  color: #df0024;
  margin-left: -7px;
}
.contact-form .form-input {
  width: 100%;
  height: 50px;
  padding-left: 15px;
  border: 1px solid #666;
  font-size: 16px;
  font-size: 1.6rem;
}
@media all and (max-width: 980px) {
  .contact-form .form-input {
    padding-left: 15px;
  }
}
.contact-form .form-member {
  height: 60px;
  border: 1px solid #7FBF34;
  color: #000;
  border-radius: 5px;
  margin-right: 10px;
  padding: 0 10px;
}
.contact-form .member-unit {
  margin-left: 210px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media all and (max-width: 980px) {
  .contact-form .member-unit {
    margin: 0 0 40px 0;
  }
}
.contact-form .member-unit p {
  margin: 0;
}
.contact-form .member-unit .where {
  width: 60px;
  margin-top: 15px;
}
.contact-form .member-unit .mei {
  margin-right: 50px;
  margin-top: 15px;
}
.contact-form .member-unit .ages {
  width: 60px;
  margin-top: 15px;
}
.contact-form .member-unit .form-input {
  width: 300px;
}
.contact-form .member-unit .adult {
  margin-bottom: 20px;
}
.contact-form .member-unit .child {
  margin-bottom: 50px;
}
.contact-form .kibou {
  margin-left: 210px;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media all and (max-width: 980px) {
  .contact-form .kibou {
    margin: 0 0 10px 0;
  }
}
.contact-form .daiichi {
  padding-top: 17px;
}
.contact-form .form-textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #666;
  padding: 15px 15px;
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
}
@media all and (max-width: 980px) {
  .contact-form .form-textarea {
    padding: 15px;
  }
}
.contact-form .post {
  font-size: 12px;
  font-size: 1.2rem;
  margin-left: 5px;
  letter-spacing: 0.1em;
}
.contact-form .required {
  background: #7FBF34;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 12px;
  float: right;
  margin: 8px 10px 0;
  padding: 2px 8px;
}
@media all and (max-width: 980px) {
  .contact-form .required {
    float: none;
  }
}
.contact-form .form-post {
  width: 300px;
  height: 60px;
  padding-left: 30px;
  border: 1px solid #7FBF34;
  border-radius: 5px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media all and (max-width: 980px) {
  .contact-form .form-post {
    padding-left: 15px;
  }
}
.contact-form ::placeholder {
  color: #acacac;
  font-size: 16px;
  font-size: 1.6rem;
}
.contact-form:focus {
  outline: 1px solid #ed1b23;
  outline-offset: 2px;
}
.contact-form .button-send {
  cursor: pointer;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  display: block;
  text-decoration: none;
  background: #000;
  color: #EDF1F2;
  position: relative;
  text-align: center;
  font-family: "Zen Old Mincho";
  @icnlude appearance;
  transition: 0.2s all ease-out;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 50px;
  width: 240px;
  height: 50px;
  margin-left: 200px;
  display: inline-block;
  letter-spacing: 0.3em;
}
@media all and (max-width: 980px) {
  .contact-form .button-send {
    margin: 0 auto;
  }
}
.contact-form .button-send {
  position: relative;
}
.contact-form .button-send::after {
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  display: block;
  content: "";
  background: url(/img/arrow.svg) no-repeat;
  width: 10px;
  height: 10px;
}
.contact-form .button-send2 {
  cursor: pointer;
  display: block;
  text-decoration: none;
  background: #000;
  color: #EDF1F2;
  position: relative;
  text-align: center;
  font-family: "Zen Old Mincho";
  @icnlude appearance;
  transition: 0.2s all ease-out;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 50px;
  width: 240px;
  height: 50px;
  margin: 0 10px 0 0;
  display: inline-block;
}
@media all and (max-width: 620px) {
  .contact-form .button-send2 {
    display: block;
    margin: 0 0 20px 0;
  }
}

.agree-unit {
  display: flex;
  background: #fbf3f2 !important;
  padding: 20px 40px;
  max-width: 450px;
  border-radius: 5px;
  margin: 0 auto 40px;
}
@media all and (max-width: 620px) {
  .agree-unit {
    padding: 20px 10px;
  }
}
.agree-unit p {
  margin: 0;
}
.agree-unit .required {
  float: none;
  margin: 3px 30px 0 0;
  width: 45px;
  height: 21px;
  padding: 5px 0;
  text-align: center;
}
@media all and (max-width: 620px) {
  .agree-unit .required {
    margin: 3px 15px 0 0;
  }
}

.step {
  margin: 0 0 60px 0;
}
@media all and (max-width: 620px) {
  .step {
    display: none;
  }
}
.step ul {
  overflow: hidden;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
.step li {
  width: 33%;
  color: #333;
  text-decoration: none;
  padding: 10px 0;
  background: #f1f1f1;
  position: relative;
  display: block;
  text-align: center;
}
.step li.crr {
  background: #000;
  color: #fff;
}

#formArea table {
  width: 100%;
  font-size: 1.4rem;
  margin: 30px 0;
  border-top: 1px solid #a0a0a0;
  border-collapse: collapse;
}

#formArea form {
  max-width: 640px;
}

#formArea th {
  padding: 15px;
  width: 150px;
  text-align: left;
}
@media all and (min-width: 981px) {
  #formArea th {
    border-bottom: 1px solid #a0a0a0;
  }
}
@media all and (max-width: 980px) {
  #formArea th {
    padding: 15px 0 0 0;
    width: 100%;
    display: block;
  }
}

#formArea td {
  padding: 15px;
  border-bottom: 1px solid #a0a0a0;
}
@media all and (max-width: 980px) {
  #formArea td {
    display: block;
    padding: 15px 0 15px 0;
  }
}

.red {
  background: #fbf3f2 !important;
}

.mark ~ span {
  position: relative;
  padding: 0 0 0 35px;
}
.mark ~ span::before {
  display: block;
  content: "";
  border: 2px solid #7FBF34;
  background: #f1f1f1;
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 15px;
  width: 25px;
  height: 25px;
  vertical-align: top;
  border-radius: 5px;
}

.mark ~ .thumbnail {
  padding-top: 65%;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.mark ~ .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mark-re + span {
  position: relative;
  padding: 0 0 0 35px;
}
.mark-re + span::before {
  display: block;
  content: "";
  border: 1px solid #dfa69f;
  position: absolute;
  background: #fbf3f2;
  left: 0;
  top: -5px;
  margin-right: 15px;
  width: 27px;
  height: 27px;
  vertical-align: top;
}

.mark-radio + span {
  position: relative;
  padding: 0 0 0 35px;
}
.mark-radio + span::before {
  display: block;
  content: "";
  border: 2px solid #7FBF34;
  background: #f1f1f1;
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  vertical-align: top;
  border-radius: 50%;
}

.mark:checked ~ span::after {
  display: block;
  content: "";
  background: #7FBF34;
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 5px;
}

.mark:checked ~ .thumbnail img {
  border: 2px solid #7FBF34;
  box-sizing: border-box;
}

.mark-re:checked + span::after {
  display: block;
  content: "";
  box-sizing: border-box;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  top: 15%;
  left: 5px;
  width: 18px;
  height: 9px;
  transform: rotate(-45deg);
}

.mark-radio:checked + span::after {
  display: block;
  content: "";
  background: #7FBF34;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.select-list {
  margin: 8px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.select-list li {
  margin: 0 30px 10px 0;
}

.document {
  margin-left: 210px !important;
  margin-bottom: 40px;
  margin-top: -20px;
}
@media all and (max-width: 980px) {
  .document {
    margin-left: 10px !important;
    margin-top: -25px !important;
  }
  .document p br {
    display: block !important;
  }
}

.radio-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.radio-list li {
  margin: 0 10px 15px 0;
  min-width: 18%;
}

select {
  appearance: none; /* デフォルトのスタイルを無効 */
}

.noun,
.noun-time {
  color: #333 !important;
  font-size: 16px !important;
  margin: 6px 30px 0 2px;
  padding: 0 0 0 5px;
  white-space: nowrap;
}

.reservetime {
  display: flex;
}

.r-time {
  margin-bottom: 20px !important;
}

.first {
  border-bottom: 1px solid #a0a0a0;
  padding: 20px 0 0 0;
  position: relative;
  margin: 0px 0 30px;
}
.first p {
  position: absolute;
  top: 0;
  background: #EDF1F2;
  padding: 10px 10px 10px 0;
}

.formcaution {
  color: #333 !important;
  background: #f1f1f1;
  padding: 25px 20px;
  margin: 0 0 40px 0;
}
@media all and (max-width: 620px) {
  .formcaution br {
    display: block;
  }
}

.questionnaire {
  margin: 50px 0 0 -10px;
}
@media all and (max-width: 980px) {
  .questionnaire {
    margin: 0 0 0 -10px;
  }
}

.form-page h3 {
  margin: 0 0 30px 0;
  font-size: 18px;
  font-size: 1.8rem;
}

.confirm-form {
  max-width: 730px;
  margin: 0 auto;
}

.confirm-text {
  margin: 0 0 40px 0;
}

.confirm-list {
  margin: 0 0 60px 0;
}
.confirm-list dt {
  border-bottom: 1px solid #ccc;
  margin: 0;
  padding: 10px 0;
}
.confirm-list dd {
  margin: 0 0 15px 0;
  padding: 10px 0;
}

@media all and (max-width: 620px) {
  .btn-list .button-basic {
    width: 100%;
  }
}
@media all and (max-width: 620px) {
  .btn-list .button-back {
    width: 100%;
  }
}

.send-conf {
  cursor: pointer;
  width: 100%;
  color: #fff !important;
  background: #7FBF34 !important;
}
.send-conf:hover {
  opacity: 0.6;
  transition: 0.2s;
}

.send-unit {
  position: relative;
}
.send-unit img {
  position: absolute;
  top: 33%;
  right: 20px;
  transform: translateY(-50%);
  width: 4px;
  height: 9px;
}
@media all and (max-width: 620px) {
  .send-unit img {
    top: 50%;
  }
}

#error-list {
  margin: 0 0 40px 0;
}

.flex-units {
  display: flex;
}
@media all and (max-width: 980px) {
  .flex-units {
    display: block;
  }
}
.flex-units .unit {
  display: flex;
  margin-bottom: 20px;
}

.left-float {
  float: left;
}

.form-cont {
  margin: 0 0 20px 0;
  width: 100%;
}

.slects {
  height: 40px;
  border: 1px solid #a0a0a0;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  background: #fff;
  padding: 0 10px;
}

.select-unit {
  position: relative;
}

.select-unit::before {
  position: absolute;
  top: 45%;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

.select-lists {
  margin: 8px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.select-lists li {
  margin: 0 30px 20px 0;
}

.form-chance {
  margin: 0 0 0 210px;
  padding-top: 10px;
}
@media all and (max-width: 980px) {
  .form-chance {
    margin: 0;
    padding: 0;
  }
}

.block-unit {
  width: 100%;
}

.sonota {
  height: 100px !important;
}

.policy-zone {
  border: 1px solid #c4c4c4;
  padding: 30px 20px;
  margin-bottom: 30px;
  height: 200px;
  overflow: auto;
}
.policy-zone .privacy {
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 25px;
}
.policy-zone .policy-unit {
  margin-bottom: 60px;
}
.policy-zone .policy-unit h3 {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 0 10px 0;
  font-family: "Zen Old Mincho";
}

.toiawase {
  margin-top: -5px !important;
}

.select-docu {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 620px) {
  .select-docu {
    justify-content: space-between;
    margin-top: 15px;
  }
}
.select-docu li {
  width: 22.8%;
  margin-right: 2.9%;
  margin-bottom: 25px;
}
.select-docu li:last-child {
  margin-right: 0;
}
@media all and (max-width: 620px) {
  .select-docu li {
    width: 48%;
    margin-right: 0;
  }
}

.re-img {
  margin-left: 0 !important;
}

.ui-datepicker {
  border-radius: 0;
}

.ui-datepicker .ui-datepicker-header {
  background: none;
  border: none;
  border-radius: 0;
  font-weight: normal;
}

.ui-datepicker .ui-state-default {
  background: #efefef;
  border-color: #efefef;
  color: #333333;
}

.ui-datepicker .ui-state-hover {
  background: #fff;
  border: #fff;
}

.ui-datepicker .ui-state-highlight {
  background: #E96C00;
  border-color: #efefef;
  color: #fff;
}

.ui-datepicker-trigger {
  display: block;
  appearance: none;
  border: none;
  padding: 0;
  outline: none;
  display: inline-block;
  content: "";
  background: url(/img/cal-icon.svg) no-repeat;
  width: 23px;
  height: 23px;
  vertical-align: middle;
  margin: 18px 0 0 13px;
}

.contents-unit {
  display: flex;
  flex-direction: column;
}
.contents-unit li {
  width: 100%;
}

.first-viewimg {
  width: 100%;
  height: 100vh;
  position: relative;
}
.first-viewimg a {
  opacity: 1;
}
.first-viewimg .viewimg-unit {
  position: relative;
}
.first-viewimg .viewimg-unit img {
  object-fit: cover;
  width: 100%;
  height: 100svh;
}
.first-viewimg .viewimg-unit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.topimg-list {
  display: flex;
  flex-wrap: wrap;
}
.topimg-list .topimg-block {
  width: 50%;
  position: relative;
}
.topimg-list .topimg-block h2 {
  margin: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: #000;
  font-size: 14px;
  font-size: 1.4rem;
}
.topimg-list .topimg-block h2:hover {
  opacity: 0.8;
}
.topimg-list .topimg-block .flex-unit {
  display: flex;
  flex-wrap: wrap;
}
.topimg-list .topimg-block .thumbnail {
  padding-top: 60%;
  width: 100%;
  position: relative;
}
.topimg-list .topimg-block .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topimg-list .text-block {
  width: 100%;
  max-width: 1040px;
  margin: 100px auto;
}
.topimg-list .text-block h2 {
  margin: 0 0 20px 0;
}
.topimg-list .flow-block {
  width: 100%;
  max-width: 1040px;
  margin: 100px auto;
}
.topimg-list .flow-block h2 {
  margin: 0 0 50px 0;
}
.topimg-list .flow-block .flow-reed {
  margin-bottom: 40px;
}
.topimg-list .flow-block .flow-unit {
  border-left: 1px dashed #000;
  padding: 30px 0 60px 0;
  margin-bottom: 2px;
  margin-left: 8px;
  display: flex;
  color: #000;
}
.topimg-list .flow-block .flow-unit h3 {
  font-size: 14px;
  font-size: 1.4rem;
  padding-left: 30px;
  width: 180px;
  position: relative;
}
.topimg-list .flow-block .flow-unit h3::before {
  position: absolute;
  top: 6px;
  left: -8px;
  display: block;
  content: "";
  background: url(/img/flowarrow.svg) no-repeat;
  width: 17px;
  height: 17px;
}
.topimg-list .flow-block .flow-unit ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 550px;
}
.topimg-list .flow-block .flow-unit ul li {
  width: 50%;
}
@media all and (max-width: 620px) {
  .topimg-list .flow-block .flow-unit ul {
    display: block;
  }
  .topimg-list .flow-block .flow-unit ul li {
    width: 100%;
  }
}
.topimg-list .flow-block .soudan {
  padding: 60px 0 60px 0;
}
.topimg-list .concept-block {
  width: 100%;
  max-width: 1040px;
  margin: 100px auto;
}
.topimg-list .concept-block h2 {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.topimg-list .concept-block ul {
  color: #000;
  padding: 20px 40px;
  border-left: 1px solid #000;
  margin-bottom: 30px;
}
@media all and (max-width: 620px) {
  .topimg-list .concept-block ul {
    padding: 20px 0px 20px 20px;
  }
}

.imglist:first-child:nth-last-child(2),
.imglist:first-child:nth-last-child(2) ~ .imglist {
  width: 50%;
}

.imglist:first-child:nth-last-child(3),
.imglist:first-child:nth-last-child(3) ~ .imglist {
  width: 100%;
  padding-top: 30%;
}
.imglist:first-child:nth-last-child(3):nth-child(n+2),
.imglist:first-child:nth-last-child(3) ~ .imglist:nth-child(n+2) {
  width: 50%;
}