@charset "UTF-8";
:root {
  --innerBase:780px;
  --wrapBase:940px;
  --boxBase:1080px;
  --containerBase:1280px;
  --maxWidthBase:1440px;
  --inner:var(--innerBase);
  --wrap:var(--wrapBase);
  --box:var(--boxBase);
  --container:var(--containerBase);
  --maxWidth:var(--maxWidthBase);
  --spContainerPadding:5%;
  --pcContainerPadding:95px;
  --spHeaderHeight:60px;
  --pcHeaderHeight:85px;
  --baseColor:#ffffff;
  --mainColor:#003288;
  --subColor:#D1DDEF;
  --icuColor:#3395EA;
  --entColor:#059A78;
  --cssdColor:#375DB4;
  --othersColor:#696F7E;
  --whiteColor:#ffffff;
  --grayColor:#696F7E;
  --lightGrayColor:#BDC1CD;
  --softGrayColor:rgb(from #696F7E r g b / 15%);
  --paleBlueColor:#D4E0F5;
  --tintBlueColor:#E5ECF8;
  --lightBlueColor:#D1DDEF;
  --deepBlueColor:#375DB4;
  --softBlueColor:#BEC9E6;
  --grayBlueColor:#DCDEE6;
  --textHoverColor:#8098C4;
  --animationSpeed:0.4s;
  --ioAnimationSpeed:1s;
  --spMargin:40px;
  --pcMargin:50px;
  --fontSerif:"Shippori Mincho","游明朝",YuMincho,"ヒラギノ明朝 ProN W3","Hiragino Mincho ProN","HG明朝E","ＭＳ Ｐ明朝","ＭＳ 明朝",serif;
  --fontGothic:"Noto Sans JP","游ゴシック体",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
  --fontFamily:var(--fontGothic);
  --fontTitle:var(--fontSerif);
  --fontEn:"Lusitana", serif;
}

/* ==========================================================================

	CONTACT GENERAL

========================================================================== */
/*--------------------------------
	common
--------------------------------*/
:root {
  --form-text-color:var(--mainColor);
  --form-input-border:color-mix(in srgb, var(--mainColor) 25%, var(--whiteColor));
  --form-input-bgcolor:var(--whiteColor);
  --form-checked-bgcolor: #666;
  --form-select-arrow:var(--mainColor);
  --form-placeholder:var(--textHoverColor);
  --form-btn-text:var(--blackColor);
  --form-btn-bgcolor:var(--whiteColor);
  --form-btn-bgcolor-hover:var(--mainColor);
  --form-error-bgcolor:#ffe7e7;
  --form-error-text:#f00;
  --form-privacy-text: #666;
  --form-privacy-border:#ccc;
}

.message {
  font-size: min(1.2rem, 12px);
  margin: 0 0 2.5em;
}
form > dl > div {
  margin-bottom: 1.6em;
}
form > dl > div:last-child {
  margin-bottom: 0;
}
form > dl > div dt i {
  font-style: normal;
  padding-left: 0.3em;
}
@media print, screen and (max-width: 812px) {
  form > dl > div dt {
    margin-bottom: 0.4em;
  }
}
@media print, screen and (min-width: 813px) {
  form > dl > div {
    display: grid;
    grid-template-columns: 14em 1fr;
    gap: 1.6em 2em;
    width: 100%;
  }
  form > dl > div dt {
    padding-top: 0.75em;
    margin-bottom: 0;
  }
}

.privacypolicy {
  margin-top: 4em;
}
.privacypolicy a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--mainColor);
  text-underline-offset: 0.6em;
}
@media print, screen and (max-width: 812px) {
  .privacypolicy {
    margin-top: 3rem;
  }
}
@media print, screen and (min-width: 813px) {
  .privacypolicy {
    margin-top: 4rem;
  }
  .privacypolicy a:hover {
    color: var(--textHoverColor);
    text-decoration-color: transparent;
  }
}

form input {
  border-radius: 0;
}
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;
  color: var(--form-text-color);
  vertical-align: middle;
  padding: 0.5em 1em;
  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;
  color: var(--form-text-color);
  border: solid 1px var(--form-input-border);
  border-radius: 0;
  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 .radioWrapper, form .checkWrapper {
  padding: 0.75em 0;
}
form .selectWrapper {
  width: 100%;
  display: inline-block;
  margin: 0 auto;
  border: solid 1px var(--form-input-border);
  position: relative;
}
form .selectWrapper:after {
  content: "";
  width: 12px;
  height: 12px;
  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% - 8px);
  right: 1em;
  z-index: 2;
  pointer-events: none;
}
form .selectWrapper select {
  width: 100%;
  color: var(--form-text-color);
  padding: 0.5em 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.5em 1em;
    -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 .radioWrapper, form .checkWrapper {
    padding: 0.5em 0;
  }
  form .selectWrapper {
    width: 100%;
  }
  form .selectWrapper select {
    font-size: 16px;
    padding: 0.5em 1em;
  }
}
@media print, screen and (min-width: 813px) {
  form .selectWrapper {
    max-width: 250px;
  }
}

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_btn button:disabled, .form_btn submit:disabled {
  opacity: 0.3;
  color: var(--whiteColor);
  border-color: var(--grayColor);
  background-color: var(--grayColor);
  cursor: default;
  pointer-events: none;
}
body.contact .contact_flow {
  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;
  width: 100%;
  max-width: 500px;
}
body.contact .contact_flow li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  position: relative;
}
body.contact .contact_flow li:before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: color-mix(in srgb, var(--mainColor) 25%, var(--whiteColor));
  position: absolute;
  top: 50%;
  left: -50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}
body.contact .contact_flow li:first-child:before {
  display: none;
}
body.contact .contact_flow li span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--whiteColor);
  font-size: min(1.2rem, 12px);
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--mainColor) 25%, var(--whiteColor));
  position: relative;
  z-index: 2;
  aspect-ratio: 1/1;
}
body.contact .contact_flow li.active:before {
  background-color: var(--mainColor);
}
body.contact .contact_flow li.active span {
  background-color: var(--mainColor);
}
@media print, screen and (max-width: 812px) {
  body.contact .contact_flow li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  body.contact .contact_flow li:first-child {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  body.contact .contact_flow li:nth-child(2):before {
    width: 150%;
    left: -100%;
  }
  body.contact .contact_flow li:last-child {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  body.contact .contact_flow li:last-child:before {
    width: 150%;
    left: -50%;
  }
  body.contact .contact_flow li span {
    padding: 1em;
  }
}
@media print, screen and (min-width: 813px) {
  body.contact .contact_flow li span {
    padding: 1em;
  }
}
body.contact .box_message {
  display: grid;
  place-items: center;
  max-width: 610px;
  padding: 0.8em;
  margin-right: auto;
  margin-left: auto;
  border: solid 1px var(--mainColor);
}
@media print, screen and (min-width: 813px) {
  body.contact .box_message {
    font-size: min(1.8rem, 18px);
    margin-bottom: 5em;
  }
}

/*--------------------------------
	index
--------------------------------*/
body.contact.home #contact-tel > *:last-child {
  margin-bottom: 0;
}
body.contact.home #contact-tel > div {
  line-height: 1;
}
@media print, screen and (max-width: 812px) {
  body.contact.home #contact-tel {
    padding: 1.6em;
  }
  body.contact.home #contact-tel .tt_sub {
    font-size: 1.6rem;
  }
  body.contact.home #contact-tel .tt_main {
    font-size: 3rem;
  }
}
/*--------------------------------
	confirm
--------------------------------*/
@media print, screen and (max-width: 812px) {
  body.contact.confirm .contact_flow {
    margin-top: 0;
  }
}
body.contact.confirm form > dl {
  margin-bottom: 0;
}
body.contact.confirm form > dl > div:last-child {
  margin-bottom: 0;
}
@media print, screen and (max-width: 812px) {
  body.contact.confirm form > dl > div {
    padding: 1em 0;
    margin-bottom: 0;
    border-top: solid 1px color-mix(in srgb, var(--mainColor) 25%, var(--whiteColor));
  }
  body.contact.confirm form > dl > div dt {
    font-size: 1.2rem;
  }
}
@media print, screen and (min-width: 813px) {
  body.contact.confirm form > dl > div {
    margin-bottom: 3.2em;
  }
  body.contact.confirm form > dl > div dt {
    padding-top: 0;
  }
}
@media print, screen and (max-width: 812px) {
  body.contact.confirm form > ul {
    margin-top: 3rem;
  }
}
@media print, screen and (min-width: 813px) {
  body.contact.confirm form > ul {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 4em;
    margin: 5em auto 0;
  }
}

/*--------------------------------
	complete
--------------------------------*/
@media print, screen and (max-width: 812px) {
  body.complete .contact_flow {
    margin-top: 0;
  }
}
body.complete .link_btn {
  margin-top: 2.5em;
}
@media print, screen and (max-width: 812px) {
  body.complete .link_btn {
    margin-top: 3rem;
  }
}
@media print, screen and (min-width: 813px) {
  body.complete .link_btn {
    margin-top: 5em;
  }
}/*# sourceMappingURL=style.css.map */
