@charset "UTF-8";
html {
  font-size: 1px;
  overflow-x: hidden;
}
html.lock {
  overflow-y: hidden;
}

body {
  font-family: "Noto Serif JP", serif;
  line-height: 1.7;
  letter-spacing: 0.1em;
  max-width: 100vw;
  min-height: 100vh;
  color: #333;
  font-size: 16rem;
}

select,
input,
textarea,
button {
  font: inherit;
}

img,
svg {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  transition: 0.3s linear;
  backface-visibility: hidden;
}
a.tel_link {
  pointer-events: none;
}
a:hover {
  opacity: 0.8;
}
a.line {
  text-decoration: underline;
  text-underline-offset: 3rem;
}

main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

.inner {
  width: 1000rem;
  margin-left: auto;
  margin-right: auto;
}

.s_inner {
  width: 820rem;
  margin-left: auto;
  margin-right: auto;
}

.mt_l {
  margin-top: 100rem;
}

.mt_m {
  margin-top: 60rem;
}

.mt_s {
  margin-top: 20rem;
}

.fz_l {
  font-size: 1.2em;
}

.fz_s {
  font-size: 0.8em;
}

.ta_center {
  text-align: center;
}

.fwb {
  font-weight: bold;
}

.font_gara {
  font-family: "EB Garamond", serif;
}

.font_times {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.font_sans {
  font-family: "Noto Sans JP", sans-serif;
}

.c_red {
  color: #df1616;
}

.btn_more a {
  color: #1d2e4a;
  font-size: 15rem;
  border: 1px solid #1d2e4a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.btn_more a::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1d2e4a;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  z-index: -1;
}
.btn_more a:hover {
  color: #fff;
  opacity: 1;
}
.btn_more a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.btn_more.btn_white a {
  border: 1px solid #fff;
  color: #fff;
}
.btn_more.btn_white a::after {
  background: #fff;
}
.btn_more.btn_white a:hover {
  color: #1d2e4a;
}

.fadein_char {
  opacity: 0;
  transform: translateY(8rem);
  display: inline-block;
  animation: fadein_text 0.5s ease forwards;
}

.fadein {
  opacity: 0;
  transform: translateY(50rem);
  transition: 1s;
}
.fadein img {
  filter: blur(15px);
  opacity: 0;
  transform: scale(1.1);
}
.fadein.in {
  opacity: 1;
  transform: translateY(0);
}
.fadein.in img {
  filter: blur(0);
  opacity: 1;
  transition-delay: 0s, 0.3s, 0.3s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  transition-duration: 1.2s;
  transition-property: opacity, filter, transform;
  transform: scale(1);
}
.fadein.delay01 {
  transition-delay: 0.3s;
}
.fadein.delay02 {
  transition-delay: 0.6s;
}
.fadein.delay03 {
  transition-delay: 0.9s;
}
.fadein.delay04 {
  transition-delay: 1.2s;
}

.main_content_area {
  display: flex;
}
.main_content_area .main_content {
  width: calc(100% - 14.5833333333vw);
}

.btn_contact {
  position: absolute;
  right: 40rem;
  top: 36rem;
  z-index: 2;
}
.btn_contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280rem;
  height: 70rem;
  border: 1px solid #ffffff;
  color: #fff;
  padding-left: 40rem;
  position: relative;
  transition: 0.3s;
}
.btn_contact a::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 35rem;
  transform: translateY(-50%);
  width: 28rem;
  height: 19rem;
  background: url(../img/ico_mail.svg) no-repeat center top/contain;
  transition: 0.3s;
}
.btn_contact a::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
  z-index: -1;
}
.btn_contact a:hover {
  opacity: 1;
  color: #1d2e4a;
}
.btn_contact a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.btn_contact a:hover::before {
  background: url(../img/ico_mail_blue.svg) no-repeat center top/contain;
}
.btn_contact.blue_contact a {
  color: #1d2e4a;
  border: 1px solid #1d2e4a;
}
.btn_contact.blue_contact a::after {
  background: #1d2e4a;
}
.btn_contact.blue_contact a::before {
  background: url(../img/ico_mail_blue.svg) no-repeat center top/contain;
}
.btn_contact.blue_contact a:hover {
  color: #fff;
}
.btn_contact.blue_contact a:hover::before {
  background: url(../img/ico_mail.svg) no-repeat center top/contain;
}

header {
  width: 14.5833333333vw;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
  border-right: 1px solid transparent;
  background-color: #fff;
  overflow-y: auto;
}
header .header_wrap {
  padding-top: 3.125vw;
  padding-bottom: 2.0833333333vw;
}
header .logo_wrap {
  width: 8.8541666667vw;
  min-width: 150rem;
  margin-left: auto;
  margin-right: auto;
}
header .tit {
  font-size: 28rem;
  writing-mode: vertical-rl;
  color: #09163b;
  margin-top: 30rem;
  width: 100%;
  display: flex;
  align-items: center;
  letter-spacing: 0.5em;
}
header .hm_btn_wrap {
  margin-top: 30rem;
  width: 90rem;
  height: 90rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #1d2e4a;
  border-radius: 50%;
  cursor: pointer;
}
header .hm_btn_wrap .hm_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40rem;
  height: 33rem;
  position: relative;
}
header .hm_btn_wrap .hm_btn span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1d2e4a;
  position: absolute;
  left: 0;
  transition: 0.5s;
}
header .hm_btn_wrap .hm_btn span:nth-child(1) {
  top: 0;
}
header .hm_btn_wrap .hm_btn span:nth-child(2) {
  width: 30rem;
  top: 16rem;
  transition: 0.5s;
}
header .hm_btn_wrap .hm_btn span:nth-child(3) {
  bottom: 0;
}
header .hm_btn_wrap.active span:nth-child(1) {
  top: 16rem;
  transform: rotate(35deg);
}
header .hm_btn_wrap.active span:nth-child(2) {
  opacity: 0;
}
header .hm_btn_wrap.active span:nth-child(3) {
  bottom: 16rem;
  transform: rotate(-35deg);
}

.header_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 14.5833333333vw);
  height: 100%;
  background-color: #fff;
  color: #1d2e4a;
  z-index: 100;
  transform: translateX(-101%);
  transition: 0.8s;
  padding-left: 9.375vw;
  padding-top: 4.1666666667vw;
  padding-bottom: 3.125vw;
  overflow-x: hidden;
  border-left: 1px solid #001380;
}
.header_menu.active {
  transform: translateX(0);
}
.header_menu .tit_sp {
  position: absolute;
  top: 130rem;
  left: 15rem;
  font-size: 18rem;
  color: #001783;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.5em;
  writing-mode: vertical-rl;
}
.header_menu .header_menu_area {
  position: relative;
  width: 41.8229166667vw;
}
.header_menu .header_menu_area .header_menu_wrap .menu_wrap {
  display: flex;
  padding-bottom: 50rem;
}
.header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li {
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 5.2083333333vw;
}
.header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li + li {
  margin-top: 60rem;
}
.header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li a {
  padding-left: 30rem;
  position: relative;
  display: block;
}
.header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li a::before {
  position: absolute;
  content: "";
  display: block;
  top: 12rem;
  right: calc(100% - 16rem);
  width: 16rem;
  height: 1px;
  background-color: #0d417e;
  transition: 0.3s;
}
.header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li a:hover::before {
  width: 34rem;
  height: 2px;
}
.header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li a .en {
  color: #9ba7ba;
  white-space: nowrap;
}
.header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li a .jp {
  font-size: 1.6666666667vw;
  color: #1d2e4a;
  margin-top: 2rem;
  white-space: nowrap;
}
.header_menu .header_menu_area .header_menu_wrap .header_company {
  padding-top: 1.9791666667vw;
  display: flex;
  border-top: 1px solid #9ba7ba;
}
.header_menu .header_menu_area .header_menu_wrap .header_company .company_wrap {
  width: 26.0416666667vw;
}
.header_menu .header_menu_area .header_menu_wrap .header_company .company_wrap .address {
  line-height: 1.8;
  font-size: 15rem;
}
.header_menu .header_menu_area .header_menu_wrap .header_company .company_wrap .tel_wrap {
  margin-top: 30rem;
}
.header_menu .header_menu_area .header_menu_wrap .header_company .company_wrap .tel_wrap .tel_text {
  font-size: 14rem;
}
.header_menu .header_menu_area .header_menu_wrap .header_company .company_wrap .tel_wrap .tel {
  margin-top: 5rem;
  font-size: 20rem;
  padding-left: 20rem;
  position: relative;
}
.header_menu .header_menu_area .header_menu_wrap .header_company .company_wrap .tel_wrap .tel::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14rem;
  height: 15rem;
  background: url(../img/ico_tel.svg) no-repeat center top/contain;
}
.header_menu .header_menu_area .header_menu_wrap .header_company .company_wrap .tel_wrap .tel a {
  color: #1d2e4a;
}
.header_menu .header_menu_area .header_menu_wrap .header_company .company_menu ul li {
  font-size: 14rem;
}
.header_menu .header_menu_area .header_menu_wrap .header_company .company_menu ul li + li {
  margin-top: 12rem;
}
.header_menu .header_menu_area .header_menu_img {
  position: absolute;
  width: 25.5208333333vw;
  bottom: 0;
  right: -32.2916666667vw;
}

.top_mv {
  padding-top: 150rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top_mv::before {
  position: absolute;
  content: "";
  display: block;
  top: -100rem;
  right: -350rem;
  transform: rotate(-47deg);
  width: 1000rem;
  height: 1000rem;
  background-color: #1d2e4a;
  z-index: -1;
}
.top_mv .mv_wrap .text_wrap {
  position: absolute;
  bottom: 10.4166666667vw;
  right: 0;
  background-color: #1d2e4a;
  width: 43.3333333333vw;
  height: 18.2291666667vw;
  color: #fff;
  padding-top: 2.0833333333vw;
  padding-left: 4.4270833333vw;
  z-index: 3;
  opacity: 0;
  transform: translateX(100%);
  transition: 1s;
}
.top_mv .mv_wrap .text_wrap.mv_in {
  transform: translateX(0);
  opacity: 1;
}
.top_mv .mv_wrap .text_wrap h2 {
  font-size: 3.5416666667vw;
  line-height: 1.5;
  letter-spacing: 0.15em;
}
.top_mv .mv_wrap .text_wrap p {
  font-size: 1.25vw;
  margin-top: 1.0416666667vw;
  letter-spacing: 0.2em;
}
.top_mv .mv_wrap .swiper_wrap {
  width: 100%;
  position: relative;
}
.top_mv .mv_wrap .swiper_wrap::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
  z-index: 2;
}
.top_mv .mv_wrap .swiper_wrap .img_wrap {
  transform: scale(1.25);
}
.top_mv .mv_wrap .swiper_wrap .img_wrap img {
  width: 100%;
  height: calc(100vh - 150rem);
  -o-object-fit: cover;
     object-fit: cover;
}
.top_mv .mv_wrap .swiper_wrap .swiper-slide-active .img_wrap,
.top_mv .mv_wrap .swiper_wrap .swiper-slide-prev .img_wrap,
.top_mv .mv_wrap .swiper_wrap .swiper-slide-duplicate-active .img_wrap {
  animation: zoom_out 12s linear 0s normal both;
}

.top_lead {
  padding-top: 115rem;
  padding-bottom: 85rem;
  text-align: center;
  color: #fff;
  background: url(../img/ph_top_lead.jpg) no-repeat center top/cover;
  position: relative;
  z-index: 1;
}
.top_lead::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1d2e4a;
  opacity: 0.9;
  z-index: -1;
}
.top_lead h3 {
  font-size: 30rem;
  letter-spacing: 0.1em;
}
.top_lead .text {
  font-size: 15rem;
  margin-top: 50rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.top_lead .text + .text {
  margin-top: 35rem;
}
.top_lead .btn_more {
  margin-top: 85rem;
}
.top_lead .btn_more a {
  width: 430rem;
  height: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.common_tit {
  color: #0d417e;
  letter-spacing: 0.2em;
  opacity: 1;
  transform: translateY(0);
}
.common_tit .tit_wrap h2 {
  font-size: 22rem;
  opacity: 0;
  transform: translateY(50rem);
  transition: 1s;
}
.common_tit .tit_wrap .en {
  font-size: 52rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(50rem);
  transition: 1s;
  transition-delay: 0.3s;
}
.common_tit .tit_wrap .border {
  margin-top: 30rem;
  background-color: #0d417e;
  width: 40rem;
  height: 2rem;
  opacity: 0;
  transform: translateX(-30rem);
  transition: 1s;
  transition-delay: 0.6s;
}
.common_tit.in .tit_wrap h2 {
  opacity: 1;
  transform: translateY(0);
}
.common_tit.in .tit_wrap .en {
  opacity: 1;
  transform: translateY(0);
}
.common_tit.in .tit_wrap .border {
  opacity: 1;
  transform: translateX(0);
}

.top_news {
  padding-top: 105rem;
  padding-bottom: 105rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top_news::before {
  position: absolute;
  content: "";
  display: block;
  top: -270rem;
  left: -900rem;
  transform: rotate(50deg);
  width: 2500rem;
  height: 1250rem;
  background-color: #f3f3f3;
  z-index: -1;
}
.top_news .news_wrap {
  display: flex;
  justify-content: center;
}
.top_news .news_wrap .news_tit {
  width: 250rem;
}
.top_news .news_wrap .news_tit .btn_more {
  margin-top: 125rem;
}
.top_news .news_wrap .news_tit .btn_more a {
  width: 200rem;
  height: 50rem;
}
.top_news .news_wrap .content_wrap {
  width: 750rem;
  padding-left: 90rem;
  padding-top: 68rem;
  padding-bottom: 68rem;
  position: relative;
}
.top_news .news_wrap .content_wrap::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 1070rem;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
.top_news .news_wrap .content_wrap dl .dl_wrap {
  width: 653rem;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10rem;
}
.top_news .news_wrap .content_wrap dl .dl_wrap + .dl_wrap {
  margin-top: 68rem;
}
.top_news .news_wrap .content_wrap dl .dl_wrap dt {
  font-size: 15rem;
}
.top_news .news_wrap .content_wrap dl .dl_wrap dt a {
  color: #0d417e;
}
.top_news .news_wrap .content_wrap dl .dl_wrap dd {
  margin-top: 12rem;
}
.top_news .news_wrap .content_wrap dl .dl_wrap dd a {
  color: #333333;
}

.top_colum {
  background-color: rgba(29, 46, 74, 0.95);
  padding-top: 80rem;
  padding-bottom: 105rem;
  padding-left: calc(9.375vw - 25rem);
}
.top_colum .common_tit {
  padding-left: 25rem;
}
.top_colum .common_tit .tit_wrap h2 {
  color: #fff;
}
.top_colum .common_tit .tit_wrap .en {
  color: #fff;
}
.top_colum .common_tit .tit_wrap .border {
  background-color: #fff;
}
.top_colum .swiper_wrap {
  margin-top: 45rem;
  position: relative;
}
.top_colum .swiper_wrap .swiper-slide {
  width: 410rem;
  padding-left: 25rem;
  padding-right: 25rem;
}
.top_colum .swiper_wrap .swiper-slide .slide_wrap .category_area {
  margin-top: 15rem;
  display: flex;
  gap: 12rem;
}
.top_colum .swiper_wrap .swiper-slide .slide_wrap .category_area .date {
  color: #fff;
  line-height: 1.4;
}
.top_colum .swiper_wrap .swiper-slide .slide_wrap .category_area .category_wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
}
.top_colum .swiper_wrap .swiper-slide .slide_wrap .category_area .category_wrap ul li {
  color: #232836;
  font-size: 12rem;
  padding: 2rem 20rem;
  background-color: #fff;
}
.top_colum .swiper_wrap .swiper-slide .slide_wrap .category_area .category_wrap ul li.tag {
  background-color: #cad0e1;
}
.top_colum .swiper_wrap .swiper-slide .slide_wrap .category_area .category_wrap ul li.tag.tag {
  background-color: #cad0e1;
}
.top_colum .swiper_wrap .swiper-slide .slide_wrap .category_area .category_wrap ul li.tag.tag span {
  display: inline-block;
}
.top_colum .swiper_wrap .swiper-slide .slide_wrap .category_area .category_wrap ul li.tag.tag span + span {
  padding-left: 1em;
  position: relative;
}
.top_colum .swiper_wrap .swiper-slide .slide_wrap .category_area .category_wrap ul li.tag.tag span + span::before {
  position: absolute;
  content: "・";
  display: block;
  top: 0;
  left: 0;
}
.top_colum .swiper_wrap .swiper-slide .slide_wrap .img_wrap img {
  width: 360rem;
  height: 213rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_colum .swiper_wrap .swiper-slide .slide_wrap .text {
  margin-top: 15rem;
}
.top_colum .swiper_wrap .swiper-slide .slide_wrap .text a {
  color: #fff;
}
.top_colum .swiper_wrap .swiper-button-next {
  width: 80rem;
  height: 50rem;
  top: -115rem;
  left: 50%;
  transform: translateX(280rem);
  transition: 0.3s;
}
.top_colum .swiper_wrap .swiper-button-next::after {
  content: "";
  width: 80rem;
  height: 50rem;
  background: url(../img/ico_arrow.svg) no-repeat center top/contain;
}
.top_colum .swiper_wrap .swiper-button-next:hover {
  transform: translateX(290rem);
}
.top_colum .btn_more {
  margin-top: 80rem;
}
.top_colum .btn_more a {
  width: 350rem;
  height: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.top_reason {
  padding-top: 100rem;
  padding-bottom: 160rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top_reason::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(-47deg);
  width: 2904rem;
  height: 1242rem;
  background-color: #f3f3f3;
  z-index: -1;
}
.top_reason h2 {
  font-size: 30rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: #0d417e;
  padding: 15rem 22rem;
  border-top: 1px solid #0d417e;
  border-bottom: 1px solid #0d417e;
  letter-spacing: 0.15em;
}
.top_reason .flex_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 95rem;
}
.top_reason .flex_wrap + .flex_wrap {
  margin-top: 85rem;
}
.top_reason .flex_wrap .img_wrap {
  width: 435rem;
}
.top_reason .flex_wrap .tit_wrap {
  color: #0d417e;
}
.top_reason .flex_wrap .tit_wrap .number {
  font-size: 20rem;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(50rem);
  transition: 1s;
  transition-delay: 0.6s;
}
.top_reason .flex_wrap .tit_wrap .number span {
  font-size: 34rem;
  font-style: italic;
}
.top_reason .flex_wrap .tit_wrap h3 {
  font-size: 22rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(50rem);
  transition: 1s;
  transition-delay: 0.9s;
}
.top_reason .flex_wrap .text_area {
  width: 490rem;
  opacity: 1;
  transform: translateY(0);
}
.top_reason .flex_wrap .text_area .text_wrap {
  margin-top: 15rem;
  line-height: 1.6;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(50rem);
  transition: 1s;
  transition-delay: 1.2s;
  font-size: 15rem;
}
.top_reason .flex_wrap .text_area.in .tit_wrap .number {
  opacity: 1;
  transform: translateY(0);
}
.top_reason .flex_wrap .text_area.in .tit_wrap h3 {
  opacity: 1;
  transform: translateY(0);
}
.top_reason .flex_wrap .text_area.in .text_wrap {
  opacity: 1;
  transform: translateY(0);
}
.top_reason .flex_wrap.reverse {
  flex-direction: row-reverse;
}
.top_reason .flex_wrap.reverse .img_wrap {
  text-align: right;
}

.top_service {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
  padding-top: 80rem;
  padding-bottom: 100rem;
  background: url(../img/bg_top_service.jpg) no-repeat center top/cover;
}
.top_service::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1d2e4a;
  opacity: 0.7;
  z-index: -1;
}
.top_service .service_tit .tit_wrap .en {
  font-size: 52rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.top_service .service_tit .tit_wrap .jp {
  font-size: 24rem;
  letter-spacing: 0.1em;
}
.top_service .service_lead {
  margin-top: 30rem;
}
.top_service .service_flex {
  margin-top: 45rem;
  display: flex;
  width: 900rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}
.top_service .service_flex .box a {
  display: block;
  color: #fff;
  width: 420rem;
  height: 230rem;
  border: 1px solid #fff;
  padding-top: 54rem;
  position: relative;
}
.top_service .service_flex .box a::before {
  position: absolute;
  content: "";
  display: block;
  bottom: 20rem;
  left: 50%;
  transform: translate(-50%);
  width: 78rem;
  height: 7rem;
  background: url(../img/ico_arrow02.svg) no-repeat center top/contain;
  transition: 0.3s;
}
.top_service .service_flex .box a:hover::before {
  transform: translate(-30%);
}
.top_service .service_flex .box .ico_wrap img {
  height: 80rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_service .service_flex .box p {
  font-size: 20rem;
  margin-top: 18rem;
}
.top_service .worries_wrap {
  padding-top: 70rem;
}
.top_service .worries_tit {
  font-size: 28rem;
  padding-top: 16rem;
  padding-bottom: 16rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding-left: 15rem;
  padding-right: 15rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.2em;
}
.top_service .worries {
  margin-top: 40rem;
}
.top_service .worries .worries_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20rem 40rem;
  width: 900rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  opacity: 1;
  transform: translateY(0);
}
.top_service .worries .worries_flex .box {
  width: 270rem;
  height: 270rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18rem;
  color: #fff;
  opacity: 0;
  transition: 1s;
  transform: translateY(50rem);
  letter-spacing: 0;
  border: 2rem dotted #fff;
}
.top_service .worries .worries_flex .box:nth-child(2) {
  transition-delay: 0.3s;
}
.top_service .worries .worries_flex .box:nth-child(3) {
  transition-delay: 0.6s;
}
.top_service .worries .worries_flex .box:nth-child(4) {
  transition-delay: 0.9s;
}
.top_service .worries .worries_flex .box:nth-child(5) {
  transition-delay: 1.2s;
}
.top_service .worries .worries_flex .box:nth-child(6) {
  transition-delay: 1.5s;
}
.top_service .worries .worries_flex.in .box {
  opacity: 1;
  transform: translateY(0);
}
.top_service .worries_text {
  font-size: 15rem;
  margin-top: 50rem;
  line-height: 1.8;
}
.top_service .btn_more {
  margin-top: 42rem;
}
.top_service .btn_more a {
  width: 430rem;
  height: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.top_recruit {
  padding-top: 90rem;
  padding-bottom: 90rem;
  background-color: #f3f3f3;
}
.top_recruit .flex_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top_recruit .flex_wrap .text_wrap {
  width: 380rem;
}
.top_recruit .flex_wrap .text_wrap .recruit_text {
  margin-top: 50rem;
  font-size: 15rem;
  letter-spacing: 0;
}
.top_recruit .flex_wrap .text_wrap .btn_more {
  margin-top: 62rem;
}
.top_recruit .flex_wrap .text_wrap .btn_more a {
  height: 50rem;
}
.top_recruit .flex_wrap .img_flex {
  display: flex;
  gap: 22rem;
}
.top_recruit .flex_wrap .img_flex .img_wrap {
  width: 255rem;
}
.top_recruit .flex_wrap .img_flex .img_wrap img {
  border-radius: 10rem;
}

.footer_contact {
  padding-top: 75rem;
  padding-bottom: 75rem;
  background: url(../img/bg_top_contact.jpg) no-repeat center top/cover;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.footer_contact::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0d417e;
  opacity: 0.9;
  z-index: -1;
}
.footer_contact .contact_tit h2 {
  font-size: 20rem;
  letter-spacing: 0.15em;
}
.footer_contact .contact_tit .en {
  font-size: 58rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.footer_contact .contact_text {
  font-size: 15rem;
  margin-top: 25rem;
}
.footer_contact .btn_more {
  margin-top: 25rem;
}
.footer_contact .btn_more a {
  width: 430rem;
  height: 80rem;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  color: #1d2e4a;
}
.footer_contact .btn_more a:hover {
  color: #fff;
}
.footer_contact .tel_wrap {
  margin-top: 38rem;
}
.footer_contact .tel_wrap .tel_text {
  font-size: 15rem;
  letter-spacing: 0.1em;
}
.footer_contact .tel_wrap .tel {
  font-size: 24rem;
  letter-spacing: 0.15em;
}
.footer_contact .tel_wrap .tel span {
  font-size: 40rem;
}
.footer_contact .tel_wrap .tel_time {
  font-size: 13rem;
}
.footer_contact.under_contact {
  background: url(../img/ph_contact_under.jpg) no-repeat center top/cover;
  padding-bottom: 120rem;
}
.footer_contact.under_contact .contact_tit h2 {
  font-size: 22rem;
  letter-spacing: 0.15em;
}
.footer_contact.under_contact .contact_tit .en {
  font-size: 64rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
}
.footer_contact.under_contact .contact_text {
  font-size: 15rem;
  margin-top: 32rem;
}
.footer_contact.under_contact .flex_under {
  display: flex;
  justify-content: space-between;
  margin-top: 50rem;
}
.footer_contact.under_contact .flex_under .box {
  width: 470rem;
  height: 283rem;
  background-color: #fff;
  border-radius: 10rem;
  text-align: center;
  padding-top: 30rem;
  color: #333333;
}
.footer_contact.under_contact .flex_under .box .ico_wrap img {
  width: 63rem;
}
.footer_contact.under_contact .flex_under .box .tel_wrap {
  margin-top: 0;
}
.footer_contact.under_contact .flex_under .box .tel_wrap .tel_text {
  margin-top: 15rem;
  font-size: 20rem;
  letter-spacing: 0.1em;
}
.footer_contact.under_contact .flex_under .box .tel_wrap .tel {
  font-size: 24rem;
  letter-spacing: 0.15em;
}
.footer_contact.under_contact .flex_under .box .tel_wrap .tel span {
  font-size: 40rem;
}
.footer_contact.under_contact .flex_under .box .tel_wrap .tel_time {
  font-size: 15rem;
  margin-top: 4rem;
  letter-spacing: 0.05em;
}
.footer_contact.under_contact .flex_under .box .mail_wrap .mail_text {
  margin-top: 15rem;
  font-size: 20rem;
  letter-spacing: 0.1em;
}
.footer_contact.under_contact .flex_under .box .btn_more {
  margin-top: 18rem;
}
.footer_contact.under_contact .flex_under .box .btn_more a {
  width: 337rem;
  height: 60rem;
  color: #fff;
  background-color: #0D417E;
  border: 1px solid #0D417E;
  letter-spacing: 0.05em;
}
.footer_contact.under_contact .flex_under .box .btn_more a::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  right: 22rem;
  transform: translateY(-50%);
  width: 28rem;
  height: 5rem;
  background: url(../img/ico_contact_arrow01.svg) no-repeat center top/contain;
  transition: 0.5s;
}
.footer_contact.under_contact .flex_under .box .btn_more a:hover {
  color: #0D417E;
}
.footer_contact.under_contact .flex_under .box .btn_more a:hover::before {
  background: url(../img/ico_contact_arrow02.svg) no-repeat center top/contain;
}

footer .footer_wrap {
  padding-top: 65rem;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
footer .footer_wrap .footer_company .logo_wrap p {
  color: #001280;
  font-size: 12rem;
}
footer .footer_wrap .footer_company .logo_wrap .img_wrap {
  margin-top: 18rem;
  width: 230rem;
}
footer .footer_wrap .footer_company .address {
  font-size: 15rem;
  margin-top: 40rem;
}
footer .footer_wrap .footer_company .address ul li + li {
  margin-top: 5rem;
}
footer .footer_wrap .footer_company .tel_wrap {
  margin-top: 35rem;
  color: #333333;
  font-size: 15rem;
}
footer .footer_wrap .footer_company .tel_wrap ul li {
  padding-left: 20rem;
  position: relative;
}
footer .footer_wrap .footer_company .tel_wrap ul li::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
footer .footer_wrap .footer_company .tel_wrap ul li.tel::before {
  width: 12rem;
  height: 12rem;
  background: url(../img/ico_tel.svg) no-repeat center top/contain;
}
footer .footer_wrap .footer_company .tel_wrap ul li.fax::before {
  width: 13rem;
  height: 13rem;
  background: url(../img/ico_fax.svg) no-repeat center top/contain;
}
footer .footer_wrap .footer_company .tel_wrap ul li + li {
  margin-top: 5rem;
}
footer .footer_wrap .footer_menu {
  display: flex;
  padding-top: 30rem;
  gap: 100rem;
}
footer .footer_wrap .footer_menu .menu_wrap {
  font-weight: 500;
}
footer .footer_wrap .footer_menu .menu_wrap dl .dl_wrap dt {
  font-size: 14rem;
}
footer .footer_wrap .footer_menu .menu_wrap dl .dl_wrap dt + dt {
  margin-top: 35rem;
}
footer .footer_wrap .footer_menu .menu_wrap dl .dl_wrap dd {
  margin-top: 20rem;
  padding-left: 22rem;
  font-size: 12rem;
  position: relative;
}
footer .footer_wrap .footer_menu .menu_wrap dl .dl_wrap dd::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10rem;
  height: 1px;
  background: #c0c0c0;
}
footer .footer_wrap .footer_menu .menu_wrap dl .dl_wrap dd + dd {
  margin-top: 15rem;
}
footer .footer_wrap .footer_menu .menu_wrap dl .dl_wrap + .dl_wrap dt {
  margin-top: 35rem;
}
footer .footer_bottom {
  margin-top: 125rem;
  padding-bottom: 90rem;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.03em;
}
footer .footer_bottom .copy {
  font-size: 12rem;
}
footer .footer_bottom .sub_menu ul {
  display: flex;
  gap: 50rem;
}
footer .footer_bottom .sub_menu ul li {
  font-size: 14rem;
}
footer .top_btn {
  position: fixed;
  right: 2%;
  bottom: 5%;
  z-index: 10;
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
}
footer .top_btn.in {
  opacity: 1;
  pointer-events: auto;
}
footer .top_btn img {
  width: 9rem;
}

.under_mv {
  margin-top: 150rem;
}
.under_mv .under_tit {
  letter-spacing: 0.25em;
  color: #0D417E;
}
.under_mv .under_tit .en {
  font-size: 64rem;
  opacity: 0;
  transition: 1s;
  transform: translateY(50rem);
}
.under_mv .under_tit .jp {
  font-size: 24rem;
  opacity: 0;
  transform: translateY(50rem);
  transition: 1s;
  transition-delay: 0.3s;
}
.under_mv .text_wrap {
  position: relative;
  line-height: 2;
}
.under_mv .text_wrap h2 {
  font-size: 32rem;
  color: #0D417E;
  opacity: 0;
  transform: translateY(50rem);
  transition: 1s;
  transition-delay: 0.9s;
}
.under_mv .text_wrap .text {
  margin-top: 55rem;
  font-size: 15rem;
  opacity: 0;
  transform: translateY(50rem);
  transition: 1s;
  transition-delay: 1.2s;
}
.under_mv .text_wrap .name {
  opacity: 0;
  transform: translateY(50rem);
  transition: 1s;
  transition-delay: 1.2s;
}
.under_mv .img_wrap {
  opacity: 0;
  transform: translateY(50rem);
  transition: 1s;
  transition-delay: 1.5s;
}
.under_mv .img_wrap img {
  filter: blur(15px);
  opacity: 0;
  transform: scale(1.1);
}
.under_mv.mv_in .under_tit .en,
.under_mv.mv_in .under_tit .jp {
  opacity: 1;
  transform: translateY(0);
}
.under_mv.mv_in .text_wrap h2,
.under_mv.mv_in .text_wrap .text,
.under_mv.mv_in .text_wrap .name {
  opacity: 1;
  transform: translateY(0);
}
.under_mv.mv_in .img_wrap {
  opacity: 1;
  transform: translateY(0);
}
.under_mv.mv_in .img_wrap img {
  filter: blur(0);
  opacity: 1;
  transition-delay: 0s, 1.5s, 1.5s;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  transition-duration: 1.2s;
  transition-property: opacity, filter, transform;
  transform: scale(1);
}

.under_common_tit {
  color: #1D2E4A;
  font-size: 32rem;
  letter-spacing: 0.2em;
  padding-bottom: 18rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.under_common_tit::before {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30rem;
  height: 1px;
  background-color: #1D2E4A;
}
.under_common_tit span {
  display: inline-block;
}

.not_found {
  padding-bottom: 80rem;
}
.not_found .btn_more a {
  width: 350rem;
  height: 50rem;
  margin: 0 auto;
}
@media screen and (max-width: 680px) {
  .not_found .btn_more a {
    width: 230rem;
    height: 40rem;
  }
}

@media screen and (min-width: 681px) {
  .sp_block {
    display: none !important;
  }
}
@media screen and (max-width: 1279px) {
  html {
    font-size: 0.0781860829vw;
  }
}
@media screen and (max-width: 1024px) {
  .top_mv .mv_wrap .swiper_wrap .img_wrap img {
    height: auto;
  }
}
@media screen and (max-width: 680px) {
  .sp_none {
    display: none !important;
  }
  html {
    font-size: 0.2666666667vw;
  }
  body {
    line-height: 1.6;
    font-size: 13rem;
    overflow: hidden;
  }
  img {
    width: 100%;
  }
  .inner {
    width: 345rem;
  }
  .s_inner {
    width: 345rem;
  }
  .mt_l {
    margin-top: 80rem;
  }
  .mt_m {
    margin-top: 40rem;
  }
  .mt_s {
    margin-top: 16rem;
  }
  .btn_more a {
    font-size: 13rem;
  }
  .main_content_area {
    display: block;
  }
  .main_content_area .main_content {
    width: 100%;
  }
  header {
    width: 100%;
    height: 55rem;
    position: fixed;
    overflow-y: hidden;
    background-color: transparent;
  }
  header .header_wrap {
    padding-top: 14rem;
    padding-bottom: 14rem;
    padding-left: 15rem;
    padding-right: 15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transition: 0.3s;
  }
  header .header_wrap.bg_in {
    background-color: #fff;
    box-shadow: 0px 5rem 5rem -5rem rgba(0, 0, 0, 0.2);
  }
  header .header_wrap.bg_in .hm_btn_wrap .hm_btn span {
    background-color: #1d2e4a;
  }
  header .logo_wrap {
    width: 27rem;
    min-width: 0;
    margin-left: 0;
  }
  header .hm_btn_wrap {
    margin-top: 0;
    margin-right: 0;
    width: 32rem;
    height: 16rem;
    border: 0;
    border-radius: 0;
  }
  header .hm_btn_wrap .hm_btn {
    width: 100%;
    height: 100%;
  }
  header .hm_btn_wrap .hm_btn span {
    background-color: #fff;
  }
  header .hm_btn_wrap .hm_btn span:nth-child(2) {
    width: 24rem;
    top: 8rem;
  }
  header .hm_btn_wrap.active span:nth-child(1) {
    top: 8rem;
    background-color: #1d2e4a;
  }
  header .hm_btn_wrap.active span:nth-child(3) {
    bottom: 8rem;
    background-color: #1d2e4a;
  }
  .header_menu {
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    padding-left: 85rem;
    padding-top: 75rem;
    padding-bottom: 100rem;
    border: 0;
  }
  .header_menu .btn_contact {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 30rem;
  }
  .header_menu .btn_contact a {
    width: 264rem;
    height: 80rem;
    color: #fff;
    padding-left: 30rem;
    background-color: #1d2e4a;
    font-size: 16rem;
  }
  .header_menu .btn_contact a::before {
    left: 30rem;
    width: 21rem;
    height: 14rem;
    background: url(../img/ico_mail.svg) no-repeat center top/contain;
  }
  .header_menu .header_menu_area {
    position: relative;
    width: 264rem;
  }
  .header_menu .header_menu_area .header_menu_wrap .menu_wrap {
    display: block;
    padding-bottom: 0;
  }
  .header_menu .header_menu_area .header_menu_wrap .menu_wrap ul + ul {
    margin-top: 27rem;
  }
  .header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li {
    padding-right: 0;
  }
  .header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li + li {
    margin-top: 27rem;
  }
  .header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li a {
    padding-left: 40rem;
  }
  .header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li a::before {
    top: 8rem;
    right: auto;
    left: 0;
    width: 11rem;
  }
  .header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li a:hover::before {
    width: 15rem;
    height: 2px;
  }
  .header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li a .en {
    font-size: 11rem;
  }
  .header_menu .header_menu_area .header_menu_wrap .menu_wrap ul li a .jp {
    font-size: 18rem;
  }
  .header_menu .header_menu_area .header_menu_wrap .header_company {
    padding-top: 0;
    display: block;
    border-top: 0;
  }
  .header_menu .header_menu_area .header_menu_wrap .header_company .company_menu {
    margin-top: 22rem;
  }
  .header_menu .header_menu_area .header_menu_wrap .header_company .company_menu ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5rem;
  }
  .header_menu .header_menu_area .header_menu_wrap .header_company .company_menu ul li + li {
    margin-top: 0;
  }
  .top_mv {
    height: 100svh;
    padding-top: 80rem;
  }
  .top_mv::before {
    position: absolute;
    content: "";
    display: block;
    top: -100rem;
    right: -310rem;
    transform: rotate(-43deg);
    width: 400rem;
    height: 500rem;
    background-color: #1d2e4a;
    z-index: -1;
  }
  .top_mv .mv_wrap {
    position: relative;
    height: 100%;
  }
  .top_mv .mv_wrap .text_wrap {
    bottom: 75rem;
    width: 232rem;
    height: 140rem;
    padding-top: 20rem;
    padding-bottom: 12rem;
    padding-left: 40rem;
  }
  .top_mv .mv_wrap .text_wrap h2 {
    font-size: 21rem;
    letter-spacing: 0.15em;
  }
  .top_mv .mv_wrap .text_wrap p {
    font-size: 10rem;
    margin-top: 8rem;
    letter-spacing: 0.25em;
  }
  .top_mv .mv_wrap .mv_tit_sp {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding-left: 14rem;
    padding-right: 14rem;
    background-color: #fff;
    font-size: 18rem;
    color: #001783;
    letter-spacing: 0.5em;
    writing-mode: vertical-rl;
    padding-top: 45rem;
    z-index: 3;
  }
  .top_mv .mv_wrap .mv_tit_sp p {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .top_mv .mv_wrap .swiper_wrap {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .top_mv .mv_wrap .swiper_wrap .swiper {
    height: 100%;
  }
  .top_mv .mv_wrap .swiper_wrap .img_wrap {
    height: 100%;
  }
  .top_mv .mv_wrap .swiper_wrap .img_wrap img {
    width: auto;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top_lead {
    padding-top: 50rem;
    padding-bottom: 60rem;
    background: url(../img/ph_top_lead_sp.jpg) no-repeat center top/cover;
  }
  .top_lead h3 {
    font-size: 23rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
  }
  .top_lead .text {
    font-size: 13rem;
    margin-top: 20rem;
  }
  .top_lead .text + .text {
    margin-top: 25rem;
  }
  .top_lead .btn_more {
    margin-top: 32rem;
  }
  .top_lead .btn_more a {
    width: 300rem;
    height: 42rem;
  }
  .common_tit {
    color: #0d417e;
    letter-spacing: 0.2em;
  }
  .common_tit .tit_wrap h2 {
    font-size: 13rem;
    line-height: 1.2;
  }
  .common_tit .tit_wrap .en {
    font-size: 36rem;
    line-height: 1.2;
  }
  .common_tit .tit_wrap .border {
    margin-top: 12rem;
    background-color: #0d417e;
    width: 27rem;
    height: 2rem;
  }
  .top_news {
    padding-top: 55rem;
    padding-bottom: 60rem;
    padding-left: 15rem;
  }
  .top_news::before {
    position: absolute;
    content: "";
    display: block;
    top: 110rem;
    left: -350rem;
    transform: rotate(-141deg);
    width: 920rem;
    height: 570rem;
    background-color: #f3f3f3;
    z-index: -1;
  }
  .top_news .news_wrap {
    display: block;
    width: 100%;
  }
  .top_news .news_wrap .news_tit {
    width: auto;
  }
  .top_news .news_wrap .content_wrap {
    width: 100%;
    padding-left: 17rem;
    padding-top: 60rem;
    padding-bottom: 60rem;
    background-color: rgba(255, 255, 255, 0.7);
    margin-top: 25rem;
  }
  .top_news .news_wrap .content_wrap::before {
    display: none;
  }
  .top_news .news_wrap .content_wrap dl .dl_wrap {
    width: 310rem;
    padding-bottom: 12rem;
  }
  .top_news .news_wrap .content_wrap dl .dl_wrap + .dl_wrap {
    margin-top: 40rem;
  }
  .top_news .news_wrap .content_wrap dl .dl_wrap dt {
    font-size: 13rem;
  }
  .top_news .news_wrap .content_wrap dl .dl_wrap dd {
    margin-top: 5rem;
  }
  .top_news .btn_more {
    margin-top: 30rem;
  }
  .top_news .btn_more a {
    width: 230rem;
    height: 42rem;
    margin-left: auto;
    margin-right: auto;
  }
  .top_colum {
    padding-top: 58rem;
    padding-bottom: 60rem;
  }
  .top_colum .common_tit {
    padding-left: 15rem;
  }
  .top_colum .swiper_wrap {
    margin-top: 30rem;
    padding-left: 15rem;
  }
  .top_colum .swiper_wrap .swiper-slide {
    width: 270rem;
    padding-left: 0;
    padding-right: 0;
    margin-right: 25rem;
  }
  .top_colum .swiper_wrap .swiper-slide .slide_wrap .category_area {
    margin-top: 20rem;
    gap: 8rem;
  }
  .top_colum .swiper_wrap .swiper-slide .slide_wrap .category_area .category_wrap ul {
    gap: 8rem;
  }
  .top_colum .swiper_wrap .swiper-slide .slide_wrap .category_area .category_wrap ul li {
    font-size: 10rem;
    padding: 2rem 10rem;
  }
  .top_colum .swiper_wrap .swiper-slide .slide_wrap .img_wrap img {
    width: 270rem;
    height: 160rem;
  }
  .top_colum .swiper_wrap .swiper-button-next {
    width: auto;
    height: auto;
    top: -62rem;
    left: auto;
    right: 15rem;
    transform: none;
  }
  .top_colum .swiper_wrap .swiper-button-next::after {
    width: 50rem;
    height: 31rem;
  }
  .top_colum .swiper_wrap .swiper-button-next:hover {
    right: 10rem;
    transform: none;
  }
  .top_colum .btn_more {
    margin-top: 30rem;
  }
  .top_colum .btn_more a {
    width: 230rem;
    height: 40rem;
  }
  .top_reason {
    padding-top: 57rem;
    padding-bottom: 60rem;
  }
  .top_reason::before {
    top: 430rem;
    left: -760rem;
    transform: translate(0) rotate(-48deg);
    width: 1800rem;
    height: 750rem;
  }
  .top_reason h2 {
    font-size: 21rem;
    padding: 15rem 0;
    text-align: center;
  }
  .top_reason .flex_wrap {
    display: block;
    margin-top: 20rem;
    width: 302rem;
    margin-left: auto;
    margin-right: auto;
  }
  .top_reason .flex_wrap + .flex_wrap {
    margin-top: 20rem;
  }
  .top_reason .flex_wrap .img_wrap {
    width: 100%;
    margin-top: 10rem;
  }
  .top_reason .flex_wrap .tit_wrap .number {
    transition-delay: 0s;
  }
  .top_reason .flex_wrap .tit_wrap .number.in {
    opacity: 1;
    transform: translateY(0);
  }
  .top_reason .flex_wrap .tit_wrap h3 {
    transition-delay: 0s;
  }
  .top_reason .flex_wrap .tit_wrap h3.in {
    opacity: 1;
    transform: translateY(0);
  }
  .top_reason .flex_wrap .tit_wrap .number {
    font-size: 14rem;
  }
  .top_reason .flex_wrap .tit_wrap .number span {
    font-size: 24rem;
  }
  .top_reason .flex_wrap .tit_wrap h3 {
    font-size: 16rem;
    margin-top: 0;
    letter-spacing: 0.08em;
  }
  .top_reason .flex_wrap .text_area {
    width: 100%;
    margin-top: 10rem;
  }
  .top_reason .flex_wrap .text_area .text_wrap {
    margin-top: 0;
    line-height: 1.6;
    letter-spacing: 0.05em;
    transition-delay: 0s;
  }
  .top_reason .flex_wrap .text_area .text_wrap.in {
    opacity: 1;
    transform: translateY(0);
  }
  .top_service {
    padding-top: 55rem;
    padding-bottom: 57rem;
    background: url(../img/bg_top_service_sp.jpg) no-repeat center top/cover;
  }
  .top_service::before {
    opacity: 0.8;
  }
  .top_service .service_tit .tit_wrap .en {
    font-size: 36rem;
  }
  .top_service .service_tit .tit_wrap .jp {
    font-size: 13rem;
  }
  .top_service .service_lead {
    margin-top: 20rem;
    text-align: left;
    padding-left: 15rem;
    padding-right: 15rem;
  }
  .top_service .service_flex {
    margin-top: 30rem;
    width: 345rem;
    justify-content: space-between;
  }
  .top_service .service_flex .box a {
    width: 157rem;
    height: 115rem;
    padding-top: 18rem;
  }
  .top_service .service_flex .box a::before {
    bottom: 9rem;
    width: 39rem;
    height: 4rem;
  }
  .top_service .service_flex .box a:hover::before {
    transform: translate(-40%);
  }
  .top_service .service_flex .box .ico_wrap img {
    height: 39rem;
    width: auto;
  }
  .top_service .service_flex .box p {
    font-size: 15rem;
    margin-top: 8rem;
  }
  .top_service .worries_wrap {
    padding-top: 40rem;
  }
  .top_service .worries_tit {
    font-size: 18rem;
    padding-top: 10rem;
    padding-bottom: 10rem;
    padding-left: 10rem;
    padding-right: 10rem;
  }
  .top_service .worries {
    margin-top: 25rem;
  }
  .top_service .worries .worries_flex {
    flex-wrap: wrap;
    width: 332rem;
    gap: 9rem 16rem;
  }
  .top_service .worries .worries_flex .box {
    width: 157rem;
    height: 157rem;
    border: 1px dotted #fff;
    font-size: 12rem;
  }
  .top_service .worries_text {
    font-size: 13rem;
    margin-top: 20rem;
  }
  .top_service .btn_more {
    margin-top: 27rem;
  }
  .top_service .btn_more a {
    width: 265rem;
    height: 43rem;
  }
  .top_recruit {
    padding-top: 55rem;
    padding-bottom: 60rem;
  }
  .top_recruit .flex_wrap {
    display: block;
  }
  .top_recruit .flex_wrap .text_wrap {
    width: 345rem;
    margin-left: auto;
    margin-right: auto;
  }
  .top_recruit .flex_wrap .text_wrap .common_tit {
    text-align: center;
  }
  .top_recruit .flex_wrap .text_wrap .common_tit .tit_wrap .border {
    margin-left: auto;
    margin-right: auto;
  }
  .top_recruit .flex_wrap .text_wrap .recruit_text {
    margin-top: 25rem;
    font-size: 13rem;
  }
  .top_recruit .flex_wrap .text_wrap .btn_more {
    margin-top: 30rem;
  }
  .top_recruit .flex_wrap .text_wrap .btn_more a {
    width: 260rem;
    height: 43rem;
    margin-left: auto;
    margin-right: auto;
  }
  .top_recruit .flex_wrap .img_flex {
    justify-content: center;
    gap: 13rem;
    margin-top: 30rem;
  }
  .top_recruit .flex_wrap .img_flex .img_wrap {
    width: 143rem;
  }
  .top_recruit .flex_wrap .img_flex .img_wrap img {
    border-radius: 5rem;
  }
  .footer_contact {
    padding-top: 55rem;
    padding-bottom: 55rem;
    background: url(../img/bg_top_contact_sp.jpg) no-repeat center top/cover;
  }
  .footer_contact .contact_tit h2 {
    font-size: 13rem;
  }
  .footer_contact .contact_tit .en {
    font-size: 36rem;
    line-height: 1;
    margin-top: 5rem;
    letter-spacing: 0.05em;
  }
  .footer_contact .contact_text {
    font-size: 13rem;
    margin-top: 15rem;
    line-height: 1.8;
  }
  .footer_contact .btn_more {
    margin-top: 15rem;
  }
  .footer_contact .btn_more a {
    width: 305rem;
    height: 55rem;
  }
  .footer_contact .tel_wrap {
    margin-top: 25rem;
  }
  .footer_contact .tel_wrap .tel_text {
    font-size: 13rem;
    letter-spacing: 0.1em;
  }
  .footer_contact .tel_wrap .tel {
    font-size: 17rem;
    line-height: 1.7;
  }
  .footer_contact .tel_wrap .tel span {
    font-size: 25rem;
  }
  .footer_contact .tel_wrap .tel_time {
    font-size: 11rem;
  }
  .footer_contact.under_contact {
    background: url(../img/ph_contact_under_sp.jpg) no-repeat center top/cover;
    padding-top: 60rem;
    padding-bottom: 70rem;
  }
  .footer_contact.under_contact .contact_tit {
    margin-top: 0;
  }
  .footer_contact.under_contact .contact_tit h2 {
    font-size: 16rem;
    letter-spacing: 0.15em;
  }
  .footer_contact.under_contact .contact_tit .en {
    font-size: 39rem;
    letter-spacing: 0.15em;
    line-height: 1.3;
    margin-top: 0;
  }
  .footer_contact.under_contact .contact_text {
    font-size: 13rem;
    margin-top: 21rem;
  }
  .footer_contact.under_contact .flex_under {
    display: block;
    margin-top: 30rem;
  }
  .footer_contact.under_contact .flex_under .box {
    width: 325rem;
    margin-left: auto;
    margin-right: auto;
    height: 154rem;
    border-radius: 5rem;
    padding-top: 9rem;
  }
  .footer_contact.under_contact .flex_under .box .ico_wrap img {
    width: 38rem;
  }
  .footer_contact.under_contact .flex_under .box .tel_wrap {
    margin-top: 8rem;
  }
  .footer_contact.under_contact .flex_under .box .tel_wrap .tel_text {
    margin-top: 0;
    font-size: 15rem;
    letter-spacing: 0.1em;
  }
  .footer_contact.under_contact .flex_under .box .tel_wrap .tel {
    font-size: 15rem;
    letter-spacing: 0.15em;
  }
  .footer_contact.under_contact .flex_under .box .tel_wrap .tel span {
    font-size: 25rem;
  }
  .footer_contact.under_contact .flex_under .box .tel_wrap .tel_time {
    font-size: 11rem;
    margin-top: 0;
    letter-spacing: 0.05em;
  }
  .footer_contact.under_contact .flex_under .box .mail_wrap {
    margin-top: 8rem;
  }
  .footer_contact.under_contact .flex_under .box .mail_wrap .mail_text {
    margin-top: 0;
    font-size: 15rem;
    letter-spacing: 0.1em;
  }
  .footer_contact.under_contact .flex_under .box .btn_more {
    margin-top: 10rem;
  }
  .footer_contact.under_contact .flex_under .box .btn_more a {
    width: 275rem;
    padding-right: 10rem;
    font-size: 13rem;
  }
  .footer_contact.under_contact .flex_under .box .btn_more a::before {
    right: 13rem;
    width: 24rem;
    height: 4rem;
  }
  .footer_contact.under_contact .flex_under .box.mail_box {
    height: 167rem;
    margin-top: 17rem;
  }
  footer .footer_wrap {
    padding-top: 25rem;
    display: block;
  }
  footer .footer_wrap .footer_company .logo_wrap p {
    font-size: 10rem;
  }
  footer .footer_wrap .footer_company .logo_wrap .img_wrap {
    margin-top: 5rem;
    width: 170rem;
  }
  footer .footer_wrap .footer_company .address {
    font-size: 13rem;
    margin-top: 25rem;
  }
  footer .footer_wrap .footer_company .address ul li + li {
    margin-top: 3rem;
  }
  footer .footer_wrap .footer_company .tel_wrap {
    margin-top: 18rem;
    font-size: 13rem;
  }
  footer .footer_wrap .footer_company .tel_wrap ul li {
    padding-left: 15rem;
  }
  footer .footer_wrap .footer_company .tel_wrap ul li.tel::before {
    width: 9rem;
    height: 9rem;
  }
  footer .footer_wrap .footer_company .tel_wrap ul li.fax::before {
    width: 9rem;
    height: 9rem;
  }
  footer .footer_wrap .footer_company .tel_wrap ul li + li {
    margin-top: 3rem;
  }
  footer .footer_wrap .footer_menu {
    padding-top: 35rem;
    gap: 0;
    justify-content: space-between;
  }
  footer .footer_wrap .footer_menu .menu_wrap {
    min-width: 140rem;
  }
  footer .footer_wrap .footer_menu .menu_wrap ul li + li {
    margin-top: 20rem;
  }
  footer .footer_wrap .footer_menu .menu_wrap ul li.sub_menu {
    margin-top: 15rem;
  }
  footer .footer_bottom {
    margin-top: 30rem;
    padding-bottom: 32rem;
    display: block;
    letter-spacing: 0.08em;
  }
  footer .footer_bottom .copy {
    font-size: 9rem;
  }
  footer .top_btn img {
    width: 7rem;
  }
  .under_mv {
    margin-top: 90rem;
  }
  .under_mv .under_tit .en {
    font-size: 37rem;
  }
  .under_mv .under_tit .jp {
    font-size: 17rem;
  }
  .under_mv .text_wrap {
    line-height: 1.6;
  }
  .under_mv .text_wrap h2 {
    font-size: 20rem;
    line-height: 2;
  }
  .under_mv .text_wrap .text {
    margin-top: 25rem;
    font-size: 13rem;
  }
  .under_common_tit {
    font-size: 21rem;
    padding-bottom: 8rem;
    color: #0D417E;
  }
}
#page_about header .hm_btn_wrap .hm_btn span,
#page_service header .hm_btn_wrap .hm_btn span,
#page_news header .hm_btn_wrap .hm_btn span,
#page_column header .hm_btn_wrap .hm_btn span,
#page_recruit header .hm_btn_wrap .hm_btn span,
#page_faq header .hm_btn_wrap .hm_btn span,
#page_privacy header .hm_btn_wrap .hm_btn span,
#page_apply header .hm_btn_wrap .hm_btn span,
#page_contact header .hm_btn_wrap .hm_btn span,
#page_404 header .hm_btn_wrap .hm_btn span {
  background-color: #1D2E4A;
}

#page_about header,
#page_service header,
#page_news header,
#page_column header,
#page_recruit header,
#page_faq header,
#page_privacy header,
#page_apply header,
#page_contact header,
#page_404 header {
  box-shadow: 0px 5rem 5rem -5rem rgba(0, 0, 0, 0.2);
}
#page_about header .header_wrap,
#page_service header .header_wrap,
#page_news header .header_wrap,
#page_column header .header_wrap,
#page_recruit header .header_wrap,
#page_faq header .header_wrap,
#page_privacy header .header_wrap,
#page_apply header .header_wrap,
#page_contact header .header_wrap,
#page_404 header .header_wrap {
  background-color: #fff;
}

@keyframes zoom_out {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadein_text {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */