@charset "UTF-8";
html {
  font-size: 10px;
}

body,
td,
th,
input,
textarea {
  color: #000000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ W6", "Hiragino Kaku Gothic W6", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

body {
  overflow-wrap: break-word;
}

a {
  color: #000000;
  text-decoration: none;
  /*
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
  opacity: .80;
*/
}

a:hover {
  text-decoration: none;
}

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

.img_ck {
  font-size: 0.1rem;
  line-height: 0;
}

/* clearfix (micro) */
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

* {
  margin: 0;
  padding: 0;
  word-break: break-word;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

*::before, *::after {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
}

iframe {
  border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

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

input,
select,
textarea,
button {
  outline: none;
}

picture {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
img,
nav {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 769px), print {
  .show_sp {
    display: none !important;
  }
  .container {
    min-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
  }
  .row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  a[href^="tel"] {
    pointer-events: none;
    text-decoration: none;
    opacity: 1 !important;
    cursor: default !important;
  }
  a {
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
  }
  a:hover {
    opacity: 0.7;
  }
  .contents {
    overflow: hidden;
  }
  /*======= COMMON =========*/
  .ttl_section01 {
    text-align: center;
    margin-bottom: 60px;
  }
  .ttl_section01_en {
    display: block;
    font-size: 15rem;
    line-height: 150px;
    letter-spacing: 0.3em;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
  }
  .ttl_section01_en::first-letter {
    color: #fff;
  }
  .ttl_section01_ja {
    display: block;
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 600;
    color: #ea1020;
  }
  .ttl_section02 {
    text-align: center;
    margin-bottom: 45px;
  }
  .ttl_section02_en {
    display: block;
    font-size: 2rem;
    line-height: 1;
    color: #ea1020;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
  }
  .ttl_section02_ja {
    display: block;
    font-size: 2.9rem;
    line-height: 1;
    font-weight: 400;
    color: #0d59b9;
    font-family: "YumMincho", serif;
  }
  .btn_more {
    display: inline-block;
    font-size: 2rem;
    line-height: 1;
    color: #0d59b9;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    position: relative;
    padding-right: 22px;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out, -moz-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -moz-transform 0.3s ease-out;
  }
  .btn_more:hover {
    -webkit-transform: translateX(10px);
       -moz-transform: translateX(10px);
        -ms-transform: translateX(10px);
            transform: translateX(10px);
  }
  .btn_more:after {
    content: "";
    width: 18px;
    height: 6px;
    background: url("../img/top/arr_more.svg") no-repeat center center/contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    margin-top: -2px;
  }
  .btn_default {
    width: 212px;
    height: 53px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #e41d33;
    border: 1px solid #e41d33;
    background-color: #fff;
    -moz-border-radius: 100px;
         border-radius: 100px;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 700;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .btn_default:hover {
    background-color: #e41d33;
    color: #fff;
    opacity: 1;
  }
  .mainvisual {
    height: 405px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 1;
  }
  .mainvisual_ttl {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -webkit-calc((100% - 1200px) / 2);
    left: -moz-calc((100% - 1200px) / 2);
    left: calc((100% - 1200px) / 2);
    z-index: 4;
  }
  .mainvisual_ttl_ja {
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    display: block;
    font-family: "YumMincho", serif;
    color: #fff;
  }
  .mainvisual_ttl_en {
    font-size: 11rem;
    line-height: 1;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: #fff;
    display: block;
  }
  .mainvisual_ttl p {
    font-size: 1.8rem;
    color: #fff;
    margin-top: 30px;
  }
  .mainvisual_pic {
    height: 100%;
    width: 100%;
  }
  .mainvisual_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mw_wp_form .mw_wp_form_complete h4 {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .seo-title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .header {
    padding: 0 50px 0 0;
    -webkit-transition: all 0.4s cubic-bezier(0.53, 0.2, 0.25, 1);
    -moz-transition: all 0.4s cubic-bezier(0.53, 0.2, 0.25, 1);
    transition: all 0.4s cubic-bezier(0.53, 0.2, 0.25, 1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@media screen and (min-width: 769px) and (max-width: 1325px) {
  .header {
    padding: 0 20px;
  }
}

@media screen and (min-width: 769px), print {
  .header:after {
    content: "";
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(66%, transparent), to(#03003f));
    background: -webkit-linear-gradient(left, transparent 66%, #03003f 100%);
    background: -moz- oldlinear-gradient(left, transparent 66%, #03003f 100%);
    background: linear-gradient(90deg, transparent 66%, #03003f 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  .header.subpage {
    background: #0d59b9;
  }
  .header.subpage .nav_list > li > a {
    color: #fff;
  }
  .header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    min-width: 1200px;
    background: #0d59b9;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .header.fixed .nav_list > li > a {
    color: #fff;
  }
  .header_wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .header_logo a {
    display: inline-block;
  }
  .header_logo a img {
    width: 514px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1700px) {
  .header_logo a img {
    width: 374px;
  }
}

@media screen and (min-width: 769px), print {
  .header_right {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header_right_cta {
    margin-left: 30px;
  }
  .header_right_cta a {
    width: 230px;
    height: 50px;
    -moz-border-radius: 100px;
         border-radius: 100px;
    background-color: #e41d33;
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
}

@media screen and (min-width: 769px) and (max-width: 1325px) {
  .header_right_cta a {
    width: 180px;
    height: 50px;
  }
}

@media screen and (min-width: 769px), print {
  .header_right_cta a:hover {
    border: 1px solid #e41d33;
    background-color: #fff;
    color: #e41d33;
    opacity: 1;
  }
  .header_right_hostline {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 15px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1625px) {
  .header_right_hostline {
    display: none;
  }
}

@media screen and (min-width: 769px), print {
  .header_right_hostline_number {
    font-size: 3.5rem;
    line-height: 1;
    color: #e41d33;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
    position: relative;
    padding-left: 45px;
  }
  .header_right_hostline_number:before {
    content: "";
    width: 38px;
    height: 24px;
    background: url("../img/icon_hostline_red.svg") no-repeat center center/contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
  .header_right_hostline_text {
    font-size: 1rem;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    color: #fff;
    -moz-font-feature-settings: "palt" 1;
         font-feature-settings: "palt" 1;
  }
  .header .nav_list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1325px) {
  .header .nav_list {
    gap: 26px;
  }
}

@media screen and (min-width: 769px), print {
  .header .nav_list > li:hover a {
    opacity: 1;
  }
  .header .nav_list > li:hover a:after {
    -webkit-transform: scale(1, 1);
       -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
            transform: scale(1, 1);
    opacity: 1;
  }
  .header .nav_list > li > a {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0;
    padding: 10px 0 30px;
    color: #fff;
    position: relative;
  }
  .header .nav_list > li > a:after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #e41d33;
    position: absolute;
    bottom: 2px;
    left: 0;
    -webkit-transform: scale(0, 1);
       -moz-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
            transform: scale(0, 1);
    opacity: 0;
    z-index: 15;
    transition: transform 0.4s cubic-bezier(0.53, 0.2, 0.25, 1), opacity 0.6s cubic-bezier(0.2, 0.12, 0.2, 1), -webkit-transform 0.4s cubic-bezier(0.53, 0.2, 0.25, 1);
  }
  .header .nav_list .evChild:hover .subNav {
    opacity: 1;
    visibility: inherit;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .header .nav_list .subNav {
    width: 100%;
    position: absolute;
    background-color: #fff;
    -moz-border-radius: 0 0 20px 20px;
         border-radius: 0 0 20px 20px;
    padding: 40px;
    top: 56px;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 100%;
    -webkit-transform: translateY(-20px);
       -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition-duration: 0.5s;
       -moz-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    translate: -50% 0;
    visibility: hidden;
    width: 100%;
    z-index: 9;
  }
  .header .nav_list .subNav_list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1325px) {
  .header .nav_list .subNav_list {
    gap: 25px;
  }
}

@media screen and (min-width: 769px), print {
  .header .nav_list .subNav_list li {
    width: -webkit-calc(100% / 5);
    width: -moz-calc(100% / 5);
    width: calc(100% / 5);
  }
  .header .nav_list .subNav_list li a {
    display: block;
    position: relative;
  }
  .header .nav_list .subNav_list li a:hover {
    opacity: 0.7;
  }
  .header .nav_list .subNav_list li a figure {
    display: block;
    -moz-border-radius: 4px;
         border-radius: 4px;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
  }
  .header .nav_list .subNav_list li a figure:after {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../img/gr_subNav.webp") no-repeat center center/100% 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header .nav_list .subNav_list li a figure img {
    width: 100%;
    height: auto;
  }
  .header .nav_list .subNav_list li a span {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 600;
    position: relative;
  }
}

@media screen and (min-width: 769px) and (max-width: 1325px) {
  .header .nav_list .subNav_list li a span {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 769px), print {
  .header .nav_list .subNav_list li a span:after {
    content: "＞";
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 600;
    color: #e41d33;
    display: inline-block;
    margin-left: 5px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1325px) {
  .header .nav_list .subNav_list li a span:after {
    font-size: 1.2rem;
    margin-left: 3px;
  }
}

@media screen and (min-width: 769px), print {
  .footer {
    background-color: #F1F5F8;
  }
  .footer_top {
    margin-bottom: 70px;
  }
  .footer_top .row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  .footer_top .logo_footer a {
    display: inline-block;
  }
  .footer_top .logo_footer a img {
    width: 435px;
  }
  .footer_top .l_nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    margin-right: 100px;
  }
  .footer_top .l_nav li a {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: bold;
  }
  .footer_top .footer_list {
    position: absolute;
    top: 30px;
    right: 0;
  }
  .footer_top .footer_list li:not(:last-child) {
    margin-bottom: 30px;
  }
  .footer_top .footer_list li a {
    display: inline-block;
  }
  .footer_top .footer_list li a img {
    width: 73px;
    height: auto;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out, -moz-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -moz-transform 0.3s ease-out;
  }
  .footer_top .footer_list li a:hover img {
    -webkit-transform: scale(1.05);
       -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
  .footer_bottom {
    padding-bottom: 40px;
  }
  .footer_bottom .row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
       -moz-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer_bottom h2 {
    font-size: 1.9rem;
    line-height: 1;
    font-family: "YumMincho", serif;
    margin-bottom: 20px;
  }
  .footer_bottom p {
    font-size: 1.4rem;
    line-height: 26px;
    font-weight: 400;
    font-family: "YumMincho", serif;
  }
  .footer_bottom p span {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 1.7rem;
  }
  .footer_bottom p span:before {
    content: "";
    width: 19px;
    height: 13px;
    background: url("../img/icon_hostline_black.svg") no-repeat center center/contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
  .footer_bottom .copyright {
    font-size: 1.1rem;
    margin-right: 100px;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 3.64583vw;
  }
  .show_pc {
    display: none !important;
  }
  .row {
    padding-left: 3.90625vw;
    padding-right: 3.90625vw;
  }
  .row_inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  a[href^="tel"] {
    text-decoration: none;
  }
  .contents {
    overflow: hidden;
  }
  /*======= COMMON =========*/
  .ttl_section01 {
    text-align: center;
    margin-bottom: 7.8125vw;
  }
  .ttl_section01_en {
    display: block;
    font-size: 15.625vw;
    line-height: 1;
    letter-spacing: 0.2em;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
  }
  .ttl_section01_en::first-letter {
    color: #fff;
  }
  .ttl_section01_ja {
    display: block;
    font-size: 5.20833vw;
    line-height: 1;
    font-weight: 600;
    color: #ea1020;
  }
  .ttl_section02 {
    text-align: center;
    margin-bottom: 6.51042vw;
  }
  .ttl_section02_en {
    display: block;
    font-size: 4.94792vw;
    line-height: 1;
    color: #ea1020;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    margin-bottom: 1.95313vw;
  }
  .ttl_section02_ja {
    display: block;
    font-size: 6.25vw;
    line-height: 7.8125vw;
    font-weight: 400;
    color: #0d59b9;
    font-family: "YumMincho", serif;
  }
  .btn_more {
    display: inline-block;
    font-size: 4.16667vw;
    line-height: 1;
    color: #0d59b9;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    position: relative;
    padding-right: 4.55729vw;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out, -moz-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -moz-transform 0.3s ease-out;
  }
  .btn_more:after {
    content: "";
    width: 3.90625vw;
    height: 1.04167vw;
    background: url("../img/top/arr_more.svg") no-repeat center center/contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    margin-top: -0.39063vw;
  }
  .mainvisual {
    height: 58.59375vw;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 1;
  }
  .mainvisual_ttl {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 3.90625vw;
    z-index: 4;
  }
  .mainvisual_ttl_ja {
    font-size: 5.85938vw;
    line-height: 1;
    font-weight: 600;
    display: block;
    color: #fff;
    font-family: "YumMincho", serif;
  }
  .mainvisual_ttl_en {
    font-size: 14.32292vw;
    line-height: 1;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    color: #fff;
    display: block;
  }
  .mainvisual_ttl p {
    color: #fff;
    font-size: 3.90625vw;
    margin-top: 9.11458vw;
  }
  .mainvisual_pic {
    height: 100%;
  }
  .mainvisual_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .seo-title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .toppage {
    padding: 0 !important;
  }
  .toppage .header {
    position: absolute;
    top: 0;
    left: 0 !important;
    width: 100%;
    visibility: visible;
  }
  .header {
    position: relative;
    -webkit-transition: all 0.4s cubic-bezier(0.53, 0.2, 0.25, 1);
    -moz-transition: all 0.4s cubic-bezier(0.53, 0.2, 0.25, 1);
    transition: all 0.4s cubic-bezier(0.53, 0.2, 0.25, 1);
    z-index: 999;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    height: 15.36458vw;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #F3F9FD;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .header.mask:before {
    opacity: 1;
  }
  .header.mask:after {
    opacity: 1;
  }
  .header_wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .header_left {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 82.68229vw;
  }
  .header_right {
    width: -webkit-calc(100% - 82.68229vw);
    width: -moz-calc(100% - 82.68229vw);
    width: calc(100% - 82.68229vw);
    height: 15.625vw;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #EA1020;
  }
  .header_logo a {
    display: inline-block;
  }
  .header_logo a img {
    width: 82.68229vw;
  }
  .header .icon_nav {
    width: 8.59375vw;
    height: 4.16667vw;
    position: relative;
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    cursor: pointer;
    z-index: 100;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .icon_nav span {
    display: block;
    position: absolute;
    height: 2px;
    width: 8.59375vw;
    background: #0D59B9;
    -moz-border-radius: 9px;
         border-radius: 9px;
    opacity: 1;
    left: 50%;
    -webkit-transform: translate(0, -50%) rotate(0deg);
       -moz-transform: translate(0, -50%) rotate(0deg);
        -ms-transform: translate(0, -50%) rotate(0deg);
            transform: translate(0, -50%) rotate(0deg);
    -webkit-transition: margin 0.4s 0.4s, opacity 0.4s, -webkit-transform 0.4s;
    transition: margin 0.4s 0.4s, opacity 0.4s, -webkit-transform 0.4s;
    -moz-transition: margin 0.4s 0.4s, transform 0.4s, opacity 0.4s, -moz-transform 0.4s;
    transition: margin 0.4s 0.4s, transform 0.4s, opacity 0.4s;
    transition: margin 0.4s 0.4s, transform 0.4s, opacity 0.4s, -webkit-transform 0.4s, -moz-transform 0.4s;
  }
  .header .icon_nav span:nth-child(1) {
    margin-top: -3.64583vw;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header .icon_nav span:nth-child(2) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header .icon_nav span:nth-child(3) {
    margin-top: 3.64583vw;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header .icon_nav.open span:nth-child(1) {
    margin-top: 0;
    -webkit-transform: translateX(-50%) rotate(30deg);
       -moz-transform: translateX(-50%) rotate(30deg);
        -ms-transform: translateX(-50%) rotate(30deg);
            transform: translateX(-50%) rotate(30deg);
    -webkit-transition: margin 0.4s, opacity 0.4s, -webkit-transform 0.4s 0.4s;
    transition: margin 0.4s, opacity 0.4s, -webkit-transform 0.4s 0.4s;
    -moz-transition: margin 0.4s, transform 0.4s 0.4s, opacity 0.4s, -moz-transform 0.4s 0.4s;
    transition: margin 0.4s, transform 0.4s 0.4s, opacity 0.4s;
    transition: margin 0.4s, transform 0.4s 0.4s, opacity 0.4s, -webkit-transform 0.4s 0.4s, -moz-transform 0.4s 0.4s;
  }
  .header .icon_nav.open span:nth-child(2) {
    opacity: 0;
  }
  .header .icon_nav.open span:nth-child(3) {
    margin-top: 0;
    -webkit-transform: translateX(-50%) rotate(-30deg);
       -moz-transform: translateX(-50%) rotate(-30deg);
        -ms-transform: translateX(-50%) rotate(-30deg);
            transform: translateX(-50%) rotate(-30deg);
    -webkit-transition: margin 0.4s, opacity 0.4s, -webkit-transform 0.4s 0.4s;
    transition: margin 0.4s, opacity 0.4s, -webkit-transform 0.4s 0.4s;
    -moz-transition: margin 0.4s, transform 0.4s 0.4s, opacity 0.4s, -moz-transform 0.4s 0.4s;
    transition: margin 0.4s, transform 0.4s 0.4s, opacity 0.4s;
    transition: margin 0.4s, transform 0.4s 0.4s, opacity 0.4s, -webkit-transform 0.4s 0.4s, -moz-transform 0.4s 0.4s;
  }
  .header .nav {
    background-color: #F1F5F8;
    padding: 23.4375vw 3.90625vw 9.76563vw;
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.35s linear;
    -moz-transition: all 0.35s linear;
    transition: all 0.35s linear;
    overflow-y: scroll;
  }
  .header .nav.open {
    opacity: 1;
    visibility: visible;
  }
  .header .nav_list {
    padding: 0 2.60417vw;
  }
  .header .nav_list > li.evChild.open a .arr:after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
       -moz-transform: translate(-50%, -50%) rotate(90deg);
        -ms-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .header .nav_list > li > a {
    min-height: 14.32292vw;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 4.6875vw;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    padding: 0 2.60417vw;
    position: relative;
    color: #06408B;
  }
  .header .nav .btn_cta a {
    width: 62.5vw;
    height: 15.625vw;
    -moz-border-radius: 100px;
         border-radius: 100px;
    background-color: #e41d33;
    font-size: 3.90625vw;
    line-height: 1;
    color: #fff;
    font-weight: 700;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 10.41667vw auto 0;
  }
  .footer {
    background-color: #F1F5F8;
    position: relative;
  }
  .footer_top {
    margin-bottom: 70px;
  }
  .footer_top .logo_footer {
    margin-left: -3.90625vw;
    margin-bottom: 7.8125vw;
  }
  .footer_top .logo_footer a {
    display: inline-block;
  }
  .footer_top .logo_footer a img {
    width: 93.22917vw;
  }
  .footer_top .l_nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7.8125vw;
  }
  .footer_top .l_nav li a {
    font-size: 3.64583vw;
    line-height: 1;
    font-weight: bold;
  }
  .footer_top .footer_list {
    position: absolute;
    top: 28.38542vw;
    right: 3.90625vw;
  }
  .footer_top .footer_list li:not(:last-child) {
    margin-bottom: 30px;
  }
  .footer_top .footer_list li a {
    display: inline-block;
  }
  .footer_top .footer_list li a img {
    width: 15.23438vw;
    height: auto;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out, -moz-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -moz-transform 0.3s ease-out;
  }
  .footer_bottom {
    padding-bottom: 5.20833vw;
  }
  .footer_bottom .b_left {
    margin-bottom: 5.20833vw;
  }
  .footer_bottom h2 {
    font-size: 3.90625vw;
    line-height: 1;
    font-family: "YumMincho", serif;
    margin-bottom: 2.60417vw;
  }
  .footer_bottom p {
    font-size: 2.86458vw;
    line-height: 5.33854vw;
    font-weight: 400;
    font-family: "YumMincho", serif;
  }
  .footer_bottom p span {
    display: block;
    position: relative;
    padding-left: 4.94792vw;
    font-size: 3.51563vw;
  }
  .footer_bottom p span:before {
    content: "";
    width: 4.03646vw;
    height: 2.86458vw;
    background: url("../img/icon_hostline_black.svg") no-repeat center center/contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
  .footer_bottom .copyright {
    font-size: 1.82292vw;
  }
}

@-webkit-keyframes about-swiper {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-webkit-calc(-100% - 20px));
            transform: translateX(calc(-100% - 20px));
  }
}

@-moz-keyframes about-swiper {
  0% {
    -moz-transform: translateX(0);
         transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(-moz-calc(-100% - 20px));
         transform: translateX(calc(-100% - 20px));
  }
}

@keyframes about-swiper {
  0% {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-webkit-calc(-100% - 20px));
       -moz-transform: translateX(-moz-calc(-100% - 20px));
            transform: translateX(calc(-100% - 20px));
  }
}
