/*
Theme Name: GS Dream Teams
Description: GS Dream Teams
Version: xxx
Author: xxx
*/

html {
  font-size: 100%;
}

body {
  color: #333333;
  font-family: "Noto Sans jp", sans-serif;
  background-color: #02277f;
}

@media print, screen and (min-width: 769px) {
  .no_pc {
    display: none !important;
  }
}

@media print, screen and (max-width: 768px) {
  .no_sp {
    display: none !important;
  }
}

.allstop_scroll {
  overflow: hidden;
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 500ms;
  overflow: hidden;

  &.scrollin {
    opacity: 1;
    transform: translate(0, 0) !important;
  }
}

a {
  text-decoration: none;
}

p {
  font-size: 1.3rem;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
  font-size: 1.2rem;
}

.section {
  margin: 0;
}

/*
-------------------------------header
*/

#header {
  max-width: 1080px;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  margin: 0 auto;
  padding: 0 3%;
  height: 100px;
  position: relative;
  overflow-x: hidden;
}

/* #header.is_position {
  position: inherit;
} */

#header>a {
  display: inline-block;
  margin-right: auto;
}

#header button {
  padding: 10px 0;
  align-items: center;
}

#header img {
  height: 50px;
  align-items: center;
}

#header button a {
  font-size: 12px;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.3s;
  background-color: [object object];
  background-image: linear-gradient(230deg, rgba(159, 139, 38, 1) 15%, rgba(206, 182, 58, 1));
}

#header button a:hover {
  opacity: 0.7;
}

#header .h_menu {
  position: relative;
  margin-left: 10px;
  /* z-index: 999; */
}

#header .h_menu a {
  display: block;
  position: relative;
  text-align: center;
  top: 0px;
  left: 0px;
  width: 40px;
  height: 40px;
  z-index: 9900;
}

#header .h_menu a span {
  display: block;
  position: relative;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  width: 30px;
  height: 1.5px;
  background-color: #FFFFFF;
  transition: 0.3s;
}

#header .h_menu a span::before {
  content: "";
  display: block;
  position: relative;
  top: -8px;
  left: 0px;
  transform: translate(0%, -50%);
  width: 30px;
  height: 1.5px;
  background-color: #FFFFFF;
  transition: 0.3s;
}

#header .h_menu a span::after {
  content: "";
  display: block;
  position: relative;
  top: 8px;
  left: 0px;
  transform: translate(0%, -50%);
  width: 30px;
  height: 1.5px;
  background-color: #FFFFFF;
  transition: 0.3s;
}

/* #header .h_menu a.is_open>span{
  width: 0px;
}
#header .h_menu a.is_open>span::before{
  transform: translate(0%, -50%) rotate(45deg);
  width: 25px;
  top: 0px;
}
#header .h_menu a.is_open>span::after{
  transform: translate(0%, -50%) rotate(-45deg);
  width: 25px;
  top: -2px;
} */
.h_list {
  position: fixed;
  top: 0px;
  right: -100%;
  background-color: #FFFFFF;
  width: 40%;
  height: 100vh;
  z-index: 9990;
  transition: 0.7s;
  overflow: scroll;
  padding: 30px 3%;
}

.h_list.is_visible {
  right: 0;
}

.h_list .h_close {
  position: relative;
  right: 0;
}

.h_list .h_close a {
  display: block;
  position: relative;
  top: 0px;
  left: 94%;
  width: 35px;
  height: 35px;
}

.h_list .h_close a span {
  display: block;
  position: absolute;
  transition: 0.5s;
  top: 50%;
  right: 0%;
}

.h_list .h_close a span::before {
  content: "";
  display: block;
  position: absolute;
  transition: 0.5s;
  top: 0px;
  right: 0;
  width: 20px;
  height: 2px;
  background-color: #000000;
  transform: rotate(45deg);
}

.h_list .h_close a span::after {
  content: "";
  display: block;
  position: absolute;
  transition: 0.5s;
  top: 0px;
  right: 0;
  width: 20px;
  height: 2px;
  background-color: #000000;
  transform: rotate(-45deg);
}

.h_list ul {
  padding: 0;
  margin: 0;
  list-style: none;
  overflow-y: scroll;
  margin-top: 30px;
}

.h_list ul li {
  margin-bottom: 30px;
  text-align: left;
}

.h_list ul li a {
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid #000000;
  color: #000000;
  display: inline-block;
  transition: 0.5s;
  font-size: 16px;
  display: block;
  color: #000000;
  padding: 0px 10px 15px 10px;
}

.h_list ul li a:hover {
  opacity: 0.7;
}

.h_list .contact_btn {
  margin-top: 30px;
  text-align: center;
}

.h_list .contact_btn a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 30px;
  transition: 0.3s;
  background-image: linear-gradient(230deg, rgba(159, 139, 38, 1) 15%, rgba(206, 182, 58, 1));
}

.bg_black_btn {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #000000;
  z-index: 99;
  display: none;
}

.bg_black_btn.is_black {
  display: block;
  opacity: 0.7;
}

/*
-------------------------------main
*/

#main {
  position: relative;
}

#main img {
  width: 100%;
  min-height: 610px;
  object-fit: cover;
}

#main div {
  align-items: center;
  padding: 0 3%;
  width: 100%;
  position: absolute;
  top: 40%;
  left: 0;
  color: #ffffff;
}

#main h1 {
  font-size: 4rem;
  font-weight: 500;
}

#main div h1,
#main div p {
  max-width: 1080px;
  margin: 0 auto;
}

/*
-------------------------------service
*/

#service {
  position: relative;
  width: 100%;
}

#service>img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 1300px;
  object-fit: cover;
}

#service>div {
  position: relative;
  width: 100%;
  margin: 0px auto;
  padding-block: 50px;
}

.title {
  position: relative;
  text-align: center;
  width: 100%;
}

.title>h2 {
  color: #02277f;
  font-weight: 500;
  font-size: 3rem;
}

.title>h1 {
  position: absolute;
  top: 50%;
  transform: translateY(-54%);
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 8rem;
  font-weight: 500;
  opacity: 10%;
}

.service-content {
  display: flex;
  flex-direction: column;
  margin: auto;
  max-width: 1080px;
  position: relative;
  width: 100%;
  margin-top: 50px;
}

.service_flex {
  display: flex;
  align-items: flex-end;
  /* 縦方向の中央揃え */
  gap: 0px;
  /* 要素間のスペース */
  position: relative;
  margin: 20px 0;
}

.service_flex .s_img {
  position: relative;
  width: 53%;
  z-index: 1;
  order: 2;
}

.service_flex .s_img img {
  width: 100%;
}

.service_flex .s_txt {
  width: 70%;
  background: rgba(255, 255, 255, .5);
  padding: 20px;
  position: relative;
  margin-left: -50px;
  /* 左へずらして画像に重ねる */
  z-index: 2;
  /* 画像より前に表示 */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  order: 3;
}

.service_flex .s_txt.order {
  order: 1;
  margin-left: 0;
  margin-right: -50px;
}

.service_flex .s_txt h3, .service_flex .s_txt p {
  color: #02277f;
}

.service_flex .s_txt h3 {
  font-size: 1.8rem;
}

.service_flex .s_txt p {
  font-size: 1.1rem;
  padding: 20px 0;
}

.service_flex .gold-text {
  display: flex;
  align-items: center;
}

.service_flex .gold-text h3 {
  font-size: 1.6rem;
  background: linear-gradient(90deg, #edcd31 0%, #9f8b26 100%);
  transform: translateY(-3px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 5px;
  text-align: center;
}

/*
-------------------------------reason
*/

#reason {
  position: relative;
  width: 100%;
}

#reason>img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 1300px;
  object-fit: cover;
}

#reason>div {
  position: relative;
  width: 100%;
  margin: 0px auto;
  padding-block: 50px;
}

#reason div .title h2,
#reason div .title h1 {
  color: #ffffff;
  margin-bottom: 50px;
}

.reason-content {
  display: flex;
  flex-direction: column;
  margin: auto;
  max-width: 1080px;
  position: relative;
  width: 100%;
  gap: 30px;
}

.reason-content-article {
  display: flex;
  width: 100%;
  height: 100%;
}

.reason-content-article img {
  /* height: 250px; */
  width: 220px;
  transform: translateY(25px);
}

.reason-content-text div {
  transform: translateY(15px);
  position: relative;
  z-index: 5;
}

.reason-content-text div h4 {
  color: #ffffff;
  font-weight: 400;
  display: flex;
  align-items: center;
}

.num {
  font-size: 2rem;
  padding-left: 10px;
}

.reason-content-text div h4:after {
  border-top: 1px solid #ffffff;
  content: "";
  width: 3em;
  margin-left: 10px;
}

.reason-content-text div h3 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}

.reason-content-text p {
  color: #ffffff;
  font-size: 1rem;
  background-color: #02277f;
  padding: 30px;
  position: absolute;
}

/*
-------------------------------flow
*/

#flow {
  position: relative;
  width: 100%;
}

#flow>img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#flow>div {
  position: relative;
  width: 100%;
  margin: 0px auto;
  padding-block: 50px;
}

#flow div .title h1 {
  color: #02277f;
}

.flow-content {
  display: flex;
  flex-direction: column;
  margin: 50px auto;
  max-width: 1080px;
  position: relative;
  width: 100%;
  gap: 20px;
}

.gold-back {
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: #9f8b26;
  padding: 10px 50px;
}

.gold-back h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 10px;
  margin-left: 20px;
}

.flow-content-article p {
  color: #333333;
  font-size: 1rem;
  padding: 20px 50px;
  background-color: #ffffff;
}

/*
-------------------------------system
*/

#system {
  width: 100%;
  margin: 50px auto;
}

.system-content {
  width: 100%;
  margin: 0 auto;
}

#system>div {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

#system div .title h2,
#system div .title h1 {
  color: #ffffff;
  margin-bottom: 50px;
}

.system-content>div {
  display: flex;
  justify-content: center;
}

.system-content-article h3,
.system-content-article h4 {
  color: #ffffff;
  font-weight: 500;
  line-height: 30px;
}

.system-content-article img {
  height: 100px;
}

.gold {
  color: #edcd31;
  font-size: 1.5rem;
}

.pc img {
  height: 240px;
}

.award {
  width: 100%;
  margin: 0 auto;
}

/*
-------------------------------message
*/

#message {
  width: 100%;
  position: relative;
}

#message img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#message p {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 auto;
  color: #02277f;
  line-height: 2rem;
  position: relative;
  padding-block: 80px;
}

/*
-------------------------------contact
*/

#contact {
  width: 100%;
}

#contact>div {
  width: 100%;
  margin: 50px auto;
}

#contact div .title h1 {
  color: #02277f;
}

#contact .title h2,
#contact .title h1 {
  color: #ffffff;
  margin-bottom: 50px;
}

/* フォーム */

.contact-form,
.form-group-flex,
.form-group {
  width: 100%;
}

.contact-form-group {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 50px auto;
  max-width: 1080px;
  gap: 30px;
}

.form-flex {
  display: flex;
  margin-bottom: 30px;
  gap: 30px;
}

label {
  display: block;
  color: #ffffff;
  margin-bottom: 5px;
}

.required label::after {
  content: "必須";
  color: #ffffff;
  background-color: #d95b32;
  font-size: 12px;
  padding: 3px 6px;
  margin-left: 5px;
  border-radius: 4px;
}

input,
select,
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 2px;
  background-color: white !important;
  color: black;
}

.inquiry-wrapper {
  position: relative;
}

.inquiry-wrapper::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}

#inquiry {
  width: 100%px;
}

textarea {
  width: 100%;
  height: 240px;
}

/* プライバシーポリシー */
.privacy-policy {
  background-color: #ffffff;
  /* width: 60%; */
  height: 200px;
  padding: 2em;
  margin: 0 auto;
  margin-bottom: 20px;
  overflow-y: scroll;
  max-width: 1080px;
}

.privacy-policy h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
}

hr {
  margin-bottom: 20px;
}

.privacy-policy p {
  font-size: 0.8rem;
  margin-bottom: 10px;
}

/* 同意チェックボックス */
.agreement {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  width: 100%;
}

#agree {
  width: auto !important;
  margin: auto 0;
  text-align: left;
}

.agree-link {
  color: #ffffff;
}

.agree-link:hover {
  text-decoration: underline;
}

/* 送信ボタン */
.submit {
  display: block;
  width: 200px;
  margin: 50px auto;
  /* background-color: #ffffff;
  color: #02277f; */
  padding: 12px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  color: #FFF;
  background-image: linear-gradient(230deg, rgba(159, 139, 38, 1) 15%, rgba(206, 182, 58, 1));
  transition: .5s;
}

.submit:hover {
  opacity: 0.7;
}

/* フッター */
footer {
  width: 100%;
  background-color: #333333;
}

footer>div {
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 0;
}

footer img {
  height: 50px;
  align-items: center;
  margin-bottom: 30px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
}

.about p {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.site-map ul {
  width: 300px;
  margin-bottom: 40px;
}

.site-map ul li a {
  color: #ffffff;
  font-size: 1.2rem;
}

.site-map ul li a:hover {
  color: #c2c2c2;
}

.site-map button a {
  color: #ffffff;
  padding: 15px 50px;
  border-radius: 30px;
  transition: 0.3s;
  background-color: [object object];
  background-image: linear-gradient(230deg, rgba(159, 139, 38, 1) 15%, rgba(206, 182, 58, 1));
}

.site-map button a:hover {
  opacity: 0.7;
}

footer>p {
  width: 100%;
  padding: 5px 0;
  background-color: #ffffff;
  text-align: center;
  font-size: 0.8rem;
}

/*------------------
タブレットサイズ
------------------*/

@media screen and (max-width: 768px) {
  .h_list {
    width: 100%;
    padding: 30px 3%;
  }

  .h_list .h_close {
    position: relative;
    right: 7%;
  }

  button a {
    padding: 5px 20px;
    font-size: 12px;
  }

  #main img {
    object-fit: contain;
  }

  #main h1 {
    font-size: 3rem;
  }

  .title>h2 {
    font-size: 2.5rem;
  }

  .title>h1 {
    font-size: 4.5rem;
  }

  .service-content {
    padding-inline: 20px;
  }

  .service_flex {
    display: block;
  }

  .service_flex .s_img {
    width: 100%;
  }

  .service_flex .s_txt {
    width: 100%;
    margin: 0 !important;
  }

  .service_flex .s_txt.order {
    margin: 0 !important;
  }

  .service_flex .s_txt h3 {
    font-size: 1.2rem;
  }

  .service_flex .s_txt p {
    font-size: 1rem;
    padding: 20px 0;
  }

  .service_flex .gold-text .g_img {
    width: 45px;
  }

  .service_flex .gold-text h3 {
    font-size: 1.5rem;
    text-align: start;
  }

  .reason-content {
    padding-inline: 20px;
  }

  .reason-content-article {
    justify-content: space-between;
    align-items: start;
  }

  .reason-content-article img {
    margin-block: auto;
  }

  .reason-content-text p {
    position: inherit;
  }

  #system {
    padding-top: 50px;
  }

  .system-content {
    padding-inline: 20px;
  }

  .system-content div {
    align-items: center;
  }

  .pc {
    flex: 1;
  }

  .pc img {
    height: auto;
  }

  .award>img {
    width: calc(100% / 3);
  }

  #message p {
    font-size: 1rem;
  }

  .contact-form {
    padding-inline: 20px;
  }

  .contact-form-group {
    flex-direction: column;
  }

  .form-flex {
    flex-direction: column;
  }

  textarea {
    width: 100%;
  }

  .privacy-policy {
    width: 100%;
  }

  footer>div {
    padding: 50px 20px;
  }
}

/*------------------
スマホサイズ
------------------*/

@media screen and (max-width: 515px) {
  #header>a {
    width: 50%;
  }

  #header img {
    height: auto;
  }

  #header>button {
    margin-left: auto;
  }

  #header button a {
    padding: 5px 20px;
    font-size: 12px;
  }

  #main img {
    object-position: 0 60%;
  }

  #main div {
    top: 10%;
  }

  #main h1 {
    font-size: 2rem;
  }

  .title>h2 {
    font-size: 1.5rem;
  }

  .title>h1 {
    font-size: 3rem;
  }

  .service-content-right>img,
  .service-content-left>img {
    object-fit: cover;
  }

  .service-content {
    padding-inline: 20px;
  }

  .reason-content-article {
    flex-direction: column;
  }

  .reason-content-article img {
    margin-inline: auto;
    height: 170px;
  }

  .reason-content-text div h3 {
    font-size: 1.3rem;
  }

  .gold-back {
    padding-inline: 20px;
  }

  .gold-back h3 {
    font-size: 1.25rem;
  }

  .flow-content-article p {
    padding-inline: 20px;
  }

  .system-content>div:first-child {
    flex-direction: column;
  }

  #message p {
    font-size: 0.875rem;
    padding-inline: 20px;
  }

  .footer-flex {
    flex-direction: column;
    gap: 30px;
  }

  .about p {
    font-size: 1.2rem;
  }
}


.page_header {
  width: 100%;
  z-index: 10 !important;
}

#basic_ttl {
  background-image: url('./image/sec_bg.png');
  background-size: cover;
  padding: 137px 0 137px;
  position: absolute;
  top: 0;
  width: 100%;
}

#basic_ttl h1 {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
  color: #fff;
  position: relative;
  font-size: clamp(20px, 3.13vw, 45px);
}

#basic_ttl h1 span {
  position: absolute;
  left: 0;
  bottom: -50px;
  font-size: clamp(40px, 5.556vw, 80px);
  font-weight: 400;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .15);
}

.basic_page {
  background-color: #fff;
}

.pageinner {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

.page_area {
  padding-top: 345px;
  padding-bottom: 150px;
}

@media screen and (max-width: 1000px) {

  .page_area {
    padding-top: 280px;
    padding-bottom: 150px;
  }
}

.sec_ttl {
  margin-bottom: 40px;
}

.sec_ttl:not(:first-child) {
  margin-top: 72px;
}

.sec_ttl h2 {
  font-family: "Montserrat", serif;
  font-size: clamp(28px, 4.445vw, 64px);
  color: #153c78;
  font-weight: 700;
}

.sec_ttl p {
  font-size: clamp(15px, 1.389vw, 20px) !important;
  font-weight: bold;
  margin-left: 20px;
}

.right {
  text-align: right;
}

@media screen and (max-width: 768px) {

  #basic_ttl {
    padding: 130px 0 80px;
  }

  #basic_ttl h1 span {
    position: absolute;
    left: 0;
    bottom: -20px;
    font-size: 35px;
  }

  .sec_ttl {
    margin-bottom: 30px;
  }

  .sec_ttl:not(:first-child) {
    margin-top: 25px;
  }

  .page_area {
    padding-top: 180px;
  }

  .sec_ttl p {
    margin-left: 10px;
  }
}

.privacypolicy p,
.privacypolicy ul li,
.privacypolicy dt,
.privacypolicy dd,
.privacypolicy h4 {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}

.privacypolicy_txt01 ul li {
  text-indent: -1.9em;
  padding-left: 1.7em;
}

.privacypolicy_txt02 ul li,
.privacypolicy_txt03 ul li {
  text-indent: -1em;
  padding-left: 1em;
}

.privacypolicy_txt02 h3,
.privacypolicy_txt03 h3 {
  font-size: clamp(18px, 1.945vw, 28px);
  font-weight: 400;
  margin-bottom: 20px;
  padding: 40px 0 14px;
  position: relative;
}

@media screen and (max-width: 768px) {

  .privacypolicy_txt02 h3,
  .privacypolicy_txt03 h3 {
    padding: 25px 0 14px;
  }
}

.privacypolicy_txt02 h3:after,
.privacypolicy_txt03 h3:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: linear-gradient(to right, #0098ba, #153c78, #0098ba);
}

#company {
  background-color: #02277f;
}

#company .about {
  background-color: #FFF;
}

#company .about h2,
.contact h2 {
  color: #333333;
  font-size: clamp(22px, 2.5699vw, 37px);
  font-weight: 500;
}

#company .about dl {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
}

#company .about dt {
  width: 23%;
  max-width: 240px;
  font-size: 16px;
  font-weight: 600;
  color: #2F4662;
  /* margin-bottom: 12px; */
  letter-spacing: .05em;
  /* padding-bottom: 24px; */
  border-bottom: 1px solid #9F8B26;
  padding: 20px 0;
}

#company .about dd {
  width: 76.3%;
  font-size: 16px;
  font-weight: 500;
  color: #2F4662;
  letter-spacing: .05em;
  /* margin-bottom: 12px; */
  /* padding-bottom: 24px; */
  border-bottom: 1px solid #9F8B26;
  padding: 20px 0;
}

@media screen and (max-width: 900px) {
  #company .about dd {
    width: 75%;
    line-height: 1.2;
  }
}

.com_maparea {
  margin-top: 80px;
}

.com_maparea p {
  font-size: 16px;
  font-weight: 500;
  color: #2F4662;
  letter-spacing: .05em;
  margin-bottom: 0 !important;
}

.com_map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9のアスペクト比 */
  height: 0;
  margin-top: 10px;
}

.com_maparea .pdt {
  padding-top: 50px;
}

.com_maparea .pdt2 {
  padding-top: 10px;
}

.com_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.com_maparea br {
  display: none;
}

@media screen and (max-width: 768px) {
  .com_maparea br {
    display: block;
  }

  .com_maparea p {
    line-height: 1.3;
  }
}

.flee-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  margin-top: 40px;
}

.flee-form dt {
  width: 190px;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 30px;
  letter-spacing: .05em;
}

.flee-form .required {
  display: inline-block;
  background-color: #D95B32;
  color: #fff;
  line-height: 1;
  padding: 4px 4px 4px;
  font-size: 18px;
  font-weight: 500;
  margin-left: 10px;
  border-radius: 5px;
}

.flee-form dd {
  width: 78%;
  font-size: 16px;
  color: #2F4662;
  letter-spacing: .05em;
  margin-bottom: 30px;
}

@media screen and (max-width: 1020px) {

  .flee-form dd {
    width: 71%;
  }
}


.flee-form dd input[type="text"],
.flee-form dd input[type="email"],
.flee-form dd input[type="tel"],
.flee-form dd select {
  font-size: 16px;
  max-width: 400px;
  font-weight: 500;
  padding: 10px 16px;
  width: 100%;
  border: 1px solid #333333;
  background-color: #EEEEEE !important;
}

.flee-form dd textarea {
  font-size: 16px;
  height: 200px;
  font-weight: 500;
  padding: 12px 16px;
  width: 100%;
  border: 1px solid #333333;
  background-color: #EEEEEE !important;
}

.page_area .privacy-policy {
  border: 1px solid #333333;
}

.selectform {
  position: relative;
  max-width: 400px;
}

.selectform::after {
  content: "";
  position: absolute;
  display: inline-block;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  height: 12px;
  width: 12px;
  top: 46%;
  right: 20px;
  transform: translateY(-50%) rotate(135deg);
  pointer-events: none;
}

.wpcf7-form-control {
  appearance: none;
}

.acceptance_txt {
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
  text-align: center;
}

.acceptance_txt .wpcf7-list-item {
  margin: 0 10px 0 0 !important;
}

.form_btnbox a {
  color: #D95B32;
}

.form_btnbox .cta,
.back_btn {
  margin: 0 auto;
  width: 237px;
  margin-top: 20px;
  height: 42px;
}


.form_btnbox .wpcf7-submit,
.back_btn,
.submit_btn {
  font-size: 16px;
  display: block;
  margin: 0 auto;
  height: 42px;
  border: none;
  color: #fff;
  background-image: linear-gradient(230deg, rgba(159, 139, 38, 1) 15%, rgba(206, 182, 58, 1));
  transition: all .5s;
  font-size: 18px;
  font-weight: 500;
}

.back_btn,
.submit_btn {
  display: block;
  margin-top: 50px;
  margin-bottom: 15px;
  width: 237px;
}

.thankyou_bg {
  padding: 0 !important;
  height: 110px !important;
}

@media screen and (max-width: 768px) {

  .flee-form dt {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .flee-form .required {
    padding: 4px 4px 4px;
    font-size: 14px;
  }

  .flee-form dd {
    width: 100%;
    font-size: 16px;
    margin-bottom: 30px;
  }

  .flee-form dd input[type="text"],
  .flee-form dd input[type="email"],
  .flee-form dd input[type="tel"] {
    padding: 8px 16px;
  }

  .flee-form dd textarea {
    font-size: 16px;
    padding: 5px 10px;
  }

  .acceptance_txt {
    font-size: 14px;
  }

  .form_btnbox {
    font-size: 14px;
  }
}

#thankyou {
  background-color: #fff;
  padding: 60px 0 90px;
}

#thankyou h3 {
  color: #444444;
  font-size: clamp(22px, 2.917vw, 42px);
  font-weight: 500;
  margin-bottom: 20px;
}

#thankyou p {
  color: #444444;
  font-size: clamp(16px, 2.917vw, 24px);
  margin-bottom: 100px;
  line-height: 1.5;
}

#thankyou a {
  display: block;
  padding: 15px 0;
  width: 187px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  background: linear-gradient(103deg, rgba(42, 119, 212, 1) 0%, rgba(29, 86, 155, 1) 100%);
}

.contact_black .wpcf7-list-item-label {
    color: #000 !important;
}

.contact_black .agree-link {
    color: #000 !important;
}
/* wpcf7-spinner 表示消す */
form.wpcf7-form .wpcf7-spinner {
  display: none !important;
}