@charset "UTF-8";
/*=============================================*/
/*Font import */
/*=============================================*/
@import url(https://use.fontawesome.com/releases/v5.10.2/css/all.css);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Barlow:wght@600;800&display=swap);
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
    display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

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

li {
    list-style: none;
}

a,
a:link {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
    height: auto;
    vertical-align: bottom;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type="radio"]::-ms-check,
input[type="checkbox"]::-ms-check {
    display: none;
}

i {
    font-style: normal;
}

textarea {
    resize: none;
    font-family: sans-serif;
}

* {
    box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
    font-size: 62.5%;
    overflow: auto;
}

body {
    margin: auto;
    width: auto;
    font-family: 'Noto Sans JP', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -o-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a, b, dd, dt, li, p, span, td, th {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.2;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    color: #333;
}

@media screen and (max-width: 768px) {
    .pc_only {
        display: none !important;
    }
}

@media print, screen and (min-width: 769px) {
    .sp_only {
        display: none !important;
    }
}

.center {
    margin: auto;
    text-align: center;
    line-height: 180%;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.txt_base p {
    line-height: 2;
}

.txt_base p:not(:last-child) {
    margin-bottom: 1em;
}

.mb20 {
    margin-bottom: 20px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb60 {
    margin-bottom: 60px;
}

.tel_link span,
.tel_link a {
    color: inherit;
    font-size: 1em;
}

main:after {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    z-index: -10;
    width: 100vw;
    height: 100vh;
    background: url(../img/common/bg-img.jpg) no-repeat center/cover;
}

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main_width {
    width: calc(100% - 30px);
    max-width: 1200px;
    margin: auto;
}

.main_width.size1444 {
    max-width: 1444px;
}

section {
    padding: 80px 0;
}

/*=============================================*/
/*  layout                               */
/*=============================================*/
/********************************************/
/*header */
/********************************************/
header {
    padding: 30px 1% 15px 2%;
}

header .logo {
    width: 10%;
    max-width: 296px;
    margin-right: 3%;
    float: left;
}

header .main_nav {
    float: right;
    width: 77%;
    max-width: 1192px;
    margin-top: 13px;
}

.nav_list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.nav_list > li {
    position: relative;
    min-width: 160px;
}

.nav_list > li a {
    position: relative;
    display: block;
    letter-spacing: 0.1em;
    padding-bottom: 1em;
    font-size: 1.3rem;
    font-weight: 500;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.nav_list > li a .en {
    display: block;
    padding-bottom: 0.4em;
    color: inherit;
    font-size: 1.9em;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
}

.nav_list > li a:hover {
    color: #8B3BBF;
}

.nav_list > li > a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #ADADAD;
}

.nav_list li .child {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
}

.nav_list li .child li {
    display: block;
    text-align: center;
    background: #fff;
    border-top: solid 1px #ccc;
}

.nav_list li .child li a {
    color: inherit;
    padding: 1em 0.5em;
    font-size: 1.2rem;
    font-weight: 400;
}

.nav_list li .child li a:hover {
    background: #fafafa;
    color: #8B3BBF;
}

.nav_list li:hover .child {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.sp_menu_trigger, .sp_nav {
    display: none;
}

/********************************************/
/* footer */
/********************************************/
.footer {
    padding: 50px 0 15px;
}

.footer .main_nav {
    margin-bottom: 40px;
}

.footer .main_nav .nav_list > li a {
    text-align: center;
}

.footer .main_nav .nav_list > li:not(:last-child) {
    margin: 0 3em 1.5em 0;
}

.footer .logo {
    width: 15%;
    margin-bottom: 30px;
}

.footer .border_btn {
    max-width: none;
    margin-bottom: 110px;
}

.footer .border_btn a {
    display: inline-block;
    padding: 0.8em 1em;
    font-size: 1.4rem;
}

.copyright {
    display: block;
    letter-spacing: 0.1em;
    text-align: center;
    color: #606060;
    font-size: 2.0rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
}

/********************************************/
/* main_visual */
/********************************************/
.main_visual {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 90vh;
    min-height: 745px;
    margin: auto;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
}

.main_txt {
    width: calc(100% - 30px);
    max-width: 1654px;
    margin: 0 auto;
    font-size: 9.5rem;
    /* font-size: 10.4rem; */
}

.main_txt .en {
    display: block;
    letter-spacing: 0.05em;
    font-size: 1em;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
}

.main_txt .jp {
    display: block;
    margin-top: 0.7em;
    letter-spacing: 0.15em;
    font-size: 3.0rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.main_img {
    width: 84%;
    max-width: 948px;
    position: absolute;
    bottom: 80px;
    right: 0;
    z-index: -1;
}

/********************************************/
/* top_about_block */
/********************************************/
.top_about_block {
    width: 100%;
    max-width: 1920px;
    margin: auto;
}

.about_list {
    counter-reset: item;
    list-style-type: none;
}

.about_list li:not(:last-child) {
    margin-bottom: 90px;
}

.about_list li .sub_ttl:before {
    display: inline-block;
    counter-increment: item;
    content: counter(item, decimal-leading-zero) ".";
    /* 以下は自由に装飾... */
    padding-right: .5em;
    color: inherit;
    font-size: 3.0rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
}

.about_txt_box {
    padding: 50px 70px;
    background: #fff;
}

.about_txt_box .sub_ttl {
    display: block;
    margin-bottom: 2em;
    color: #8B3BBF;
    font-size: 1.8rem;
    font-weight: 700;
}

.about_txt_box .sub_ttl span {
    position: relative;
    display: inline-block;
    padding-right: 305px;
    letter-spacing: 0.1em;
    color: inherit;
    font-size: 1em;
}

.about_txt_box .sub_ttl span:after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "";
    width: 295px;
    height: 1px;
    background: #707070;
}

.about_txt_box .ttl {
    margin-bottom: 1em;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-size: 3.0rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.about_box01 .txt_base p {
    line-height: 2.7;
    font-size: 1.7rem;
}

.about_box02 {
    position: relative;
    padding-bottom: 120px;
}

.about_box02 .object_fit:after {
    padding-top: 678px;
}

.about_box02 .about_txt_box {
    width: 70%;
    max-width: 863px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.about_box02 .txt_base p {
    line-height: 2.5;
    font-size: 1.8rem;
}

/********************************************/
/* top_reason_block */
/********************************************/
.top_reason_block {
    margin-bottom: 80px;
}

.top_reason_block .reason_list li .inner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 100px 0 50px;
}

.top_reason_block .reason_list li:not(:last-child) {
    margin-bottom: 100px;
}

.top_reason_block .reason_list li .num {
    width: 1.5em;
    font-size: 17.0rem;
}

.top_reason_block .reason_list li .num span {
    color: #8B3BBF;
    font-size: 1em;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
}

.top_reason_block .reason_list li .txt_box {
    width: calc(100% - 1.8em);
    font-size: 17.0rem;
}

.top_reason_block .reason_list li .txt_box .txt_base p {
    letter-spacing: 0.1em;
    line-height: 2.1;
    font-size: 1.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.top_reason_block .reason_list .ttl {
    margin-bottom: 1.6em;
    letter-spacing: 0.1em;
    font-size: 3.0rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

/********************************************/
/* top_service_block */
/********************************************/
.top_service_block {
    position: relative;
    padding: 0;
    z-index: 10;
}

.top_service_block:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: calc(100% - 70px);
    background: #fff;
    z-index: -1;
}

.top_service_block .service_list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px;
}

.top_service_block .service_list li {
    width: 46%;
    margin-bottom: 100px;
}

.top_service_block .service_list li .img {
    margin-bottom: 50px;
}

.top_service_block .service_list li .ttl {
    margin-bottom: 1.3em;
    letter-spacing: 0.1em;
    font-size: 3.0rem;
}

/********************************************/
/* top_voice_block */
/********************************************/
.top_voice_block .swiper-slide {
    padding: 10px 0;
}

.top_voice_block .swiper-slide .inner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(100% - 200px);
    margin: auto;
    padding: 60px 60px 40px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
}

.top_voice_block .swiper-slide .img {
    width: 20%;
    border-radius: 50%;
    overflow: hidden;
}

.top_voice_block .swiper-slide .txt_box {
    width: 73%;
}

.top_voice_block .swiper-slide .txt_box .ttl {
    margin-bottom: 0.8em;
    letter-spacing: 0.1em;
    font-size: 2.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.top_voice_block .swiper-slide .txt_box .txt_base {
    margin-bottom: 50px;
}

.top_voice_block .swiper-slide .txt_box .txt_base p {
    color: #606060;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
}

.top_voice_block .swiper-slide .txt_box .right_txt {
    letter-spacing: 0.1em;
    text-align: right;
    font-size: 1.5rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
    width: 60px;
    height: 60px;
}

.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after {
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/common/ico-arr-left.svg) no-repeat center/contain;
}

.swiper .swiper-button-next:after {
    transform: scale(-1, 1);
}

.swiper .swiper-pagination {
    position: relative;
    padding-top: 20px;
}

.swiper .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background: #D1D1D1;
    opacity: 1;
}

.swiper .swiper-pagination .swiper-pagination-bullet-active {
    background: #606060;
}

/********************************************/
/* top_sponsor_block */
/********************************************/
.top_sponsor_block #top_sponsor_slide {
    position: relative;
    padding: 0 100px;
}

.top_sponsor_block .sponsor_slide {
    position: static;
}

.top_sponsor_block .sponsor_slide .swiper-slide {
    padding: 10px;
}

.top_sponsor_block .sponsor_slide .swiper-slide .img {
    width: 600px; /* ※ロゴ表示、増えたら消す*/
    margin: 0 auto; /* ※ロゴ表示、増えたら消す */
    position: relative;/* ※ロゴ表示、増えたら消す */
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .top_sponsor_block .sponsor_slide .swiper-slide .img {
    width: 80%; /* ※ロゴ表示、増えたら消す */
  }
}

.top_sponsor_block .sponsor_slide .swiper-slide .img:after {
    content: "";/* ※ロゴ表示、増えたら消す */
    display: block;/* ※ロゴ表示、増えたら消す */
    padding-top: 50%;
}

.top_sponsor_block .sponsor_slide .swiper-slide .img img {
    object-fit: contain;
    font-family: 'object-fit: contain;';
    /*IE対策*/
}

.top_sponsor_block .swiper-button-prev,
.top_sponsor_block .swiper-button-next {
    top: 40%;
}

.top_sponsor_block .swiper-button-prev {
    left: 0;
}

.top_sponsor_block .swiper-button-next {
    right: 0;
}

/********************************************/
/* top_company_block */
/********************************************/
.top_company_block {
    background: #fff;
}

.company_table {
    width: 100%;
    max-width: 946px;
    margin-bottom: 60px;
}

.company_table tr {
    border-bottom: solid 1px #707070;
}

.company_table tr th,
.company_table tr td {
    padding: 3em 4em;
    letter-spacing: 0.1em;
    font-size: 1.6rem;
}

.company_table tr th {
    width: 18em;
    text-align: left;
}

.company_table tr td {
    padding-left: 0;
}

/********************************************/
/* top_contact_block */
/********************************************/
.top_contact_block {
    background: url(../img/top/contact-bg.jpg) no-repeat center/cover;
}

.top_contact_block .center_white_ttl {
    margin-bottom: 0.7em;
    text-align: center;
    color: #fff;
    font-size: 10.0rem;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
}

.top_contact_block .center_white_ttl .en {
    display: block;
    letter-spacing: 0.1em;
    color: inherit;
    font-size: 1em;
}

.top_contact_block .center_white_ttl .jp {
    display: block;
    letter-spacing: 0.1em;
    color: inherit;
    font-size: 1.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.contact_table {
    width: 100%;
    max-width: 728px;
    margin: 0 auto 60px;
}

.contact_table th, .contact_table td {
    padding: 1em 0;
    vertical-align: top;
}

.contact_table th {
    width: 12em;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: left;
    font-weight: 700;
}

.contact_table td {
    padding-left: 1em;
}

.contact_table textarea,
.contact_table input[type=email],
.contact_table input[type=tel],
.contact_table input[type=text] {
    width: 100%;
    padding: 0.8em 0.5em;
    background: #fff;
    font-size: 1.6rem;
    color: #333;
}

.contact_table textarea {
    height: 10em;
}

.mw_wp_form .contact_table .error {
    margin-top: 10px;
    color: #d85d64;
    font-weight: bold;
}

.contact_table input[type=radio] {
    display: none;
}

.contact_table .radio_button > span {
    margin-bottom: 5px;
}

.contact_table label span {
    box-sizing: border-box;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    position: relative;
    display: inline-block;
    margin: 0 20px 8px 0;
    padding: 0 0 0 30px;
    border-radius: 8px;
    vertical-align: middle;
    cursor: pointer;
    color: #fff;
}

.contact_table label span:after {
    -webkit-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    margin-top: -10px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 20px;
    content: '';
}

.contact_table label span:before {
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    position: absolute;
    top: 50%;
    left: 5px;
    display: block;
    margin-top: -5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #8B3BBF;
    content: '';
    opacity: 0;
    z-index: 1;
}

.contact_table input[type=radio]:checked + span:before {
    opacity: 1;
}

.submit_btn {
    width: 96%;
    max-width: 300px;
    margin: auto;
}

.submit_btn input {
    display: block;
    width: 100%;
    padding: 1em;
    border: solid 1px #fff;
    letter-spacing: 0.1em;
    color: #fff;
    font-size: 1.8rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.submit_btn input:hover {
    background: #fff;
    color: #333;
}

#mw_wp_form_mw-wp-form-8.mw_wp_form_input {
    margin-top: -290px;
    padding-top: 290px;
}

#mw_wp_form_mw-wp-form-8.mw_wp_form_preview {
    margin-top: -380px;
    padding-top: 380px;
}

#mw_wp_form_mw-wp-form-8.mw_wp_form_complete {
    margin-top: -290px;
    padding-top: 290px;
}

/********************************************/
/* top_message_block */
/********************************************/
.message_box {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.message_box .img {
    width: 36%;
}

.message_box .txt_box {
    width: 58%;
    padding-right: 10%;
    box-sizing: border-box;
}

.message_box .txt_box .txt_base {
    margin-bottom: 40px;
}

.message_box .txt_box .txt_base p {
    color: #606060;
    line-height: 2.1em;
    letter-spacing: 0.1em;
    font-size: 1.6rem;
}

.message_box .txt_box .right_txt {
    text-align: right;
    font-weight: 700;
}

.message_box .txt_box .right_txt span {
    font-size: 1.3em;
    font-weight: inherit;
}

.message_box .ttl {
    margin-bottom: 0.9em;
    letter-spacing: 0.1em;
    font-size: 2.5rem;
    font-weight: 700;
}

/********************************************/
/* media_block */
/********************************************/
.top_media_block .media_list {
    max-width: 1000px;
    margin: auto;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.top_media_block .media_list li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 40px;
}

.top_media_block .media_list li:nth-child(2n) {
    margin-right: 0;
}

.top_media_block .media_list li .img {
    display: block;
    margin-bottom: 20px;
}

.top_media_block .media_list li .txt {
    display: block;
    line-height: 1.8;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    text-align: center;
}

/*=============================================*/
/*media query    Tablet */
/*=============================================*/
@media screen and (max-width: 1300px) {
    /********************************************/
    /*  Sp-menu*/
    /********************************************/
    .sp_menu_trigger,
    .sp_menu_trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        cursor: pointer;
    }
    .sp_menu_trigger {
        position: fixed;
        top: 15px;
        right: 15px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #8B3BBF;
        z-index: 9999;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .sp_menu_trigger span {
        position: absolute;
        background: #fff;
        width: calc(100% - 30px);
        height: 1px;
        left: 0;
        right: 0;
        margin: auto;
    }
    .sp_menu_trigger span:nth-of-type(1) {
        top: 22px;
    }
    .sp_menu_trigger span:nth-of-type(2) {
        bottom: 22px;
    }
    .sp_menu_trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(8px) rotate(-315deg);
        transform: translateY(8px) rotate(-315deg);
    }
    .sp_menu_trigger.active span:nth-of-type(2) {
        -webkit-transform: translateY(-8px) rotate(315deg);
        transform: translateY(-8px) rotate(315deg);
    }
    header .main_nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        float: none;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        max-width: none;
        height: 100%;
        -webkit-overflow-scrolling: touch;
        z-index: 9998;
        overflow-y: scroll;
        padding: 70px 20px 40px;
        box-sizing: border-box;
        text-align: left;
    }
    header .nav_list {
        display: block;
    }
    header .nav_list > li {
        padding: 1em 0;
        border-bottom: solid 1px #ADADAD;
    }
    header .nav_list > li:not(:last-child) {
        margin: 0;
    }
    header .nav_list > li a {
        padding-bottom: 0;
    }
    header .nav_list > li a .en {
        font-size: 1.2em;
    }
    header .nav_list > li a:after {
        content: none;
    }
    header .nav_list > li.close {
        margin-top: 30px;
        background-color: #ccc;
        padding: 1em;
        text-align: center;
        cursor: pointer;
    }
    header .nav_list > li.close::before {
        content: "\f00d";
        font-family: "Font Awesome 5 Free";
        font-weight: bold;
        margin-right: 0.5em;
    }
    .main_nav {
        width: 100%;
        overflow: hidden;
    }
}

/*=============================================*/
/*media query    Tablet */
/*=============================================*/
@media screen and (max-width: 1024px) {
    /********************************************/
    /*header */
    /********************************************/
    header {
        padding-top: 20px;
    }
    header .logo {
        float: none;
        width: 60%;
        margin: 0;
    }
    header .main_nav {
        float: none;
    }
    .nav_list > li a .en {
        font-size: 1.5em;
    }
    /********************************************/
    /* main_visual */
    /********************************************/
    .main_visual {
        display: block;
        height: auto;
        padding: 50px 0;
    }
    .main_txt {
        font-size: 6.0rem;
        margin-bottom: 70px;
    }
    .main_txt .top_10 {
        position: relative;
        top: -10px;
    }
    .main_txt .en.co_red {
        font-size: 0.65em;
    }
    .main_txt .jp {
        font-size: 1.7rem;
    }
    .main_img {
        position: relative;
        bottom: 0;
        margin-left: auto;
    }
    /********************************************/
    /* top_about_block */
    /********************************************/
    .about_txt_box {
        padding: 60px 20px;
    }
    .about_txt_box .ttl {
        font-size: 2.5rem;
    }
    .about_box02 {
        padding: 150px 0 0 0;
    }
    .about_box02 .img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }
    .about_box02 .img:after {
        padding-top: 450px;
    }
    .about_box02 .about_txt_box {
        position: relative;
        right: 0;
        bottom: 0;
        margin-right: 0;
    }
    /********************************************/
    /* top_reason_block */
    /********************************************/
    .top_reason_block .reason_list li .inner {
        padding: 0 50px;
    }
    .top_reason_block .reason_list li:not(:last-child) {
        margin-bottom: 60px;
    }
    .top_reason_block .reason_list li .num,
    .top_reason_block .reason_list li .txt_box {
        font-size: 10.0rem;
    }
    /********************************************/
    /* top_service_block */
    /********************************************/
    .top_service_block:after {
        height: calc(100% - 40px);
    }
    .top_service_block .service_list li {
        margin-bottom: 60px;
    }
    .top_service_block .service_list li .img {
        margin-bottom: 30px;
    }
    .top_service_block .service_list li .ttl {
        margin-bottom: 0.9em;
    }
    /********************************************/
    /* top_contact_block */
    /********************************************/
    .top_contact_block .center_white_ttl {
        font-size: 7.0rem;
    }
    #mw_wp_form_mw-wp-form-8.mw_wp_form_input {
        margin-top: -230px;
        padding-top: 230px;
    }
    #mw_wp_form_mw-wp-form-8.mw_wp_form_preview {
        margin-top: -320px;
        padding-top: 320px;
    }
    #mw_wp_form_mw-wp-form-8.mw_wp_form_complete {
        margin-top: -230px;
        padding-top: 230px;
    }
    /********************************************/
    /* footer */
    /********************************************/
    .footer .main_nav {
        text-align: center;
    }
}

/*=============================================*/
/*media query    Tablet ipad 5.7inch */
/*=============================================*/
@media screen and (max-width: 768px) {
    a, b, dd, dt, li, p, span, td, th {
        font-size: 13px;
        font-size: 1.3rem;
    }
    /*=============================================*/
    /*  layout  Base                        */
    /*=============================================*/
    section {
        padding: 50px 0;
    }
    /********************************************/
    /*header */
    /********************************************/
    header {
        padding: 20px 15px;
    }
    /********************************************/
    /* main_visual */
    /********************************************/
    .main_txt {
        font-size: 6.0rem;
    }
    .main_txt .en.co_red {
        font-size: 0.6em;
        margin-bottom: 10px;
    }
    /********************************************/
    /* top_about_block */
    /********************************************/
    .about_list li:not(:last-child) {
        margin-bottom: 50px;
    }
    .about_list li .sub_ttl:before {
        font-size: 2.0rem;
    }
    .about_txt_box {
        padding: 60px 15px;
    }
    .about_txt_box .sub_ttl {
        margin-bottom: 1.3em;
    }
    .about_txt_box .sub_ttl span {
        padding-right: 90px;
    }
    .about_txt_box .sub_ttl span:after {
        width: 80px;
    }
    .about_txt_box .ttl {
        font-size: 2.0rem;
    }
    .about_box01 .txt_base p {
        line-height: 2.4;
        font-size: 1.4rem;
    }
    .about_box02 {
        padding: 0;
    }
    .about_box02 .img {
        position: relative;
    }
    .about_box02 .img:after {
        content: none;
    }
    .about_box02 .about_txt_box {
        top: -30px;
        width: calc(100% - 30px);
        margin-right: auto;
        padding: 30px 15px;
    }
    .about_box02 .txt_base p {
        line-height: 2.4;
        font-size: 1.4rem;
    }
    /********************************************/
    /* top_reason_block */
    /********************************************/
    .top_reason_block {
        margin-bottom: 40px;
    }
    .top_reason_block .reason_list li .inner {
        display: block;
        padding: 0;
    }
    .top_reason_block .reason_list li:not(:last-child) {
        margin-bottom: 30px;
    }
    .top_reason_block .reason_list li .num {
        margin-bottom: 0.2em;
        font-size: 4.5rem;
    }
    .top_reason_block .reason_list li .txt_box {
        width: 100%;
    }
    .top_reason_block .reason_list li .txt_box .txt_base p {
        font-size: 1.4rem;
    }
    .top_reason_block .reason_list .ttl {
        margin-bottom: 0.5em;
        font-size: 2.0rem;
    }
    /********************************************/
    /* top_service_block */
    /********************************************/
    .top_service_block:after {
        height: calc(100% - 25px);
    }
    .top_service_block .service_list {
        padding: 0;
    }
    .top_service_block .service_list li {
        width: 100%;
        margin-bottom: 40px;
    }
    .top_service_block .service_list li .img {
        margin-bottom: 20px;
    }
    .top_service_block .service_list li .ttl {
        margin-bottom: 0.8em;
        font-size: 2.0rem;
    }
    /********************************************/
    /* top_voice_block */
    /********************************************/
    #top_voice_slide {
        width: 100%;
    }
    .top_voice_block .swiper-slide {
        padding: 10px 0;
    }
    .top_voice_block .swiper-slide .inner {
        display: block;
        width: calc(100% - 90px);
        padding: 30px 15px 10px;
    }
    .top_voice_block .swiper-slide .img {
        width: 60%;
        max-width: 200px;
        margin: 0 auto 20px;
    }
    .top_voice_block .swiper-slide .txt_box {
        width: 100%;
    }
    .top_voice_block .swiper-slide .txt_box .ttl {
        font-size: 1.7rem;
    }
    .top_voice_block .swiper-slide .txt_box .txt_base {
        margin-bottom: 30px;
    }
    .top_voice_block .swiper-slide .txt_box .txt_base p {
        font-size: 1.3rem;
    }
    .top_voice_block .swiper-slide .txt_box .right_txt {
        font-size: 1.3rem;
    }
    .swiper .swiper-button-prev,
    .swiper .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    .swiper .swiper-button-prev {
        left: 0;
    }
    .swiper .swiper-button-next {
        right: 0;
    }
    .swiper .swiper-pagination {
        padding-top: 15px;
    }
    .swiper .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    /********************************************/
    /* top_sponsor_block */
    /********************************************/
    .top_sponsor_block #top_sponsor_slide {
        width: 100%;
        padding: 0 40px;
    }
    /********************************************/
    /* top_company_block */
    /********************************************/
    .company_table tr {
        border-bottom: solid 1px #707070;
    }
    .company_table tr th,
    .company_table tr td {
        padding: 2em 0;
        font-size: 1.3rem;
    }
    .company_table tr th {
        width: 10em;
        padding-right: 1em;
    }
    /********************************************/
    /* top_contact_block */
    /********************************************/
    .top_contact_block .center_white_ttl {
        font-size: 4.2rem;
    }
    .top_contact_block .center_white_ttl .jp {
        font-size: 1.6rem;
    }
    .contact_table {
        display: block;
    }
    .contact_table tbody,
    .contact_table tr,
    .contact_table th,
    .contact_table td {
        display: block;
    }
    .contact_table tr {
        margin-bottom: 20px;
    }
    .contact_table th, .contact_table td {
        width: 100%;
        padding: 0;
    }
    .contact_table th {
        margin-bottom: 1em;
    }
    .contact_table textarea,
    .contact_table input[type=email],
    .contact_table input[type=tel],
    .contact_table input[type=text] {
        font-size: 1.4rem;
    }
    .submit_btn input {
        font-size: 1.5rem;
    }
    #mw_wp_form_mw-wp-form-8.mw_wp_form_input {
        margin-top: -150px;
        padding-top: 150px;
    }
    #mw_wp_form_mw-wp-form-8.mw_wp_form_preview {
        margin-top: -230px;
        padding-top: 230px;
    }
    #mw_wp_form_mw-wp-form-8.mw_wp_form_complete {
        margin-top: -150px;
        padding-top: 150px;
    }
    /********************************************/
    /* top_message_block */
    /********************************************/
    .message_box {
        display: block;
    }
    .message_box .img {
        width: 60%;
        margin: 0 auto 20px;
    }
    .message_box .txt_box {
        width: 100%;
        padding-right: 0;
    }
    .message_box .txt_box .txt_base {
        margin-bottom: 20px;
    }
    .message_box .txt_box .txt_base p {
        font-size: 1.3rem;
    }
    .message_box .ttl {
        font-size: 1.8rem;
    }
    /********************************************/
    /* footer */
    /********************************************/
    .footer {
        padding: 30px 0 15px;
    }
    .footer .logo {
        width: 60%;
        margin: 0 auto 20px;
    }
    .footer .border_btn {
        margin: 0 auto 30px;
    }
    .copyright {
        font-size: 1.5rem;
    }
    /********************************************/
    /* media_block */
    /********************************************/
    .top_media_block .media_list {
        display: block;
    }
    .top_media_block .media_list li {
        width: 94%;
        margin: 0 auto 30px;
    }
    .top_media_block .media_list li:nth-child(2n) {
        margin-right: auto;
    }
    .top_media_block .media_list li .img {
        margin-bottom: 10px;
    }
    .top_media_block .media_list li .txt {
        font-size: 1.4rem;
    }
}
/********************************************/
    /* プライバシーポリシー */
/********************************************/
.p-privacy {
  padding-top: 15rem;
}
.p-privacy__title {
  margin-top: 50px;
  text-align: left;
  line-height: 2;
  font-family: "Noto Serif JP", sans-serif, serif;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .p-privacy__title {
    font-size: 1.8rem;
  }
}
@media (max-width: 576px) {
  .p-privacy__title {
    font-size: 1.4rem;
  }
}
.p-privacy__title__text {
  margin-top: 5rem;
  line-height: 2;
}
.p-privacy__contents {
  margin-top: 3rem;
}
.p-privacy__contents__text {
  margin-top: 3rem;
  line-height: 2;
}
.p-privacy__contents__title {
  font-size: 2rem;
  font-family: var(--base-font-family);
}
@media (max-width: 768px) {
  .p-privacy__contents__title {
    font-size: 1.8rem;
  }
}
.p-privacy__contents__text {
  font-size: 1.6rem;
  font-family: var(--base-font-family);
}
@media (max-width: 768px) {
  .p-privacy__contents__text {
    font-size: 1.4rem;
  }
}

/*=============================================*/
/*media query    SmartPhone */
/*=============================================*/
