@charset "UTF-8";
/* ↓↓↓↓↓↓↓↓↓ flow↓↓↓↓↓↓↓↓↓ */
.title_bg.main_bg_4::after {
  content: "CONTACT"; }

.form {
  padding-top: 200px;
  overflow: hidden; }
  .form .content_area {
    max-width: 800px;
    padding-top: 180px;
    padding-bottom: 160px; }
  .form h2 {
    margin-bottom: 40px; }
  .form .form_text {
    margin-bottom: 80px; }
    .form .form_text p:first-child {
      margin-bottom: 1.5rem; }
    .form .form_text a {
      color: #0099a9;
      text-decoration: underline; }
  .form h3 {
    padding: 6px 24px;
    font-weight: bold;
    color: #fff;
    font-size: 2.2rem;
    border-radius: 100px;
    background: #0099a9;
    margin-bottom: 30px;
    width: fit-content; }
  .form .bg {
    width: 100%;
    height: calc(100% - 200px);
    border-radius: 0 200px 0 0; }
  .form .link_btn {
    margin: 100px auto 0;
    cursor: pointer;
    padding: 24px 30px 24px 40px; }
    .form .link_btn .link_btn_text {
      font-size: 3.2rem; }
  @media screen and (max-width: 1100px) {
    .form {
      padding-top: 0px; }
      .form .content_area {
        padding: 160px 12px 120px; }
      .form h2 {
        margin-bottom: 32px; }
      .form .form_text {
        margin-bottom: 60px; }
      .form h3 {
        padding: 6px 20px;
        font-size: 2rem;
        margin-bottom: 30px;
        margin-left: -12px; }
      .form .bg {
        height: calc(100% - 80px);
        border-radius: 0 80px 0 0; }
      .form .link_btn {
        padding: 20px 30px 20px 36px; }
        .form .link_btn .link_btn_text {
          font-size: 2.2rem; } }

.form_box {
  margin-bottom: 80px; }
  @media screen and (max-width: 1100px) {
    .form_box {
      margin-bottom: 50px; } }

.form_item {
  padding: 0 24px;
  margin-bottom: 30px; }
  .form_item:last-child {
    margin-bottom: 0; }
  @media screen and (max-width: 1100px) {
    .form_item {
      padding: 0;
      margin-bottom: 30px; } }

.input_title {
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
  line-height: 1.75; }
  .input_title::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 2px;
    margin-right: 6px;
    background: #0099a9;
    position: absolute;
    top: calc(2rem * 1.75 / 2);
    left: 0; }
  @media screen and (max-width: 1100px) {
    .input_title {
      font-size: 1.8rem;
      margin-bottom: 6px; }
      .input_title::before {
        top: calc(1.4rem * 1.75 / 2); } }

.input_disc {
  font-size: 1.6rem;
  color: #797f80;
  margin-bottom: 10px; }
  @media screen and (max-width: 1100px) {
    .input_disc {
      font-size: 1.4rem;
      margin-bottom: 8px; } }

.input_bg {
  background: #fff;
  border-radius: 6px; }
  .input_bg input {
    width: 100%;
    padding: 16px 16px; }
  @media screen and (max-width: 1100px) {
    .input_bg {
      border-radius: 4px; }
      .input_bg input {
        padding: 14px 12px; } }

::placeholder {
  color: #ccc; }

.radio_box {
  display: flex;
  flex-direction: column; }
  .radio_box label {
    width: fit-content;
    margin-bottom: 6px;
    position: relative;
    padding-left: calc(1.4rem + 6px);
    cursor: pointer; }
    .radio_box label .check_btn {
      display: inline-block;
      width: 1.4rem;
      height: 1.4rem;
      border-radius: 50%;
      background: #fff;
      position: absolute;
      top: calc(1.8rem * 1.5 / 2);
      left: 0;
      transform: translate(0, -50%); }
    .radio_box label .check_btn::after {
      content: "";
      display: inline-block;
      width: 0.8rem;
      height: 0.8rem;
      border-radius: 50%;
      background: #003f91;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: .16s; }
  .radio_box input:hover + .check_btn::after {
    opacity: .3; }
  .radio_box input:checked + .check_btn::after {
    opacity: 1; }

.other_text {
  display: none; }

.other_text.active {
  display: block; }

select, option, button, ::placeholder, input {
  font-family: "Roboto" , "Noto Sans JP" , "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"; }

select {
  border-radius: 6px;
  cursor: pointer;
  background: none;
  color: #0a1f33; }
  @media screen and (max-width: 1100px) {
    select {
      border-radius: 4px; } }

.select_bg {
  position: relative; }
  .select_bg::after {
    content: "";
    display: inline-block;
    background: url("../img/tri_select.svg") no-repeat center/contain;
    width: 1.6rem;
    height: 1.2rem;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translate(0, -50%); }

.input_bg_price {
  width: 30%;
  min-width: 120px;
  position: relative; }
  .input_bg_price .unit {
    position: absolute;
    font-size: 1.6rem;
    font-weight: bold;
    top: 50%;
    right: -10px;
    transform: translate(100%, -50%); }

.must::after {
  content: "必須";
  display: inline-block;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1;
  padding: 4px 6px 2px;
  background: #bb0000;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: 2px; }

.finish h1 {
  text-align: center; }
.finish .title_bg.main_bg_4::after {
  content: none; }
.finish .deco_dot {
  display: flex;
  justify-content: center;
  margin-bottom: 40px; }
  .finish .deco_dot span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    background: #0099a9;
    opacity: .2; }
    .finish .deco_dot span:last-child {
      margin-right: 0; }
.finish .finish_text_box {
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 160px; }
  .finish .finish_text_box p {
    margin-bottom: 1.6rem; }
    .finish .finish_text_box p:last-child {
      margin-bottom: 0; }
    .finish .finish_text_box p a {
      text-decoration: underline; }
  .finish .finish_text_box .finish_cap {
    color: #797f80;
    font-size: 1.6rem; }
.finish .link_btn {
  margin: 0 auto;
  margin-bottom: 160px; }
@media screen and (max-width: 1100px) {
  .finish .content_area {
    padding-top: 180px; }
  .finish h1 {
    margin-bottom: 30px; }
  .finish .deco_dot {
    margin-bottom: 30px; }
    .finish .deco_dot span {
      width: 6px;
      height: 6px;
      margin-right: 6px; }
  .finish .finish_text_box {
    margin-bottom: 100px; }
  .finish .link_btn {
    margin-bottom: 100px; } }

label.error {
  display: block;
  padding: 0 24px;
  color: #bb0000;
  position: relative;
  top: -24px; }
  label.error::before {
    content: "※"; }

.error_color {
  background: #F3E4E4; }

.check_text {
  margin-bottom: 60px; }
  @media screen and (max-width: 1100px) {
    .check_text {
      margin-bottom: 40px; } }

.finish_btn .link_btn {
  margin: 0 auto; }
.finish_btn .next_btn {
  margin-bottom: 30px; }
.finish_btn .back_btn {
  background: #797f80;
  padding: 14px 24px; }
  .finish_btn .back_btn::after {
    content: none; }
  .finish_btn .back_btn .link_btn_text {
    font-size: 1.6rem; }

.inquiry-form tr {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column; }
.inquiry-form th {
  color: #0099a9;
  margin-bottom: 10px;
  text-align: left;
  font-size: 2rem;
  position: relative;
  padding-left: 14px; }
  .inquiry-form th::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 2px;
    margin-right: 6px;
    background: #0099a9;
    position: absolute;
    top: calc(2rem * 1.5 / 2);
    left: 0; }
.inquiry-form td {
  padding-left: 1.8rem; }
@media screen and (max-width: 1100px) {
  .inquiry-form th {
    font-size: 1.8rem; } }
