@charset "UTF-8";
/* =====================
  共通
===================== */
html,body{
    min-width: var(--pc-width);
}
.logo{
    width: 300px;
    height: 24px;
}

/* =====================
  header
===================== */
.header{
    height: 100px;
    position: relative;
    z-index: 100;
    background-color: var(--white);
    border-bottom: 1px solid #dae5eb;
}
.header .wrapper{
    align-items: center;
    height: 100%;
    padding-left: 30px;
}

/* ==== ボタン ==== */
.header-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 80px;
    height: 100%;
}
.header-btn [data-icon="login"]{
    width: 23px;
    height: 26px;
}
.header-btn [data-icon="email"]{
    width: 26px;
    height: 26px;
}
.header-btn span{
    font-size: 11px;
    color: var(--blue);
    margin-top: 6px;
    font-weight: bold;
}

/* ==== メニュー ==== */
.header-nav{
    margin-left: auto;
    height: 100%;
}
.header-list{
    display: flex;
    height: 100%;
}
.header-list > li{
    width: 110px;
    height: 100%;
    font-size: var(--fz-xsmall);
    font-weight: bold;
    border-left: 1px solid #dae5eb;
}
.header-list > li > a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-left: .5em;
    padding-right: .5em;
    line-height: 1.2;
    position: relative;
}
.header-list > li > a [data-icon="down"]{
    position: absolute;
    left: 50%;
    margin-left: -4px;
    bottom: 1.2em;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(45deg);
}

/* ==== hoverメニュー ==== */
/* 要素style */
.header .menu-contents{
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    left: 0;
    background-color: var(--white);
    visibility: hidden;
    transition: var(--all-animation);
}
.header-list > li:hover .menu-contents{
    opacity: 1;
    visibility: inherit;
}
.header .menu-contents .menu-wrapper{
    padding: 28px 60px 50px;
    width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
.header .menu-contents h2{
    border-top: 2px solid var(--semisky);
    border-bottom: 1px solid #d6d6d6;
    margin-bottom: 38px;
}
.header .menu-contents h2 a{
    font-size: 20px;
    color: var(--sky);
    display: flex;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
.header .menu-contents h2 [data-icon="b-more"]{
    margin-left: 1em;
}
.header .menu-contents .main-list > li > a{
    color: var(--darkblue);
}
.header .menu-contents .sub-list{
    margin-top: 12px;
    border-left: 1px solid #d6d6d6;
    padding-left: 1.2em;
}
.header .menu-contents .sub-list > li{
    font-size: var(--fz-xxsmall);
    line-height: 1;
}
.header .menu-contents .sub-list > li + li{
    margin-top: 9px;
}
.header .menu-contents .sub-list > li > a{
    color: var(--semismoke);
    font-weight: normal;
    line-height: 1;
}

/* Grid処理 */
.header .menu-contents .main-list{
    display: grid;
    /* grid-template:
        "11 21 31" auto
        "12 22 32" auto;
    align-items: flex-start; */
    grid-template:
        "a11 a21 a31"
        "a12 a22 a32";
    gap: 4em 2.7em;
}

/* =====================
  ハンバーガーメニュー
===================== */
.menu{
    height: 100%;
    position: relative;
}
.menu-on .menu::after{
    position: fixed;
    content: "";
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,.7);
}

/* ==== ボタン ==== */
#menuBtn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100%;
    position: relative;
    z-index: 2;
}
#menuBtn span{
    width: 23px;
    height: 14px;
    position: relative;
}
#menuBtn::before,
#menuBtn span::before,
#menuBtn span::after{
    position: absolute;
    content: "";
    height: 1px;
    background-color: var(--white);
    width: 23px;
    transition: var(--all-animation);
}
#menuBtn span::before,
#menuBtn span::after{
    left: 0;
}
#menuBtn span::before{
    top: 0;
}
#menuBtn span::after{
    bottom: 0;
}
#menuBtn.on::before{
    opacity: 0;
}
#menuBtn.on span::before{
    transform: rotate(45deg);
    margin-top: 6.5px;
}
#menuBtn.on span::after{
    transform: rotate(-45deg);
    margin-bottom: 6.5px;
}

/* ==== リスト ==== */
.menu .menu-wrapper{
    position: fixed;
    top: 0;
    height: 100%;
    background-color: var(--white);
    width: 500px;
    right: 0;
    transform: translateX(100%);
    transition: var(--all-animation);
    z-index: 1;
    padding: 40px 20px;
    overflow: auto;
}
.menu-on .menu .menu-wrapper{
    transform: translateX(0);
}

.menu .menu-wrapper .logo{
    margin-bottom: 50px;
}
.menu-list{
    border-top: 2px solid #e0e1e5;
}
.menu-list > li{
    border-bottom: 2px solid #e0e1e5;
}
.menu-list > li > a{
    font-size: var(--fz-large);
    font-weight: bold;
    display: block;
    position: relative;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 3em;
    padding-left: 1em;
}
.menu-list .main-list{
    font-size: var(--fz-small);
    padding: 0 1.3em;
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: var(--all-animation);
}
.menu-list .main-list > li >a{
    font-weight: bold;
    position: relative;
    color: var(--darkblue);
}
.menu-list .main-list > li + li{
    margin-top: 1.5em;
}
.menu-list .sub-list{
    margin-top: .5em;
}
.menu-list .sub-list li a{
    display: flex;
    align-items: baseline;
}
.menu-list .sub-list li a::before{
    content: "";
    display: inline-block;
    width: 12px;
    height: 8px;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: var(--i-right);
    flex: none;
}
.menu-list > li.has-child > a::after{
    position: absolute;
    content: "";
    width: 2px;
    height: 60%;
    right: 2.5em;
    top: 20%;
    background-color: #e0e1e5;
}
.menu-list [data-icon="plus"]{
    position: absolute;
    right: 0;
    top: 50%;
    width: 17px;
    height: 17px;
    margin-right: 10px;
    margin-top: -8.5px;
}
.menu .main-list.on{
    visibility: inherit;
    opacity: 1;
    height: auto;
    padding-bottom: 2em;
}

/* =====================
  右に追従するボタン
===================== */
#fixedBtn{
    position: fixed;
    right: 0;
    bottom: 0;
    width: 80px;
    height: 290px;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: var(--white);
    font-weight: bold;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
    z-index: 99;
}
#fixedBtn::before{
    display: block;
    content: "";
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-image: url(../img/header/01.png);
    height: 62px;
    margin-bottom: auto;
}
#fixedBtn [data-icon="w-more"]{
    margin-top: .5em;
    margin-bottom: auto;
}

/* =====================
  footer
===================== */
.footer{
    background-color: #f0f1f3;
}
.footer .wrapper{
    width: 1120px;
}

/* ==== お問い合わせ ==== */
.footer .unit[data-id="1"]{
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../img/footer/01.png);
    color: var(--white);
    padding-top: 30px;
    padding-bottom: 30px;
}
.footer .unit[data-id="1"] h2{
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-left: .9em;
    margin-right: 5em;
}
.footer .unit[data-id="1"] h2 .en{
    font-size: var(--fz-xsmall);
    margin-right: 3.5em;
    position: relative;
}
.footer .unit[data-id="1"] h2 .en .i-line{
    position: absolute;
    width: 90px;
    height: 1px;
    background-color: #d0d0d0;
    right: 100%;
    margin-right: 1em;
    top: 50%;
    margin-top: -0.5px;
}
.footer .unit[data-id="1"] h2 .en .i-line::before{
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    background-color: var(--white);
    top: 0;
    left: 0;
}
.footer .unit[data-id="1"] h2 .ja{
    font-size: 24px;
    display: inline-flex;
    align-items: center;
}
.footer .unit[data-id="1"] h2 [data-icon="w-email"]{
    width: 33px;
    height: 25px;
    margin-right: .5em;
}
.footer .unit[data-id="1"] p{
    font-size: var(--fz-xsmall);
}
.footer .unit[data-id="1"] [data-icon="w-more"]{
    margin-left: auto;
    margin-right: -30px;
}

/* ==== フッターnavigation ==== */
/* 要素style */
.footer .unit[data-id="2"]{
    padding-top: 37px;
    padding-bottom: 36px;
}
.footer .unit[data-id="2"] .item{
    padding-top: 5px;
}
.footer .unit[data-id="2"] .item p{
    font-size: var(--fz-xxsmall);
}
.footer .unit[data-id="2"] .logo{
    margin-bottom: 28px;
}
.footer .unit[data-id="2"] .footer-nav{
    display: flex;
    margin-left: auto;
}

/* Grid処理 */
.footer .unit[data-id="2"] .footer-nav .main-list{
    display: grid;
    grid-template:
        "a11 a21 a31" auto
        "a12 a21 a31" auto
        "a12 a21 a32" auto
        "a12 a21 a33" auto
        "a12 a21 a34" auto
        "a12 a21 ." auto
        ". a21 ." auto /auto 1fr;
    gap: .5em;
}

.footer .unit[data-id="2"] .footer-nav .main-list + .main-list{
    margin-left: 2em;
}
.footer .unit[data-id="2"] .footer-nav .main-list > li{
    max-width: 275px;
    border-left: 1px solid #e0e1e5;
    padding-left: 2.4em;
}
.footer .unit[data-id="2"] .footer-nav .main-list > li:nth-child(n + 3){
    margin-left: 2.4em;
}
.footer .unit[data-id="2"] .footer-nav .main-list > li > a{
    font-size: var(--fz-small);
    font-weight: bold;
    color: var(--darkblue);
}
.footer .unit[data-id="2"] .footer-nav .sub-list{
    font-size: var(--fz-mini);
    color: #5c5c5c;
    margin-top: 4px;
}
.footer .unit[data-id="2"] .footer-nav .sub-list li{
    margin-top: 1px;
}
.footer .unit[data-id="2"] .footer-nav .sub-list a{
    display: flex;
    align-items: baseline;
}
.footer .unit[data-id="2"] .footer-nav .sub-list a::before{
    content: "";
    display: inline-block;
    width: 12px;
    height: 8px;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-image: var(--i-right);
    flex: none;
}
.footer .unit[data-id="3"]{
    color: #5c5c5c;
    border-top: 1px solid #e0e1e5;
    font-size: var(--fz-mini);
}
.footer .unit[data-id="3"] .wrapper{
    height: 60px;
}
.footer .unit[data-id="3"] .sub-list{
    display: flex;
    align-items: center;
}
.footer .unit[data-id="3"] .sub-list li,
.footer .unit[data-id="3"] .sub-list li a{
    line-height: 1;
}
.footer .unit[data-id="3"] .sub-list li + li{
    margin-left: 1em;
    padding-left: 1em;
    border-left: 1px solid #5c5c5c;
}

/* =====================
  ボタン
===================== */
.button .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: var(--white);
    font-weight: bold;
    font-size: var(--fz-small);
    border-radius: var(--radiusPill);
    position: relative;
    min-width: 250px;
}
.button .btn [data-icon="w-right"]{
    width: 12px;
    height: 8px;
    position: absolute;
    right: 1em;
    top: 50%;
    margin-top: -4px;
}
.button .btn[data-bgcolor="h-grad"]{
    box-shadow: 0 2px 4px rgba(0,0,0,.3);
    width: 300px;
}

/* =====================
  アイコン
===================== */
[data-icon="b-more"],[data-icon="w-more"]{width: 30px;height: 30px;}
[data-icon="w-email"]{width: 25px;height: 19px;}

/* =====================
  事業内容一覧
===================== */
/* ==== 要素style ==== */
.project-list .unit .item{
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px 60px 30px;
    min-height: 250px;
    box-sizing: border-box;
    transition: var(--all-animation);
}
.project-list picture{
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 17px;
}
.project-list picture img{
    width: 100%;
}
.project-list .item[data-id="1"] picture{
    width: 89px;
}
.project-list .item[data-id="2"] picture{
    width: 80px;
}
.project-list .item[data-id="3"] picture{
    width: 69px;
}
.project-list .item[data-id="4"] picture{
    width: 86px;
}
.project-list .item[data-id="5"] picture{
    width: 79px;
}
.project-list .item[data-id="6"] picture{
    width: 67px;
}
.project-list .ttl{
    font-size: var(--fz-large);
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-top: auto;
}
.project-list .ttl::after{
    font-size: var(--fz-mini);
    display: block;
    font-weight: normal;
    color: #999999;
    margin-top: 10px;
}
.project-list .unit .item:hover{
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
}

/* ==== Grid処理 ==== */
.project-list .unit{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* =====================
  セミナー
===================== */
/* ==== 要素style ==== */
.seminar-list .unit{
    margin-top: 46px;
}
.seminar-list .unit .box{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-color: var(--darkblue);
    font-size: var(--fz-xxsmall);
    height: 258px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    padding: .7em 1.5em;
}
.seminar-list .unit .box::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 70%;
    left: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,1));
}
.seminar-list .unit .box *{
    position: relative;
    line-height: 1.75;
}
.seminar-list .unit .ttl{
    color: var(--white);
    font-weight: bold;
}
.seminar-list .unit .dates{
    color: #c1c1c1;
    margin-top: 4px;
}

/* ==== Grid処理 ==== */
.seminar-list .unit{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
.seminar-list .unit .item{
    position: relative;
}
.seminar-list .unit .item[data-state="finish"]::before,
.seminar-list .unit .item[data-state="open"]::before{
    pointer-events: none;
    position: absolute;
    z-index: 3;
    text-align: center;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    color: #fff;
    top: 0;
    left: 0;
    font-weight: bold;
    min-width: 80px;
    justify-content: center;
    line-height: 1;
    padding: 7px 0.5em;
}
.seminar-list .unit .item[data-state="finish"]::before{
    content: '終了';
    background: #777777;
}
.seminar-list .unit .item[data-state="open"]::before{
    content: '受付中';
    background: #f3a216;
}

/* =====================
  ページネーション
===================== */
.pager{
    margin-top: 53px;
}
.pager ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.pager ul li{
    margin-left: 5px;
    margin-right: 5px;
    font-size: var(--fz-xsmall);
}
.pager ul li a{
    transition: var(--all-animation);
}
.pager ul li a:not(.prev):not(.next){
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radiusPill);
    width: 40px;
    height: 40px;
    border: 1px solid #dae5eb;
}
.pager ul li a.is_active,
.pager ul li a:not(.prev):not(.next):hover{
    background-color: var(--blue);
    color: var(--white);
}
.pager ul li a.prev,
.pager ul li a.next{
    color: var(--darkblue);
    display: inline-flex;
    align-items: center;
}
.pager ul li a.prev:hover,
.pager ul li a.next:hover{
    opacity: 0.7;
}
.pager ul li a [data-icon="right"]{
    display: inline-block;
    width: 12px;
    height: 8px;
}
.pager ul li a.next{
    margin-left: 20px;
}
.pager ul li a.prev{
    margin-right: 20px;
}
.pager ul li a.next [data-icon="right"]{
    margin-left: 0.5em;
}
.pager ul li a.prev [data-icon="right"]{
    transform: rotate(180deg);
    margin-right: 0.5em;
}

/* =====================
  データなし
===================== */
.no-data{
    text-align: center;
    padding: 2em 1em 1em;
    font-weight: bold;
}