@charset "UTF-8";
/* common css */
body {
  color: #393939;
  font-family: "YakuHanMP", "YakuHanJP", "Noto Sans JP", sans-serif;
  background: none;
  font-size: 16px;
  /* デフォルトのフォントサイズを設定 */
  -webkit-text-size-adjust: none;
  /* iOS Safari向けのプレフィックス */
  -moz-text-size-adjust: none;
  /* Firefox向けのプレフィックス */
  -ms-text-size-adjust: none;
  /* Microsoft Edge向けのプレフィックス */
  text-size-adjust: none;
}

a,
.link {
  color: #ffba60;
  transition: all 0.5s;
}
a.tdon,
.link.tdon {
  text-decoration: underline;
}
a:hover,
.link:hover {
  color: rgb(255, 163.8679245283, 45);
  transition: all 0.5s;
}

button,
input,
select,
textarea {
  font-size: 100%;
  /* Corrects font size in all browsers */
  margin: 0;
  /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
  vertical-align: baseline;
  /* Appearance and consistency in all browsers */
  *vertical-align: middle;
  /* Appearance and consistency in IE6/IE7 */
}

input[type=text],
input[type=email],
input[type=url],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
input[type=password],
input[type=file],
textarea {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-bottom: 1rem;
  background-color: #fafafa;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 36px;
  font-family: "YakuHanMP", "YakuHanJP", "Noto Sans JP", sans-serif;
}

input[type=search] {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

input[type=reset],
input[type=button],
input[type=submit] {
  background-color: #ffba60;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 0 none;
  color: #fff;
  cursor: pointer;
  display: block;
  margin-bottom: 30px;
  padding: 6px 18px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

input[type=reset]:hover,
input[type=button]:hover,
input[type=submit]:hover {
  background-color: #747474;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

input[type=search]:focus {
  background-color: #f8f8f8;
}

input[type=checkbox],
input[type=radio] {
  padding: 0;
  /* Addresses excess padding in IE8/9 */
}

input[type=search] {
  -webkit-appearance: none;
  appearance: none;
}

input[type=color] {
  position: relative;
  top: 0.25em;
}

label {
  display: block;
  margin: 0.25em 0;
}

.radio-g {
  margin: 0;
}
.radio-g label {
  position: relative;
  padding: 0.25em 1em 0.25em 2em;
  line-height: 1;
  margin: 0.5em 0;
}
.radio-g label input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  margin: 0;
  width: 1.5em;
  height: 1.5em;
  border-radius: 100%;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: rgb(0, 0, 0) 0 0 4px -2px;
  background-color: rgb(255, 255, 255);
  background-image: radial-gradient(#ffba60 0%, #ffba60 15%, #ffba60 45%, rgba(0, 0, 0, 0) 45%);
  background-repeat: no-repeat;
  background-size: 0 0;
  background-position: center;
  transform-origin: center;
  outline: none;
}
.radio-g label input[type=radio]:checked {
  border: solid 2px #ffba60;
  background-size: 100% 100%;
  transition: background-size 0.1s cubic-bezier(0, 0, 0.2, 1);
  transform-origin: center;
}
.radio-g label input[type=radio]:active {
  transform: scale(1.2);
  transform-origin: center;
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
}
.radio-g.inline {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
}
.radio-g.inline label {
  display: inline-block;
  margin: 0 0 0.5em;
}

.checkbox-g {
  margin: 0;
}
.checkbox-g label {
  position: relative;
  padding: 0.25em 1em 0.25em 2em;
  line-height: 1;
  margin: 0.5em 0;
}
.checkbox-g label input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  margin: 0;
  width: 1.5em;
  height: 1.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.9) 0 0 4px -2px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  transform-origin: center;
  outline: none;
}
.checkbox-g label input[type=checkbox]::after {
  content: "";
  display: block;
  width: 30%;
  height: 60%;
  position: absolute;
  top: 15%;
  left: 30%;
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  filter: invert(10%) grayscale(100%) contrast(100%);
}
.checkbox-g label input[type=checkbox]:checked {
  border: solid 2px #ffba60;
}
.checkbox-g label input[type=checkbox]:checked::after {
  content: "";
  display: block;
  width: 30%;
  height: 60%;
  position: absolute;
  top: 15%;
  left: 30%;
  border: 2px solid #ffba60;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  filter: none;
}
.checkbox-g label input[type=checkbox]:active {
  transform: scale(1.2);
  transform-origin: center;
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
}
.checkbox-g.inline {
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
}
.checkbox-g.inline label {
  display: inline-block;
  margin: 0 0 0.5em;
}

.selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.selectbox select {
  appearance: none;
  min-width: 180px;
  height: 2.2em;
  padding: 0.1em calc(0.8em + 30px) 0.1em 0.8em;
  border: 1px solid #cccccc;
  border-radius: 5px;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}
.selectbox select:focus {
  outline: none;
  background-color: #fff;
}
.selectbox select:active {
  background-color: #fff;
}

/* 見た目を通常のselectと同じようにする */
select[multiple] {
  height: auto;
  overflow: hidden;
  white-space: nowrap;
}

select[multiple] option {
  white-space: nowrap;
}

/* 必要に応じて、サイズや幅を調整する */
select[multiple] {
  height: 40px;
  /* 通常の高さに合わせる */
  width: 100%;
  /* 幅を100%に */
  box-sizing: border-box;
  cursor: pointer;
}

/* オプションの選択時にフォーカスが分かるように */
select[multiple]:focus {
  outline: none;
  border-color: #007BFF;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

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

.password-wrapper {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 1rem;
}
.password-wrapper .password__input {
  flex: 1;
  outline: none;
  appearance: none;
  padding: 10px 0 10px 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  margin: 0;
}
.password-wrapper .password__toggle {
  width: 40px;
  border: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='48' width='48'><path d='M24 31.5q3.55 0 6.025-2.475Q32.5 26.55 32.5 23q0-3.55-2.475-6.025Q27.55 14.5 24 14.5q-3.55 0-6.025 2.475Q15.5 19.45 15.5 23q0 3.55 2.475 6.025Q20.45 31.5 24 31.5Zm0-2.9q-2.35 0-3.975-1.625T18.4 23q0-2.35 1.625-3.975T24 17.4q2.35 0 3.975 1.625T29.6 23q0 2.35-1.625 3.975T24 28.6Zm0 9.4q-7.3 0-13.2-4.15Q4.9 29.7 2 23q2.9-6.7 8.8-10.85Q16.7 8 24 8q7.3 0 13.2 4.15Q43.1 16.3 46 23q-2.9 6.7-8.8 10.85Q31.3 38 24 38Zm0-15Zm0 12q6.05 0 11.125-3.275T42.85 23q-2.65-5.45-7.725-8.725Q30.05 11 24 11t-11.125 3.275Q7.8 17.55 5.1 23q2.7 5.45 7.775 8.725Q17.95 35 24 35Z'/></svg>") no-repeat center center;
  background-size: 50% auto;
  cursor: pointer;
}
.password-wrapper .password__toggle.is-visible {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='48' width='48'><path d='m31.45 27.05-2.2-2.2q1.3-3.55-1.35-5.9-2.65-2.35-5.75-1.2l-2.2-2.2q.85-.55 1.9-.8 1.05-.25 2.15-.25 3.55 0 6.025 2.475Q32.5 19.45 32.5 23q0 1.1-.275 2.175-.275 1.075-.775 1.875Zm6.45 6.45-2-2q2.45-1.8 4.275-4.025Q42 25.25 42.85 23q-2.5-5.55-7.5-8.775Q30.35 11 24.5 11q-2.1 0-4.3.4-2.2.4-3.45.95L14.45 10q1.75-.8 4.475-1.4Q21.65 8 24.25 8q7.15 0 13.075 4.075Q43.25 16.15 46 23q-1.3 3.2-3.35 5.85-2.05 2.65-4.75 4.65Zm2.9 11.3-8.4-8.25q-1.75.7-3.95 1.075T24 38q-7.3 0-13.25-4.075T2 23q1-2.6 2.775-5.075T9.1 13.2L2.8 6.9l2.1-2.15L42.75 42.6ZM11.15 15.3q-1.85 1.35-3.575 3.55Q5.85 21.05 5.1 23q2.55 5.55 7.675 8.775Q17.9 35 24.4 35q1.65 0 3.25-.2t2.4-.6l-3.2-3.2q-.55.25-1.35.375T24 31.5q-3.5 0-6-2.45T15.5 23q0-.75.125-1.5T16 20.15Zm15.25 7.1Zm-5.8 2.9Z'/></svg>");
}

@media (any-hover: hover) {
  .password__toggle:hover {
    opacity: 0.7;
  }
}
.rating-set {
  display: flex;
}
.rating-set input {
  display: none;
}
.rating-set label {
  color: #aaa;
}
.rating-set label.checked {
  color: #ff7f00;
}

.btn {
  display: inline-block;
  text-align: center;
  padding: 0.25em 2em;
  background-color: #ffba60;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-weight: bold;
}
.btn.lg {
  padding: 1em 4em;
}
.btn:hover {
  background-color: rgb(255, 163.8679245283, 45);
  color: #fff;
}
.btn.light {
  background-color: #7175af;
}

img {
  max-width: 100%;
}

.fbox {
  display: flex;
  gap: 1.5rem;
}
.fbox > * {
  flex: 0 0 100%;
}
@media (min-width: 769px) {
  .fbox > *.fitem-2 {
    flex: 0 0 calc(50% - 0.75rem) !important;
  }
  .fbox > *.fitem-3 {
    flex: 0 0 calc(33.333% - 1rem) !important;
  }
  .fbox > *.fitem-4 {
    flex: 0 0 calc(25% - 1.125rem) !important;
  }
  .fbox > *.fitem-5 {
    flex: 0 0 calc(20% - 1.2rem) !important;
  }
  .fbox > *.fitem-6 {
    flex: 0 0 calc(16.666% - 1.25rem) !important;
  }
}
.fbox.no-gap {
  gap: 0;
}
.fbox.no-gap > * {
  flex: 0 0 100%;
}
@media (min-width: 769px) {
  .fbox.no-gap > *.fitem-3 {
    flex: 0 0 50% !important;
  }
  .fbox.no-gap > *.fitem-3 {
    flex: 0 0 33.333% !important;
  }
  .fbox.no-gap > *.fitem-4 {
    flex: 0 0 25% !important;
  }
  .fbox.no-gap > *.fitem-5 {
    flex: 0 0 20% !important;
  }
  .fbox.no-gap > *.fitem-6 {
    flex: 0 0 16.666% !important;
  }
}
.fbox.jc-center {
  justify-content: center;
}
.fbox.jc-sa {
  justify-content: space-around;
}
.fbox.jc-sb {
  justify-content: space-between;
}
.fbox.wrap {
  flex-wrap: wrap;
}
.fbox.fd-row {
  flex-direction: row;
}
.fbox.fd-column {
  flex-direction: column;
}
.fbox .full {
  flex: 0 0 100%;
  width: 100%;
}
.fbox .half {
  flex: 0 0 100%;
  width: 100%;
}
@media (min-width: 769px) {
  .fbox .half {
    flex: 0 0 50%;
    width: 50%;
  }
}

.auto-divide {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: left;
  justify-content: center;
}
.auto-divide > * {
  flex: 0 0 100%;
}
@media (min-width: 769px) {
  .auto-divide > *.fitem-2 {
    flex: 0 0 calc(50% - 0.75rem) !important;
  }
  .auto-divide > *.fitem-3 {
    flex: 0 0 calc(33.333% - 1rem) !important;
  }
  .auto-divide > *.fitem-4 {
    flex: 0 0 calc(25% - 1.125rem) !important;
  }
  .auto-divide > *.fitem-5 {
    flex: 0 0 calc(20% - 1.2rem) !important;
  }
  .auto-divide > *.fitem-6 {
    flex: 0 0 calc(16.666% - 1.25rem) !important;
  }
}
.auto-divide.no-gap {
  gap: 0;
}
.auto-divide.no-gap > * {
  flex: 0 0 100%;
}
@media (min-width: 769px) {
  .auto-divide.no-gap > *.fitem-3 {
    flex: 0 0 50% !important;
  }
  .auto-divide.no-gap > *.fitem-3 {
    flex: 0 0 33.333% !important;
  }
  .auto-divide.no-gap > *.fitem-4 {
    flex: 0 0 25% !important;
  }
  .auto-divide.no-gap > *.fitem-5 {
    flex: 0 0 20% !important;
  }
  .auto-divide.no-gap > *.fitem-6 {
    flex: 0 0 16.666% !important;
  }
}

.t-l {
  text-align: left;
}

.t-r {
  text-align: right;
}

.t-c {
  text-align: center;
}

br.sp {
  display: block;
}
@media (min-width: 769px) {
  br.sp {
    display: none;
  }
}
br.pc {
  display: none;
}
@media (min-width: 769px) {
  br.pc {
    display: block;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: solid 1px #aaa;
  margin-bottom: 1rem;
}
table tr {
  border-bottom: solid 1px #aaa;
}
table tr th {
  padding: 0.5rem;
  text-align: center;
  border-right: solid 1px #aaa;
  background-color: rgba(0, 0, 0, 0.2);
  width: 9rem;
  font-size: 0.7rem;
}
@media (min-width: 769px) {
  table tr th {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    width: 15rem;
  }
}
table tr td {
  padding: 0.5rem;
  text-align: left;
  width: calc(100% - 9rem);
}
@media (min-width: 769px) {
  table tr td {
    padding: 0.5rem 1rem;
    width: calc(100% - 15rem);
  }
}
table tfoot tr {
  background-color: rgba(0, 0, 0, 0.2) !important;
  border-bottom: none;
}
table.alt tr {
  background-color: #fff;
}
table.alt tr:nth-child(odd) {
  background-color: rgba(199, 230, 206, 0.5);
}
table .btn {
  padding: 0.25em 1em;
  margin: 0;
}

.accordion {
  width: 100%;
  margin: 0.75rem auto 1.5rem;
}
.accordion .a_item {
  border: 1px solid #ccc;
  margin-top: 0.75rem;
  cursor: pointer;
}
.accordion .a_item .a_title {
  position: relative;
  padding: 15px 60px 15px 20px;
  font-weight: bold;
  cursor: pointer;
}
.accordion .a_item .a_title::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #ffba60;
  width: 20px;
  height: 4px;
  transition: all 0.3s;
}
.accordion .a_item .a_title::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #ffba60;
  width: 20px;
  height: 4px;
  transition: all 0.3s;
  transform: rotate(90deg);
}
.accordion .a_item .a_content {
  padding: 0 20px 15px 20px;
  display: none;
  cursor: pointer;
}
.accordion .a_item .a_content.is-open {
  display: block;
}
.accordion .a_item.is-active .a_title::before {
  transform: rotate(180deg);
}
.accordion .a_item.is-active .a_title::after {
  transform: rotate(180deg);
  opacity: 0;
}

.tab-container {
  width: 100%;
  margin: 0 auto;
}
.tab-container .tab-menu ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tab-container .tab-menu ul li {
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: inline-block;
  width: auto;
}
.tab-container .tab-item > div {
  display: none;
}
.tab-container .tab-item > div.active {
  display: block;
}

.stab-container {
  width: 100%;
  margin: 0 auto;
}
.stab-container .stab-menu ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.stab-container .stab-menu ul li {
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: inline-block;
  width: auto;
}
.stab-container .stab-item > div {
  display: none;
}
.stab-container .stab-item > div.active {
  display: block;
}

.modal .modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 200;
}
.modal .modal__overlay .modal__container {
  background-color: #fff;
  padding: 2rem;
  max-width: 800px;
  width: 80vw;
  max-height: 80vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
}
.modal .modal__overlay .modal__container .modal__close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 2em;
  height: 2em;
  line-height: 1;
  padding: 0.5em;
  border-radius: 100%;
  border: 0;
}
.modal .modal__overlay .modal__container .modal__close:before {
  content: "✕";
}

/**************************\
	Demo Animation Style
  \**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* keyframes */
@keyframes animbg {
  from {
    background-position: 100% 100%;
  }
  to {
    background-position: 0 0;
  }
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/*
animation-name: animbg;
animation-fill-mode:backwards;
animation-duration:1s;
animation-iteration-count:1; //infinite
animation-timing-function:liner;
animation-delay: 0;
animation-direction:alternate;
*/
#comment {
  padding: 2px;
  border: solid 2px #ffba60;
  margin-bottom: 1.5rem;
  max-width: 922px;
  margin-right: auto;
  margin-left: auto;
}
#comment h2 {
  background-color: #ffba60;
  color: #fff;
  padding: 0.75rem;
  margin: 0;
  font-size: 1.2rem;
}
#comment .comment-container {
  padding: 1.5rem;
}
#comment .comment-container p {
  text-align: center;
  margin: 0;
}
#comment .comment-container .comment h3 {
  font-size: 1.2rem;
  font-weight: bold;
}
#comment .comment-container .comment .k-content {
  font-weight: 300;
}
#comment .comment-container .comment .k-content {
  margin: 1.5rem auto;
}
#comment .comment-container .comment .k-meta {
  display: flex;
  gap: 0.25rem;
  justify-content: flex-start;
  font-weight: 300;
  flex-direction: column;
}
@media (min-width: 769px) {
  #comment .comment-container .comment .k-meta {
    gap: 1.5rem;
    flex-direction: row;
  }
}
#comment .comment-container .comment .k-meta span {
  display: inline-block;
}
#comment .comment-container .comment .k-meta span.k-rate-1:before {
  content: "★";
  color: #ff7f00;
}
#comment .comment-container .comment .k-meta span.k-rate-1:after {
  content: "★★★★";
  color: #aaa;
}
#comment .comment-container .comment .k-meta span.k-rate-2:before {
  content: "★★";
  color: #ff7f00;
}
#comment .comment-container .comment .k-meta span.k-rate-2:after {
  content: "★★★";
  color: #aaa;
}
#comment .comment-container .comment .k-meta span.k-rate-3:before {
  content: "★★★";
  color: #ff7f00;
}
#comment .comment-container .comment .k-meta span.k-rate-3:after {
  content: "★★";
  color: #aaa;
}
#comment .comment-container .comment .k-meta span.k-rate-4:before {
  content: "★★★★";
  color: #ff7f00;
}
#comment .comment-container .comment .k-meta span.k-rate-4:after {
  content: "★";
  color: #aaa;
}
#comment .comment-container .comment .k-meta span.k-rate-5:before {
  content: "★★★★★";
  color: #ff7f00;
}
#comment .comment-container .comment .k-meta span.k-rate-5:after {
  content: "";
  color: #aaa;
}

#post-com-container {
  padding: 0;
  border: solid 1px #ffba60;
  max-width: 922px;
  margin-right: auto;
  margin-left: auto;
}
#post-com-container #com-trigger {
  padding: 0.75rem;
  text-align: center;
  font-size: 1.2rem;
  background-color: #fff;
  color: #ffba60;
}
#post-com-container #com-inner {
  border-top: solid 1px #ffba60;
  padding: 0;
  background-color: #f1f1f1;
}
#post-com-container #com-inner form div {
  padding: 1.5rem;
}
#post-com-container #com-inner form div + div {
  border-top: solid 1px #ffba60;
}
#post-com-container #com-inner form div h3 {
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
#post-com-container #com-inner form div h3 span {
  background-color: #393939;
  color: #fff;
  padding: 0.25em 0.75em;
  border-radius: 1em;
  font-size: 0.6em;
  margin-left: 1em;
  line-height: 1em;
}
#post-com-container #com-inner form div.send {
  border: none;
  text-align: center;
  margin-top: -1.5rem;
}
#post-com-container #com-inner form div.attention h3 {
  text-align: center;
  color: #8f252c;
}
#post-com-container #com-inner form div.attention p {
  max-width: 600px;
  margin: 1rem auto;
}
#post-com-container #com-inner form div p {
  font-size: 0.8em;
}
#post-com-container #com-inner form div input,
#post-com-container #com-inner form div textarea {
  border: none;
  margin-bottom: 0.75rem;
}
#post-com-container #com-inner form div input[type=text]:focus,
#post-com-container #com-inner form div input[type=password]:focus,
#post-com-container #com-inner form div textarea:focus {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.05);
}
#post-com-container #com-inner form div input[type=text]:focus,
#post-com-container #com-inner form div input[type=password]:focus,
#post-com-container #com-inner form div textarea:active {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.05);
}
#post-com-container #com-inner form div div {
  background-color: #fff;
  padding: 0.75rem;
}

.hidden {
  display: none !important;
}

.parallax {
  position: relative;
  height: 50vh;
  /* パフォーマンスを最適化 */
  overflow: hidden;
}
.parallax .inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  /* 半透明 */
}
.parallax .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  clip-path: inset(0);
}
.parallax .bg .img {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*
&.parallax{
	height: 100vh;
	text-align: center;
	.bg{
		.img{
			background-image: url('../images/reesoratop.webp');
		}
	}
}
*/
/* this site css start */
.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

header {
  background-color: #f5f2f0;
  padding: 1.5rem 0;
  text-align: center;
}

.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem;
}
.container.noside {
  padding: 1.5rem 0;
}

#rule {
  text-align: center;
}

#attentions {
  text-align: left;
  margin: 0 auto;
  padding: 1.5rem;
  width: 100%;
  max-width: 600px;
  height: 300px;
  overflow-y: scroll;
  border: solid 1px #393939;
}
#attentions h3 {
  font-size: 1.1rem;
  font-weight: bold;
}

#reservation {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

footer {
  background-color: rgb(9.3, 5.2641509434, 0);
  padding: 1.5rem 0 5.5rem;
}
@media (min-width: 769px) {
  footer {
    padding: 1.5rem 0;
  }
}
footer .copy {
  text-align: center;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: #aaa;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page header {
  position: absolute;
  z-index: 98;
  background: none;
  left: 0;
  top: 0;
  padding: 0.75rem;
}
@media (min-width: 769px) {
  .page header {
    left: 0;
    top: 0;
    padding-left: 5rem;
  }
}
.page header .logo img {
  height: 4rem;
  width: auto;
}
.page #toggle {
  background-color: rgb(14.4, 8.1509433962, 0);
  position: fixed;
  z-index: 100;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4rem;
}
@media (min-width: 769px) {
  .page #toggle {
    left: 0;
    top: 0;
    bottom: auto;
    width: 4rem;
    height: 100%;
  }
}
.page #toggle span {
  display: block;
  width: 3rem;
  height: 2px;
  background-color: #aaa;
  transition: rotate 0.2s;
}
.page #toggle.open {
  gap: 0;
}
.page #toggle.open span {
  display: block;
  width: 3rem;
  height: 2px;
  background-color: #aaa;
}
.page #toggle.open span:first-child {
  rotate: 45deg;
}
.page #toggle.open span:nth-child(2) {
  opacity: 0;
  display: none;
}
.page #toggle.open span:last-child {
  rotate: -45deg;
}
.page #gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  background-color: rgb(14.4, 8.1509433962, 0);
  translate: 0 100%;
  transition: translate 0.5s;
}
@media (min-width: 769px) {
  .page #gnav {
    width: 300px;
    padding: 0 0 0 4rem;
    translate: -100%;
  }
}
.page #gnav.open {
  translate: 0%;
}
.page #gnav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  width: 100%;
  gap: 1em;
}
.page #gnav ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.page #gnav ul li a {
  display: block;
  color: #aaa;
  text-decoration: none;
  width: 100%;
}

#sch {
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 90;
  background-color: #111;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  flex-direction: column;
  color: #fff;
  width: 4rem;
  height: 4rem;
  font-size: 0.75rem;
}
#sch .reserve-svg {
  width: 2rem;
  height: 2rem;
}
#sch .reserve-svg .icon-path {
  fill: white;
}
#sch:hover {
  background-color: rgba(17, 17, 17, 0.8);
}

@media (min-width: 769px) {
  #top main {
    margin-left: 4rem;
    width: calc(100% - 4rem);
  }
}
@media (min-width: 769px) {
  #top footer {
    margin-left: 4rem;
    width: calc(100% - 4rem);
  }
}
#top .slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}
#top .slider-container .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#top .slider-container .slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
#top .slider-container .slide .text {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  height: 100%;
}
#top .slider-container .slide .text p {
  font-size: 6vw;
  opacity: 0;
  transform: translateY(20px);
  margin: 0;
  font-weight: bold;
}
@media (min-width: 769px) {
  #top .slider-container .slide .text p {
    font-size: 3vw;
  }
}
#top section h2 {
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
@media (min-width: 769px) {
  #top section h2 {
    margin-bottom: 5rem;
  }
}
#top section h2 small {
  margin-top: 0.5rem;
  display: block;
}
#top section h3 {
  text-align: center;
  margin: 1em 0;
  font-weight: bold;
}
#top section h4 {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
}
#top section p {
  margin-bottom: 1em;
}
@media (min-width: 769px) {
  #top section p {
    text-align: center;
  }
}
#top section .attention {
  padding: 1.5rem;
  margin: 1.5rem 0;
  background-color: rgb(255, 229.5, 229.5);
}
#top section .attention h3 {
  font-size: 1rem;
}
#top section .attention p {
  font-size: 1rem;
}
#top #fee {
  background-color: #f5f2f0;
  padding: 3rem 0;
  width: 100%;
}
@media (min-width: 769px) {
  #top #fee {
    padding: 5rem 0;
  }
}
#top #fee .feebox {
  display: flex;
  width: 100%;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
  border: solid 1px #393939;
  padding: 1.5rem;
}
@media (min-width: 769px) {
  #top #fee .feebox {
    width: 100%;
    flex-direction: row;
    max-width: none;
    flex-wrap: wrap;
  }
}
#top #fee .feebox h4 {
  flex: 0 0 100%;
}
#top #fee .feebox ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
#top #fee .feebox ul li {
  margin: 0;
  padding: 0;
  display: flex;
  padding: 0.75rem;
  justify-content: center;
}
#top #fee .feebox ul li span {
  flex: 0 0 33%;
  display: inline-block;
  text-align: center;
  /* &:first-child {
  		text-align: left;
  	}
  	&:last-child {
  		text-align: right;
  	} */
}
#top #fee .feebox div {
  flex: 0 0 100%;
}
@media (min-width: 769px) {
  #top #fee .feebox div {
    flex: 0 0 33%;
  }
}
#top #facility {
  padding: 3rem 0;
}
@media (min-width: 769px) {
  #top #facility {
    padding: 5rem 0;
  }
}
#top #facility figure {
  display: block;
  margin: 3rem auto;
  width: 100%;
  position: relative;
  padding-top: 40%;
  overflow: hidden;
}
@media (min-width: 769px) {
  #top #facility figure {
    padding-top: 400px;
  }
}
#top #facility figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 769px) {
  #top #facility figure img {
    object-position: center 70%;
  }
}
#top #facility .sharespace {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  margin: 3rem auto;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  #top #facility .sharespace {
    flex-direction: row;
  }
}
#top #facility .sharespace .img {
  flex: 0 0 100%;
}
@media (min-width: 769px) {
  #top #facility .sharespace .img {
    flex: 0 0 40%;
  }
}
#top #facility .kitchen {
  margin: 3rem auto;
  max-width: 600px;
  padding: 1.5rem 0.75rem;
  border: solid 1px #111;
}
#top #facility .kitchen h4 {
  margin: -2.1rem auto 1rem;
  background-color: #fffffc;
  width: 5rem;
}
#top #facility .kitchen p {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
#top #facility .kitchen p span {
  display: inline-block;
  margin: 0 0.75rem;
}
#top #houtouse {
  background-color: #f5f2f0;
  padding: 3rem 0 0;
}
@media (min-width: 769px) {
  #top #houtouse .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
#top #houtouse .houto {
  border: solid 1px #111;
  padding: 1.5rem;
  margin-bottom: 3rem;
}
#top #houtouse .houto ul {
  margin: 0;
}
#top #houtouse h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: normal;
}
#top #houtouse h3 small {
  display: block;
  font-size: 0.6em;
}
@media (min-width: 769px) {
  #top #houtouse {
    padding: 5rem 0 0;
  }
}
#top #houtouse .center {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#top #houtouse .center p {
  text-align: left;
}
#top #houtouse .plan {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 3rem;
  flex-direction: column;
}
@media (min-width: 769px) {
  #top #houtouse .plan {
    flex-direction: row;
    margin-top: 5rem;
  }
}
#top #houtouse .plan > div {
  padding: 1.5rem;
  text-align: center;
  padding: 3rem 1.5rem;
}
@media (min-width: 769px) {
  #top #houtouse .plan > div {
    flex: 0 0 50%;
  }
}
@media (min-width: 769px) {
  #top #houtouse .plan > div {
    padding: 5rem;
  }
}
#top #houtouse .plan > div h4 {
  font-size: 1rem;
  font-weight: bold;
}
#top #houtouse .plan > div p {
  text-align: left;
}
@media (min-width: 769px) {
  #top #houtouse .plan > div p {
    text-align: center;
  }
}
#top #houtouse .plan > div.rp {
  background-color: rgb(147, 83.2075471698, 0);
  color: #fff;
}
@media (min-width: 769px) {
  #top #houtouse .plan > div.rp {
    padding-left: 5rem;
  }
}
#top #houtouse .plan > div.ep {
  color: #fff;
  background-color: rgb(96, 54.3396226415, 0);
}
#top #houtouse .about {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
}
#top #houtouse .about ul {
  list-style: none;
  text-align: left;
  width: 100%;
  padding: 0;
}
@media (min-width: 769px) {
  #top #houtouse .about ul {
    width: auto;
  }
}
#top #houtouse .about ul li {
  display: flex;
  margin-bottom: 0.5em;
}
#top #houtouse .about ul li span {
  display: inline-block;
  width: 7em;
  padding: 0;
}
#top #houtouse .about ul li span + span {
  width: calc(100% - 7em);
}
#top #access {
  background-color: #f5f2f0;
  padding: 3rem 1.5rem;
}
@media (min-width: 769px) {
  #top #access {
    padding: 5rem;
  }
}
#top #access h2 {
  margin-bottom: 0;
}
#top #access .ggmap {
  position: relative;
  width: 100%;
  padding-top: 65%;
}
#top #access .ggmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#top #access .fbox {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 769px) {
  #top #access .fbox {
    flex-direction: row;
  }
}
#top #access .fbox > div {
  padding: 1.5rem;
  flex: 0 0 100%;
  width: 100%;
  position: relative;
}
@media (min-width: 769px) {
  #top #access .fbox > div {
    flex: 0 0 50%;
    width: 50%;
  }
}
#top #reservation {
  background-color: rgb(45, 25.4716981132, 0);
  padding: 3rem 1.5rem;
  color: #fff;
}
@media (min-width: 769px) {
  #top #reservation {
    padding: 5rem;
  }
}

#terms_of_use {
  padding: 0;
}
@media (min-width: 769px) {
  #terms_of_use {
    padding: 0;
  }
}
#terms_of_use h1 {
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  padding: 5rem 1.5rem;
  background-color: #f5f2f0;
}
#terms_of_use h1 small {
  margin-top: 0.5rem;
  display: block;
}
#terms_of_use .container h3 {
  text-align: left;
  font-size: 1.2rem;
}
#terms_of_use .container p {
  text-align: left;
}/*# sourceMappingURL=base.css.map */