

/* ===================
common
====================== */
:root {
    --primary-green: #235F5C;
    --primary-lightgreen: #63B7A7;
    --primary-black: #51625D;
    --primary-red: #E16F7E;
}

html, body{
    overflow-x: hidden;
    overflow-x: clip;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 
    "Noto Sans",
    "Zen Kaku Gothic New",
    "Shippori Mincho",
    "Oswald",
    Arial,
    sans-serif;
    font-style: normal;
    color: #51625D;
    line-height: 1.5;
}

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

.common__title h2 {
    color: var(--primary-lightgreen);
    font-family: Montserrat;
    font-size: 1.4rem;
    font-style: normal;
    letter-spacing: 0.36px;
}

.common__title p {
    color: var(--primary-green);
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.6px;
    margin-top: 6px;
}


.title__sub {
    color: #63B7A7;
    text-align: center;
    font-family: Montserrat;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.45px;
}

.cta__job a img,
a.jobbtn__navPC,
a.jobbtn__nav {
    transition:
        filter .25s ease,
        transform .12s ease;
}

/* hover */
.cta__job a:hover img,
a.jobbtn__navPC:hover,
a.jobbtn__nav:hover {
    transform: translateY(-1px);
    filter:
        drop-shadow(0 2px 6px rgba(80,80,80,0.15));
}

/* active */
.cta__job a:active img,
a.jobbtn__navPC:active,
a.jobbtn__nav:active {
    transform: translateY(1px) scale(0.98);
    filter:
        brightness(0.98)
        drop-shadow(0 1px 3px rgba(255,255,255,0.25));
}


/* 
html::before {
  content: "";
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 999999;
  transition: opacity 180ms ease;
}


html.cover::before {
  opacity: 1;
  pointer-events: auto;
}
 */


.header-logo a:focus { outline: none; }


/* common PC */
@media screen and (min-width: 769px) {

    .SPbr {
        display: none;
    }

    .title__sub {
        font-size: 2rem;
        letter-spacing: 0.6px;
    }

    .common__title h2 {
        font-size: 2rem;
        letter-spacing: 0.6px;
    }

    .common__title p {
        font-size: 4.2rem;
        line-height: 1.2;
        letter-spacing: 0.6px;
        margin-top: 6px;
    }


}
/* common PC */


/*====================
header
=====================*/ 

.header {
    padding: 12px 5.8% 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo,
.nav__logo {
    width: 141px;
    height: 48px;
    flex-shrink: 0;
}


/* header PC */

@media screen and (min-width: 769px) {
 .header {
    padding: 0 0 0 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky; 
    top: 0;         
    z-index: 100;    
    background: #fff;
    border-bottom: 1px solid rgba(81,98,93,.06);
    box-shadow: 0 1px 6px rgba(0,0,0,.02);
    align-items: stretch;
    height: 94px; 
 }

 .header__logo {
    width: 186px;
    height: 91px;
    margin-top: 17px;
}

}

/* header PC */

/*====================
.nav 初期表示
=====================*/
.nav {
    background-color: #fff;
    padding: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s;
}
 
.nav__btn {
    display: block;
}

.nav__header {
    padding: 12px 5.8% 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__right {
    padding: 0 5.8% 0;
}

.nav__header .nav__logo {
    width: 148px;
    height: 48px;
}

.nav__header .nav__btn {
    width: 14px;
    height: 14px;
}

.nav__list {
    margin-top: 43px;
} 

.nav__item {
    color: var(--primary-black);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.5rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.75px;
    display: flex;
    align-items: baseline;
    margin-top: 20px;
}

.nav__item .icon__nav {
    width: 13px;
    height: 10px;
    margin-right: 9px;
}

.nav__item:active{
  opacity: .7;
}

.nav__item.is-current{
  color: rgba(81, 98, 93, .55);
}


.navitem__sub {
    display: none;
}


.jobbtn__navPC {
    margin: 0;
    display: none;
}

.jobbtn__nav {
    margin-top: 12px;
}

.jobbtn__nav img {
    width: 100%;
    height: auto;
    margin-top: 12px;
}

.contactbtn__nav{
    margin-top: 64px;
    width: 100%;
    height: auto;
}

.contactbtn__nav--PC {
    display: none;
}

.nav.active {
    transform: translateX(0);
}


/* nav PC */
@media screen and (min-width: 769px) {
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__list {
        display: flex;
        align-items: center;
        margin-top: 0;
    }

    .navbtn__list {
        display: flex;
        align-items: center;
        align-items: stretch;
        height: 100%;
    }

    .header__right {
        padding: 0;
        display: flex;
        align-items: center;
    }

    .nav__header {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .jobbtn__nav {
        display: none;
    }

    .contactbtn__nav {
        display: none;
    }

    .contactbtn__nav--PC {
        display: block;
        max-width: 1000px;
        height: auto;
    }

    .jobbtn__navPC {
        display: block;
        max-width: 1000px;
        height: auto;
    }

    .nav__item {
        font-size: 1.6rem;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.75px;
        margin-top: 0;
        margin-top: 3px;
    }


    .navitem__sub {
        display: block;
        color: var(--primary-lightgreen);
        font-family: Montserrat;
        font-size: 1.5rem;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.45px;
    }

    .navitem__PC {
        text-align: center;
        margin-right: 30px;
    }

    .icon__nav {
        display: none;
    }

    /* PCメニューの項目（li）を下線の土台にする */
    .navitem__PC{
        position: relative;
        display: inline-block;  
        padding-bottom: 3px;     
    }

    /* 下線（最初は消す） */

    .navitem__PC::after{
        content:"";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1.5px;
        background: linear-gradient(90deg,
        rgba(99,183,167,.85) 0%,
        rgba(99,183,167,.55) 50%,
        rgba(99,183,167,.85) 100%
        );
        opacity: .85;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .2s ease;
    }

    /*  
    .navitem__PC::after{
        content:"";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1.5px;
        background: linear-gradient(90deg,
        rgba(92,186,171,.80) 0%,
        rgba(92,186,171,.48) 50%,
        rgba(92,186,171,.80) 100%
        );
        opacity: .85;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform .2s ease;
    }
     */


    /* 「項目に入った瞬間」＝li:hover で出す */
    .navitem__PC:hover::after{
        transform: scaleX(1);
    }


}
/* nav PC */



/*====================
CTA
=====================*/

.section--cta {
    padding: 40px 6.9% 56px;
    background: url(../images/cta-bg-SP.svg);
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
}

.cta__lead p {
    color: var(--primary-black);
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1.92px;
}

.cta__tel img {
    width: 318px;
    height: auto;
    filter: drop-shadow(0 3px 6px rgba(255,255,255,0.42));
}

.cta__job img {
    width: 318px;
    height: auto;
}

.cta__PC {
    text-align: center;
}

.cta__tel {
    margin-top: 21px;
}


.cta__job {
    margin-top: 12px;
}

.time__SP {
    width: 307px;
    height: auto;
    margin-top: 9px;
}

.time__PC {
    display: none;
}

/* CTA PC */
@media screen and (min-width: 769px) {
    .section--cta {
        text-align: center;
        padding: 84px 0 87px;
        background: url(../images/cta-bg-PC.svg);
        background-repeat: repeat;
        background-position: center;
        background-size: cover;
    }

    .cta__lead p {
        font-size: 3rem;
        letter-spacing: 3.6px;
    }

    .cta__lead span {
        letter-spacing: -15px;
    }

    .cta__PC {
        display: flex;
        margin-top: 30px;
        gap: 24px;
        justify-content: center;
    }

    .cta__tel {
        margin-top: 0;
    }

    .cta__job {
        margin-top: 0;
    }


    .cta__tel img {
        width: 412px;
        height: auto;
        filter: drop-shadow(0 3px 6px rgba(255,255,255,0.42));
    }

    .cta__job img {
        width: 412px;
        height: auto;
        display: block;
    }

    .time__SP {
        display: none;
    }

    .time__PC {
        display: block;
        max-width: 848px;
        margin: 20px auto 0;
    }
}
/* CTA PC */

/*====================
footer
=====================*/

.footer {
    padding: 11px 12.5% 21px;
    text-align: center;
}

.footer__logo img {
    width: 178px;
    height: 71px;
}

.footer__info {
    text-align: center;
}

.footer__info p {
    color: var(--primary-black);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8; 
    letter-spacing: 0.77px;
    margin-top: 15px;
}

.btn__officia img {
    max-width: 280px;
}

.btn--official {
    margin-top: 12px;
    position: relative;
    display: inline-block;
}

/* ▼ 通常ボタン */
.btn--official .btn-official img{
  display: block;
  width: 100%;
  opacity: 1;
  transition: opacity .6s ease;
}

/* ▼ hover用：上に重ねる */
.btn--official .btn-official-hover{
  position: absolute;
  top: 0;
  left: 0;
}

/* hover画像は最初透明 */
.btn--official .btn-official-hover img{
  display: block;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease;
}

/* ▼ 切り替え */
.btn--official:hover .btn-official img{
  opacity: 0;
}
.btn--official:hover .btn-official-hover img{
  opacity: 1;
}


.footerNav {
    max-width: 280px; 
    margin: 0 auto;
    margin-top: 22px;
}

.footerNav .menu__list {
    list-style: none;
    margin: 0;
    padding: 0;

    /* 2カラムで縦→横に流す */
    column-count: 2;
    column-gap: 60px; 
}

.footerNav .menu__item {
    break-inside: avoid;  /* カラムまたぎ防止 */
    display: flex;
    align-items: center;
    margin-bottom: 12px;  
}

.menu__item img {
    width: 8px;
    height: 7px;
    margin-right: 9px;
}

.menu__item a {
    color: var(--primary-black);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.1rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.55px
}

.copyright {
    color: var(--primary-black);
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
    margin-top: 30px;
}

/* footerPC */
@media screen and (min-width: 769px) {
    .footer {
        max-width: 1041px;
        margin: 0 auto;
        padding: 39px 0 39px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        align-items: stretch;
    }

    .footer__logo img {
        width: 228px;
        height: 91px;
    }

    .footer__info {
        text-align: left;
    }

    .footer__info p {
        color: var(--primary-black);
        font-family: "Zen Kaku Gothic New";
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.8; 
        letter-spacing: 1.12px;
        margin-top: 27px;
    }

    .btn__official {
        max-width: 350px;
        margin-top: 27px;
    }

    .footerNav {
        max-width: 390px; 
        margin: 0;
    }

    .foorerNav__PC {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        text-align: right;
        align-items: stretch;
        min-height: 256px;
        width: 390px;
    }

    .footerNav .menu__list {
        list-style: none;
        margin: 0;
        padding: 0;

    /* 2カラムで縦→横に流す */
        column-count: 2;
        column-gap: 84px; 
        margin-top: 24px;
    }

    .footerNav .menu__item {
        break-inside: avoid; 
        display: flex;
        align-items: center;
        margin-bottom: 15px;  
    }

    .menu__item img {
        width: 9px;
        height: 8px;
        margin-right: 9px;
    }

    .menu__item a {
        font-size: 1.6rem;
        letter-spacing: 0.7px;
        transition: color 0.35s ease, opacity 0.35s ease;
    }

    .menu__item:hover a{
        color: var(--primary-lightgreen);  
    }

    .copyright {
        color: var(--primary-black);
        font-family: "Noto Sans JP";
        font-size: 1.1rem;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.5px;
        margin-top: 0;
    }


}
/* footerPC */


