@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
: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;
}
*/
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  box-sizing: border-box;
  transition: 0.2s;
}

img {
  vertical-align: bottom;
  border: none;
  width: 100%;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

:root {
  --primary-color: #333;
}

* {
  box-sizing: border-box;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

#CONTACT {
  line-height: 1.8;
}
#CONTACT img {
  width: initial !important;
}
@media only screen and (max-width: 768px) {
  #CONTACT {
    font-size: 12px;
  }
}
#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 table th {
  width: 30% !important;
  vertical-align: middle;
}
#CONTACT .tel-area {
  background-color: #f6f6f6;
  padding: 32px;
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #CONTACT .tel-area {
    margin-bottom: 32px;
  }
}
#CONTACT .tel-area__num {
  position: relative;
  font-weight: bold;
  font-size: 48px;
  line-height: 1;
  display: block;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .tel-area__num {
    font-size: 24px;
    margin-top: 8px;
  }
}
#CONTACT .tel-area__num::before {
  content: "";
  display: inline-block;
  height: 1cap;
  width: 1cap;
  background-size: contain;
  background-image: url("../../assets/img/contact/icon_phone.svg");
  background-repeat: no-repeat;
  margin: 0 8px 0 0;
  transition: 0.3s;
}
#CONTACT .notes {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  display: inline-block;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .notes {
    font-size: 12px;
  }
}
#CONTACT .notes::before {
  content: "※";
  position: absolute;
  left: 0;
}
#CONTACT .progress-bar {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
#CONTACT .progress-bar__item {
  position: relative;
  text-align: center;
  width: 24%;
  color: #999;
  font-weight: bold;
  counter-increment: steps;
}
@media only screen and (max-width: 768px) {
  #CONTACT .progress-bar__item {
    width: 33.33333%;
  }
}
#CONTACT .progress-bar__item:before {
  content: "";
  width: 40px;
  height: 40px;
  margin: 0 auto 8px auto;
  border-radius: 50%;
  background-color: #f5f5f5;
  content: counter(steps);
  display: grid;
  place-content: center;
}
#CONTACT .progress-bar__item:not(:first-child):after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 20px;
  left: -50%;
  width: 100%;
  height: 2px;
  background-color: #f5f5f5;
}
#CONTACT .progress-bar__item.current {
  color: var(--primary-color);
}
#CONTACT .progress-bar__item.current::before, #CONTACT .progress-bar__item.current::after {
  background-color: var(--primary-color);
  color: #fff;
}
#CONTACT .form-sec .sec-in {
  max-width: 948px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
@media only screen and (max-width: 768px) {
  #CONTACT .form-sec .sec-in {
    width: 100%;
  }
}
#CONTACT .form-sec__box {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid #eee;
}
@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: 15px;
  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 legend {
  width: 220px;
  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;
  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;
  padding: 0 24px;
  min-height: 50px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  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: 100%;
  height: 50px;
  border: 1px solid #888;
  border-radius: 4px;
  padding: 0 15px;
  outline: none;
  position: relative;
}
#CONTACT input::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
#CONTACT textarea {
  width: 100%;
  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: 16px;
}
@media only screen and (max-width: 768px) {
  #CONTACT input,
  #CONTACT textarea {
    font-size: 12px;
  }
}
#CONTACT input::placeholder,
#CONTACT textarea::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  color: #bbb;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  #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 #888;
  border-radius: 4px;
}
#CONTACT .select-box::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  right: 24px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  transform: translateY(-50%) rotate(135deg);
}
#CONTACT .select-box select {
  font-size: 16px;
  height: 50px;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  padding: 0 32px 0 15px;
  color: var(--primary-color);
}
#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;
  border: 1px solid #888;
  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);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
#CONTACT .check-box:not(:last-of-type) {
  margin-bottom: 8px;
}
#CONTACT .check-box label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 32px;
}
#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: var(--primary-color);
  border: 2px solid var(--primary-color);
}
#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;
  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: 14px;
}
#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: 50px;
  line-height: 49px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  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: var(--primary-color);
}
#CONTACT .btn:hover::after {
  border-color: var(--primary-color);
}
#CONTACT .btn--back {
  background-color: #fff;
  color: var(--primary-color);
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
#CONTACT .btn--back::after {
  right: auto;
  left: 16px;
  transform: rotate(-135deg);
  border-color: var(--primary-color);
}
#CONTACT .btn--back:hover {
  background-color: var(--primary-color);
  color: #fff;
}
#CONTACT .btn--back:hover::after {
  border-color: #fff;
}
#CONTACT .icon-arrow {
  position: relative;
  display: flex;
  text-align: center;
  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 var(--primary-color);
  border-right: 2px solid var(--primary-color);
}
#CONTACT .icon-arrow .btn {
  margin: 0;
}
#CONTACT .icon-arrow.no-link {
  opacity: 0.5;
  pointer-events: none;
}
@media (min-width: 1024px) {
  #CONTACT a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
#CONTACT input[type=number]::-webkit-outer-spin-button,
#CONTACT input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#CONTACT input[type=number] {
  -moz-appearance: textfield;
}
#CONTACT input[type=submit] {
  -webkit-appearance: none;
}
#CONTACT textarea {
  resize: none;
}
#CONTACT.confirm .form-sec__item {
  padding-top: 0;
}
#CONTACT.confirm .form-sec__item .icon-required {
  top: 4px;
}
#CONTACT.confirm .form-sec .btn-column {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
#CONTACT.confirm .form-sec .btn-column .icon-arrow {
  margin: 0;
}
#CONTACT.confirm .form-sec .btn-column .btn {
  margin: 0;
}
#CONTACT.thanks {
  text-align: center;
}
#CONTACT.thanks .thanks-ttl {
  font-size: 26px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  #CONTACT.thanks .thanks-ttl {
    font-size: 20px;
  }
}/*# sourceMappingURL=style.css.map */