@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: #f0f0f0;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (max-width: 768px) {
  body {
    letter-spacing: 0.01em;
  }
}

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: 920px) {
  .inner {
    width: 95%;
  }
}

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

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

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

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

section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }
}

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

.bg_nv {
  background-color: #00418f;
}

/* ボタン */
.common_btn,
.common_cta_btn {
  display: block;
  position: relative;
  width: 100%;
  max-width: 470px;
  padding: 14px 0;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  background-color: #d6e8ef;
  border-bottom: 5px solid #00418f;
  transition: 0.3s;
}

.common_btn:hover,
.common_cta_btn:hover {
  margin-top: 3px;
  color: #fff;
  background-color: #d6e8ef;
  border-bottom: 2px solid #00418f;
}

.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: 768px) {
  .common_btn::after {
    right: 3%;
  }
}

.bottom_menu_sp {
  display: none;
}
@media (max-width: 768px) {
  .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;
}

.common_ttl_h2 {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto 60px;
  font-size: 44px;
  font-weight: 900;
  color: #00418f;
  line-height: 1;
}
@media (max-width: 768px) {
  .common_ttl_h2 {
    font-size: 38px;
    margin: 0 auto 30px;
  }
}

.common_ttl_h2_img {
  margin: -30px auto 40px;
  width: 70%;
}
@media (max-width: 768px) {
  .common_ttl_h2_img {
    width: 100%;
    margin: -30px auto 20px;
  }
}

[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;
}

/*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_bnr {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10%;
  width: 100%;
  max-width: 800px;
}
@media (max-width: 768px) {
  .top_main_copy .top_bnr {
    width: 95%;
    top: -3%;
  }
}
.top_main_copy .top_main_copy_row {
  gap: 30px;
  margin-top: calc(var(--visual-height) / 2 + 60px);
}
@media (max-width: 768px) {
  .top_main_copy .top_main_copy_row {
    flex-direction: column-reverse;
    margin-top: calc(var(--visual-height) / 2 + 30px);
  }
}
.top_main_copy .top_main_copy_row .top_main_copy_img {
  flex-basis: 40%;
}
@media (max-width: 768px) {
  .top_main_copy .top_main_copy_row .top_main_copy_img {
    position: relative;
    z-index: 2;
  }
}
.top_main_copy .top_main_copy_row .top_main_copy_txt {
  flex-basis: calc(60% - 30px);
}

.top_cta {
  padding: 40px 0;
}
.top_cta .top_cta_btns {
  gap: 30px;
  margin: 30px 0;
}
@media (max-width: 768px) {
  .top_cta .top_cta_btns {
    margin: 30px 0 0;
  }
}
.top_cta .top_cta_btns2 {
  gap: 30px;
  margin: 0;
}
@media (max-width: 768px) {
  .top_cta .top_cta_btns2 {
    margin: 0;
  }
}
.top_cta .top_cta_btn_copy {
  color: #fff;
  font-size: 1.4rem;
  font-weight: normal;
  position: relative;
  padding-bottom: 0.4em;
  text-align: center;
}
.top_cta .top_cta_btn_copy::before {
  margin-right: 1rem;
  content: "＼";
}
.top_cta .top_cta_btn_copy::after {
  margin-left: 1rem;
  content: "／";
}
.top_cta .top_cta_tel,
.top_cta .top_cta_line {
  width: calc(50% - 15px);
  font-size: 1.8rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .top_cta .top_cta_tel,
  .top_cta .top_cta_line {
    width: 100%;
  }
}
.top_cta .cta_btn_tel {
  color: #00418f;
  background-color: #ffdc00;
  border-bottom: 5px solid #b67c00;
}
.top_cta .cta_btn_tel:hover {
  margin-top: 3px;
  color: #00418f;
  background-color: #ffdc00;
  border-bottom: 2px solid #b67c00;
}
.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: "\f098";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 3rem;
  color: #00418f;
  position: absolute;
  width: 29px;
  height: 29px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  line-height: 1;
}
.top_cta .cta_btn_line {
  background-color: #54b900;
  border-bottom: 5px solid #227100;
}
.top_cta .cta_btn_line:hover {
  margin-top: 3px;
  color: #fff;
  background-color: #54b900;
  border-bottom: 2px solid #227100;
}
.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_reason {
  padding-top: 0;
}
.top_reason .top_reason_ttl {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto 20px;
  font-size: 44px;
  font-weight: 900;
  color: #00418f;
}
@media (max-width: 768px) {
  .top_reason .top_reason_ttl {
    font-size: 32px;
    margin: 0 0 30px;
    line-height: 1.4;
    text-align: left;
  }
}
.top_reason .top_reason_row {
  gap: 30px;
}
.top_reason .top_reason_row_img {
  flex-basis: 45%;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .top_reason .top_reason_row_img {
    flex-basis: 100%;
    flex-direction: row;
    gap: 10px;
  }
}
.top_reason .top_reason_row_txt {
  flex-basis: calc(55% - 30px);
}
@media (max-width: 768px) {
  .top_reason .top_reason_row_txt {
    flex-basis: 100%;
  }
}
.top_reason .top_reason_row_txt ul li {
  position: relative;
  margin-bottom: 26px;
}
.top_reason .top_reason_row_txt ul li:last-child {
  margin-bottom: 0;
}
.top_reason .top_reason_row_txt ul li h3 {
  color: #00418f;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .top_reason .top_reason_row_txt ul li h3 {
    font-size: 22px;
  }
}
.top_reason .top_reason_row_txt ul li p {
  padding-bottom: 8px;
}
.top_reason .top_reason_bnr {
  margin: 40px auto 80px;
}
.top_reason .top_reason_note {
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .top_reason .top_reason_note {
    gap: 0;
    width: 100%;
    justify-content: flex-start;
  }
}
.top_reason .top_reason_note h3 {
  color: #00418f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.top_reason .top_reason_note div p {
  font-size: 24px;
}
@media (max-width: 768px) {
  .top_reason .top_reason_note div p {
    font-size: 22px;
  }
}
.top_reason .top_reason_note .top_reason_price {
  font-size: 80px;
  color: #e20000;
  font-weight: 900;
  line-height: 1;
}
@media (max-width: 768px) {
  .top_reason .top_reason_note .top_reason_price {
    font-size: 72px;
    text-align: right;
    width: 100%;
  }
}
.top_reason .top_reason_note .top_reason_price span {
  font-size: 64px;
}
@media (max-width: 768px) {
  .top_reason .top_reason_note .top_reason_price span {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .top_appeal {
    padding-bottom: 0;
  }
}
.top_appeal .top_appeal_img {
  max-width: 900px;
  margin: auto;
}
.top_appeal .top_appeal_txt {
  max-width: 1000px;
  margin: 30px auto 0;
  background-color: #fff;
  padding: 40px 5%;
}
@media (max-width: 768px) {
  .top_appeal .top_appeal_txt {
    margin: 15px auto 0;
  }
}
.top_appeal .top_appeal_row {
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .top_appeal .top_appeal_row {
    gap: 10px;
  }
}
.top_appeal .top_appeal_row:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .top_appeal .top_appeal_row:last-child {
    flex-direction: column-reverse;
  }
}
.top_appeal .top_appeal_row_img {
  flex-basis: 26%;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .top_appeal .top_appeal_row_img {
    flex-basis: 100%;
    flex-direction: row;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .top_appeal .top_appeal_row_img img {
    width: calc(50% - 5px);
  }
}
.top_appeal .top_appeal_row_txt {
  flex-basis: calc(74% - 30px);
}
@media (max-width: 768px) {
  .top_appeal .top_appeal_row_txt {
    flex-basis: 100%;
  }
}
.top_appeal .top_appeal_row_txt ul li {
  position: relative;
  margin-bottom: 16px;
}
.top_appeal .top_appeal_row_txt ul li:last-child {
  margin-bottom: 0;
}
.top_appeal .top_appeal_row_txt ul li h3 {
  color: #00418f;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .top_appeal .top_appeal_row_txt ul li h3 {
    font-size: 18px;
  }
}
.top_appeal .top_appeal_row_txt ul li p {
  padding-bottom: 8px;
}
@media (max-width: 768px) {
  .top_appeal .top_appeal_row_txt ul li p {
    font-size: 13px;
  }
}

.top_point {
  padding-top: 0;
}
.top_point h3 {
  width: 70%;
  margin: 40px auto;
}
@media (max-width: 768px) {
  .top_point h3 {
    width: 100%;
    margin: 20px auto;
  }
}
.top_point .top_point_row {
  gap: 20px;
}
.top_point .top_point_row .top_point_img {
  flex-basis: 25%;
}
@media (max-width: 768px) {
  .top_point .top_point_row .top_point_img {
    display: none;
  }
}
.top_point .top_point_row .top_point_list {
  flex-basis: calc(75% - 20px);
}
@media (max-width: 768px) {
  .top_point .top_point_row .top_point_list {
    flex-basis: 100%;
  }
}
.top_point .top_point_row .top_point_list li {
  padding: 20px 0;
  border-bottom: 1px dashed #00418f;
}
.top_point .top_point_row .top_point_list li:last-child {
  border-bottom: 0;
  padding: 20px 0 0;
}
.top_point .top_point_row .top_point_list li div {
  align-items: center;
  gap: 10px;
}
.top_point .top_point_row .top_point_list li div span {
  background-color: #0478be;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 0 16px;
}
@media (max-width: 768px) {
  .top_point .top_point_row .top_point_list li div span {
    padding: 0 12px;
  }
}
.top_point .top_point_row .top_point_list li div h4 {
  color: #00418f;
  font-size: 18px;
  font-weight: bold;
}
.top_point .top_point_row .top_point_list li p {
  line-height: 1.5;
  margin-top: 6px;
}

.top_service_area .common_ttl_h2 {
  color: #0478be;
}
.top_service_area .top_service_area_row {
  position: relative;
  gap: 30px;
  margin-bottom: 20px;
}
.top_service_area .top_service_area_map,
.top_service_area .top_service_area_list {
  flex-basis: calc(50% - 15px);
}
@media (max-width: 768px) {
  .top_service_area .top_service_area_map,
  .top_service_area .top_service_area_list {
    flex-basis: 100%;
  }
}
@media (max-width: 768px) {
  .top_service_area .top_service_area_map {
    width: 55%;
    margin: auto;
  }
}
.top_service_area .top_area_pref_list {
  position: relative;
  margin-top: 60px;
  z-index: 1;
}
@media (max-width: 768px) {
  .top_service_area .top_area_pref_list {
    margin-top: 30px;
  }
}
.top_service_area .top_area_pref_list div {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .top_service_area .top_area_pref_list div {
    margin-bottom: 20px;
  }
}
.top_service_area .top_area_pref_list .top_service_area_pref {
  color: #00418f;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .top_service_area .top_area_pref_list .top_service_area_pref {
    margin-bottom: 0;
  }
}

.top_faq {
  /* 修正: 三角の位置をsummaryに固定 */
  /* 修正: 開いたときに三角を回転 */
}
.top_faq .common_ttl_h2 {
  color: #0478be;
}
.top_faq details {
  transition: all 0.3s ease-in-out;
}
.top_faq details summary {
  cursor: pointer;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  color: #00418f;
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  list-style: none;
  position: relative;
}
.top_faq details:last-of-type summary {
  margin-bottom: 0;
}
.top_faq details:last-of-type p {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .top_faq details summary {
    padding: 10px 40px 10px 15px;
    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_company_info .common_ttl_h2 img {
  width: 100%;
}
.top_company_info .top_company_info_staff .top_company_info_staff_baloon {
  width: 80%;
  margin: auto;
}
.top_company_info .top_company_info_staff .top_company_info_staff_row {
  gap: 30px;
}
@media (max-width: 768px) {
  .top_company_info .top_company_info_staff .top_company_info_staff_row {
    gap: 10px;
  }
}
.top_company_info .top_company_info_staff .top_company_info_staff_box {
  flex-basis: calc(50% - 15px);
  gap: 10px;
  background-color: #fff;
  padding: 16px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .top_company_info .top_company_info_staff .top_company_info_staff_box {
    flex-basis: 100%;
    margin-top: 8px;
  }
}
.top_company_info .top_company_info_staff .top_company_info_staff_box .top_company_info_staff_img {
  flex-basis: calc(40% - 5px);
}
.top_company_info .top_company_info_staff .top_company_info_staff_box .top_company_info_staff_txt {
  flex-basis: calc(60% - 5px);
}
@media (max-width: 768px) {
  .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 {
  margin: 60px auto;
  gap: 30px;
}
@media (max-width: 768px) {
  .top_company_info .top_company_info_about {
    margin: 30px auto;
  }
}
.top_company_info .top_company_info_about .top_company_info_map {
  flex-basis: calc(44% - 15px);
}
@media (max-width: 768px) {
  .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: 768px) {
  .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(56% - 15px);
  color: #fff;
}
@media (max-width: 768px) {
  .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;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px dotted #fff;
}
.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 {
  color: #fff;
}
.top_company_info .top_company_info_about .top_company_info_list ul li a[href^="tel:"] {
  color: #fff;
  pointer-events: none;
  font-size: 2.4rem;
}
.top_company_info .top_company_info_about .top_company_info_list ul li span {
  display: inline-block;
  color: #ffdc00;
  font-size: 1.4rem;
  min-width: 120px;
}
@media (max-width: 768px) {
  .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: 100px;
  height: 50px;
  background-color: #fff;
  padding: 12px;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .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_list_row .top_company_list {
  flex-basis: calc(50% - 30px);
  color: #fff;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .top_company_info .top_company_list_row .top_company_list {
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .top_company_info .top_company_list_row .top_company_list:last-child {
    margin-bottom: 0;
  }
}
.top_company_info .top_company_list_row .top_company_list h3 {
  color: #ffdc00;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
.top_company_info .top_company_list_row .top_company_list address {
  font-style: normal;
}
.top_company_info .top_company_list_row .top_company_list p {
  margin-right: 20px;
}

.top_contact iframe {
  height: 560px;
}
@media (max-width: 768px) {
  .top_contact iframe {
    height: 615px;
  }
}
.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: #0478be;
  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],
.page_form form textarea {
  border: none;
  background-color: white;
  border-radius: 5px;
  padding: 16px 8px;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .page_form form input[type=text],
  .page_form form input[type=email],
  .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: 5px;
  background-color: #00418f;
  border-bottom: 5px solid #002168;
  font-size: 1.8rem;
  font-weight: 700;
  transition: 0.3s;
}
.page_form form button:hover {
  margin-top: 3px;
  color: #fff;
  background-color: #00418f;
  border-bottom: 2px solid #002168;
}
.page_form form button::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%);
}
.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: 768px) {
  .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 #00418f;
  background-color: white;
  color: #00418f;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.page_form form .btn_return:hover {
  background-color: #00418f;
  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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 2rem;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
@media (max-width: 768px) {
  .page_form form .form_check_products span {
    font-size: 1.6rem;
  }
}
.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: 768px) {
  .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: 768px) {
  .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: 768px) {
  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 */