 
/* 
Theme Name: first
Author: first
Author URI: 
Version: 1.0
*/
@charset "UTF-8";
/* CSS Document */
html {
    font-size: 62.5%;
}
body {
    width: 100%;
    height: 100%;
    font-size: 1.6em;
    line-height: 1.8;
    letter-spacing: 0;
    font-weight: 500;
}
*,
*:before,
*:after {
    box-sizing:border-box;
}
@media (max-width: 600px) {
body {
    font-size: 1.4rem;
    line-height: 1.6;
}
fwB{
    font-weight: 500!important;
}
}
/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}
.taR {
    text-align: right;
}
.fwM {
    font-weight: 500;
}
.fwSB {
    font-weight: 600;
}
.fwB {
    font-weight: bold;
}
.flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.justify__between{
    justify-content: space-between;
}
.anchor {
    padding-top: 100px;
    margin-top: -100px;
}
.flex-end{
    align-items: flex-end;
}
.flex-contents{
    justify-content: flex-start!important;
}
*:before,
*:after {
    box-sizing:border-box;
}
/* ------------------------------------- /
/   inner
/* ------------------------------------- */
.inner {
    width: min(100%, calc(1366px + (6% * 2)));
    margin: 0 auto;
    padding: 0 6%;
}
@media screen and (max-width:600px){
.inner {
    padding: 0 4%;
}
}

/* ------------------------------------- /
/   pc-none、sp-none
/* ------------------------------------- */
.pc-none {
    display: none;
}
.pc-none768 {
    display: none;
}
.pc-none__inline {
    display: none;
}
.pc-none__inline768 {
    display: none;
}
.pc-none__inline1200 {
    display: none;
}
@media screen and (max-width:1200px){
.pc-none__inline1200 {
    display: inline;
}
.sp-none1200 {
    display: none;
}
}
@media screen and (max-width:768px){
.pc-none768 {
    display: block;
}
.pc-none__inline768 {
    display: inline;
}
.sp-none768 {
    display: none;
}
}
@media screen and (max-width:600px){
.pc-none {
    display: block;
}
.pc-none__inline {
    display: inline;
}
.sp-none {
    display: none !important;
}
}

/* ------------------------------------- /
/   サイトカラー、フォント
/* ------------------------------------- */
body {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    color: #222222;
}
a {
    color: #222222;
    text-decoration: none;
    display: block;
}
a:hover {
    opacity: 0.8
}
:root {
    --font-jp: "Zen Kaku Gothic Antique", sans-serif;
    --font-en: "Inter", sans-serif;
    --color-blue: #3CE9FF;
    --color-black: #222222;
}
.font-jp {
    font-family: var(--font-jp);
}
.font-en {
    font-family: var(--font-en);
}
.color-blue {
    color: var(--color-blue);
}


/* ------------------------------------- /
/  header
/* ------------------------------------- */

.header__contents{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 5vw;
}
.header__logo{
    max-width: 441px;
}
.header__right{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.header__nav_flex{
    min-width: 660px;
    width: 100%;
}
.header__nav_list{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header__nav_flex a{
    position: relative;
    margin-left: 60px;
}
.header__nav_flex a:hover {
    color: #4DAFDA;
    opacity: 1;
}
.header__nav_flex a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--color-blue);
    bottom: 20px; 
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.header__nav_flex a:hover::after {
    visibility: visible;
    bottom: -8px; /*アニメーションが止まる位置*/
    opacity: 1;
}
.header__sns{
    overflow: hidden;
    text-indent: -9999px;
    background-image: url(../img/top/insta_bk.svg);
    background-repeat: no-repeat;
    background-size: 31px;
    height: 31px;
    width: 31px;
}
.header__sns:hover{
    background-image: url(../img/top/insta_blue.svg);
}
.header__tiktok{
    background-image: url(../img/top/tik_bk.svg); 
    margin-left: 25px!important;
}
.header__tiktok:hover{
    background-image: url(../img/top/tik_blue.svg); 
}
.header__sns::after{
    display: none;
}

/*spnav*/
.header__sp_btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    z-index: 99;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    background-color: #fff;
    box-shadow: 0 0 10px #ccc;
    border-radius: 50px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__sp_btn.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__sp_btn span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: var(--color-blue);
    -webkit-transition: all 400ms;
    transition: all 400ms;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.header__sp_btn span::before {
    content: "";
    position: absolute;
    width: 18px;
    height:2px;
    top: -6px;
    background:  var(--color-blue);
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.header__sp_btn span::after {
    content: "";
    position: absolute;
    width: 18px;
    height:2px;
    background:  var(--color-blue);
    -webkit-transition: all 400ms;
    transition: all 400ms;
    bottom: -6px;
}
/*open*/
.header__sp_btn.open span{
    background:  #fff;
}
.header__sp_btn.open span::before{
    top: 0;
    transform: rotate(-45deg);
}
.header__sp_btn.open span::after {
    top: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.header__nav_flex.open {
    position: fixed;
    background-color: #fff;
    width: 100%;
    height: auto;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 1;
}
.header__nav_flex.open .header__nav_list{
    max-width: 800px;
    position: relative;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: max(min(110px, calc(110vw / var(--dsp-width))), calc(110px / var(--dsp-width) * var(--dsp-width-sp))) !important;
    padding-bottom: max(min(110px, calc(110vw / var(--dsp-width))), calc(110px / var(--dsp-width) * var(--dsp-width-sp))) !important;
}
.header__nav_flex.open .header__nav_list li{
    width: 48%;
}
.header__sp_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 0; /* ナビの下に */
}
.header__sp_bg.open {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.header__nav_flex.open a::after{
    display: none;
}
.header__nav_flex .header__sp_logo{
    position: fixed;
    top: 20px;
    width: 250px;
    left: 30px;
    opacity: 0;
    display: none;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__nav_flex.open .header__sp_logo{
    opacity: 1;
    visibility: visible;
    display: block;
}
.header__nav_flex.open .header__nav_txt a{
    position: relative;
    position: relative;
    margin-left: 0;
    padding: 15px 0 15px 60px;
    font-size: 2rem;
    font-weight: 600;
    border-bottom: solid 1px var(--color-blue);
}
.header__nav_flex.open .header__nav_txt a::before{
    content: "";
    position: absolute;
    left: 0;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    background-color: var(--color-blue);
    background-image: url(../img/top/arrow_btn.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
}
.header__nav_flex.open .header__sns{
    position: absolute;
    left: 48%;
    bottom: 50px;
    transform: translateX(-50%);
    border: none;
    margin-left: 0;
}
.header__nav_flex.open .header__tiktok{
    left: 51%!important;
}
@media (max-width: 1350px) {
    .header__logo{
        max-width: 250px;
    }
     .header__nav_flex .header__sp_logo {
        width: 160px;
        margin-left: 0;
    }
    .header__nav_flex.open .header__sns {
        bottom: 20px;
    }
}
@media (max-width: 1120px) {
    .header__sp_btn{
        opacity: 1;
        visibility: visible;
        pointer-events:auto;
    }
    .header__nav_flex{
        display: none;
    }
    .header__nav_flex.open{
        display: none;

        display: block;
    }
    .header__nav_flex.open .header__nav_list{
        padding: 100px 0!important;
    }
}
@media (max-width: 800px) {
     .header__nav_flex.open .header__nav_list{
        padding: 100px 20px!important;
     }
     .header__nav_flex.open .header__nav_list li {
        width: 100%;
    }
    .header__sp_btn{
        top:20px ;
        right: 20px;
    }
    .header__nav_flex{
        min-width: inherit;
    }
}
@media (max-width: 600px) {
    .header__logo {
        max-width: 200px;
    }
    .header {
        padding: 40px 0 !important;
    }
    .header__nav_flex.open .header__nav_txt a{
        font-size: 1.6rem;
    }
    .header__nav_flex.open .header__nav_txt a::before {
        width: 30px;
        height: 30px;
        border-radius: 50px;
        background-size: 10px;
        top: 13px;
    }
}

/* ------------------------------------- /
/ main
/* ------------------------------------- 
/ main__post
/* ------------------------------------- */
.mv__wrapper h2{
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    margin-bottom:50px;
    width: 90%;
    margin-left: auto;
}
.mv__wrapper img{
    width: 90%;
    margin-left: auto;
}
@media (max-width: 1350px) {

}
@media (max-width: 768px) {
}
@media (max-width: 600px) {
    .mv__wrapper h2 {
        margin-bottom: 20px;
    }
}
/* ------------------------------------- /
/  top-about__wrapper
/* ------------------------------------- */
.top-about__span{
    padding-left: 35px;
    background-image: url(../img/top/arrow_ttlside.svg);
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: left center;
    font-family: var(--font-en);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 50px;
    display: block;
}
.top-about__wrapper h2{
    font-size: clamp(2.0rem, 4vw, 4.6rem);
}
.top-about__wrapper h2 span{
    display: block;
    padding-left: 10vw;
    margin-bottom: max(min(85px, calc(85vw / var(--dsp-width))), calc(85px / var(--dsp-width) * var(--dsp-width-sp)));
}
.top-about__txt{
    max-width: 940px;
    margin-left: auto;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    line-height: 2.2;
}
.links__btn{
    position: relative;
    margin-left: auto;
    margin-top: 50px;
    padding-right: 70px;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    display: table;  
}
.links__btn::before{
    content: "";
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: var(--color-blue);
    background-image: url(../img/top/arrow_btn.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    border: solid 2px var(--color-blue);
}
.links__btn:hover{
    color: var(--color-blue);
}
.links__btn:hover::before{
    background-color: #FFF;
    background-image: url(../img/top/arrow_btn_BLUE.svg);
}
@media (max-width: 800px) {
    .top-about__span{
        margin-bottom: 20px;
    }
}
@media (max-width: 600px) {
    .top-about__wrapper h2 span{
        margin-bottom: 20px;
        padding-left: 0;
    }
    .top-about__txt{
        line-height: 1.6;
    }
    .links__btn::before{
        top: -10px;
    }
    .top-about__span{
        margin-bottom: 10px;
    }
}

/* ------------------------------------- /
/  top-slider__wrapper
/* ------------------------------------- */
.top-slider__wrapper{
    overflow: hidden;
}
/* ------------------------------------- /
/  top-works__wrapper
/* ------------------------------------- */
.top-works__wrapper .inner{
    position: relative;
}
.top-ttl{
    font-size: clamp(2.2rem, 4vw, 5rem);
    margin-bottom: 50px;
}
.top-ttl_wh{
    color: #fff;
}
.top-ttl span{
    font-family: var(--font-en);
    font-size: clamp(2.1rem, 3vw, 2.6rem);
    color: var(--color-blue);
    padding-left: 20px;
}
.works__post{
    width: 48%;
    margin-bottom: 100px;
}
.works__post a:hover{
    opacity: 0.7;
}
.works__list {
    width: 100%;
}
.top-works__list .works__post:nth-child(2n){
    margin-top: 100px;
}
.works__post_txt{
    margin-top: 30px;
}
.works__post_txt h2{
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: solid 1px var(--color-blue);
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
}
.works__post_txt table{
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 500;
    width: 100%;
}
.works__post_txt th{
    color: var(--color-blue);
    font-weight: 500;
    width: 18.18%;
}
.top-works__btn{
    border-radius: 50px;
    border: solid 1px var(--color-blue);
    padding: 12px 0;
    width: 180px;
    position: relative;
    text-align: center;
    font-family:var(--font-en);
    color: #707070;
    position: absolute;
    top: 5%;
    right: 0;

}
.top-works__btn::before{
    content: "●";
    font-size: 10px;
    color: var(--color-blue);
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.top-works__btn:hover{
    color: #fff;
    background-color: var(--color-blue);
}
.top-works__btn:hover::before{
    color: #fff;
}
.arh__img{
    position: relative;
    border-radius: 10px;
}
.arh__img:before{
    content: "";
    display: block;
    padding-top: 75%;
}
.arh__img img{
    display: block;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}
@media (max-width: 1600px) {
    .top-works__btn{
        right: 20px;
    }
}
@media (max-width: 768px) {
    .top-works__btn{
        position: inherit;
        margin-left: auto;
    }
    .top-works__list .works__post:nth-child(2n){
        margin-top: 0;
    }
    .works__post{
        width: 100%;
        margin-bottom: 50px;
    }
}
@media (max-width: 600px) {
    .works__post_txt h2 {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .works__post_txt {
        margin-top: 15px;
    }
    .top-works__btn{
        right: 0px;
    }
    .top-ttl {
        font-size: clamp(2.5rem, 4vw, 5rem);
        margin-bottom: 20px;
    }
}


/* ------------------------------------- /
/ top-recruit__wrapper
/* ------------------------------------- */
.top-recruit__wrapper{
    background-image: url(../img/top/recruit_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
}
.top-recruit__wrapper p{
    max-width: 940px;
    line-height: 2;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
}
.top-recruit__links{
    margin-left: 0!important;
    color: #fff;
}
.top-recruit__links:hover{
    opacity: 1;
}
.top-recruit__links:hover::before{
    background-color: #fff;
}
@media (max-width: 600px) {
    .top-recruit__wrapper{
        padding: 70px 20px !important;
    }
    .top-recruit__links{
        margin-left: auto!important;
    }
}

/* ------------------------------------- /
/ footer-contact
/* ------------------------------------- */
.footer-contact{
    width: min(100%, calc(1366px + (6% * 2)));
    margin: 40px auto 0;
    padding: 0 6%;
    background-color:var(--color-blue);
    border: solid 2px var(--color-blue);
    color: #fff;
    position: relative;
}
.footer-contact span{
    color: #fff;
}
.footer-contact::before{
    content: "";
    position: absolute;
    right: 8%;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    background-color: #fff;
    background-image: url(../img/top/arrow_btn_blue.svg);
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
    border: solid 2px var(--color-blue);
}
.footer-contact:hover{
    color:var(--color-blue);
    background-color: #fff;
}
.footer-contact:hover::before{
    background-color: var(--color-blue);
    background-image: url(../img/top/arrow_btn.svg);
}
.footer-contact:hover span{
    color: var(--color-blue);
}
@media (max-width: 1600px) {
    .footer-contact {
        margin: 40px auto 0;

    }
}
@media (max-width: 1200px) {
    .footer-contact::before {
        right: 5%;
        width: 80px;
        height: 80px;
        background-size: 22px;
    }
}
@media (max-width: 768px) {
    .footer-contact::before {
        right: 5%;
        width: 60px;
        height: 60px;
        background-size: 18px;
    }
}
@media (max-width: 600px) {
    .footer-contact span {
        color: #fff;
        display: block;
        padding-left: 0;
    }
    .footer-contact {
        margin: 40px auto 0;
        padding: 40px 6% !important;
    }
}

/* ------------------------------------- /
/ footer
/* ------------------------------------- */
.footer{
    margin-top: 200px;
}
.footer .inner{
    position: relative;
}
.footer__logo{
    width: 280px;
}
.footer__nav_txt a:hover{
    color: var(--color-blue);
}
.footer__nav_txt,
.header__insta{
    margin-left: 60px;
}
.copy {
    width: 100%;
    font-size: 16px;
    font-family: var(--font-en);
    text-align: right;
}
.copy a{
    display: inline;
    color: ;
}
.copy a:hover{
    color: var(--color-blue);
}
@media (max-width: 1200px) {
    .footer{
        margin-top: 100px;
    }
}
@media (max-width: 1200px) {
    .footer__nav{
        display: none;
    }
    .footer__logo{
        width: 200px;
    }
    .copy{
        right: 6%;
    }
}
@media (max-width: 600px) {
    .footer{
        margin-top: 50px;
        padding-bottom: 70px!important;
    }
    .footer__logo {
        width: 140px;
        margin: 0 auto;
    }
    .footer{
        padding-bottom: 70px!important;
    }
    .copy {
        text-align: center;
        margin-top: 20px;
    }
}

/* ------------------------------------- /
/ 下層共通
/* ------------------------------------- */
.l-main__ttl{
    background-color: var(--color-blue);
    color: #fff;
    font-size: clamp(2.5rem, 4vw, 5rem);
    width: 90%;
    font-weight: 500;
    padding: 25px 0 25px 10%;
}
.l-main__ttl span{
    font-family: var(--font-en);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    padding-left: 20px;
}

.breadcrumbs_area a{
    display: inline;
}
.breadcrumbs_area span .current-item {
    color:var(--color-blue);
}
@media (max-width: 1590px) {
    .breadcrumbs__wrapper{
        position: inherit;
        transform: inherit;
        width: min(100%, calc(1366px +(6%* 2)));
        margin: 0 auto 100px;
        padding: 0 6%;
    }
}
@media (max-width: 600px) {
    .l-main__ttl {
        width: 94%;
        padding: 19px 0 19px 20px;
    }
    .l-main__ttl span {
        padding-left: 10px;
    }
}
/* ------------------------------------- /
/ l-company
/* ------------------------------------- */

.l-company__table{
    width: 100%;
    max-width: 1190px;
    margin: 0 auto;
    border-spacing: 30px;
    border-collapse: separate;
}
.l-company__table th{
    width: 15%;
    color:#222222 ;
    border-bottom: solid 1px var(--color-blue);
}
.l-company__table td{
    width: 85%;
    padding: 40px 0 30px;
    border-bottom: solid 1px #222222;
}
.google_links{
    display: inline-block;
    margin-left: 25px;
    background-image: url(../img/lower/blank.svg);
    background-repeat: no-repeat;
    background-size: 11px;
    background-position: right bottom 8px;
    text-decoration: underline;
    padding-right: 20px;
    color: #06B3FF;

}
.l-company__table td iframe{
    padding-top: 30px;
    max-width: 750px;
}
@media (max-width: 600px) {
    .l-company__table th{
        width: 100%;
        display: block;
        color:var(--color-blue);
        border-bottom: solid 0px var(--color-blue);
    }
    .l-company__table td{
        width: 100%;
        display: block;
        padding: 7px 0 15px;
        border-bottom: solid 1px #222222;
    }
    .l-company__table{
        border-spacing: 10px;
    }
    .google_links{
        background-position: right bottom 4px;
    }
}
/************************************
** レスポンシブページネーション
************************************/
.pagination {
    display: block;
    font-family: var(--font-en);
}
.pagination_b {
    list-style-type: none;
    padding-left: 0;
    margin: 50px 0 0;
}
.pagination_b,
.pagination_b li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-family: var(--font-en);
    color: #707070;
}
.pagination_b a {
    font-size: 1.6rem;
    padding-top: 1px;
    text-decoration: none;
    margin: 0 15px;
    min-width: 25px;
    min-height: 35px;
    color: #101220;
}
.pagination_b li:not([class*="current"]) a:hover {}
.pagination_b li:first-of-type a {
    border-left-width: 1px;
}
.pagination_b li.first span,
.pagination_b li.last span,
.pagination_b li.previous span,
.pagination_b li.next span {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
}
.pagination_b li.first a::before,
.pagination_b li.last a::after,
.pagination_b li.previous a::before,
.pagination_b li.next a::after {
    display: inline-block;

    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    color: var(--color-blue); 
}
.pagination_b li.first a::before {
    content: "≪";

}
.pagination_b li.last a::after {
    content: "≫";
}
.pagination_b li.previous a::before {
    content: "‹";
}
.pagination_b li.next a::after {
    content: "›";
}
.pagination_b li.current a {
    color: #fff;
    cursor: default;
    pointer-events: none;
}
.pagination_b li.current {
    color: var(--color-blue); 
    border: 1px solid var(--color-blue); 
    border-radius: 50px;
    width: 40px !important;
    height: 40px !important;
    text-align: center;
    line-height: 37px;
}

@media only screen and (max-width: 768px) {
    .pagination_b li.first,
    .pagination_b li.last {
        /* screen readers only */
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .pagination_b li.previous a {
        border-left-width: 1px;
    }
}
@media only screen and (max-width: 425px) {
    .pagination_b a {
        font-size: 1.6rem;
    }
    .pagination_b li {
        /* screen readers only */
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .pagination_b li.current,
    .pagination_b li.first,
    .pagination_b li.last,
    .pagination_b li.previous,
    .pagination_b li.next {
        position: initial;
        top: initial;
        left: initial;
    }
    .pagination_b li.previous a {
        border-left-width: 1px;
    }
}
@media only screen and (max-width: 600px) {
    .pagination_b li.first,
    .pagination_b li.last {
        /* screen readers only */
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .pagination_b li.previous a {
        border-left-width: 1px;
    }
}
@media only screen and (max-width: 240px) {
    /* For watches? */
    .pagination_b li {
        width: 50%;
    }
    .pagination_b li.current {
        order: 2;
        width: 100%;
        border-left-width: 1px;
    }
}
.pagination ul {
    justify-content: center !important;
}
.pagination ul:after {
    display: none !important;
}
.pagination li {
    width: initial !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
    border-radius: 50%;
    margin-right: 10px;
}
.pagination .first,
.pagination .previous,
.pagination .next,
.pagination .last {
    border: none !important;
}
.pagination .last {
    margin-right: 0 !important;
}
/* ------------------------------------- /
/ single
/* ------------------------------------- */
.single__inner{
    max-width: 1200px;
    margin: 0 auto;
}
.single__h1{
    font-size: clamp(1.7rem, 4vw, 4.5rem);
    margin-bottom: 60px;
}
.single__contents {
    max-width: 1200px;
}
figure.wp-block-image{
    margin-bottom: 2em;
}
/* .single__contents figure:last-child {
    margin-bottom: 0;
} */
.single__table{
    margin-top: 80px;
    width: 100%;
    border-spacing: 30px 0;
    border-collapse: separate;
}
.single__table th{
    width: 15%;
    color:#222222 ;
    border-bottom: solid 1px var(--color-blue);
}
.single__table td{
    width: 85%;
    padding: 40px 0 30px;
    border-bottom: solid 1px #222222;
}
.single__table tr:nth-child(1) th{
    border-top: solid 1px var(--color-blue);
}
.single__table tr:nth-child(1) td{
    border-top: solid 1px #222222;
}

/*single__prevnext*/
.single__prevnext{
    margin-top: 100px;
    max-width: 560px;
    margin: 100px auto 0;
    align-items: center;
}
.single__prevnext .prev,
.single__prevnext .next{
    width: 30px;
}
.single__prevnext .prev a,
.single__prevnext .next a{
    width: 30px;
    color: var(--color-blue);
}
.single__btn{
    border-radius: 50px;
    border: solid 1px var(--color-blue);
    padding: 12px 0;
    width: 180px;
    position: relative;
    text-align: center;
    font-family:var(--font-en);
    color: #707070;
}
.single__btn::before{
    content: "●";
    font-size: 10px;
    color: var(--color-blue);
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.single__btn:hover{
    color: #fff;
    background-color: var(--color-blue);
}
.single__btn:hover::before{
    color: #fff;
}
@media only screen and (max-width: 1200px) {
    .single__inner{
        padding: 0 20px;

    }
}
@media only screen and (max-width: 600px) {
    .single__h1{
        font-size: clamp(1.7rem, 4vw, 4.5rem);
        margin-bottom: 30px;
    }
    .single__table{
        margin-top:30px;
        border-spacing: 0;
    }
    .single__table th{
        width: 100%;
        display: block;
        padding-top: 10px;
        color: var(--color-blue);
        border-bottom: solid 0px var(--color-blue);
    }
    .single__table td{
        width: 100%;
        display: block;
        padding: 5px 0 10px;
        border-bottom: solid 1px #222222;
    }
    .single__table tr:nth-child(1) th{
        border-top: solid 1px #222222;
    }
    .single__table tr:nth-child(1) td{
        border-top: solid 0px #222222;
    }
    .single__prevnext{
        margin-top: 40px;
    }
}
/* ------------------------------------- /
/ l-recruit
/* ------------------------------------- */
.l-recruit__txt{
    max-width: 1000px;
    margin: 0 auto;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    line-height: 2;
}
.l-recruit__txt h2{
    font-size: clamp(2.5rem, 4vw, 4.6rem);
    margin-bottom: 60px;
    line-height: 1.5;
}
.l-recruit__txt h2 span{
    display: block;
    padding-left: 4%;
}
.l-recruit__txt h2 span:nth-child(3){
    display: block;
    padding-left: 8%;
}
.l-recruit__detail{
    margin-top: 100PX;
    padding-left: 10%;
    padding-right: 10%;
    background-color: #ECFDFF;
}
.l-recruit__detail_ttl{
    border-bottom: solid 1px #222222;
    font-size: clamp(2rem, 4vw, 2.4rem); 
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.l-recruit__detail_ttl span{
    padding-right: 20px;
    color: var(--color-blue);
}
.l-recruit__table{
    width: 100%;
    border-collapse: separate;
}
.l-recruit__table th{
    width: 16.4%;
    color:#222222 ;
    border-bottom: solid 1px #222222;
}
.l-recruit__table td{
    width: 83.6%;
    padding: 40px 0 30px;
    border-bottom: solid 1px #222222;
}
.l-recruit__btn{
    margin: 0 auto;
}
@media only screen and (max-width: 600px) {
    .l-recruit__txt h2{
        margin-bottom: 30px;
    }
    .l-recruit__table th{
        width: 30%;
    }
    .l-recruit__table td{
        width: 70%;
        padding: 20px 0px;
        border-bottom: solid 1px #222222;
    }
    .l-recruit__detail_ttl{
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .l-recruit__txt h2 span{
        padding-left: 0;
    }
    .l-recruit__detail {
        margin-top: 50px;
    }
}

/* ------------------------------------- /
/ l-contact
/* ------------------------------------- */

.l-contact__inner{
    max-width: 1000px;
    margin: 0 auto;
}
form {
    margin-top: 50px;
    box-sizing: border-box;
}
form dl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
form dl dt {
    width: 30%;
    position: relative;
}
form dl dt span {
    font-size: 13px;
    border-radius: 50px;
    padding: 2px 10px;
    background-color: #3CE9FF;
    color: #fff;
    margin-left: 10px;
    display: inline-block;
}
form dl dd {
    width: 65%;
    margin-bottom: 30px;
}
form dl dd input,
form dl dd select {
    font-size:16px;
    border: none;
    outline: none;
    padding: 15px 10px;
    border: 1px solid #222222;
    width: 100%;
    border-radius: 0!important;
}
form dl dd input::placeholder,
form dl dd textarea::placeholder{
    color: #BCBCBC;
}
form dl dd textarea {
    font-size:16px;
    border: none;
    outline: none;
    padding: 15px 10px;
    border: 1px solid #222222;
    width: 100%;
    border-radius: 0!important;
}
form dl dd label {
    position: relative;
    cursor: pointer;
    padding-left: 30px;
}
form dl dd label::before,
form dl dd label::after {
    content: "";
    display: block; 
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}
form dl dd label::before {
    background-color: #fff;
    border: 1px solid #222222;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    left: 5px;
}
form dl dd label::after {
    background-color: #3CE9FF;
    border-radius: 50%;
    opacity: 0;
    width: 12px;
    height: 12px;
    left: 9px;
}
input.visually-hidden:checked + label::after {
    opacity: 1;
}
.visually-hidden {
    position: absolute;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
}
@media only screen and (max-width:1000px) {
    .l-contact__inner{
        padding: 0 20px;
    }
}
@media only screen and (max-width:768px) {
    form dl dt::before {
        top: 4px;
    }
    form dl dt {
        width: auto;
        padding-right: 70px;
        margin-bottom: 20px;
    }
    form dl dd {
        width: 100%;
    }
}
@media only screen and (max-width:600px) {
    form dl dt {
        padding-right: 60px;
        margin-bottom: 10px;
    }
    form dl dt::before {
        top: 2px;
    }
    form dl dd {
        margin-bottom: 15px;
    }
}
/* ------------------------------------- /
/ policy
/* ------------------------------------- */
.policy_area {
    border: 1px solid #222222;
    margin-bottom: 50px;
    padding: 10px 10px 10px 0px;
    margin-top: 40px;
}
.policy_area .box {
    overflow-y: scroll;
    padding: 35px;
    height: 270px;
}
.policy_area .box::-webkit-scrollbar {
    width: 10px;
}
.policy_area .box::-webkit-scrollbar-track {
    background-color: #E8E8E8;
    border-radius: 10px;
}
.policy_area .box::-webkit-scrollbar-thumb {
    background-color: #3CE9FF;
    border-radius: 10px;
}
.policy_area .box h2 {
    font-size: clamp(18px, 3vw, 22px);
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}
.policy_area .box h3 {
    font-weight: 600;
    border-bottom: solid 1px;
    margin-bottom: 10px;
    padding-bottom: 7px;
    font-size: 110%;
}
.policy_area .box p {
    margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
    .policy_area {
        margin-bottom: 30px;
    }
}
/* .Form-CheckItem-Label */
.Form-CheckItem-Label {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* margin-bottom: 50px; */
}
.Form-CheckItem-Label-Input {
    display: none;
}
.Form-CheckItem-Label-SquareIcon {
    border: 1px solid #707070;
    display: block;
    flex: none;
    width: 15px;
    height: 15px;
    background: #fff;
}
@media screen and (max-width: 500px) {
    .Form-CheckItem-Label-SquareIcon {
        width: 12px;
        height: 12px;
    }

    /* .Form-CheckItem-Label {
        margin-bottom: 30px;
    } */
}
/* .Form-CheckItem-Label-Text */
.Form-CheckItem-Label-Text {
    padding-left: 8px;
    font-size: clamp(14px, 3vw, 18px);
}
.red-txt {
    color: #FF2323;
}
@media screen and (max-width: 600px) {
    .Form-CheckItem-Label-Text {
        padding-left: 6px;
    }
}
/* .Form-Btn */
.send__btn{
   width: 180px;
   margin: 0 auto;
   position: relative;
}
/*.send__btn::before{
    content: "●";
    font-size: 10px;
    color: var(--color-blue);
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}*/
.Form-Btn {
    cursor: pointer;
    display: block;
    border: none;
    outline: none;
    width: 100%;
    background-color:#fff;
    font-size: clamp(14px, 3vw, 18px);
    margin: 0 auto;
    text-align: center;
    padding: 10px 0;
    transition: all 0.2s;
    border-radius: 50px;
    font-family: var(--font-en);
    border: solid 1px #3CE9FF;
    color: #222222;
}
.Form-Btn:hover{
    background-color:#3CE9FF;
    color: #fff;
}
.Form-Btn.isActive {
    opacity: 1;
    pointer-events: inherit;
}
.center-form {
    text-align: center;
}
.Form-CheckItem {
    display: inline-block;
    margin-bottom: 50px;
}
.Form-CheckItem-Label-Input:checked+*:before {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: #4D2F2B;;
    transform-origin: bottom left;
    transform: rotateZ(90deg);
}
.Form-CheckItem-Label-Input:checked+*:after {
    content: "";
    display: block;
    width: 8px;
    height: 2px;
    background: #4D2F2B;;
    transform-origin: bottom left;
    transform: rotateZ(0deg);
}
.Form-CheckItem-Label-Input:checked+* {
    width: 0;
    height: 0;
    transform: translate(8px, 8px) rotateZ(-135deg) scale(1.1);
}

@media screen and (max-width: 600px) {
    .Form-CheckItem-Label-Input:checked+* {
        transform: translate(5px, 7px) rotateZ(-135deg) scale(1.5);
    }
    .policy_area .box {
        padding: 35px 20px;
    }
}
@media screen and (max-width: 500px) {
    .Form-CheckItem {
        margin-bottom: 30px;
    }
}
input, select {
  -webkit-appearance: none;
  appearance: none;
}

/* ------------------------------------- /
/ contact
/* ------------------------------------- */
.contact-txt p{
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    text-align: center;
}

form .error {
    color: #ff1010;
    font-size: 1.4rem;
}
form .error.false {
    display: none;
}
form .input_error {
    background-color: #ffdada;
}