@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* フェードイン(初期値) */
.fadein {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.fadein.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0.5s;
  /* フェード開始を0.5秒遅らせる */
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  background: rgba(1, 59, 139, 0.5);
}
header .header_left {
  width: 15%;
  background: #fff;
}
header .header_left a {
  display: block;
}
header .header_right ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header_right ul li {
  margin: 0 15px;
}
header .header_right ul li a {
  width: 100%;
  display: block;
  font-size: 1.6rem;
  color: #fff;
}
header .header_right ul .btn_contact {
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 15px;
  border: 1px solid #fff;
  background: linear-gradient(180deg, #2177f2 0%, #003b93 100%);
}
header {
  /* menu */
}
header .menu-icon {
  display: inline-block;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
header .menu-icon .bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
}
header .menu-icon p {
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}
header .menu-icon.open .bar1 {
  transform: rotate(-45deg) translate(-5px, 5px);
}
header .menu-icon.open .bar2 {
  opacity: 0; /* 真ん中のバーを非表示 */
}
header .menu-icon.open .bar3 {
  transform: rotate(45deg) translate(-5px, -5px);
}
@media screen and (max-width: 768px) {
  header {
    padding: 15px 20px;
  }
  header .header_left {
    width: 50%;
  }
  header .sp {
    display: contents;
  }
}

.nav-menu {
  position: fixed;
  z-index: 5;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  padding: 100px 20px 0;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  transform: translateX(-100%);
}
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu ul li {
  margin: 20px 0;
}
.nav-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}
.nav-menu ul .btn_contact {
  font-weight: bold;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 15px;
  border: 1px solid #fff;
  background: linear-gradient(180deg, #2177f2 0%, #003b93 100%);
}
.nav-menu.open {
  transform: translateX(0%);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: opacity 0.3s ease;
}
.overlay.active {
  display: block;
  opacity: 1;
}

.fixed_bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 5px;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
.fixed_bottom.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.fixed_bottom .btn_area {
  display: flex;
  gap: 5px;
}
.fixed_bottom .btn_area .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 15px;
  width: 50%;
}
.fixed_bottom .btn_area .btn .img {
  width: 15%;
  margin-right: 10px;
}
.fixed_bottom .btn_area .btn p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.fixed_bottom .btn_area .btn p span {
  display: block;
  font-size: 1rem;
  background: #fff;
  padding: 0 10px;
  border-radius: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3px auto 0;
}
.fixed_bottom .btn_area .btn_line {
  background: linear-gradient(180deg, #22d84f 0%, #03883a 100%);
}
.fixed_bottom .btn_area .btn_line p span {
  color: #06c755;
}
.fixed_bottom .btn_area .btn_tel {
  background: linear-gradient(180deg, #2177f2 0%, #003b93 100%);
}
.fixed_bottom .btn_area .btn_tel p {
  font-family: "Oswald", sans-serif;
}
.fixed_bottom .btn_area .btn_tel p span {
  color: #013b8b;
  font-family: "Zen Old Mincho", serif;
}

footer {
  padding: 40px 0;
  position: relative;
}
footer .img {
  width: 20%;
  margin: 0 auto;
}
footer .insta {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
}
footer .copy {
  text-align: center;
  font-size: 1.1rem;
  font-family: "SUSE", sans-serif;
  color: #555555;
}
@media screen and (max-width: 768px) {
  footer .img {
    width: 50%;
  }
}

.home h2 {
  font-size: 4rem;
  color: #013b8b;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home h2 {
    font-size: 3rem;
  }
}
.home .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .home .inner {
    width: 90%;
  }
}
.home section {
  padding: 70px 0;
}
.home .fv {
  padding: 0;
  height: 100vh;
  background: url(../img/fv.jpg) no-repeat top/cover;
  display: flex;
  align-items: center;
}
.home .fv .left {
  padding-left: 5%;
}
.home .fv .text_area h1 {
  font-size: 5rem;
  color: #fff;
  text-shadow: #013b8b 1px 0 10px;
}
.home .fv .text_area .title {
  font-size: 8rem;
  color: #fff;
  font-weight: bold;
  margin: 30px 0 50px;
  text-shadow: #013b8b 1px 0 10px;
  line-height: 1.3;
}
.home .fv .text_area .title span {
  color: #013b8b;
  text-shadow: #fff 1px 0 10px;
  font-size: 11rem;
  line-height: 0;
}
.home .fv .btn_area {
  display: flex;
  gap: 20px;
}
.home .fv .btn_area .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 15px;
  border: 1px solid #fff;
  width: 330px;
}
.home .fv .btn_area .btn .img {
  width: 15%;
  margin-right: 10px;
}
.home .fv .btn_area .btn p {
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}
.home .fv .btn_area .btn p span {
  display: block;
  font-size: 1.3rem;
  background: #fff;
  padding: 0 15px;
  border-radius: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.home .fv .btn_area .btn_line {
  background: linear-gradient(180deg, #22d84f 0%, #03883a 100%);
}
.home .fv .btn_area .btn_line p span {
  color: #06c755;
}
.home .fv .btn_area .btn_tel {
  background: linear-gradient(180deg, #2177f2 0%, #003b93 100%);
}
.home .fv .btn_area .btn_tel p {
  font-family: "Oswald", sans-serif;
}
.home .fv .btn_area .btn_tel p span {
  color: #013b8b;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .home .fv {
    padding: 0;
  }
  .home .fv .text_area h1 {
    font-size: 2.5rem;
  }
  .home .fv .text_area .title {
    font-size: 3.5rem;
    margin: 30px 0 50px;
    line-height: 1.3;
  }
  .home .fv .text_area .title span {
    font-size: 6rem;
    line-height: 1.3;
  }
  .home .fv .btn_area {
    display: none;
  }
}
.home .plan {
  background: #f1f7ff;
}
.home .plan .sub {
  font-size: 2rem;
  text-align: center;
}
.home .plan ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.home .plan li {
  background: #fff;
}
.home .plan li h3 {
  background: #013b8b;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 15px 0;
}
.home .plan li img {
  width: 20%;
  margin: 20px auto;
}
.home .plan li p {
  padding: 0 20px;
  line-height: 1.6;
}
.home .plan li .risk-meter {
  width: 100%;
  padding: 20px;
  color: #013b8b;
}
.home .plan li .risk-meter .risk-meter__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: bold;
}
.home .plan li .risk-meter .risk-meter__head strong {
  font-size: 1.8rem;
}
.home .plan li .risk-meter .risk-meter__bar {
  width: 100%;
  height: 8px;
  background: #e5e5e5;
  border-radius: 999px;
  overflow: hidden;
}
.home .plan li .risk-meter .risk-meter__bar span {
  display: block;
  width: 60%;
  height: 100%;
  background: #013b8b;
  border-radius: 999px;
}
.home .plan li .price {
  display: flex;
  align-items: center;
  padding: 0 20px 20px;
  color: #013b8b;
  font-size: 1.6rem;
  font-weight: bold;
}
.home .plan li .price strong {
  font-size: 1.8rem;
  color: #000;
  padding-left: 40px;
}
.home .plan .plan02 .risk-meter .risk-meter__bar span {
  width: 80%;
}
.home .plan .plan03 .risk-meter .risk-meter__bar span {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home .plan .sub {
    font-size: 1.8rem;
  }
  .home .plan ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .home .plan li .price strong {
    font-size: 1.7rem;
    padding-left: 25px;
  }
}
.home .bnr {
  padding: 0;
}
.home .bnr .img {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .home .bnr .img {
    width: 100%;
  }
}
.home .guarantee ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.home .guarantee li {
  background: #fff;
  box-shadow: 0 0 8px gray;
  padding: 20px;
}
.home .guarantee li h3 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  padding: 10px 0 25px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.home .guarantee li h3::before {
  position: absolute;
  font-family: "Material Symbols Outlined";
  content: "\e834";
  left: -27px;
  color: #013b8b;
}
@media screen and (max-width: 768px) {
  .home .guarantee ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.home .after {
  background: #f1f7ff;
}
.home .after .flex {
  display: flex;
  align-items: center;
}
.home .after .left {
  background: #fff;
  padding: 30px;
  width: 60%;
  position: relative;
  z-index: 2;
}
.home .after .left h3 {
  font-size: 2.5rem;
  margin: 30px 0;
}
.home .after .img {
  width: 60%;
  margin-left: -15%;
}
@media screen and (max-width: 768px) {
  .home .after .flex {
    flex-direction: column;
  }
  .home .after .left {
    background: #fff;
    padding: 20px;
    width: 100%;
  }
  .home .after .left h3 {
    font-size: 2rem;
    margin: 10px 0 20px;
  }
  .home .after .img {
    width: 100%;
    margin-left: 0;
  }
}
.home .flow ul {
  width: 70%;
  margin: 0 auto;
}
.home .flow li {
  padding-left: 40px;
  padding-bottom: 60px;
  position: relative;
}
.home .flow li::before {
  position: absolute;
  content: "";
  top: 13px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #013b8b;
  z-index: 2;
}
.home .flow li::after {
  position: absolute;
  content: "";
  top: 20px;
  left: 6px;
  width: 1px;
  height: 100%;
  background-color: #a0a0a0;
}
.home .flow li .step {
  font-size: 2rem;
  font-weight: bold;
  color: #013b8b;
}
.home .flow li h3 {
  font-size: 2.5rem;
  margin: 10px 0 15px;
}
@media screen and (max-width: 768px) {
  .home .flow ul {
    width: 100%;
  }
  .home .flow li h3 {
    font-size: 2.1rem;
  }
}
.home .area {
  background: #f1f7ff;
}
.home .area .sub {
  text-align: center;
}
.home .area ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.home .area li .title {
  font-size: 2.3rem;
  color: #fff;
  text-align: center;
  background: #013b8b;
  padding: 5px 0;
}
@media screen and (max-width: 768px) {
  .home .area ul {
    flex-direction: column;
  }
}
.home .case li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 15px;
  margin-bottom: 30px;
  box-shadow: 0 0 8px gray;
}
.home .case .img {
  width: 20%;
}
.home .case .img img {
  width: 60%;
  margin: 0 auto;
}
.home .case .info {
  width: 55%;
}
.home .case .info .title {
  display: flex;
  align-items: center;
}
.home .case .info .title .age {
  font-size: 1.8rem;
  color: #fff;
  background: #053075;
  padding: 5px 10px;
  text-align: center;
}
.home .case .info .title .plan_name {
  font-size: 1.8rem;
  color: #053075;
  margin-left: 15px;
}
.home .case .info .request {
  margin: 15px 0;
}
.home .case .info .result {
  display: flex;
  align-items: baseline;
}
.home .case .info .result .result_title {
  font-size: 1.4rem;
  color: #fff;
  background: #0f4a98;
  text-align: center;
  padding: 5px 10px;
  width: 88px;
}
.home .case .info .result .result_text {
  color: #0f4a98;
  margin-left: 15px;
}
.home .case .right {
  width: 25%;
}
.home .case .right .flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home .case .right .flex .icon {
  width: 63px;
  height: 63px;
  background: #d7e8ff;
  padding: 10px;
  border-radius: 50%;
}
.home .case .right .flex .text .item {
  font-size: 1.4rem;
}
.home .case .right .flex .text .item_result {
  font-size: 1.6rem;
  line-height: 1;
}
.home .case .right .flex .text .item_result span {
  font-size: 3rem;
  font-weight: bold;
}
.home .case .right .period {
  margin-bottom: 30px;
}
.home .case .right .period .text .item_result span {
  color: #0f4a98;
}
.home .case .right .price .text .item_result span {
  color: #c1404c;
}
.home .case .note {
  color: #707070;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .home .case li {
    flex-wrap: wrap;
    gap: 20px 10px;
  }
  .home .case .img {
    width: 25%;
  }
  .home .case .img img {
    width: 100%;
  }
  .home .case .info {
    order: 3;
    width: 100%;
  }
  .home .case .info .title .age {
    font-size: 1.4rem;
  }
  .home .case .info .result .result_title {
    width: 185px;
  }
  .home .case .right {
    width: 70%;
  }
  .home .case .right .flex {
    gap: 10px;
  }
  .home .case .right .flex .icon {
    width: 50px;
    height: 50px;
  }
  .home .case .right .flex .text .item {
    font-size: 1.4rem;
  }
  .home .case .right .flex .text .item_result {
    font-size: 1.4rem;
  }
  .home .case .right .flex .text .item_result span {
    font-size: 2.5rem;
  }
  .home .case .right .period {
    margin-bottom: 20px;
  }
  .home .case .note {
    font-size: 1.2rem;
  }
}
.home .faq {
  background: #f1f7ff;
}
.home .faq li {
  margin-bottom: 50px;
}
.home .faq li .question {
  display: flex;
  align-items: baseline;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.home .faq li .question span {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
  color: #013b8b;
  margin-right: 15px;
}
.home .faq li .answer {
  display: flex;
  align-items: baseline;
}
.home .faq li .answer span {
  display: block;
  color: #c1404c;
  font-size: 2.5rem;
  font-weight: bold;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .home .faq li {
    margin-bottom: 30px;
  }
  .home .faq li .question {
    font-size: 1.8rem;
  }
  .home .faq li .question span {
    font-size: 2rem;
  }
  .home .faq li .answer span {
    font-size: 2rem;
  }
}
.home .about .company-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}
.home .about .company-item dt {
  width: 200px;
  font-weight: bold;
  color: #003b93;
}
.home .about .company-item dd {
  width: calc(100% - 180px);
}
.home .about .map {
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .home .about .company-item {
    flex-direction: column;
    gap: 8px;
    padding: 15px 0;
  }
  .home .about .company-item dt,
  .home .about .company-item dd {
    width: 100%;
  }
  .home .about .company-item dt {
    font-size: 1.4rem;
  }
  .home .about .company-item dd {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.home .contact {
  padding-top: 300px;
  position: relative;
  background: rgba(0, 0, 0, 0.7);
}
.home .contact .img01 {
  position: absolute;
  width: 15%;
  z-index: -1;
  left: 10%;
  top: 150px;
}
.home .contact .img02 {
  position: absolute;
  width: 20%;
  right: 5%;
  z-index: -1;
}
.home .contact .inner {
  max-width: 1120px;
  margin: 0 auto;
}
.home .contact h2 {
  text-align: center;
}
.home .contact table {
  margin: 60px auto 0;
}
.home .contact table th {
  text-align: left;
  padding: 0 20px 15px;
}
.home .contact table th p {
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}
.home .contact table th p span {
  font-size: 1.1rem;
  font-family: "SUSE", sans-serif;
  margin-left: 10px;
}
.home .contact table td {
  margin-bottom: 30px;
}
.home .contact table td input {
  color: #fff;
  font-size: 1.3rem;
  background: #363636;
  border-radius: 50px;
  padding: 15px 3%;
  width: 94%;
  border: none;
}
.home .contact table td textarea {
  color: #fff;
  font-size: 1.3rem;
  background: #363636;
  border-radius: 20px;
  padding: 15px 3%;
  width: 94%;
  border: none;
}
.home .contact table th, .home .contact table td {
  display: inline-block;
  width: 100%;
}
.home .contact .contact_submit {
  margin: 0 auto;
}
.home .contact .contact_submit input {
  background: inherit;
  display: block;
  width: 55%;
  margin: 80px auto 0;
  border: 1px solid #fff;
  border-radius: 30px;
  font-size: 1.3rem;
  font-family: "SUSE", sans-serif;
  color: #fff;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .home .contact {
    padding-top: 200px;
  }
  .home .contact .img01 {
    width: 25%;
    left: 6%;
    top: 135px;
  }
  .home .contact .img02 {
    width: 30%;
    right: 5%;
    top: 220px;
  }
  .home .contact .inner {
    width: 90%;
  }
  .home .contact .contact_submit input {
    margin: 30px auto 0;
  }
}

.archive .work {
  padding-top: 300px;
}
.archive .work h2 {
  margin-bottom: 120px;
  font-family: "Anton", sans-serif;
  font-size: 8.5rem;
  letter-spacing: 5px;
  color: transparent;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #fff;
}
.archive .work .inner {
  max-width: 1120px;
  margin: 0 auto;
}
.archive .work .work_list .work_item {
  margin-bottom: 180px;
}
.archive .work .work_list .work_item a {
  display: flex;
  justify-content: center;
  width: 100%;
  color: #fff;
}
.archive .work .work_list .work_item a .img {
  width: 70%;
  transition: 0.5s;
}
.archive .work .work_list .work_item a .img img {
  filter: grayscale(100%);
}
.archive .work .work_list .work_item a .text_area {
  width: 30%;
  margin-left: 50px;
}
.archive .work .work_list .work_item a .text_area h3 {
  font-size: 2.7rem;
  font-family: "Anton", sans-serif;
  letter-spacing: 5px;
}
.archive .work .work_list .work_item a .text_area .sub {
  font-size: 1.4rem;
  margin-top: 10px;
}
.archive .work .work_list .work_item a .text_area .tags {
  margin-top: 50px;
}
.archive .work .work_list .work_item a .text_area .tags .tags_list {
  font-size: 1.1rem;
}
.archive .work .work_list .work_item a:hover, .archive .work .work_list .work_item a:hover * {
  opacity: 1;
}
.archive .work .work_list .work_item a:hover .img, .archive .work .work_list .work_item a:hover * .img {
  transition: 0.5s;
  box-shadow: 0px 0px 60px #A1E9DB;
}
.archive .work .work_list .work_item a:hover .img img, .archive .work .work_list .work_item a:hover * .img img {
  filter: grayscale(0%);
}
.archive .work .btn {
  display: block;
  width: 70%;
  margin: 0 auto;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 20px 0;
}
.archive .work .btn p {
  color: #fff;
  font-size: 1.3rem;
  font-family: "SUSE", sans-serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .archive .work {
    padding-top: 150px;
  }
  .archive .work h2 {
    margin-bottom: 70px;
    font-size: 7.2rem;
    -webkit-text-stroke-width: 0.5px;
  }
  .archive .work .inner {
    width: 90%;
  }
  .archive .work .work_list .work_item {
    margin-bottom: 70px;
  }
  .archive .work .work_list .work_item a {
    flex-direction: column;
  }
  .archive .work .work_list .work_item a .img {
    width: 100%;
  }
  .archive .work .work_list .work_item a .text_area {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .archive .work .work_list .work_item a .text_area h3 {
    font-size: 2rem;
  }
  .archive .work .work_list .work_item a .text_area .tags {
    margin-top: 15px;
  }
}

.contact_page {
  padding: 140px 0 70px;
}
@media screen and (max-width: 768px) {
  .contact_page {
    padding: 70px 0 40px;
  }
}
.contact_page h1 {
  text-align: center;
  color: #013b8b;
}
.contact_page .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .contact_page .inner {
    width: 90%;
  }
}
.contact_page .info {
  margin: 40px 0 30px;
}
.contact_page .note {
  margin: 30px 0;
}
.contact_page .btn_area {
  display: flex;
  gap: 20px;
}
.contact_page .btn_area .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 15px;
  border: 1px solid #fff;
  width: 330px;
}
.contact_page .btn_area .btn .img {
  width: 15%;
  margin-right: 10px;
}
.contact_page .btn_area .btn p {
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}
.contact_page .btn_area .btn p span {
  display: block;
  font-size: 1.3rem;
  background: #fff;
  padding: 0 15px;
  border-radius: 15px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.contact_page .btn_area .btn_line {
  background: linear-gradient(180deg, #22d84f 0%, #03883a 100%);
}
.contact_page .btn_area .btn_line p span {
  color: #06c755;
}
.contact_page .btn_area .btn_tel {
  background: linear-gradient(180deg, #2177f2 0%, #003b93 100%);
}
.contact_page .btn_area .btn_tel p {
  font-family: "Oswald", sans-serif;
}
.contact_page .btn_area .btn_tel p span {
  color: #013b8b;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .contact_page .btn_area {
    flex-direction: column;
  }
}
.contact_page .wpcf7 table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.contact_page .wpcf7 table tr {
  border-bottom: 1px solid #e5e5e5;
}
.contact_page .wpcf7 table th,
.contact_page .wpcf7 table td {
  padding: 20px;
  vertical-align: top;
}
.contact_page .wpcf7 table th {
  width: 220px;
  color: #013b8b;
  font-weight: bold;
  text-align: left;
  background: #f5f8ff;
}
.contact_page .wpcf7 table td {
  background: #fff;
}
.contact_page .wpcf7 input[type=text],
.contact_page .wpcf7 input[type=email],
.contact_page .wpcf7 input[type=tel],
.contact_page .wpcf7 textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 1.5rem;
  background: #fff;
}
.contact_page .wpcf7 textarea {
  min-height: 180px;
  resize: vertical;
}
.contact_page .wpcf7 .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.contact_page .wpcf7 .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.contact_page .wpcf7 .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.contact_page .wpcf7 input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.contact_page .wpcf7 .privacy_check {
  margin: 30px 0;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
}
.contact_page .wpcf7 .privacy_check .wpcf7-list-item {
  margin: 0;
}
.contact_page .wpcf7 .privacy_check label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.contact_page .wpcf7 .privacy_check a {
  color: #003b93;
  text-decoration: underline;
}
.contact_page .wpcf7 .privacy_check a:hover {
  opacity: 0.7;
}
.contact_page .wpcf7 .contact_submit {
  text-align: center;
}
.contact_page .wpcf7 .contact_submit input[type=submit] {
  width: 100%;
  max-width: 420px;
  padding: 18px;
  border: none;
  border-radius: 100px;
  background: linear-gradient(180deg, #2177f2 0%, #003b93 100%);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}
.contact_page .wpcf7 .contact_submit input[type=submit]:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.contact_page .wpcf7 .wpcf7-spinner {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact_page .wpcf7 table,
  .contact_page .wpcf7 tbody,
  .contact_page .wpcf7 tr,
  .contact_page .wpcf7 th,
  .contact_page .wpcf7 td {
    display: block;
    width: 100%;
  }
  .contact_page .wpcf7 table {
    margin-bottom: 24px;
  }
  .contact_page .wpcf7 tr {
    margin-bottom: 18px;
    border-bottom: none;
  }
  .contact_page .wpcf7 th {
    padding: 10px 12px;
    font-size: 1.4rem;
  }
  .contact_page .wpcf7 td {
    padding: 12px 0 0;
  }
  .contact_page .wpcf7 input[type=text],
  .contact_page .wpcf7 input[type=email],
  .contact_page .wpcf7 input[type=tel],
  .contact_page .wpcf7 textarea {
    font-size: 1.4rem;
    padding: 13px 14px;
  }
  .contact_page .wpcf7 textarea {
    min-height: 150px;
  }
  .contact_page .wpcf7 .wpcf7-checkbox {
    flex-direction: column;
    gap: 10px;
  }
  .contact_page .wpcf7 .privacy_check {
    text-align: left;
    font-size: 1.3rem;
  }
  .contact_page .wpcf7 .contact_submit input[type=submit] {
    max-width: 100%;
    padding: 16px;
    font-size: 1.6rem;
  }
}

.thanks .bg {
  background: url(../img/fv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100vh;
  width: 100%;
}
.thanks .thanks_content {
  background: rgba(0, 0, 0, 0.7);
  padding: 300px 0 100px;
}
.thanks .thanks_content .inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.thanks .thanks_content h1 {
  font-size: 5rem;
  margin-bottom: 60px;
}
.thanks .thanks_content p {
  font-size: 2.4rem;
  line-height: 1.7;
}
.thanks .thanks_content .btn {
  display: block;
  width: 60%;
  margin: 80px auto 0;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 20px 0;
  color: #fff;
  font-size: 1.3rem;
  font-family: "SUSE", sans-serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks .thanks_content {
    padding: 100px 0 0;
  }
  .thanks .thanks_content .inner {
    max-width: 90%;
  }
  .thanks .thanks_content h1 {
    font-size: 3rem;
  }
  .thanks .thanks_content p {
    font-size: 1.8rem;
  }
  .thanks .thanks_content .btn {
    width: 80%;
  }
}

.privacy_page {
  padding: 140px 0 70px;
}
@media screen and (max-width: 768px) {
  .privacy_page {
    padding: 70px 0 40px;
  }
}
.privacy_page h1 {
  text-align: center;
  color: #013b8b;
  margin-bottom: 40px;
}
.privacy_page .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .privacy_page .inner {
    width: 90%;
  }
}/*# sourceMappingURL=style.css.map */