@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
:root {
  --vw: 1vw;
}

/*
------------------------
用途：個別にhover要素付けたい時用
------------------------
例）
div {
    width:100px;
    height:100px;
    @include hover;
}
*/
/*
------------------------
用途：良く使うflexを1行に短縮
------------------------
例）
div {
    @include flex(b,w);
}
↑これは↓これを一行で書いた例
div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
*/
#CONTACT .blue {
  background-color: #e5ebf7;
  border-bottom: 1px solid #c5c5c5;
}
#CONTACT .blue:hover {
  background-color: #feecec;
}
#CONTACT .white {
  background-color: #FFFFFF;
  border-bottom: 1px solid #c5c5c5;
}
#CONTACT .white:hover {
  background-color: #feecec;
}
#CONTACT .empty-fields-count {
  background-color: #f2f2f2;
  position: fixed;
  right: 20px;
  top: 100px;
  line-height: 1.4;
  padding: 16px;
  display: none;
  z-index: 3;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #CONTACT .empty-fields-count {
    top: auto;
    bottom: 10px;
    right: 10px;
    padding: 10px;
  }
}
#CONTACT .empty-fields-count::before {
  content: "";
  position: absolute;
  left: -24px;
  bottom: 24px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #f2f2f2 transparent;
  border-width: 0px 0px 24px 24px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .empty-fields-count::before {
    left: -18px;
    border-style: solid;
    border-color: transparent #f2f2f2 transparent transparent;
    border-width: 0px 18px 18px 0px;
  }
}
#CONTACT .empty-fields-count__number {
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  #CONTACT .empty-fields-count__number {
    font-size: 18px;
  }
}
#CONTACT .notes {
  position: relative;
  padding-left: 20px;
  font-size: 12px;
  line-height: normal;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .notes {
    font-size: 12px;
  }
}
#CONTACT .notes::before {
  content: "※";
  position: absolute;
  left: 0;
}
#CONTACT .form-sec .sec-in {
  width: 100%;
}
#CONTACT .form-sec__box {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 10px;
  padding: 8px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec__box {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }
}
#CONTACT .form-sec__item {
  font-weight: bold;
  position: relative;
  padding-top: 10px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec__item {
    padding-top: 0;
  }
}
#CONTACT .form-sec__item .icon-required {
  position: absolute;
  right: 0;
  top: 8px;
  display: inline-block;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  font-weight: normal;
  padding: 0 5px;
  color: #fff;
  background-color: #df0000;
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec__item .icon-required {
    position: static;
    margin-left: 8px;
    font-size: 10px;
  }
}
#CONTACT .form-sec fieldset {
  border: none !important;
}
#CONTACT .form-sec fieldset legend {
  width: 150px;
  float: left;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec fieldset legend {
    width: 100%;
  }
}
#CONTACT .form-sec__field--zip {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
#CONTACT .form-sec__field--zip input[type=number] {
  width: 25%;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec__field--zip input[type=number] {
    width: calc(50% - 8px);
  }
}
#CONTACT .form-sec__field--zip .btn-zip {
  width: 148px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  cursor: pointer;
  line-height: 1.3;
  align-items: center;
  min-height: 32px;
  background-color: #222;
  border: 1px solid #222;
  color: #fff;
  font-weight: bold;
  position: relative;
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec__field--zip .btn-zip {
    width: calc(50% - 8px);
  }
}
#CONTACT .form-sec__field--zip .btn-zip::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: -2px 6px 0 0;
  transition: 0.3s;
  background-image: url("../../assets/img/contact/icon_search.svg");
}
#CONTACT .form-sec .w-75 {
  width: 75%;
}
#CONTACT .form-sec .w-50 {
  width: 50%;
}
#CONTACT .form-sec .w-25 {
  width: 25%;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec .w-75,
  #CONTACT .form-sec .w-50,
  #CONTACT .form-sec .w-25 {
    width: 100%;
  }
}
#CONTACT input[type=text], #CONTACT input[type=email], #CONTACT input[type=tel], #CONTACT input[type=number], #CONTACT input[type=zip], #CONTACT input[type=url], #CONTACT input[type=date] {
  width: 95%;
  height: 32px;
  border: 1px solid #888;
  border-radius: 4px;
  padding: 0 8px;
  outline: none;
  position: relative;
}
#CONTACT input::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#CONTACT textarea {
  width: 90%;
  height: 240px;
  border: 1px solid #888;
  border-radius: 4px;
  line-height: 1.4;
  padding: 16px;
  outline: none;
  resize: none;
}
#CONTACT input,
#CONTACT textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  #CONTACT input,
  #CONTACT textarea {
    font-size: 12px;
  }
}
#CONTACT input::-moz-placeholder, #CONTACT textarea::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #bbb;
  font-size: 14px;
}
#CONTACT input::placeholder,
#CONTACT textarea::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #bbb;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  #CONTACT input::-moz-placeholder, #CONTACT textarea::-moz-placeholder {
    font-size: 13px;
  }
  #CONTACT input::placeholder,
  #CONTACT textarea::placeholder {
    font-size: 13px;
  }
}
#CONTACT input:focus,
#CONTACT textarea:focus {
  border: 2px #005fcc solid;
}
#CONTACT input.error,
#CONTACT textarea.error {
  background: #fbe9e8;
  border-color: red;
}
#CONTACT .select-box {
  overflow: hidden;
  position: relative;
  border: 1px solid #888888;
  border-radius: 4px;
  background-color: #FFF;
}
#CONTACT .select-box::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  right: 24px;
  border-top: 2px solid #888888;
  border-right: 2px solid #888888;
  transform: translateY(-50%) rotate(135deg);
}
#CONTACT .select-box select {
  font-size: 16px;
  height: 32px;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 32px 0 15px;
}
#CONTACT .select-box select.error {
  background: #fbe9e8;
  border: 1px solid red;
}
@media only screen and (max-width: 768px) {
  #CONTACT .select-box select {
    font-size: 13px;
  }
}
#CONTACT .select-box select::-ms-expand {
  display: none;
}
#CONTACT .select-box select:focus {
  border: 2px #005fcc solid;
}
#CONTACT .radio:not(:last-of-type) {
  margin-bottom: 8px;
}
#CONTACT .radio label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-left: 32px;
}
#CONTACT .radio label::before, #CONTACT .radio label::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 15px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  #CONTACT .radio label::before, #CONTACT .radio label::after {
    top: 13px;
  }
}
#CONTACT .radio label::before {
  background-color: #fff;
  width: 20px;
  height: 20px;
}
#CONTACT .radio label:has(.error)::before {
  background: #fbe9e8;
  border-color: red;
}
#CONTACT .radio label::after {
  background-color: var(--primary-color);
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 5px;
}
#CONTACT .radio label:has(input:checked)::after {
  opacity: 1;
}
#CONTACT .radio__input {
  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;
}
#CONTACT .check-box label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 32px;
  padding-bottom: 8px;
}
#CONTACT .check-box__txt {
  padding-top: 8px;
}
#CONTACT .check-box__input {
  margin: 0;
  width: 0;
  opacity: 0;
}
#CONTACT .check-box__input.error + .check-box__border {
  background: #fbe9e8;
  border-color: red;
}
#CONTACT .check-box__input:checked + .check-box__border {
  background: #274f87;
}
#CONTACT .check-box__input:checked + .check-box__border::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background: url("../../assets/img/contact/icon_check.svg") no-repeat center;
}
#CONTACT .check-box__border {
  position: absolute;
  top: 5px;
  left: 0;
  border: 1px solid #888;
  background-color: #FFF;
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .check-box__border {
    top: 2px;
  }
}
#CONTACT input[type=file] {
  display: block;
  margin-top: 8px;
  padding-right: 8px;
}
#CONTACT input[type=file]:not(:last-of-type) {
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  #CONTACT input[type=file] {
    margin-top: 0;
    width: 100%;
  }
}
#CONTACT .file-btn::file-selector-button {
  font-weight: bold;
  background-color: var(--primary-color);
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  margin-right: 16px;
  transition: 0.3s;
}
#CONTACT .file-btn::file-selector-button:hover {
  opacity: 0.6;
}
#CONTACT span.error {
  color: red;
  margin-top: 4px;
  display: block;
  width: 100%;
}
#CONTACT .remarks {
  font-weight: normal;
  font-size: 12px;
}
#CONTACT .agree-check {
  display: flex;
  justify-content: center;
}
#CONTACT .agree-check + .error {
  text-align: center;
}
#CONTACT .agree-check a {
  text-decoration: underline;
  color: #1558d6;
}
#CONTACT .agree-check a:hover {
  text-decoration: none;
}
#CONTACT .privacy {
  background-color: #f6f6f6;
  margin: 65px 0 40px;
}
#CONTACT .privacy__in {
  border: 40px solid #f6f6f6;
  overflow-y: scroll;
  height: 300px;
  padding-right: 40px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .privacy__in {
    border: 24px solid #f6f6f6;
    padding-right: 24px;
  }
}
#CONTACT .privacy__in::-webkit-scrollbar {
  width: 3px;
}
#CONTACT .privacy__in::-webkit-scrollbar-track {
  background-color: #ccc;
}
#CONTACT .privacy__in::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 50px;
}
#CONTACT .privacy__ttl {
  font-size: 22px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .privacy__ttl {
    font-size: 18px;
  }
}
#CONTACT .privacy__sub-ttl {
  font-weight: bold;
  margin: 32px 0 16px;
}
#CONTACT .privacy__sub-txt {
  margin-top: 0.5em;
}
#CONTACT .privacy__enactment {
  text-align: right;
  margin-top: 40px;
}
#CONTACT .btn {
  cursor: pointer;
  line-height: 1.3;
  width: 256px;
  height: 40px;
  line-height: 29px;
  background-color: #888888;
  border: 1px solid #888888;
  color: #fff;
  position: relative;
  transition: 0.3s;
  font-size: 16px;
  font-weight: bold;
  display: grid;
  place-content: center;
  margin: 32px auto 0;
}
#CONTACT .btn::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  right: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
#CONTACT .btn:hover {
  background-color: #fff;
  color: #888888;
}
#CONTACT .btn:hover::after {
  border-color: #888888;
}
#CONTACT .btn--back {
  background-color: #fff;
  color: var(--primary-color);
}
#CONTACT .btn--back::after {
  right: auto;
  left: 16px;
  transform: rotate(-135deg);
  border-color: #888888;
}
#CONTACT .btn--back:hover {
  background-color: #888888;
  color: #fff;
}
#CONTACT .btn--back:hover::after {
  border-color: #fff;
}
#CONTACT .icon-arrow {
  position: relative;
  display: flex;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#CONTACT .icon-arrow::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  right: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
#CONTACT .icon-arrow:has(.btn) {
  margin-top: 40px;
}
#CONTACT .icon-arrow:has(.btn):hover::after {
  border-top: 2px solid #888888;
  border-right: 2px solid #888888;
}
#CONTACT .icon-arrow:has(.btn) .btn {
  margin: 0;
}
#CONTACT .icon-arrow:has(.btn).no-link {
  opacity: 0.5;
  pointer-events: none;
}
@media (min-width: 1024px) {
  #CONTACT .icon-arrow a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
#CONTACT .icon-arrow input[type=number]::-webkit-outer-spin-button,
#CONTACT .icon-arrow input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#CONTACT .icon-arrow input[type=number] {
  -moz-appearance: textfield;
}
#CONTACT .icon-arrow input[type=submit] {
  -webkit-appearance: none;
}
#CONTACT .icon-arrow textarea {
  resize: none;
}
#CONTACT .icon-arrow.confirm .form-sec__item {
  padding-top: 0;
}
#CONTACT .icon-arrow.confirm .form-sec__item .icon-required {
  top: 4px;
}
#CONTACT .icon-arrow.confirm .form-sec .btn-column {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
#CONTACT .icon-arrow.confirm .form-sec .btn-column .icon-arrow {
  margin: 0;
}
#CONTACT .icon-arrow.confirm .form-sec .btn-column .btn {
  margin: 0;
}
#CONTACT .icon-arrow.thanks {
  text-align: center;
}
#CONTACT .icon-arrow.thanks .thanks-ttl {
  font-size: 26px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .icon-arrow.thanks .thanks-ttl {
    font-size: 20px;
  }
}