@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

/* !HTML5 elements
---------------------------------------------------------- */
header, 
footer, 
nav, 
section, 
aside, 
article {
    display: block;
}

/* !Reseting
---------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

fieldset {
  border: none;
}

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

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

table {
	border-collapse: collapse;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

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

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

select,
input[type=radio],
input[type=checkbox],
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=reset],
input[type=button],
input[type=submit],
textarea {
	appearance: none;
	border-radius: 0;
    font-family: "Noto Sans JP", YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=number]::-ms-clear{
	display: none;
}

input[type=reset],
input[type=button],
input[type=submit]  {
    font-family: "Noto Sans JP", YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	cursor: pointer;
}

*,
*:before,
*::after {
	box-sizing: border-box;
}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
    display: block;
    min-height: 1%;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

* html .clearfix {
    height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
    overflow-y: scroll;
    font-size: 62.5%;
}

/*** タブレット 751px ~ 1200px***/
@media screen and (min-width: 751px) and (max-width: 1366px) {
    html {
        font-size: calc(100vw / 136.6);
    }
}

/*** スマホ 320px ~ 750px***/
@media screen and (max-width: 750px) {
    html {
        font-size: calc(100vw / 39.3);
    }
}

body {
    font-family: "Noto Sans JP", YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    letter-spacing: .03em;
    line-height: 1.5;
    font-weight: 500;
    color: #1F215C;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.font_eng {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* !Base Fonts -------------------------------------------------------------- */
a {
    color: #1F215C;
    text-decoration: none;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    a {
        transition: all 0.3s;
    }

    a:hover {
        text-decoration: underline;
    }

    .op {
        transition: opacity 0.5s ease-out;
    }

    .op:hover {
        opacity: .5;
        text-decoration: none;
    }

    a[href^="tel:"] {
        cursor: default;
        pointer-events:none;
    }

    .link_underline02 a{
        text-decoration: none;
    }
    .link_underline02 span,
    .link_underline a{
        position: relative;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }
    .link_underline02 a:hover span,
    .link_underline a:hover{
        text-decoration: none;
    }
    .link_underline02 span:after,
    .link_underline a:after {
        content: "";
        display: block;
        width: 0;
        height: 1px;
        position: absolute;
        right: 0;
        bottom: 0;
        pointer-events: none;
        background: currentColor;
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .link_underline02 a:hover span:after,
    .link_underline a:hover:after {
        width: 100%;
        right: auto;
        left: 0;
    }
}

.is-hide {
    display: none;
}



/* !wrapper
---------------------------------------------------------- */
#wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 9.6rem;
}

.inner02,
.inner {
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 5;
    max-width: 118.8rem;
    padding: 0 5rem;
}
.inner02 {
    max-width: 100.4rem;
}
footer .inner02{
    max-width: 103.6rem;
}
/* !header
---------------------------------------------------------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #1F215C;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 9.6rem;
    padding-left: 2.6rem;
}

.header-logo a{
    display: flex;
    align-items: center;
    grid-gap: 2rem;
    text-decoration: none;
}
.header-logo span{
    display: flex;
    flex-direction: column;
    grid-gap: .3rem;
    font-size: 1.2rem;
    font-weight: 500;
}
.header-logo font{
    font-size: 2.6rem;
    font-weight: 700;
    margin-left: -.5rem;
}

.header-logo img{
    width: 5.8rem;
}

.header-links {}

.btn-menu {}

/*** hover ***/
@media screen and (min-width: 960px) {}

/* !global navigation
---------------------------------------------------------- */
@media screen and (min-width: 751px) {
    #g-navi {}
    .nav_list{
        display: flex;
        height: 9.6rem;
        grid-gap: 5.2rem;
    }
    .nav_list a{
        color: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 9.6rem;
        font-size: 1.7rem;
        font-weight: 900;
        text-decoration: none;
    }
    .nav_list a.nav_contact{
        padding-bottom: 3rem;
        align-items: flex-end;
        width: 15rem;
        height: 15rem;
        border-radius: 0 0 0 1rem;
        background: url(../img/common/icon_email.svg)no-repeat top 4rem center #1F215C;
        background-size: 4.9rem auto;
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        transition: opacity .5s,height .3s;
    }
    .is_fixed .nav_list a.nav_contact{
        align-items: center;
        height: 9.6rem;
        border-radius: 0;
        background: #1F215C;
        padding-bottom: 0;
        transition: opacity .5s,height .3s;
    }
}
/*** hover ***/
@media screen and (min-width: 960px) {
    .nav_list a.nav_contact:hover{
        opacity: .7;
    }
}

/* !main Visual
---------------------------------------------------------- */
#main-visual {
    height: calc(100dvh - 9.6rem);
    background: url(../img/common/bg_mv.jpg)no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}
.mv_cont{
    color: #fff;
    text-shadow: 0 0 2rem rgba(0,0,0,.53);
    position: relative;
}
.mv_cont:before{
    /*content: '';*/
    position: absolute;
    left: -1.7rem;
    top: 50%;
    transform: translateY(-50%);
    width: 45.5rem;
    height: 60rem;
    pointer-events: none;
    background: url(../img/top/logo_mv.svg)no-repeat center center;
    background-size: 45.5rem auto;
}
.mv_title{
    font-size: 6.2rem;
    font-weight: 900;
}
.mv_text{
    font-size: 2.2rem;
    line-height: 1.63;
    font-weight: bold;
    margin-top: 2rem;
}

.fixed_wrap{
    position: fixed;
    right: 0;
    bottom: 3.3rem;
    z-index: 88;
    border-radius: 1rem 0 0 1rem;
    border: .3rem solid #1F215C;
    border-right: 0;
    padding: 2.4rem 2rem;
    background: #fff;
    text-align: center;
    width: 23.4rem;
    height: 23.1rem;
}
.is_open.fixed_wrap{
    transition: width .1s;
    width: 4.6rem;
    padding: 0;
}
.fixed_close{
    position: absolute;
    right: .7rem;
    top: 0;
    transform: translateY(-50%);
    width: 1.8rem;
    height: 1.8rem;
    background: url(../img/top/icon_close.svg)no-repeat center center;
    background-size: 100% auto;
    cursor: pointer;
}
.is_open>div{
    display: none;
}
.fixed_title{
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}
.is_open .fixed_title{
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .15em;
    font-size: 1.4rem;
    line-height: 1.2;
    width: 4rem;
    height: 100%;
    margin: 0;
    writing-mode: vertical-rl;
    cursor: pointer;
}
.fixed_wrap .btn_link01{
    width: 19rem;
    height: 5rem;
    font-size: 1.4rem;
    padding: 0 1rem;
    border-radius: .5rem;
    box-shadow: .3rem .3rem 0 currentColor;
}
.fixed_wrap .link_arrow_wrap{
    width: 3.1rem;
    height: 2.3rem;
    right: .4rem;
}
.fixed_wrap .link_arrow{
    background-size: 1.3rem auto;
}
.fixed_tel .btn_link01{
    background: #F2F3FF;
    font-weight: 700;
    padding: 0;
    justify-content: center;
}
.fixed_tel .btn_link01 font{
    font-size: 2.3rem;
}
.fixed_time{
    font-size: .9rem;
    color: #8D8D8D;
    margin: .9rem 0 1.4rem;
}
/*** hover ***/
@media screen and (min-width: 960px) {

    .fixed_wrap .btn_link01:hover{
        top: .3rem;
        left: .3rem;
        box-shadow: 0 0 0 currentColor;
    }
}

/* !teaser
---------------------------------------------------------- */
article{
    position: relative;
}
#teaser {
    background: url(../img/common/bg_teaser.jpg)no-repeat left bottom #EFF5F8;
    background-size: auto 41.3rem;
    padding: 8.3rem 0 8.8rem;
}
#teaser .inner{
    max-width: 123.8rem;
}
#teaser .hd_m:before{
    left: -11.4rem;
    height: 10.6rem;
    background-size: 10.5rem auto;
}
#teaser .hd_m_eng{
    font-size: 8rem;
}
#teaser .hd_m_jap{
    margin-top: .9rem;
}

/* !sec
---------------------------------------------------------- */

.sec-cont{
	padding-top: 100px;
	padding-bottom: 100px;
}

p.sec-ttl{
	font-weight: bold;
	color:#1F215C;
	letter-spacing: 0.1em;
	font-size: 17px;
	line-height: 1.7em;
}

p.sec-txt{
	letter-spacing: 0.03em;
	font-size: 17px;
	line-height: 1.7em;
	color:#000;
	border-bottom: 1px solid #000000;
	padding-bottom: 30px;
	margin-bottom: 30px;
	padding-top: 20px;
}

/* !sitemap
---------------------------------------------------------- */

ul#sitemap-list{
	padding: 90px 0px 150px;
	display: grid;
	grid-template-columns: auto auto auto auto;
}

ul#sitemap-list li{
}

ul#sitemap-list li a{
	font-size: 20px;
	line-height: 50px;
	font-weight: bold;
	color:#1F215C;
	display: block;
	text-decoration: none;
}

ul#sitemap-list li a:hover{
	text-decoration: underline;
}

ul#sitemap-list li p a{
	font-size: 17px;
	font-weight: 400;
	color:#000;
	text-decoration: none;
}

/* !breadcrumb
---------------------------------------------------------- */
#breadcrumb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 2.2rem 3rem 0;
    font-size: 1.2rem;
}

#breadcrumb ul {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-weight: 400;
}

#breadcrumb ul li {
  word-break: keep-all;
  white-space: nowrap;
  font-size: 1.2rem;
  line-height: 1.5;
  position: relative;
  color: #767676;
}

#breadcrumb ul li + li:before {
  content: '＞';
  z-index: 2;
  width: 2em;
  text-align: center;
  display: inline-block;
  text-indent: 0;
}

#breadcrumb ul li + li {
  padding-left: 2em;
  text-indent: -2em;
}

#breadcrumb ul li:last-child {
  word-break: break-all;
  white-space: unset;
}

#breadcrumb ul li a{
  text-indent: 0;
  color: #767676;
}


/* !page Top
---------------------------------------------------------- */
.page-top {}

/*** hover ***/
@media screen and (min-width: 960px) {}

/* !footer
---------------------------------------------------------- */
#footer {
    background: #1F215C;
    color: #fff;
    padding: 5.5rem 0 3.3rem;
}
#footer a{
    color: #fff;
}

.footer-inner {}

.footer_box01{
    display: flex;
    justify-content: space-between;
}
.footer_link{
    display: grid;
    grid-gap: 1.2rem;
}
.footer_link a{
    font-size: 1.7rem;
}
.footer_company_title{
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.footer_company_link{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 2.5rem 3rem;
}
.footer_company_link .icon{
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_company_link .icon img{
    height: 5.2rem;
}
.footer_company_link .text{
    font-size: 1.2rem;
    letter-spacing: .08em;
    margin-top: .4rem;
}
.footer_company_link .text:after{
    content: '';
    width: 1em;
    height: 1em;
    background: url(../img/common/icon_target.svg)no-repeat bottom center;
    background-size: .9rem auto;
    margin-left: .5em;
    display: inline-block;
}

.footer_addr{
    margin-top: 6rem;
    display: flex;
    align-items: center;
    grid-gap: 3.4rem;
}
.footer_addr dt{
    width: 36.8rem;
}
.footer_addr dt img{
    width: 100%;
}
.footer_addr_name {
    font-size: 2.3rem;
    font-weight: bold;
    letter-spacing: .12em;
} 
.footer_addr_text{
    font-size: 1.7rem;
    margin-top: .7rem;
    letter-spacing: .12em;
}

.footer_box02{
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #D3D3D3;
    display: flex;
    justify-content: space-between;
}
.footer_other{
    display: flex;
    grid-gap: 1em;
}
.footer_other a{
    font-size: 1.4rem;
    letter-spacing: .08em;
}


#copyright {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: .12em;
}

/*** hover ***/
@media screen and (min-width: 960px) {

}

/*common*/
.hd_m{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4rem;
    line-height: 1.2;
    position: relative;
}
.hd_m:before{
    content: '';
    position: absolute;
    left: -13.9rem;
    top: 0;
    width: 13rem;
    height: 100%;
    background: url(../img/top/line_hd.svg)no-repeat left center;
    background-size: 12.9rem auto;
}
.hd_m.white:before{
    background: url(../img/top/line_hd_white.svg)no-repeat left center;
    background-size: 12.9rem auto;
}

.hd_m_eng{
    font-size: 18rem;
    color: #fff;
    -webkit-text-stroke :1px #A9AAB9;
}
.hd_m_jap{
    font-size: 2.7rem;
    font-weight: 900;
    margin-top: -1.5rem;
}

.img_box {
    position: relative;
    width: 100%;
    padding-top: 66%;
    overflow: hidden;
}
.img_box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover;
    transition: transform .4s ease;
}

.btn_link01{
    display: inline-flex;
    align-items: center;
    width: 35.2rem;
    max-width: 100%;
    height: 7.5rem;
    border-radius: 1rem!important;
    color: #1F215C;
    background: #fff;
    border: .2rem solid currentColor;
    padding: 0 2.4rem;
    font-size: 1.7rem;
    font-weight: 900;
    box-shadow: .5rem .5rem 0 currentColor;
    position: relative;
    top: 0;
    left: 0;
    transition: all 0.3s;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    .btn_link01:hover{
        text-decoration: none;
        top: .5rem;
        left: .5rem;
        box-shadow: 0 0 0 currentColor;
    }

    a:hover .img_box img{
        transform: scale(1.05);
    }

}
/*top*/
.top_service{
    background: url(../img/top/bg_service.jpg)no-repeat center center;
    background-size: cover;
    padding: 4.7rem 0 12.8rem;
}
.top_service_list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 6.8rem;
}
.top_service_list li{
    position: relative;
}
.top_service_list a{
    display: block;
    position: relative;
}
.top_service_list .img_box{
    border-radius: 1rem;
    border: .3rem solid #1F215C;
    padding-top: 102%;
}
.top_service_list .cont{
    position: absolute;
    right: -3.4rem;
    top: 29rem;
    z-index: 9;

    width: 39.7rem;
    min-height: 28.3rem;
    border-radius: 1rem;
    background: #EFF5F8;
    padding: 4rem;
}
.top_service_list .title{
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
}
.top_service_list .text{
    color: #000000;
    font-size: 1.7rem;
    line-height: 2;
}
.top_service_btn{
    text-align: center;
    margin-top: 11.5rem;
}

.top_recruit{
    background: rgba(239,245,248,.65);
    position: relative;
    padding: 5.5rem 0 15rem;
    overflow: hidden;
}
.top_recruit_bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 77.4rem;
}
.top_recruit_bg:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    background: url(../img/top/bg_linear.png)no-repeat center center;
    background-size: 100% 100%;
}
.top_recruit_bg img{
    object-position: top center;
}
.top_recruit_p01{
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.7rem;
    font-weight: 900;
    color: #000;
}
.top_recruit_p02{
    font-size: 1.7rem;
    line-height: 2;
    margin-bottom: 7.3rem;
    color: #000;
}
.top_recruit_p03{
    font-size: 2.7rem;
    margin-bottom: 2rem;
    font-weight: 900;
}
.top_recruit_list01{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 2rem;
}
.top_recruit_list01 li{
    border-radius: 1rem;
    background: #fff;
    padding: 2rem 1rem 3rem;
    text-align: center;
}
.top_recruit_list01 .icon{
    background: url(../img/top/bg_icon.png)no-repeat center center;
    background-size: 11rem auto;
}
.top_recruit_list01 .icon img{
    width: 9.8rem;
}
.top_recruit_list01 .title{
    font-size: 2rem;
    font-weight: 900;
    margin: .5rem 0 1rem;
}
.top_recruit_list01 .text{
    color: #000;
    font-size: 1.7rem;
}
.top_recruit_link{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 2.7rem 4.1rem;
    margin-top: 4.4rem;
}
.top_recruit_link li{
}
.top_recruit_link a{
    display: flex;
    align-items: center;
    height: 8rem;
    font-size: 1.7rem;
    font-weight: bold;
    border-bottom: 2px solid #BDBED3;
}
.top_recruit_btn{
    margin-top: 7.4rem;
}

.top_total{
    background: url(../img/top/bg_total.jpg)no-repeat center center;
    background-size: cover;
    height: 45.9rem;
    position: relative;
}
.top_total_text{
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -4rem;
    text-align: center;
}
.top_total_text img{
    width: 116.75rem;
}

.top_news{
    padding: 8rem 0 12.6rem;
}
.small .hd_m_eng{
    font-size: 12rem;
}
.small .hd_m_jap{
    margin-top: 1rem;
}

.top_news_box{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.top_news_cont{
    width: 73.6rem;
    padding-top: 5.4rem;
}
.news_list{
    border-top: 1px solid #1F215C;
}
.news_list a{
    position: relative;
    display: block;
    padding: 3.2rem 0;
    padding-right: 7.3rem;
    border-bottom: 1px solid #1F215C;
}
.news_list .link_arrow_wrap{
    right: 0;
}
.news_list .time{
    font-size: 1.7rem;
    letter-spacing: .08em;
    margin-bottom: .8rem;
    display: block;
}
.news_list .text{
    font-size: 1.7rem;
    letter-spacing: .08em;
    font-weight: bold;
    position: relative;

    max-width: 100%;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news_list .text:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: width .3s ease-in-out;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    .news_list a:hover .text,
    .news_list a:hover{
        text-decoration: none;
    }
    .news_list a:hover .text:before{
        width: 0;
        right: 0;
        left: auto;
    }
}
.top_news_btn{
    position: absolute;
    left: 0;
    top: 23.3rem;
    width: 26rem;
}

.top_company{
    padding: 6rem 0 10rem;
    background: url(../img/top/bg_company.png)no-repeat left center #EFF5F8;
    background-size: auto 100%;
}
.top_company .top_service_list{
}
.top_company .top_service_list .img_box{
    padding-top: 52.55%;
}
.top_company .top_service_list .cont{
    top: 18.4rem;
    width: 36.5rem;
    min-height: 20rem;
    background: #fff;
    padding: 2.7rem 3.2rem;
}
.top_company .top_service_list .title{
    font-size: 2rem;
    margin-bottom: 1.2rem;
}
.top_company_btn{
    margin-top: 17.8rem;
    text-align: center;
}

.top_access{
    padding: 8rem 0 10rem;
}
.top_access_box{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.top_access_cont{
    width: 55.4rem;
}
.top_access_map{
    width: 50.2rem;
}
.top_access_p01{
    font-size: 2.5rem;
    font-weight: 900;
    margin: 2.8rem 0 .6rem;
    color: #000;
}
.top_access_p02{
    color: #000;
    font-size: 2rem;
    line-height: 1.65;
    margin-bottom: 3.3rem;
}
.top_access_list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 1.6rem;
}
.top_access_list li{
    border-radius: 1rem;
    background: #EFF5F8;
    padding: 2.8rem 2rem 2.8rem 3.2rem;
}
.top_access_list .title{
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}
.common_text p,
.common_text{
    font-size: 1.7rem;
    line-height: 2;
    color: #000;
    letter-spacing: .03em;
}
.top_access_btn{
    margin-top: 5.4rem;
    text-align: center;
}
.iframe_box {
    position: relative;
    width: 100%;
    padding-top: 56%;
    overflow: hidden;
}
.iframe_box iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.top_access_map .iframe_box{
    padding-top: 102.5%;
    border-radius: 1rem;
}

.top_contact{
    padding: 5.5rem 0 12.2rem;
    background: url(../img/top/bg_linear02.png)no-repeat top center,
    url(../img/top/bg_contact.jpg)no-repeat bottom center;
    background-size: 100% 74%,cover;
    text-align: center;
}
.top_contact .hd_m{
    align-items: center;
    opacity: .5;
    margin-bottom: -11rem;
}
.top_contact .hd_m:before{
    content: none;
}
.top_contact_p01{
    font-size: 4.1rem;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 3rem;
    position: relative;
    z-index: 3;
}
.top_contact_p01 span{
    display: inline-block;
}
.top_contact_p02{
    margin-bottom: 4.5rem;
}
.top_contact_list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 2.8rem;
}
.top_contact_list li{
    border-radius: 1rem;
    background: #EFF5F8;
    padding: 3rem 2rem;
}
.top_contact_list .title{
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: .7rem;
}
.top_contact_list .icon{
    margin-bottom: 1.1rem;
}
.top_contact_list .icon img{
    width: 7.5rem;
}
.top_contact_list .tel{
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: .9rem;
}
.top_contact_list .tel span{
    font-size: 3.9rem;
    margin-left: 1rem;
}
.top_contact_list .time{
    font-size: 1.7rem;
    color: #000;
}
.top_contact_list .btn_link01{
    width: 26rem;
}

/*0311*/
@-webkit-keyframes img_fish {
  0% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  60% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
  }
}

.img_anim{
    position: relative;
}
.img_anim.animated:before{
    content: '';
    position: absolute;
    left: -2%;
    top: -2%;
    width: 104%;
    height: 104%;
    background: #1F215C;
    z-index: 3;

    animation-fill-mode: both;
    animation-delay: 1s;
    animation-duration:1s;
    -webkit-animation-name: img_fish;
    animation-name: img_fish;
    clip-path: inset(0 0 0 0);
}

.top_recruit_link a{
    position: relative;
    text-decoration: none;
}
.top_recruit_link a:before{
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: #1F215C;
    transition: width .3s ease-in-out;
}
/*** hover ***/
@media screen and (min-width: 960px) {
    .top_recruit_link a:hover:before{
        right: auto;
        left: 0;
        width: 100%;
    }
}
.top_recruit_link .link_arrow_wrap{
    right: 0;
}

.link_arrow_wrap{
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 5.3rem;
    height: 4rem;
    border-radius: .5rem;
    background-color: #1F215C;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.link_arrow{
    width: 100%;
    height: 100%;
    background: url(../img/common/arrow_right_white.svg)no-repeat center center;
    background-size: 1.8rem auto;
    z-index: 2;
    position: relative;
}
/*** hover ***/
@media screen and (min-width: 960px) {
    a:hover .link_arrow ,
    .btn_link01:hover .link_arrow ,
    .btn_link02:hover .link_arrow {
      animation-duration:.3s;
      animation-name: arrowanim_toright;
      animation-timing-function: var(--ease-inout-cubic);
    }
}

@keyframes arrowanim_toright {
  0% {
      opacity: 1
  }

  50% {
      opacity: 0;
      transform: translate3d(50%,0,0)
  }

  55% {
      opacity: 0;
      transform: translate3d(-50%,0,0)
  }

  to {
      opacity: 1;
      transform: translateZ(0)
  }
}
@keyframes arrowanim_toleft {
  0% {
      opacity: 1
  }

  50% {
      opacity: 0;
      transform: translate3d(-50%,0,0)
  }

  55% {
      opacity: 0;
      transform: translate3d(50%,0,0)
  }

  to {
      opacity: 1;
      transform: translateZ(0)
  }
}

.wow{
    animation-delay: .3s;
}
@-webkit-keyframes fadeInLeft02 {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  60% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes fadeInLeft02 {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  60% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

.fadeInLeft02{
  -webkit-animation-name: fadeInLeft02;
  animation-name: fadeInLeft02;
  clip-path: inset(0 100% 0 0);
}

.cookie_wrap{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 1.8rem 0;
    background: rgba(0,0,0,.5);
    color: #fff;
}
.cookie_wrap .inner{
    max-width: 128.8rem;
}
.cookie_box{
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 1.3rem;
}
.cookie_box p{
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: bold;
}
.cookie_list{
    display: flex;
    grid-gap: 1.8rem;
}
.cookie_list a{
    display: inline-flex;
    align-items: center;
    padding: 0 2.5rem;
    border-radius: .5rem;
    background: #2E5B9A;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: bold;
    height: 4.3rem;
    white-space: nowrap;
}

/*company*/
.hd_small{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.3rem;
    line-height: 1.2;
}
.hd_small_eng{
    font-size: 7rem;
    color: #fff;
    -webkit-text-stroke :1px #A9AAB9;
}
.hd_small_jap{
    font-size: 3rem;
    line-height: 1.5;
    font-weight: 900;
}

.anchor_wrap {
  position: relative;
}
.anchor_wrap .anchor {
  position: absolute;
  z-index: -1;
  top: -9.6rem;
}

.company_sec01{
    padding: 7.2rem 0;
}
.company_table{
    width: 100%;
}
.company_table th,
.company_table td{
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 3.5rem;
    padding: 2.8rem 4.5rem;
    border-bottom: 1px solid #A8AFB7;
    text-align: left;
}
.company_table th{
    font-size: 2rem;
    font-weight: 900;
    background: #EFF5F8;
    width: 19.3rem;
    padding: 2.8rem 3.5rem;
    vertical-align: top;
}
.company_table td{
    color: #000000;
}
.company_table tr:last-of-type th,
.company_table tr:last-of-type td{
    border-bottom: 0;
}

.company_sec02{
    padding: 7.2rem 0 11.6rem;
}
.company_box{
    border: 2px solid #1F215C;
    padding: 4.5rem 0 6.5rem;
    text-align: center;
    border-radius: 1rem;
}
.company_box .hd_small{
    margin-bottom: 2rem;
}
.company_sec02_p01{
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: .7rem;
    color: #000;
}
.company_sec02_p03{
    margin-top: 2.1rem;
    background: #EFF5F8;
    border-radius: 1rem;
    display: inline-block;
    padding: 1.5rem 6.6rem;
    color: #1F215C;
}

.company_sec03{
    padding: 7.2rem 0 14.7rem;
}
.company_sec03 .top_access_cont,
.company_sec03 .top_access_map {
    width: auto;
}
.company_sec03 .top_access_p02{
    margin-bottom: 2rem;
}
.company_sec03 .top_access_map .iframe_box{
    padding-top: 56.97%;
    padding-top: 51.5rem;
    margin-bottom: 2rem;
}
.company_sec03 .top_access_list li{
    padding: 3.2rem 3.3rem;
}
.dot_text{
    font-size: 1.7rem;
    line-height: 1.5;
    font-weight: bold;
    padding-left: 2rem;
    background: url(../img/common/dot_blue.svg)no-repeat top .9rem left;
    background-size: 1rem auto;
    color: #000;
    margin-top: 1.6rem;
}
.dot_text+.dot_text{
    margin-top: 1.2rem;
}

/*service*/
.service_wrap .hd_small_eng{
    font-size: 4.2rem;
}
.service_sec01{
    padding: 29.5rem 0 19rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.service_sec01_bg{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 52.7rem;
}
.service_sec01_bg:before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    background: url(../img/service/bg_linear.png)no-repeat center center;
    background-size: 100% 100%;
}
.service_sec01_bg img{
    object-position: top center;
}
.service_sec01_p01{
    font-size: 2rem;
    font-weight: 900;
    margin: 5rem 0 .6rem;
    color: #000000;
}
.service_list{
    margin-top: 7rem;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 4.7rem;
    text-align: left;
}
.service_list li{
    position: relative;
}
.service_list .img_box{
    border-radius: 1rem;
    padding-top: 130.74%;
}
.service_list .point{
    position: absolute;
    left: 1.5rem;
    top: 0;
    transform: translateY(-50%);
    font-size: 5rem;
    font-weight: 700;
    color: #fff;
    -webkit-text-stroke: 1px #1F215C;
    z-index: 9;
}
.service_list .title{
    font-size: 2rem;
    font-weight: 900;
    margin: 2rem 0 1rem;
}

.service_bottom{
    padding-bottom: 30rem;
}
.service_bottom .top_service_list .img_box{
    padding-top: 90%;
}
.service_bottom .top_service_list .title{
    font-size: 2.5rem;
    margin-bottom: .7rem;
}
.top_service_list .btn_link01{
    display: inline-flex;
    margin-top: 3.5rem;
    width: 26rem;
}

/*job*/
#job .fixed_wrap{
    height: 18.8rem;
}
#job .is_open .fixed_title{
    font-size: 1.4rem;
}

.teaser_hd{
    padding: 2.2rem 0;
    font-size: 4.6rem;
    font-weight: 900;
    text-align: center;
}

.job_sec01{
    padding: 8.8rem 0 0;
}
.job_dl{
    display: flex;
    justify-content: space-between;
    margin-bottom: 7.3rem;
}
.job_dl dt{
    color: #000;
    width: 41.5rem;
}
.job_dl dd{
    width: 46rem;
}
.job_dl dd img{
    border-radius: 1rem 1rem 0 0;
}
.job_dl .title{
    font-size: 2.3rem;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.job_contact{
    margin: 12.7rem auto 0;
    max-width: 72rem;
    border: 2px solid #1F215C;
    border-radius: 1rem;
    padding: 5.2rem 2rem 6rem;
    text-align: center;
    background: #EFF5F8;
}
.job_contact_title{
    font-size: 2.9rem;
    font-weight: 900;
    margin-bottom: 1.4rem;
}
.job_contact .link_arrow_wrap{
    right: 2rem;
    width: 6.5rem;
    height: 4.9rem;
}
.job_contact .btn_link01{
    width: 32.2rem;
    height: 9rem;
    font-size: 2rem;
}

.job_sec02{
    padding: 18rem 0;
}
.job_sec02_hd{
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    color: #1F215C;
    margin-bottom: 4rem;
}
.job_list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 4rem;
}
.job_list_item{
    border-radius: 1rem;
    border: 2px solid #1F215C;
    overflow: hidden;
    color: #000;
}
.job_list_item .img_box{
    padding-top: 23.4rem;
}
.job_list_cont{
    padding: 2rem 3.5rem 5rem;
}
.job_list_hd{
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 1.4rem;
}
.job_list_item dl+dl{
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #1F215C;
}
.job_list_item dl{
    display: flex;
    align-items: flex-start;
}
.job_list_item dt,
.job_list_item dd{
    font-size: 1.7rem;
    line-height: 3rem;
    font-weight: 500;
}
.job_list_item dt{
    width: 8rem;
    font-weight: bold;
}
.job_list_item dd{
    width: calc(100% - 8rem);
}
.job_list_item dl p+p{
    margin-top: 1rem;
}
.job_list_btn{
    margin-top: 3rem;
    text-align: center;
}
.job_list_btn .btn_link01{
    width: 29rem;
}
.job_list_btn .btn_link01+.btn_link01{
    margin-top: 3rem;
    background-color: #EFF5F8;
}

.job_back_btn{
    text-align: center;
    margin-top: 10rem;
}
.job_back_btn .btn_link01{
    width: 26rem;
    padding: 0;
    justify-content: center;
}

/*recruit*/
#recruit #teaser{
    min-height: calc(100dvh - 9.6rem);
    background: url(../img/recruit/bg_linear.png)no-repeat bottom center;
    background-size: 100% 62.4%;
}
.recruit_teaser_p01{
    font-size: 3rem;
    font-weight: 900;
    margin: 11rem 0 1.5rem;
}
.recruit_teaser_p02{
    font-size: 1.7rem;
    line-height: 1.76;
    font-weight: bold;
}

.recruit_wrap{
    position: relative;
}
.recruit_wrap:before{
    content: '';
    position: fixed;
    z-index: -1;
    left: 0;
    top: 9.6rem;
    width: 100%;
    height: calc(100dvh - 9.6rem);
    background: url(../img/recruit/bg_fixed.jpg)no-repeat center center;
    background-size: cover;
}
.recruit_wrap .hd_small_eng{
    font-size: 4.2rem;
}

.recruit_sec01{
    background: #fff;
    padding: 14rem 0;
}
.recruit_sec01 .inner{
    max-width: 116rem;
}

.lcl-sec-sbs{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding-top: 105vh;
}
.lcl-sec-sbs-graph {
    width: 49.6rem;
    position: relative;
    z-index: 3;
}
.lcl-sec-sbs-graph__in{
    padding-top: 3rem;
}
.lcl-sec-sbs-main {
    width: 50.9rem;
}
.lcl-sec-sbs-main-association{
    position: relative;
    top: -11rem;
}

.recruit_sec01_item+.recruit_sec01_item{
    margin-top: 2.8rem;
}
.recruit_sec01_item{
    background: #EFF5F8;
    border-radius: 1rem;
    padding: 5.2rem 5.5rem 6rem;
}
.recruit_sec01_item .title{
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.recruit_sec02{
    position: relative;
    padding: 14rem 0;
    color: #fff;
    background: rgba(0,0,0,.1);
    backdrop-filter: blur(8px);
}
.recruit_sec02_p01{
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 3.3rem;
}
.recruit_list01{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 2.6rem;
}
.recruit_list01_item{
    width: calc(50% - 1.3rem);
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 5.3rem 5.5rem;
}
.recruit_list01_item.big{
    width: 100%;
    text-align: center;
}
.recruit_list01_title{
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: #1F215C;
}
.recruit_list01_ul{
    display: flex;
    justify-content: center;
    grid-gap: 1.9rem;
    margin-bottom: 3rem;
}
.recruit_list01_ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20.6rem;
    height: 8.3rem;
    border-radius: 1rem;
    background: #EFF5F8;
    color: #1F215C;
    font-size: 1.7rem;
    font-weight: 900;
}
.recruit_list01_item dl{
    display: flex;
    justify-content: center;
    grid-gap: 4.5rem;
}
.recruit_list01_item dt{
    width: 32.2rem;
}
.recruit_list01_item dd{
    width: 38.5rem;
    text-align: left;
}
.recruit_list01_item dt img{
    border-radius: 1rem;
}

.recruit_sec02_p02{
    text-align: center;
    font-size: 3rem;
    line-height: 1.4;
    font-weight: 900;
    margin: 9.2rem 0 3rem;
}
.recruit_list02{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 1.7rem;
}
.recruit_list02 li{
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 5rem 2rem 3.5rem;
    text-align: center;
}
.recruit_list02 dt{
    background: url(../img/top/bg_icon.png)no-repeat center center;
    background-size: 11rem auto;
}
.recruit_list02 dt img{
    width: 11rem;
}
.recruit_list02 dd{
    margin-top: 3.2rem;
    font-size: 1.7rem;
    font-weight: 900;
    color: #1F215C;
}

.recruit_sec03{
    padding-top: 17.5rem;
    background: #fff;
}
.daily_intro{
    position: absolute;
    left: calc(50% + 16rem);
    top: 0;
    z-index: 2;
    padding-bottom: 5rem;
    width: 22.8rem;
    text-align: center;
    background: url(../img/recruit/bg_popup.png)no-repeat bottom center;
    background-size: 100% auto;
}
.daily_intro_photo img{
	width: 17.4rem;
    /* border-radius: .8rem; */
    text-align: center;
    padding-left: 3rem;
}
.daily_intro_name{
    font-size: 2rem;
    font-weight: 900;
    margin: .7rem 0 .4rem;
}
.daily_intro_position{
    font-size: 1.7rem;
    color: #000;
}
.recruit_sec03_list{
    margin-top: 4rem;
    position: relative;
    display: grid;
    grid-gap: 4.4rem;
}
.recruit_sec03_list:before{
    content: '';
    position: absolute;
    left: 5.85rem;
    top: 1%;
    z-index: -1;
    width: 2px;
    height: 98%;
    transform: translateX(-50%);
    background: #1F215C;
}
.recruit_sec03_list dl{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    grid-gap: 2.6rem;
}
.recruit_sec03_list dt{
    width: 11.7rem;
    height: 14.2rem;
    border-radius: 1rem;
    border: 2px solid currentColor;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.7rem;
    font-weight: 900;
    background: #fff;
}
.recruit_sec03_list dd{
    width: calc(100% - 11.7rem - 2.6rem);
}
.recruit_sec03_list_title{
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
} 

.recruit_sec03_box{
    margin-top: 5rem;
    background: #EFF5F8;
    border-radius: 1rem;
    padding: 4.5rem 2rem 5rem;
    text-align: center;
}
.recruit_sec03_box_title{
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.recruit_sec04{
    background: #fff;
    padding-top: 17.8rem;
}
.faq_list{
    display: grid;
    grid-gap: 2rem;
}
.faq_list dl{
    border-radius: 1rem;
    background: #EFF5F8;
    border: 2px solid #EFF5F8;
}
.faq_list dl.is-active{
    border-color: #1F215C;
}
.faq_list dl dt{
    display: flex;
    align-items: center;
    min-height: 7rem;
    padding: 2.2rem 11.2rem 2.2rem 6rem;
    background:url(../img/recruit/faq_open.svg)no-repeat right 2.4rem center;
    background-size: 5.3rem auto;
    position: relative;
    z-index: 2;
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1.5;
    color: #000;
    font-weight: bold;
}
.faq_list dl dt.is-active{
    background:url(../img/recruit/faq_close.svg)no-repeat right 2.4rem center;
    background-size: 5.3rem auto;
}
.faq_list dl dt:before{
    content: 'Q';
    position: absolute;
    z-index: 2;
    left: 2.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: #1F215C;
    font-size: 2rem;
    font-weight: bold;
}
.faq_list dl dd{
    display: none;
    padding: 0 11.2rem 4.2rem 6rem;
}
.faq_list dl dd .common_text{
    position: relative;
    background: #fff;
    padding: 4.8rem 4.8rem;
    border-radius: 1rem;
}
.faq_contact{
    margin: 7rem auto 0;
    max-width: 61.8rem;
    border: 2px solid #1F215C;
    border-radius: 1rem;
    padding: 5.6rem 2rem;
    text-align: center;
}
.faq_contact.rec_contact{
	margin: 3rem auto 7rem;
	background-color: #EFF5F8;
}
.rec_contact .faq_contact_title{
	color:#1F215C;
}
.faq_contact_title{
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: .6rem;
    color: #000;
}
.faq_contact_btn{
    margin-top: 3rem;
}


.recruit_sec05{
    background: #fff;
    padding: 19rem 0 16rem;
}
/* !wp-pagenavi
---------------------------------------------------------- */
.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 2rem;
    width: 100%;
    margin: 6.8rem auto 0;
    position: relative;
    padding: 0;
    text-align: center;
}

.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .pages {
    display: none;
}

.wp-pagenavi a, 
.wp-pagenavi span {
    border: 0;
    padding: 0;
    margin: 0;
}

.wp-pagenavi .page {

}

.wp-pagenavi a, 
.wp-pagenavi .current {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 2.5rem;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
    color: #1F215C;
    border: 2px solid #1F215C;
    border-radius: 50%;
}
.wp-pagenavi .current,
.wp-pagenavi a:hover{
    text-decoration: none;
    opacity: 1;
    color: #fff;
    background: #1F215C;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink{
    margin: 0 3rem;
    font-size: 0;
    background: url(../img/common/page_prev.svg)no-repeat center center #fff;
    background-size: 1.9rem auto;
}
.wp-pagenavi .nextpostslink {
    background: url(../img/common/page_next.svg)no-repeat center center #fff;
    background-size: 1.9rem auto;
}
.wp-pagenavi .previouspostslink:hover{
    background: url(../img/common/page_prev_hover.svg)no-repeat center center #1F215C;
    background-size: 1.9rem auto;
}
.wp-pagenavi .nextpostslink:hover{
    background: url(../img/common/page_next_hover.svg)no-repeat center center #1F215C;
    background-size: 1.9rem auto;
}

/*news*/
.common_teaser#teaser{
    padding-bottom: 1.7rem;
}
.news_wrap{
    padding: 11.3rem 0 19.6rem;
}
.news_select{
    margin-bottom: 6rem;
    width: 29rem;
    height: 5rem;
    border: 1px solid #B7B7B7;
    border-radius: .5rem;
    background: url(../img/common/arrow_select.svg)no-repeat right 1.3rem center #fff;
    background-size: 1.4rem auto;
    padding: 0 1.6rem;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .1em;
    color: #A8AFB7;
}
.news_list .categ{
    display: inline-block;
    margin-left: 1.5em;
}

/*news_detail*/
.news_detail_wrap{
    padding: 8.8rem 0 15rem;
}
.news_detail_date{
    font-size: 1.7rem;
    letter-spacing: .08em;
    margin-bottom: 3rem;
}
.news_detail_hd{
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: .08em;
    margin-bottom: 1.4rem;
}
.news_detail_cont p,
.news_detail_cont{
    font-size: 1.7rem;
    line-height: 2.05;
    color: #000000;
}
.news_detail_cont p+p{
    margin-top: 3.5rem;
}
.news_detail_cont h2{
    font-size: 2rem;
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: .08em;
    text-decoration: underline;
    margin-bottom: 1.75rem;
    color: #1F215C;
}

div#toc_container,
.table_contents{
    width: 100%;
    display: block;
    margin: 4rem 0 8rem;
    border: 1px solid #1F215C;
    border-radius: 1rem;
    padding: 3.6rem 3.9rem;
}
#toc_container p.toc_title,
.table_contents_title{
    text-align: left;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #000000;
}
#toc_container p.toc_title+ul.toc_list{
    margin-top: 1.4rem;
}
.toc_list,
.table_contents ul{
    display: grid;
    grid-gap: 1rem;
    line-height: 1.5;
}
#toc_container a,
.table_contents a{
    display: inline-block;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: .12em;
    text-decoration: underline;
}
.toc_number {
    display: none;
}
.wp-block-heading span {
  padding-top: 9.6rem;
}

.wp-block-group+.wp-block-group,
.paragraph_box+.paragraph_box{
    margin-top: 10rem;
}
.news_detail_cont figure{
    display: block;
    width: 75.2rem;
    max-width: 100%;
    margin: 5.5rem auto 0;
}
.news_detail_cont figure img{
    border-radius: 1rem;
}

.news_detail_btn{
    margin-top: 8.8rem;
    text-align: center;
}
.btn_link01.no_arrow{
    width: 26rem;
    justify-content: center;
}

/*contact*/
.entry_wrap{
    padding: 8.4rem 0 15rem;
    color: #000;
}
.entry_wrap .inner{
    max-width: 74.4rem;
}

.step_list{
    display: flex;
    justify-content: center;
    grid-gap: 5.5rem;
    margin-bottom: 4.7rem;
    position: relative;
}
.step_list:before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 1;
    width: 28.4rem;
    height: 1px;
    background: #1F215C;
}
.step_list li{
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: .08em;
    color: #84858E;
    position: relative;
    z-index: 2;
    padding-top: 3.8rem;
}
.step_list li:after,
.step_list li:before{
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,-50%);
    z-index: 2;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: #1F215C;
}
.step_list li:after{
    opacity: 0;
    z-index: 1;
    width: 4.9rem;
    height: 4.9rem;
    background: #EFF5F8;
    border: 1px solid #1F215C;
}


.contact_top{
    text-align: center;
    font-size: 1.7rem;
    line-height: 2.05;
    margin-bottom: 5.8rem;
}
.contactTable{
    width: 100%;
}
.contactTable th,
.contactTable td{
    display: block;
    font-size: 1.7rem;
    letter-spacing: .1em;
    padding-bottom: 5rem;
}
.contactTable th{
    font-weight: bold;
    text-align: left;
    display: flex;
    align-items: center;
    grid-gap: 1rem;
    padding-bottom: 1.3rem;
}
.contactTable th span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: .1em;
    color: #EB1210;
    font-size: 1.4rem;
    font-weight: 500;
}
.contactTable th span.required{
}
.contactTable th font{
}

.file_box,
.contactTable input[type=text],
.contactTable input[type=tel],
.contactTable input[type=email],
.contactTable select,
.contactTable textarea{
    width: 100%;
    height: 6rem;
    border-radius: .5rem;
    background: #fff;
    color: #000;
    padding: 0 1.6rem;
    font-size: 1.7rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    border: 1px solid #B7B7B7;
    box-shadow: inset .3rem .3rem .6rem rgba(0,0,0,.16);
}
.file_box{
    padding-left: 16rem;
    position: relative;
    display: flex;
    align-items: center;
}
.contactTable input[type=file]{
    position: absolute;
    left: 0;
    opacity: 0;
}
.file_label{
    cursor: pointer;
    position: absolute;
    left: 1.1rem;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
    width: 13.6rem;
    height: 3.1rem;
    border-radius: .5rem;
    background: #A8A8A8;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.file_txt{

}
.file_note{
    font-size: 1.4rem;
    font-weight: 500;
    margin-top: 1.1rem;
}
.contactTable select {
    background: url(../img/common/arrow_select.svg) no-repeat right 2.8rem center #fff;
    background-size: 2rem auto;
    padding: 0 6rem 0 1.6rem;
}
.contactTable .birth_box select {
    background: url(../img/common/arrow_select.svg) no-repeat right 2rem center #fff;
    background-size: 2rem auto;
}
.contactTable textarea{
    resize: none;
    min-height: 17rem;
    padding: 1.5rem 1.6rem;
}

textarea::-webkit-input-placeholder{ /*WebKit browsers*/
  color: #B4B4B4;
}
textarea::-moz-input-placeholder{ /*Mozilla Firefox*/
  color: #B4B4B4;
}
textarea::-ms-input-placeholder{ /*Internet Explorer*/ 
  color: #B4B4B4;
}
input::-webkit-input-placeholder{ /*WebKit browsers*/
  color: #B4B4B4;
}
input::-moz-input-placeholder{ /*Mozilla Firefox*/
  color: #B4B4B4;
}
input::-ms-input-placeholder{ /*Internet Explorer*/ 
  color: #B4B4B4;
}
.p-postal-code{
    max-width: 23.6rem!important;
}
.span_zip{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #1F215C;
    color: #fff;
    border-radius: .5rem;
    font-size: 1.7rem;
    font-weight: bold;
    padding: 0 3.2rem;
    height: 6rem;
    margin-left: 2.7rem;
    pointer-events: none;
}
.formItem+.formItem{
    margin-top: 1.6rem;
}
.formItemHd{
    font-size: 1.6rem;
    margin-bottom: .7rem;
}
.formItemHd span{
    font-size: 1.5rem;
    color: #9F9F9F;
}
.formNotes{
    font-size: 1.3rem;
    color: #666;
}
.formNotes p+p{
    margin-top: 1.9rem;
}
.formNotes a{
    color: #00A04E;
    text-decoration: underline;
}
.formNotes a:hover{
    text-decoration: none;
    opacity: 1;
}

.formAgree{
}
.formAgree a{
    color: #1F215C;
    border-bottom: 1px solid currentColor;
}
.formAgree a:hover{
    border-color: transparent;
    text-decoration: none;
}
.formButton{
    margin-top: 4rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    grid-gap: 6rem;
}
.formButton .btn_link01{
    width: 42rem;
    height: 8rem;
    padding: 0;
}
.formButton .btn_form{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    letter-spacing: 0.03em;
    font-weight: 900;
    color: #1F215C;
    border-radius: 1rem;
    transition: opacity .3s;
    background: none;
    border: 0;
    box-shadow: none;
    position: relative;
    z-index: 9;
    padding-right: 3.5rem;
}
.formButton .disabled{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .5;
    pointer-events: none;
}

.formRadio .wpcf7-radio,
.formRadio,
.formCheckbox .wpcf7-checkbox{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    grid-gap: 1rem 3rem;
}

.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item{
    /*width: 100%;*/
}
.formRadio label,
.formCheckbox label {
    display: flex;
    font-size: 1.7rem;
    line-height: 1.5;
    font-weight: bold;
    color: #2B2B2B;
    position: relative;
    cursor: pointer;
}

.formRadio label input[type="radio"],
.formCheckbox label input[type="checkbox"] {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    opacity: 0;
}

.formRadio label span {
    position: relative;
    z-index: 2;
    padding: 1.7rem 3rem;
    color: #8E8E8E;
    display: inline-block;
    font-weight: bold;
}

.formRadio label span:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    background: #EAEAEA;
    content: '';
    z-index: -1;
}

.formRadio label input[type="radio"]:checked + span{
    color: #fff;
}
.formRadio label input[type="radio"]:checked + span:before {
    background: #1F215C;
}

.formAgree .formCheckbox{
}
.formAgree .formCheckbox label{
    width: 34.4rem;
    height: 5.8rem;
    margin: 3rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EFF5F8;
    border-radius: .5rem;
    font-size: 1.7rem;
    letter-spacing: .08em;
}
.formCheckbox label span {
    position: relative;
    z-index: 2;
    padding-left: 4.4rem;
    display: inline-block;
    font-weight: bold;
}

.formCheckbox label span:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3.4rem;
    height: 3.4rem;
    border-radius: .5rem;
    background: #fff;
    border: 2px solid #1F215C;
    content: '';
    z-index: 1;
}

.formCheckbox label span:after {
    position: absolute;
    left: .7rem;
    top: .6rem;
    width: 1.8rem;
    height: 1rem;
    border: .5rem solid #1D1D1D;
    border-width: 0 0 .3rem .3rem;
    transform: rotate(-45deg);
    content: '';
    z-index: 2;
    opacity: 0;
}

.formCheckbox label input[type="checkbox"]:checked + span:after {
    opacity: 1;
}

.wpcf7-list-item{
    margin: 0;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: normal;
    display: block;
    position: absolute;
    white-space: nowrap;
}

.confirmWrap .contactTable td{
    font-size: 2rem;
    line-height: 1.35;
}


.birth_box p,
.birth_box{
    display: flex;
    align-items: center;
}
.birth_box select{
    width: 15.2rem;
}
.birth_box select.birth_year{
    width: 21.4rem;
}
.birth_line{
    opacity: 0;
    width: 3.2rem;
}

/*confirm*/
.confirm_wrap{
    padding: 11.8rem 0 13rem;
}
.confirm_hd{
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.confirm_hd span{
    width: 24.6rem;
    height: 6.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: .08em;
    background: #2B2B2B;
    color: #fff;
}
.confirm_top{
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: .12em;
    margin-bottom: 6rem;
}
.confirm_box{
    background: #fff;
    padding: 7.6rem 18.5rem 6rem;
}
.confirm_table{
    width: 100%;
}
.confirm_table th,
.confirm_table td{
    display: block;
    font-size: 1.7rem;
    line-height: 2.05;
    font-weight: 500;
    letter-spacing: .03em;
    text-align: left;
}
.confirm_table th{
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: bold;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid #707070;
    margin-bottom: 1.3rem;
}
.confirm_table tr{
    display: block;
    margin-bottom: 5.7rem;
}
.btn_back .btn_link01{
    background: #F0F0F0;
    width: 26rem;
}

/*thanks*/
.thanks_wrap{
    padding: 11.5rem 0 20rem;
    background: url(../img/common/bg_thanks_linear.png)no-repeat top center,
    url(../img/common/bg_thanks.jpg)no-repeat bottom center;
    background-size: 100% 100%,cover;
    text-align: center;
}
.thanks_hd{
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 1.7rem;
}
.thanks_txt a{
    color: #000;
}
.thanks_btn{
    margin-top: 5.8rem;
}
.thanks_btn .btn_link01{
    width: 30rem;
}

.count_down{
    color: #5C5F62;
    letter-spacing: .1em;
    margin-top: .5rem;
}

textarea+.wpcf7-not-valid-tip{
    margin-top: 1.8em;
}
.formAgree .wpcf7-list-item{
    width: 100%;
}
.formButton p{
    width: 100%;
    height: 100%;
}
.wpcf7-previous {
	display: block !important;
}

/*mv form*/
.mw_wp_form .horizontal-item + .horizontal-item{
	margin: 0 !important;
}

.mw_wp_form_confirm .formButton .disabled{
    -webkit-filter: grayscale(0%)!important;
    filter: grayscale(0%)!important;
    opacity: 1!important;
    pointer-events: auto!important;
}
.mw_wp_form_confirm .rec_contact,
.mw_wp_form_confirm .email_confirm,
.mw_wp_form_confirm .formAgree,
.mw_wp_form_confirm .contact_top,
.mw_wp_form_confirm .count_down,
.mw_wp_form_confirm .span_zip,
.mw_wp_form_confirm .contactTable th span.required{
    display: none!important;
}
.mw_wp_form_confirm .contactTable th, 
.mw_wp_form_confirm .contactTable td {
    display: block;
    font-size: 1.7rem;
    line-height: 2.05;
    font-weight: 500;
    letter-spacing: .03em;
    text-align: left;
    padding-bottom: 5.7rem;
}
.mw_wp_form_confirm .contactTable th {
    line-height: 1.5;
    letter-spacing: .12em;
    font-weight: bold;
    padding-bottom: 1.1rem;
    border-bottom: 1px solid #707070;
    margin-bottom: 1.3rem;
}
.mw_wp_form_confirm .birth_line{
    opacity: 1;
    width: auto;
}


.mw_wp_form_input .step_list li:nth-of-type(1),
.mw_wp_form_confirm .step_list li:nth-of-type(2){
    color: #1F215C;
}
.mw_wp_form_input .step_list li:nth-of-type(1):before,
.mw_wp_form_confirm .step_list li:nth-of-type(2):before{
    width: 1.9rem;
    height: 1.9rem;
}
.mw_wp_form_input .step_list li:nth-of-type(1):after,
.mw_wp_form_confirm .step_list li:nth-of-type(2):after{
    opacity: 1;
}
.contact_tel_row{
    display: flex;
    align-items: flex-start;
}
.formRadio .error{
    width: 100%;
}

#sitemap h1 span,
#cookie h1 span,
#term h1 span,
#privacy h1 span {
	display: flex;
	justify-content: center;
}

