@charset "UTF-8";
/* Shutter In Horizontal */
/* ==========================================================================

	CONTACT

========================================================================== */
/*------------------------------------------------------------
	フォーム基本色
------------------------------------------------------------*/
:root {
  /* 必須 */
  --form-required:var(--mainColor);
  --form-required-text: #fff;
  /* 入力部分 */
  --form-input-border:#E4E6E8;
  --form-input-bgcolor:#fff;
  --form-checked-bgcolor:#B1B8BF;
  --form-select-arrow:var(--textAccentColor);
  --form-placeholder:#909295;
  /* ボタン */
  --form-btn-text:#fff;
  --form-btn-bgcolor:#4A4E53;
  --form-btn-bgcolor-hover:var(--linkHoverBgColor);
  /* エラー */
  --form-error-bgcolor:#ffe7e7;
  --form-error-text:#f00;
  /* プライバシーポリシー */
  --form-privacy-text:var(--textColor);
  --form-privacy-border:#B2B8BF;
}

/*------------------------------------------------------------
	form common
------------------------------------------------------------*/
/*--------------------------------
	フォーム基本レイアウト
--------------------------------*/
form {
  margin-bottom: 5em;
}
form dl {
  width: 100%;
  text-align: left;
  margin-bottom: 3em;
}
form dl > div {
  margin-bottom: 3.5rem;
}
form dl > div > dt {
  margin-bottom: 1rem;
}
form dl > div > dt i {
  display: inline-block;
  line-height: 1;
  color: var(--form-required-text);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: normal;
  padding: 0.3em 0.5em;
  margin-left: 1em;
  border-radius: 2px;
  background-color: var(--form-required);
}
form dl > div > dd ul {
  margin-bottom: 0;
}
form dl > div.age > dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
form dl > div.age > dd .selectWrapper {
  margin: 0;
}
form dl > div.age > dd > div:not(.selectWrapper) {
  font-size: 16px;
  padding-left: 1rem;
}
form dl > div.age > dd b.error {
  width: 100%;
}
@media print, screen and (max-width: 812px) {
  form dl > div.age > dd .selectWrapper {
    width: calc(100% - 2.5em);
  }
  form dl > div.age > dd > div:not(.selectWrapper) {
    width: 1.5em;
  }
}
/*--------------------------------
	フォーム要素スタイル
--------------------------------*/
form input[type=text], form input[type=email], form input[type=tel], form input[type=number], form input[type=date] {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  padding: 0.75em 1em;
  border-radius: 4px;
  border: solid 1px var(--form-input-border);
  background-color: var(--form-input-bgcolor);
  outline: none;
}
form input.zip {
  width: 50%;
}
form input.num {
  width: 6em;
}
form input[type=file] {
  line-height: 1;
  font-size: 1.3rem;
  outline: none;
}
form input[type=file] + img {
  margin-top: 15px;
}
form input[type=radio], form input[type=checkbox] {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.3em;
  border: solid 1px var(--form-input-border);
  position: relative;
  top: -1px;
  cursor: pointer;
}
form input[type=submit] {
  outline: 0;
}
form button {
  outline: 0;
}
form textarea {
  display: block;
  width: 100%;
  height: 12em;
  border: solid 1px var(--form-input-border);
  border-radius: 4px;
  background-color: var(--form-input-bgcolor);
  padding: 0.5em 1em;
  outline: none;
  resize: none;
}
form label {
  margin: 0 1.5em 0 0;
  cursor: pointer;
}
form label:last-of-type {
  margin-right: 0;
}
form .selectWrapper {
  width: 50%;
  display: inline-block;
  border: solid 1px var(--form-input-border);
  border-radius: 4px;
  margin: 0 auto;
  position: relative;
}
form .selectWrapper:after {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: solid 1px var(--form-select-arrow);
  border-right: solid 1px var(--form-select-arrow);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 1em;
  z-index: 2;
  pointer-events: none;
}
form .selectWrapper select {
  width: 100%;
  color: #000;
  padding: 0.75em 1em;
  border-radius: 4px;
  border: none;
  background-color: var(--form-input-bgcolor);
  position: relative;
  z-index: 1;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
form .selectWrapper select::-ms-expand {
  display: none;
}
form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: var(--form-placeholder);
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: var(--form-placeholder);
}
form input:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: var(--form-placeholder);
}
form input::-ms-input-placeholder, form textarea::-ms-input-placeholder {
  color: var(--form-placeholder);
}
form input::placeholder, form textarea::placeholder {
  color: var(--form-placeholder);
}
form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: var(--form-placeholder);
}
form input:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: var(--form-placeholder);
}
form input::-ms-input-placeholder, form textarea::-ms-input-placeholder {
  color: var(--form-placeholder);
}
@media print, screen and (max-width: 812px) {
  form input[type=text], form input[type=email], form input[type=tel], form input[type=number], form input[type=date] {
    width: 100%;
    font-size: 16px;
    padding: 0.6em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  form input.zip {
    width: 100%;
  }
  form input.num {
    width: 5em;
  }
  form input[type=radio], form input[type=checkbox] {
    top: -2px;
  }
  form input[type=radio]:checked, form input[type=checkbox]:checked {
    background-color: var(--form-checked-bgcolor) !important;
  }
  form input[type=submit] {
    border-radius: 0px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  form textarea {
    width: 100%;
    height: 8em;
    font-size: 16px;
    padding: 0.3em 0.6em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  form .selectWrapper {
    width: 100%;
  }
  form .selectWrapper select {
    font-size: 16px;
    padding: 0.6em;
  }
}
/*--------------------------------
    メッセージ
--------------------------------*/
.message {
  text-align: left;
  margin: 0 0 4em;
}
/*--------------------------------
    プライバシーポリシー
--------------------------------*/
#privacypolicy .privacypolicy_cnt {
  height: 200px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--form-privacy-text);
  text-align: justify;
  padding: 1.5em;
  margin-bottom: 2em;
  border: solid 1px var(--form-privacy-border);
  overflow-y: scroll;
}
#privacypolicy .privacypolicy_cnt h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 2em;
}
#privacypolicy .privacypolicy_cnt p {
  margin-bottom: 3em;
}
#privacypolicy .privacypolicy_cnt > ol {
  margin-bottom: 3em;
}
#privacypolicy .privacypolicy_cnt > ol > li {
  margin-bottom: 2em;
  counter-increment: privacyNumber;
}
#privacypolicy .privacypolicy_cnt > ol > li:last-child {
  margin-bottom: 0;
}
#privacypolicy .privacypolicy_cnt > ol > li span {
  display: block;
  font-weight: bold;
  margin-bottom: 1em;
}
#privacypolicy .privacypolicy_cnt > ol > li span:before {
  content: counter(privacyNumber) ".";
}
#privacypolicy .privacypolicy_cnt > ol > li ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-top: 10px;
}
#privacypolicy .privacypolicy_cnt > ol > li ul li {
  margin-bottom: 0.5em;
}
#privacypolicy .privacypolicy_cnt > ol > li ul li:last-child {
  margin-bottom: 0;
}
#privacypolicy .privacypolicy_cnt > address:before {
  display: block;
  content: "";
  width: 20%;
  margin-bottom: 1em;
  border-bottom: solid 1px #000;
}
#privacypolicy .privacypolicy_checkbox {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2em;
}
#privacypolicy .privacypolicy_checkbox a {
  text-decoration: underline;
}
@media print, screen and (max-width: 812px) {
  #privacypolicy .privacypolicy_cnt {
    height: 12em;
    font-size: 1.3rem;
  }
  #privacypolicy .privacypolicy_cnt h3 {
    font-size: 1.5rem;
  }
}
/*--------------------------------
	内容確認ボタン
--------------------------------*/
.confirmBtn {
  display: block;
  width: 50%;
  height: 60px;
  min-width: 400px;
  margin: 0 auto;
}
.confirmBtn input {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--form-btn-text);
  font-size: 1.6rem;
  text-align: center;
  border-radius: 4px;
  border: none;
  background-color: var(--form-btn-bgcolor);
  -webkit-transition: var(--animationSpeed);
  transition: var(--animationSpeed);
  cursor: pointer;
}
.confirmBtn input:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
@media print, screen and (max-width: 812px) {
  .confirmBtn {
    width: 100%;
    height: 50px;
    min-width: 0;
  }
}
@media print, screen and (min-width: 813px) {
  .confirmBtn input:hover {
    background-color: var(--form-btn-bgcolor-hover);
  }
}

/*--------------------------------
    戻るボタン + 送信ボタン
--------------------------------*/
.contactBtnWapper {
  display: block;
  text-align: center;
  margin: 0 auto;
}
/*--------------------------------
	戻るボタン
--------------------------------*/
.backBtn {
  display: inline-block;
  width: 150px;
  height: 60px;
  line-height: 60px;
  vertical-align: top;
  margin: 0 5px 0 0;
}
.backBtn a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 4px;
}
.backBtn a:link, .backBtn a:visited {
  color: var(--form-btn-text);
  background-color: var(--form-btn-bgcolor);
}
@media print, screen and (max-width: 812px) {
  .backBtn {
    display: block;
    width: 100%;
    height: auto;
    line-height: 2;
    text-align: left;
    margin: 0 auto 10px;
  }
  .backBtn a {
    display: inline;
    width: auto;
    border: none;
  }
  .backBtn a:link, .backBtn a:visited {
    color: #333;
    background-color: transparent;
  }
}
@media print, screen and (min-width: 813px) {
  .backBtn a:hover, .backBtn a:active {
    background-color: var(--form-btn-bgcolor-hover);
  }
}

/*--------------------------------
	送信ボタン
--------------------------------*/
.submitBtn {
  display: inline-block;
  width: 50%;
  min-width: 400px;
  height: 60px;
  line-height: 60px;
  vertical-align: top;
}
.submitBtn input {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--form-btn-text);
  font-size: 1.6rem;
  text-align: center;
  border-radius: 4px;
  border: none;
  background-color: var(--form-btn-bgcolor);
  cursor: pointer;
  -webkit-transition: var(--animationSpeed);
  transition: var(--animationSpeed);
}
@media print, screen and (max-width: 812px) {
  .submitBtn {
    width: 100%;
    height: 50px;
    min-width: 0;
    line-height: 50px;
  }
}
@media print, screen and (min-width: 813px) {
  .submitBtn input:hover {
    background-color: var(--form-btn-bgcolor-hover);
  }
}

/*--------------------------------
	トップに戻るボタン
--------------------------------*/
/*--------------------------------
	エラー
--------------------------------*/
form dl > div dd.error input, form dl > div dd.error textarea, form dl > div dd.error label, form dl > div dd.error select {
  background-color: var(--form-error-bgcolor);
}
form dl > div dd.error b {
  display: block;
  color: var(--form-error-text);
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 0.3em;
}
@media print, screen and (max-width: 812px) {
  form dl > div dd.error b {
    font-size: 1.1rem;
    margin-top: 0.2em;
  }
}
/*------------------------------------------------------------
	コンテンツ共通
------------------------------------------------------------*/
/*--------------------------------
	フォーム基本レイアウト
--------------------------------*/
form dl > div > dd.reserveWrapper > div {
  margin-bottom: 2.3rem;
}
form dl > div > dd.reserveWrapper > div.label-txt {
  margin-bottom: 1rem;
}
form dl > div > dd.reserveWrapper > div > * {
  margin-bottom: 1rem;
}
form dl > div > dd.reserveWrapper > div > *:last-child {
  margin-bottom: 0;
}
form dl > div > dd.reserveWrapper .excuse {
  color: var(--textAccentColor);
  font-size: 1.3rem;
}
@media print, screen and (min-width: 813px) {
  form dl > div > dd.reserveWrapper > div:not(.label-txt) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2%;
  }
  form dl > div > dd.reserveWrapper > div > * {
    width: 49%;
    margin-bottom: 0;
  }
}

/*--------------------------------
	サイドナビ非表示
--------------------------------*/
@media print, screen and (max-width: 812px) {
  body:not(.nav-show) aside#side_navigation {
    -webkit-transform: translateY(100%) !important;
    transform: translateY(100%) !important;
  }
}
@media print, screen and (max-width: 812px) {
  footer .container {
    padding-bottom: 30px;
  }
}
/*--------------------------------
	全体
--------------------------------*/
main .wrap {
  max-width: 800px;
}
/*--------------------------------
	mainvisual
--------------------------------*/
#mainvisual {
  padding-bottom: 7rem;
}
@media print, screen and (max-width: 812px) {
  #mainvisual {
    padding-bottom: 5rem;
  }
}
/*--------------------------------
	paging
--------------------------------*/
#paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#paging li {
  font-size: 1.3rem;
  padding: 0 4rem;
  position: relative;
}
#paging li:after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #B2B8BF;
  position: absolute;
  top: calc(min(3rem, 30px) / 2 - 0.5px);
  left: 0;
  z-index: -1;
}
#paging li span {
  display: inline-block;
  position: relative;
}
#paging li span:before, #paging li span:after {
  display: block;
  content: "";
  border-radius: 50%;
}
#paging li span:before {
  width: 3rem;
  height: 3rem;
  max-width: 30px;
  max-height: 30px;
  margin: 0 auto 0.5rem;
  border: solid 1px #B2B8BF;
  background-color: var(--whiteColor);
}
#paging li span:after {
  width: calc(3rem - 8px);
  height: calc(3rem - 8px);
  max-width: 22px;
  max-height: 22px;
  position: absolute;
  top: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#paging li.active span:after {
  background-color: var(--linkHoverBgColor);
}
#paging li:first-child, #paging li:last-child {
  padding: 0;
}
#paging li:first-child:after, #paging li:last-child:after {
  width: calc((100% - min(3rem, 30px)) / 2);
}
#paging li:first-child:after {
  right: 0;
  left: auto;
}
/*------------------------------------------------------------
	contact home
------------------------------------------------------------*/
@media print, screen and (max-width: 812px) {
  body.contact.home .column[data-sp-col="2"] {
    gap: 2rem 10px;
  }
  body.contact.home .column[data-sp-col="2"] > * {
    width: calc((100% - 10px) / 2);
  }
}
@media print, screen and (min-width: 813px) {
  body.contact.home .column[data-pc-col="2"] {
    gap: 2rem 20px;
  }
  body.contact.home .column[data-pc-col="2"] > * {
    width: calc((100% - 20px) / 2);
  }
}
body.contact.home #notes {
  text-align: left;
}
body.contact.home #notes .info_cnt > div > dt {
  color: var(--textColor);
}
@media print, screen and (max-width: 812px) {
  body.contact.home #notes .info_cnt {
    -webkit-column-gap: 10%;
    -moz-column-gap: 10%;
    column-gap: 10%;
  }
  body.contact.home #notes .info_cnt > div > dd span {
    display: inline-block;
    padding-top: 0;
  }
}
@media print, screen and (min-width: 813px) {
  body.contact.home #notes .info_cnt > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
  }
  body.contact.home #notes .info_cnt > div > dt {
    color: var(--textColor);
  }
}

/*------------------------------------------------------------
	contact confirm
------------------------------------------------------------*/
body.contact.confirm form dl > div {
  padding: 0 2rem 2rem;
  margin-bottom: 2rem;
  border-bottom: solid 1px var(--beigeColor);
}
body.contact.confirm form dl > div:last-child {
  border-bottom: none;
}
@media print, screen and (max-width: 812px) {
  body.contact.confirm form dl > div {
    padding: 0 1rem 2rem;
  }
}
/*------------------------------------------------------------
	contact complete
------------------------------------------------------------*/