@charset "UTF-8";
:root {
    --font-en: capitana, "Noto Sans", sans-serif;
    --font-ja: "Noto Sans", sans-serif;
    --color-navy: #26292C;
    --color-white: #EFEFEF;
    --color-red: red;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 初期リセット */
input, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-item,
.select-item {
    margin-bottom: 3rem;
}
.form-item dt,
.select-item dt {
    position: relative;
    align-items: center;
    font-size: .9em;
    margin-bottom: .3rem;
    color: #fff;
}
@media screen and (max-width: 768px) {
  .form-item dt {
      padding-right: 0;
  }
}
.form-item dt .small {
    font-size: .8em;
}
.form-item dt .need {
    position: absolute;
    right: 0;
    color: #30ff45;
}

input,
select,
textarea {
  width: 100%;
  background-color: rgba(255,255,255,.7);
  font-size: .9em;
  padding: 1rem;
  transition: all .3s;
  color: #222222;
}
@media screen and (max-width: 768px) {
  input,
  select,
  textarea {
    padding: 12px;
  }
  textarea {
    min-height: 150px;
  }
}

.select-item {
  display: flex;
}
.select {
  width: 30%!important;
}

input:focus,
select:focus,
textarea:focus {
  background-color: rgba(255, 255, 255, 1);
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: dimgray;
}

select.is-empty{
  color: dimgray;
}
select:invalid {
  color: dimgray;
}


.select {
  position: relative;
}
.select::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 1rem;
  width: .5rem;
  height: .5rem;
  border-right: 1px solid var(--color-navy);
  border-bottom: 1px solid var(--color-navy);
  color: var(--color-navy);
  pointer-events: none;
}


.form__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

}
.form-item {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form-item {
    width: 100%;
  }
}
.form-item.size-full {
  width: 100%!important;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}

.privacy-checkbox label {
  cursor: pointer;
  padding-left: 40px;
  position: relative;
  font-size: 16px;
}
.privacy-checkbox label input {
  border-bottom: none;
  display: contents;
}
.privacy-checkbox label::before {
  content: "";
  display: block;
  position: absolute;
}
.privacy-checkbox label::after {
  content: "";
  display: block;
  position: absolute;
}
.privacy-checkbox label::before {
  background-color: none;
  border-radius: 0%;
  border: 1px solid #acacac;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  cursor: pointer;
}
.privacy-checkbox label::after {
  border-bottom: 3px solid #30ff45;
  border-left: 3px solid #30ff45;
  opacity: 0;
  height: 10px;
  width: 18px;
  transform: translateY(-50%) rotate(-45deg);
  top: 40%;
  left: .4rem;
  z-index: 1;
}
.privacy-checkbox input:checked + label::after {
  opacity: 1;
}
.privacy-checkbox:first-child {
  margin: 20px 0 30px;
}
.privacy-checkbox.on label::after {
  opacity: 1;
}
.notice-text {
  font-size: .8em;
}


.submitBtn {
  width: 100%;
  max-width: 230px;
  text-align: center;
  margin-top: 5rem;
}
.submitBtn input {
  cursor: pointer;
  background-color: #30ff45;
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: .2rem;
  transition: all 0.5s;
  line-height: 1;
  width: 100%;
  height: 3rem;
  border-radius: 0;
}
.submitBtn input:hover {
  opacity: .7;
}

.header_emesg {
  margin: 10px 0 30px 0;
  line-height: 1.5;
  font-size: .9em;
  color: #30ff45;
  font-weight: bold;
}

.prl {
  padding: 10px;
}

.msg {
  display: inline-block;
  line-height: 1;
  font-size: 0.8em;
  color: red;
  font-weight: 500;
  padding-bottom: 2rem;
}

.need {
  display: inline-block;
  font-size: 0.8em;
  margin-left: 0.50px;
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

.tab_item {
  text-align: center;
  background: #555;
  padding: 10px 00px;
  color: #f2f2f2;
  cursor: pointer;
  width: 24.49%;
  display: inline-block;
  border: 2px solid #f2f2f2;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .tab_item {
    width: 24.44%;
  }
}
@media (max-width: 768px) {
  .tab_item {
    font-size: 0.8750px;
    width: 100%;
    display: block;
    margin-bottom: 0.50px;
    text-align: center;
  }
}
/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 50px 0 0 0;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#tab01:checked ~ #tab01_content, #tab02:checked ~ #tab02_content, #tab03:checked ~ #tab03_content, #tab04:checked ~ #tab04_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background: #000000;
}

/*フィールド入力時の自動背景色付与をなくす*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,.5) inset !important;
  box-shadow: 0 0 0px 1000px rgba(255,255,255,.5) inset !important;
  -webkit-text-fill-color: #000 !important;
}



.secContactForm {
  width: 100%;
  padding-bottom: 8rem;
}
@media (min-width: 769px) {
  .secContactForm {
    width: 37%;
    max-width: 350px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (max-width: 768px) {
  .secContactForm {
    padding-bottom: 5rem;
  }
}

#section-contact .contact-img {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}
#section-contact .contact-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact__inner {
  color: #fff;
}
.contact__inner {
  width: 100%;
  min-height: 100vh;
}

.contact__inner .contact-form {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 7rem 0 0;
    overflow-y: scroll;
    overflow: auto; /* または scroll */
    scrollbar-width: none; /* Firefox用 */
    -ms-overflow-style: none; /* IE/Edgeレガシー用 */
}
@media (max-width: 768px) {
  .contact__inner .contact-form {
    padding: 3rem 0 0;
  }
}
.contact__inner .contact-form__flex-box {
  position: relative;
  width: 90%;
  height: 100%;
  max-width: 1260px;
  margin: 0 auto;
}
.contact__inner .contact-title {
  font-family: "Helvetica", "sans-serif";
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: .15rem;
  color: #30ff45;
}
@media (max-width: 1080px) {
  .contact__inner .contact-title {
    flex-direction: column;
    align-items: start;
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: bold;
  }
}
@media (max-width: 1080px) {
    .contact__inner .contact-title {
    font-size: 2rem;
  }
}
.contact__inner .contact-title .logo {
  width: 100px;
  height: auto;
  margin-right: 2rem;
  filter: invert(100%) brightness(0%);
}
@media (max-width: 1080px) {
  .contact__inner .contact-title .logo {
    width: 85px;
    height: auto;
    margin-bottom: .5rem;
  }
}
.contact__inner p.secContactTxt01 {
  font-size: 1em;
  line-height: 1.7;
}
.contact__inner p.secContactTxt01 span {
  font-weight: bold;
  font-size: 1.1em;
}
.contact__inner p.secContactTxt01 a {
  text-decoration: underline;
}
@media (min-width: 769px) {
  .contact__inner .secContactTxt {
    width: 60%;
    position: sticky;
    top: 0;
    left: 0;
  }
}
@media (max-width: 768px) {
  .contact__inner .secContactTxt {
    width: 100%;
    margin-bottom: 5rem;
  }
}

.checklist-list-block .checkbox-list {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.checklist-list-block .checkbox-list .checkbox label {
  cursor: pointer;
  position: relative;
  padding-left: 2.5rem;
}
.checklist-list-block .checkbox-list .checkbox label::before, .checklist-list-block .checkbox-list .checkbox label::after {
  content: "";
  position: absolute;
  display: block;
}
.checklist-list-block .checkbox-list .checkbox label::before {
  background-color: none;
  border-radius: 0%;
  border: 1px solid #acacac;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  cursor: pointer;
}
.checklist-list-block .checkbox-list .checkbox label::after {
  border-bottom: 3px solid #30ff45;
  border-left: 3px solid #30ff45;
  opacity: 0;
  height: 10px;
  width: 18px;
  transform: translateY(-50%) rotate(-45deg);
  top: 40%;
  left: .4rem;
  z-index: 1;
}
.checklist-list-block .checkbox-list .checkbox label:has(input:checked)::after {
  opacity: 1;
}
.checklist-list-block .checkbox-list .checkbox label input {
  position: absolute;
  opacity: 0;
  inset: 0 0 0 0;
  width: 0;
  height: 0;
}
.checklist-list-block .checkbox-list .checkbox:first-child {
  margin-right: 4rem;
}


.pageback a {
  display: inline-block;
  margin-top: 7rem;
  font-weight: bold;
  font-size: 0.9em;
  padding: .6rem 2rem .5rem;
  line-height: 1;
  color: #fff;
  border: 1px solid #fff;
  transition: all .5s;
}
.pageback a:hover {
  opacity: .5;
}

