@charset "UTF-8";
/* 基本スタイル設定 */
/* ===========================================
*  
*  css custom property (common)
* 
* ======================================== */
:root {
  /* color */
  --color-main: #f8b500;
  --color-main-rgb: 248 181 0;
  --color-main-darken: #dfa200;
  --color-main-lighten: #ffbf13;
  --color-sub: #2f671d;
  --color-sub-rgb: 47 103 29;
  --color-sub-darken: #265317;
  --color-sub-lighten: #387b23;
  --color-semi: #175205;
  --color-semi-rgb: 23 82 5;
  --color-semi-darken: #103a04;
  --color-semi-lighten: #1e6a06;
  --color-theme: #fff6dd;
  --color-theme-rgb: 255 246 221;
  --color-theme-darken: #ffefc4;
  --color-theme-lighten: #fffdf7;
  --color-black-primary: #383838;
  --color-black-primary-rgb: 56 56 56;
  --color-line: #06c755;
  --color-line-rgb: 6 199 85;
  --color-link: #21ade4;
  --color-link-rgb: 33 173 228;
  --color-gray-light: #f6f6f6;
  --color-gray-light-rgb: 246 246 246;
  --color-gray: #eeeeee;
  --color-gray-rgb: 238 238 238;
  --color-black: #000;
  --color-black-rgb: 0 0 0;
  --color-white: #fff;
  --color-white-rgb: 255 255 255;
  /* gradation設定 */
  --gradation-main: var(--sub-color) 0%, var(--main-color) 100%; /* linear-gradient(xdeg , var(--gradation-main)); */
  /* font設定 */
  --line-height-base: 1.5;
  --letter-spacing-base: 0.06em;
  --letter-spacing-none: 0;
  --letter-spacing-xs: 0.02em;
  --letter-spacing-small: 0.04em;
  --letter-spacing-regular: 0.08em;
  --letter-spacing-medium: 0.1em;
  --letter-spacing-large: 0.12em;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  /* font family */
  --font-main: "Noto Sans JP", sans-serif;
}

:root {
  --form-input-bg: var(--white-color);
  --form-input-focus-color: var(--color-main);
  --form-check-border-color: var(--color-main);
  --form-check-active-color: var(--color-main);
  --form-check-bg-color: var(--white-color);
  --form-radio-active-color: var(--color-main);
  --form-radio-bg: var(--white-color);
  --form-required-bg: #ff5555;
  --form-required-color: var(--white-color);
  --form-error-color: #ff0000;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: 100%;
}

input,
textarea,
select {
  padding: 1em 1.5em;
  vertical-align: middle;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=text],
input[type=tel],
input[type=email],
input#fax {
  width: 100%;
}

input[type=number] {
  width: 25%;
}

select {
  width: 100%;
}

textarea {
  width: 100%;
  resize: none;
}

input[type=checkbox] {
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
}

.inline-privacy-policy-inner > iframe {
  display: block;
  margin: 0 auto;
  margin-top: 40px;
}

input[type=submit] {
  display: block;
  margin: 0 auto;
  /* margin-top: 20px; */
}

input#address {
  margin-top: 10px;
}

.date-list > li {
  margin-bottom: 10px;
}

.data-list > li:last-child {
  margin-bottom: none;
}

.inline-block {
  display: inline-block;
}

/*---------- 以下contact-fotm ----------*/
.contact-form-table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto 20px;
}
.contact-form-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.contact-form-table th {
  width: 380px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact-form-table th label {
  width: calc(100% - 4em);
}
.contact-form-table td {
  width: calc(100% - 365px);
}
.contact-form-table td.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.age {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 30%;
}
.age select {
  display: block;
  margin-left: 5px;
  margin-right: 5px;
}
.age:not(:last-child) {
  margin-right: 1em;
}

.required-mark {
  background-color: var(--form-required-bg);
  color: var(--form-required-color);
  font-size: 0.9em;
  border-radius: 3px;
  /* width: 2.5em; */
  text-align: center;
  display: inline-block;
  min-width: 3em;
}

/* radioボタンのスタイル */
.radio-btn {
  position: relative;
  cursor: pointer;
  padding-left: calc(16px + 0.5em);
  margin-right: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

input[type=radio] {
  padding: 0 !important;
}

.radio-btn::before,
.radio-btn::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.radio-btn::before {
  border: 1px solid #ccc;
  background-color: var(--form-radio-bg);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  left: 0;
}

.radio-btn::after {
  background-color: var(--form-radio-active-color);
  border-radius: 50%;
  opacity: 0;
  width: 10px;
  height: 10px;
  left: 3px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

input[type=radio]:checked + .radio-btn::after {
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

/* checkboxのスタイル */
input[type=checkbox] {
  display: none;
}

.checkbox-btn {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px calc(16px + 0.5em);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-right: 30px;
}

.checkbox-btn::before,
.checkbox-btn::after {
  position: absolute;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.checkbox-btn::before {
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: var(--form-check-bg-color);
  border: 1px solid #ddd;
}

.checkbox-btn::after {
  opacity: 0;
  top: 50%;
  left: 4px;
  width: 8px;
  height: 4px;
  margin-top: -4px;
  border-left: 2px solid var(--form-check-active-color);
  border-bottom: 2px solid var(--form-check-active-color);
  -webkit-transform: rotate(-45deg) scale(0.5);
  transform: rotate(-45deg) scale(0.5);
}

input[type=checkbox]:checked + .checkbox-btn::before {
  background: var(--form-check-bg-color);
  border: 1px solid var(--form-check-border-color);
}

input[type=checkbox]:checked + .checkbox-btn::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
  transform: rotate(-45deg) scale(1);
}

/*入力欄のスタイル*/
input[type=text],
input[type=email],
input[type=number],
input[type=tel],
select,
textarea {
  outline: none;
  background-color: var(--form-input-bg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=tel]:focus,
select:focus,
textarea:focus {
  border: 1px solid var(--form-input-focus-color);
}

input[type=submit] {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

input[type=submit]:hover {
  opacity: 0.7;
}

.contact-submits-wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contact-submits-wrap .btn {
  max-width: 300px;
  width: 100%;
  background-color: var(--color-main);
  border-radius: 0;
  color: var(--white-color);
  padding: 1.2em 1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.contact-submits-wrap .btn:hover {
  opacity: 0.7;
}

.contact-submits-wrap .btn:not(:last-child) {
  margin-bottom: 15px;
}

.contact-recaptcha-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

input[type=submit]:disabled {
  background-color: #ddd;
  pointer-events: none;
}

.inline-privacy-policy {
  width: 100%;
  border: 1px solid var(--color-gray);
}
.inline-privacy-policy iframe {
  width: 100%;
  height: 300px;
}

.contact-recaptcha-wrap .g-recaptcha {
  display: block;
  margin: 30px auto 0;
}

.error-text {
  color: var(--form-error-color);
  font-weight: 600;
}