@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{
	display: none;
}

select,
input[type=radio],
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: "Zen Kaku Gothic Antique", 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: "Zen Kaku Gothic Antique", 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 ~ 1366px***/
@media screen and (min-width: 751px) and (max-width: 1366px) {
    html {
        font-size: 0.732vw;
    }
}

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

body {
    font-family: "Zen Kaku Gothic Antique", serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    -webkit-text-size-adjust: none;
    font-weight: normal;
    color: #2B2B2B;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.font_eng {
  font-family: "Kanit", serif;
  font-weight: 500;
  font-style: normal;
}
/* !Base Fonts -------------------------------------------------------------- */
a {
    color: #2B2B2B;
    text-decoration: none;
}

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

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

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

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

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

.is-hide {
    display: none;
}



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

body.home,
.menuOpen{
    overflow: hidden;
    height: 100vh;
}

body.home.cookie_loaded,
body.home.loaded_finish{
    overflow: visible;
    height: auto;
}


.inner02,
.inner {
    margin: 0 auto;
    width: 100%;
    position: relative;
    max-width: 136.6rem;
    padding: 0 13.9rem;
}
.inner02 {
    padding: 0 8.5rem;
}
/* !header
---------------------------------------------------------- */
#header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    width: 100%;
    max-width: 100%;
    background: #2B2B2B !important;
    padding: 0 3.5rem 0 1.7rem;
}

.home #header{
  background: transparent;
  position: absolute;
  transition: background .5s;
}

.home #header.is_fixed{
    background: #2B2B2B;
    position: fixed;
}

.header-inner {
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    width: 27.37rem;
}

.btn-menu {
    display: none;
}

@media screen and (min-width: 751px) {
    #g-navi{
        display: flex;
        align-items: center;
        grid-gap: 2.5rem;
    }
    .nav_link{
        display: flex;
        align-items: center;
        grid-gap: 1.7rem;
    }
    .nav_link a{
        font-size: 1.6rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        color: #fff;
    }
}

@media screen and (min-width: 1400px) {
    .nav_link{
        grid-gap: 2.3rem;
    }
}
/*** hover ***/
@media screen and (min-width: 960px) {}

/* !global navigation
---------------------------------------------------------- */
#g-navi {}

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

/* !breadcrumb
---------------------------------------------------------- */
#breadcrumb {
    width: 100%;
    background: #FFD64A;
}

#breadcrumb .inner {
    max-width: 100%;
    padding: .7rem 1.7rem;
}

#breadcrumb ul {
    display: flex;
}

#breadcrumb ul li {
    word-break: keep-all;
    white-space: nowrap;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: bold;
    letter-spacing: .08em;
    position: relative;
}

#breadcrumb ul li + li {
    padding-left: 1.5em;
}

#breadcrumb ul li + li:before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    content: '/';
    width: 1.5em;
    height: 100%;
    text-align: center;
}

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

#breadcrumb ul li a {

}
/* !teaser
---------------------------------------------------------- */
.bg_teaser{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 46rem;
    /*padding-top: 60vh;*/
    clip-path: ellipse(75% 130% at 34% -30%);
}
.bg_teaser img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover;
    transition: transform .2s linear;
}

.teaser_hd{
    position: absolute;
    right: 18rem;
    bottom: -2rem;
    display: flex;
    align-items: flex-end;
}
.teaser_hd .jap{
    flex-direction: row-reverse;
    display: flex;
    align-items: flex-end;
    grid-gap: 1.5rem;
    padding-right: 1rem;
}
.teaser_hd .jap span{
    font-size: 3.8rem;
    letter-spacing: .2em;
    font-weight: bold;
    color: #fff;
    background: #2B2B2B;
    padding: 2.8rem .4rem 1.8rem;
    writing-mode: vertical-rl;
    writing-mode: tb-rl;
    display: flex;
}
.teaser_hd .eng{
    font-size: 3rem;
    transform: rotate(90deg);
    transform-origin: right bottom;
    position: absolute;
    bottom: 0;
    right: 0;
    white-space: nowrap;
}
/* !loading
---------------------------------------------------------- */
.animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
.wow{
    opacity: 0;
}
.wow.animated{
    opacity: 1;
}
.loading_box{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: #fff;

    transition: opacity 2s;
    transition-delay: 3s;
}
.cookie_loaded .loading_box,
.is_load .loading_box{
    opacity: 0!important;
    pointer-events: none;
}
.cookie_loaded .loading_box{
    transition: all 0s ease;
    transition-delay: 0s!important;
}

.loading_logo img{
    width: 11rem;
}
.loading_txt{
    font-size: 2rem;
    margin: 1.4rem 0 1.7rem;
}
.loading_progressbar{
    width: 35.2rem;
    height: 2px;
    background: #2B2B2B;
    margin: 0 auto;
    position: relative;
}
.o-progressbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background:#FFD64A;
    transition: width 3s cubic-bezier(0,0,.2,1) .5s;
}

/*
.animation_circle{
    animation: circle 4s infinite linear;
}
*/

@keyframes circle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* !main Visual
---------------------------------------------------------- */
#main-visual {
    position: relative;
    height: calc(100vh - 10rem);
    min-height: 56.7rem;
    max-height: 66.9rem;
    background: url(../img/top/bg_mv.png)no-repeat bottom center;
    background-size: cover;
}
.mvSlider{
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    min-height: 66.7rem;
    max-height: 76.9rem;
}
.mvSlider .img_box{
    padding-top: 0;
    min-height: 66.7rem;
    max-height: 76.9rem;
    height: 100vh;
    /*clip-path: ellipse(110% 100% at 50% 0%);*/
}

/*
.mvSlist .img_box img{
    transform: scale(1);
    transition: transform linear 6s;
}
.mvSlist.active .img_box img{
    transform: scale(1.1);
}
*/

/* !contents
---------------------------------------------------------- */
#contents {}

#main {}

#side {}

.inner {}

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

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

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

/* !footer
---------------------------------------------------------- */
#footer {
    background: #fff;
}

.footer_contact{
	position: relative;
    background: #FFD64A;
    border-radius: 3rem 3rem 0 0;
    padding: 10.8rem 0;
    margin-top: -2rem;
}

.footer_contact_box{
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.footer_contact_item01{
    padding-top: 1rem;
    text-align: left;
}

.footer_contact_item01 .hd{
    font-size: 5rem;
    line-height: 1.4;
}

.footer_contact_item01 .txt{
    font-size: 2rem;
    line-height: 2.25;
    font-weight: bold;
}

.footer_contact_box .icon img{
    width: 5.9rem;
    margin-bottom: 1.2rem;
}

.footer_contact_box .ttl{
    font-size: 2.5rem;
    font-weight: 900;
}

.footer_contact_box .tel{
    font-size: 5rem;
    line-height: 1.5;
}

.footer_contact_box .time{
    font-size: 1.4rem;
    font-weight: bold;
}

.footer_contact_box .btn_link01{
    width: 32rem;
    margin-top: 1.8rem;
}

.footer_box{
    padding: 8rem 0 5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer_logo {
    width: 27.37rem;
}

.footer_addr{
    font-size: 1.6rem;
    font-weight: bold;
    margin: 2rem 0 1.5rem;
}

.footer_tel{
    line-height: 1.875;
    font-size: 1.6rem;
    font-weight: bold;
}

.footer_box_right{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
}

.footer_link01{
    margin-bottom: 3rem;
    display: flex;
    grid-gap: 3rem 4.4rem;
}

.footer_link01 li+li{
    margin-top: 3rem;
}

.footer_link01 a{
    display: flex;
    padding-left: 2rem;
    background: url(../img/common/link_footer.svg)no-repeat left center;
    background-size: 1.5rem auto;
    letter-spacing: 0.08em;
    font-size: 1.6rem;
    font-weight: bold;
}

.footer_link02{
    display: flex;
    justify-content: flex-end;
    grid-gap: 2.7rem;
}

.footer_link02 a{
    font-size: 1.4rem;
    color: #B4B4B4;
    letter-spacing: 0.08em;
}

#copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.5rem;
    background: #2B2B2B;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

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


/*common*/
.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 .2s linear;
}

@media screen and (min-width: 960px) {
    a:hover .img_box img{
        transform: scale(1.1);
    }
}

.btn_link01 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 26rem;
  max-width: 100%;
  height: 5rem;
  border-radius: 3rem;
  overflow: hidden;
  outline: none;
  color: #2B2B2B;
  background: #fff;
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
}
.btn_link01::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  transition-property: transform;
  background: #2B2B2B;
}
.btn_link01:after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: url(../img/common/btn_link01.svg)no-repeat right 1.4rem center;
    background-size: 1.4rem auto;
    transition: background 0.5s ease;
}
.btn_link01 span,
.btn_text {
  position: relative;
}

.btn_link01.black{
    color: #fff;
    background: #2B2B2B;
}
.btn_link01.yellow_hover::before,
.nav_contact .btn_link01::before,
.btn_link01.black::before {
    background: #FFD64A; 
}
.btn_link01.white_hover::before {
    background: #fff; 
}
.btn_link01.black:after{
    background: url(../img/common/btn_link01_white.svg)no-repeat right 1.6rem center;
    background-size: 1.5rem auto;
}

.btn_link01.gray{
    color: #fff;
    background: #747474;
}
.btn_link01.gray:after{
    background: url(../img/common/btn_link01_gray.svg)no-repeat right 1.6rem center;
    background-size: 1.5rem auto;
}
@media screen and (min-width: 751px) {
    .btn_link01:hover {
      color: #fff;
      opacity: 1;
    }
    .btn_link01:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }
    .btn_link01:hover:after{
        background: url(../img/common/btn_link01_white.svg)no-repeat right 1.6rem center;
        background-size: 1.5rem auto;
    }

    .btn_link01.gray:hover,
    .nav_contact .btn_link01:hover,
    .btn_link01.black:hover {
        color: #2B2B2B;
    }
    .btn_link01.gray:hover:after,
    .nav_contact .btn_link01:hover:after,
    .btn_link01.black:hover:after{
        background: url(../img/common/btn_link01.svg)no-repeat right 1.6rem center;
        background-size: 1.5rem auto;
    }
}

/*products*/
.products_wrap{
    padding: 11rem 0 7rem;
}

.products_list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 4.3rem 3.5rem;
}

.products_list li{
    display: block;
    box-shadow: 0 .3rem .6rem rgba(0,0,0,.16);
    padding: 2rem;
    background: #fff;
    transition: box-shadow .5s;
}

/*
.products_list a{
    display: block;
    box-shadow: 0 .3rem .6rem rgba(0,0,0,.16);
    padding: 2rem;
    background: #fff;
    transition: box-shadow .5s;
}
*/

@media screen and (min-width: 751px) {
    /*
    .products_list a:hover{
        opacity: 1;
        box-shadow: 0 .1rem .2rem rgba(0,0,0,.16);
    }
    */
}

.products_list .img_box{
    border: 1px solid #EDEDED;
    padding-top: 100%;
}

.products_list .ttl{
    font-size: 2rem;
    font-weight: bold;
    margin: 1.4rem 0 1rem;
}

.products_list .txt{
    font-size: 1.4rem;
    color: #B4B4B4;
    font-weight: bold;
}

.products_list .txt p+p{
    margin-top: .5rem;
}

.products_bottom{
    margin-top: 8rem;
    background: #FFD64A;
    border-radius: 7rem;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.6;
    text-align: center;
    padding: 2rem;
}

/*news*/
.single-recruit #footer,
.single-recruit #wrapper,
#contact #footer,
#contact #wrapper,
.bg_gray #footer,
.bg_gray #wrapper,
#column #footer,
#column #wrapper,
#news #footer,
#news #wrapper,
#faq #wrapper,
#policy #wrapper,
#notation #wrapper,
#sitemap #wrapper,
.single #wrapper,
.post-type-archive-column #wrapper,
.tax-column-cat #wrapper,
#entry #wrapper,
#entry02 #wrapper,
#entry-confirm #wrapper,
#entry-error #wrapper,
#confirm #wrapper{
    background: #F7F7F7;
}

.news_wrap{
    padding: 4.2rem 0 7rem;
}

.news_wrap .inner{
    padding: 0 23rem;
}

.news_list a{
    display: flex;
    align-items: center;
    height: 9.2rem;
    border-bottom: 1px solid #B7B7B7;
}

.news_list .date{
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: .1em;
    color: #B4B4B4;
    width: 13.2rem;
}

.news_list .txt{
    width: calc(100% - 13.2rem);
    font-size: 1.6rem;
    font-weight: bold;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/* !wp-pagenavi
---------------------------------------------------------- */
.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 3.2rem;
    width: 100%;
    margin: 6rem 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: auto;
    height: auto;
    border-radius: 0;
    font-size: 3rem;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color .3s;
}

.wp-pagenavi a:hover,
.wp-pagenavi .current {
    color: #FFD64A;
    opacity: 1;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    color: transparent!important;
    width: 3.5rem;
    height: 3.5rem;
}

.wp-pagenavi .previouspostslink {
    background: url(../img/common/page_prev.svg)no-repeat center center;
    background-size: 100% auto;
}

.wp-pagenavi .nextpostslink {
    background: url(../img/common/page_next.svg)no-repeat center center;
    background-size: 100% auto;
}


/*column*/
.column_wrap,
.faq_wrap{
    padding: 7.5rem 0 8rem;
}

.column_categ{
    margin-bottom: 7rem;
}

.column_categ_hd{
    font-size: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2B2B2B;
    margin-bottom: 2rem;
}

.column_categ_list{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 2rem 1.5rem;
}

.column_categ_list a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 2.6rem;
    border-radius: 1.5rem;
    padding: 0 1.8rem;
    white-space: nowrap;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    font-weight: bold;
    border: 1px solid #2B2B2B;
    transition: all .5s;
}

.column_categ_list a:hover,
.column_categ_list a.is_active{
    background: #2B2B2B;
    color: #fff;
    opacity: 1;
}

.column_count{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.column_count span{
    font-size: 2rem;
}

.column_list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 4.3rem 3.5rem;
}

.column_list li img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.column_list a{
    display: block;
    padding: 1.7rem;
    background: #fff;
}

@media screen and (min-width: 751px) {
    .column_list a:hover{
        opacity: 1;
    }
}

.column_list .img_box{
    margin-bottom: .7rem;
    padding-top: 64.6%;
}

.column_list .ttl{
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    margin-top: 1rem;
}

.column_date{
    font-size: 1.4rem;
    font-weight: bold;
    color: #B4B4B4;
    margin-bottom: .6rem;
    background: url(../img/column/icon_date.svg)no-repeat left center;
    background-size: 1.33rem auto;
    padding-left: 2rem;
}

.categ_span {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 1.5rem;
}

.categ_span span{
    font-size: 1.2rem;
    font-weight: bold;
    color: #B4B4B4;
}

/*column_detail*/
.column_detail_wrap{
    padding: 9rem 0;
}

.column_detail_wrap .inner02{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.detail_main{
    width: calc(100% - 5rem - 34.6rem);
    background: #fff;
    padding: 4.2rem 5.3rem 8rem;
}

.detail_recommend{
    width: 34.6rem;
}

.detail_recommend_hd{
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #2B2B2B;
    margin-bottom: 2.5rem;
}

.detail_recommend .column_list{
    grid-template-columns: repeat(1,1fr);
    grid-gap: 4rem;
}

.detail_main .categ_span span{
    font-size: 1.4rem;
}

.detail_hd{
    font-size: 2rem;
    letter-spacing: 0.08em;
    font-weight: bold;
    margin: .6rem 0 1.7rem;
}

.detail_main figure{
    display: block;
    margin: 0;
}

figure img{
    width: 100%;
}

.detail_cont p{
    letter-spacing: 0.1em;
    line-height: 1.785;
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
}
.detail_cont p+p{
    margin-top: 2.5rem;
}
.detail_cont h3{
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: .1em;
    padding: 2rem 0;
    border-bottom: 3px solid #464646;
    border-top: 3px solid #464646;
    margin-bottom: 2.5rem;
}
.detail_cont h4{
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.1em;
    border-left: .3rem solid #FFD64A;
    padding: .4rem 1.2rem;
    position: relative;
    margin-bottom: 1.5rem;
}
.detail_cont h5{
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding-left: 2.3rem;
    position: relative;
    margin-bottom: 1rem;
}
.detail_cont h5:before{
    content: '';
    position: absolute;
    left: 0;
    top: .75em;
    transform: translateY(-50%);
    width: 1.7rem;
    height: 1.7rem;
    background: #FFD64A;
    border-radius: 50%;
}
.detail_item{
    margin-top: 3.8rem;
}
.detail_item+.detail_item{
    margin-top: 4.4rem;
}
.detail_sub_item+.detail_sub_item{
    margin-top: 2rem;
}
.detail_cont figure{
    display: block;
    margin: 0;
}
.detail_btn{
    text-align: center;
    margin-top: 7rem;
}

div#toc_container,
.detail_cont .anchors {
  padding: 4rem 4.4rem;
  margin: 3rem 0;
  background: #F7F7F7;
}

div#toc_container .toc_title,
.detail_cont .anchors .toc_title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-align: left;
}

#toc_container.no_bullets li,
.detail_cont .anchors li {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  position: relative;
}

.detail_cont .anchors li+li,
#toc_container.no_bullets li+li{
    margin-top: 1rem;
}


/*contact*/
.contact_wrap{
    padding: 13rem 0 10rem;
}
.contact_wrap .inner{
    padding: 0 32rem;
}
.contact_top{
    text-align: center;
    font-size: 2rem;
    line-height: 1.75;
    font-weight: bold;
    /*letter-spacing: .08em;*/
    margin-bottom: 6rem;
}
.contactTable{
    width: 100%;
}
.contactTable th,
.contactTable td{
    display: block;
    font-size: 1.6rem;
    padding-bottom: 3.5rem;
}
.contactTable th{
    font-weight: bold;
    text-align: left;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    grid-gap: 1.2rem;
    padding-bottom: 1rem;
}
.contactTable th span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.7rem;
    height: 2.4rem;
    border-radius: 2rem;
    letter-spacing: 0;
    color: #fff;
    background: #F8A830;
    font-size: 1.4rem;
    font-weight: bold;
}
.contactTable th span.required{
    background: #DB0000;
}
.contactTable th font{
}

.file_box,
.contactTable input[type=text],
.contactTable input[type=tel],
.contactTable input[type=email],
.contactTable select,
.contactTable textarea{
    width: 100%;
    height: 5rem;
    border-radius: 0;
    border: 0;
    background: #fff;
    color: #333;
    padding: 0 1.8rem;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    font-weight: 500;
}
.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: 90%;
    height: 3.1rem;
    border-radius: 0rem;
    /*background: #A8A8A8;*/
    color: #333;
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mwform-file-delete {
    cursor: pointer;
    visibility: hidden;
    padding-left: 51rem;
}

.file_txt{

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

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;
}
.zipTxt{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #FF6795;
    color: #fff;
    border-radius: 2rem;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 0 1.2rem;
    height: 3.3rem;
    margin-left: 4rem;
}
.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{
    letter-spacing: .12em;
}
.formAgree a{
    color: #DA0001;
    border-bottom: 1px solid currentColor;
}
.formButton{
    margin-top: 5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    grid-gap: 3.6rem;
}
.formButton .btn_link01{
    width: 42rem;
    height: 6.4rem;
    border-radius: 4rem;
}
.formButton .btn_link01:after {
    background-size: 2rem auto!important;
}
.formButton .btn_form{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: #fff;
    border-radius: 5rem;
    transition: opacity .3s;
    background: none;
    border: 0;
    box-shadow: none;
    position: relative;
    z-index: 9;
}



.formButton .btn_form::before {
    background: #FFD64A !important; 
}


@media screen and (min-width: 751px) {
    .formButton .btn_link01:hover .btn_form{
        color: #2B2B2B;
    }
}


/*
.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: 2rem;
}

.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item{
    /*width: 100%;*/
}

.formRadio label {
    display: flex;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: bold;
    color: #2B2B2B;
    position: relative;
}

/*
.formRadio label,
.formCheckbox label {
    display: flex;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: bold;
    color: #2B2B2B;
    position: relative;
}
*/

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

/*
.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.5rem 1.8rem;
    display: inline-block;
}

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

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

/*
.formCheckbox label{
    width: 100%;
}
.formCheckbox label span {
    position: relative;
    z-index: 2;
    padding-left: 3rem;
    display: inline-block;
}

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

.formCheckbox label span:after {
    position: absolute;
    left: .3rem;
    top: .6rem;
    width: 1.2rem;
    height: .7rem;

    border: .2rem solid #1D1D1D;
    border-width: 0 0 .2rem .2rem;
    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{
    display: flex;
    align-items: center;
    grid-gap: .7rem;
}
.birth_box select{
    width: 7.5rem;
}
.birth_box #year {
    width: 13.5rem;
}

.birth_box select.birth_year{
    width: 14rem;
}
.birth_line{
    width: 4.6rem;
    height: 1px;
    background: #707070;
    transform: rotate(-63deg);
}

#entry-confirm .birth_line{
    width: 1.6rem;
    height: 1px;
    background: #707070;
    transform: rotate(-63deg);
}

/*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%;
}


/*thanks*/
.thanks_wrap{
    padding: 14rem 0 17rem;
}
.thanks_wrap .inner{
    padding: 0 22.3rem;
}
.thanks_hd{
    font-size: 6.2rem;
}
.thanks_ttl{
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: .12em;
    margin-bottom: 1.5rem;
}
.thanks_txt{
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 2.1875;
}
.thanks_btn{
    margin-top: 2.5rem;
}

.animation_tire{
    position: absolute;
    top: -3.6rem;
    z-index: 1;
    width: 39.1rem;
    height: 39.1rem;
    background: url(../img/common/logo_loading.svg)no-repeat;
    background-size: 100% auto;
    animation: circle 10s infinite linear;
}

.animation_error{
    position: absolute;
    top: -3.6rem;
    z-index: 1;
    width: 39.1rem;
    height: 39.1rem;
    background: url(../img/common/error_loading.svg)no-repeat;
    background-size: 100% auto;
    animation: circle 10s infinite linear;
}

.thanks_tire01{
    left: -21.6rem;
}
.thanks_tire02{
    left: 73.1rem;
}
.thanks_tire03{
    left: 117rem;
}

/*about*/
.about_wrap{
    padding: 18rem 0 14.5rem;
}
.about_sec01{
	padding-top: 15rem;
	margin-top: -15rem;
    padding-bottom: 11.6rem;
}
.about_sec01_box{
    background: #FFD64A;
    border-radius: 3rem;
    padding: 3.3rem 0 5rem;
    text-align: center;
    position: relative;
}
.hd_medium{
    text-align: center;
    margin-bottom: 2.5rem;
}
.hd_medium .eng{
    display: block;
    font-size: 5rem; 
    line-height: 1.33;
}
.hd_medium .jap{
    display: block;
    font-size: 2rem;
    font-weight: bold;
}
.about_sec01_ttl{
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
}
.about_sec01_txt{
    line-height: 2.1875;
    font-weight: bold;
}
.about_sec01_txt p+p{
    margin-top: 3.5rem;
}


.about_sec01_img01{
    position: absolute;
    left: -6.4rem;
    top: -10rem;
    z-index: 1;
    width: 32.5rem;
}
/*
.about_sec01_img02{
    position: absolute;
    right: 3rem;
    bottom: -10rem;
    z-index: 1;
    width: 23.2rem;
}

.about_sec01_img03{
    position: absolute;
    right: -4.4rem;
    bottom: 16rem;
    z-index: 1;
    width: 17.1rem;
}
*/


.about_sec01_img02{
    position: absolute;
    right: 8rem;
    bottom: -3.1rem;
    z-index: 2;
    width: 17.1rem;
}
.about_sec01_img02:before{
    content: '';
    position: absolute;
    z-index: -1;
    left: 0;
    top: -.7rem;
    width: calc(100% + .7rem);
    height: 70%;
    background: #FFD64A;
}

.about_sec01_img03{
    position: absolute;
    right: -10.4rem;
    bottom: 5rem;
    z-index: 1;
    width: 25.2rem;
}


.about_sec02{
    padding: 10rem 0 20rem;
    background: #F7F7F7;
    clip-path: ellipse(110% 100% at 50% 100%);
}
.about_slick{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 4.8rem;
}
.about_slick .icon {
    text-align: center;
}
.about_slick .icon img{
    width: 16.6rem;
    border-radius: 50%;
    box-shadow: 0 .3rem .6rem rgba(0,0,0,.16);
}
.about_slick .ttl{
    font-size: 2rem;
    font-weight: bold;
    margin: 1.8rem 0 1.6rem;
    text-align: center;
}
.about_slick .txt{
    line-height: 1.56;
    letter-spacing: 0.08em;
}

.about_sec03{
    position: relative;
    z-index: 2;
    background: #fff;
    clip-path: ellipse(110% 100% at 50% 100%);
    padding: 12rem 0;
    margin-top: -12rem;
}
.about_sec03_dl{
    display: flex;
    justify-content: space-between;
}
.about_sec03_dl dt{
    width: 48.5rem;
}
.about_sec03_dl dd{
    width: 55.2rem;
}

.about_sec03_dl dd img + img {padding-top: 5rem;}

.about_sec03_dl .hd_medium{
    text-align: left;
    margin-bottom: 2rem;
}
.about_sec03_dl .txt{
    line-height: 1.875;
    letter-spacing: 0.08em;
}
.about_sec03_dl .name{
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 2.5rem;
    text-align: right;
}
.about_sec03_dl .name span{
    display: block;
    margin-top: .5rem;
    font-size: 2rem;
}

.about_gray_box{
    background: #F7F7F7;
    border-radius: 3rem;
}
.about_sec04{
    padding: 9.6rem 9.2rem 0;
}
.about_sec04 .hd_medium{
    margin-bottom: 5.6rem;
}
.about_table{
    width: 100%;
}
.about_table th,
.about_table td{
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 500;
    padding: 3.2rem 0;
    border-bottom: 1px solid #C9C9C9; 
}
.about_table th{
    width: 18rem;
    vertical-align: top;
    font-weight: bold;
    text-align: left;
}

.about_sec05{
    padding: 11.5rem 0;
}
.about_history{
    position: relative;
}
.about_history:before{
    content: '';
    position: absolute;
    left: 50%;
    top: 2.25rem;
    z-index: 1;
    width: 1px;
    height: 100%;
    background: #C9C9C9;
}
.about_history li{
    position: relative;
    padding-left: 2.3rem;
    margin-left: 50%;
}
.about_history li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 2.25rem;
    z-index: 1;
    transform: translate(-50%,-50%);
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/about/icon_dot.svg)no-repeat;
    background-size: 100% auto;
}
@media screen and (min-width: 751px) {
    .about_history li:nth-of-type(even){
        padding-left: 0;
        margin-left: auto;
        padding-right: 2.3rem;
        margin-right: 50%;
        text-align: right;
    }
    .about_history li:nth-of-type(even):before{
        left: auto;
        right: 0;
        transform: translate(50%,-50%);
    }
}

.about_history li+li{
    margin-top: 5.8rem;
}
.about_history .date{
    font-size: 3rem;
    font-weight: bold;
    color: #FFD64A;
}
.about_history .ttl{
    font-size: 1.8rem;
    font-weight: bold;
}
.about_history .txt{
    margin-top: 1.4rem;
}
.about_history .txt p+p{
    margin-top: 2.4rem;
}

/*recruit*/
.recruit_wrap{
    padding: 8.6rem 0 11.7rem;
}
.recruit_dl{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5.3rem;
}
.recruit_dl dt{
    width: 62rem;
    padding-top: 3rem;
}
.recruit_dl dd{
    width: 44.4rem;
}
.recruit_dl .ttl{
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
}
.recruit_dl .txt{
    line-height: 2.1875;
    font-weight: bold;
}
.recruit_dl .txt p+p{
    margin-top: 3.5rem;
}
.bg_span{
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    grid-gap: 1rem 0;
}
.bg_span span{
    font-size: 2rem;
    line-height: 2.25;
    font-weight: bold;
    padding: 0 1.8rem;
    background: #FFD64A;
    white-space: nowrap;
}

.recruit_sec01_img02{
    margin-top: 5rem;
    text-align: right;
}
.recruit_sec01_img02 img{
    width: 22.2rem;
}
.recruit_sec01_img03{
    margin-top: -7.5rem;
}
.recruit_sec01_img03 img{
    width: 26.9rem;
}

.recruit_box{
    background: #FFD64A;
    border-radius: 9rem;
    padding: 2.7rem 7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 3.4rem;
}
.recruit_box .animation_circle{
    width: 11rem;
    height: 11rem;
    background: url(../img/common/logo_loading.svg)no-repeat;
    background-size: 100% auto;
    animation: circle 10s infinite linear;
}
.recruit_box dd{
    width: calc(100% - 11rem - 3.4rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.recruit_box .cont{
    width: 46rem;
}
.recruit_box .btn{
    width: 32rem;
}
.recruit_box .btn li+li{
    margin-top: 1.8rem;
}
.recruit_box .btn_link01{
    width: 100%;
}
.recruit_box .ttl{
    font-size: 2rem;
    line-height: 1.75;
    font-weight: bold;
    margin-bottom: .5rem;
}

.recruit_sec02{
    padding: 11.7rem 0 10.7rem;
}
.recruit_sec02 .hd_medium{
    margin-bottom: 4.8rem;
}
.recruit_sec02_list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 5.6rem;
}
.recruit_sec02_list .img_box{
    padding-top: 85.5%;
}
.recruit_sec02_list .ttl{
    font-size: 2rem;
    font-weight: bold;
    margin: 1.8rem 0 1.4rem;
}
.recruit_sec02_list .txt{
    line-height: 2.1875;
}

.recruit_sec03{
    padding: 12rem 0 27rem;
    background: #F7F7F7;
    clip-path: ellipse(130% 100% at 50% 100%);
}
.recruit_dl03{
    display: flex;
    justify-content: space-between;
}
.recruit_dl03 dt{
    width: 32.83rem;
}
.recruit_dl03 dd{
    width: 70.8rem;
}
.recruit_dl03 ul{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-gap: 5.5rem;
}
.recruit_dl03 .ttl{
    display: flex;
    align-items: center;
    grid-gap: 1.4rem;
    border-bottom: 1px solid #2B2B2B;
    margin-bottom: 1.3rem;
}
.recruit_dl03 .ttl span{
    font-size: 5rem;
    color: #FFD64A;
}
.recruit_dl03 .ttl p{
    font-size: 2rem;
    font-weight: bold;
}
.recruit_dl03 .txt{
    line-height: 1.875;
}

.recruit_sec04{
    padding: 17.4rem 0 0 0;
    margin-top: -17.4rem;
    background: #fff;
    clip-path: ellipse(130% 100% at 50% 100%);
}
.recruit_dl04{
    display: flex;
    justify-content: space-between;
}
.recruit_dl04 dt{
    width: 53.6rem;
}
.recruit_dl04 dd{
    width: 50.5rem;
}
.recruit_dl04 .hd_medium{
    text-align: left;
}
.recruit_dl04 .txt{
    line-height: 2.1875;
    letter-spacing: 0.04em;
}
.recruit_sec04_flow_hd{
    margin: 3.4rem 0;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid #707070;
    font-size: 2rem;
    font-weight: bold;
}
.recruit_sec04_flow_list ul{
    display: flex;
    justify-content: space-between;
    grid-gap: 7.8rem;
}
.recruit_sec04_flow_list li{
    position: relative;
}
.recruit_sec04_flow_list li+li:before{
    content: '';
    position: absolute;
    right: 100%;
    top: 0;
    width: 7.8rem;
    height: 21.3rem;
    background: url(../img/recruit/arrow_sec04.svg)no-repeat center center;
    background-size: auto 4rem;
}
.recruit_sec04_flow_list .img_box{
    border-radius: 50%;
    width: 21.3rem;
    padding-top: 21.3rem;
    margin: 0 auto;
}
.recruit_sec04_flow_list .ttl{
    font-size: 2rem;
    font-weight: bold;
    margin: 2.5rem 0 1.5rem;
    text-align: center;
}
.recruit_sec04_flow_list .txt{
    font-size: 1.2rem;
    line-height: 2;
}

.recruit_sec05{
    padding-top: 5.6rem;
}
.recruit_sec05 .hd_medium{
    margin-bottom: 6rem;
}
.recruit_dl06{
    display: flex;
    justify-content: space-between;
    background: #FFD64A;
    border-radius: 20rem;
    padding: 6.5rem 8rem;
    position: relative;
}
.recruit_dl06+.recruit_dl06{
    margin-top: 10.6rem;
}
.recruit_dl06 dt{
    width: 53.6rem;
}
.recruit_dl06 dd{
    padding-top: 2rem;
    width: 37.5rem;
    text-align: right;
}
.recruit_dl06 .ttl{
    font-size: 2.2rem;
    line-height: 1.81;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.recruit_dl06 .txt{
    line-height: 2.1875;
}
.recruit_dl06 .img{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 43.5rem;
    overflow: hidden;
    border-radius: 20rem;
    padding: 0 8rem;
    pointer-events: none;
}
.recruit_dl06 .img img{
    width: 37.5rem;
}
.recruit_dl06 .name{
    font-size: 1.6rem;
}
.recruit_dl06 .name span{
    font-weight: bold;
    display: block;
}
.recruit_dl06 .name font{
    font-weight: bold;
    font-size: 2rem;
    display: block;
}

.message_area {
	background: #FFD64A;
	padding: 4rem 9.6rem 13rem;
	border-radius: 100px;
	position: relative;
}

.message_area + .message_area {margin-top: 15rem;}


.readmore-hide {
  height: 0;
  overflow: hidden;
  transition: all .4s;
}

.message_area button{
	font-size: 2rem;
	font-weight: bold;
	position: absolute;
	display: table;
	left: 50%;
	bottom: 50px;
	margin: 0 auto;
	color: #2B2B2B;
	text-align: center;
	transform: translateX(-50%);
	cursor: pointer;
	z-index: 1;
	transition: all .4s;
}

.message_area button:hover {opacity: .5;}
.message_area button span {
	position: absolute;
	top: 3px;
	width: 23px;
	height: 23px;
	color: #FFD64A;
	text-align: center;
	line-height: 23px;
	background: #2B2B2B;
	display: inline-block;
	border-radius: 50%;
	margin-left: 1rem;
	font-size: 1.4rem;
}

.message_area_name {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #fff;
}

.message_img {
	width: 100%;
	max-width: 37rem;
	margin-top: -10rem;
}

.message_info {padding-left: 5rem;}
.message_info dl {
	display: flex;
	align-items: center;
	margin-bottom: 2rem;
}
.message_info dl dt {
	font-size: 3rem;
	font-weight: bold;
	padding-right: 1.5rem;
}

.message_info dl dd span {
	font-size: 1.6rem;
	font-weight: 500;
	padding-left: 1rem;
	
}

.message_info dl dd {
	font-size: 1.6rem;
	font-weight: bold;
	border-left: 3px solid #000;
	padding-left: .5rem;
}

.message_info h3 {
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 2;
}

.message_faq {
	padding: 2rem 0 4rem;
	border-bottom: 1px solid #fff;
}

.message_faq dl {
	display: flex;
	align-items: center;
}
.message_faq dl dt {
	font-size: 3.5rem;
	font-weight: 500;
	color: #fff;
}
.message_faq dl dd {
	font-size: 2rem;
	font-weight: bold;
	margin-left: 1rem;
	padding-top: 1rem;
}

.message_faq p {font-size: 1.6rem; line-height: 2;}


@media screen and (min-width: 751px) {
    .recruit_dl06:nth-of-type(even){
        flex-direction: row-reverse;
    }
    .recruit_dl06:nth-of-type(even) dd{
        text-align: left;
    }
}

.recruit_sec06{
    padding: 10.5rem 0 19rem;
}
.recruit_sec06_list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.recruit_sec06_list li+li{
    margin-left: -1px;
}
.recruit_sec06_list li{
    padding: 1rem 0 3rem;
    border: 1px solid #2B2B2B;
    text-align: center;
}
.recruit_sec06_list .icon{
    height: 12.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.recruit_sec06_list .icon img{
    max-width: 8.3rem;
}
.recruit_sec06_list .ttl{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}
.recruit_sec06_list .txt{
    font-size: 1.4rem;
}

.recruit_sec07{
    padding: 6.66rem 0 17rem;
    margin-top: -6.66rem;
    background: #F7F7F7;
    clip-path: ellipse(130% 100% at 50% 100%);
}
.recruit_flow_list ul{
    display: flex;
    grid-gap: 3rem;
}
.recruit_flow_list li{
    width: 100%;
    height: 25rem;
    text-align: center;
    border-radius: 50%;
    border: .3rem solid #2B2B2B;
    position: relative;
    padding-top: 4.2rem;
}
.recruit_flow_list li+li:before{
    content: '';
    position: absolute;
    right: calc(100% - .7rem);
    top: 50%;
    transform: translateY(-50%);
    width: 5rem;
    height: 3.7rem;
    background: url(../img/recruit/arrow_flow.svg)no-repeat center center #F7F7F7;
    background-size: auto 2.5rem;
}
.recruit_flow_list .ttl{
    font-size: 2rem;
    font-weight: bold;
}
.recruit_flow_list .icon{
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.recruit_flow_list .icon img{
    max-width: 8.6rem;
    max-height: 6.3rem;
}
.recruit_flow_list .txt{
    font-size: 1.4rem;
}

.recruit_sec08{
    padding: 9rem 0 0;
    margin-top: -9rem;
    background: #fff;
    clip-path: ellipse(150% 100% at 50% 100%);
}
.recruit_list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 8rem;
    margin-bottom: 8rem;
}
.recruit_list li{
    background: #fff;
    box-shadow: 0 .3rem .6rem rgba(0,0,0,.16);
    padding: 4.7rem 4.2rem 3.6rem;
}
.recruit_list .img_box{
    padding-top: 62.3%;
}
.recruit_list .ttl{
    font-size: 2rem;
    font-weight: bold;
    margin: 2rem 0 1rem;
}
.recruit_list table{
    width: 100%;
}
.recruit_list th,
.recruit_list td{
    font-size: 1.6rem;
    font-weight: 500;
    border-bottom: 1px solid #707070;
    padding: 1.9rem 0 1.1rem;
}
.recruit_list th{
    font-weight: bold;
    width: 7rem;
}
.recruit_list_btn{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 1.7rem;
}
.recruit_list_btn .btn_link01{
    width: 100%;
}

/*recruit_detail*/
@media screen and (min-width: 751px) {
    a.fixed_detail{
        position: fixed;
        right: 2.3rem;
        bottom: 2.3rem;
        z-index: 88;
        width: 14.6rem;
        height: 14.6rem;
        background: url(../img/recruit_detail/btn_fixed.png)no-repeat;
        background-size: 100% 100%;
        color: transparent!important;
    }
    
    a.fixed_detail01{
        position: fixed;
        right: 2.3rem;
        bottom: 2.3rem;
        z-index: 88;
        width: 14.6rem;
        height: 14.6rem;
        background: url(../img/recruit/btn_fixed.png)no-repeat;
        background-size: 100% 100%;
        color: transparent!important;
    }
    
}
.recruit_detail_wrap{
    padding: 10rem 0 6.4rem;
}
.recruit_detail_dl01{
    display: flex;
    justify-content: space-between;
}
.recruit_detail_dl01 dt{
    width: 48.8rem;
}
.recruit_detail_dl01 dd{
    width: 55.2rem;
}

.recruit_detail_dl01 dd img {
	height: 368px;
	object-fit: cover;
}

.recruit_detail_hd{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: .25em;
}
.recruit_detail_dl01 .recruit_detail_hd{
    letter-spacing: .12em;
}
.recruit_detail_dl01 .txt{
    padding-top: 2rem;
    border-top: 1px solid #2B2B2B;
    line-height: 1.875;
}

.recruit_detail_sec02{
    padding-top: 2rem;
}
.recruit_detail_table{
    width: 100%;
    border-top: 1px solid #D1D1D1;
}
.recruit_detail_table th,
.recruit_detail_table td{
    font-size: 1.6rem;
    line-height: 1.875;
    font-weight: 500;
    padding: 3rem 0;
    border-bottom: 1px solid #D1D1D1;
}
.recruit_detail_table th{
    font-weight: bold;
    width: 24rem;
    text-align: left;
    vertical-align: top;
}
.recruit_detail_table p+p{
    margin-top: 3rem;
}

.recruit_detail_sec03{
    padding-top: 7rem;
}
.recruit_detail_list03{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-gap: 3rem;
}
.recruit_detail_list03 li{
    padding: 3.2rem 3.6rem 2.8rem;
    box-shadow: 0 .3rem .6rem rgba(0,0,0,.16);
    background: #fff;
}
.recruit_detail_list03 .ttl{
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: .12em;
    margin-bottom: 1rem;
}
.recruit_detail_list03 .txt{
    font-size: 1.4rem;
    letter-spacing: .12em;
    line-height: 1.785;
}


.recruit_detail_sec04{
    padding-top: 7rem;
}
.recruit_detail_list04{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 5.5rem;
}
.recruit_detail_list04 .img_box{
    padding-top: 85.5%;
}
.recruit_detail_list04 .ttl{
    font-size: 2rem;
    font-weight: bold;
    margin: 1.8rem 0 1.2rem;
}
.recruit_detail_list04 .txt{
    line-height: 2.1875;
}

/*top*/
#main-visual .inner02{
    height: 100%;
}
.mv_hd{
    position: absolute;
    right: 8.5rem;
    bottom: 6rem;
    display: flex;
    align-items: flex-end;
}
.mv_hd .jap{
    flex-direction: row-reverse;
    display: flex;
    align-items: flex-end;
    grid-gap: 1.5rem;
}
.mv_hd .jap span{
    font-size: 3.8rem;
    letter-spacing: .2em;
    font-weight: bold;
    color: #fff;
    background: #2B2B2B;
    padding: 2.8rem .4rem 1.8rem;
    writing-mode: vertical-rl;
    writing-mode: tb-rl;
    display: flex;
}
.mv_hd .jap span:nth-of-type(1){
    margin-bottom: 21rem;
}
.mv_hd .eng{
    font-size: 1.4rem;
    transform: rotate(90deg);
    transform-origin: right bottom;
    position: absolute;
    bottom: 0;
    right: 5rem;
    white-space: nowrap;
}

.top_wrap{
    background: #fff;
    margin: -1px 0;
    padding: 7rem 0 0;
}

.top_about{
    background: #FFD64A;
    border-radius: 3rem 3rem 0 0;
    overflow: hidden;
}
.top_about .inner{
    padding: 0 10rem;
}
@media screen and (min-width: 751px) {
    .top_about .hd_medium{
        position: absolute;
        right: 17.2rem;
        top: 9.4rem;
        z-index: 1;
    }
    .top_about .hd_medium .eng{
        transform: rotate(90deg);
        transform-origin: left top;
        position: absolute;
        top: 0;
        left: calc(100% + 7rem);
        white-space: nowrap;
    }
    .top_about .hd_medium .jap{
        font-size: 2rem;
        letter-spacing: .53em;
        font-weight: bold;
        color: #fff;
        background: #2B2B2B;
        padding: 2rem;
        writing-mode: vertical-rl;
        writing-mode: tb-rl;
        display: flex;
        width: 7rem;
    }
}

.top_about_dl{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top_about_dl dt{
    width: 50rem;
    height: 100%;
    display: flex;
}
.top_about_dl dd{
    width: 59rem;
    padding-right: 15rem;
}

.top_about_slick{
    width: 50%;
    height: 72.6rem;
    pointer-events: none;
}
.top_about_slick .slick-slide {
    height: auto; 
}
.top_about_slick .slick-list{
    height: 100%!important;
}
.slick-vertical .slick-slide{
    border: 0!important;
}
.slider_ttb{
    transform: rotate(180deg);
}
.slider_ttb img{
    transform: rotate(180deg);
}

.top_about_dl .ttl{
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
}
.top_about_dl .ttl font{
    font-size: 5rem;
}
.top_about_dl .txt{
    line-height: 2.1875;
    font-weight: bold;
}
.top_about_dl .txt p+p{
    margin-top: 3.5rem;
}
.top_about_dl .btn{
    margin-top: 3.5rem;
}

.top_products{
    overflow: hidden;
    position: relative;
    background: url(../img/top/bg_ellipse.png)no-repeat top 21.5rem center;
    background-size: 123% auto;
}
.top_products .inner:before{
    content: '';
    position: absolute;
    left: -24.8rem;
    top: -25.4rem;
    z-index: 1;
    width: 83.7rem;
    height: 83.7rem;
    background: url(../img/top/bg_circle.png)no-repeat center center;
    background-size: 100% 100%;
    pointer-events: none;
}
.top_products .inner{
    padding-top: 14.7rem;
}
.top_products .hd_medium{
    text-align: left;
    margin-bottom: 1rem;
}
.top_products .txt{
    line-height: 2.1875;
    font-weight: bold;
}
.top_products .btn{
    margin-top: 3rem;
}
.top_products_img01{
    position: absolute;
    right: 49.7rem;
    top: 16.5rem;
    z-index: 2;
    width: 33.1rem;
}
.top_products_img02{
    position: absolute;
    right: 13.9rem;
    top: 29.3rem;
    z-index: 9;
    width: 33.1rem;
}
.top_products_img03{
    width: 78.3rem;
    margin-left: -13.9rem;
    margin-top: 19.1rem;
}

.top_faq{
    padding: 7rem 0 16.5rem;
    background: #F7F7F7;
}
.top_faq .inner{
    padding: 0 23rem;
}
.top_faq .animation_circle{
    position: absolute;
    right: -8.8rem;
    top: -17.8rem;
    z-index: 1;
    width: 48.9rem;
    height: 48.9rem;
    background: url(../img/common/logo_loading.svg)no-repeat;
    background-size: 100% auto;
    /*animation: circle 10s infinite linear;*/
    opacity: .07;
}
.faq_list dl{
    position: relative;
    z-index: 2;
    background: #fff;
    box-shadow: 0 .3rem .6rem rgba(0,0,0,.16);
}
.faq_list dl+dl{
    margin-top: 3rem;
}
.faq_list dl dt{
    display: flex;
    align-items: center;
    min-height: 6.6rem;
    padding: 1rem 5.6rem 1rem 3.5rem;
    background:url(../img/top/faq_open.svg)no-repeat right 1.8rem center;
    background-size: 2rem auto;
    position: relative;
    z-index: 2;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: bold;
}
.faq_list dl dt.is_active{
    background:url(../img/top/faq_close.svg)no-repeat right 1.8rem center;
    background-size: 2rem auto;
}
.faq_list dl dd{
    display: none;
    font-size: 1.4rem;
    line-height: 1.785;
    padding: 0 3.5rem 3rem;
}
.faq_list dl dd p+p{
    margin-top: 1.5rem;
}
.top_faq_btn{
    margin-top: 5.4rem;
    text-align: center;
}

.top_news{
    padding: 8rem 0 9.5rem;
    margin-top: -8rem;
    clip-path: ellipse(100% 100% at 50% 100%);
    background: #fff;
}
.top_news .inner{
    padding: 0 32rem;
}
.top_news .hd_medium{
    margin-bottom: .5rem;
    text-align: left;
}
.top_news .news_list a{
    height: 5.8rem;
}
.top_news_btn{
    text-align: right;
    margin-top: 1.6rem;
}
@media screen and (min-width: 751px) {
    .top_news_btn .btn_link01{
        width: auto;
        height: auto;
        padding-right: 2.8rem;
    }
    .top_news_btn .btn_link01:before{
        content: none;
    }
    .top_news_btn .btn_link01:after{
        background-position: right center!important;
    }
    .top_news_btn .btn_link01:hover{
        color: #2B2B2B;
    }
}

.top_column{
    padding: 3.3rem 0 11.7rem;
    margin-top: -3.3rem;
    clip-path: ellipse(100% 100% at 50% 100%);
    background: #F7F7F7;
}
.top_column_btn{
    text-align: center;
    margin-top: 5rem;
}

.top_recruit_box{
    margin-top: 12rem;
    background-color: #FFD64A;
    border-radius: 17.3rem;
    padding: 3.8rem 12rem 4.9rem;
    position: relative;
}
.top_recruit_box .hd_medium{
    text-align: left;
    margin-bottom: 1.5rem;
}
.top_recruit_box .ttl{
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: .5rem;
}
.top_recruit_box .txt{
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 3rem;
}
.top_recruit_box dd{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 39rem;
    overflow: hidden;
    border-radius: 17.3rem;
    padding: 0 7.6rem;
    pointer-events: none;
    text-align: right;
}
.top_recruit_box dd img{
    width: 49rem;
}

/*policy*/
.policy_wrap,
.notation_wrap{
    padding: 14rem 0 17rem;
}
.policy_wrap .inner{}

h2.ttl_sub {
	font-size: 2.5rem;
	letter-spacing: 0.08em;
	font-weight: bold;
	text-align: center;
	color: #fff;
	margin-bottom: 40px;
}

h2.ttl_sub span {
	padding: 1.4rem 2rem;
	background: #2B2B2B;
}
h2.sitemap span {
	padding: 1.4rem 10.9rem;
}

.policy_wrap_inner,
.notation_wrap_inner {
	background: #fff;
	padding: 6rem 9rem;
}

.policy_wrap_inner p {
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.05em;
	margin-bottom: 50px;
}

.policy_area + .policy_area {margin-top: 50px;}
.policy_area h3 {
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	border-bottom: 1px solid #000;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.policy_area p {
	margin-bottom: 30px !important;
}

.policy_area ul li {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.policy_area ul li + li {margin-top: 5px;}

.notation_wrap_inner {}
.notation_wrap_inner dl {
	display: flex;
	border-bottom: 1px solid #C9C9C9;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.notation_wrap_inner dl dt {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 2;
	width: 20%;
	max-width: 20%;
}
.notation_wrap_inner dl dd {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 2;
	width: 80%;
	max-width: 80%;
}


.sitemap_wrap_inner {
	background: #fff;
	padding: 6rem 14rem;
}

.sitema_nav {
	display: flex;
	justify-content: space-between;
}

.sitema_nav ul.main li {}
.sitema_nav ul.main li + li,
.sitema_nav ul.main li + li {margin-top: 30px;}
.sitema_nav ul.main li a {
	font-size: 1.6rem;
	font-weight: bold;
	position: relative;
}

.sitema_nav ul.main li a:hover {opacity: .5;}
.sitema_nav ul.main li.top a:before {
    content: '';
    position: absolute;
    left: -25px;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: url(../img/common/btn_link01.svg) no-repeat left center;
    background-size: 1.5rem auto;
    transition: background 0.5s ease;
}

.sitema_nav ul.main li ul.sub li {margin-top: 20px;}
.sitema_nav ul.main li ul.sub li a {
	font-size: 1.4rem;
	font-weight: 500;
}

.sitema_nav ul.main li.top ul.sub li a:before {display: none;}

/*--news--*/
.news_detail_wrap {
    padding: 9rem 0;
}

.news_single_wrap {
	max-width: 108.8rem;
	background: #fff;
	padding: 5rem 8rem 8rem;
}

.news_single_wrap .btn {
	text-align: center;
	margin: 10rem auto 0;
}

.news_single_wrap p {
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-bottom: 30px;
}

.news_single_ttl {
	border-bottom: 1px solid #707070;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.news_single_ttl .date {
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: .1em;
    color: #B4B4B4;
    width: 13.2rem;
}

.news_single_ttl .txt {
    width: calc(100% - 13.2rem);
    font-size: 2rem;
    font-weight: bold;
}

.detail_img {margin-bottom: 3rem;}
ul.toc_list li ul {margin-top: 1rem;}


/*--entry--*/
.mwform-radio-field {padding: 0 !important;}
.mwform-checkbox-field-text {display: none !important;}


#entry-confirm th,
#entry-confirm td、
#confirm th,
#confirm td{
    display: block;
    font-size: 1.6rem;
    letter-spacing: .12em;
    text-align: left;
}
#entry-confirm td,
#confirm td {font-weight: normal;}
#entry-confirm th,
#confirm th{
    font-weight: bold;
    border-bottom: 1px solid #707070;
    margin-bottom: 1rem;
}
#entry-confirm tr+tr,
#confirm tr+tr{
    display: block;
    margin-top: 4rem;
}

#entry-confirm .btn_back,
#confirm .btn_back{
    font-size: 1.6rem;
    font-weight: 500;
    color: #747474;
    background: #fff;
    border: 0px solid #fff;
}

#entry-confirm .file_box {padding-left: 0;}
#entry-confirm .btn_back:hover,
#confirm .btn_back:hover {opacity: .5;}

#entry-confirm .contactTable th span,
#entry-confirm .file_note,
#entry-confirm .formAgree {display: none;}
#confirm .contactTable th span,
#confirm .file_note,
#confirm .formAgree {display: none;}

.formRadio label span.error {
	display: block !important;
	font-weight: normal !important;
}
.formRadio label span.error:before {
	background: #F7F7F7 !important;
}
.mw_wp_form .error {
    font-size: 100% !important;
    color: #B70000;
    display: inline !important;
}

.ttl-input {position: relative;}
.ttl-input::before {
    position: absolute;
    width: 100%;
    height: 50px;
    top: 0;
    left: 0;
    content: "";
}

.contact_img {margin-bottom: 5rem;}

.open_btn {
	padding-top: 5rem;
	width: 14rem;
	margin: 0 auto;
}

.close_btn {
	padding-top: 5rem;
	width: 11rem;
	margin: 0 auto;
}










