@charset "UTF-8";

html {
    width: 100%;
    height: 100%;
}

@media (max-width: 1224px) and (min-width: 768px) {
    html {
        font-size: 16px;
        font-size: 1.3071895425vw;
    }
}

@media (max-width: 375px) {
    html {
        font-size: 16px;
        font-size: 4.2666666667vw;
    }
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", "游ゴシック", YuGothic, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

body.no_scroll {
    overflow: hidden;
    position: relative;
}

a {
    cursor: pointer;
    text-decoration: none;
    outline: none;
    color: #000;
}

p {
    font-size: max(0.9375rem, 14px);
    line-height: 1.5;
}

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

.u-sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .u-pc {
        display: none;
    }

    .u-sp {
        display: block;
    }
}

/* —————————————————
  ヘッダー header
  —————————————————*/
.l-header {
    width: 100%;
    height: 80px;
    margin: 0 auto;
    transition: 0.3s ease all;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: #fff;
}

.l-header .l-header__logo {
    position: relative;
    z-index: 9;
    width: 18%;
}

.l-header .l-header__inner {
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    transition: 0.5s;
    height: 100%;
}

.l-header__nav {
    height: 100%;
}

.l-header__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    gap: 40px;
    z-index: 9;
    height: 100%;
}

.l-header__list li {
    position: relative;
    height: 100%;
}

.l-header__list li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #37B3DD;
    bottom: 0;
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -ms-transform-origin: right top;
    transform-origin: right top;
    transition: transform 0.3s;
}

.l-header__list li a,
.l-header__list li p {
    font-size: 0.875rem;
    position: relative;
    display: block;
    text-decoration: none;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: 0;
    transition: 0.3s ease;
    cursor: pointer;
}

@media (hover: hover) {
    .l-header__list li:hover::before {
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
        -ms-transform-origin: left top;
        transform-origin: left top;
    }
}

.l-header__mega {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    z-index: 999;
    padding: 0;
    position: fixed;
    top: 80px;
    left: 0;
    display: none;
}

.l-header__mega::before {
    content: "";
    display: block;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(37, 64, 73, 0.7);
    z-index: -1;
    pointer-events: none;
}

.l-header__mega .l-header__mega-wrap {
    position: relative;
    background-color: #fff;
    z-index: 1;
    padding-bottom: 6.25rem;
}

.l-header__mega .l-header__mega-wrap .l-wrap__wide {
    border-top: 2px solid #B9D1D9;
}

.l-header__mega .l-header__mega-wrap .l-header__mega-menu {
    max-width: 1016px;
    margin: 24px auto 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
}

.l-header__mega .l-header__mega-wrap .l-header__mega-menu li {
    width: calc(25% - 1.5rem);
}

.l-header__mega .l-header__mega-wrap .l-header__mega-menu li::before {
    display: none;
}

.l-header__mega .l-header__mega-wrap .l-header__mega-menu a {
    font-size: 0.875rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #B9D1D9;
    padding-bottom: 16px;
}

.l-header__mega .l-header__mega-wrap .l-header__mega-menu a::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    -webkit-mask-image: url("../img/common/icon_arrow.svg");
    mask-image: url("../img/common/icon_arrow.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: #37B3DD;
}

.c-hamburger {
    display: none;
}

.l-header.fixed {
    position: fixed;
    z-index: 999999;
}

.l-header.fixed .l-header__logo {
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    .l-header {
        padding: 0;
        height: 50px;
    }

    .l-header .l-header__logo {
        width: 50%;
        z-index: 999999;
    }

    .l-header__nav {
        z-index: 99999;
        width: 100%;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        background-color: #F3F6F7;
        padding-top: 100px;
    }

    .l-header__nav .l-header__list {
        padding-bottom: 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 0;
        margin-bottom: 75px;
        height: auto;
        width: calc(100% - 50px);
        margin: 0 auto;
    }

    .l-header__nav .l-header__list li {
        width: 100%;
        text-align: left;
        height: auto;
        border-bottom: 1px solid #B9D1D9;
    }

    .l-header__nav .l-header__list li:first-child {
        border-top: 1px solid #B9D1D9;
    }

    .l-header__nav .l-header__list li a,
    .l-header__nav .l-header__list li p {
        width: 100%;
        display: block;
        padding: 12px 8px;
        font-size: 1rem;
    }

    .l-header__nav .l-header__list li .has-mega {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .l-header__nav .l-header__list li .has-mega::after {
        content: "";
        display: block;
        width: 24px;
        height: 24px;
        background: url("../img/common/icon_open.svg") no-repeat center/100%;
    }

    .l-header__nav .l-header__list li.is-active .has-mega::after {
        background-image: url("../img/common/icon_close.svg");
    }

    .l-header__mega {
        width: 100%;
        margin: 0;
        z-index: 999;
        padding: 0;
        position: static;
        top: 80px;
        left: 0;
        display: none;
        padding-left: 8px;
    }

    .l-header__mega::before {
        display: none;
    }

    .l-header__mega .l-header__mega-wrap {
        position: relative;
        background: none;
        z-index: 1;
        padding-bottom: 12px;
    }

    .l-header__mega .l-header__mega-wrap .l-wrap__wide {
        border-top: none;
    }

    .l-header__mega .l-header__mega-wrap .l-header__mega-menu {
        max-width: 1016px;
        margin: 0 auto;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 0;
        background-color: none;
    }

    .l-header__mega .l-header__mega-wrap .l-header__mega-menu li {
        width: 100%;
        border-bottom: none;
        padding: 0;
        border-top: none;
    }

    .l-header__mega .l-header__mega-wrap .l-header__mega-menu li::before {
        display: none;
    }

    .l-header__mega .l-header__mega-wrap .l-header__mega-menu a {
        font-size: 0.875rem;
        display: block;
        border-bottom: none;
        padding-bottom: 0;
        padding: 0;
        padding: 12px 0;
    }

    .l-header__mega .l-header__mega-wrap .l-header__mega-menu a::before {
        content: "-";
        margin-right: 4px;
    }

    .l-header__mega .l-header__mega-wrap .l-header__mega-menu a::after {
        display: none;
    }

    .c-hamburger {
        display: inline-block;
        transition: all 0.2s;
        box-sizing: border-box;
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 50px;
        z-index: 99999999;
        display: block;
        background-color: #37B3DD;
    }

    .c-hamburger span {
        display: inline-block;
        transition: all 0.2s;
        box-sizing: border-box;
        position: absolute;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
        width: 30px;
        left: 14px;
    }

    .c-hamburger span:nth-of-type(1) {
        top: 12px;
    }

    .c-hamburger span:nth-of-type(2) {
        top: 20px;
    }

    .c-hamburger span:nth-of-type(3) {
        top: 28px;
    }

    .c-hamburger span:nth-of-type(4) {
        background: none;
        font-size: 0.5rem;
        font-weight: 700;
        color: #fff;
        letter-spacing: 0.1em;
        top: 32px;
        left: 17px;
    }

    .c-hamburger.is-active span:nth-of-type(1) {
        top: 16px;
        -ms-transform: translateY(8px) rotate(-45deg);
        transform: translateY(8px) rotate(-45deg);
    }

    .c-hamburger.is-active span:nth-of-type(2) {
        opacity: 0;
    }

    .c-hamburger.is-active span:nth-of-type(3) {
        top: 32px;
        -ms-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
    }

    .c-hamburger.is-active span:nth-child(4) {
        opacity: 0;
    }
}

/* —————————————————
  固定ボタン
  —————————————————*/
.l-fixed__btn {
    position: fixed;
    top: 30%;
    right: 0;
    z-index: 99999;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.l-fixed__btn a {
    width: 56px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-align: center;
    transition: 0.3s ease;
    letter-spacing: 0.15em;
    background: linear-gradient(180deg, rgb(239, 68, 133) 0%, rgb(242, 183, 115) 100%);
    color: #fff;
    padding: 20px 0;
}

.l-fixed__btn a::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: url("../img/common/icon_arrow.svg") no-repeat top left/100%;
}

@media (hover: hover) {
    .l-fixed__btn a:hover {
        opacity: 0.7;
    }
}

@media screen and (max-width: 767px) {
    .l-fixed__btn {
        position: static;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 16px;
        width: calc(100% - 30px);
        margin: 40px auto 0;
    }

    .l-fixed__btn a {
        width: calc(100% - 64px);
        max-width: 220px;
        height: 48px;
        border-radius: 0;
        -ms-writing-mode: initial;
        writing-mode: initial;
        position: relative;
        background: #37B3DD;
    }
}

/* —————————————————
  フッター footer
  —————————————————*/
.l-footer {
    position: relative;
    overflow: hidden;
    background-color: #FBFAF8;
    padding: 56px 0 64px;
}

.l-footer__block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.l-footer__info .l-footer__logo {
    margin-bottom: 40px;
}

.l-footer__info address {
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.l-footer__info dl {
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.l-footer__info dl dt {
    font-weight: 400;
}

.l-footer__menu .l-footer__nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 5rem;
    margin-bottom: 60px;
}

.l-footer__menu .l-footer__nav a {
    position: relative;
}

.l-footer__menu .l-footer__nav a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #37B3DD;
    bottom: -2px;
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -ms-transform-origin: right top;
    transform-origin: right top;
    transition: transform 0.3s;
}

@media (hover: hover) {
    .l-footer__menu .l-footer__nav a:hover::before {
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
        -ms-transform-origin: left top;
        transform-origin: left top;
    }
}

.l-footer__menu .c-banner {
    display: block;
    max-width: 300px;
    margin: 0 0 0 auto;
    transition: 0.3s ease;
}

@media (hover: hover) {
    .l-footer__menu .c-banner:hover::before {
        opacity: 0.7;
    }
}

.l-footer__bottom {
    border-top: 1px solid #676767;
    padding-top: 48px;
    margin-top: 48px;
}

.l-footer__copy {
    text-align: right;
}

.l-footer__copy small {
    font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
    .l-footer {
        padding: 30px 0;
    }

    .l-footer__block {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 40px;
    }

    .l-footer__info .l-footer__logo {
        width: 64%;
        margin-bottom: 20px;
    }

    .l-footer__info address {
        margin-bottom: 12px;
    }

    .l-footer__menu .l-footer__nav {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 40px;
    }

    .l-footer__menu .l-footer__nav li {
        width: 100%;
    }

    .l-footer__menu .c-banner {
        margin: 0;
    }

    .l-footer__bottom {
        padding-top: 20px;
        margin-top: 20px;
    }

    .l-footer__copy {
        text-align: left;
    }

    .l-footer__copy small {
        font-size: 0.625rem;
    }
}

/* —————————————————
  contact
  —————————————————*/
.l-contact {
    margin-bottom: 100px;
}

.l-contact__top {
    background: url("../img/common/contact_bg.jpg") no-repeat center/cover;
    padding-top: 5.5rem;
    min-height: 21.875rem;
    position: relative;
}

.l-contact__top::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(4, 80, 96, 0.35);
}

.l-contact__top .c-ttl {
    position: relative;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.l-contact__block {
    background: linear-gradient(180deg, rgb(115, 196, 224) 0%, rgb(64, 157, 178) 100%);
    padding: 2.5rem 20px 4rem;
    width: calc(100% - 30px);
    max-width: 1224px;
    position: relative;
    margin: -8.75rem auto 0;
}

.l-contact__block p {
    color: #fff;
}

.l-contact__btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 204px;
    height: 48px;
    margin: 40px auto 0;
    font-size: 0.9375rem;
    background-color: #fff;
    position: relative;
    transition: 0.3s ease;
}

@media (hover: hover) {
    .l-contact__btn:hover {
        opacity: 0.8;
    }
}

.l-contact__btn::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url("../img/common/icon_arrow_bg.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: 12px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .l-contact {
        margin-bottom: 52px;
    }

    .l-contact__top {
        padding-top: 20px;
        min-height: 10.9375rem;
    }

    .l-contact__block {
        padding: 20px 20px 32px;
        margin: -80px auto 0;
    }

    .l-contact__btn {
        max-width: 156px;
        height: 38px;
        margin: 20px auto 0;
    }

    .l-contact__btn::after {
        right: 8px;
    }
}

/* —————————————————
  共通項目
  —————————————————*/
.c-ttl {
    margin-bottom: 20px;
    font-weight: bold;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.c-ttl .en {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}

.c-ttl .en::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgb(239, 68, 133) 0%, rgb(242, 183, 115) 100%);
}

.c-ttl .ja {
    font-size: 0.9375rem;
    padding-left: 16px;
}

@media screen and (max-width: 767px) {
    .c-ttl {
        margin-bottom: 20px;
    }

    .c-ttl .en {
        font-size: 1.5rem;
    }

    .c-ttl .en::before {
        width: 10px;
        height: 10px;
    }

    .c-ttl .ja {
        font-size: 0.875rem;
        line-height: 1;
    }
}

.c-btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 204px;
    height: 48px;
    margin: 40px auto 0;
    font-size: max(0.9375rem, 14px);
    background-color: #fff;
    position: relative;
}

.c-btn::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url("../img/common/icon_arrow_bg.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: 16px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .c-btn {
        max-width: 156px;
        height: 38px;
        margin: 20px auto 0;
    }

    .c-btn::after {
        right: 8px;
    }
}

.u-center {
    text-align: center;
}

/* —————————————————
  home
  —————————————————*/
.l-wrap {
    width: calc(100% - 30px);
    max-width: 1016px;
    margin: 0 auto;
}

.l-wrap__wide {
    width: calc(100% - 30px);
    max-width: 1224px;
    margin: 0 auto;
}

.l-main {
    margin-top: 80px;
}

@media screen and (max-width: 767px) {
    .l-main {
        margin-top: 50px;
    }
}

/* ---------------------------------------------
  animation
  --------------------------------------------- */
.js-fadeUp {
    opacity: 0;
    -ms-transform: translateY(14px);
    transform: translateY(14px);
    filter: blur(2px);
}

.js-fadeUp.is-active {
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
    filter: blur(0);
    transition: opacity 0.6s ease, transform 0.6s ease, filter 0.4s ease;
}

.js-fade {
    opacity: 0;
}

.js-fade.is-active {
    opacity: 1;
    filter: blur(0);
    transition: opacity 0.5s ease;
}

/* -----------------------------
 top mv
 ------------------------------- */
.p-top-mv {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.p-top-mv__text {
    width: 32%;
    max-width: 372px;
    margin-left: auto;
    padding: 0 2.875rem 0 0.9375rem;
    background-color: #fff;
    z-index: 1;
}

.p-top-mv__text .p-mv__ttl {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.p-top-mv__text .p-mv__lead {
    font-size: 1.25rem;
    letter-spacing: 0.1em;
}

.p-top-mv__slider {
    width: 68%;
    aspect-ratio: 982/600;
    margin: 0;
}

.p-top-mv__slider .slide-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.p-top-mv__slider .slide-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .p-top-mv {
        width: 100%;
        position: relative;
        overflow: hidden;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .p-top-mv__text {
        width: 70%;
        padding: 8px 30px 12px 15px;
        margin: -110px auto 0 0;
        background-color: #fff;
        position: relative;
        z-index: 2;
    }

    .p-top-mv__text .p-mv__ttl {
        font-size: 1.75rem;
        letter-spacing: 0.1em;
        margin-bottom: 12px;
    }

    .p-top-mv__text .p-mv__lead {
        font-size: 1rem;
    }

    .p-top-mv__slider {
        width: 90%;
        margin: 0 0 0 auto;
        aspect-ratio: 670/600;
    }

    .p-top-mv__slider .slide-img {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .p-top-mv__slider .slide-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

/* -----------------------------
 top news
 ------------------------------- */
.p-top-news {
    background: linear-gradient(180deg, rgb(115, 196, 224) 0%, rgb(64, 157, 178) 100%);
    padding: 200px 0 96px;
    margin-top: -96px;
    margin-bottom: 6rem;
    position: relative;
}

.p-top-news .c-ttl {
    position: relative;
    z-index: 1;
    color: #fff;
}

.p-top-news .c-ttl .en {
    font-size: 2rem;
}

.p-top-news .c-ttl .en::before {
    width: 8px;
    height: 8px;
}

.p-top-news__img {
    position: absolute;
    top: 108px;
    left: 0;
}

.p-top-news__block {
    position: relative;
    padding: 32px 48px 56px 0;
    z-index: 1;
}

.p-top-news__block>* {
    position: relative;
    z-index: 1;
}

.p-top-news__block::before {
    content: "";
    width: 100vw;
    height: 100%;
    display: block;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    transition: 0.6s ease clip-path;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    will-change: clip-path;
}

.p-top-news__block.is-active::before {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.p-top-news__btn {
    text-align: right;
    margin-top: 32px;
}

.p-top-news__btn a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 8px;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 0.9375rem;
    position: relative;
}

.p-top-news__btn a::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url("../img/common/icon_arrow_bg.svg") no-repeat center/100%;
}

.p-top-news__btn a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    bottom: -2px;
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -ms-transform-origin: right top;
    transform-origin: right top;
    transition: transform 0.3s;
}

@media (hover: hover) {
    .p-top-news__btn a:hover::before {
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
        -ms-transform-origin: left top;
        transform-origin: left top;
    }
}

.p-news__list .item:not(:last-child) {
    margin-bottom: 24px;
    border-bottom: 1px solid #676767;
}

.p-news__list .item:not(:last-child) a {
    padding-bottom: 24px;
}

.p-news__list a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px 3rem;
    transition: 0.3s ease;
}

@media (hover: hover) {
    .p-news__list a:hover {
        opacity: 0.7;
    }
}

.p-news__list a .date {
    width: 100%;
    color: #676767;
    font-size: 0.875rem;
    line-height: 1.2;
}

.p-news__list a .category {
    background-color: #66ADD5;
    border-radius: 2px;
    min-width: 92px;
    color: #fff;
    padding: 4px;
    text-align: center;
    font-size: max(0.9375rem, 13px);
}

.p-news__list a .ttl {
    font-size: max(0.875rem, 13px);
}

@media screen and (max-width: 767px) {
    .p-top-news {
        padding: 280px 0 48px;
        margin-top: -240px;
        margin-bottom: 48px;
    }

    .p-top-news .c-ttl {
        margin-bottom: 12px;
    }

    .p-top-news .c-ttl .en {
        font-size: 1.5rem;
    }

    .p-top-news .c-ttl .en::before {
        width: 10px;
        height: 10px;
    }

    .p-top-news__img {
        position: absolute;
        top: 250px;
        left: 0;
    }

    .p-top-news__block {
        position: relative;
        padding: 16px 16px 16px 0;
        z-index: 1;
    }

    .p-top-news__block>* {
        position: relative;
        z-index: 1;
    }

    .p-top-news__block::before {
        content: "";
        width: 100vw;
        height: 100%;
        display: block;
        background-color: #fff;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 0;
    }

    .p-top-news__btn {
        text-align: right;
        margin-top: 16px;
    }

    .p-news__list .item:not(:last-child) {
        margin-bottom: 12px;
    }

    .p-news__list .item:not(:last-child) a {
        padding-bottom: 12px;
    }

    .p-news__list a {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        gap: 8px 48px;
        padding-right: 40px;
    }

    .p-news__list a .date {
        width: 100%;
        color: #676767;
        font-size: 0.6875rem;
        line-height: 1.2;
    }

    .p-news__list a .category {
        min-width: 56px;
        padding: 2px 4px;
        font-size: 0.625rem;
    }

    .p-news__list a .ttl {
        width: 100%;
        font-size: 0.9375rem;
    }
}

/* -----------------------------
 top company / recruit
 ------------------------------- */
.p-top-banner .l-wrap__wide {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.p-top-banner__img {
    position: relative;
    transition: 0.3s ease;
}

.p-top-banner__img::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(42, 56, 56, 0.3);
}

.p-top-banner__block {
    position: relative;
    display: block;
}

.p-top-banner__block::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid #409DB2;
    border-left: 8px solid #409DB2;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    transition: 0.3s ease;
    pointer-events: none;
}

.p-top-banner__block::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-bottom: 8px solid #409DB2;
    border-right: 8px solid #409DB2;
    position: absolute;
    bottom: 0;
    right: 0;
    visibility: hidden;
    transition: 0.3s ease;
    pointer-events: none;
}

@media (hover: hover) {
    .p-top-banner__block:hover::before {
        width: 100%;
        height: 100%;
        z-index: 1;
        visibility: visible;
    }

    .p-top-banner__block:hover::after {
        width: 100%;
        height: 100%;
        visibility: visible;
    }

    .p-top-banner__block:hover .p-top-banner__img {
        -ms-transform: scale(1.02);
        transform: scale(1.02);
    }
}

.p-top-banner__text {
    padding: 5rem 0 0;
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.p-top-banner__text .c-ttl {
    color: #fff;
}

.p-top-banner__text .c-lead {
    color: #fff;
    padding-left: 18px;
}

.p-top-banner__text .c-btn {
    margin: 2.5rem 0 0 auto;
    background: none;
    border: 1px solid #fff;
    color: #fff;
}

.p-top-company,
.p-top-recruit {
    margin-bottom: 6rem;
}

@media screen and (max-width: 767px) {
    .p-top-banner__img {
        width: 100%;
    }

    .p-top-banner__img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .p-top-banner__text {
        padding: 2.5rem 0;
        height: 100%;
    }

    .p-top-banner__text .c-lead {
        color: #fff;
        padding-left: 12px;
    }

    .p-top-banner__text .c-btn {
        margin: 20px 38px 0 auto;
        background: none;
        border: 1px solid #fff;
        color: #fff;
    }

    .p-top-company,
    .p-top-recruit {
        margin-bottom: 48px;
    }

    .p-top-recruit .p-top-banner__text .c-btn {
        margin-top: 30px;
    }
}

/* =========== 下層ページ共通 =========== */
.c-heading {
    position: relative;
}

.c-heading .l-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.c-heading .c-heading__ttl {
    font-weight: 500;
    position: absolute;
    top: 40%;
    left: calc((100% - 63.5rem) / 2);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #fff;
}

.c-heading .c-heading__ttl .en {
    display: inline-block;
    font-size: 3rem;
    letter-spacing: 0.1em;
    font-family: "Montserrat", sans-serif;
    position: relative;
    line-height: 1.2;
}

.c-heading .c-heading__ttl .ja {
    font-size: 1rem;
    letter-spacing: 0.05em;
    display: block;
    position: relative;
}

.c-heading .c-heading__img {
    width: 100%;
    height: 27.5rem;
    overflow: hidden;
}

.c-heading .c-heading__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .c-heading .c-heading__ttl {
        left: 0;
        padding: 0;
        padding-left: 15px;
    }

    .c-heading .c-heading__ttl .en {
        font-size: 2rem;
        line-height: 1.2;
    }

    .c-heading .c-heading__ttl .ja {
        font-size: 0.9375rem;
    }

    .c-heading .c-heading__img {
        height: 19.1875rem;
    }
}

/* ---------------------------------------------------
    news
  --------------------------------------------------- */
.p-news-section {
    padding-top: 80px;
}

.p-news-section .c-ttl-news {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    text-align: left;
    font-weight: 500;
    line-height: 1.5;
}

.p-news-section .p-news__list .item {
    border-bottom: 1px solid #DADADA;
}

.p-news-section .p-news__list .item:first-child {
    border-top: 1px solid #DADADA;
}

.p-news-section .p-news__list .item a {
    padding: 24px 0;
}

.p-news-section .p-news__list .item:not(:last-child) {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .p-news-section {
        padding-top: 40px;
    }

    .p-news-section .c-ttl-news {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }
}

.p-news__tab {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 56px;
}

.p-news__tab .item {
    color: #a7a7a7;
}

.p-news__tab .item.is-active a {
    background-color: #66ADD5;
    border-color: #66ADD5;
    color: #fff;
}

.p-news__tab a {
    display: block;
    font-size: 0.9375rem;
    border: 1px solid #616161;
    border-radius: 2px;
    padding: 4px 8px;
    line-height: 1.8;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
    .p-news__tab {
        gap: 12px 8px;
        margin-bottom: 28px;
    }

    .p-news__tab a {
        font-size: 0.9375rem;
        padding: 12px 16px;
        line-height: 1;
        letter-spacing: 0.05em;
    }
}

/* ----------- news category  ----------- */
.c-newscat {
    padding: 8px;
    font-size: 0.75rem;
    transition: all 0.3s;
    border: 1px solid #005FB2;
    color: #005FB2;
    font-weight: 700;
    line-height: 1;
}

/* ----------- pagenation   ----------- */
ul.page-numbers {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 48px;
    gap: 12px;
}

.page-numbers li .page-numbers {
    display: block;
    width: 32px;
    height: 32px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: 0.3s ease;
    color: #66ADD5;
}

.page-numbers li a.page-numbers:hover {
    opacity: 0.7;
}

.page-numbers li .current {
    background-color: #66ADD5;
    color: #fff;
}

.page-numbers.prev::before,
.page-numbers.next::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    -webkit-mask-image: url("../img/news/icon_arrow.svg");
    mask-image: url("../img/news/icon_arrow.svg");
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #66ADD5;
}

.page-numbers.prev::before {
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

/* ----------- news list common  ----------- */
.p-news-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto 96px;
}

.p-news-list,
.p-news__main {
    width: 66%;
}

.p-news-side__container {
    width: 28.5%;
}

.p-news__btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80%;
    max-width: 203px;
    height: 48px;
    margin: 72px auto 0;
    border: 1px solid #005FB2;
    font-size: 0.9375rem;
    font-weight: 700;
    position: relative;
    gap: 20px;
}

.p-news__btn::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid #005FB2;
    border-right: 1px solid #005FB2;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
    .p-news-container {
        display: block;
        margin: 0 auto 60px;
    }

    .p-news-container .p-heading-title {
        font-size: 24px;
    }

    .p-news-list,
    .p-news__main {
        width: 100%;
    }

    .p-news-side__container {
        width: 100%;
        margin-top: 60px;
    }

    .p-news-card__large .c-ttl-news {
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 2rem;
    }

    .p-news-card__large .c-ttl-news::before {
        width: 16px;
    }

    .p-news-card__large .p-news-card__article {
        padding-top: 0;
        padding-bottom: 1.75rem;
    }

    .p-news-card__large .p-news-card__article:first-of-type {
        padding-top: 28px;
    }

    .p-news-card__large .p-news-card__article:not(:last-of-type) {
        margin-bottom: 1.75rem;
    }

    .p-news-card__large .p-news-card {
        -ms-flex-direction: news;
        flex-direction: news;
    }

    .p-news-card__large .p-news-card::after {
        display: none;
    }

    .p-news-card__large .p-news-card__thumbnail {
        width: 100%;
    }

    .p-news-card__large .p-news-card__text {
        width: 100%;
    }

    .p-news__btn {
        max-width: 174px;
        height: 40px;
        margin: 40px auto 0;
        font-size: 1rem;
    }

    .p-news__btn a {
        font-size: 1rem;
    }

    .p-news__btn::after {
        width: 8px;
        height: 8px;
    }
}

/* ----------- news side  ----------- */
.p-news-side__ttl {
    margin-bottom: 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.p-news-side__ttl::before {
    content: "";
    display: inline-block;
    height: 2px;
    width: 14px;
    background: linear-gradient(180deg, rgb(239, 68, 133) 0%, rgb(242, 183, 115) 100%);
}

.p-news-side__item:not(:last-child) {
    margin-bottom: 40px;
}

.p-news-side__item .category__list li:not(:last-child) {
    margin-bottom: 8px;
}

.p-news-side__item .category__list li a {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: left;
    color: #1A1311;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.p-news-side__item .category__list li a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
    bottom: -2px;
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -ms-transform-origin: right top;
    transform-origin: right top;
    transition: transform 0.3s;
}

@media (hover: hover) {
    .p-news-side__item .category__list li a:hover::before {
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
        -ms-transform-origin: left top;
        transform-origin: left top;
    }
}

.p-news-side__item .category__list li a::after {
    content: "";
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    background: #005FB2;
    transition: transform 0.3s;
    background: url("../img/news/icon_arrow-circle.svg") no-repeat top center/100%;
}

.p-news-side__item .tag__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}

.p-news-side__item .tag__list a {
    color: #231815;
    font-size: 0.9375rem;
}

.p-news-side__item .monthly__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}

.p-news-side__item .monthly__list li a {
    display: inline-block;
    position: relative;
    font-size: 0.75rem;
    border: 1px solid #231815;
    padding: 8px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    color: #231815;
}

@media screen and (max-width: 767px) {
    .p-news-side__ttl {
        font-size: 1.5rem;
    }
}

/* ---------- news popular list ----------- */
.p-news-card__side .p-news-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
}

.p-news-card__side .p-news-card__article:not(:last-child) {
    margin-bottom: 32px;
}

.p-news-card__side .p-news-card__wrap {
    width: 50%;
}

.p-news-card__side .p-news-card__thumbnail {
    width: 50%;
    max-width: 130px;
    overflow: hidden;
}

.p-news-card__side .p-news-card__thumbnail img {
    width: 100%;
    height: 100%;
    aspect-ratio: 130/90;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.3s ease;
}

@media (hover: hover) {
    .p-news-card__side .p-news-card__thumbnail:hover img {
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
}

.p-news-card__side .p-news-card__category {
    margin-top: 8px;
    gap: 8px;
}

.p-news-card__side .p-news-card__title {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .p-news-card__side .p-news-card {
        -ms-flex-direction: news;
        flex-direction: news;
        gap: 10px;
    }

    .p-news-card__side .p-news-card:not(:last-child) {
        margin-bottom: 40px;
    }

    .p-news-card__side .p-news-card__wrap {
        width: 100%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: news-reverse;
        flex-direction: news-reverse;
    }

    .p-news-card__side .p-news-card__thumbnail {
        width: 100%;
        max-width: 100%;
    }

    .p-news-card__side .p-news-card__thumbnail img {
        width: 100%;
        height: 100%;
        aspect-ratio: 2/1;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .p-news-card__side .p-news-card__category {
        margin-top: 8px;
        gap: 8px;
    }

    .p-news-card__side .p-news-card__title {
        margin: 0;
        font-size: 1rem;
        margin-top: 8px;
    }

    .p-news-side__ttl {
        margin-bottom: 30px;
    }

    .p-news-side__item {
        margin-bottom: 50px;
    }

    .p-news-card__thumbnail img {
        aspect-ratio: 686/427;
    }
}

/* ----- search ----- */
.p-news-side__search {
    position: relative;
}

.p-news-side__search button {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 40px;
    height: 40px;
    background: #66ADD5;
    cursor: pointer;
    border: none;
}

.p-news-side__search button::before {
    content: "";
    display: inline-block;
    width: 23px;
    height: 23px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url("../img/news/icon_search.svg") no-repeat top center/100%;
}

.p-news-side__search .dashicons-search {
    display: none;
}

.p-news-side__search input {
    width: 100%;
    background-color: #fff;
    font-size: 1rem;
    width: 100%;
    height: 42px;
    padding: 0 16px;
    border: 1px solid #787878;
    border-radius: 0;
}

.p-news-side__search input::-moz-placeholder {
    color: #787878;
}

.p-news-side__search input:-ms-input-placeholder {
    color: #787878;
}

.p-news-side__search input::placeholder {
    color: #787878;
}

/* ===================================================
 news article
==================================================== */
/* ----------- news article -----------*/
.p-news__article {
    width: 100%;
}

.p-news__article .p-news__ttl {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.8;
}

.p-news__article .c-btn {
    border: 1px solid #66ADD5;
    margin-top: 80px;
}

.p-news-article__head {
    margin-bottom: 8px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.p-news-article__head .p-news__date {
    text-align: left;
    font-size: 0.75rem;
    color: #676767;
    font-weight: 400;
}

.p-news-article__head .p-news__category {
    display: inline-block;
    font-size: 0.75rem;
    border: 1px solid #66ADD5;
    border-radius: 2px;
    padding: 4px 8px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    background-color: #66ADD5;
    color: #fff;
}

.p-news-article__body {
    margin-top: 32px;
}

.p-news-article__body>* {
    margin-top: 20px;
}

.p-news-article__body h2 {
    margin-top: 32px;
}

.p-news-article__body h3 {
    margin-top: 32px;
}

.p-news-article__body img {
    margin-top: 32px;
}

@media screen and (max-width: 767px) {
    .p-news-container .c-btn {
        margin-top: 40px;
    }

    .p-news-article__head .p-news__ttl {
        font-size: 1.5rem;
    }

    .p-news-article__body {
        margin-top: 20px;
    }

    .p-news-article__body>* {
        margin-top: 20px;
    }

    .p-news-article__body h2 {
        margin-top: 20px;
    }

    .p-news-article__body h3 {
        margin-top: 20px;
    }

    .p-news-article__body img {
        margin-top: 20px;
    }
}

/* ----------- contact -----------*/
@media (min-width: 769px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

.p-contact {
    position: relative;
    padding: 80px 0;
}

.p-contact .l-wrap {
    max-width: 1000px;
}

.p-contact .l-wrap {
    position: relative;
}

.p-contact__form .c-ttl {
    margin-bottom: 100px;
}

.p-contact__form .attention {
    color: #d92733;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.p-contact__form .lead {
    margin-bottom: 40px;
}

.p-contact__form dl {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1.875rem;
    margin: 0 auto;
}

.p-contact__form dl:not(:last-of-type) {
    margin-bottom: 2.75rem;
}

.p-contact__form dl dt {
    font-size: 1rem;
    font-weight: 500;
    -ms-flex: 1;
    flex: 1;
    color: #10141D;
}

.p-contact__form dl dd {
    font-size: 1rem;
    font-weight: 500;
    width: 69%;
}

.p-contact__form dl dd input[type=text],
.p-contact__form dl dd input[type=tel],
.p-contact__form dl dd input[type=email],
.p-contact__form dl dd select,
.p-contact__form dl dd textarea {
    width: 100%;
    padding: 12px 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    background-color: #F4F4F4;
}

.p-contact__form dl dd input:focus,
.p-contact__form dl dd textarea:focus,
.p-contact__form dl dd select:focus {
    outline: none;
}

.p-contact__form dl dd textarea {
    height: 12.5rem;
    resize: vertical;
}

.p-contact__form dl dd ::-moz-placeholder {
    color: #bbb;
}

.p-contact__form dl dd :-ms-input-placeholder {
    color: #bbb;
}

.p-contact__form dl dd ::placeholder {
    color: #bbb;
}

.p-contact__form dl .form-require {
    font-size: 0.75rem;
    display: inline-block;
    padding: 4px 8px;
    margin-left: 10px;
    font-weight: 500;
    line-height: 1;
    background-color: #d7000f;
    color: #fff;
}

.p-contact__form dl .form-box {
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.p-contact__form dl .form-box p {
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.p-contact__form dl .form-address .item {
    margin-top: 12px;
}

.p-contact__form dl .form-address .item input {
    margin-top: 8px;
}

.p-contact__form dl .form-zip {
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.p-contact__form dl .form-zip .zip-item.select {
    position: relative;
}

.p-contact__form dl .form-zip .zip-item.select::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 10px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    -ms-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 10px;
    pointer-events: none;
}

.p-contact__form dl .form-zip .zip-item input {
    max-width: 180px;
}

.p-contact__form dl .form-zip .zip-item select {
    min-width: 180px;
}

.p-contact__form dl .form-zip .zip-item:first-child {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.c-contact__btn {
    margin: 80px auto 0;
    max-width: 203px;
    position: relative;
}

.c-contact__btn::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url("../img/common/icon_arrow_bg.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: 16px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-contact__btn input {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    margin: 72px auto 0;
    border: 1px solid #005FB2;
    font-size: 0.9375rem;
    position: relative;
    font-weight: 500;
    gap: 20px;
    text-align: center;
}

@media (hover: hover) {
    .c-contact__btn input:hover {
        opacity: 0.7;
    }
}

.c-contact__btn .wpcf7-spinner {
    display: none !important;
}

dl.form-item-textarea {
    -ms-flex-align: start;
    align-items: flex-start;
}

@media screen and (max-width: 767px) {
    .p-contact {
        padding-top: 50px;
        padding-bottom: 80px;
    }

    .p-contact__form .attention {
        font-size: 1.125rem;
    }

    .p-contact__form .lead {
        font-size: 0.875rem;
    }

    .p-contact__form dl {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 10px;
        max-width: 840px;
        margin: 0 auto;
    }

    .p-contact__form dl:not(:last-of-type) {
        margin-bottom: 2.5rem;
    }

    .p-contact__form dl dt {
        width: 100%;
        font-size: 0.9375rem;
    }

    .p-contact__form dl dd {
        width: 100%;
        font-size: 0.9375rem;
    }

    .p-contact__form dl dd textarea {
        font-size: 0.9375rem;
    }

    .p-contact__form dl .form-require {
        font-size: 0.75rem;
    }

    .p-contact__form dl .form-zip {
        display: -ms-flexbox;
        display: flex;
        gap: 12px;
        margin-bottom: 12px;
    }

    .p-contact__form dl .form-zip .zip-item {
        width: 50%;
    }

    .p-contact__form dl .form-zip .zip-item.select select {
        min-width: auto;
    }

    .c-contact__btn {
        margin: 60px auto 0;
    }

    .c-contact__btn input {
        width: 100%;
        max-width: 100%;
    }
}

.p-contact__back {
    position: relative;
    max-width: 165px;
    margin: 0 auto;
    margin-top: 50px;
}

.p-contact__back p {
    line-height: initial;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    gap: 8px;
}

.p-contact__back p::before {
    content: "";
    display: block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #fff;
}

.p-contact__back p::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    position: absolute;
    left: 10px;
    top: calc(50% - 3px);
}

.p-contact__back input {
    font-size: 0.875rem;
    font-weight: 700;
    color: #000;
}

/* ----------- contact  complete -----------*/
.p-contact-complete .p-contact__ttl {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 24px;
    text-align: center;
}

.p-contact-complete .c-btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 230px;
    height: 48px;
    margin: 72px auto 0;
    border: 1px solid #005FB2;
    font-size: 0.9375rem;
    position: relative;
    font-weight: 500;
    gap: 20px;
    text-align: center;
}

.p-contact-complete .c-btn::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url("../img/common/icon_arrow_bg.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: 12px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.p-complete__block {
    padding: 60px 20px;
    background-color: #fff;
}

.p-complete__block .c-ttl {
    font-size: 2.5rem;
}

.p-complete__block .p-contact__lead {
    font-size: 0.875rem;
    text-align: center;
    color: #707070;
}

.p-complete__block .c-btn {
    margin-top: 80px;
}

.p-complete__block .c-btn a {
    margin: 0 auto;
    background-color: #86864E;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
    .p-complete__block .c-ttl {
        font-size: 1.625rem;
    }

    .p-complete__block .c-btn {
        margin-top: 60px;
    }
}

/* ----------- entry -----------*/
main.entry {
    background-color: #F5FCFF;
}


/* ----------- recruit -----------*/
main.recruit {
    background-color: #F5FCFF;
}

.container {
    margin: 20px auto;
    max-width: 1200px;
    text-align: center;
}

.p-recruit {
    max-width: 100%;
    margin: 96px auto 0 220px;
    width: 100%;
}

.p-recruit h2 {
    position: relative;
    margin: 0 0 40px;
    font-size: 2rem;
}

.p-recruit h2:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgb(239, 68, 133) 0%, rgb(242, 183, 115) 100%);
    margin-right: 12px;
}
/**/
.p-recruit .l-wrap {
    background: linear-gradient(to bottom, #95D4F0, #49A5CD);
    background: -webkit-linear-gradient(top, #95D4F0, #49A5CD);
    background: -moz-linear-gradient(top, #95D4F0, #49A5CD);
    padding: 5px 40px;
    max-width: 100%;
    width: 100%;
}

.recruit-slider {
    margin: 20px 0;
    max-width: 1228px;
}

.recruit-slide {
    padding: 24px;
}

.recruit-slide img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
}

.recruit-slide h3 {
    margin: 5px 0 10px;
    color: #fff;
    padding: 5px 24px;
    border: 1px solid #fff;
    display: inline-block;
    border-radius: 100vh;
}

.recruit-slide p {
    font-size: 1.5rem;
    color: #fff;
}

.recruit-slide p span {
    display: block;
    font-size: 1rem;
}

/* 丸い矢印のスタイル */
.slick-prev::before,
.slick-next::before {
    content: '' !important;
    display: none !important;
}

.recruit-slider .slick-prev,
.recruit-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.recruit-slider .slick-prev::after {
    content: url("../img/recruit/preview.png");
    transform: scale(.45) !important;
    bottom: -30px;
    position: absolute;
    left: -38px;
}

.recruit-slider .slick-next::after {
    content: url("../img/recruit/next.png");
    transform: scale(.45) !important;
    bottom: -30px;
    position: absolute;
    right: -38px;
}

/* 左矢印のデザイン */
.recruit-slider .slick-prev::after {
    transform: rotate(135deg);
}

/* 右矢印のデザイン */
.recruit-slider .slick-next::after {
    transform: rotate(-45deg);
}

/* 左矢印の位置 */
.recruit-slider .slick-prev {
    left: -50px;
}

/* 右矢印の位置 */
.recruit-slider .slick-next {
    right: -50px;
}
/* スライダーコンテナ */
.recruit-loop .image-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 400px;
    /* 最大高さに合わせて調整 */
}

/* スライダーのトラック */
.recruit-loop .slider-track {
    display: flex;
    gap: 20px;
    animation: scroll 45s linear infinite;
    /* 30秒で1ループ */
    position: relative;
    width: max-content;
    /* コンテンツ幅に合わせる */
}

/* 各画像 */
.recruit-loop .image {
    flex-shrink: 0;
    object-fit: cover;
}

.recruit-loop .image1 {
    width: 520px;
    height: 340px;
    margin-top: 0;
    /* 基準点 */
}

.recruit-loop .image2 {
    width: 290px;
    height: 290px;
    margin-top: 70px;
    /* 少し下に */
}

.recruit-loop .image3 {
    width: 256px;
    height: 340px;
    margin-top: -10px;
    /* 少し上に */
}

.recruit-loop .image4 {
    width: 369px;
    height: 242px;
    margin-top: 45px;
    /* 下に */
}

.recruit-loop .image5 {
    width: 389px;
    height: 344px;
    margin-top: 25px;
    /* 上に */
}

/* 横スクロールアニメーション */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/**/
.recruit-btn {
    width: 100%;
    margin: 120px auto;
    height: 366px;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, #73C4E0, #409DB2);
    background: -webkit-linear-gradient(top, #73C4E0, #409DB2);
    background: -moz-linear-gradient(top, #73C4E0, #409DB2);
    border: solid 1px #2E2E2E;
    position: relative;
}

.recruit-btn .requirements-btn {
    width: calc(100% / 2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.recruit-btn .entry-btn {
    border-left: solid 1px #2E2E2E;
    width: calc(100% / 2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.recruit-btn a {
    font-size: 2.5em;
    color: #fff;
    position: relative;
}

.recruit-btn a:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.recruit-btn .requirements-btn:hover,
.recruit-btn .entry-btn:hover {
    opacity: .8;
}

.recruit-btn a span {
    position: relative;
}

.recruit-btn a span:after {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background: url(../img/common/icon_arrow_bg.svg) no-repeat center / 100%;
    position: absolute;
    top: 27%;
    right: -22%;
}

.recruit-btn .requirements-btn a span:after {
    right: -28%;
}

.recruit-btn .entry-btn a span:after {
    right: -22%;
}



.recruit-bnr {
    display: flex;
    max-width: 1056px;
    margin: 150px auto 0;
    padding: 0 0 80px;
}

.recruit-bnr .corp-bnr,
.recruit-bnr .akiruno-bnr {
    padding: 0 20px;
}

.recruit-bnr a:hover {
    opacity: .8;
}

@media screen and (max-width: 767px) {
    .p-recruit {
        margin: 80px auto 0 30px;
    }

    .p-recruit h2 {
        margin: 0 0 20px;
        font-size: 2rem;
    }

    .recruit-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding-left: 0;
        /* 左の余白を削除 */
    }

    .recruit-slider .recruit-slide {
        margin-right: 10px;
    }
	.recruit-slide img{
		    max-width: 100%;
    height: auto;
	}

    /* スライダーの左寄せを確実にする */
    .slick-list {
        padding-left: 0 !important;
    }
    .recruit-slider .slick-slide {
        touch-action: pan-y pinch-zoom;
    }

    .recruit-slider .slick-track {
        min-width: 0;
    }
    .recruit-btn {
        display: block;
        height: auto;
        background: none;
    }

    .recruit-btn .requirements-btn {
        background: linear-gradient(to bottom, #73C4E0, #409DB2);
        background: -webkit-linear-gradient(top, #73C4E0, #409DB2);
        background: -moz-linear-gradient(top, #73C4E0, #409DB2);
        width: 100%;
        padding: 130px 0;
        border-bottom: 1px solid #303030;
    }

    .recruit-btn .entry-btn {
        background: linear-gradient(to bottom, #73C4E0, #409DB2);
        background: -webkit-linear-gradient(top, #73C4E0, #409DB2);
        background: -moz-linear-gradient(top, #73C4E0, #409DB2);
        width: 100%;
        padding: 130px 0;
        border: none;
    }

    .recruit-bnr {
        margin: 130px auto 0;
        display: block;
    }

    .recruit-bnr .corp-bnr {
        margin-bottom: 40px;
    }


}

@media screen and (max-width: 468px) {
    .recruit-slider .recruit-slide {
        margin-right: 10px;
    }

    .recruit-slide p {
        font-size: 1rem;
    }

    .recruit-slide h3 {
        margin: 5px 0 5px;
        padding: 3px 14px;
        font-size: .875rem;
    }

    .recruit-slide {
        padding: 10px;
    }

    .p-recruit .l-wrap {
        padding: 5px 20px;
    }
}

/* ----------- job-description -----------*/


.job-description .p-job-description {
    max-width: 1220px;
    width: 100%;
    margin: 80px auto;
    padding: 0 15px;
}

.job-description .p-job-description h2 {
    font-size: 2.25rem;
    text-align: center;
    color: #37B3DD;
    position: relative;
    margin: 0 0 40px;
}

.job-description .p-job-description h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 77px;
    height: 3px;
    background-color: #37B3DD;
}

.job-description .p-job-description tr {
    border-bottom: 1px solid #37B3DD;
}

.job-description .p-job-description th {
    max-width: 200px;
    width: 25%;
    padding: 50px 50px 30px 0;
}

.job-description .p-job-description td {
    padding: 50px 0 30px;
}

.job-description .p-job-description th h3 {
    font-size: 1.5rem;
}

.job-description .p-job-description td h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 5px;
}

.job-description .p-job-description td p {
    font-size: 1rem;
    line-height: 2em;
    margin: 0 0 20px;
}

.job-description .p-job-description ul {
    line-height: 2em;
    margin: 0 0 20px;
}

.job-description {
    padding-bottom: 120px;
    background-color: #F5FCFF;
}

.job-description-btn a {
    background: linear-gradient(to bottom, #73C4E0, #409DB2);
    background: -webkit-linear-gradient(top, #73C4E0, #409DB2);
    background: -moz-linear-gradient(top, #73C4E0, #409DB2);
    max-width: 600px;
    width: 100%;
    padding: 20px 0;
    color: #fff;
    font-size: 2rem;
    border: 1px solid #2E2E2E;
    display: block;
    margin: 50px auto 150px;
    display: flex;
    justify-content: center;
}

.job-description-btn a span {
    position: relative;
    padding-right: 20px;
}

.job-description-btn a span:after {
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    background: url(../img/common/icon_arrow_bg.svg) no-repeat center / 100%;
    position: absolute;
    top: 27%;
    right: -22%;
}

.job-description-btn a:hover {
    opacity: .8;
}

@media screen and (max-width: 767px) {
    .job-description .p-job-description th {
        max-width: 100%;
        width: 100%;
        padding: 30px 15px 0;
        display: block;
    }

    .job-description .p-job-description td {
        padding: 10px 15px 30px;
        display: block;
    }
}

