@charset "UTF-8";
/*=============================================================
フォーム選択切り替え
=============================================================*/
.tabbox input {
  display: none;
}
.tabbox .tab {
  display: inline-block;
  color: #fff;
  width: 25%;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  box-sizing: border-box;
  padding: 0.5em 1em;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .tabbox .tab {
    width: calc(50% - 1.5vw);
  }
}
@media screen and (max-width: 520px) {
  .tabbox .tab {
    width: calc(50% - 1.65vw);
    font-size: 1rem;
  }
}
.tabbox .tab.green {
  background-color: #203233;
  margin-right: 2vw;
}
.tabbox .tab.orange {
  background-color: #af5310;
}
.tabbox .tab:hover {
  cursor: pointer;
}
.tabbox input:checked + .tab {
  padding: 0.5em 1em 1.5em 1em;
}

.form_content.green {
  border-top: 3px solid #203233;
  border-left: 3px solid #203233;
}
.form_content.orange {
  border-top: 3px solid #af5310;
  border-left: 3px solid #af5310;
}

/*=============================================================
フォームコンテンツ
=============================================================*/
form dl .wd_100 {
  width: 100%;
}
form dl .wd_80 {
  width: 80%;
}
@media screen and (max-width: 768px) {
  form dl .wd_80 {
    width: 100%;
  }
}
form dl .wd_60 {
  width: 60%;
}
@media screen and (max-width: 768px) {
  form dl .wd_60 {
    width: 100%;
  }
}
form dl .wd_15 {
  width: 15%;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  form dl .wd_15 {
    width: 20%;
  }
}
@media screen and (max-width: 520px) {
  form dl .wd_15 {
    width: 30%;
  }
}
form dl .wd_12em {
  width: 12em;
}
form dl .wd_10em {
  width: 10em;
}
form dl input, form dl textarea {
  box-sizing: border-box;
  border: 1px solid #333;
  border-radius: 4px;
  line-height: 1.8;
}
form dl input:focus, form dl textarea:focus {
  outline: none;
  border-color: #333;
}
form dl input[type=date],
form dl input[type=email],
form dl input[type=number],
form dl input[type=password],
form dl input[type=tel],
form dl input[type=text],
form dl input[type=url],
form dl textarea {
  margin: 0 0 0 0;
  padding: 0.5em 0.5em;
}
form dl input[type=date]:focus,
form dl input[type=email]:focus,
form dl input[type=number]:focus,
form dl input[type=password]:focus,
form dl input[type=tel]:focus,
form dl input[type=text]:focus,
form dl input[type=url]:focus,
form dl textarea:focus {
  outline: none;
  border-color: #666;
}
form dl select:focus {
  outline: none;
  border-color: #999;
}
form dl .alert {
  display: none;
}
form dl .error_messe {
  font-size: 0.875rem;
  color: #bf403a;
  font-weight: bold;
}
form dl .note {
  width: 63%;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  form dl .note {
    width: 100%;
  }
}
form dl .note span {
  display: inline-block;
}
form dl dt {
  font-weight: bold;
}
form dl dt .required {
  color: #bf403a;
  margin-left: 0.25em;
}
form dl dt:not(:first-of-type) {
  margin-top: 2rem;
}
form dl dd input,
form dl dd textarea {
  box-sizing: border-box;
  border: 2px solid #cdcfd0;
  border-radius: 0;
  line-height: 1.25;
}
form dl dd input:focus,
form dl dd textarea:focus {
  outline: none;
  border-color: #666;
}
form dl dd.date .select_wrap {
  display: flex;
  justify-content: space-between;
  background-color: #ccc;
  box-sizing: border-box;
  padding: 1rem;
  width: 60%;
}
@media screen and (max-width: 768px) {
  form dl dd.date .select_wrap {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  form dl dd.date .select_wrap {
    width: 100%;
    flex-direction: column;
  }
}
form dl dd.date .select_wrap .select_box {
  width: 47.5%;
}
@media screen and (max-width: 520px) {
  form dl dd.date .select_wrap .select_box {
    width: 80%;
    max-width: 18rem;
  }
}
form dl dd.date .select_wrap .select_box label.selectbox01 {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 0;
}
form dl dd.date .select_wrap .select_box label.selectbox01::after {
  position: absolute;
  top: calc(50% - 0.1em);
  right: 1em;
  width: 0.75em;
  height: 0.5em;
  background-color: #333;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
form dl dd.date .select_wrap .select_box label.selectbox01 select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
  margin-bottom: 0;
  padding: 0.5em;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  form dl dd.date .select_wrap .select_box label.selectbox01 select {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 520px) {
  form dl dd.date .select_wrap .select_box label.selectbox01 select {
    font-size: 0.875rem;
  }
}
form dl dd.date .alert + .note {
  margin-top: 1em;
}
form dl dd.date .note.red {
  color: #bf403a;
}
form dl dd.address_wrap .zip {
  display: flex;
}
form dl dd.address_wrap .zip > span {
  width: calc(2em - 4px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  background-color: #aaa;
  font-weight: bold;
  color: #fff;
}
form dl dd.address_wrap .address {
  margin-top: 1em;
}

.form_content {
  box-sizing: border-box;
  padding: 3rem min(2.5vw, 30px) 6rem;
  background-color: #fff;
}
@media screen and (max-width: 520px) {
  .form_content {
    padding: 2rem 5vw 4rem;
  }
}
.form_content .submit_wrap {
  margin: 4rem 0 0;
}
.form_content .submit_wrap .btn_wrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 520px) {
  .form_content .submit_wrap .btn_wrap {
    flex-direction: column;
  }
}
.form_content .submit_wrap .btn_wrap .btn_submit {
  width: max(17.6vw, 21rem);
}
@media screen and (max-width: 520px) {
  .form_content .submit_wrap .btn_wrap .btn_submit {
    width: 80vw;
  }
}
.form_content .submit_wrap .btn_wrap .btn_submit input[type=submit] {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-weight: bold;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  padding: 1em 2em 1em 2em;
  position: relative;
  box-sizing: border-box;
  border-radius: 4px;
  transition: 0.2s ease;
}
@media screen and (max-width: 520px) {
  .form_content .submit_wrap .btn_wrap .btn_submit input[type=submit] {
    padding: 1em 1em 1em 1em;
  }
}
.form_content .submit_wrap .btn_wrap .btn_submit input[type=submit]:hover {
  cursor: pointer;
}
.form_content.green .submit_wrap .btn_wrap .btn_submit input[type=submit] {
  background-color: #203233;
  border: 2px solid #203233;
}
.form_content.green .submit_wrap .btn_wrap .btn_submit input[type=submit]:hover {
  background-color: #fff;
  color: #203233;
}
.form_content.orange .submit_wrap .btn_wrap .btn_submit input[type=submit] {
  background-color: #af5310;
  border: 2px solid #af5310;
}
.form_content.orange .submit_wrap .btn_wrap .btn_submit input[type=submit]:hover {
  background-color: #fff;
  color: #af5310;
}

/*=============================================================
フォーム・プライバシーポリシー
=============================================================*/
.form_content #privacy {
  margin-top: 3rem;
}
@media screen and (max-width: 520px) {
  .form_content #privacy {
    margin-top: 2rem;
  }
}
.form_content #privacy .notice {
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 520px) {
  .form_content #privacy .notice {
    text-align: left;
    font-size: 0.875rem;
  }
}
.form_content #privacy .content {
  aspect-ratio: 3/1;
  overflow-y: scroll;
  box-sizing: border-box;
  border: 2px solid #cdcfd0;
  font-size: 1rem;
  padding: 2rem;
  margin-top: 3rem;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .form_content #privacy .content {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 520px) {
  .form_content #privacy .content {
    font-size: 0.875rem;
    aspect-ratio: 4/3;
    margin-top: 2rem;
    padding: 1em;
  }
}
.form_content #privacy .content h3 {
  font-size: 1.125rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  padding: 1em;
}
@media screen and (max-width: 520px) {
  .form_content #privacy .content h3 {
    font-size: 1rem;
    padding: 1em 0.5em;
  }
}
.form_content #privacy .content h4 {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  margin-top: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 520px) {
  .form_content #privacy .content h4 {
    font-size: 0.875rem;
  }
}
.form_content #privacy .content h4 + p {
  margin-top: 1em;
}
.form_content #privacy .content p {
  font-size: 1rem;
}
@media screen and (max-width: 520px) {
  .form_content #privacy .content p {
    font-size: 0.875rem;
  }
}
.form_content #privacy .content p.com_info {
  margin-top: 1em;
  font-weight: bold;
}
.form_content #privacy .content p.com_info a {
  display: inline-block;
  margin-right: 1em;
}
.form_content #privacy .content p.com_info span {
  display: inline-block;
}
.form_content #privacy .content ul {
  list-style-type: disc;
  box-sizing: border-box;
  padding-left: 1em;
  margin-top: 1em;
}
.form_content #privacy .content ul li {
  font-size: 1rem;
}
@media screen and (max-width: 520px) {
  .form_content #privacy .content ul li {
    font-size: 0.875rem;
  }
}
.form_content.green #privacy .content h3 {
  background-color: #203233;
}
.form_content.orange #privacy .content h3 {
  background-color: #af5310;
}

/*=============================================================
フォーム・送信確認
=============================================================*/
#contact.confirm .form_content {
  border-top: 3px solid #666;
  border-left: 3px solid #666;
}
#contact.confirm .submit_wrap.confirm .btn_wrap .btn_submit.send {
  box-sizing: border-box;
  padding: 0 1rem;
}
#contact.confirm .submit_wrap.confirm .btn_wrap .btn_submit.send input[type=submit] {
  background-color: #bf403a;
  border: 2px solid #bf403a;
}
#contact.confirm .submit_wrap.confirm .btn_wrap .btn_submit.send input[type=submit]:hover {
  background-color: #fff;
  color: #bf403a;
}
#contact.confirm .submit_wrap.confirm .btn_wrap .btn_back {
  width: max(17.6vw, 21rem);
  box-sizing: border-box;
  padding: 0 1rem;
}
@media screen and (max-width: 520px) {
  #contact.confirm .submit_wrap.confirm .btn_wrap .btn_back {
    width: 80vw;
    margin-bottom: 2rem;
  }
}
#contact.confirm .submit_wrap.confirm .btn_wrap .btn_back input[type=button] {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-weight: bold;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
  padding: 1em 2em 1em 2em;
  position: relative;
  background-color: #666;
  box-sizing: border-box;
  border-radius: 4px;
  border: 2px solid #666;
  transition: 0.2s ease;
}
@media screen and (max-width: 520px) {
  #contact.confirm .submit_wrap.confirm .btn_wrap .btn_back input[type=button] {
    padding: 1em 1em 1em 1em;
  }
}
#contact.confirm .submit_wrap.confirm .btn_wrap .btn_back input[type=button]:hover {
  background-color: #fff;
  color: #666;
}

#contact.confirm form dl dd.date label.selectbox01 {
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.5em 1em;
}
#contact.confirm form dl dd.date label.selectbox01::after {
  content: none;
  position: static;
}
