@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video,
input[type=text], input[type=tel], input[type=email], input[type=url], input[type=password], textarea, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

@media screen and (max-width: 480px) {
  body {
    -webkit-text-size-adjust: none;
  }
}
html {
  font-size: 16px;
  letter-spacing: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  font-size: 1rem;
}

.loading {
  position: fixed;
  z-index: 10000;
  background: #fff;
  width: 100%;
  height: 100%;
}

.main_wrap {
  overflow: hidden;
}
.main_wrap main {
  display: block;
}

.container {
  max-width: calc(900px + 20px * 2);
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.punc {
  display: inline-block;
}
.punc.left.vertical {
  margin-top: -0.5em;
}
.punc.left.horizontal {
  margin-left: -0.5em;
}
.punc.right.vertical {
  margin-bottom: -0.5em;
}
.punc.right.horizontal {
  /*margin-right: -0.5em;*/
  width: 0.5em;
}

.btn {
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 769px) {
  .btn:hover {
    opacity: 0.7;
  }
}

.base_content {
  overflow: hidden;
  line-height: 1.7;
}
.base_content ul {
  list-style: disc;
  margin-left: 1.7em;
}
.base_content ol {
  list-style: decimal;
  margin-left: 1.7em;
}
.base_content ol li {
  padding-left: 0.3em;
}

p {
  line-height: 1.7;
}

a[href*="tel:"] {
  color: #000;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 890px) {
  br.pc_pre_md {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  br.pc_md {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  br.pc_pre_sm {
    display: none;
  }
}
br.md {
  display: none;
}
@media screen and (max-width: 768px) {
  br.md {
    display: block;
  }
}
br.pre_sm {
  display: none;
}
@media screen and (max-width: 600px) {
  br.pre_sm {
    display: block;
  }
}
br.sm {
  display: none;
}
@media screen and (max-width: 400px) {
  br.sm {
    display: block;
  }
}
br.xs {
  display: none;
}
@media screen and (max-width: 360px) {
  br.xs {
    display: block;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  padding: 5px;
  font-size: 1rem;
  outline: none;
  background: #fff;
}

button {
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  border: 0;
  transition: opacity 0.3s;
}
button:hover {
  cursor: pointer;
  opacity: 0.7;
}

.alignleft {
  display: block;
  float: left;
  margin-right: 10px;
  margin-bottom: 1em;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  display: block;
  float: right;
  margin-left: 10px;
  margin-bottom: 1em;
}

.clear {
  clear: both;
}

.space1em {
  clear: both;
  height: 1em;
}

.space2em {
  clear: both;
  height: 2em;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.fit_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.flex_wrap_list {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--col_gap);
  row-gap: var(--row_gap);
}
.flex_wrap_list > li {
  width: calc((100% - var(--col_gap) * (var(--cols) - 1)) / var(--cols));
}

ol.list li,
ul.list li {
  line-height: 1.7;
  position: relative;
  padding-left: 1.1em;
}
ol.list li:before,
ul.list li:before {
  position: absolute;
  left: 0;
}
ol.list.num,
ul.list.num {
  counter-reset: num_cnt;
}
ol.list.num > li,
ul.list.num > li {
  counter-increment: num_cnt;
  padding-left: 1.1em;
  margin-bottom: 1em;
}
ol.list.num > li:before,
ul.list.num > li:before {
  content: counter(num_cnt);
}
ol.list.num_dot,
ul.list.num_dot {
  counter-reset: num_dot_cnt;
}
ol.list.num_dot > li,
ul.list.num_dot > li {
  counter-increment: num_dot_cnt;
  padding-left: 1.6em;
  margin-bottom: 1em;
}
ol.list.num_dot > li:before,
ul.list.num_dot > li:before {
  content: counter(num_dot_cnt) "．";
}
ol.list.num_colon,
ul.list.num_colon {
  counter-reset: num_colon_cnt;
}
ol.list.num_colon > li,
ul.list.num_colon > li {
  counter-increment: num_colon_cnt;
  padding-left: 1.6em;
  margin-bottom: 1em;
}
ol.list.num_colon > li:before,
ul.list.num_colon > li:before {
  content: counter(num_colon_cnt) "：";
}
ol.list.num_paren,
ul.list.num_paren {
  counter-reset: paren_cnt;
}
ol.list.num_paren > li,
ul.list.num_paren > li {
  counter-increment: paren_cnt;
  padding-left: 1.3em;
}
ol.list.num_paren > li:before,
ul.list.num_paren > li:before {
  content: "(" counter(paren_cnt) ")";
}
ol.list.num_circle,
ul.list.num_circle {
  counter-reset: circle_cnt;
}
ol.list.num_circle > li,
ul.list.num_circle > li {
  counter-increment: circle_cnt;
  padding-left: 1.4em;
}
ol.list.num_circle > li:nth-child(1):before,
ul.list.num_circle > li:nth-child(1):before {
  content: "①";
}
ol.list.num_circle > li:nth-child(2):before,
ul.list.num_circle > li:nth-child(2):before {
  content: "②";
}
ol.list.num_circle > li:nth-child(3):before,
ul.list.num_circle > li:nth-child(3):before {
  content: "③";
}
ol.list.num_circle > li:nth-child(4):before,
ul.list.num_circle > li:nth-child(4):before {
  content: "④";
}
ol.list.num_circle > li:nth-child(5):before,
ul.list.num_circle > li:nth-child(5):before {
  content: "⑤";
}
ol.list.num_circle > li:nth-child(6):before,
ul.list.num_circle > li:nth-child(6):before {
  content: "⑥";
}
ol.list.num_circle > li:nth-child(7):before,
ul.list.num_circle > li:nth-child(7):before {
  content: "⑦";
}
ol.list.num_circle > li:nth-child(8):before,
ul.list.num_circle > li:nth-child(8):before {
  content: "⑧";
}
ol.list.num_circle > li:nth-child(9):before,
ul.list.num_circle > li:nth-child(9):before {
  content: "⑨";
}
ol.list.num_circle > li:nth-child(10):before,
ul.list.num_circle > li:nth-child(10):before {
  content: "⑩";
}
ol.list.num_circle > li:nth-child(11):before,
ul.list.num_circle > li:nth-child(11):before {
  content: "⑪";
}
ol.list.num_circle > li:nth-child(12):before,
ul.list.num_circle > li:nth-child(12):before {
  content: "⑫";
}
ol.list.num_circle > li:nth-child(13):before,
ul.list.num_circle > li:nth-child(13):before {
  content: "⑬";
}
ol.list.num_circle > li:nth-child(14):before,
ul.list.num_circle > li:nth-child(14):before {
  content: "⑭";
}
ol.list.num_circle > li:nth-child(15):before,
ul.list.num_circle > li:nth-child(15):before {
  content: "⑮";
}
ol.list.num_circle > li:nth-child(16):before,
ul.list.num_circle > li:nth-child(16):before {
  content: "⑯";
}
ol.list.num_circle > li:nth-child(17):before,
ul.list.num_circle > li:nth-child(17):before {
  content: "⑰";
}
ol.list.num_circle > li:nth-child(18):before,
ul.list.num_circle > li:nth-child(18):before {
  content: "⑱";
}
ol.list.num_circle > li:nth-child(19):before,
ul.list.num_circle > li:nth-child(19):before {
  content: "⑲";
}
ol.list.num_circle > li:nth-child(20):before,
ul.list.num_circle > li:nth-child(20):before {
  content: "⑳";
}
ol.list.square > li:before,
ul.list.square > li:before {
  content: "◇";
}
ol.list.line > li:before,
ul.list.line > li:before {
  content: "－";
}
ol.list.dot > li:before,
ul.list.dot > li:before {
  content: "・";
}
ol.list.kome > li:before,
ul.list.kome > li:before {
  content: "※";
}

.txtL {
  text-align: left;
}

.txtC {
  text-align: center;
}

.txtR {
  text-align: right;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.frame_wrap {
  position: relative;
  padding-bottom: 56.25%; /*縦横比*/
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.frame_wrap .map_canvas,
.frame_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style] {
  width: 100% !important;
  max-width: 498px !important;
  margin: auto;
}

.anim_init,
.anim_init_r,
.anim_init_b {
  visibility: hidden;
  backface-visibility: hidden;
}

.anim_common, .fade_in_center_anim, .fade_in_left_anim, .fade_in_right_anim, .fade_in_bottom_anim, .fade_in_top_anim {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.6s !important;
  -ms-animation-duration: 0.6s !important;
  animation-duration: 0.6s !important;
  visibility: visible !important;
}

.fade_in_top_anim {
  -webkit-animation-name: fade_in_top_anim;
  animation-name: fade_in_top_anim;
}

@-webkit-keyframes fade_in_top_anim {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_in_top_anim {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade_in_bottom_anim {
  -webkit-animation-name: fade_in_bottom_anim;
  animation-name: fade_in_bottom_anim;
}

@-webkit-keyframes fade_in_bottom_anim {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_in_bottom_anim {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade_in_right_anim {
  -webkit-animation-name: fade_in_right_anim;
  animation-name: fade_in_right_anim;
}

@-webkit-keyframes fade_in_right_anim {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_in_right_anim {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade_in_left_anim {
  -webkit-animation-name: fade_in_left_anim;
  animation-name: fade_in_left_anim;
}

@-webkit-keyframes fade_in_left_anim {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_in_left_anim {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade_in_center_anim {
  -webkit-animation-name: fade_in_center_anim;
  animation-name: fade_in_center_anim;
}
.fade_in_center_anim.late {
  -webkit-animation-duration: 2s !important;
  -ms-animation-duration: 2s !important;
  animation-duration: 2 !important;
}

@-webkit-keyframes fade_in_center_anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_in_center_anim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.copyright {
  padding: 40px 0 20px;
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 0.8125rem;
  }
}
.copyright a {
  color: #3A8AE8;
}

footer {
  padding: 40px 0 20px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 30px 0 10px;
  }
}
footer .p01 {
  text-align: center;
  font-weight: 500;
  line-height: 1.875;
  margin-bottom: 20px;
}
footer .support {
  padding: 18px 0;
  max-width: 500px;
  margin: auto;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
footer .support .title {
  text-align: center;
  max-width: 460px;
  margin: auto;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  background: #2082AF;
  padding-bottom: 1px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  footer .support .title {
    font-size: 1.25rem;
    height: 25px;
  }
}
footer .support .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  column-gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  footer .support .tel {
    font-size: 2.125rem;
  }
}
footer .support .tel:before {
  content: "";
  width: 49px;
  height: 32px;
  background: url(../images/icon_tel.svg) no-repeat center/contain;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  footer .support .tel:before {
    width: 39px;
    height: 26px;
  }
}
footer .support .time {
  text-align: center;
  font-weight: 500;
}

body .header01 {
  height: 62px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  body .header01 {
    height: 28px;
  }
}
body .header01 .logo {
  display: block;
}
body .header01 .logo img {
  width: 228px;
}
@media screen and (max-width: 768px) {
  body .header01 .logo img {
    width: 115px;
  }
}
body .header02,
body .header03 {
  font-size: 1.125rem;
  font-weight: 500;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  body .header02,
  body .header03 {
    font-size: 1rem;
  }
}
body .header03 {
  font-size: 1.25rem;
}
body .btn01 {
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 48px;
  font-size: 1.25rem;
  position: relative;
  padding: 0 25px 2px 15px;
  background: #DECF00;
  margin: 0 auto 50px;
  font-weight: 700;
  border: 0;
}
body .btn01:after {
  content: "";
  width: 21px;
  height: 21px;
  background: url(../images/link_btn_arrow.svg) no-repeat center;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
}
body .btn01:disabled {
  background: #ccc;
  color: #707070;
  opacity: 0.7;
}
body .err {
  font-size: 0.875rem;
  margin-top: 3px;
  color: #E50012;
  font-weight: 500;
}
body .input_form {
  background: #1D9DD2;
  border-radius: 10px;
  padding: 15px 20px;
  max-width: 500px;
  margin: 0 auto 25px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
@media screen and (max-width: 768px) {
  body .input_form {
    padding: 15px 10px;
  }
}
body .input_form dl dt {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.125rem;
}
body .input_form dl dt span {
  font-size: 0.75rem;
  color: #E50012;
  font-weight: 500;
}
body section {
  visibility: hidden;
  backface-visibility: hidden;
}
body .privacy_policy_notice {
  text-align: center;
  margin-bottom: 15px;
}
body .privacy_policy {
  max-width: 600px;
  margin: auto;
  font-size: 0.875rem;
  line-height: 1.44;
  padding: 10px;
  background: #fff;
  border: 1px solid #000;
  height: 200px;
  overflow: auto;
  text-align: left;
}
body .privacy_policy span {
  font-weight: 500;
}
body .paypay_banner .title {
  text-align: center;
  margin-bottom: 15px;
}
body .paypay_banner .title img {
  max-width: 297px;
}
body .paypay_banner .banner {
  max-width: 354px;
}
body .counter_box {
  display: flex;
  background: #FFFAD6;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
  max-width: 680px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  body .counter_box {
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 20px;
  }
}
body .counter_box .title img {
  max-width: 315px;
}
body .counter_box .counter {
  width: 310px;
  height: 120px;
  border-radius: 60px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body .counter_box .counter .text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #7DCEF4;
  margin-bottom: 8px;
}
body .counter_box .counter .number_wrap {
  display: flex;
  align-items: flex-end;
}
body .counter_box .counter .number_wrap .number {
  display: flex;
}
body .counter_box .counter .number_wrap .number img {
  width: 38px;
}
body .counter_box .counter .number_wrap .unit {
  color: #fff;
  font-size: 1.625rem;
  font-weight: 500;
  margin: 0 0 6px 5px;
}
body .sec_chatgpt {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  body .sec_chatgpt {
    margin-bottom: 20px;
  }
}
body .sec_chatgpt h2 {
  display: none;
}
body .sec_chatgpt .paypay_banner .banner {
  margin: 0 auto 20px;
}
body .sec_chatgpt .chatgpt_banner {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}
body .sec_chatgpt .chatgpt_banner a {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  margin: auto;
  padding-bottom: 2px;
  width: 305px;
  height: 36px;
  border-radius: 18px;
  background: #FF0000;
  color: #fff;
  font-size: 1.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.62);
}
@media screen and (max-width: 768px) {
  body .sec_chatgpt .chatgpt_banner a {
    bottom: 15px;
  }
}
body .sec_input_form {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  body .sec_input_form .input_form_detail {
    padding-bottom: 20px;
  }
}
body .sec_input_form .input_form_detail h3 {
  font-size: 1.625rem;
  font-weight: 900;
  padding: 7px 5px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  width: fit-content;
  margin: 0 auto 20px;
}
body .sec_input_form .input_form_detail .p01 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  body .sec_input_form .input_form_detail .p01 {
    font-size: 1.125rem;
  }
}
body .sec_input_form .input_form_detail .p01.err {
  display: none;
  color: #E50012;
}
body .sec_input_form .input_form_detail .paypay_banner .banner {
  margin: 0 auto 20px;
}
body .sec_input_form .input_form_detail .howto {
  background: #D4D4D4;
  max-width: 600px;
  margin: 0 auto 30px;
  padding: 10px;
}
body .sec_input_form .input_form_detail .howto h4 {
  text-align: center;
  background: #fff;
  border: 1px solid #000;
  padding: 5px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
}
body .sec_input_form .input_form_detail .howto p {
  line-height: 1.44;
  margin-bottom: 10px;
}
body .sec_input_form .input_form_detail .howto p span {
  color: #FF0000;
  font-weight: 500;
}
body .sec_input_form .input_form_detail .howto .sample {
  text-align: center;
}
body .sec_input_form .input_form_detail .howto .sample span {
  display: block;
  font-weight: 500;
  color: #FF0000;
  margin-bottom: 10px;
}
body .sec_questionnaire {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  body .sec_questionnaire {
    margin-bottom: 20px;
  }
}
body .sec_questionnaire .questionnaire {
  max-width: 520px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  body .sec_questionnaire .questionnaire {
    max-width: 332px;
  }
}
body .sec_estimation_link {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  body .sec_estimation_link {
    margin-bottom: 20px;
  }
}
body .sec_estimation_link .container {
  max-width: 720px;
}
@media screen and (max-width: 768px) {
  body .sec_estimation_link .container {
    padding: 0;
  }
}
body .sec_estimation_link .estimation .title {
  padding: 15px;
  background: #274897;
  color: #fff;
  text-align: center;
  position: relative;
}
body .sec_estimation_link .estimation .title:after {
  content: "";
  width: 66px;
  height: 24px;
  background: #274897;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  right: 0;
  bottom: -23px;
  left: 0;
  margin: auto;
}
body .sec_estimation_link .estimation .title h2 {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  body .sec_estimation_link .estimation .title h2 {
    font-size: 2rem;
  }
}
body .sec_estimation_link .estimation .title p {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.3;
}
body .sec_estimation_link .estimation .detail {
  background: url(../images/estimation_bg.webp) no-repeat center/cover;
  height: 480px;
  padding: 35px 10px;
}
@media screen and (max-width: 768px) {
  body .sec_estimation_link .estimation .detail {
    height: auto;
    background-image: url(../images/estimation_bg_sp.webp);
  }
}
body .sec_estimation_link .estimation .detail h3 {
  text-align: center;
}
@media screen and (max-width: 768px) {
  body .sec_estimation_link .estimation .detail h3 img {
    max-width: 142px;
  }
}
body .sec_estimation_link .estimation .detail p {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 44px;
}
body .sec_estimation_link .estimation .detail p span {
  display: inline-block;
  font-size: 2.875rem;
  font-weight: 900;
  margin: 0 0.2em -5px;
}
@media screen and (max-width: 768px) {
  body .sec_estimation_link .estimation .detail p span {
    font-size: 2rem;
  }
}
body .sec_estimation_link .estimation .detail p span.s01 {
  color: #FF9D00;
}
body .sec_estimation_link .estimation .detail p span.s02 {
  color: #529727;
}
body .sec_estimation_link .estimation .detail .btns {
  display: flex;
  justify-content: center;
  column-gap: 38px;
}
@media screen and (max-width: 768px) {
  body .sec_estimation_link .estimation .detail .btns {
    flex-direction: column;
    row-gap: 35px;
    align-items: center;
  }
}
body .sec_estimation_link .estimation .detail .btns a {
  max-width: 278px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  border-radius: 7px;
  position: relative;
}
body .sec_estimation_link .estimation .detail .btns a span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 21px;
  border: 2px solid #FF0000;
  color: #FF0000;
  background: #fff;
  position: absolute;
  top: -21px;
  right: 0;
  left: 0;
  margin: auto;
  width: 220px;
  height: 42px;
  font-size: 1.5625rem;
  font-weight: 800;
  padding-bottom: 2px;
}
body .sec_estimation {
  padding: 40px 0 0;
  position: relative;
  z-index: 0;
}
body .sec_estimation:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 100%;
  background: url(../images/estimation_bg02.webp) no-repeat center top/cover;
}
@media screen and (max-width: 768px) {
  body .sec_estimation:before {
    width: 100%;
    background-image: url(../images/estimation_bg02_sp.webp);
  }
}
body .sec_estimation .price {
  background: #1D9DD2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  max-width: 680px;
  height: 75px;
  margin: 0 auto 30px;
  padding-bottom: 4px;
}
@media screen and (max-width: 768px) {
  body .sec_estimation .price {
    height: 58px;
    margin-bottom: 20px;
  }
}
body .sec_estimation .price .text {
  width: 115px;
  font-size: 1.375rem;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  body .sec_estimation .price .text {
    font-size: 0.875rem;
    width: 85px;
  }
}
body .sec_estimation .price .number {
  font-size: 3.75rem;
}
@media screen and (max-width: 768px) {
  body .sec_estimation .price .number {
    font-size: 2.5rem;
  }
}
body .sec_estimation .price .unit {
  width: 85px;
  font-size: 2.5rem;
  margin: 14px 0 0 5px;
}
@media screen and (max-width: 768px) {
  body .sec_estimation .price .unit {
    font-size: 1.25rem;
    width: 65px;
  }
}
body .sec_estimation .notice {
  text-align: center;
  line-height: 1.7;
  margin-bottom: 70px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body .sec_estimation .notice {
    font-size: min(3.8vw, 0.875rem);
    margin-bottom: 40px;
  }
}
body .sec_estimation .notice span {
  color: #FF0000;
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: 10px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  body .sec_estimation .notice span {
    font-size: 1rem;
  }
}
body .sec_estimation .p01 {
  text-align: center;
  margin-bottom: 15px;
}
body .sec_estimation .p01 img {
  max-width: 412px;
  width: 100%;
}
body .sec_estimation .p02 {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  max-width: 500px;
  height: 40px;
  margin: 0 auto 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFB833;
  position: relative;
}
@media screen and (max-width: 768px) {
  body .sec_estimation .p02 {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 360px) {
  body .sec_estimation .p02 {
    font-size: 0.9375rem;
  }
}
body .sec_estimation .p02:after {
  content: "";
  width: 50px;
  height: 22px;
  background: #FFB833;
  position: absolute;
  right: 0;
  bottom: -21px;
  left: 0;
  margin: auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
body .sec_estimation .p03 {
  text-align: center;
  padding: 50px 0;
  font-size: 1.125rem;
  font-weight: 500;
}
body .sec_estimation .banners {
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 22px;
  margin-bottom: 40px;
  column-gap: 25px;
}
@media screen and (max-width: 768px) {
  body .sec_estimation .banners {
    flex-direction: column;
  }
}
body .sec_estimation .banners .paypay_banner {
  width: 354px;
}
@media screen and (max-width: 360px) {
  body .sec_estimation .banners .paypay_banner {
    width: 334px;
  }
}
body .sec_estimation .banners .scaffolding {
  width: 320px;
}
@media screen and (max-width: 360px) {
  body .sec_estimation .banners .scaffolding {
    width: 300px;
  }
}
body .sec_estimation .estimation_application {
  margin-bottom: 50px;
}
body .sec_estimation .estimation_application p {
  padding: 10px 0;
  text-align: center;
  color: #FF0000;
  line-height: 1.4;
  font-size: 1.875rem;
  font-weight: 800;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  max-width: 500px;
  margin: 0 auto 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  body .sec_estimation .estimation_application p {
    font-size: 1.125rem;
    margin-bottom: 40px;
  }
}
body .sec_estimation .estimation_application p:after {
  content: "";
  width: 58px;
  height: 30px;
  background: #FF0000;
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  margin: auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 768px) {
  body .sec_estimation .estimation_application p:after {
    width: 32px;
    height: 16px;
    bottom: -16px;
  }
}
body .sec_estimation .estimation_application .form {
  max-width: 440px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
body .sec_estimation .estimation_application .form dl {
  display: flex;
  column-gap: 20px;
  width: 100%;
}
body .sec_estimation .estimation_application .form dl dt {
  font-weight: 500;
  padding-top: 10px;
}
body .sec_estimation .estimation_application .form dl dd {
  flex: 1;
}
body .sec_estimation .estimation_application .form dl dd input {
  border: 1px solid #707070;
}
body .sec_estimation .estimation_application .form button {
  width: 220px;
  height: 40px;
  margin: 25px auto 0;
}
body .sec_company {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  body .sec_company {
    padding-bottom: 50px;
  }
}
body .sec_company .main_visual {
  max-width: 1000px;
  margin: 0 auto 55px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body .sec_company .main_visual {
    margin-bottom: 30px;
  }
}
body .sec_company .company_detail {
  max-width: 380px;
  margin: auto;
}
body .sec_company .company_detail h2 {
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2082AF;
  color: #fff;
  margin-bottom: 25px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  body .sec_company .company_detail h2 {
    font-size: 1.125rem;
    height: 25px;
  }
}
body .sec_company .company_detail .dl_list dl {
  display: flex;
  font-size: 1.125rem;
  padding: 10px 0;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  body .sec_company .company_detail .dl_list dl {
    font-size: 1rem;
  }
}
body .sec_company .company_detail .dl_list dl dt {
  width: 145px;
}
@media screen and (max-width: 768px) {
  body .sec_company .company_detail .dl_list dl dt {
    width: 100px;
  }
}
body .sec_company .company_detail .dl_list dl dd {
  flex: 1;
}
body .sec_chatbot {
  padding: 40px 0 80px;
  background: #E1EDF7;
  min-height: 100vh;
}
body .sec_chatbot .timeline {
  display: flex;
  flex-direction: column;
  row-gap: 25px;
}
body .sec_chatbot .timeline .line {
  display: none;
}
body .sec_chatbot .timeline .line.show {
  display: block;
}
body .sec_chatbot .timeline .left, body .sec_chatbot .timeline .right, body .sec_chatbot .timeline .agree {
  opacity: 0;
  transition: opacity 1s;
}
body .sec_chatbot .timeline .left.show, body .sec_chatbot .timeline .right.show, body .sec_chatbot .timeline .agree.show {
  opacity: 1;
}
body .sec_chatbot .timeline .left {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  column-gap: 5px;
  margin-bottom: 20px;
}
body .sec_chatbot .timeline .left .content {
  background: #1D9DD2;
  border-radius: 7px 7px 7px 0;
  padding: 10px;
  max-width: 310px;
  color: #fff;
}
body .sec_chatbot .timeline .left .content p {
  line-height: 1.44;
}
body .sec_chatbot .timeline .left .content .form {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
body .sec_chatbot .timeline .left .content .form dl dt {
  margin-bottom: 8px;
}
body .sec_chatbot .timeline .left .content .form dl dt span {
  font-size: 0.75rem;
}
body .sec_chatbot .timeline .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 10px;
}
body .sec_chatbot .timeline .right .content {
  background: #fff;
  border: 1px solid #1D9DD2;
  border-radius: 7px 7px 0 7px;
  padding: 10px;
  max-width: 310px;
  width: 100%;
  color: #fff;
}
body .sec_chatbot .timeline .right .content .label_list {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
body .sec_chatbot .timeline .right .content .label_list label {
  background: #1D9DD2;
  padding: 5px;
  width: 100%;
  line-height: 1.3;
  display: block;
}
@media screen and (min-width: 769px) {
  body .sec_chatbot .timeline .right .content .label_list label:hover {
    cursor: pointer;
  }
}
body .sec_chatbot .timeline .right .content .label_list label input {
  display: none;
}
body .sec_chatbot .timeline .right .content .label_list label input:checked + span:after {
  display: block;
}
body .sec_chatbot .timeline .right .content .label_list label span {
  display: flex;
  align-items: flex-start;
  position: relative;
}
body .sec_chatbot .timeline .right .content .label_list label span:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  margin-top: 4px;
  margin-right: 7px;
}
body .sec_chatbot .timeline .right .content .label_list label span:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1D9DD2;
  position: absolute;
  top: 8px;
  left: 4px;
  display: none;
}
body .sec_chatbot .timeline .right .content select {
  background: #1D9DD2;
  color: #fff;
  width: 100%;
  height: 36px;
  border-radius: 0;
}
body .sec_chatbot .timeline .right .content .input_text {
  display: flex;
  align-items: flex-end;
  column-gap: 5px;
}
body .sec_chatbot .timeline .right .content .input_text input {
  flex: 1;
  border: 1px solid #1D9DD2;
}
body .sec_chatbot .timeline .right .content .input_text span {
  color: #1D9DD2;
}
body .sec_chatbot .timeline .link {
  text-align: center;
  margin: 20px 0;
  font-weight: 500;
}
body .sec_chatbot .timeline .link a {
  color: #000;
}
body .sec_chatbot .timeline .agree {
  text-align: center;
  margin-top: 50px;
}
body .sec_chatbot .timeline .agree label {
  display: inline-block;
  margin-bottom: 20px;
}
body .sec_chatbot .timeline .agree label input {
  margin-right: 5px;
}
body .sec_chatbot .timeline .agree button {
  width: 300px;
  height: 44px;
  padding: 0 25px 2px 15px;
  margin: 0 auto 50px;
}
body.top .main_visual {
  background: url(../images/main_visual.webp) no-repeat center/1000px;
  height: 545px;
  padding-top: 17px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  body.top .main_visual {
    background-size: cover;
    height: 631px;
    padding-top: 0;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 400px) {
  body.top .main_visual {
    background: url(../images/main_visual_sp.webp) no-repeat center top/cover;
  }
}
body.top .main_visual .text {
  max-width: 820px;
  padding: 0 20px;
  margin: 0 auto 37px;
}
@media screen and (max-width: 768px) {
  body.top .main_visual .text {
    margin-bottom: 120px;
    padding: 0 10px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  body.top .main_visual .text img {
    margin-top: -26px;
  }
}
body.top .main_visual .paypay_banner {
  max-width: 815px;
  margin: auto;
  position: relative;
}
body.top .main_visual .paypay_banner .title {
  position: absolute;
  top: -66px;
  right: 35px;
}
@media screen and (max-width: 768px) {
  body.top .main_visual .paypay_banner .title {
    position: static;
    margin-left: -10px;
    margin-bottom: 8px;
  }
  body.top .main_visual .paypay_banner .title img {
    width: 270px;
  }
}
body.top .main_visual .paypay_banner .banner {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  body.top .main_visual .paypay_banner .banner {
    margin: auto;
    max-width: 330px;
  }
}
body.sub .sec_chatgpt {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  body.sub .sec_chatgpt {
    padding-top: 30px;
  }
}