@charset "UTF-8";

/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role="list"], ol[role="list"] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

a {
  text-decoration: none;
  color: #212529;
}

ul, ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#contact{
   background: #FFEADD ;
}

main {
  /*margin-top: 70px;*/
  
}


.inner {
  width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .inner {
    width: 100%;
    padding: 0 30px;
  }
}

@media screen and (max-width: 599px) {
  .inner {
    min-width: 320px;
    width: 100%;
    padding: 0 20px;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 599px) {
  .sp {
    display: block;
  }
}

p {
  line-height: 1.5;
  margin-bottom: 20px;
}

p a {
  color: #1579D8;
  text-decoration: underline;
}

p a:hover {
  color: #1579D8;
}
#entry-form a{
  color: #1579D8;
  text-decoration: underline;
}

.row {
  display: flex;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  color: #3c3c3c;
}

#contact header.header {
  background-color: black;
  position: relative;
  height: 36px;
}

#contact header.header figure a {
  width: 150px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}

@media screen and (max-width: 599px) {
  #contact header.header figure a {
    width: 200px;
    padding: 0;
    justify-content: flex-start;
  }
}

.header {
  height: 72px;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  padding-right: 20px;
  transition: ease all 0.5s;
  box-shadow: none;
}


@media screen and (max-width: 599px) {
  .header {
    height: auto;
    padding: 10px 10px 10px 15px;
  }
  .header nav.sp {
    display: flex;
    padding: 0;
    justify-content: flex-end;
  }
  .header nav.sp a {
    display: flex;
    background: #fff;
    color: #FF550A;
    width: 50px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    margin: 0 5px;
    font-size: 18px;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

header a {
  color: #fff;
  text-decoration: none;
}

header figure a {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}

@media screen and (max-width: 599px) {
  header figure a {
    width: 200px;
    padding: 0;
    justify-content: flex-start;
  }
}

header nav {
  display: flex;
  flex-grow: 1;
  margin-top: 18px;
}

@media screen and (max-width: 599px) {
  header nav {
    margin: 0;
  }
}

header nav p > * {
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

header nav p i {
  margin-right: 10px;
  font-size: 24px;
}

header nav p em {
  line-height: 1;
  font-style: normal;
  font-weight: 500;
  /* 浜田追記 20201214 */
}

header nav p.tel {
  margin-left: auto;
}

header nav p.tel em {
  font-weight: bold;
  font-size: 2rem;
  display: block;
}

header nav p.tel small {
  display: block;
  margin-top: 4px;
  line-height: 1;
  font-weight: 400;
}

header nav a.mail {
  display: flex;
  background: #fff;
  color: #0029B1;
  padding: 10px 30px;
  border-radius: 2px;
  height: 40px;
}

header nav a.mail > em {
  padding: 0;
  font-weight: 700;
  font-style: normal;
}

header nav a.mail > span {
  margin-right: 10px;
}

.footer-sub {
  text-align: center;
  padding: 30px 20px;
  font-size: 1.2rem;
  background: #FFEADD ;
}

.footer-logo{
  display: inline;
  padding-bottom: 15px;
}

.footer-sub span {
  display: block;
}

.footer-sub ul.sub-nav {
  margin-left: 20px;
  display: flex;
}

.footer-sub ul.sub-nav li {
  margin-right: 20px;
}

.footer-sub ul.sub-nav a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-sub ul.sub-nav a:hover {
  color: white;
}

.footer-logo {
  width: 100px;
  color: #fff;
}

@media screen and (max-width: 599px) {
  .footer-sub {
    flex-direction: column;
  }
  .footer-sub span {
    display: block;
    text-align: center;
    padding-top: 15px;
  }
  .footer-sub ul.sub-nav {
    flex-direction: column;
    margin-top: 20px;
    margin-left: 0;
  }
  .footer-sub ul.sub-nav li {
    margin-right: 0;
    margin-bottom: 10px;
    border-bottom: 1px dotted #b4b4b4;
    padding: 10px 5px;
  }
}


.row {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.col2 {
  width: 13.91%;
}

.col3 {
  width: 22.5%;
}

.col4 {
  width: 31.1%;
}

.col6 {
  width: 48.3%;
}

@media screen and (max-width: 559px) {
  .col1, .col2, .col3, .col4, .col5, .col6 {
    width: 47.860%;
    margin-right: 3.623%;
  }
  .col2:nth-child(2n),
  .col3:nth-child(2n),
  .col4:nth-child(2n),
  .col6:nth-child(2n) {
    margin-right: 0;
  }
}


.sub-headline {
  color: #313131;
  padding: 30px 0 0;

}
.sub-headline__title {
  display: flex;
  justify-content: space-between;
  
}

@media screen and (max-width: 599px) {
  .sub-headline__title h1{
    font-size: 2rem;
  }
  .sub-headline__title img{
    width: 120px;
    height: auto;
  }
}

.entry-form {
  background:linear-gradient(180deg, #FFFFFF 0%, #FFEADD 100%);
  background:#FFEADD ;
  position: relative;
}

.entry-form::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
}



.entry-form__title {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .entry-form__title {
    font-size: 2.6rem;
  }
}

.entry-form-content-wrap {
  background: #fff;
  border-radius: 10px;
  margin: 30px auto;
  min-height: 750px;
  text-align: center;
  padding-bottom: 30px;
  padding-top: 30px;
  position: relative;
}

.loader-wrapper{
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.loader-spin {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: solid 4px;
  border-color: #ddd #f7f7f7 #f7f7f7;
  position: relative;
  animation-name: spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
    
  }
}
#lf_form_div{
  background: #fff;
  z-index: 3;
  position: relative;
}


.entry-form-content-wrap__inner {
  text-align: left;
  margin: 0 auto;
  width: 80%;
  max-width: 700px;
  box-sizing: border-box;
}

.caution {
  margin: 10px auto;
  padding: 20px 25px;
  background-color: #fff;
  border-radius: 10px;
}

.caution__title {
  color: #FF550A;
  font-weight: bold;
  margin-bottom: 3px;
}

.caution__text {
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.3;
}

/* ===================================
  設問エリアのレイアウト
  =================================== */
/* 設問の表 */
table.items {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  /* 設問の行 */
  /*設問名のセルのデザイン */
  /* 設問の入力セルおよび表示セルのデザイン */
  /* 設問の入力例/説明セルのデザイン */
  /* 入力セルの「氏」「名」の文字のデザイン */
  /* ボタンの表示エリアの設定 */
  /* 入力エラーメッセージのデザイン */
  /* 入力フィールド */
  /* ===================================
  必須項目のマークおよびメッセージなど
  =================================== */
  /* 必須項目のマーク */
  /* 必須項目についての説明文 */
  /* メールアドレスの再入力メッセージ */
  /* ========================================= */
}

@media screen and (max-width: 1024px) {
  table.items {
    table-layout: fixed;
  }
}

table.items tr.item {
  position: relative;
}

table.items td.label {
  padding: 20px 20px 0 0;
  vertical-align: top;
  font-weight: bold;
  min-width: 200px;
}

@media screen and (max-width: 1024px) {
  table.items td.label {
    display: block;
    padding: 5px 0;
  }
}

table.items td.value {
  padding: 20px 0;
  display: block;
  border-bottom: 1px dotted #d5d5d5;
  max-width: 100%;
}

@media screen and (max-width: 1024px) {
  table.items td.value {
    border-bottom: unset;
    padding: 5px 0 0;
  }
}

table.items td.comment {
  display: block;
  position: absolute;
  bottom: 2px;
  font-size: 1.2rem;
  color: #868E96;
}

@media screen and (max-width: 1024px) {
  table.items td.comment {
    position: relative;
    margin-bottom: 15px;
  }
}

table.items span.label_name {
  color: #212529;
  margin-right: 5px;
}

table.items input + span.label_name {
  margin-left: 10px;
}

@media screen and (max-width: 599px) {
  table.items input + span.label_name {
    margin-left: 0;
  }
}

table.items div.button_area {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

table.items div.message {
  color: #dc3545;
}

table.items input[type="text"],
table.items textarea {
  font-size: 1.4rem;
  line-height: 1em;
  padding: 8px 10px;
  border-radius: 3px;
  border: 1px solid #d5d5d5;
}

@media screen and (max-width: 1024px) {
  table.items input[type="text"],
  table.items textarea {
    width: 100%;
  }
}

table.items select {
  font-size: 1.4rem;
  line-height: 1em;
  padding: 10px 27px 10px 10px;
  border-radius: 3px;
  border: 1px solid #d5d5d5;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  background-image: url(../img/arr-d.svg);
  background-position: right 10px top 15px;
  background-repeat: no-repeat;
  background-size: 10px 6px;
}

@media screen and (max-width: 1024px) {
  table.items select {
    width: 100%;
  }
}

table.items span.required {
  color: #dc3545;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1em;
  display: inline-block;
  margin-left: 8px;
}

table.items span.required:after {
  content: "必須";
}

table.items p.required_msg:after {
  content: "";
}

table.items p.label_mail {
  margin: 5px 0 1px 0;
  color: #dc3545;
}

table.items p.label_mail:after {
  content: "確認のため、もう一度メールアドレスを入力してください";
}

table.items #item_1 input[type="text"] {
  width: 30%;
}

@media screen and (max-width: 599px) {
  table.items #item_1 input[type="text"] {
    display: block;
    width: 100%;
  }
}

table.items .privacy_policy {
  margin: 0;
  padding: 20px 0 0;
  color: #54595F;
}

table.items .privacy_policy .privacy-text-master br {
  display: none;
}

table.items p.thanks-message {
  text-align: center;
  background-color: #fff;
  padding: 40px;
}

.button_area {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

/* 確認／送信／戻る／登録ボタン */
input[type=button]#lf_form_submit_button,
input[type=button]#button_confirm_submit {
  background-color:#FF550A ;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .08rem;
  border: none;
  border-radius: 50px;
  padding: 16px 50px;
  display: block;
}

@media screen and (max-width: 599px) {
  input[type=button]#lf_form_submit_button,
  input[type=button]#button_confirm_submit {
    width: 100%;
  }
}

input[type=button]#button_confirm_back {
  background-color: #fff;
  color: #333;
  font-size: 2rem;
  letter-spacing: .08rem;
  border: 1px solid #ced4da;
  border-radius: 50px;
  padding: 20px 50px;
  display: block;
  margin: 0 10px 0 0;
}

@media screen and (max-width: 599px) {
  input[type=button]#button_confirm_back {
    width: 100%;
  }
}

input[type=button]:hover {
  cursor: pointer;
}
