@charset "utf-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP);


html{
    font-size: 62.5%;
}
body{
    color: #121212;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-size: 1.4rem;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    background: #ffffff;
}
.inner {
    padding-left: 20px;
    padding-right: 20px;
}
input[type="submit"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
li {
    list-style-type: none;
    zoom: normal;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    border-style: none;
}
.clearfix {zoom:1;}
.clearfix:after{
    content: "";
    display: block;
    visibility: hidden;
    clear: both;
    height: 0.1px;
    font-size: 0.1em;
    line-height: 0;
}
a {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: all ease .3s;
}
a[href^="tel:"] {
    color: inherit;
}
a:hover {
    opacity: 0.5;
}
section p a,
section ol.decimal a,
section ul.disc a,
table a,
section dl a{
    display: inline;
    text-decoration: underline;
}
.youtube{
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
.youtube iframe{
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}
.spNone{
    display: none !important;
}

/* img */
figure.object-fit {
    position: relative;
}
figure.object-fit>img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
}

/* btns */
.btns{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.btns a{
        min-width: 280px;
        font-size: 105%;
        color: #ffffff;
        font-weight: 600;
        text-align: center;
        padding: 1em 1.5em;
        background: #333333;
        border-radius: 100px;
}
.fadein{
	    opacity : 0;
	    transform : translate(0, 100px);
	    transition : all 1s;
}
.fadein.active{
	    opacity : 1;
	    transform : translate(0, 0);
}


/* ----- header ----- */

#header{
        width: 100%;
}
#header .inner{
        padding-top: 16px;
        padding-bottom: 16px;
}
#header h1,
#js-menu h1{
        width: 108px;
        margin-right: auto;
}

/* ----- main navi ----- */

.menu {
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        align-items: start;
        width: 100%;
        height: 100%;
        background: rgba(51, 51, 51, 0.85);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: all 0.3s ease;
        transition-property: opacity, pointer-events, visibility;
        z-index: 500;
}
.menu.is-show {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
.menu__content {
        width: 100%;
        padding-top: 40px;
}
#main_nav{
        display: flex;
        flex-wrap: wrap;
        gap: 1.5em 20px;
        margin: 28px auto;
}
#main_nav>ul{
        display: grid;
        width: 100%;
        border-top: solid 1px #ffffff;
}
#main_nav>ul>li{
	font-size: 95%;
        line-height: 1.6;
        font-weight: 400;
        border-bottom: solid 1px #ffffff;
}
#main_nav>ul>li>a{
        color: #ffffff;
        padding: 0.6em 0;
}
#main_nav>ul>li ul.sub-menu{
        display: flex;
        flex-wrap: wrap;
        gap: 0.3em 12px;
        margin-bottom: 12px;
}
#main_nav>ul>li ul.sub-menu>li{
        position: relative;
        width: calc((100% - 12px) / 2);
}
#main_nav>ul>li ul.sub-menu>li:before{
        content: "";
        display: block;
        width: 0.8em;
        height: 1px;
        background: #ffffff;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
}
#main_nav>ul>li ul.sub-menu>li>a{
        color: #ffffff;
        font-size: 90%;
        padding-left: 1.5em;
}
.header__menu {
        position: fixed;
        top: 28px;
        right: 20px;
        cursor: pointer;
        height: 24px;
        font-size: 85%;
        line-height: 24px;
        padding-left: 32px;
        background: url(../images/common/menu_bk.png) no-repeat center left;
        background-size: 20px auto;
        z-index: 100;
}
#header.is-show .header__menu{
        opacity: 0;
}
.menu__content .sns-list{
    margin-top: 28px;
}
.menu__content .sns-list a{
        color: #ffffff;
}
.button-close {
        cursor: pointer;
        position: absolute;
        top: 28px;
        right: 20px;
        color: #ffffff;
        font-size: 85%;
        line-height: 24px;
        padding-left: 32px;
        background: url(../images/common/close_wh.png) no-repeat center left;
        background-size: 18px auto;
        z-index: 501;
}

/* ----- footer ----- */

#footer-contact{
        color: #ffffff;
        font-family: 'Noto Serif Jp';
        font-weight: 600;
        margin-top: 80px;
        padding: 64px 0;
        position: relative;
        background: #121212;
        overflow: hidden;
}
#footer-contact:before{
        content: "";
        display: block;
        width: calc(100% + 16px);
        height: calc(100% + 16px);
        background: url(../images/common/footer_bg.jpg) no-repeat center center;
        background-size: cover;
        filter: blur(2.5px);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.65;
}
#footer-contact>*{
        z-index: 10;
        position: relative;
}
#footer-contact p.title{
        font-size: 160%;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 16px;
}
#footer-contact p.title small.en{
        display: block;
        font-size: 60%;
}
#footer-contact p:not([class]){
	font-size: 95%;
        font-weight: 600;
        text-align: center;
        line-height: 1.6;
        margin-bottom: 28px;
}
#footer-contact .flex{
	display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 16px;
        align-content: center;
        align-items: center;
}
#footer-contact .flex p.tel{
        font-size: 160%;
        line-height: 1;
        letter-spacing: 0.1em;
}
#footer-contact .flex a.contact-btn{
        min-width: 188px;
        font-size: 108%;
        color: #ffffff;
        letter-spacing: 0.1em;
        text-align: center;
        padding: 16px 28px;
        background: #333333;
        border-radius: 100px;
        position: relative;
}


#footer{
        color: #333333;
        font-family: 'Noto Serif Jp';
        font-weight: 600;
        padding-top: 28px;
	padding-bottom: 180px;
        background: #ffffff;
        border-top: solid 1px #f2f2f2;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
        position: relative;
        z-index: 10;
}
#footer .flex-wrap{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 28px;
}
#footer .left-wrap{
        display: grid;
        gap: 16px;
        order: 2;
}
#footer .left-wrap figure.f_logo{
        width: 108px;
}
#footer .left-wrap address{
        font-size: 80%;
        font-style: normal;
        line-height: 1.6;
        text-indent: -0.5em;
}
#footer .left-wrap address a{
	display: inline;
        text-decoration: underline;
}
#footer .right-wrap{
        display: grid;
        order: 3;
}
#footer .right-wrap p:not([class]){
        font-size: 95%;
}
#footer .right-wrap p.tel{
        font-size: 160%;
        line-height: 1.8;
        letter-spacing: 0.1em;
}
#footer .right-wrap p.opentime{
        font-size: 85%;
}
#footer .right-wrap p.over20{
        font-size: 80%;
        line-height: 1.6;
        text-indent: -1em;
        margin-top: 28px;
        margin-left: 1em;
}
#footer .center-wrap{
        width: 100%;
        order: 1;
}
.sns-list{
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
}
.sns-list a{
        font-size: 28px;
}
#copyright{
        font-size: 65%;
        line-height: 1.6;
        margin-top: 28px;
        text-align: center;
}

/* fixed bnr */

#fixed-bnr{
        width: 160px;
        position: fixed;
        bottom: 8px;
        right: 8px;
        z-index: 50;
        transition: all ease .3s;
}
#fixed-bnr a{
	opacity: 1;
}

/* ----- pagetop ----- */
#pagetop{
    position: fixed;
    right: 12px;
    bottom: 80px;
}
#pagetop a{
    display: block;
    width: 40px;
    height: 20px;
    text-indent: -9999px;
    background: url(../images/common/pagetop.png) no-repeat center center;
    background-size: contain;
}


/* ----- commons ----- */

#page-header{
        padding: 48px 0;
        background: #000000;
        position: relative;
}
#page-header:before{
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
	background: url(../images/common/pagetitle-bg.jpg) no-repeat center center;
        background-size: cover;
        opacity: 0.7;
        z-index: 1;
}
#page-header h2{
        display: grid;
        justify-content: center;
        gap: 16px;
        position: relative;
        z-index: 10;
}
#page-header h2>span{
        color: #ffffff;
        text-align: center;
}
#page-header h2>*.ja{
        font-size: 135%;
        font-family: 'Noto Serif Jp';
        letter-spacing: 0.08em;
}
#page-header h2>*.en{
        font-size: 65%;
        font-weight: 400;
        letter-spacing: 0.1em;
        text-transform: uppercase;
}

#breadcrumb{
        color: #ffffff;
        margin-bottom: 64px;
        padding-top: 8px;
        padding-bottom: 8px;
        background: #121212;
}
#breadcrumb ol{
}
#breadcrumb li{
        display: inline;
        font-size: 75%;
        font-weight: normal;
        line-height: 1.6;
        word-break: break-all;
}
#breadcrumb li:after{
        content: ">";
        margin: 0 8px;
}
#breadcrumb li:last-child::after{
    content: none;
}
#breadcrumb li a{
        display: inline;
        text-decoration: underline;
}
#breadcrumb li a,
#breadcrumb li span,
#breadcrumb li strong{
    word-wrap: break-word;
    word-break: break-all;
}

#contents section{
}
#contents>section,
#contents .inner>section{
        padding-bottom: 64px;
}
#contents>section>*,
#contents .inner>section>*{
        margin-bottom: 1.8em;
}
#contents>section>*:last-child,
#contents .inner>section>*:last-child{
        margin-bottom: 0 !important;
}
#contents section h3,
h3.cat_title{
        font-size: 180%;
        font-family: 'Noto Serif Jp';
        line-height: 1.4;
        margin-bottom: 1.8em !important;
        position: relative;
}
h3.cat_title{
        font-size: 135%;
}
#contents section h3:before,
h3.cat_title:before{
        content: "";
        display: block;
        width: 80px;
        height: 1px;
        position: absolute;
        left: 0;
        bottom: -0.8em;
        background: #1391d3;
}
#contents section h4{
        font-size: 200%;
        font-family: 'Noto Serif Jp';
        line-height: 1.6;
        padding-left: 0.6em;
        margin-bottom: 1em !important;
        border-left: solid 5px #1391d3;
}
#contents section h5{
        color: #1391d3;
        font-size: 140%;
        line-height: 1.6;
        padding-bottom: 0.3em;
        margin-bottom: 1.25em !important;
        border-bottom: solid 1px #999999;
}
#contents section h6{
        font-size: 125%;
        line-height: 1.6;
        margin-bottom: 0.8em !important;
}
section p{
        font-size: 90%;
        line-height: 1.8;
        text-align: justify;
}
section p.cc{
        font-size: 160%;
        font-weight: 600;
        font-family: 'Noto Serif Jp';
        line-height: 1.6;
        margin-bottom: 0.8em !important;
}
section li{
        font-size: 90% !important;
        line-height: 1.6;
        text-align: justify;
}
section ol,
section ul{
    font-size: 100%;
}
section ol.decimal,
section ul.disc{
        display: grid;
        gap: 0.3em;
        margin-left: 1.25em;
        list-style-position: outside;
}
section ul.disc li{
    list-style-type: disc;
}
section ol.decimal li{
    list-style-type: decimal;
}
section table{
        width: 100%;
        border-collapse: separate;
        border-spacing: 1px;
        background: #cccccc;
}
section table tr>*{
        font-size: 80%;
        line-height: 1.6;
        text-align: justify;
        padding: 0.8em 1em;
}
section table thead th{
        text-align: center;
        background: #e5e5e5;
}
section table tbody th{
        background: #e5e5e5;
}
section table tbody td{
        background: #ffffff;
}
section dl.tableDl{
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        background: #f2f2f2;
        border: solid 1px #cccccc;
        border-top: none;
}
section dl.tableDl dt,
section dl.tableDl dd{
        width: 100%;
        font-size: 90%;
        line-height: 1.6;
        text-align: justify;
        padding: 0.8em 1em;
        border-top: solid 1px #cccccc;
}
section dl.tableDl dt{
        font-weight: 600;
}
section dl.tableDl dd{
        background: #ffffff;
}

#contents section .img2,
#contents section .img3,
#contents section .img4{
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
}
#contents section .img2 figure{
        width: calc(100%);
}
#contents section .img3 figure,
#contents section .img4 figure{
        width: calc((100% - 16px) / 2);
}
#contents section figcaption{
        font-size: 90%;
        line-height: 1.6;
        text-align: justify;
        padding-top: 0.8em;
}
#contents section .flex-wrap{
        display: grid;
        gap: 1.8em;
}

/* ----- 横スクロール型テーブル ------ */

.scroll{
    overflow: auto;
    margin: 0 0 16px;
    border: solid 1px #cccccc;
}
.scroll table{
    width:100%;
    white-space: nowrap;
    margin: 0;
}
.scroll::-webkit-scrollbar{
     height: 5px;
}
.scroll::-webkit-scrollbar-track{
     background: #F1F1F1;
}
.scroll::-webkit-scrollbar-thumb {
     background: #BCBCBC;
}

/* ----- infolist ----- */

ul.infoList{
    margin-bottom: 28px;
    border-bottom: solid 1px #cccccc;
}
ul.infoList li{
        font-family: 'Noto Sans Japanese';
        border-top: solid 1px #cccccc;
}
ul.infoList li a{
        display: flex;
        flex-wrap: wrap;
        gap: 0.2em 1em;
        text-decoration: none;
        padding: 0.8em 0;
}
ul.infoList li p.date{
        width: fit-content;
        color: #919191;
        font-size: 85%;
        font-weight: normal;
        line-height: 1.6;
        letter-spacing: 0;
}
ul.infoList li p.category{
        color: #ffffff;
        min-width: 80px;
        height: fit-content;
        font-size: 80%;
        font-weight: 500;
        line-height: 1;
        text-align: center;
        padding: 0.3em 1em;
        background: #1391d3;
        border-radius: 2px;
}
ul.infoList li p.category-id-event{
        color: #1391d3;
        background: #e5e5e5;
}
ul.infoList li p.category-id-campaign{
        color: #1391d3;
        background: #ffffff;
        border: solid 1px #1391d3;
}
ul.infoList li p.title{
        width: 100%;
	font-size: 95%;
        font-weight: 500;
        line-height: 1.6;
}

/* ----- info Detail ----- */

article#infoDetail{
}
article#infoDetail #infoHeader{
        display: grid;
        gap: 12px;
        padding: 20px 0 28px;
        border-top: solid 8px #0068B7;
        border-bottom: solid 1px #cccccc;
}
article#infoDetail #infoHeader h3{
        font-size: 160%;
        line-height: 1.6;
}
article#infoDetail #infoHeader p.date{
        color: #919191;
        font-size: 90%;
}
article#infoDetail .letterbody{
       font-size: 95%;
        line-height: 1.8;
        text-align: justify;
        padding: 2em 0;
}

/* Default style for WP-PageNavi plugin */

.wp-pagenavi {
    margin: 40px 0 0;
    text-align: center;
    clear: both;
}
.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-block;
    text-decoration: none;
    padding: 3px 5px;
    margin: 2px;
    border: 1px solid #BFBFBF;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color: #000;
}
.wp-pagenavi span.current {
    font-weight: bold;
}

/* ----- 404 ----- */

#page404{
    text-align: center;
    padding-top: 48px;
    padding-bottom: 80px;
}
#page404 .text_404{
    color: #cccccc;
    font-size: 120px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}
#page404 .text_notfount_en{
    color: #cccccc;
    font-size: 24px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 0 24px;
}
#page404 .text_notfount_ja{
    color: #999999;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 0 40px;
}
#page404 .text_notfount_ja+p,
#page404 .renewal{
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 2.5em;
}
#page404 p.ask{
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0.75em;
}
#page404 p.ask+p{
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 2.5em;
}



/* ----- home ----- */

#mv{
        background: #f2f2f2;
        position: relative;
        overflow: hidden;
}
#mv .bg-img{
        object-fit: cover;
        min-width: 100%;
        min-height: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 0;
}
#mv .filter-img{
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
}
#mv h2.cc{
        position: absolute;
        top: 15%;
        left: 50%;
        z-index: 10;
        transform: translateX(-50%);
        width: 65%;
        min-width: 280px;
        max-width: 400px;
}

.contents-section {
/*        overflow-x: hidden;*/
        z-index: 10;
        position: relative;
}
.contents-box {
        display: grid;
        gap: 48px;
}
.contents-img {
        width: calc(100% + 20px);
	height: 35vh;
}
.contents-img.left {
        margin-right: 20px;
        margin-left: -20px;
}
.contents-img.right {
        margin-right: -20px;
        margin-left: 20px;
}
.contents-img>*{
        width: 100%;
        height: 100%;
        overflow: hidden;
        box-shadow: 0 8px 8px rgba(0, 0, 0, 0.6);
}
.contents-img.left>*{
}
.contents-img.right>*{
}

#homeContent{
    font-weight: 600;
    font-family: 'Noto Serif Jp';
}
#homeContent h3:not([class]){
        font-size: 200%;
        line-height: 1.6;
        margin-bottom: 16px;
}
#homeContent h3:not([class]) small{
        font-size: 45%;
}
#homeContent h3:not([class]) *.en{
        color: #1391d3;
}
#homeContent p.cacthcopy-text{
        font-size: 180%;
        font-weight: bold;
        line-height: 1.4;
        text-align: justify;
        margin-bottom: 20px;
}
#homeContent p:not([class]){
        font-size: 95%;
        font-family: 'Noto Sans Japanese';
        font-weight: normal;
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 28px;
}
#homeContent .btns{
        justify-content: center;
}
#homeContent .btns>a{
        min-width: 240px;
}
#homeContent>*{
	padding-top: 48px;
        padding-bottom: 64px;
        position: relative;
}
#homeContent #message,
#homeContent #message-wrap{
        padding-top: calc(48px - 24px);
        background: #f2f2f2;
}
/*
#homeContent #message:before,
#homeContent #message:after,
#homeContent #message-wrap:before,
#homeContent #message-wrap:after{
	content: "";
        width: 100%;
        height: 28px;
        background-color: #f2f2f2;
        position: absolute;
        top: -68px;
        clip-path: polygon(0% 0%, 0% 100%, 50% 100%);
        z-index: 10;
}
#homeContent #message:after,
#homeContent #message-wrap:after{
        transform: scaleX(-1);
}
*/

#homeContent #message-wrap h3{
        margin-bottom: 8px;
}
#homeContent #message-wrap p.cacthcopy-text{
        margin-bottom: 20px;
}
#homeContent .flex-wrap.half-wrap{
        display: flex;
        flex-wrap: wrap;
        gap: 28px;
        justify-content: space-between;
}
#homeContent .flex-wrap.half-wrap>*.half{
        width: 100%;
}
#homeContent .flex-wrap.half-wrap .text-wrap{
        order: 1;
        display: grid;
        align-content: start;
}
#homeContent .flex-wrap.half-wrap .text-wrap>*:last-child{
	margin-bottom: 0 !important;
}
#homeContent .flex-wrap.half-wrap figure{
        order: 2;
        height: 35vh;
        border-radius: 16px;
        overflow: hidden;
}
#homeContent #about{
}
#homeContent #about:before{
        content: "";
}
#homeContent #service{
        background: #1370aa;
}
#homeContent #service h3,
#homeContent #service h3>*{
        color: #ffffff;
}
#homeContent #service .service-list-wrap{
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 28px;
        position: relative;
        z-index: 10;
}
#homeContent #service .service-list-wrap>*{
        padding: 28px;
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        z-index: 10;
}
#homeContent #service .service-list-wrap figure.icon{
        width: 64px;
        margin: 0 auto 12px;
}
#homeContent #service .service-list-wrap .text-wrap p.title-text{
	color: #1391d3;
        font-size: 135%;
        line-height: 1.6;
        text-align: center;
        margin-bottom: 8px;
}
#homeContent #service .service-list-wrap .text-wrap p:not([class]){
        margin-bottom: 0;
}
#homeContent #activity{
/*
        color: #ffffff;
*/
        overflow: hidden;
}
#homeContent #activity:before,
#homeContent #activity:after{
        content: "";
        display: block;
        width: 100%;
        height: calc(100% - 35vh + 64px);
        position: absolute;
        top: 0;
        left: 0;
}
/*
#homeContent #activity:before{
        background: url(../images/home/AdobeStock_427246703_Preview.jpeg) no-repeat center center;
        background-size: cover;
        z-index: 1;
}
*/
#homeContent #activity:after{
/*
        background: #2B6085;
        opacity: 0.6;
*/
        background: #f2f2f2;
        z-index: 2;
}
/*
#homeContent #activity h3:not([class]) *.en{
        color: #ffffff;
}
#homeContent #activity .btns a{
        color: #464853;
        background: #ffffff;
}
*/
#homeContent #greeting{
}
#homeContent #greeting .contents-img{
        aspect-ratio: 3 / 2;
        height: auto;
}
#recruit{
        padding-top: 28px;
        padding-bottom: 28px;
        background: #000000;
        overflow: hidden;
}
#recruit:before,
#recruit:after{
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
        position: absolute;
        right: 0;
}
#recruit:after{
        background: #464853 url(../images/home/recruit-bg-img2.jpg) no-repeat center center;
        background-size: cover;
        z-index: 0;
        opacity: 0.7;
}
#recruit .contents-txt{
        color: #ffffff;
        padding: 28px 28px;
        background: rgba(0, 0, 0, 0.6);
}
#recruit .contents-txt>p:not([class]){
        font-weight: normal;
}
#recruit .contents-txt .btns a{
        color: #464853;
        background: #ffffff;
}

/* ----- information parts ----- */
#information{
        background: #ffffff;
}
#information h3.secTitle{
        font-size: 240% !important;
        text-align: center;
        margin-bottom: 1em !important;
}
#information .info-category-header{
}
#information ul.tab{
	display: flex;
        flex-wrap: wrap;
        gap: 1px;
        width: 100%;
}
#information ul.tab>li{
        width: calc((100% - 1px) / 2);
        font-size: 85%;
        font-weight: 600;
        text-align: center;
        padding: 0.8em 0.8em;
        position: relative;
        cursor: pointer;
        background: #e5e5e5;
        color: #999999;
}
#information ul.tab>li.active{
        background: #1391d3;
        color: #ffffff;
}
#information ul.tab_content{
        margin-bottom: 28px;
}
#information ul.tab_content>li{
        padding: 20px 16px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
#information ul.tab_content>li:not(.active){
    display: none;
}
#information ul.tab_content>li .infolist{
    max-height: 240px;
    overflow-y: scroll;
}

/* ----- company ----- */

#company.message .flex-wrap{
}
#company.message .flex-wrap .text-wrap{
        display: grid;
        gap: 1.8em;
}
#company.message .flex-wrap figure{
}
#company.message p.name{
        font-weight: 600;
        font-family: 'Noto Serif Jp';
        text-align: right;
}
#company.message p.name b{
        font-size: 135%;
}

/* ----- message ----- */

#point-bg-wrap{
        padding-top: 48px;
        padding-bottom: 48px;
        position: relative;
}
#point-bg-wrap:before{
        content: "";
        display: block;
        width: 100%;
        height: calc(100% - 200px);
        position: absolute;
        left: 0;
        top: 50%;
        background: #1391d3;
        z-index: 0;
        transform: translateY(-50%);
        opacity: 0.15;
}
.point-list-wrap{
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        counter-reset: li_count;
}
.point-list-wrap>*.point-wrap{
        background: #ffffff;
        position: relative;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
        width: calc(100% - 40px);
}
.point-list-wrap>*.point-wrap:before{
        content: "";
        counter-increment: li_count;
        content: "0" counter(li_count);
        color: #1391d3;
        font-size: 40px;
        font-weight: 600;
        font-family: 'Noto Serif Jp';
        position: absolute;
        top: -20px;
        right: -12px;
}
.point-list-wrap>*.point-wrap:nth-child(even){
	margin-left: auto;
}
.point-list-wrap>*.point-wrap .text-wrap{
padding: 28px 20px;
}
.point-list-wrap p.title-text{
        font-size: 135%;
        font-weight: 600;
        font-family: 'Noto Serif Jp';
        line-height: 1.6;
        margin-bottom: 0.3em !important;
}

/* ----- service ----- */

#contents #service{
}
#service .contents-section{
        margin-bottom: 64px;
        position: relative;
}
#service .contents-section:before{
        content: "";
        display: block;
        width: calc(100% + 40px);
        height: calc(100% - 35vh + 64px);
        background: #f2f2f2;
        position: absolute;
        z-index: 0;
        top: 0;
        left: -20px;
}
#service .contents-img{
}
#service .contents-img>*{
        box-shadow: none;
}
#service .contents-txt{
        display: grid;
        align-content: center;
        padding-top: 48px;
}
#service .contents-txt>*{
        position: relative;
        z-index: 10;
}
#service .contents-txt p.number{
        width: fit-content;
        color: #1391d3;
        font-size: 28px;
        font-weight: 600;
        font-family: 'Noto Serif Jp';
        line-height: 1;
        position: relative;
        margin-bottom: 40px;
}
#service .contents-txt p.number:before{
        content: "";
        display: block;
        width: 40px;
        height: 40px;
        border-right: solid 1px #cccccc;
        position: absolute;
        bottom: -8px;
        right: -20px;
        transform: rotate(45deg);
}
#service .contents-txt p.en-title-text{
        color: #999999;
        font-weight: 600;
        font-family: 'Noto Serif Jp';
}
#service .contents-txt p.title-text{
        font-size: 135%;
        font-weight: 600;
        font-family: 'Noto Serif Jp';
        line-height: 1.6;
        margin-bottom: 0.6em !important;
}

/* ----- access ----- */

.flex-wrap{
}
.flex-wrap>*.half{
        width: 100%;
}
#company.access .flex-wrap>.access{
        background: #ffffff;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
#company.access .flex-wrap>.access>p{
        color: #ffffff;
        font-size: 95%;
        font-family: 'Noto Serif Jp';
        font-weight: 600;
        padding: 0.6em 20px;
        background: #1391d3;
}
#company.access .flex-wrap>.access .text-wrap{
        padding: 20px;
}

/* ----- activity ----- */

#activity .activity-wrap{
        display: grid;
        gap: 28px;
        padding: 28px 20px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
        position: relative;
    }
}
#activity .activity-wrap .text-wrap{
        order: 1;
}
#activity .activity-wrap .text-wrap.left{
        margin-right: auto;
}
#activity .activity-wrap .text-wrap.right{
        margin-left: auto;
}
#activity .activity-wrap .icon-wrap{
	display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
}
#activity .activity-wrap .icon-wrap>figure{
        width: calc((100% - 32px) / 5);
}
#activity .activity-wrap p.en-title-text{
        color: #1391d3;
        font-weight: 600;
        font-family: 'Noto Serif Jp';
}
#activity .activity-wrap p.title-text{
        font-size: 135%;
        font-weight: 600;
        font-family: 'Noto Serif Jp';
        line-height: 1.6;
        margin-bottom: 0.6em !important;
}
#activity .activity-wrap>figure{
        order: 2;
}

/* ----- customer voice ----- */

#customer .voice-wrap{
        display: grid;
        justify-content: space-between;
        margin-bottom: 48px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
        position: relative;
}
#customer .voice-wrap .text-wrap{
	width: 100%;
        display: grid;
        align-items: center;
        align-content: center;
        gap: 12px;
        order: 2;
        padding: 28px 20px;
}
#customer .voice-wrap p.title-text{
        font-size: 115%;
        font-weight: 600;
        font-family: 'Noto Serif Jp';
        line-height: 1.6;
}
#customer .voice-wrap p.name-text{
        color: #666666;
        font-size: 85%;
        font-weight: 500;
        line-height: 1.6;
}
#customer .voice-wrap .btns{
        justify-content: center;
        margin-top: 8px;
}
#customer .voice-wrap .btns>a{
        min-width: 200px;
        font-weight: 600;
        background: #1391d3;
}
#customer .voice-wrap>figure{
        width: 100%;
        order: 1;
}

#customer.voice{
}
#customer.voice .title-wrap{
        display: flex;
        flex-wrap: wrap;
        background: #f2f2f2;
        margin-bottom: 48px;
}
#customer.voice .title-wrap figure{
        width: 100%;
        order: 1;
}
#customer.voice .title-wrap .title-text-wrap{
        width: 100%;
        order: 2;
        display: grid;
        align-content: center;
        gap: 16px;
        padding: 28px 20px;
}
#customer.voice .title-wrap .title-text-wrap p.en-title-text{
    color: #1391d3;
    font-weight: 600;
    font-family: 'Noto Serif Jp';
}
#customer.voice .title-wrap .title-text-wrap p.title-text{
        font-size: 115%;
        font-weight: 600;
        font-family: 'Noto Serif Jp';
        line-height: 1.6;
}
#customer.voice .title-wrap .title-text-wrap p.name-text{
        color: #666666;
        font-size: 85%;
        font-weight: 500;
        line-height: 1.6;
}
section .clearfix>*{
        margin-bottom: 1.8em;
}

/* ----- contact form ----- */

#contact .wpforms-field-label{
    font-size: 90%;
}