@charset "UTF-8";

/* CSS Document */
/*---------------------------------------------------------------------
	ベース
---------------------------------------------------------------------*/
*:focus {
  outline: none;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:root {
  --noto: "Noto Sans JP", sans-serif;
  --man: "Manrope", sans-serif;
  --orange: #FF7300;
  --gray: #B3B3B3;
  --opacity: opacity 0.3s ease;
  --all: all 0.3s ease;
  --cubic: 0.2s cubic-bezier(0.3, 0, 0.1, 1);
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--noto);
  color: #000000;
  letter-spacing: 0.05em;
}

main {
  overflow-x: hidden;
}

.img_wrap {
  overflow: hidden;
}

.img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

ul li {
  list-style: none;
}

.flex {
  display: flex;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.ai-start {
  align-items: flex-start;
}

.ai-stretch {
  align-items: stretch;
}

.ai-center {
  align-items: center;
}

.ai-end {
  align-items: flex-end;
}

.jc-center {
  justify-content: center;
}

.jc-space {
  justify-content: space-between;
}

.block {
  display: block;
}

.wrap {
  flex-wrap: wrap;
}

.noto {
  font-family: var(--noto);
}

.man {
  font-family: var(--man);
}

.regu {
  font-weight: 400;
}

.medi {
  font-weight: 500;
}

.semi {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.small {
  font-size: 1.4rem;
}

.txt {
  line-height: 2;
  letter-spacing: 0.1em;
}

.txt18 {
  font-size: 1.8rem;
}

.link {
  color: #000000;
}

.orange {
  color: var(--orange);
}

.gray {
  color: var(--gray);
}

.w-1200 {
  max-width: 1240px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

.w-1120 {
  max-width: 1160px;
  padding: 0 20px;
  width: 100%;
  margin: 0 auto;
}

.sec {
  padding-top: 90px;
}

.pc-mb5 {
  margin-bottom: 5px !important;
}

.pc-mb10 {
  margin-bottom: 10px !important;
}

.pc-mb20 {
  margin-bottom: 20px !important;
}

.pc-mb30 {
  margin-bottom: 30px !important;
}

.pc-mb40 {
  margin-bottom: 40px !important;
}

.pc-mb50 {
  margin-bottom: 50px !important;
}

.pc-mb60 {
  margin-bottom: 60px !important;
}

/* 別タブ */
.tab {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.tab::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../img/common/tab.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.btn-h {
  position: relative;
  overflow: hidden;
}

.btn-h span {
  position: relative;
  z-index: 2;
}

.btn-h::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform var(--cubic);
}

@media (hover: hover) and (pointer: fine) {
  .btn-h:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: left top;
  }
}

.pc-none {
  display: none !important;
}

.sp-none {
  display: block !important;
}

/*---------------------------------------------------------------------
	ヘッダー
---------------------------------------------------------------------*/
.header {
  height: 120px;
  column-gap: 40px;
  position: sticky;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.site-ttl {
  width: 320px;
  height: auto;
  position: relative;
}

.site-ttl a {
  width: 100%;
  height: 100%;
  position: relative;
  align-items: flex-end;
}

.site-ttl a img {
  height: 100%;
  width: auto;
}

.site-ttl .site-subttl {
  text-indent: initial;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 100%;
  height: 50px;
}

.header-inner {
  width: 87.5%;
  padding-left: 30px;
}

.header-inner h1 .flexBlock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -14px;
}

.header-inner #g-nav {
  margin-top: 10px;
}

.header-inner h1 .flexBlock>span {
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 7px;
  color: #000000;
  font-size: 1.4rem;
  line-height: 1;
}

.g-nav .g-nav-ul {
  column-gap: 40px;
}

.g-nav .g-nav-ul a {
  transition: text-shadow var(--cubic);
}

.g-nav .g-nav-ul a span {
  color: #000000;
  transition: color var(--cubic);
}

.header-contact-link {
  background-color: #000000;
  height: 80px;
  padding: 20px 16px;
  position: relative;
  overflow: hidden;
}

.header-contact-link span {
  color: #ffffff;
  display: flex;
  align-items: center;
  height: 100%;
  column-gap: 16px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  transition: color var(--cubic);
}

.header-contact-link span::before {
  content: "";
  display: block;
  width: 24px;
  height: 38px;
  min-width: 24px;
  background-image: url("../img/common/contact_btn.svg");
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  transition: background var(--cubic);
}

.header .g-nav ul.g-nav-ul li:last-of-type {
  display: none;
}

@media screen and (min-width:767px) {
  .g-nav .g-nav-ul a:hover {
    text-shadow:
      1px 1px #000000,
      /*文字の右下に影を追加*/
      1px 2px #000000,
      /*文字の右下に影を追加*/
      1px -1px #000000,
      /*文字の右上に影を追加*/
      -1px 1px #000000,
      /*文字の左下に影を追加*/
      -1px 2px #000000,
      /*文字の左下に影を追加*/
      -1px -1px #000000;
    /*文字の左上に影を追加*/
  }

  .g-nav .g-nav-ul a:hover span {
    color: #ffffff;
  }

  .header-contact-link:hover span {
    color: #000000;
  }

  .header-contact-link:hover span::before {
    background-image: url("../img/common/contact_btn_w.svg");
  }
}

/*---------------------------------------------------------------------
	フッター
---------------------------------------------------------------------*/
.footer {
  padding: 110px 0 40px;
}

.footer-inner {
  margin-bottom: 60px;
}

.footer-left .footer-logo {
  width: 268px;
  height: auto;
  margin-bottom: 40px;
}

.footer-right {
  position: relative;
}

.footer-right .footer-nav .footer-nav-ul li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-right .footer-nav {
  column-gap: 40px;
}

.footer-right .footer-nav .footer-nav-ul li a span {
  color: #000000;
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.footer-right .footer-nav .footer-nav-ul li a span::before {
  content: "";
  display: block;
  width: 9px;
  height: 14px;
  background-image: url("../img/common/nav_before.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-right .iso-img {
  width: 200px;
  position: absolute;
  right: 0;
  bottom: 0;
}

/*---------------------------------------------------------------------
	お問い合わせ
---------------------------------------------------------------------*/
.contact .contact-ttl {
  font-size: 4.0rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.contact .txt {
  color: #ffffff;
  text-align: center;
  margin-bottom: 80px;
}

.contact .contact-box {
  background-color: #000000;
  padding: 160px 0;
}

.contact .inner {
  max-width: 1000px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.contact .form-wrap {
  background-color: #ffffff;
  padding: 80px;
}

.contact .flow {
  margin-bottom: 80px;
}

.contact .flow li {
  width: calc(100% / 3);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  background-color: #373737;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}

.contact .flow li:first-of-type::after,
.contact .flow li:nth-last-of-type(2)::after {
  content: "";
  display: block;
  width: 27px;
  height: calc(100% + 2px);
  background-image: url("../img/common/arrow_border.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 1px;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(100%);
  transform: translateY(-50%) translateX(100%);
  z-index: 2;
}

.form-area.s1 .contact .flow li:first-of-type,
.form-area.s2 .contact .flow li:nth-of-type(2),
.form-area.s3 .contact .flow li:last-of-type {
  background-color: var(--orange);
  color: #000000;
}

.form-area.s1 .contact .flow li:first-of-type::after,
.form-area.s2 .contact .flow li:nth-of-type(2)::after {
  background-image: url("../img/common/arrow_border_on.svg");
}

/* フォーム */
button,
input:not([type="radio"]),
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

input[type=checkbox] {
  appearance: auto;
}

input,
textarea {
  background-color: #fafafa !important;
  border: solid 1px var(--gray);
}

textarea {
  resize: none;
  width: calc(100% - 40px);
  height: 360px;
  padding: 14px 20px;
}

.form .hasInput input[type="text"],
.form .hasInput input[type="tel"],
.form .hasInput input[type="email"] {
  height: 45px;
  padding: 0 20px;
  width: calc(100% - 40px);
}

::placeholder {
  font-size: 1.8rem;
  color: var(--gray);
  font-family: var(--noto);
  letter-spacing: 0.1em;
}

.form .hasInput {
  margin-bottom: 30px;
}

.form .hasInput>.flex {
  margin-bottom: 16px;
}

.contact .required,
.contact .any {
  color: #FFF;
  font-size: 1.4rem;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 26px;
}

.contact .required {
  background-color: #E00101;
}

.contact .any {
  background-color: var(--gray);
}

/* ラジオボタン */
.contact .radio-wrap {
  column-gap: 50px;
}

input[type="radio"] {
  accent-color: #000000;
  -webkit-transform: scale(1.8);
  transform: scale(1.8);
  margin-right: 14px;
}

/* チェックボックス */
.privacy_check {
  text-align: center;
  margin-bottom: 40px;
}

.privacy_check input[type=checkbox] {
  width: 24px;
  height: 24px;
  min-height: 20px;
  margin-right: 15px;
}

.privacy_check a {
  color: var(--orange);
  text-decoration: underline;
  display: inline-flex;
  margin-right: 8px;
}

.privacy_check a:after {
  background-image: url("../img/common/tab_orange.svg");
}

.privacy_txt {
  margin-bottom: 40px;
}

section#form .btns {
  justify-content: center;
  align-items: center;
}

section#form .btns #btnNext {
  pointer-events: none;
  opacity: 0.3;
}

section#form .btns #btnNext.is-active {
  pointer-events: all;
  opacity: 1;
}

/* ボタン */
.btnArrow {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  height: 60px;
  position: relative;
  display: block;
  width: 100%;
  border-radius: 30px;
  max-width: 220px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}

.btnArrow>span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  padding: 0 30px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.btnArrow:after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--orange);
  border-right: solid 2px var(--orange);
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.btnArrow.prev:after {
  border-top: solid 2px #000000;
  border-right: solid 2px #000000;
  right: auto;
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

.btnArrow.gray {
  background: #ffffff;
  border: 2px solid #000000;
  color: #000000;
}

.btnArrow.orange {
  background: #ffffff;
  border: 2px solid var(--orange);
  color: var(--orange);
}

.form-area .step1,
.form-area .step2,
.form-area .step3 {
  display: none !important;
}

.form-area.s2 .step2,
.form-area.s1 .step1 {
  display: flex !important;
}

.form-area.s3 .step3 {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-area.s2 section#form form input,
.form-area.s2 section#form form textarea {
  background: #ffffff !important;
  pointer-events: none;
  border: none;
  height: auto;
  padding: 0;
}

.form-area.s2 section#form form input::placeholder,
.form-area.s2 section#form form textarea::placeholder {
  opacity: 0;
}

.step2.btns> :nth-child(1) {
  margin-right: 50px;
}

.form-area.s2 section#form .inner form>.hasChk> :nth-child(3) {
  pointer-events: none;
}

.form-area.s3 #form_body {
  display: none;
  visibility: hidden;
  pointer-events: none;
}

.contact-success h3 {
  font-size: 3.0rem;
  margin-bottom: 40px;
}

.contact-success p {
  margin-bottom: 50px;
}

.form-area.s3 .contact-ttl__txt {
  display: none;
}

/* 動き */
.fade,
.fade-anim1 {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: transform, opacity, filter;
  transition-property: transform, opacity, filter, -webkit-transform, -webkit-filter;
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
  opacity: 0;
  will-change: transform, opacity;
  position: relative;
}

.fade.action,
.fade-anim1.action {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.jiwa {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: opacity, -webkit-transform, -webkit-filter;
  transition-property: transform, opacity, filter;
  transition-property: transform, opacity, filter, -webkit-transform, -webkit-filter;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  opacity: 0;
  will-change: transform, opacity;
  position: relative;
}

.jiwa.action {
  opacity: 1;
}