@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
*,
*:before,
*:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #fff;
  color: #1a1a1a;
  font-weight: 400;
  font-size: 1.8rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (max-width: 918px) {
  body {
    font-size: 1.7rem;
    letter-spacing: 0.01em;
  }
}

.zen-kaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 918px) {
  .inner {
    width: 90%;
  }
}

.inner_1200 {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1201px) {
  .inner_1200 {
    width: 90%;
  }
}

/* display */
@media (max-width: 767px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 767px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 918px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 918px) {
  .tab_db {
    display: block;
  }
}

/* 背景 */
.bg_bl {
  background-color: #d6e8ef;
}

/* ボタン */
.common_btn,
.common_cta_btn {
  display: block;
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 24px 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: 999px;
  box-shadow: 0px 3px 6px 0px #333;
  transition: 0.3s;
}

@media (hover: hover) {
  .common_btn:hover,
  .common_cta_btn:hover {
    box-shadow: 0px 3px 6px 0px rgba(51, 51, 51, 0);
    transform: translateY(3px);
  }
}
.common_btn::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%) rotate(90deg);
}
@media (max-width: 767px) {
  .common_btn::after {
    right: 3%;
  }
}

.bottom_menu_sp {
  display: none;
}
@media (max-width: 767px) {
  .bottom_menu_sp {
    display: block;
    position: fixed;
    bottom: 0;
    background-color: #00418f;
    width: 100%;
    z-index: 100;
  }
}

.bottom_menu_sp_row {
  gap: 8px;
  justify-content: center;
  padding: 8px 4px;
  line-height: 1.3;
}

.cta_btn_tel_sp,
.cta_btn_line_sp,
.cta_btn_mail {
  flex-basis: calc(33.3333333333% - 8px);
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  border-radius: 10px;
}
.cta_btn_tel_sp i,
.cta_btn_line_sp i,
.cta_btn_mail i {
  font-size: 18px;
}

.cta_btn_tel_sp {
  background-color: #ffdc00;
  color: #00418f;
}

.cta_btn_line_sp {
  background-color: #54b900;
  color: #fff;
}

.cta_btn_mail {
  background-color: #0478be;
  color: #fff;
}

/* フォントカラー黄色 */
.fc_y {
  color: #ffdc00;
}

.color_w {
  color: #fff;
}

.color_bl {
  color: #00418f;
}

.color_rd {
  color: #e20000;
}

.wrapper {
  overflow: hidden;
}

.common_ttl_h2 {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto 60px;
  font-size: clamp(28px, 4.33vw, 52px);
  font-weight: 900;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .common_ttl_h2 {
    margin: 0 auto 20px;
  }
}

.common_ttl_h3 {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: clamp(28px, 4.33vw, 52px);
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 767px) {
  .common_ttl_h3 {
    margin: 0 auto 20px;
  }
}

.common_ttl_h4 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.common_pentagon {
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  padding: 60px 0;
}
@media (max-width: 918px) {
  .common_pentagon {
    padding: 20px 5% 40px;
  }
}

[class*=carousel__arrow--] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  aspect-ratio: 1;
  z-index: 2;
}

.carousel__arrow--prev {
  left: -2%;
}

.carousel__arrow--next {
  right: -2%;
}

[class*=carousel__arrow--]::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "";
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #d6e8ef;
}

.carousel__arrow--prev::before {
  content: "\f053";
}

.carousel__arrow--next::before {
  content: "\f054";
}

@media (hover: hover) {
  [class*=carousel__arrow--] {
    transition: 0.3s;
  }
  [class*=carousel__arrow--]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
/*ポップアップ*/
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  background: white;
  border-radius: 10px;
  padding: 30px 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #00418f;
}
.popup-content span {
  font-size: 30px;
}

.close-btn {
  margin-top: 20px;
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  background-color: #ddd;
}

.readmore {
  position: relative;
  margin: 50px auto;
  padding: 0 0 75px;
}

.readmore label {
  position: absolute;
  display: table;
  left: 50%;
  bottom: 0;
  margin: 0 auto;
  width: 200px;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  background-color: #00418f;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 1;
}

.readmore label::before {
  content: "続きを見る";
}

.readmore input[type=checkbox]:checked ~ label::before {
  content: "元に戻す";
}

.readmore input[type=checkbox] {
  display: none;
}

.readmore-content {
  position: relative;
  max-height: 600px;
  overflow: hidden;
  padding-bottom: 20px;
  transition: max-height 0.7s ease;
}

.readmore-content::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, #fff 100%);
  z-index: 100;
}

.readmore input[type=checkbox]:checked ~ .readmore-content {
  max-height: 2000px;
}

.readmore input[type=checkbox]:checked ~ .readmore-content::before {
  display: none;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
  z-index: 10000;
}
@media (max-width: 918px) {
  .pagetop {
    bottom: 70px;
  }
}

.pagetop a {
  display: block;
  background-color: #ccc;
  text-align: center;
  color: #222;
  font-size: 12px;
  border-radius: 50%;
  text-decoration: none;
  padding: 15px 20px;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}

.pagetop a:hover {
  display: block;
  background-color: #b2d1fb;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  padding: 15px 20px;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}

/*TOP*/
.top_main_visual {
  padding: 0;
}
.top_main_visual::after {
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
  position: absolute;
  --visual-height: 1080px;
}

.top_main_copy {
  position: relative;
}
.top_main_copy .top_main_copy_red {
  background-color: #e20000;
  padding: 80px 0 0;
  text-align: center;
}
@media (max-width: 918px) {
  .top_main_copy .top_main_copy_red {
    padding: 40px 0;
  }
}
.top_main_copy .top_main_copy_red p {
  font-size: clamp(18px, 2vw, 24px);
  margin-top: -40px;
}
@media (max-width: 918px) {
  .top_main_copy .top_main_copy_red p {
    margin-top: 0;
  }
}
.top_main_copy .top_main_copy_red .top_main_copy_red_img img {
  width: clamp(300px, 76.67vw, 920px);
  margin-top: 20px;
  margin-bottom: -90px;
  aspect-ratio: 46/19;
}
@media (max-width: 918px) {
  .top_main_copy .top_main_copy_red .top_main_copy_red_img img {
    margin-bottom: 0;
  }
}
.top_main_copy .top_main_copy_row {
  max-width: 1200px;
  align-items: center;
  margin: auto;
  gap: 30px;
}
@media (max-width: 918px) {
  .top_main_copy .top_main_copy_row {
    padding: 40px 0;
  }
}
.top_main_copy .top_main_copy_row .top_main_copy_img {
  flex-basis: 40%;
}
@media (max-width: 918px) {
  .top_main_copy .top_main_copy_row .top_main_copy_img {
    display: none;
  }
}
.top_main_copy .top_main_copy_row .top_main_copy_txt {
  flex-basis: calc(60% - 30px);
}
@media (max-width: 918px) {
  .top_main_copy .top_main_copy_row .top_main_copy_txt {
    flex-basis: 100%;
  }
}
.top_main_copy .top_main_copy_row .top_main_copy_txt h3 {
  margin-bottom: 40px;
}
@media (max-width: 918px) {
  .top_main_copy .top_main_copy_row .top_main_copy_txt h3 {
    margin-bottom: 20px;
    line-height: 1.3;
  }
}
.top_main_copy .top_main_copy_row .top_main_copy_txt .top_main_copy_end {
  margin-top: 40px;
  font-size: clamp(18px, 2vw, 24px);
}
@media (max-width: 918px) {
  .top_main_copy .top_main_copy_row .top_main_copy_txt .top_main_copy_end {
    margin-top: 20px;
  }
}

.top_cta {
  padding: 80px 0;
  background-image: url(../images/bg_cta.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 918px) {
  .top_cta {
    padding: 40px 0;
  }
}
.top_cta .top_cta_btns {
  justify-content: center;
  align-items: end;
  gap: 30px;
  margin: 30px 0 0;
}
@media (max-width: 918px) {
  .top_cta .top_cta_btns {
    margin: 30px 0 0;
  }
}
.top_cta .top_cta_btns2 {
  justify-content: center;
  align-items: end;
  gap: 30px;
  margin: 0;
}
@media (max-width: 918px) {
  .top_cta .top_cta_btns2 {
    margin: 0;
  }
}
.top_cta .top_cta_btn_copy {
  background-color: #000;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 999px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: normal;
  position: relative;
  padding: 4px 16px;
  margin: 0 auto -10px;
  text-align: center;
  z-index: 2;
}
.top_cta .top_cta_tel,
.top_cta .top_cta_line {
  width: 100%;
  max-width: 480px;
  font-weight: 700;
}
@media (max-width: 918px) {
  .top_cta .top_cta_tel,
  .top_cta .top_cta_line {
    width: 100%;
  }
}
.top_cta .cta_btn_tel {
  color: #fff;
  background-color: #ef5407;
}
.top_cta .cta_btn_tel p {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-left: 40px;
}
.top_cta .cta_btn_tel p::before {
  content: "";
  background-image: url(../images/icon_mail.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 33px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  line-height: 1;
}
.top_cta .cta_btn_line {
  background-color: #54b900;
}
.top_cta .cta_btn_line p {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-left: 40px;
}
.top_cta .cta_btn_line p::before {
  content: "\f3c0";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-size: 3rem;
  color: #fff;
  position: absolute;
  width: 29px;
  height: 29px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  line-height: 1;
}
.top_cta .top_cta_copy {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.top_service {
  background-color: #d6e8ef;
}
.top_service .top_service_box {
  padding: 80px 0 0;
}
@media (max-width: 918px) {
  .top_service .top_service_box {
    padding: 40px 0 0;
  }
}
.top_service .top_service_ttl {
  background-image: url(../images/bg_service_ttl.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.top_service .top_service_row {
  gap: 40px;
  justify-content: center;
}
.top_service .top_service_row .top_service_desc {
  width: calc(50% - 20px);
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 60px 40px;
}
@media (max-width: 918px) {
  .top_service .top_service_row .top_service_desc {
    width: 100%;
    padding: 30px 20px;
  }
}
.top_service .top_service_row .top_service_desc .top_service_desc_sub {
  background-color: #000;
  color: #fff;
  padding: 4px 24px;
  border-radius: 999px;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.top_service .top_service_row .top_service_desc h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.top_service .top_service_row .top_service_desc .top_service_img {
  margin: 30px auto;
}
@media (max-width: 918px) {
  .top_service .top_service_row .top_service_desc .top_service_img {
    margin: 15px auto;
  }
}

.top_cause .top_cause_ttl {
  background-color: #d6e8ef;
}
.top_cause .top_cause_box_img {
  position: relative;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  margin: -70px auto 60px;
}
@media (max-width: 918px) {
  .top_cause .top_cause_box_img {
    margin: -30px auto 30px;
  }
}
.top_cause .top_cause_box_img img {
  aspect-ratio: 70/31;
  width: clamp(300px, 46.67vw, 560px);
}
.top_cause .top_cause_box_info_ttl {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 918px) {
  .top_cause .top_cause_box_info_ttl {
    margin-bottom: 20px;
  }
}
.top_cause .top_cause_box_info_ttl .top_cause_info_subttl {
  display: inline-block;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: bold;
  position: relative;
  padding-bottom: 0.4em;
}
.top_cause .top_cause_box_info_ttl .top_cause_info_subttl::before {
  margin-right: 1rem;
  content: "＼";
}
.top_cause .top_cause_box_info_ttl .top_cause_info_subttl::after {
  margin-left: 1rem;
  content: "／";
}
.top_cause .top_cause_box_info_ttl h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-bottom: 0.4em;
}
.top_cause .top_cause_box_info_ttl p {
  text-align: left;
  font-size: clamp(16px, 1.67vw, 20px);
}
.top_cause .top_cause_box_info_desc li {
  padding: 10px 0;
}
@media (max-width: 918px) {
  .top_cause .top_cause_box_info_desc li {
    padding: 5px 0;
  }
}
.top_cause .top_cause_box_info_desc li img {
  margin-top: 30px;
}
@media (max-width: 918px) {
  .top_cause .top_cause_box_info_desc li img {
    margin-top: 10px;
  }
}
.top_cause .top_cause_end {
  margin: 40px auto;
}
.top_cause .top_cause_end .top_cause_end_row {
  justify-content: center;
  gap: 40px;
}
.top_cause .top_cause_end .top_cause_end_img {
  flex-basis: 40%;
}
@media (max-width: 918px) {
  .top_cause .top_cause_end .top_cause_end_img {
    display: none;
  }
}
.top_cause .top_cause_end .top_cause_end_img img {
  aspect-ratio: 61/41;
}
.top_cause .top_cause_end .top_cause_end_txt {
  flex-basis: calc(60% - 40px);
}
@media (max-width: 918px) {
  .top_cause .top_cause_end .top_cause_end_txt {
    flex-basis: 100%;
  }
}
.top_cause .top_cause_end .top_cause_end_txt h3 {
  text-align: left;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media (max-width: 918px) {
  .top_cause .top_cause_end .top_cause_end_txt h3 {
    margin-bottom: 10px;
  }
}
.top_cause .top_cause_end .top_cause_end_txt p {
  font-size: clamp(18px, 2vw, 24px);
}

.top_flow {
  background-color: #d6e8ef;
}
.top_flow .top_flow_ttl {
  background-color: #e20000;
}
.top_flow .top_flow_ttl .common_pentagon_row {
  max-width: 1000px;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: -20px auto 40px;
}
@media (max-width: 918px) {
  .top_flow .top_flow_ttl .common_pentagon_row {
    margin: 0 auto 40px;
  }
}
.top_flow .top_flow_ttl .common_pentagon_row h2 {
  flex-basis: calc(70% - 40px);
  text-align: left;
  margin: 0;
}
@media (max-width: 918px) {
  .top_flow .top_flow_ttl .common_pentagon_row h2 {
    flex-basis: 95%;
  }
}
.top_flow .top_flow_ttl .common_pentagon_row img {
  flex-basis: 20%;
  aspect-ratio: 1/1;
  max-width: 280px;
}
@media (max-width: 918px) {
  .top_flow .top_flow_ttl .common_pentagon_row img {
    display: none;
  }
}
.top_flow .top_flow_box h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 60px auto;
}
@media (max-width: 918px) {
  .top_flow .top_flow_box h3 {
    margin: 30px auto;
  }
}
.top_flow .top_flow_box_row {
  gap: 40px;
  justify-content: center;
}
.top_flow .top_flow_box_row .top_flow_box_step {
  width: calc(25% - 40px);
  text-align: center;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 918px) {
  .top_flow .top_flow_box_row .top_flow_box_step {
    margin: 0 20px;
  }
}
.top_flow .top_flow_box_row .top_flow_box_step p {
  margin-top: 20px;
}
.top_flow .top_flow_box_row .step_02,
.top_flow .top_flow_box_row .step_03,
.top_flow .top_flow_box_row .step_04 {
  padding: 0 7px;
}
@media (max-width: 918px) {
  .top_flow .top_flow_box_row .step_02,
  .top_flow .top_flow_box_row .step_03,
  .top_flow .top_flow_box_row .step_04 {
    padding: 0;
  }
}

.top_voice {
  background-color: #d6e8ef;
}
.top_voice .top_voice_start {
  text-align: center;
  font-size: clamp(20px, 2.33vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 -40px;
  padding: 60px 0 0;
}
@media (max-width: 918px) {
  .top_voice .top_voice_start {
    margin: 0 5%;
    padding: 30px 0 10px;
  }
}
.top_voice .top_voice_bg {
  position: relative;
  background-image: url(../images/bg_voice.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  clip-path: polygon(50% 10%, 100% 0, 100% 90%, 50% 100%, 0 90%, 0 0);
  position: relative;
  aspect-ratio: 96/73;
}
@media (max-width: 918px) {
  .top_voice .top_voice_bg {
    background-image: url(../images/bg_voice_sp.jpg);
    clip-path: polygon(50% 3%, 100% 0, 100% 97%, 50% 100%, 0 97%, 0 0);
    aspect-ratio: 75/196;
  }
}
.top_voice .top_voice_bg::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 96/73;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 918px) {
  .top_voice .top_voice_bg::before {
    aspect-ratio: 75/196;
  }
}
.top_voice .top_voice_desc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_voice .top_voice_desc .top_voice_row {
  position: relative;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
}
@media (max-width: 918px) {
  .top_voice .top_voice_desc .top_voice_row {
    padding: 20px;
    gap: 40px;
  }
}
.top_voice .top_voice_desc .top_voice_row::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #000;
  width: 1px;
  height: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 918px) {
  .top_voice .top_voice_desc .top_voice_row::before {
    width: 80%;
    height: 1px;
    top: calc(50% - 20px);
  }
}
.top_voice .top_voice_desc .top_voice_row .top_voice_box {
  width: calc(50% - 40px);
}
@media (max-width: 918px) {
  .top_voice .top_voice_desc .top_voice_row .top_voice_box {
    width: 100%;
  }
}
@media screen and (max-width: 380px) {
  .top_voice .top_voice_desc .top_voice_row .top_voice_box p {
    font-size: 14px;
  }
}
.top_voice .top_voice_desc .top_voice_row .top_voice_box img {
  margin-bottom: 30px;
}
@media (max-width: 918px) {
  .top_voice .top_voice_desc .top_voice_row .top_voice_box img {
    margin-bottom: 10px;
  }
}
.top_voice .top_voice_end {
  text-align: center;
  font-size: clamp(20px, 2.33vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 -40px;
  padding: 60px 0 0;
}
@media (max-width: 918px) {
  .top_voice .top_voice_end {
    padding: 20px 0;
  }
}

.top_faq {
  padding: 0 0 10px;
  /* 修正: 三角の位置をsummaryに固定 */
  /* 修正: 開いたときに三角を回転 */
}
@media (max-width: 918px) {
  .top_faq {
    padding: 40px 0 10px;
  }
}
.top_faq .top_faq_ttl {
  background-color: #d6e8ef;
  text-align: center;
  font-size: clamp(20px, 2.33vw, 28px);
  font-weight: 700;
  line-height: 1.3;
}
.top_faq .top_faq_start {
  margin: 0 auto 30px;
}
.top_faq .top_faq_start h2 {
  margin: 0 auto 30px;
}
@media (max-width: 918px) {
  .top_faq .top_faq_start h2 {
    margin: 0 auto 20px;
  }
}
.top_faq .top_faq_start p {
  font-size: clamp(18px, 2vw, 24px);
}
.top_faq details {
  transition: all 0.3s ease-in-out;
}
.top_faq details summary {
  cursor: pointer;
  background-color: #fff;
  font-weight: 700;
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 30px;
  list-style: none;
  position: relative;
  box-shadow: 0px 3px 6px 0px #666;
}
.top_faq details:last-of-type summary {
  margin-bottom: 0;
}
.top_faq details:last-of-type p {
  margin-top: 20px;
}
@media (max-width: 918px) {
  .top_faq details summary {
    padding: 20px 40px 20px 20px;
    line-height: 1.4;
  }
}
.top_faq details summary::-webkit-details-marker {
  display: none;
}
.top_faq details summary::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #00418f;
  position: absolute;
  width: 14px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease-in-out;
}
.top_faq details[open] summary::after {
  transform: translateY(-50%) rotate(-90deg);
}
.top_faq .top_faq_body {
  padding: 0 8px;
}
.top_faq .top_faq_body::after {
  content: "";
  display: block;
  height: 60px;
}

.top_prise .top_prise_ttl {
  background-color: #e20000;
  text-align: center;
  font-size: clamp(20px, 2.33vw, 28px);
  font-weight: 700;
  line-height: 1.3;
}
.top_prise .top_prise_box {
  padding: 80px 0;
}
@media (max-width: 918px) {
  .top_prise .top_prise_box {
    padding: 40px 0;
  }
}
.top_prise .top_prise_box h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media (max-width: 918px) {
  .top_prise .top_prise_box h3 {
    margin: 0 auto 20px;
    line-height: 1.3;
  }
}
.top_prise .top_prise_box .top_prise_list {
  margin-top: 60px;
}
@media (max-width: 918px) {
  .top_prise .top_prise_box .top_prise_list {
    margin-top: 30px;
  }
}
.top_prise .top_prise_box .top_prise_list h4 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 918px) {
  .top_prise .top_prise_box .top_prise_list h4 {
    margin-bottom: 10px;
  }
}
.top_prise .top_prise_box .top_prise_list .top_prise_list_table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  border: none;
}
@media (max-width: 767px) {
  .top_prise .top_prise_box .top_prise_list .top_prise_list_table {
    width: 800px;
  }
}
.top_prise .top_prise_box .top_prise_list .top_prise_list_table th,
.top_prise .top_prise_box .top_prise_list .top_prise_list_table td {
  font-size: clamp(16px, 1.67vw, 20px);
  padding: 8px 16px;
  vertical-align: middle;
  box-sizing: border-box;
}
.top_prise .top_prise_box .top_prise_list .top_prise_list_table th {
  font-weight: 700;
  text-align: left;
}
.top_prise .top_prise_box .top_prise_list .top_prise_list_table thead th {
  color: #fff;
  background: #e20000;
}
.top_prise .top_prise_box .top_prise_list .top_prise_list_table thead th:first-child {
  border-radius: 99px 0 0 99px;
  width: 20%;
  border-right: 20px solid #fff;
}
@media (max-width: 767px) {
  .top_prise .top_prise_box .top_prise_list .top_prise_list_table thead th:first-child {
    width: 30%;
    border-right: 5px solid #fff;
  }
}
.top_prise .top_prise_box .top_prise_list .top_prise_list_table thead th:last-child {
  border-radius: 0 99px 99px 0;
  background-color: #f4f4f4;
  color: #e20000;
  width: 40%;
  border-left: 20px solid #fff;
}
@media (max-width: 767px) {
  .top_prise .top_prise_box .top_prise_list .top_prise_list_table thead th:last-child {
    border-left: 5px solid #fff;
  }
}
.top_prise .top_prise_box .top_prise_list .top_prise_list_table tbody tr:nth-child(even) {
  background-color: #f4f4f4;
}
.top_prise .top_prise_box .top_prise_row {
  margin-top: 80px;
  gap: 40px;
  background-color: #f4f4f4;
  border-radius: 16px;
  align-items: end;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .top_prise .top_prise_box .top_prise_row {
    margin-top: 40px;
    padding: 0 20px;
  }
}
.top_prise .top_prise_box .top_prise_row .top_prise_img {
  flex-basis: 20%;
  margin-top: -40px;
}
@media (max-width: 767px) {
  .top_prise .top_prise_box .top_prise_row .top_prise_img {
    display: none;
  }
}
.top_prise .top_prise_box .top_prise_row .top_prise_img img {
  aspect-ratio: 3/4;
}
.top_prise .top_prise_box .top_prise_row .top_prise_txt {
  flex-basis: calc(80% - 40px);
  padding: 40px 0;
}
@media (max-width: 767px) {
  .top_prise .top_prise_box .top_prise_row .top_prise_txt {
    flex-basis: 100%;
    padding: 20px 0;
  }
}
.top_prise .top_prise_box .top_prise_row .top_prise_txt .top_prise_txt_red {
  color: #e20000;
  font-weight: 700;
  font-size: clamp(24px, 2.67vw, 32px);
  line-height: 1.4;
}

.top_service_area {
  background-color: #d6e8ef;
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 918px) {
  .top_service_area {
    padding: 40px 0 0;
  }
}
.top_service_area .top_service_area_row {
  position: relative;
  justify-content: center;
  gap: 60px;
}
@media (max-width: 918px) {
  .top_service_area .top_service_area_row {
    gap: 10px;
  }
}
.top_service_area .top_service_area_map {
  flex-basis: calc(50% - 30px);
}
.top_service_area .top_service_area_map img {
  max-width: 660px;
  aspect-ratio: 33/40;
}
@media (max-width: 918px) {
  .top_service_area .top_service_area_map {
    flex-basis: 100%;
    width: 100%;
    margin: auto;
  }
}
.top_service_area .top_area_pref_list {
  flex-basis: calc(50% - 30px);
  position: relative;
  z-index: 1;
}
@media (max-width: 918px) {
  .top_service_area .top_area_pref_list {
    flex-basis: 100%;
  }
}
.top_service_area .top_area_pref_list div {
  margin-bottom: 40px;
}
.top_service_area .top_area_pref_list div img {
  max-width: 488px;
  aspect-ratio: 61/27;
}
@media (max-width: 918px) {
  .top_service_area .top_area_pref_list div {
    margin-bottom: 20px;
  }
}
@media (max-width: 918px) {
  .top_service_area .top_area_pref_list div p {
    margin-left: 16px;
  }
}
.top_service_area .top_area_pref_list .top_service_area_pref {
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 10px;
  border-radius: 99px;
  padding: 0 20px;
}
@media (max-width: 918px) {
  .top_service_area .top_area_pref_list .top_service_area_pref {
    margin-bottom: 0;
  }
}
.top_service_area .top_area_pref_list .top_service_area_pref.pref_gifu {
  background-color: #101841;
}
.top_service_area .top_area_pref_list .top_service_area_pref.pref_aichi {
  background-color: #00418f;
}
.top_service_area .top_area_pref_list .top_service_area_pref.pref_mie {
  background-color: #2d9dbe;
}

.top_company_info {
  background-image: url(../images/bg_cta.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding-bottom: 60px;
  position: relative;
  margin-top: -1px;
}
.top_company_info .top_company_info_ttl {
  background-color: #d6e8ef;
  text-align: center;
  font-size: clamp(20px, 2.33vw, 28px);
  font-weight: 700;
  line-height: 1.3;
}
.top_company_info .top_company_inner {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
@media (max-width: 918px) {
  .top_company_info .top_company_inner {
    width: 90%;
  }
}
.top_company_info h2 {
  position: relative;
  margin-top: 80px;
}
.top_company_info h2::before {
  content: "＼";
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .top_company_info h2::before {
    left: -15%;
    transform: translateY(0);
  }
}
.top_company_info h2::after {
  content: "／";
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .top_company_info h2::after {
    right: -15%;
    transform: translateY(0);
  }
}
@media (max-width: 918px) {
  .top_company_info h2 {
    margin-top: 40px;
  }
}
.top_company_info .top_company_info_staff .top_company_info_staff_row {
  gap: 30px;
}
@media (max-width: 918px) {
  .top_company_info .top_company_info_staff .top_company_info_staff_row {
    gap: 15px;
  }
}
.top_company_info .top_company_info_staff .top_company_info_staff_box {
  flex-basis: calc(50% - 15px);
}
@media (max-width: 918px) {
  .top_company_info .top_company_info_staff .top_company_info_staff_box {
    flex-basis: 100%;
  }
}
.top_company_info .top_company_info_staff .top_company_info_staff_box .top_company_info_staff_img {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 160px;
  margin: auto;
}
.top_company_info .top_company_info_staff .top_company_info_staff_box .top_company_info_staff_txt {
  margin-top: 20px;
  color: #fff;
}
@media (max-width: 918px) {
  .top_company_info .top_company_info_staff .top_company_info_staff_box .top_company_info_staff_txt {
    font-size: 1.4rem;
  }
}
.top_company_info .top_company_info_about {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin: 60px auto;
  gap: 40px;
}
@media (max-width: 918px) {
  .top_company_info .top_company_info_about {
    padding: 20px;
    margin: 30px auto;
  }
}
.top_company_info .top_company_info_about .top_company_info_map {
  border-radius: 10px;
  overflow: hidden;
  flex-basis: calc(64% - 15px);
}
@media (max-width: 918px) {
  .top_company_info .top_company_info_about .top_company_info_map {
    flex-basis: 100%;
  }
}
.top_company_info .top_company_info_about .top_company_info_map .g_map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  /* 比率を4:3に固定 */
}
@media (max-width: 918px) {
  .top_company_info .top_company_info_about .top_company_info_map .g_map {
    padding-top: 50%;
  }
}
.top_company_info .top_company_info_about .top_company_info_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top_company_info .top_company_info_about .top_company_info_list {
  flex-basis: calc(34% - 20px);
}
@media (max-width: 918px) {
  .top_company_info .top_company_info_about .top_company_info_list {
    flex-basis: 100%;
  }
}
.top_company_info .top_company_info_about .top_company_info_list ul {
  margin-top: -14px;
}
.top_company_info .top_company_info_about .top_company_info_list ul li {
  font-weight: 700;
  padding: 10px 0;
}
.top_company_info .top_company_info_about .top_company_info_list ul li:last-child {
  border-bottom: 0;
}
.top_company_info .top_company_info_about .top_company_info_list ul li a[href^="tel:"] {
  pointer-events: none;
  font-size: 4rem;
  line-height: 1.2;
}
.top_company_info .top_company_info_about .top_company_info_list ul li span {
  display: block;
  color: #00418f;
  font-size: clamp(16px, 1.67vw, 20px);
  min-width: 120px;
}
@media (max-width: 918px) {
  .top_company_info .top_company_info_about .top_company_info_list ul li span {
    min-width: 110px;
  }
}
.top_company_info .top_company_info_about .top_company_info_list ul li .top_company_info_logo {
  width: 130px;
  padding: 12px;
  margin-right: 10px;
}
@media (max-width: 918px) {
  .top_company_info .top_company_info_about .top_company_info_list ul li .top_company_info_logo {
    margin-right: 6px;
  }
}
.top_company_info .top_company_end {
  text-align: center;
  font-size: clamp(20px, 2.33vw, 28px);
  font-weight: 700;
  line-height: 1.3;
}

.top_contact {
  padding: 80px 0;
}
@media (max-width: 918px) {
  .top_contact {
    padding: 40px 0;
  }
}
.top_contact #parentframe {
  width: 100%;
}
.top_contact .page_form_pp {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
.top_contact .page_form_pp a {
  color: #00418f;
}

.top_copyright {
  background-color: #00418f;
  padding: 10px 0;
  text-align: center;
}
.top_copyright a {
  font-size: 1.4rem;
  color: #fff;
}

/*フォーム*/
.page_form form input[type=text],
.page_form form input[type=email] {
  background-color: white;
  border-radius: 999px;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.6rem;
  border: 1px solid #666;
}
.page_form form textarea {
  background-color: white;
  border-radius: 16px;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.6rem;
  border: 1px solid #666;
}
@media (max-width: 918px) {
  .page_form form textarea {
    padding: 8px 4px;
  }
}
.page_form form input[type=checkbox] {
  display: none;
}
.page_form form button {
  display: block;
  position: relative;
  width: calc(70% - 15px);
  max-width: 420px;
  padding: 14px 0;
  color: #fff;
  text-align: center;
  border-radius: 999px;
  border: 2px solid #00418f;
  background-color: #00418f;
  font-size: 1.8rem;
  font-weight: 700;
  transition: 0.5s;
}
@media (hover: hover) {
  .page_form form button:hover {
    background-color: #fff;
    border: 2px solid #00418f;
    color: #00418f;
  }
  .page_form form button:hover::after {
    color: #00418f;
  }
}
.page_form form button::after {
  content: "\f35a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
@media (max-width: 918px) {
  .page_form form button::after {
    right: 10%;
  }
}
.page_form form a {
  color: #00418f;
  text-decoration: none;
}
.page_form form ::-moz-placeholder {
  color: #ccc;
}
.page_form form ::placeholder {
  color: #ccc;
}
.page_form form .form_error {
  flex-basis: 100%;
  color: #e20000;
  font-size: 1.4rem;
}
.page_form form .page_form_btn_row {
  gap: 30px;
  justify-content: center;
}
@media (max-width: 918px) {
  .page_form form .page_form_btn_row {
    gap: 15px;
  }
}
.page_form form .btn_return {
  display: inline-block;
  width: 30%;
  padding: 15px 20px;
  border: 2px solid #666;
  background-color: white;
  color: #666;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
@media (hover: hover) {
  .page_form form .btn_return:hover {
    background-color: #666;
    color: white;
  }
}
.page_form form .form_address_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.page_form form .form_address_row:last-child {
  margin-bottom: 0;
}
.page_form form .form_address_row .form_address_ttl {
  flex-basis: 25%;
  font-weight: 700;
}
@media (max-width: 918px) {
  .page_form form .form_address_row .form_address_ttl {
    flex-basis: 100%;
    margin-bottom: 4px;
  }
}
.page_form form .form_address_row input {
  flex-basis: 65%;
}
@media (max-width: 918px) {
  .page_form form .form_address_row input {
    flex-basis: 100%;
  }
}
.page_form form .form_required {
  display: inline-block;
  background-color: #e20000;
  color: #fff;
  font-size: 1rem;
  padding: 1px 4px;
  border-radius: 3px;
  margin: 0 4px;
}
.page_form form .form_address {
  padding-bottom: 60px;
}
.page_form form .form_check_products_row {
  gap: 20px;
  margin: 60px auto 0;
}
@media (max-width: 918px) {
  .page_form form .form_check_products_row {
    gap: 10px;
    margin: 30px auto 0;
  }
}
.page_form form .form_check_products {
  width: calc(33.3333333333% - 20px);
}
@media (max-width: 918px) {
  .page_form form .form_check_products {
    width: calc(33.3333333333% - 10px);
  }
}
.page_form form .form_check_products span {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  border: 2px solid #00418f;
  background-color: white;
  color: #00418f;
  font-size: clamp(16px, 1.67vw, 20px);
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 918px) {
  .page_form form .form_check_products span {
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .page_form form .form_check_products span:hover {
    background-color: #00418f;
    color: white;
  }
}
.page_form form .form_check_products input:checked + span {
  background-color: #00418f;
  color: white;
}
.page_form form .form_contact_textarea {
  margin: 30px auto 60px;
}
@media (max-width: 918px) {
  .page_form form .form_contact_textarea {
    margin: 30px auto;
  }
}
.page_form form .page_form_confirm {
  margin: 30px auto 60px;
  max-width: 686px;
  line-height: 2;
  font-size: 1.8rem;
}
.page_form .page_thanks {
  margin: 60px auto 0;
  max-width: 686px;
}
.page_form .page_thanks h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #00418f;
  margin-bottom: 30px;
}
.page_form .progressbar {
  position: relative;
  margin: 0 auto 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_form .progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 25%;
  color: #666;
  font-weight: bold;
}
@media (max-width: 918px) {
  .page_form .progressbar li {
    font-size: 1.4rem;
  }
}
.page_form .progressbar li:before {
  display: block;
  width: 18px;
  height: 18px;
  margin: 7px auto 10px auto;
  content: "";
  text-align: center;
  border-radius: 50%;
  background-color: #666;
}
.page_form .progressbar li:after {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #666;
}
.page_form .progressbar li:first-child:after {
  content: none;
}
.page_form .progressbar li.active,
.page_form .progressbar li.complete {
  color: #00418f;
}
.page_form .progressbar li.active:before,
.page_form .progressbar li.complete:before {
  background-color: #00418f;
}
.page_form .progressbar li.active:after,
.page_form .progressbar li.complete:after {
  background-color: #00418f;
}

@media (max-width: 918px) {
  footer {
    margin-bottom: 57px;
  }
}

/*アニメーション*/
.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.fade {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade.show {
  opacity: 1;
}

/*オープニングアニメーション*/
.fadeout {
  animation: fadeOut 0.8s;
  animation-fill-mode: both;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*bodyにpageOnクラスがついたら出現*/
body.pageOn #container {
  animation-name: PageAnimeOn;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeOn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */