@charset "UTF-8";
/* CSS Document */
html {
    font-size: 62.5%; /* 16px * 62.5% = 10px */
    width: 100%;
}
body {
    color: #333333; 
    font-family: "Noto Sans JP","Oswald",sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-align: left;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.25);
}
.visually-hidden {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

@media(min-width:760px) {
    body{
        font-size: 1.6rem;
    }
    .sp-br {
        display: none;
    }
}
/* ヘッダー */
header {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: #ffffff;
}
.hamburger {
    display: none;
}
.header-inner {
    width: 96%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 15.5px 0;
    font-weight: 500;
    color: #055A45;
}
.header-logoarea {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo{
    margin-right: 20px;
}
.header_sptitle {
    display: none;
}
.navigation ul{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
}
.navigation li {
    margin-left: 40px;
}
.navigation li a{
    display: block;
    width: 100%;
}
.navigation button {
    vertical-align: inherit;
    color: #ffffff;
    background-color: #055A45;
    
    /* box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.25); */
    transition: all 0.3s;
}
.navigation button:hover{
    /* box-shadow: none; */
    opacity: 0.8;
}
.navigation button a {
    display: block;
    width: 100%;
    padding: 7px 20px;
}
@media(max-width:759px) {
    .header-inner {
        width: 100%;
        display: block;
        padding: 15.5px 16px;
        position: relative;
    }
    .hamburger {
        display: block;
        width: 30px;
        position: absolute;
        right: 16px;
        padding: 14px 0;
    }
    .hamburger_line {
        display: block;
        width: 25px;
        height: 4px;
        background-color: #055A45;
        border-radius: 2px;
        position: absolute;
        right: 0;
        transition: all .3s ease-in-out;
    }
    .hamburger_line::before {
        content: "";
        display: block;
        width: 20px;
        height: 4px;
        background-color: #055A45;
        border-radius: 2px;
        position: absolute;
        top: -10px;
        right: 0px;
        transition: all .3s ease-in-out;
    }
    .hamburger_line::after {
        content: "";
        display: block;
        width: 30px;
        height: 4px;
        background-color: #055A45;
        border-radius: 2px;
        position: absolute;
        top: 10px;
        right: 0px;
        transition: all .3s ease-in-out;
    }
    .hamburger_text {
        display: block;
        width: 30px;
        position: absolute;
        top: 28px;
        left: 2px;
        font-size: 1.0rem;
        font-weight: 700;
        transition: all .3s ease-in-out;
    }
    .hamburger_text::before {
        content: "Menu";
        display: block;
        width: 30px;
        height: 15px;
        position: absolute;
        top: 0px;
        left: 0px;
        font-size: 1.0rem;
        font-weight: 700;
        transition: all .3s ease-in-out;
    }
    .hamburger[aria-expanded="true"] .hamburger_line {
        background-color: transparent;
    }
    .hamburger[aria-expanded="true"] .hamburger_line::before {
        width: 30px;
        transform: rotate(45deg);
        top: 0;
        transition: all .3s ease-in-out;
    }
    .hamburger[aria-expanded="true"] .hamburger_line::after {
        transform: rotate(-45deg);
        top: 0;
        transition: all .3s ease-in-out;
    }
    .hamburger[aria-expanded="true"] .hamburger_text::before {
        content: "Close";
        left: -1px;
        transition: all .3s ease-in-out;
    }
    .header-logoarea {
        display: block;
    }
    .header-logo {
        margin-right: 0;
    }
    .header_pctitle {
        display: none;
    }
    .header_sptitle {
        display: block;
        text-align: center;
        margin-bottom: 72px;
        font-size: 1.6rem;
    }
    .navigation {
        padding-top: 35px;
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: #ffffff;
        visibility: hidden;
        opacity: 0;
        transition: all .3s ease-in-out;
        overflow-y: scroll;
    }
    .is-drawerActive .navigation {
        visibility: visible;
        opacity: 1;
        transition: all .3s ease-in-out;
    }
    .navigation ul{
        display: block;
        font-size: 1.4rem;
    }
    .navigation li {
        width: 58.30%;
        margin: 0 auto 72px;
        padding-bottom: 16px;
        border-bottom: 1px solid #CADFDA ;
        position: relative;
    }
    .navigation li::after {
        content: "";
        background-image: url(../img/common/arrow_forward_ios.svg);
        background-repeat: no-repeat;
        display: block;
        width: 16px;
        height: 16px;
        position: absolute;
        top: 2.5px;
        right: 0;
    }
    .navigation li:last-child {
        border-bottom: none ;
    }
    .navigation li::after:last-child {
        display: none;
    }
    .navigation button {
        width: 100%;
        text-align: center;
        border-radius: 7px;
    }
    .navigation button a {
        padding: 19.5px 0;
    }
    .no-scroll {
        overflow: hidden;
        height: 100vh; /* 高さ固定でスクロール不可 */
        position: fixed; /* 画面を固定 */
        width: 100%; /* 横幅を固定 */
    }
}
/* フッター */
.footer-cta {
    width: 100%;
    background-color: #E5F1EE;
    padding: 36px 16px;
}
.footer-cta_co-name {
    margin-bottom: 24px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #055A45;
}
.footer-cta_tel {
    margin-bottom: 24px;
}
.footer-cta_tel a{
    font-family: "Oswald",sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1;
    color: #055A45;
    display: block;
    padding-left: 28px;
    position: relative;
}
.footer-cta_tel a::before {
    content: "";
    background-image: url(../img/common/tel-icon.svg);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 2px;
    left: 0;
}
.footer-cta_tel p {
    font-weight: 500;
    color: #055A45;
}
.cta-btn {
    width: 200px;
    background-color: #055A45;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    border-radius: 7px;
    position: relative;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease;
    border: 1px solid #055A45;
}
.cta-btn a {
    position: relative;
    z-index: 2;
    padding: 19.5px 0;
    width: 100%;
    display: block;
}
.cta-btn:hover {
    box-shadow: none;
    color: #055A45;
}
.cta-btn::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.cta-btn:hover::before {
    opacity: 1;
    animation: cta-btn_hover 0.5s ease;
}
@keyframes cta-btn_hover {
    0% {
        width: 0%;
        opacity: 0;
        border-radius: 6px 0 0 6px;
    }
    90% {
        border-radius: 6px 0 0 6px;
    }
    100% {
        width: 100%;
        opacity: 1;
        border-radius: 6px 6px 6px 6px;
    }
}
.cta-btn::after {
    content: "";
    background-image: url(../img/common/arrow_forward_ios_white.svg);
    background-repeat: no-repeat;
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 19.5px;
    right: 16px;
    z-index: 2;
}
.cta-btn:hover::after {
    background-image: url(../img/common/arrow_forward_ios.svg);
    
}
.footer-nav_wrapper {
    width: 100%;
    background-color: #055A45;
    color: #ffffff;
    padding: 30px 0 10px;
    text-align: center;
}
.footer-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 74px;
}
.footer-nav li {
    padding: 0 10px;
    border-right: 1px solid #ffffff;
    font-weight: 500;
}
.footer-nav li:first-child {
    padding: 0 10px 0 0;
}
.footer-nav li:last-child {
    padding: 0 0 0 10px;
    border-right: none;
}
.footer-nav small {
    font-size: 1.0rem;
    font-weight: 500;
}
@media(min-width:760px) {
    .footer-cta {
        padding: 36px 10.55% 36px 48px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        row-gap: 8px;
    }
    .footer-cta_wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    .footer-cta_co-name {
        margin-bottom: 0;
        font-size: 2.0rem;
    }
    .footer-cta_tel {
        margin-bottom: 0;
        margin-right: 32px;
    }
    .footer-cta_tel p {
        font-size: 1.4rem;
        text-align: right;
    }
    .cta-btn {
        width: 300px;
    }
    .footer-nav_wrapper {
        padding: 32px 0 16px;
    }
    .footer-nav ul {
        margin-bottom: 48px;
    }
    .footer-nav small {
        font-size: 1.2rem;
    }
}
/* リンクボタン */
.pagelink-btn {
    width: 80%;
    max-width: 300px;
    background-color: #ffffff;
    border: 1px solid #055A45;
    border-radius: 33px;
    
    text-align: center;
    color: #055A45;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
    margin: 0 auto;
    transition: all 0.3s;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.25);
}
.pagelink-btn a {
    display: block;
    width: 100%;
    padding: 19.5px 0;
}
.pagelink-btn:hover {
    background-color: #055A45;
    border: 1px solid #055A45;
    color: #ffffff;
}
/* 下層KVテンプレート */
.l-mv{
    width: 100%;
    background-image: url(../img/company/sp_l-background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 86.5px 0;
}
.l-mv_box {
    width: 61.86%;
    background-color: #055A45;
    text-align: center;
    padding: 8px 16px;
    margin: 0 auto;
}
.l-mv_box h1{
    font-size: 2.4rem;
    font-weight: 500;
    color: #ffffff;
}
.l-mv_box h1 span{
    display: block;
    font-family: "Oswald",sans-serif;
    font-size: 1.4rem;
    margin-top: 4px;
}
.l-mv2 {
    background-color: #F5F5F5;
    padding: 44.5px 0;
}
.l-mv2 h1 {
    font-size: 2.8rem;
    font-weight: 500;
    color: #055A45;
    text-align: center;
}
.l-mv2 span {
    display: block;
    font-family: "Oswald",sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #055A45;
    padding-top: 8px;
}
@media(min-width:760px) {
    .l-mv{
        background-image: url(../img/company/l-background.webp);
        background-position: right;
        padding: 121px 0;
        margin: 0 0 0 auto;
    }
    .l-mv_box {
        width: 432px;
        text-align: left;
        padding: 16px 80px 16px 120px;
        margin: 0;
    }
    .l-mv2 {
        padding: 40px 0;
    }
    .l-mv2 h1 {
        font-size: 3.2rem;
    }
    .l-mv2 span {
        font-size: 1.6rem;
    }
}
/* パンくずリスト */
.breadcrumbs ul {
    width: 91.46%;
    display: flex;
    justify-content: flex-start;
    padding: 16px 0;
    margin: 0 auto;
    color: #055A45;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
}
.breadcrumbs li {
    padding-left: 18px;
    position: relative;
}
.breadcrumbs li::before {
    content: "";
    background-image: url(../img/common/keyboard_arrow_right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: 0;
    left: 4px;
}
.breadcrumbs li:first-child::before{
    content: "";
    background-image: url(../img/common/home-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 13px;
    height: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
}
@media(min-width:760px) {
    .breadcrumbs ul {
        width: 83.33%;
    }
}
/* ページアップボタン */
.pageup {
    position: fixed;
    bottom: 30px;
    right: 17px;
    display: none; /* 初期状態では非表示 */
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    color: #055A45;
    text-align: center;
    line-height: 50px;
    border: 2px solid #055A45;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.25);
}
.pageup::before {
    content: "";
    background-image: url(../img/common/Polygon\ 1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fadeUp {
    animation-name:fadeUpAnime;
    animation-duration: 1.0s;
    animation-fill-mode:forwards;
    animation-timing-function: ease-in-out;
    opacity:0;
}
.fadeup-trg {
    opacity: 0;
}
@keyframes fadeUpAnime{
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}
.slideUp {
    animation-name:slideUp-Anime;
    animation-duration:0.3s;
    animation-fill-mode:forwards;
    animation-timing-function:ease;
    animation-delay: 0.3s;
    opacity:0;
    }
  .slideUp_trg {
    opacity: 0;
    
} 
@keyframes slideUp-Anime{
    from {
      opacity: 0;
      transform: translateY(50px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}

.mv-fadeup {
    animation-name: mv-fadeUpAnime;
    animation-duration: 1.0s;
    animation-timing-function:ease-in-out;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes mv-fadeUpAnime {
    from{
    opacity: 0;
    }
    to {
    opacity: 1;
    }
}


