/* 241126 */

@charset "utf-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: bold;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

p:not(:last-child),ul,ol {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

strong {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* Safariで文字が太らないようにする */

_::-webkit-full-page-media, _:future, :root body {
  -webkit-font-smoothing: antialiased;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
    -webkit-font-smoothing: antialiased;
  }
}

/* 文字色
======================================================================= */

body {
  color: #331c03;
}

/* リンク */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media(max-width: 599px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 808px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

/* 間隔 */

.l-margin {
  margin: 40px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding > .l-margin:first-child {
  margin-top: 0;
}
.l-padding > .l-margin:last-child {
  margin-bottom: 0;
}

/* 二段組 */

.l-columns-2 {
  columns: 2;
  column-gap: 24px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 24px;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* 画像の大きさ */

.l-max-width-90 { max-width: 90%; }
.l-max-width-80 { max-width: 80%; }
.l-max-width-70 { max-width: 70%; }
.l-max-width-60 { max-width: 60%; }
.l-max-width-50 { max-width: 50%; }
.l-max-width-40 { max-width: 40%; }
.l-max-width-30 { max-width: 30%; }
.l-max-width-20 { max-width: 20%; }
.l-max-width-10 { max-width: 10%; }

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

@media(max-width: 599px) {
  .l-width {
    padding: 0 24px;
  }
  .l-margin {
    margin: 24px auto;
  }
  .l-padding {
    padding: 24px;
  }
  .l-columns-2,
  .l-columns-3 {
    margin: 2em 0;
    columns: 1;
    column-gap: 0;
  }
  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    justify-items: center;
  }
  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }

  /* 画像の大きさ */

  .l-sp-max-width-90 { max-width: 90%; }
  .l-sp-max-width-80 { max-width: 80%; }
  .l-sp-max-width-70 { max-width: 70%; }
  .l-sp-max-width-60 { max-width: 60%; }
  .l-sp-max-width-50 { max-width: 50%; }
  .l-sp-max-width-40 { max-width: 40%; }
  .l-sp-max-width-30 { max-width: 30%; }
  .l-sp-max-width-20 { max-width: 20%; }
  .l-sp-max-width-10 { max-width: 10%; }
}

/* ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢  ▲ ここまでは基本触らない ▲  ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢ */

/* =======================================================================

  メイン

======================================================================= */

.main {
  padding-bottom: 40px;
}

.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .main {
    padding-bottom: 24px;
  }
}

/* =======================================================================
  タイポグラフィー
======================================================================= */

.main p:not([class]) {
  font-size: 1.1em;
}

@media(max-width: 599px) {
  .main p:not([class]) {
    font-size: 1em;
  }
}

/* 小見出し H3
======================================================================= */

.h3 {
  margin: 40px auto;
  padding: 5px 0;
  padding-left: 15px;
  border-left: 4px solid #06752a;
  font-size: 30px;
  line-height: 1.333;
  color: #331c03;
}
  .h3:first-child {
    margin-top: 0;
  }

@media(max-width: 599px) {
  .h3 {
    margin: 24px 0;
    padding-left: 10px;
    font-size: 20px;
  }
}

/* 小見出し H3-1
======================================================================= */

.h3-1 {
  margin: 40px auto;
  padding: 48px 0;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
  color: #333;
  position: relative;
}
  .h3-1:first-child {
    margin-top: 0;
  }

.h3-1::before {
  position: absolute;
  top: 0;
  left: 0;

  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: transparent url(img/h3-deco.png) no-repeat center bottom;
  background-size: contain;
}

.h3-1::after {
  position: absolute;
  bottom: 0;
  left: 0;

  content: '';
  display: block;
  width: 100%;
  height: 25px;
  background: transparent url(img/h3-deco.png) no-repeat center top;
  background-size: contain;
}

@media(max-width: 599px) {
  .h3-1 {
    margin: 24px 0;
    padding: 30px 0;
    font-size: 21px;
  }
  .h3-1::before,
  .h3-1::after {
    height: 13px;
  }
}

/* 小見出し H4
======================================================================= */

.h4 {
  margin: 40px auto 1em;
  padding: 1em 0 0;
  border-top: 1px solid #ddd;
  font-size: 24px;
  line-height: 1.333;
  color: #333;
}

@media(max-width: 599px) {
  .h4 {
  margin: 2em auto 1em;
    font-size: 18px;
  }
}

/* 小見出し H5
======================================================================= */

.h5 {
  margin: 40px auto 1em;
  font-size: 18px;
  line-height: 1.333;
}

@media(max-width: 599px) {
  .h5 {
    margin: 24px auto 1em;
    font-size: 16px;
  }
}

/* =======================================================================
  ヘッダー
======================================================================= */

.header {
  background-color: #06752a;
  position: relative;
}

.gnav {
  display: flex;
  justify-content: flex-end;
}

.gnav-inner {
  padding-top: 20px;
  padding-bottom: 20px;

  position: absolute;
  z-index: 1;
}

.header-1 {
  background: url("img/header-1-bg.png") no-repeat center top;
  background-size: cover;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 100px;
}

.header-2 {
  text-align: center;
  margin-top: -200px;
}

@media(max-width: 599px) {
  .header {
    background-color: none;
  }

  .gnav-inner {
    text-align: right;
  }
}

/* =======================================================================
  CTA
======================================================================= */

.cta__txt {
  margin-top: 40px;
}

.cta__txt-2 {
  margin-top: 80px;
}

@media(max-width: 599px) {
  .cta__txt {
    margin-top: 20px;
  }

  .cta__txt-2 {
    margin-top: 40px;
  }

  .cta__btn-2 img {
    width: 60%;
  }
}

/* =======================================================================
  リード文
======================================================================= */

.lead__img ul {
  list-style-type: none;
  margin: 30px 0 30px;
  padding: 0;
  padding-inline-start: 0;
}

.lead__img img {
  width: 100%;
  object-fit: cover;
}

@media(max-width: 599px) {
  .lead__img ul {
    margin: 15px 0 15px;
  }

  .lead__img img {
    width: 100%;
    object-fit: cover;
  }
}


/* =======================================================================
  発見のプロ
======================================================================= */

.request {
  background: #f6f7e9 url("img/request__bg.jpg") no-repeat center top fixed;
  background-size: 100vw;
}

.request__item {
  background-color: #fff;
  display: grid;
  grid-template-columns: auto 30%;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}

.request__item:last-child {
  margin-bottom: 0;
}

.request__txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.33;
}

.main
.request__txt p {
  font-size: 21px;
  font-weight: bold;
}

.request__head {
  display: flex;
  align-items: center;
  font-size: 27px;
  font-weight: bold;
  margin-bottom: 20px;
}

.request__head img {
  width: 105px;
  margin-right: 20px;
}

.request__img {}

.request__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 599px) {
  .request {
    background-attachment: scroll;
    background-size: 150vw;
  }

  .request__item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .request__img {
    width: 100%;
  }
  .request__img img {
    aspect-ratio: 2.414 / 1;
  }

  .main
  .request__txt p {
    font-size: 18px;
  }

  .request__head {
    flex-direction: column;
    align-items: flex-start;
    font-size: 21px;
    margin-bottom: 10px;
  }

  .request__head img {
    width: 25%;
    margin-bottom: 10px;
  }
}

/* =======================================================================
  捜索プラン
======================================================================= */

.plan {}

.plan__item {
  background-color: #f2efe6;
}

.plan__item:last-child {
  margin-bottom: 0;
}

.plan__img {
  margin-bottom: 20px;
}

.plan__head {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  font-size: clamp(18px, 5.07vw, 27px);
}

.plan__head-num {
  margin-right: 15px;
  width: 60px;
  flex-shrink: 0;
}

.plan__ul {
  padding-inline-start: 0;
  margin-bottom: 0;
}

.plan__ul li {
  list-style-type: none;
  position: relative;
  margin-left: 30px;
  font-size: 21px;
  font-weight: bold;
}

.plan__ul li::before {
  position: absolute;
  top: .3em;
  left: -30px;

  content: '';
  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(img/check-mark-1.png);
  background-size: contain;
  vertical-align: middle;
}

@media(max-width: 599px) {
  .plan__img {
    margin-bottom: 10px;
  }

  .plan__head {
    margin-bottom: 16px;
  }

  .plan__head-num {
    margin-right: 5px;
    width: 14%;
  }

  .plan__ul li {
    margin-left: 25px;
    font-size: 18px;
  }

  .plan__ul li::before {
    left: -25px;

    width: 18px;
    height: 18px;
  }
}


/* =======================================================================
  選ばれる理由
======================================================================= */

.reason {
  background: #f2f2f2 url("img/reason__bg.jpg") no-repeat center top fixed;
  background-size: 100vw;
}

.reason__item {
  background-color: #fff;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
  display: grid;
  grid-template-columns: 30% auto;
}

.reason__item:last-child {
  margin-bottom: 0;
}

.reason__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason__txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reason__head {
  font-size: 27px;
  font-weight: bold;
  position: relative;
  padding-inline-start: 35px;
  margin-bottom: 15px;
}

.reason__head::before {
  position: absolute;
  top: .2em;
  left: 0;

  content: '';
  display: inline-block;
  width: 29px;
  height: 27px;
  background-image: url(img/check-mark-2.png);
  background-size: contain;
  vertical-align: middle;
}

.main
.reason__txt p {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.33;
}

@media(max-width: 599px) {
  .reason {
    background-attachment: scroll;
    background-size: 130vw;
  }

  .reason__item {
  }

  .reason__img {
    width: 100%;
    height: 100%;
  }

  .reason__img img {
    aspect-ratio: auto;
    height: 100%;
  }

  .reason__txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .reason__head {
    font-size: 21px;
    padding-inline-start: 30px;
    margin-bottom: 10px;
  }

  .reason__head::before {
    width: 22px;
    height: 21px;
  }

  .main
  .reason__txt p {
    font-size: 18px;
  }
}

/* =======================================================================
  料金
======================================================================= */

.price {
  background: #ece9da url("img/price__bg.jpg") no-repeat center top fixed;
  background-size: 100vw;
}

.price__item {
  background-color: #fff;
}

.main
.price__item p {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 18px;
}

.main
.price__item .price__notice {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 0;
  text-indent: -1em;
  padding-left: 1em;
}

.main
.price__item .price__notice:last-of-type {
  margin-bottom: 38px;
}


.price__h4 {
  background-color: #06752a;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  padding: 30px 40px;
  border-radius: 2px 2px 0 0;
}

.price__img {}

.price__ul {
  list-style-type: circle;
  padding-inline-start: 20px;
}

.main
.price__item .price__txt {
  padding-inline-start: 0;
}

.main
.price__item .price__txt-1 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 0;
}

.main
.price__item .price__txt-1::before {
  content: '';
  line-height: 1;
  margin-top: -.2em;
  margin-right: 10px;


  display: inline-block;
  width: 21px;
  height: 21px;
  background-image: url(img/check-mark-3.png);
  background-size: contain;
  vertical-align: middle;
}

.main
.price__item .price__txt-2 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 38px;
}

@media(max-width: 599px) {
  .price {
    background-attachment: scroll;
  }

  .main
  .price__item p {
    font-size: 18px;
    margin-bottom: 9px;
  }

  .main
  .price__item .price__notice {
    font-size: 13px;
  }

  .main
  .price__item .price__notice:last-of-type {
    margin-bottom: 19px;
  }

  .price__h4 {
    font-size: 21px;
    padding: 15px 20px;
  }

  .price__img {}

  .price__ul {
    list-style-type: circle;
    padding-inline-start: 20px;
  }

  .main
  .price__item .price__txt {
    padding-inline-start: 0;
  }

  .main
  .price__item .price__txt-1 {
    font-size: 18px;
  }

  .main
  .price__item .price__txt-1::before {
    margin-right: 7px;

    width: 18px;
    height: 18px;
  }

  .main
  .price__item .price__txt-2 {
    font-size: 16px;
    margin-bottom: 19px;
  }
}


/* =======================================================================
  問い合わせの流れ
======================================================================= */

.flow__ol {
  padding: 0;

  list-style-type: none;
  counter-reset: number;
}

.flow__ol li {
  position: relative;

  margin-bottom: 1em;
  background-color: #f2efe6;

  display: flex;
}

.flow__ol li span {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.flow__img {
  width: 25%;
  flex-shrink: 0;
  margin-left: auto;
}

.flow__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow__ol li::before {
  padding: .8em;
  display: block;
  background: #06752a;
  color: #fff;
  content: counter(number);
  counter-increment: number;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.flow__txt {
  padding: 20px;
}

.main
.flow__txt p {
  font-size: 21px;
  line-height: 1.33;
}

.flow__head {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.main
.flow__notice {
  font-size: 15px;
  margin-bottom: 0;
  text-indent: -1em;
  padding-left: 1em;
}

@media(max-width: 599px) {
  .flow__ol li::before {
    padding: .5em;
    font-size: 16px;
  }

  .flow__txt {
    padding: 10px;
  }

  .main
  .flow__txt p {
    font-size: 16px;
  }

  .flow__head {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .main
  .flow__notice {
    font-size: 13px;
  }
}

/* =======================================================================
  よくある質問
======================================================================= */

.faq {
  background: #efeee9 url("img/faq__bg.jpg") no-repeat center top fixed;
  background-size: 100vw;
}

.faq__item {
  margin: 24px auto;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}

.faq__item:last-child {
  margin-bottom: 0;
}

/* Q */

.faq__q {
  padding: 27px;
  background: #06752a;

  display: flex;
  align-items: flex-start;
}

.faq__q::before {
  content: '';
  line-height: 1;
  margin-top: .3em;
  margin-right: 10px;


  display: inline-block;
  width: 27px;
  height: 25px;
  background-image: url(img/faq__q.png);
  background-size: contain;
  vertical-align: middle;
}

.faq__head {
  margin: 0;
  text-align: left;
  font-size: 27px;
  font-weight: bold;
  color: #fff;
  line-height: 1.33;
}

/* A */

.faq__a-inner {
  position: relative;
  padding: 27px 40px 40px 65px;
  background: #fff;
  display: flex;
}

.main
.faq__a-inner p {
  font-size: 18px;
}

  .main .faq__a > *:last-child {
    margin-bottom: 0;
  }

.faq__a-inner::before {
  position: absolute;
  top: 30px;
  left: 25px;

  content: '';
  display: inline-block;
  width: 27px;
  height: 25px;
  background-image: url(img/faq__a.png);
  background-size: contain;
  vertical-align: middle;
}

@media(max-width: 599px) {
  .faq {
    background-attachment: scroll;
    background-size: 150vw;
  }

  .faq__item {
    margin: 12px auto;
  }

  /* Q */

  .faq__q {
    padding: 13px;
  }

  .faq__q::before {
    margin-top: 0;
    margin-right: 7px;

    width: 23px;
    height: 21px;
  }

  .faq__head {
    font-size: 18px;
  }

  /* A */

  .faq__a-inner {
    position: relative;
    padding: 13px 20px 20px 40px;
  }

  .main
  .faq__a-inner p {
    font-size: 16px;
  }

  .faq__a-inner::before {
    position: absolute;
    top: 15px;
    left: 13px;

    width: 22px;
    height: 21px;
  }
}

/* =======================================================================
  キャンセルポリシー
======================================================================= */

.poricy {
  border: 1px solid #331c03;
}

.main
.poricy p {
  font-size: 15px;
}

@media(max-width: 599px) {
  .main
  .poricy p {
    font-size: 13px;
  }
}

/* =======================================================================
  フッター
======================================================================= */

.footer {
  margin: 0;
  padding: 40px 0;
  font-size: .8em;
  text-align: center;
  background-color: #06752a;
  color: #fff;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  margin-bottom: 30px;
}

.footer__navi {
  text-align: right;
}

.footer__navi p {
  margin-bottom: 0;
}

.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  justify-content: flex-end;
}

.footer__nav ul li {
  font-size: .9em;
}

.footer__nav ul li:not(:last-child) {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #fff;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer__copy {
  font-size: 1em;
  text-align: right;
}

@media(max-width: 599px) {
  .footer {
    padding: 24px 0;
  }
  .footer__inner {
    display: block;
  }
  .footer__logo {
    margin-bottom: 24px;
  }
  .footer__logo img {
    max-width: 50%;
  }
  .footer__nav ul {
    justify-content: center;
  }
  .footer__copy {
    text-align: center;
  }
}

/* =======================================================================
  プライバシーポリシー
======================================================================= */

.privacy__body {
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.privacy__h1 {
  margin-top: 80px;
  margin-bottom: 40px;
  font-size: 27px;
  border-bottom: 1px solid #06752a;
  display: inline-block;
  padding-bottom: 3px;
}

.privacy__h2 {
  font-size: 21px;
  margin-bottom: 20px;
}

@media(max-width: 599px) {
  .privacy__h1 {
    margin-top: 40px;
    font-size: 21px;
    margin-bottom: 20px;
  }

  .privacy__h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

/* =======================================================================
  特定商取引法に基づく表記
======================================================================= */

.law__body {
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

.law__h1 {
  margin-top: 40px;
  font-size: 27px;
  border-bottom: 1px solid #06752a;
  display: inline-block;
  padding-bottom: 3px;
}

.table {
  table-layout: fixed;
  width: 100%;
}

.table th,
.table td {
  padding: .75em 1em;
  vertical-align: top;
  text-align: left;
}

.table th,
.table td {
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
  word-wrap: break-word;
}

.table tr:first-child {
  line-height: 1.5;
  border-top: 1px solid #ddd;
}

.table tbody th {
  background: #f7f5f0;
  width: 32%;
}

.table ul, ol {
  padding-inline-start: 20px;
}

.wrap {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

@media(max-width: 599px) {
  .law__h1 {
    font-size: 21px;
  }
}

/* =======================================================================
  フォーム
======================================================================= */

.form__h1 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-top: 60px;
}

.form {}

.form__item {
  margin-bottom: 40px;
}

.main
.form__txt-1 {
  font-size: 16px;
}

.form__txt-2 {
  font-size: 16px;
  font-weight: 600;
}

.form__inner {
  margin-bottom: 1.3em;
}

.main .form__inner p:not([class]) {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.form input[type="text"] {
  display: block;
  padding: 1em;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #333;
  font-size: 18px;
  font-family: FontAwesome;
}

.form input[type="email"] {
  display: block;
  padding: 1em;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #333;
  font-size: 18px;
  font-family: FontAwesome;
}

.form input[type="date"] {
  display: block;
  padding: 1em;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #333;
  font-size: 18px;
  font-family: FontAwesome;
}

.form textarea {
  display: block;
  padding: 1em;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #333;
  font-size: 18px;
  font-family: FontAwesome;
}

.form_field {
  display: block;
  padding: 1em;
  width: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #aaa;
  border-radius: 2px;
  background-color: #fff;
  color: #333;
  font-size: 18px;
  font-family: FontAwesome;
}

.require {
  font-size: 13px;
  font-weight: 400;
  color: #b3122d;
}

.form__btn {
  text-align: center;
  margin-top: 40px;
}

.form__btn button {
  width: 70%;
  margin: 0 auto;
  border-radius : 3px;
  font-size: 18pt;
  text-align: center;
  cursor: pointer;
  padding-top: 18px;
  padding-bottom: 18px;
  background: #fa9200;
  color: #fff;
  line-height: 1em;
  transition: .3s;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
  border: 2px solid #fa9200;
}

.form__btn button:hover {
  box-shadow: none;
  color: #fa9200;
  background: #fff;
}

.error {
  font-size: 16px;
  font-weight: 400;
  color: #b3122d;
}


@media(max-width: 599px) {
  .form__h1 {
    font-size: 24px;
    margin-top: 30px;
  }

  .form__item {
    margin-bottom: 20px;
  }

  .form__txt-1 {
    font-size: 14px;
  }

  .form__txt-2 {
    font-size: 14px;
  }

  .main .form__inner p {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .form input[type="text"] {
    margin: 0 auto 1.3em;
    font-size: 13px;
  }

  .form input[type="email"] {
    margin: 0 auto 1.3em;
    font-size: 13px;
  }

  .form input[type="date"] {
    margin: 0 auto 1.3em;
    font-size: 13px;
  }

  .form textarea {
    margin: 0 auto 1em;
    font-size: 12px;
  }

  .form_field {
    margin: 0 auto 1.3em;
    font-size: 13px;
  }

  .require {
    font-size: 12px;
  }

  .form__btn {
    margin-top: 20px;
  }

  .form__btn button {
    font-size: 16pt;
    width: 100%;
  }
}

/* =======================================================================
  Thanks
======================================================================= */

.thanks {
  padding-top: 100px;
  padding-bottom: 100px;
}

.thanks__h1 {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-top: 60px;
}

.thanks__h2 {
  font-size: 24px;
  text-align: center;
}

.thanks a {
  text-decoration: none;
}

.thanks__btn {
  background-color:#fa9200;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  margin-top: 100px;
  font-size: 21px;
  width: 60%;
  margin: 100px auto;
  padding-top: 18px;
  padding-bottom: 18px;
}

@media(max-width: 599px) {
  .thanks {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .thanks__h1 {
    font-size: 24px;
    margin-top: 30px;
  }

  .thanks__h2 {
    font-size: 18px;
  }

  .thanks__btn {
    margin-top: 50px;
    font-size: 16px;
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* =======================================================================
  アクセント
======================================================================= */

.a-bold,
p.a-bold {
  font-weight: bold;
}

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 30px;
}

@media(max-width: 599px) {
  .a-big,
  p.a-big {
    font-size: 17px;
  }

  .a-big1,
  p.a-big1 {
    font-size: 19px;
  }

  .a-big2,
  p.a-big2 {
    font-size: 21px;
  }

  .a-big3,
  p.a-big3 {
    font-size: 23px;
  }
}

.a-center,
p.a-center {
  text-align: center;
}

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffea00;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.a-red,
p.a-red {
  color: #cc2200;
}

.a-yellow,
p.a-yellow {
  color: #ffea00;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}

/* 点滅 */

.a-blink {
	animation: blink .8s ease-in-out infinite alternate;
}

@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* フワフワ */

.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* 形状 */

.is-shadow {
  filter: drop-shadow(0 16px 16px rgba(0,0,0,0.15));
}
.is-shadow:hover {
  filter: none;
}

.is-round {
  border-radius: 9px;
}


/* 

vwの値 = (目標のサイズ(px) / ビューポート幅(px)) × 100
（例）5.6vw = (21px ÷ 375px) × 100

ビューポート375pxの場合

18px = 4.80vw
19px = 5.07vw
24px = 5.33vw
21px = 5.60vw
22px = 5.87vw
23px = 6.13vw
24px = 6.40vw
25px = 6.67vw
26px = 6.93vw
27px = 7.20vw
28px = 7.47vw
29px = 7.73vw
30px = 8.00vw
31px = 8.27vw
32px = 8.53vw
33px = 8.80vw
34px = 9.07vw
35px = 9.33vw
36px = 9.60vw
37px = 9.87vw
38px = 10.13vw
39px = 10.40vw
40px = 10.67vw

*/

/* 
 * LP Template
 * © Motokazu Yoshida Design
 */