@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Noto Serif JP", serif;
    --font-en: "Cormorant Garamond", serif;
    --color-gray: #F9F9FA;
    --color-black: #000;
    --header-height: 90px;
    --inner-width: 1400px;
    --inner-outer-width: calc(min(50vw, 1920px / 2) - min(var(--inner-width) / 0.88, min(100vw, 1920px)) * 0.44);
}
@media (max-width: 1440px) {
    :root {
        --header-height: 70px;
    }
}
@media (max-width: 1280px) {
    :root {
        --header-height: 60px;
    }
}
@media (max-width: 768px) {
    :root {
        --inner-outer-width: calc(50vw - min(var(--inner-width) / 0.88, 100vw) * 0.46);
    }
}

.font-jp {
    font-family: var(--font-jp);
}

.font-en {
    font-family: var(--font-en);
}

html {
    font-size: 62.5%;
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 1.8rem;
    line-height: 1.94;
    letter-spacing: 0.06em;
    color: var(--color-black);
    background-color: #ffffff;
    font-weight: 500;
    font-family: var(--font-jp);
}
@media (max-width: 1000px) {
    html body {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    html body {
        font-size: 1.5rem;
    }
}
html body main {
    margin-top: var(--header-height);
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease-in;
}
a:hover {
    text-decoration: none;
    opacity: 0.7;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* ------------------------------------- /
/     共通
/* ------------------------------------- */
.taC {
    text-align: center;
}

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

.inner {
    width: min(100%, var(--inner-width) / 0.88);
    margin: 0 auto;
    padding: 0 min(6%, (var(--inner-width) / 0.88 - var(--inner-width)) / 2);
}
@media (max-width: 768px) {
    .inner {
        padding: 0 4%;
    }
}

@media (max-width: 1280px) {
    .pc1280 {
        display: none !important;
    }
}

.sp1280 {
    display: none;
}
@media (max-width: 1280px) {
    .sp1280 {
        display: block !important;
    }
}

.sp1000 {
    display: none;
}
@media (max-width: 1000px) {
    .sp1000 {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .pc768 {
        display: none !important;
    }
}

.sp768 {
    display: none;
}
@media (max-width: 768px) {
    .sp768 {
        display: block !important;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ------------------------------------- /
/     menu-trigger
/* ------------------------------------- */
.menu-trigger {
    --trigger-wrapper-width: 40px;
    --trigger-wrapper-height: 20px;
    --trigger-width: 26px;
    --trigger-gap: 8px;
    display: none;
    width: var(--trigger-wrapper-width);
    height: var(--trigger-wrapper-height);
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: calc((var(--header-height) - var(--trigger-wrapper-height)) / 2);
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
}
@media (max-width: 1280px) {
    .menu-trigger {
        display: block;
    }
}
@media (max-width: 600px) {
    .menu-trigger {
        right: 10px;
    }
}
.menu-trigger span {
    display: inline-block;
    width: var(--trigger-width);
    height: 1px;
    background-color: var(--color-black);
    position: absolute;
    left: calc(50% - var(--trigger-width) / 2);
    transition-duration: 0.6s;
}
.menu-trigger span:nth-of-type(1) {
    top: calc(50% - var(--trigger-gap));
}
.menu-trigger span:nth-of-type(2) {
    top: calc(50% + var(--trigger-gap));
}
.menu-trigger span:nth-of-type(3) {
    top: 50%;
}
.menu-trigger.opened span {
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu-trigger.opened span:nth-of-type(1) {
    animation-name: menu-close_01;
}
.menu-trigger.opened span:nth-of-type(2) {
    animation-name: menu-close_02;
}
.menu-trigger.opened span:nth-of-type(3) {
    animation-name: menu-close_03;
}
.menu-trigger.active span {
    background-color: var(--color-black);
}
.menu-trigger.active span:nth-of-type(1) {
    animation-name: menu-open_01;
}
.menu-trigger.active span:nth-of-type(2) {
    animation-name: menu-open_02;
}
.menu-trigger.active span:nth-of-type(3) {
    animation-name: menu-open_03;
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - var(--trigger-gap));
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
}
@keyframes menu-close_01 {
    0% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - var(--trigger-gap));
        transform: rotate(0deg);
    }
}
@keyframes menu-open_03 {
    0% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    66.6666% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    70% {
        width: 0;
        left: calc(50% - 0px);
    }
    100% {
        width: 0;
        left: calc(50% - 0px);
    }
}
@keyframes menu-close_03 {
    0% {
        width: 0;
        left: calc(50% - 0px);
    }
    66.6666% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    70% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    100% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + var(--trigger-gap));
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
}
@keyframes menu-close_02 {
    0% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + var(--trigger-gap));
        transform: rotate(0deg);
    }
}

/* ------------------------------------- /
/    header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    font-size: 1.8rem;
}
@media (max-width: 1800px) {
    header {
        padding: 0 20px;
        font-size: 1.6rem;
        letter-spacing: 0;
    }
}
@media (max-width: 1440px) {
    header {
        padding: 0 15px;
        font-size: 1.5rem;
    }
}
@media (max-width: 1280px) {
    header {
        padding-right: 60px;
    }
}
header .header__logo {
    max-width: 387px;
}
@media (max-width: 1800px) {
    header .header__logo {
        max-width: 300px;
    }
}
@media (max-width: 1440px) {
    header .header__logo {
        max-width: 250px;
    }
}
@media (max-width: 1280px) {
    header .header__logo {
        max-width: 233px;
    }
}
header .header__right {
    display: flex;
    align-items: center;
    gap: 32px;
}
@media (max-width: 1800px) {
    header .header__right {
        gap: 20px;
    }
}
@media (max-width: 1440px) {
    header .header__right {
        gap: 14px;
    }
}
header .header__right .header__menu {
    display: flex;
    gap: 24px;
}
@media (max-width: 1800px) {
    header .header__right .header__menu {
        gap: 15px;
    }
}
@media (max-width: 1440px) {
    header .header__right .header__menu {
        gap: 12px;
    }
}
@media (max-width: 1280px) {
    header .header__right .header__menu {
        display: none;
    }
}
header .header__right .header__menu a {
    display: block;
    height: 100%;
    position: relative;
}
header .header__right .header__menu a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    transform: scale(0, 1);
    background: var(--color-black);
    transition: all 0.3s ease-in-out;
    transform-origin: top left;
}
header .header__right .header__menu a:hover {
    opacity: unset;
}
header .header__right .header__menu a:hover::before {
    transform: scale(1, 1);
}
header .header__right .header__sns {
    display: flex;
    align-items: center;
    gap: 21px;
}
@media (max-width: 1800px) {
    header .header__right .header__sns {
        gap: 14px;
    }
}
header .header__right .header__sns .logo__x {
    display: block;
    width: 24px;
}
@media (max-width: 1800px) {
    header .header__right .header__sns .logo__x {
        width: 20px;
    }
}
@media (max-width: 1440px) {
    header .header__right .header__sns .logo__x {
        width: 18px;
    }
}
header .header__right .header__sns .logo__ig {
    display: block;
    width: 25px;
}
@media (max-width: 1800px) {
    header .header__right .header__sns .logo__ig {
        width: 20px;
    }
}
@media (max-width: 1440px) {
    header .header__right .header__sns .logo__ig {
        width: 19px;
    }
}

.nav {
    display: none;
}
@media (max-width: 1280px) {
    .nav {
        display: flex;
        justify-content: center;
        width: min(100%, 400px);
        height: 100vh;
        background: #FFF;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateX(100%);
        z-index: 999;
        padding: 60px 45px 0;
    }
    .nav.active {
        transform: translateX(0);
        transition-delay: 0s;
    }
    .nav.active .wrapper {
        transition-delay: 0.8s;
        opacity: 1;
    }
    .nav .wrapper {
        opacity: 0;
        transition-duration: 0.4s;
    }
    .nav .wrapper .nav__menu {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .nav .wrapper .nav__menu li {
        padding: 10px 0;
        border-bottom: 1px solid #000;
    }
}

/* ------------------------------------- /
/    footer
/* ------------------------------------- */
footer {
    background: #166A54;
    color: #fff;
}
footer .footer__container {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    footer .footer__container {
        flex-direction: column;
        row-gap: 20px;
    }
}
footer .footer__container .footer__left .footer__link__container {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}
@media (max-width: 1280px) {
    footer .footer__container .footer__left .footer__link__container {
        gap: 15px;
    }
}
footer .footer__container .footer__left .footer__logo {
    display: block;
    max-width: 387px;
    margin-right: 30px;
}
@media (max-width: 1280px) {
    footer .footer__container .footer__left .footer__logo {
        max-width: 260px;
        margin-right: 10px;
    }
}
footer .footer__container .footer__left .footer__logo__x {
    width: 24px;
}
@media (max-width: 1280px) {
    footer .footer__container .footer__left .footer__logo__x {
        width: 20px;
    }
}
footer .footer__container .footer__left .footer__logo__ig {
    width: 25px;
}
@media (max-width: 1280px) {
    footer .footer__container .footer__left .footer__logo__ig {
        width: 21px;
    }
}
@media (max-width: 1280px) {
    footer .footer__container .footer__left .footer__address {
        font-size: 1.6rem;
    }
}
footer .footer__container .footer__right {
    display: flex;
    gap: 70px;
    font-size: 1.6rem;
}
@media (max-width: 1280px) {
    footer .footer__container .footer__right {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    footer .footer__container .footer__right {
        gap: 5px;
    }
}
footer .footer__container .footer__right ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 1280px) {
    footer .footer__container .footer__right ul {
        gap: 10px;
    }
}
@media (max-width: 768px) {
    footer .footer__container .footer__right ul {
        gap: 5px;
    }
}
footer .footer__container .footer__right ul a {
    position: relative;
}
footer .footer__container .footer__right ul a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    transform: scale(0, 1);
    transform-origin: top left;
    background: #fff;
    transition: all 0.3s ease-in-out;
}
footer .footer__container .footer__right ul a:hover {
    opacity: unset;
}
footer .footer__container .footer__right ul a:hover::before {
    transform: scale(1, 1);
}
footer .footer__copyright {
    font-size: 1.2rem;
    display: block;
    width: fit-content;
}
@media (max-width: 768px) {
    footer .footer__copyright {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto;
    }
}

/* ------------------------------------- /
/    共通ブロック
/* ------------------------------------- */
.lower__ttl {
    padding-top: 170px;
}
@media (max-width: 1440px) {
    .lower__ttl {
        padding-top: 100px;
    }
}
@media (max-width: 1000px) {
    .lower__ttl {
        padding-top: 70px;
    }
}
@media (max-width: 768px) {
    .lower__ttl {
        padding-top: 40px;
    }
}
.lower__ttl .lower__h1__en {
    font-family: var(--font-en);
    font-size: 10.3rem;
    line-height: 1.21;
}
@media (max-width: 1440px) {
    .lower__ttl .lower__h1__en {
        font-size: 8rem;
    }
}
@media (max-width: 1000px) {
    .lower__ttl .lower__h1__en {
        font-size: 7rem;
    }
}
@media (max-width: 768px) {
    .lower__ttl .lower__h1__en {
        font-size: 5rem;
    }
}
.lower__ttl .lower__h1 {
    font-size: 2.5rem;
    font-weight: 500;
    padding-left: 100px;
    position: relative;
}
@media (max-width: 1440px) {
    .lower__ttl .lower__h1 {
        font-size: 2rem;
    }
}
@media (max-width: 1000px) {
    .lower__ttl .lower__h1 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .lower__ttl .lower__h1 {
        font-size: 1.5rem;
        padding-left: 60px;
    }
}
.lower__ttl .lower__h1::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 80px;
    height: 1px;
    background: #166A54;
}
@media (max-width: 768px) {
    .lower__ttl .lower__h1::before {
        width: 50px;
    }
}

.pagination__section .pagination__list {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1000px) {
    .pagination__section .pagination__list {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .pagination__section .pagination__list {
        gap: 10px;
    }
}
.pagination__section .pagination__list .current, .pagination__section .pagination__list .inactive {
    width: 40px;
    aspect-ratio: 40/50;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1000px) {
    .pagination__section .pagination__list .current, .pagination__section .pagination__list .inactive {
        width: 30px;
    }
}
.pagination__section .pagination__list .current {
    background: #166A54;
    color: #fff;
}
.pagination__section .pagination__list .inactive {
    background: #DCE2E3;
}
.pagination__section .pagination__list .next span, .pagination__section .pagination__list .previous span {
    display: block;
    width: 19px;
    aspect-ratio: 1;
}
@media (max-width: 1000px) {
    .pagination__section .pagination__list .next span, .pagination__section .pagination__list .previous span {
        width: 14px;
    }
}
.pagination__section .pagination__list .next span {
    background: url(../img/common/pagination_next.svg) center/contain no-repeat;
}
.pagination__section .pagination__list .previous span {
    background: url(../img/common/pagination_previous.svg) center/contain no-repeat;
}
.pagination__section .pagination__list .last span, .pagination__section .pagination__list .first span {
    display: block;
    width: 25px;
    aspect-ratio: 25/19;
}
@media (max-width: 1000px) {
    .pagination__section .pagination__list .last span, .pagination__section .pagination__list .first span {
        width: 18px;
    }
}
.pagination__section .pagination__list .last span {
    background: url(../img/common/pagination_last.svg) center/contain no-repeat;
}
.pagination__section .pagination__list .first span {
    background: url(../img/common/pagination_first.svg) center/contain no-repeat;
}

.bg__blue {
    position: relative;
}
.bg__blue::before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #F9F9FA;
    top: 230px;
    left: 0;
    width: 77%;
    height: 600px;
}
@media (max-width: 1440px) {
    .bg__blue::before {
        top: 150px;
    }
}
@media (max-width: 1000px) {
    .bg__blue::before {
        top: 100px;
        width: 100%;
        height: 500px;
    }
}
@media (max-width: 768px) {
    .bg__blue::before {
        top: 70px;
        height: 300px;
    }
}

.date__category__container {
    display: flex;
    gap: 20px;
    font-size: 1.6rem;
}
@media (max-width: 1440px) {
    .date__category__container {
        font-size: 1.4rem;
    }
}
@media (max-width: 1000px) {
    .date__category__container {
        font-size: 1.3rem;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .date__category__container {
        font-size: 1.2rem;
    }
}
.date__category__container .date {
    color: #5F6E6B;
    letter-spacing: 0;
}
.date__category__container .categories {
    display: flex;
    gap: 10px;
}
.date__category__container .categories span {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #166A54;
    color: #fff;
    height: 27px;
    padding: 0 5px;
}

.lower__h2__box {
    border-left: 1px solid #166A54;
    padding-left: 35px;
}
@media (max-width: 1440px) {
    .lower__h2__box {
        padding-left: 20px;
    }
}
@media (max-width: 1000px) {
    .lower__h2__box {
        padding-left: 15px;
    }
}
@media (max-width: 768px) {
    .lower__h2__box {
        padding-left: 10px;
    }
}
.lower__h2__box h2 {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.7;
}
@media (max-width: 1440px) {
    .lower__h2__box h2 {
        font-size: 4rem;
    }
}
@media (max-width: 1000px) {
    .lower__h2__box h2 {
        font-size: 3.2rem;
    }
}
@media (max-width: 768px) {
    .lower__h2__box h2 {
        font-size: 2.4rem;
    }
}
.lower__h2__box .lower__h2__en {
    font-family: var(--font-en);
    font-size: 3rem;
    line-height: 1;
    color: #166A54;
}
@media (max-width: 1440px) {
    .lower__h2__box .lower__h2__en {
        font-size: 2.4rem;
    }
}
@media (max-width: 1000px) {
    .lower__h2__box .lower__h2__en {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .lower__h2__box .lower__h2__en {
        font-size: 1.8rem;
    }
}

.lower__btn__container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}
@media (max-width: 1440px) {
    .lower__btn__container {
        gap: 30px;
    }
}
@media (max-width: 1000px) {
    .lower__btn__container {
        gap: 20px;
    }
}
.lower__btn__container a {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #166A54;
    width: 240px;
    position: relative;
    line-height: 1.67;
}
@media (max-width: 1440px) {
    .lower__btn__container a {
        padding: 15px 0;
        width: 200px;
    }
}
@media (max-width: 1000px) {
    .lower__btn__container a {
        padding: 10px 0;
        width: 180px;
    }
}
@media (max-width: 768px) {
    .lower__btn__container a {
        width: calc((100% - 20px) / 2);
    }
}
.lower__btn__container a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 17px;
    aspect-ratio: 1;
    background: url(../img/common/arrow_down_gr.svg) center/contain no-repeat;
}
@media (max-width: 1440px) {
    .lower__btn__container a::before {
        width: 14px;
    }
}
@media (max-width: 1000px) {
    .lower__btn__container a::before {
        width: 12px;
    }
}

/* ------------------------------------- /
/    トップページ
/* ------------------------------------- */
.page-template-front-page .top__h2__en {
    font-size: 10.3rem;
    font-family: var(--font-en);
    line-height: 1.21;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__h2__en {
        font-size: 8rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__h2__en {
        font-size: 7rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__h2__en {
        font-size: 6rem;
    }
}
.page-template-front-page .top__h2 {
    font-size: 2.5rem;
    font-weight: 500;
    padding-left: 100px;
    position: relative;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__h2 {
        font-size: 2rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__h2 {
        font-size: 1.5rem;
        padding-left: 60px;
    }
}
.page-template-front-page .top__h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 80px;
    height: 1px;
    background: #166A54;
}
@media (max-width: 768px) {
    .page-template-front-page .top__h2::before {
        width: 50px;
    }
}
.page-template-front-page .top__mv {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    padding-bottom: 6%;
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv {
        padding-top: 20px;
        padding-bottom: 300px;
    }
}
.page-template-front-page .top__mv::before {
    content: "";
    position: absolute;
    top: 19%;
    left: 0;
    width: 78%;
    bottom: 0;
    background: #36795C;
    z-index: -1;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__mv::before {
        top: 10%;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv::before {
        top: 19%;
        width: 100%;
        bottom: 120px;
    }
}
.page-template-front-page .top__mv .top__mv__img {
    width: 83%;
    aspect-ratio: 2/1;
    background-image: url("../img/slider/01.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: auto;
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__img {
        aspect-ratio: 680/880;
    }
}
.page-template-front-page .top__mv .top__mv__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 3.5%;
    padding-left: 8%;
    padding-right: 3%;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__mv .top__mv__content {
        padding-left: 2%;
        padding-right: 2%;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content {
        flex-direction: column;
        justify-content: flex-end;
        align-items: unset;
        padding-left: 0;
        padding-right: 0;
        gap: 35px;
    }
}
.page-template-front-page .top__mv .top__mv__content .top__mv__txt {
    color: #fff;
    padding: 0 25px 6%;
    flex: 1 1;
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__txt {
        flex: unset;
    }
}
.page-template-front-page .top__mv .top__mv__content .top__mv__txt h2 {
    font-size: clamp(4rem, -0.5rem + 3.125vw, 5.5rem);
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 35px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__txt h2 {
        font-size: clamp(2.5rem, 0.786rem + 2.232vw, 4rem);
        line-height: 1.68;
        margin-bottom: 15px;
    }
}
.page-template-front-page .top__mv .top__mv__content .top__mv__txt p {
    line-height: 2.22;
    font-size: clamp(1.6rem, 1rem + 0.417vw, 1.8rem);
}
@media (max-width: 1440px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__txt p {
        font-size: clamp(1.5rem, 1.386rem + 0.149vw, 1.6rem);
        line-height: 1.87;
    }
}
.page-template-front-page .top__mv .top__mv__content .top__mv__news__box {
    background: #fff;
    width: 560px;
    height: 220px;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.16);
    padding: 25px 40px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__news__box {
        width: 400px;
        height: 180px;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
        padding: 20px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__news__box {
        width: 340px;
        height: 160px;
        padding: 20px 15px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__news__box {
        margin-left: auto;
        width: 330px;
        height: 140px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
    }
}
.page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .top__mv__news__box__header__h2 {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .top__mv__news__box__header__h2 .h2__en {
    font-size: 3rem;
    font-family: var(--font-en);
    letter-spacing: 0;
    line-height: 1.23;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .top__mv__news__box__header__h2 .h2__en {
        font-size: 2.4rem;
    }
}
@media (max-width: 100px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .top__mv__news__box__header__h2 .h2__en {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .top__mv__news__box__header__h2 .h2__en {
        font-size: 1.9rem;
    }
}
.page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .top__mv__news__box__header__h2 h2 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.44;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .top__mv__news__box__header__h2 h2 {
        font-size: 1.5rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .top__mv__news__box__header__h2 h2 {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .top__mv__news__box__header__h2 h2 {
        font-size: 1.2rem;
    }
}
.page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .link {
    text-decoration: underline;
    line-height: 1.44;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .link {
        font-size: 1.6rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .link {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .top__mv__news__box .top__mv__news__box__header .link {
        font-size: 1rem;
    }
}
.page-template-front-page .top__mv .top__mv__content .mv__news {
    height: 120px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news {
        height: 100px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news {
        height: 80px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news {
        height: 70px;
    }
}
.page-template-front-page .top__mv .top__mv__content .mv__news .swiper-pagination {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-pagination {
        gap: 2px;
    }
}
.page-template-front-page .top__mv .top__mv__content .mv__news .swiper-pagination .swiper-pagination-bullet {
    width: 5px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #DCE2E3;
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-pagination .swiper-pagination-bullet {
        width: 3px;
    }
}
.page-template-front-page .top__mv .top__mv__content .mv__news .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #166A54;
}
.page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a {
    height: 100%;
    display: flex;
    gap: 16px;
}
.page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .thumbnail {
    width: 215px;
    aspect-ratio: 215/120;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .thumbnail {
        width: 160px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .thumbnail {
        width: 120px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .thumbnail {
        width: 110px;
        aspect-ratio: 110/70;
    }
}
.page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .thumbnail img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right {
    flex: 1 1;
}
.page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .date__categories {
    display: flex;
    gap: 20px;
    padding-top: 10px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .date__categories {
        gap: 10px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .date__categories {
        padding-top: 5px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .date__categories {
        gap: 8px;
    }
}
.page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .date__categories .date {
    font-size: 1.4rem;
    letter-spacing: 0;
    color: #5F6E6B;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .date__categories .date {
        font-size: 1.3rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .date__categories .date {
        font-size: 1.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .date__categories .date {
        font-size: 1rem;
    }
}
.page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .date__categories .categories {
    display: flex;
    gap: 5px;
}
.page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .date__categories .categories span {
    font-size: 1.2rem;
    color: #fff;
    background: #166A54;
    height: 21px;
    padding: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .date__categories .categories span {
        font-size: 1rem;
        height: 18px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .date__categories .categories span {
        font-size: 0.8rem;
        height: 15px;
    }
}
.page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .ttl {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .ttl {
        margin-top: 10px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .ttl {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__mv .top__mv__content .mv__news .swiper-slide a .mv__news__right .ttl {
        font-size: 1.3rem;
    }
}
.page-template-front-page .top__movie__wrapper {
    position: relative;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__movie__wrapper {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__movie__wrapper {
        gap: 40px;
    }
}
.page-template-front-page .top__movie__wrapper .top__movie__txt {
    position: absolute;
    top: 0;
    right: 0;
    width: fit-content;
    max-width: 50%;
    color: #272B36;
    padding: 70px 60px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__movie__wrapper .top__movie__txt {
        padding: 40px 30px 40px 60px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__movie__wrapper .top__movie__txt {
        position: unset;
        padding: 0;
        width: unset;
        max-width: unset;
    }
}
.page-template-front-page .top__movie__wrapper .top__movie__txt h2 {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.44;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__movie__wrapper .top__movie__txt h2 {
        font-size: 3.4rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__movie__wrapper .top__movie__txt h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__movie__wrapper .top__movie__txt h2 {
        font-size: 2.5rem;
        line-height: 1.68;
    }
}
.page-template-front-page .top__about {
    max-width: 1920px;
    margin: 0 auto;
}
.page-template-front-page .top__about .top__about__container {
    display: flex;
    align-items: center;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__about .top__about__container {
        margin-top: 80px;
        align-items: unset;
        flex-direction: column;
        padding: 0 min(6%, (var(--inner-width) / 0.88 - var(--inner-width)) / 2);
        gap: 60px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__about .top__about__container {
        margin-top: 60px;
        gap: 40px;
        padding: 0 4%;
    }
}
.page-template-front-page .top__about .top__about__container .top__about__img {
    width: 50%;
    padding-right: 4%;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__about .top__about__container .top__about__img {
        padding-right: unset;
        width: unset;
    }
}
.page-template-front-page .top__about .top__about__container .top__about__txt {
    width: 50%;
    padding-left: 5%;
    padding-bottom: 300px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt {
        padding-bottom: 150px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt {
        padding-left: unset;
        padding-bottom: 120px;
        width: unset;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt {
        padding-bottom: 90px;
    }
}
.page-template-front-page .top__about .top__about__container .top__about__txt h3 {
    font-size: 5.5rem;
    font-weight: 500;
    line-height: 1.36;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt h3 {
        font-size: 4.2rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt h3 {
        line-height: 1.68;
        font-size: 3.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt h3 {
        font-size: 2.5rem;
    }
}
.page-template-front-page .top__about .top__about__container .top__about__txt p {
    margin-top: 80px;
    line-height: 3.33;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt p {
        margin-top: 60px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt p {
        margin-top: 50px;
        line-height: 2.67;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt p {
        margin-top: 35px;
    }
}
.page-template-front-page .top__about .top__about__container .top__about__txt .btn {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 360px;
    height: 80px;
    background: #166A54;
    border: 1px solid #166A54;
    color: #fff;
    padding: 0 25px 0 35px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt .btn {
        margin-top: 60px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt .btn {
        margin-top: 50px;
        height: 60px;
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt .btn {
        margin-top: 35px;
        height: 50px;
    }
}
.page-template-front-page .top__about .top__about__container .top__about__txt .btn::after {
    content: "";
    display: block;
    width: 12px;
    aspect-ratio: 12/18;
    background: #fff;
    mask: url(../img/common/arrow_wh.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__about .top__about__container .top__about__txt .btn::after {
        width: 10px;
    }
}
.page-template-front-page .top__about .top__about__container .top__about__txt .btn:hover {
    opacity: unset;
    color: #166A54;
    background: #fff;
}
.page-template-front-page .top__about .top__about__container .top__about__txt .btn:hover::after {
    background: #166A54;
}
.page-template-front-page .top__area__container {
    display: flex;
}
.page-template-front-page .top__area__container .top__area__img {
    width: 50%;
    padding-right: 5%;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__area__container .top__area__img {
        display: none;
    }
}
.page-template-front-page .top__area__container .top__area__txt {
    width: 50%;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__area__container .top__area__txt {
        width: unset;
    }
}
.page-template-front-page .top__area__container .top__area__txt .sp__img {
    margin: 60px auto 70px;
    width: 70%;
}
@media (max-width: 768px) {
    .page-template-front-page .top__area__container .top__area__txt .sp__img {
        margin: 40px auto 50px;
    }
}
.page-template-front-page .top__area__pict {
    display: flex;
    gap: 45px;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__area__pict {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__area__pict {
        gap: 5px;
    }
}
.page-template-front-page .top__area__pict img {
    width: calc((100% - 90px) / 3);
}
@media (max-width: 1280px) {
    .page-template-front-page .top__area__pict img {
        width: calc((100% - 40px) / 3);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__area__pict img {
        width: calc((100% - 10px) / 3);
    }
}
.page-template-front-page .top__area__pict .swiper-slide img {
    width: 100%;
}
.page-template-front-page .top__news {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}
.page-template-front-page .top__news::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 77%;
    bottom: 150px;
    background: #F9F9FA;
    z-index: -1;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__news::before {
        top: 30px;
        bottom: 140px;
        width: 85%;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__news::before {
        top: 20px;
        bottom: 100px;
    }
}
.page-template-front-page .top__news .top__news__ttl__box {
    border-left: 1px solid #166A54;
    padding-left: 35px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__news .top__news__ttl__box {
        padding-left: 25px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__news .top__news__ttl__box {
        padding-left: 15px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__news .top__news__ttl__box {
        padding-left: 10px;
    }
}
.page-template-front-page .top__news .top__news__ttl__box .h2__en {
    font-family: var(--font-en);
    font-size: 7rem;
    color: #166A54;
    line-height: 1.21;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__news .top__news__ttl__box .h2__en {
        font-size: 6rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__news .top__news__ttl__box .h2__en {
        font-size: 5rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__news .top__news__ttl__box .h2__en {
        font-size: 4rem;
    }
}
.page-template-front-page .top__news .top__news__ttl__box h2 {
    font-size: 2.5rem;
    font-weight: 500;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__news .top__news__ttl__box h2 {
        font-size: 2rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__news .top__news__ttl__box h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__news .top__news__ttl__box h2 {
        font-size: 1.5rem;
    }
}
.page-template-front-page .top__news .top__news__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
@media (max-width: 768px) {
    .page-template-front-page .top__news .top__news__header {
        flex-direction: column;
        align-items: flex-start;
    }
}
.page-template-front-page .top__news .top__news__header .link {
    display: flex;
    justify-content: space-between;
    width: 320px;
    padding-bottom: 20px;
    border-bottom: 1px solid #707070;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__news .top__news__header .link {
        width: 280px;
        padding-bottom: 15px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__news .top__news__header .link {
        width: 220px;
        padding-bottom: 10px;
    }
}
.page-template-front-page .top__news .top__news__header .link::after {
    content: "";
    display: block;
    width: 12px;
    aspect-ratio: 12/18;
    background: url(../img/common/arrow_bk.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__news .top__news__header .link::after {
        width: 10px;
    }
}
.page-template-front-page .top__news .top__news__list {
    display: flex;
    gap: 70px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__news .top__news__list {
        gap: 40px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__news .top__news__list {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__news .top__news__list {
        flex-direction: column;
        gap: 30px;
    }
}
.page-template-front-page .top__news .top__news__list a {
    width: calc((100% - 140px) / 3);
}
@media (max-width: 1440px) {
    .page-template-front-page .top__news .top__news__list a {
        width: calc((100% - 80px) / 3);
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__news .top__news__list a {
        width: calc((100% - 40px) / 3);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__news .top__news__list a {
        width: 100%;
    }
}
.page-template-front-page .top__news .top__news__list .thumbnail img {
    aspect-ratio: 418/268;
    object-fit: cover;
}
.page-template-front-page .top__news .top__news__list .date__categories {
    display: flex;
    gap: 20px;
    font-size: 1.6rem;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__news .top__news__list .date__categories {
        font-size: 1.4rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__news .top__news__list .date__categories {
        font-size: 1.3rem;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__news .top__news__list .date__categories {
        font-size: 1.2rem;
    }
}
.page-template-front-page .top__news .top__news__list .date__categories .date {
    letter-spacing: 0;
    color: #5F6E6B;
}
.page-template-front-page .top__news .top__news__list .date__categories .categories {
    display: flex;
    gap: 10px;
}
.page-template-front-page .top__news .top__news__list .date__categories .categories span {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #166A54;
    color: #fff;
    padding: 0 5px;
}
.page-template-front-page .top__member {
    max-width: 1920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.page-template-front-page .top__member::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 120px;
    right: 0;
    background: url(../img/top/member_bg.webp) center/cover no-repeat;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__member::before {
        bottom: 80px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__member::before {
        bottom: 60px;
    }
}
.page-template-front-page .top__member .h2__en {
    font-size: 10.3rem;
    font-family: var(--font-en);
    color: #fff;
    line-height: 1.21;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__member .h2__en {
        font-size: 8rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__member .h2__en {
        font-size: 7rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__member .h2__en {
        font-size: 6rem;
    }
}
.page-template-front-page .top__member h2 {
    font-size: 3rem;
    color: #fff;
    font-weight: 500;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__member h2 {
        font-size: 2.4rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__member h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__member h2 {
        font-size: 1.8rem;
    }
}
.page-template-front-page .top__member .top__member__box {
    padding: 90px;
    background: #fff;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1440px) {
    .page-template-front-page .top__member .top__member__box {
        padding: 60px 20px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__member .top__member__box {
        padding: 40px 20px;
    }
}
.page-template-front-page .top__member .top__member__box .btn {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 360px;
    height: 80px;
    background: #166A54;
    border: 1px solid #166A54;
    color: #fff;
    font-weight: 700;
    padding: 0 25px 0 35px;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__member .top__member__box .btn {
        width: 280px;
        height: 70px;
        padding: 0 20px 0 30px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__member .top__member__box .btn {
        width: 240px;
        height: 60px;
        padding: 0 15px 0 25px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__member .top__member__box .btn {
        width: 200px;
        height: 50px;
        padding: 0 10px 0 15px;
    }
}
.page-template-front-page .top__member .top__member__box .btn::after {
    content: "";
    display: block;
    width: 12px;
    aspect-ratio: 12/18;
    background: #fff;
    mask: url(../img/common/arrow_wh.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__member .top__member__box .btn::after {
        width: 10px;
    }
}
.page-template-front-page .top__member .top__member__box .btn:hover {
    opacity: unset;
    background: #fff;
    color: #166A54;
}
.page-template-front-page .top__member .top__member__box .btn:hover::after {
    background: #166A54;
}
.page-template-front-page .top__action .top__action__container {
    display: flex;
    gap: 50px;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__action .top__action__container {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__action .top__action__container {
        flex-direction: column;
    }
}
.page-template-front-page .top__action .top__action__container .top__action__link {
    position: relative;
    transition: all 0.3s ease-in-out;
}
.page-template-front-page .top__action .top__action__container .top__action__link .txt {
    position: absolute;
    color: #fff;
    font-size: 4.5rem;
    left: 55px;
    right: 55px;
    bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__action .top__action__container .top__action__link .txt {
        left: 40px;
        right: 40px;
        bottom: 30px;
        font-size: 3.6rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__action .top__action__container .top__action__link .txt {
        left: 20px;
        right: 20px;
        bottom: 15px;
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__action .top__action__container .top__action__link .txt {
        left: 15px;
        right: 15px;
        bottom: 10px;
        font-size: 2rem;
    }
}
.page-template-front-page .top__action .top__action__container .top__action__link .txt::after {
    content: "";
    display: block;
    width: 20px;
    aspect-ratio: 20/30;
    background: url(../img/common/arrow_wh.svg) center/contain no-repeat;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__action .top__action__container .top__action__link .txt::after {
        width: 16px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__action .top__action__container .top__action__link .txt::after {
        width: 14px;
    }
}
@media (max-width: 786px) {
    .page-template-front-page .top__action .top__action__container .top__action__link .txt::after {
        width: 12px;
    }
}
.page-template-front-page .top__action .top__action__container .top__action__link:hover {
    transform: translateY(-5px);
}
.page-template-front-page .top__action .top__action__network {
    display: flex;
    align-items: center;
    gap: 70px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__action .top__action__network {
        gap: 50px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__action .top__action__network {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__action .top__action__network {
        flex-direction: column;
        align-items: unset;
    }
}
.page-template-front-page .top__action .top__action__network .img {
    max-width: 580px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__action .top__action__network .img {
        max-width: 400px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__action .top__action__network .img {
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__action .top__action__network .img {
        max-width: unset;
    }
}
.page-template-front-page .top__action .top__action__network .txt {
    flex: 1 1;
}
.page-template-front-page .top__action .top__action__network .txt h3 {
    font-size: 5.5rem;
    font-weight: 500;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__action .top__action__network .txt h3 {
        font-size: 4.5rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__action .top__action__network .txt h3 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__action .top__action__network .txt h3 {
        font-size: 2.5rem;
    }
}
.page-template-front-page .top__action .top__action__network .txt h4 {
    font-size: 3.5rem;
    font-weight: 500;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__action .top__action__network .txt h4 {
        font-size: 3rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__action .top__action__network .txt h4 {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__action .top__action__network .txt h4 {
        font-size: 2rem;
    }
}
.page-template-front-page .top__action .top__action__network .txt .btn {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 360px;
    height: 80px;
    background: #166A54;
    border: 1px solid #166A54;
    color: #fff;
    padding: 0 25px 0 35px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__action .top__action__network .txt .btn {
        margin-top: 60px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__action .top__action__network .txt .btn {
        margin-top: 50px;
        height: 60px;
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__action .top__action__network .txt .btn {
        margin-top: 35px;
        height: 50px;
    }
}
.page-template-front-page .top__action .top__action__network .txt .btn::after {
    content: "";
    display: block;
    width: 12px;
    aspect-ratio: 12/18;
    background: #fff;
    mask: url(../img/common/arrow_wh.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__action .top__action__network .txt .btn::after {
        width: 10px;
    }
}
.page-template-front-page .top__action .top__action__network .txt .btn:hover {
    opacity: unset;
    background: #fff;
    color: #166A54;
}
.page-template-front-page .top__action .top__action__network .txt .btn:hover::after {
    background: #166A54;
}
.page-template-front-page .top__job .top__job__container {
    display: flex;
    gap: 70px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__job .top__job__container {
        gap: 40px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__job .top__job__container {
        flex-direction: column;
    }
}
.page-template-front-page .top__job .top__job__container .top__job__box {
    flex: 1 1;
}
.page-template-front-page .top__job .top__job__container .top__job__box h3 {
    margin-top: 50px;
    font-size: 2.5rem;
    font-weight: 500;
    display: flex;
    gap: 20px;
    align-items: center;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__job .top__job__container .top__job__box h3 {
        margin-top: 30px;
        font-size: 2rem;
        gap: 15px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__job .top__job__container .top__job__box h3 {
        margin-top: 25px;
        font-size: 1.8rem;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__job .top__job__container .top__job__box h3 {
        margin-top: 20px;
    }
}
.page-template-front-page .top__job .top__job__container .top__job__box h3.job__1::before {
    content: "";
    display: block;
    width: 32px;
    aspect-ratio: 32/36;
    background: url(../img/top/job_1_icon.webp) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__job .top__job__container .top__job__box h3.job__1::before {
        width: 22px;
    }
}
.page-template-front-page .top__job .top__job__container .top__job__box h3.job__2::before {
    content: "";
    display: block;
    width: 26px;
    aspect-ratio: 26/42;
    background: url(../img/top/job_2_icon.webp) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__job .top__job__container .top__job__box h3.job__2::before {
        width: 18px;
    }
}
.page-template-front-page .top__job .top__job__container .top__job__box h3.job__3::before {
    content: "";
    display: block;
    width: 36px;
    aspect-ratio: 1;
    background: url(../img/top/job_3_icon.webp) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__job .top__job__container .top__job__box h3.job__3::before {
        width: 25px;
    }
}
.page-template-front-page .top__job .top__job__container .top__job__box p {
    margin-top: 40px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__job .top__job__container .top__job__box p {
        margin-top: 25px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__job .top__job__container .top__job__box p {
        margin-top: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__job .top__job__container .top__job__box p {
        margin-top: 10px;
    }
}
.page-template-front-page .top__job .top__job__link__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__job .top__job__link__container {
        gap: 30px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__job .top__job__link__container {
        flex-direction: column;
        gap: 15px;
    }
}
.page-template-front-page .top__job .top__job__link__container a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 360px;
    height: 80px;
    border: 1px solid #166A54;
    background: #166A54;
    color: #fff;
    padding: 0 25px 0 35px;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__job .top__job__link__container a {
        width: 320px;
        height: 70px;
        padding: 0 15px 0 20px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__job .top__job__link__container a {
        width: 280px;
        height: 60px;
    }
}
.page-template-front-page .top__job .top__job__link__container a::after {
    content: "";
    display: block;
    width: 12px;
    aspect-ratio: 12/18;
    background: #fff;
    mask: url(../img/common/arrow_wh.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__job .top__job__link__container a::after {
        width: 10px;
    }
}
.page-template-front-page .top__job .top__job__link__container a:hover {
    opacity: unset;
    color: #166A54;
    background: #fff;
}
.page-template-front-page .top__job .top__job__link__container a:hover::after {
    background: #166A54;
}
.page-template-front-page .top__internship {
    max-width: 1920px;
    margin: 0 auto;
    color: #fff;
    position: relative;
}
.page-template-front-page .top__internship::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 77%;
    bottom: 300px;
    background: #36795C;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__internship::before {
        bottom: 150px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__internship::before {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__internship .top__h2__en {
        font-size: 5rem;
    }
}
.page-template-front-page .top__internship .top__h2::before {
    background: #fff;
}
.page-template-front-page .top__internship h3 {
    font-size: 3.1rem;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__internship h3 {
        font-size: 2.6rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__internship h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__internship h3 {
        font-size: 1.8rem;
    }
}
.page-template-front-page .top__internship .top__internship__container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__internship .top__internship__container {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__internship .top__internship__container {
        gap: 20px;
    }
}
.page-template-front-page .top__internship .top__internship__container .btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 360px;
    height: 80px;
    background: #166A54;
    border: 1px solid #166A54;
    color: #fff;
    padding: 0 25px 0 35px;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__internship .top__internship__container .btn {
        width: 320px;
        height: 70px;
        padding: 0 20px 0 30px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__internship .top__internship__container .btn {
        width: 280px;
        height: 60px;
        padding: 0 15px 0 25px;
    }
}
.page-template-front-page .top__internship .top__internship__container .btn::after {
    content: "";
    display: block;
    width: 12px;
    aspect-ratio: 12/18;
    background: #fff;
    mask: url(../img/common/arrow_wh.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__internship .top__internship__container .btn::after {
        width: 10px;
    }
}
.page-template-front-page .top__internship .top__internship__container .btn:hover {
    opacity: unset;
    background: #fff;
    color: #166A54;
}
.page-template-front-page .top__internship .top__internship__container .btn:hover::after {
    background: #166A54;
}
.page-template-front-page .top__internship .top__internship__img {
    display: flex;
    gap: 20px;
    width: 80%;
    margin-left: auto;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__internship .top__internship__img {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__internship .top__internship__img {
        flex-direction: column;
        gap: 10px;
    }
}
.page-template-front-page .top__internship .top__internship__img img {
    width: calc((100% - 20px) / 2);
}
@media (max-width: 768px) {
    .page-template-front-page .top__internship .top__internship__img img {
        width: 100%;
    }
}
.page-template-front-page .top__sns h2 {
    font-size: 5.5rem;
    font-weight: 500;
    font-family: var(--font-en);
    line-height: 1.22;
    margin-bottom: 75px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__sns h2 {
        font-size: 4.5rem;
        margin-bottom: 50px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__sns h2 {
        font-size: 3.5rem;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__sns h2 {
        font-size: 2.6rem;
        margin-bottom: 20px;
    }
}
.page-template-front-page .top__sns .inner {
    display: flex;
    gap: 90px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__sns .inner {
        gap: 50px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__sns .inner {
        flex-direction: column;
        gap: 60px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__sns .inner {
        gap: 40px;
    }
}
.page-template-front-page .top__sns .inner .top__sns__box {
    flex: 1 1;
}
.page-template-front-page .top__access {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    position: relative;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__access {
        flex-direction: column-reverse;
        row-gap: 50px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__access {
        row-gap: 30px;
    }
}
.page-template-front-page .top__access::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 150px;
    right: 0;
    width: 77%;
    bottom: 0;
    background: #F9F9FA;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__access::before {
        top: 120px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__access::before {
        top: 100px;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__access::before {
        top: 80px;
    }
}
.page-template-front-page .top__access .top__access__map {
    width: 50%;
    min-height: 540px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__access .top__access__map {
        min-height: 480px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__access .top__access__map {
        min-height: unset;
        height: 450px;
        width: unset;
        padding: 0 var(--inner-outer-width);
    }
}
.page-template-front-page .top__access .top__access__map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1);
    transition: 0.3s;
}
.page-template-front-page .top__access .top__access__map iframe:hover {
    filter: grayscale(0);
}
.page-template-front-page .top__access .top__access__txt {
    padding-left: 90px;
    width: 50%;
    padding-right: var(--inner-outer-width);
}
@media (max-width: 1440px) {
    .page-template-front-page .top__access .top__access__txt {
        padding-left: 50px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__access .top__access__txt {
        width: unset;
        padding: 0 var(--inner-outer-width);
    }
}
.page-template-front-page .top__access .top__access__txt table th, .page-template-front-page .top__access .top__access__txt table td {
    padding: 15px 0;
}
@media (max-width: 1000px) {
    .page-template-front-page .top__access .top__access__txt table th, .page-template-front-page .top__access .top__access__txt table td {
        padding: 10px 0;
    }
}
.page-template-front-page .top__access .top__access__txt table tr:first-child th, .page-template-front-page .top__access .top__access__txt table tr:first-child td {
    padding-top: 0;
}
.page-template-front-page .top__access .top__access__txt table tr:last-child th, .page-template-front-page .top__access .top__access__txt table tr:last-child td {
    padding-bottom: 0;
}
.page-template-front-page .top__access .top__access__txt table th {
    font-weight: 500;
    width: 130px;
    border-right: 1px solid #166A54;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__access .top__access__txt table th {
        width: 110px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__access .top__access__txt table th {
        width: 90px;
    }
}
.page-template-front-page .top__access .top__access__txt table td {
    padding-left: 50px;
}
@media (max-width: 1440px) {
    .page-template-front-page .top__access .top__access__txt table td {
        padding-left: 30px;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .top__access .top__access__txt table td {
        padding-left: 20px;
    }
}

/* ------------------------------------- /
/    お知らせ一覧ページ
/* ------------------------------------- */
.archive .category__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 50px;
}
@media (max-width: 1440px) {
    .archive .category__list {
        gap: 10px 30px;
    }
}
@media (max-width: 1000px) {
    .archive .category__list {
        gap: 10px 20px;
    }
}
.archive .category__list a {
    display: block;
    width: 240px;
    padding: 20px 0;
    border-bottom: 1px solid #166A54;
    position: relative;
}
.archive .category__list a.active {
    background: #166A54;
    color: #fff;
    padding: 20px 10px;
}
@media (max-width: 1000px) {
    .archive .category__list a.active {
        padding: 15px 10px;
    }
}
.archive .category__list a.active::before {
    background: #fff;
    right: 10px;
}
@media (max-width: 1440px) {
    .archive .category__list a {
        width: 200px;
    }
}
@media (max-width: 1000px) {
    .archive .category__list a {
        width: 160px;
        padding: 15px 0;
    }
}
@media (max-width: 768px) {
    .archive .category__list a {
        width: calc((100% - 20px) / 2);
        padding: 10px 0;
    }
}
.archive .category__list a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 17px;
    aspect-ratio: 1;
    background: #166a54;
    mask: url(../img/common/arrow_down_gr.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .archive .category__list a::before {
        width: 12px;
    }
}
.archive .categori__link__all {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    background: #166A54;
    font-size: 1.6rem;
    color: #fff;
    padding: 2px 6px;
}
.archive .post__container {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}
@media (max-width: 1440px) {
    .archive .post__container {
        gap: 40px;
    }
}
@media (max-width: 1000px) {
    .archive .post__container {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .archive .post__container {
        flex-direction: column;
        gap: 30px;
    }
}
.archive .post__container .post__box {
    width: calc((100% - 140px) / 3);
}
@media (max-width: 1440px) {
    .archive .post__container .post__box {
        width: calc((100% - 80px) / 3);
    }
}
@media (max-width: 1000px) {
    .archive .post__container .post__box {
        width: calc((100% - 40px) / 3);
    }
}
@media (max-width: 768px) {
    .archive .post__container .post__box {
        width: 100%;
    }
}
.archive .post__container .post__box .thumbnail {
    width: 100%;
    aspect-ratio: 418/268;
    object-fit: cover;
}

/* ------------------------------------- /
/    お知らせ単体ページ
/* ------------------------------------- */
.single-post .post__header {
    padding-bottom: 25px;
    border-bottom: 1px solid #166A54;
}
@media (max-width: 1440px) {
    .single-post .post__header {
        padding-bottom: 20px;
    }
}
@media (max-width: 1000px) {
    .single-post .post__header {
        padding-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .single-post .post__header {
        padding-bottom: 10px;
    }
}
.single-post .post__header .post__ttl {
    margin-top: 25px;
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.43;
}
@media (max-width: 1440px) {
    .single-post .post__header .post__ttl {
        margin-top: 20px;
        font-size: 2.8rem;
    }
}
@media (max-width: 1000px) {
    .single-post .post__header .post__ttl {
        margin-top: 15px;
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .single-post .post__header .post__ttl {
        margin-top: 10px;
        font-size: 2rem;
    }
}
.single-post .single__thumbnail {
    max-width: 800px;
    margin: 120px auto 0;
}
@media (max-width: 1440px) {
    .single-post .single__thumbnail {
        margin: 80px auto 0;
    }
}
@media (max-width: 1000px) {
    .single-post .single__thumbnail {
        margin: 60px auto 0;
    }
}
@media (max-width: 768px) {
    .single-post .single__thumbnail {
        margin: 40px auto 0;
    }
}
.single-post .post__content {
    max-width: 1000px;
    margin: 100px auto 0;
}
@media (max-width: 1440px) {
    .single-post .post__content {
        margin: 60px auto 0;
    }
}
@media (max-width: 1000px) {
    .single-post .post__content {
        margin: 40px auto 0;
    }
}
@media (max-width: 768px) {
    .single-post .post__content {
        margin: 20px auto 0;
    }
}
.single-post .post__content h2 {
    color: #166A54;
    font-size: 2.4rem;
    line-height: 1.33;
    border-bottom: 1px solid #166A54;
    font-weight: 500;
    padding-bottom: 20px;
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    .single-post .post__content h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        padding-bottom: 10px;
    }
}
.single-post .post__content h3 {
    font-size: 2rem;
    color: #166A54;
    font-weight: 500;
    padding-left: 30px;
    margin-bottom: 30px;
    position: relative;
}
@media (max-width: 768px) {
    .single-post .post__content h3 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
}
.single-post .post__content h3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 1px;
    background: #166A54;
}
.single-post .post__content p {
    margin-bottom: 70px;
}
.single-post .single__pagination .wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 190px;
}
@media (max-width: 1000px) {
    .single-post .single__pagination .wrapper {
        gap: 100px;
    }
}
@media (max-width: 768px) {
    .single-post .single__pagination .wrapper {
        gap: unset;
        justify-content: space-between;
    }
}
.single-post .single__pagination .btn__return {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 80px;
    background: #166A54;
    color: #fff;
    position: relative;
}
@media (max-width: 1000px) {
    .single-post .single__pagination .btn__return {
        max-width: 300px;
        height: 60px;
    }
}
@media (max-width: 768px) {
    .single-post .single__pagination .btn__return {
        max-width: 200px;
        height: 50px;
    }
}
.single-post .single__pagination .btn__return::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    width: 12px;
    aspect-ratio: 12/18;
    background: url(../img/common/arrow_back_wh.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .single-post .single__pagination .btn__return::before {
        width: 10px;
    }
}
.single-post .single__pagination .btn__return.sp {
    display: none;
}
.single-post .single__pagination .next {
    display: block;
    width: 19px;
    aspect-ratio: 1;
    background: url(../img/common/pagination_next.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .single-post .single__pagination .next {
        width: 10px;
    }
}
.single-post .single__pagination .previous {
    display: block;
    width: 19px;
    aspect-ratio: 1;
    background: url(../img/common/pagination_previous.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .single-post .single__pagination .previous {
        width: 10px;
    }
}

/* ------------------------------------- /
/    会員紹介ページ
/* ------------------------------------- */
.page-template-page-member .member__list {
    display: flex;
    flex-wrap: wrap;
    gap: 120px 160px;
}
@media (max-width: 1440px) {
    .page-template-page-member .member__list {
        gap: 80px 80px;
    }
}
@media (max-width: 1000px) {
    .page-template-page-member .member__list {
        gap: 60px;
    }
}
@media (max-width: 768px) {
    .page-template-page-member .member__list {
        gap: 40px;
    }
}
.page-template-page-member .member__list .member__box {
    width: calc((100% - 160px) / 2);
}
@media (max-width: 1440px) {
    .page-template-page-member .member__list .member__box {
        width: calc((100% - 80px) / 2);
    }
}
@media (max-width: 1000px) {
    .page-template-page-member .member__list .member__box {
        width: 100%;
    }
}
.page-template-page-member .member__list .member__box .thumbnail img {
    width: 100%;
    aspect-ratio: 620/400;
    object-fit: cover;
}
.page-template-page-member .member__list .member__box .ttl {
    color: #166A54;
    font-size: 2.8rem;
}
@media (max-width: 1440px) {
    .page-template-page-member .member__list .member__box .ttl {
        font-size: 2.2rem;
    }
}
@media (max-width: 1000px) {
    .page-template-page-member .member__list .member__box .ttl {
        font-size: 1.9rem;
    }
}
.page-template-page-member .member__list .member__box table th {
    width: 135px;
    border-right: 1px solid #166A54;
    font-weight: inherit;
    padding: 5px 0;
}
@media (max-width: 1440px) {
    .page-template-page-member .member__list .member__box table th {
        padding: 2px 0;
        width: 110px;
    }
}
@media (max-width: 768px) {
    .page-template-page-member .member__list .member__box table th {
        padding: 0;
        width: 90px;
    }
}
.page-template-page-member .member__list .member__box table td {
    padding-left: 50px;
}
@media (max-width: 1440px) {
    .page-template-page-member .member__list .member__box table td {
        padding-left: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-member .member__list .member__box table td {
        padding-left: 10px;
    }
}

/* ------------------------------------- /
/    協会についてページ
/* ------------------------------------- */
.page-template-page-about .about__greeting .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}
@media (max-width: 1000px) {
    .page-template-page-about .about__greeting .inner {
        flex-direction: column;
        gap: 20px;
    }
}
.page-template-page-about .about__greeting .inner .about__greeting__content {
    max-width: 1000px;
}
.page-template-page-about .about__greeting .inner .about__greeting__content .greeting__img__container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-end;
    line-height: 1.67;
}
@media (max-width: 1000px) {
    .page-template-page-about .about__greeting .inner .about__greeting__content .greeting__img__container {
        gap: 20px;
    }
}
.page-template-page-about .about__greeting .inner .about__greeting__content .greeting__img__container img {
    max-width: 380px;
}
@media (max-width: 1000px) {
    .page-template-page-about .about__greeting .inner .about__greeting__content .greeting__img__container img {
        max-width: 280px;
    }
}
.page-template-page-about .about__history .history__table .row {
    display: flex;
}
.page-template-page-about .about__history .history__table .row .row__header {
    white-space: nowrap;
    padding-right: 20px;
}
@media (max-width: 1000px) {
    .page-template-page-about .about__history .history__table .row .row__header {
        padding-right: 10px;
    }
}
@media (max-width: 768px) {
    .page-template-page-about .about__history .history__table .row .row__header {
        padding-right: unset;
    }
}
.page-template-page-about .about__history .history__table .row .row__line {
    width: 130px;
    position: relative;
}
@media (max-width: 1440px) {
    .page-template-page-about .about__history .history__table .row .row__line {
        width: 90px;
    }
}
@media (max-width: 1000px) {
    .page-template-page-about .about__history .history__table .row .row__line {
        width: 50px;
    }
}
@media (max-width: 768px) {
    .page-template-page-about .about__history .history__table .row .row__line {
        width: 20px;
    }
}
.page-template-page-about .about__history .history__table .row .row__line::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: #166A54;
}
.page-template-page-about .about__history .history__table .row .row__line::after {
    content: "";
    position: absolute;
    width: 7px;
    aspect-ratio: 1;
    background: #166A54;
    top: 15px;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 1000px) {
    .page-template-page-about .about__history .history__table .row .row__line::after {
        width: 5px;
    }
}
.page-template-page-about .about__history .history__table .row .row__txt {
    flex: 1 1;
    padding-bottom: 50px;
}
@media (max-width: 1440px) {
    .page-template-page-about .about__history .history__table .row .row__txt {
        padding-bottom: 40px;
    }
}
@media (max-width: 1000px) {
    .page-template-page-about .about__history .history__table .row .row__txt {
        padding-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-about .about__history .history__table .row .row__txt {
        padding-bottom: 15px;
    }
}
.page-template-page-about .about__history .history__table .row:last-child .row__txt {
    padding-bottom: unset;
}
.page-template-page-about .about__diagram .about__diagram__img {
    max-width: 1200px;
    margin: 0 auto;
}
.page-template-page-about .about__table {
    width: 100%;
}
.page-template-page-about .about__table thead {
    border-bottom: 2px solid #166A54;
}
@media (max-width: 1000px) {
    .page-template-page-about .about__table thead {
        border-bottom-width: 1px;
    }
}
.page-template-page-about .about__table thead th {
    font-size: 2rem;
    font-weight: 700;
    color: #166A54;
    padding: 20px 0;
    line-height: 1.5;
}
@media (max-width: 1000px) {
    .page-template-page-about .about__table thead th {
        font-size: 1.8rem;
        padding: 15px 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-about .about__table thead th {
        font-size: 1.6rem;
    }
}
.page-template-page-about .about__table tbody td {
    padding: 25px 0;
    border-bottom: 1px solid #707070;
    line-height: 2.78;
}
@media (max-width: 1000px) {
    .page-template-page-about .about__table tbody td {
        line-height: 1.8;
        padding: 15px 0;
    }
}

/* ------------------------------------- /
/    建設業のお仕事ページ
/* ------------------------------------- */
.page-template-page-job .job__system__container {
    display: flex;
    gap: 6%;
}
@media (max-width: 1440px) {
    .page-template-page-job .job__system__container {
        gap: 3%;
    }
}
@media (max-width: 768px) {
    .page-template-page-job .job__system__container {
        flex-direction: column;
        row-gap: 30px;
    }
}
.page-template-page-job .job__system__container div {
    flex: 1 1;
}
.page-template-page-job .job__system__container h3 {
    color: #166A54;
    font-size: 2.8rem;
    font-weight: 500;
    border-bottom: 1px solid #166A54;
    line-height: 1.43;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
@media (max-width: 1440px) {
    .page-template-page-job .job__system__container h3 {
        font-size: 2.2rem;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
}
@media (max-width: 1000px) {
    .page-template-page-job .job__system__container h3 {
        font-size: 2rem;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .page-template-page-job .job__system__container h3 {
        font-size: 1.8rem;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }
}
.page-template-page-job .job__people__container {
    display: flex;
    flex-direction: column;
    gap: 120px;
}
@media (max-width: 1440px) {
    .page-template-page-job .job__people__container {
        gap: 80px;
    }
}
@media (max-width: 768px) {
    .page-template-page-job .job__people__container {
        gap: 40px;
    }
}
.page-template-page-job .job__people__container .job__people__container__box {
    display: flex;
    align-items: center;
    gap: 9%;
}
@media (max-width: 1440px) {
    .page-template-page-job .job__people__container .job__people__container__box {
        align-items: flex-start;
        gap: 5%;
    }
}
@media (max-width: 768px) {
    .page-template-page-job .job__people__container .job__people__container__box {
        flex-direction: column;
        row-gap: 20px;
    }
}
.page-template-page-job .job__people__container .job__people__container__box img {
    width: 30%;
}
@media (max-width: 768px) {
    .page-template-page-job .job__people__container .job__people__container__box img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}
.page-template-page-job .job__people__container .job__people__container__box .txt {
    flex: 1 1;
}
.page-template-page-job .job__people__container .job__people__container__box .txt h3 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 500;
    color: #166A54;
    margin-bottom: 50px;
    padding-left: 80px;
    position: relative;
}
@media (max-width: 1440px) {
    .page-template-page-job .job__people__container .job__people__container__box .txt h3 {
        font-size: 3.2rem;
        margin-bottom: 30px;
    }
}
@media (max-width: 1000px) {
    .page-template-page-job .job__people__container .job__people__container__box .txt h3 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        padding-left: 56px;
    }
}
@media (max-width: 768px) {
    .page-template-page-job .job__people__container .job__people__container__box .txt h3 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
}
.page-template-page-job .job__people__container .job__people__container__box .txt h3.icon__1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    aspect-ratio: 48/53;
    background: url(../img/job/people_icon_1.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .page-template-page-job .job__people__container .job__people__container__box .txt h3.icon__1::before {
        width: 34px;
    }
}
.page-template-page-job .job__people__container .job__people__container__box .txt h3.icon__2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    aspect-ratio: 38/63;
    background: url(../img/job/people_icon_2.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .page-template-page-job .job__people__container .job__people__container__box .txt h3.icon__2::before {
        width: 27px;
    }
}
.page-template-page-job .job__people__container .job__people__container__box .txt h3.icon__3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    aspect-ratio: 54/53;
    background: url(../img/job/people_icon_3.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .page-template-page-job .job__people__container .job__people__container__box .txt h3.icon__3::before {
        width: 38px;
    }
}
.page-template-page-job .job__people__container .job__people__container__box .txt h4 {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 40px;
}
@media (max-width: 1440px) {
    .page-template-page-job .job__people__container .job__people__container__box .txt h4 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}
@media (max-width: 1000px) {
    .page-template-page-job .job__people__container .job__people__container__box .txt h4 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .page-template-page-job .job__people__container .job__people__container__box .txt h4 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
}
.page-template-page-job .job__construction h3 {
    color: #166A54;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.22;
    margin-bottom: 40px;
}
@media (max-width: 1440px) {
    .page-template-page-job .job__construction h3 {
        font-size: 2.8rem;
        margin-bottom: 30px;
    }
}
@media (max-width: 1000px) {
    .page-template-page-job .job__construction h3 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-job .job__construction h3 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
}
.page-template-page-job .job__construction .job__construction__container {
    display: flex;
    align-items: center;
}
@media (max-width: 1000px) {
    .page-template-page-job .job__construction .job__construction__container {
        flex-direction: column;
        row-gap: 40px;
    }
}
.page-template-page-job .job__construction .job__construction__container .img {
    width: 50%;
}
@media (max-width: 1000px) {
    .page-template-page-job .job__construction .job__construction__container .img {
        width: 100%;
    }
}
.page-template-page-job .job__construction .job__construction__container .txt {
    width: 50%;
    padding-left: 7%;
}
@media (max-width: 1000px) {
    .page-template-page-job .job__construction .job__construction__container .txt {
        width: 100%;
        padding-left: unset;
    }
}
.page-template-page-job .job__construction .job__construction__container:nth-child(2n) {
    flex-direction: row-reverse;
}
@media (max-width: 1000px) {
    .page-template-page-job .job__construction .job__construction__container:nth-child(2n) {
        flex-direction: column;
    }
}
.page-template-page-job .job__construction .job__construction__container:nth-child(2n) .txt {
    padding-left: unset;
    padding-right: 7%;
}
@media (max-width: 1000px) {
    .page-template-page-job .job__construction .job__construction__container:nth-child(2n) .txt {
        padding-right: unset;
    }
}
.page-template-page-job .job__list {
    background: #F9F9FA;
    padding: 50px;
    display: flex;
    gap: 50px;
}
@media (max-width: 1440px) {
    .page-template-page-job .job__list {
        padding: 30px;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-job .job__list {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
}
.page-template-page-job .job__list .job__list__left, .page-template-page-job .job__list .job__list__right {
    flex: 1 1;
}
.page-template-page-job .job__license h3 {
    color: #166A54;
    font-size: 3.6rem;
    line-height: 1.22;
    font-weight: 500;
}
@media (max-width: 1440px) {
    .page-template-page-job .job__license h3 {
        font-size: 2.8rem;
    }
}
@media (max-width: 1000px) {
    .page-template-page-job .job__license h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-job .job__license h3 {
        font-size: 2rem;
    }
}

/* ------------------------------------- /
/    防炎ネットワークページ
/* ------------------------------------- */
.page-template-page-network .network__about h3 {
    color: #166A54;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.22;
}
@media (max-width: 1440px) {
    .page-template-page-network .network__about h3 {
        font-size: 2.8rem;
    }
}
@media (max-width: 1000px) {
    .page-template-page-network .network__about h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-network .network__about h3 {
        font-size: 2rem;
    }
}
.page-template-page-network .network__about table {
    width: 100%;
    border-top: 2px solid #166A54;
}
@media (max-width: 1000px) {
    .page-template-page-network .network__about table {
        border-top-width: 1px;
    }
}
.page-template-page-network .network__about table tr {
    border-bottom: 1px solid #707070;
}
.page-template-page-network .network__about table tr th {
    font-weight: 500;
    white-space: nowrap;
    padding-right: 10px;
}
.page-template-page-network .network__about table tr td {
    padding: 50px 0;
}
@media (max-width: 1440px) {
    .page-template-page-network .network__about table tr td {
        padding: 40px 0;
    }
}
@media (max-width: 1000px) {
    .page-template-page-network .network__about table tr td {
        padding: 20px 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-network .network__about table tr td {
        padding: 15px 0;
    }
}
.page-template-page-network .network__about table tr td li {
    text-indent: -1em;
    margin-left: 1em;
}
.page-template-page-network .network__network h3 {
    font-size: 3.6rem;
    color: #166A54;
    line-height: 1.22;
}
@media (max-width: 1440px) {
    .page-template-page-network .network__network h3 {
        font-size: 2.8rem;
    }
}
@media (max-width: 1000px) {
    .page-template-page-network .network__network h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-network .network__network h3 {
        font-size: 2rem;
    }
}
.page-template-page-network .network__network .network__activity {
    display: flex;
    align-items: center;
}
.page-template-page-network .network__network .network__activity:nth-child(2n) {
    flex-direction: row-reverse;
}
@media (max-width: 1000px) {
    .page-template-page-network .network__network .network__activity:nth-child(2n) {
        flex-direction: column;
    }
}
.page-template-page-network .network__network .network__activity:nth-child(2n) .txt {
    padding-left: unset;
    padding-right: 7%;
}
@media (max-width: 1000px) {
    .page-template-page-network .network__network .network__activity:nth-child(2n) .txt {
        padding-right: unset;
    }
}
@media (max-width: 1000px) {
    .page-template-page-network .network__network .network__activity {
        flex-direction: column;
        row-gap: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-page-network .network__network .network__activity {
        row-gap: 30px;
    }
}
.page-template-page-network .network__network .network__activity .img, .page-template-page-network .network__network .network__activity .txt {
    flex: 1 1;
}
.page-template-page-network .network__network .network__activity .txt {
    padding-left: 7%;
}
@media (max-width: 1000px) {
    .page-template-page-network .network__network .network__activity .txt {
        padding-left: unset;
    }
}

/* ------------------------------------- /
/    インターンシップページ
/* ------------------------------------- */
.page-template-page-internship .internship__about h3,
.page-template-page-internship_confirm .internship__about h3 {
    font-size: 2.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 10px;
}
@media (max-width: 1440px) {
    .page-template-page-internship .internship__about h3,
    .page-template-page-internship_confirm .internship__about h3 {
        font-size: 2.5rem;
    }
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__about h3,
    .page-template-page-internship_confirm .internship__about h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-internship .internship__about h3,
    .page-template-page-internship_confirm .internship__about h3 {
        font-size: 2rem;
    }
}
.page-template-page-internship .internship__about h3::after,
.page-template-page-internship_confirm .internship__about h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #166A54;
}
.page-template-page-internship .internship__offer table th,
.page-template-page-internship_confirm .internship__offer table th {
    font-weight: 500;
    padding-right: 80px;
    border-right: 1px solid #166A54;
}
@media (max-width: 1440px) {
    .page-template-page-internship .internship__offer table th,
    .page-template-page-internship_confirm .internship__offer table th {
        padding-right: 50px;
    }
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__offer table th,
    .page-template-page-internship_confirm .internship__offer table th {
        padding-right: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-internship .internship__offer table th,
    .page-template-page-internship_confirm .internship__offer table th {
        padding-right: 20px;
    }
}
.page-template-page-internship .internship__offer table td,
.page-template-page-internship_confirm .internship__offer table td {
    padding: 10px 0;
    padding-left: 50px;
}
@media (max-width: 1440px) {
    .page-template-page-internship .internship__offer table td,
    .page-template-page-internship_confirm .internship__offer table td {
        padding-left: 30px;
    }
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__offer table td,
    .page-template-page-internship_confirm .internship__offer table td {
        padding: 5px 0;
        padding-left: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-internship .internship__offer table td,
    .page-template-page-internship_confirm .internship__offer table td {
        padding-left: 10px;
    }
}
.page-template-page-internship .internship__offer .link,
.page-template-page-internship_confirm .internship__offer .link {
    margin: 0 auto;
    display: flex;
    align-items: center;
    width: 360px;
    height: 80px;
    background: #166A54;
    border: 1px solid #166A54;
    color: #fff;
    padding: 0 35px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
    .page-template-page-internship .internship__offer .link,
    .page-template-page-internship_confirm .internship__offer .link {
        width: 300px;
        height: 70px;
        padding: 0 25px;
    }
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__offer .link,
    .page-template-page-internship_confirm .internship__offer .link {
        width: 260px;
        height: 60px;
        padding: 0 15px;
    }
}
@media (max-width: 768px) {
    .page-template-page-internship .internship__offer .link,
    .page-template-page-internship_confirm .internship__offer .link {
        width: 220px;
        height: 50px;
    }
}
.page-template-page-internship .internship__offer .link::before,
.page-template-page-internship_confirm .internship__offer .link::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 18px;
    aspect-ratio: 18/12;
    background: #fff;
    mask: url(../img/network/arrow_down_wh.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__offer .link::before,
    .page-template-page-internship_confirm .internship__offer .link::before {
        width: 14px;
        right: 12px;
    }
}
.page-template-page-internship .internship__offer .link:hover,
.page-template-page-internship_confirm .internship__offer .link:hover {
    opacity: unset;
    background: #fff;
    color: #166A54;
}
.page-template-page-internship .internship__offer .link:hover::before,
.page-template-page-internship_confirm .internship__offer .link:hover::before {
    background: #166A54;
}
.page-template-page-internship .internship__list table,
.page-template-page-internship_confirm .internship__list table {
    width: 100%;
}
.page-template-page-internship .internship__list table thead,
.page-template-page-internship_confirm .internship__list table thead {
    border-bottom: 2px solid #166A54;
}
.page-template-page-internship .internship__list table thead th,
.page-template-page-internship_confirm .internship__list table thead th {
    color: #166A54;
    font-size: 2rem;
    font-weight: 700;
    padding: 15px 0;
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__list table thead th,
    .page-template-page-internship_confirm .internship__list table thead th {
        font-size: 1.8rem;
        padding: 10px 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-internship .internship__list table thead th,
    .page-template-page-internship_confirm .internship__list table thead th {
        font-size: 1.7rem;
        padding: 5px 0;
    }
}
.page-template-page-internship .internship__list table tbody tr,
.page-template-page-internship_confirm .internship__list table tbody tr {
    border-bottom: 1px solid #707070;
}
.page-template-page-internship .internship__list table tbody td,
.page-template-page-internship_confirm .internship__list table tbody td {
    padding: 40px 0;
}
@media (max-width: 1440px) {
    .page-template-page-internship .internship__list table tbody td,
    .page-template-page-internship_confirm .internship__list table tbody td {
        padding: 20px 0;
    }
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__list table tbody td,
    .page-template-page-internship_confirm .internship__list table tbody td {
        padding: 15px 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-internship .internship__list table tbody td,
    .page-template-page-internship_confirm .internship__list table tbody td {
        padding: 10px 0;
    }
}
.page-template-page-internship .internship__form h3,
.page-template-page-internship_confirm .internship__form h3 {
    color: #166A54;
    font-size: 3.6rem;
    font-weight: 500;
}
@media (max-width: 1440px) {
    .page-template-page-internship .internship__form h3,
    .page-template-page-internship_confirm .internship__form h3 {
        font-size: 2.8rem;
    }
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__form h3,
    .page-template-page-internship_confirm .internship__form h3 {
        font-size: 2.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-internship .internship__form h3,
    .page-template-page-internship_confirm .internship__form h3 {
        font-size: 2.2rem;
    }
}
.page-template-page-internship .internship__form .form__column,
.page-template-page-internship_confirm .internship__form .form__column {
    display: flex;
    align-items: center;
    gap: 3%;
}
@media (max-width: 768px) {
    .page-template-page-internship .internship__form .form__column,
    .page-template-page-internship_confirm .internship__form .form__column {
        align-items: unset;
        flex-direction: column;
        row-gap: 10px;
    }
}
.page-template-page-internship .internship__form .form__column dt,
.page-template-page-internship_confirm .internship__form .form__column dt {
    width: 240px;
    display: flex;
    justify-content: space-between;
    align-content: center;
}
@media (max-width: 768px) {
    .page-template-page-internship .internship__form .form__column dt,
    .page-template-page-internship_confirm .internship__form .form__column dt {
        width: fit-content;
        gap: 10px;
    }
}
.page-template-page-internship .internship__form .form__column dt .required,
.page-template-page-internship_confirm .internship__form .form__column dt .required {
    background: #166A54;
    font-size: 1.7rem;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 30px;
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__form .form__column dt .required,
    .page-template-page-internship_confirm .internship__form .form__column dt .required {
        font-size: 1.6rem;
        width: 60px;
        height: 25px;
    }
}
.page-template-page-internship .internship__form .form__column dd,
.page-template-page-internship_confirm .internship__form .form__column dd {
    flex: 1 1;
}
.page-template-page-internship .internship__form .form__column dd input[type=text],
.page-template-page-internship .internship__form .form__column dd input[type=email],
.page-template-page-internship .internship__form .form__column dd input[type=tel],
.page-template-page-internship_confirm .internship__form .form__column dd input[type=text],
.page-template-page-internship_confirm .internship__form .form__column dd input[type=email],
.page-template-page-internship_confirm .internship__form .form__column dd input[type=tel] {
    width: 100%;
    height: 60px;
    background: #F9F9FA;
    border: none;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    padding: 0 15px;
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__form .form__column dd input[type=text],
    .page-template-page-internship .internship__form .form__column dd input[type=email],
    .page-template-page-internship .internship__form .form__column dd input[type=tel],
    .page-template-page-internship_confirm .internship__form .form__column dd input[type=text],
    .page-template-page-internship_confirm .internship__form .form__column dd input[type=email],
    .page-template-page-internship_confirm .internship__form .form__column dd input[type=tel] {
        height: 50px;
        padding: 0 10px;
    }
}
.page-template-page-internship .internship__form .form__column dd .select__wrapper,
.page-template-page-internship_confirm .internship__form .form__column dd .select__wrapper {
    width: fit-content;
    background: #F9F9FA;
    position: relative;
}
.page-template-page-internship .internship__form .form__column dd .select__wrapper::before,
.page-template-page-internship_confirm .internship__form .form__column dd .select__wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    right: 20px;
    width: 17px;
    aspect-ratio: 1;
    background: url(../img/common/arrow_down_gr.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__form .form__column dd .select__wrapper::before,
    .page-template-page-internship_confirm .internship__form .form__column dd .select__wrapper::before {
        width: 14px;
        right: 15px;
    }
}
.page-template-page-internship .internship__form .form__column dd .select__container,
.page-template-page-internship_confirm .internship__form .form__column dd .select__container {
    display: flex;
    align-items: center;
    gap: 15px;
}
.page-template-page-internship .internship__form .form__column dd select,
.page-template-page-internship_confirm .internship__form .form__column dd select {
    position: relative;
    height: 60px;
    width: 180px;
    border: none;
    font-size: 1.7rem;
    background: unset;
    font-family: inherit;
    padding: 15px 20px;
    appearance: none;
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__form .form__column dd select,
    .page-template-page-internship_confirm .internship__form .form__column dd select {
        font-size: 1.6rem;
        height: 50px;
        width: 140px;
        padding: 5px;
    }
}
.page-template-page-internship .internship__form .form__column dd .radio__container,
.page-template-page-internship_confirm .internship__form .form__column dd .radio__container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__form .form__column dd .radio__container,
    .page-template-page-internship_confirm .internship__form .form__column dd .radio__container {
        gap: 5px 15px;
    }
}
.page-template-page-internship .internship__form .form__column dd .radio__wrapper,
.page-template-page-internship_confirm .internship__form .form__column dd .radio__wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.page-template-page-internship .internship__form .form__column dd .radio__btn__wrapper,
.page-template-page-internship_confirm .internship__form .form__column dd .radio__btn__wrapper {
    position: relative;
    width: 18px;
    height: 18px;
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__form .form__column dd .radio__btn__wrapper,
    .page-template-page-internship_confirm .internship__form .form__column dd .radio__btn__wrapper {
        width: 14px;
        height: 14px;
    }
}
.page-template-page-internship .internship__form .form__column dd .radio__btn__wrapper::before,
.page-template-page-internship_confirm .internship__form .form__column dd .radio__btn__wrapper::before {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid #707070;
}
.page-template-page-internship .internship__form .form__column dd .radio__btn__wrapper:has(input:checked)::after,
.page-template-page-internship_confirm .internship__form .form__column dd .radio__btn__wrapper:has(input:checked)::after {
    content: "";
    position: absolute;
    width: 60%;
    aspect-ratio: 1;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-black);
}
.page-template-page-internship .internship__form .form__column dd .error,
.page-template-page-internship_confirm .internship__form .form__column dd .error {
    color: red;
}
.page-template-page-internship .internship__form .form__column dd .error.false,
.page-template-page-internship_confirm .internship__form .form__column dd .error.false {
    display: none;
}
.page-template-page-internship .internship__form .submit__wrapper,
.page-template-page-internship_confirm .internship__form .submit__wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 40px;
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__form .submit__wrapper,
    .page-template-page-internship_confirm .internship__form .submit__wrapper {
        gap: 20px;
    }
}
.page-template-page-internship .internship__form .submit__wrapper .submit__btn,
.page-template-page-internship_confirm .internship__form .submit__wrapper .submit__btn {
    border: none;
    cursor: pointer;
    width: 360px;
    height: 80px;
    background: #166A54;
    border: 1px solid #166A54;
    color: #fff;
    display: flex;
    border: 1px solid #166A54;
    align-items: center;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    padding: 25px 35px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.page-template-page-internship .internship__form .submit__wrapper .submit__btn.return,
.page-template-page-internship_confirm .internship__form .submit__wrapper .submit__btn.return {
    color: #166A54;
    background: #fff;
}
@media (max-width: 1440px) {
    .page-template-page-internship .internship__form .submit__wrapper .submit__btn,
    .page-template-page-internship_confirm .internship__form .submit__wrapper .submit__btn {
        width: 260px;
        height: 70px;
        padding: 20px 25px;
    }
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__form .submit__wrapper .submit__btn,
    .page-template-page-internship_confirm .internship__form .submit__wrapper .submit__btn {
        width: 220px;
        height: 60px;
        padding: 15px 20px;
    }
}
.page-template-page-internship .internship__form .submit__wrapper .submit__btn::before,
.page-template-page-internship_confirm .internship__form .submit__wrapper .submit__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    width: 12px;
    aspect-ratio: 12/18;
    background: #fff;
    mask: url(../img/internship/arrow_right_wh.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1000px) {
    .page-template-page-internship .internship__form .submit__wrapper .submit__btn::before,
    .page-template-page-internship_confirm .internship__form .submit__wrapper .submit__btn::before {
        width: 10px;
        right: 16px;
    }
}
.page-template-page-internship .internship__form .submit__wrapper .submit__btn:hover,
.page-template-page-internship_confirm .internship__form .submit__wrapper .submit__btn:hover {
    opacity: unset;
    background: #fff;
    color: #166A54;
}
.page-template-page-internship .internship__form .submit__wrapper .submit__btn:hover::before,
.page-template-page-internship_confirm .internship__form .submit__wrapper .submit__btn:hover::before {
    background: #166A54;
}
.page-template-page-internship .internship__form .submit__wrapper .submit__btn.return::before,
.page-template-page-internship_confirm .internship__form .submit__wrapper .submit__btn.return::before {
    background: #166A54;
}
.page-template-page-internship .internship__form .submit__wrapper .submit__btn.return:hover,
.page-template-page-internship_confirm .internship__form .submit__wrapper .submit__btn.return:hover {
    background: #166A54;
    color: #fff;
}
.page-template-page-internship .internship__form .submit__wrapper .submit__btn.return:hover::before,
.page-template-page-internship_confirm .internship__form .submit__wrapper .submit__btn.return:hover::before {
    background: #fff;
}

.about__diagram__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: max(min(9vw, 90px), 30px);
}

.about__diagram__column {
    width: min(30%, 410px);
}
.about__diagram__column dt {
    padding-bottom: min(1vw, 10px);
    border-bottom: 1px #166A54 solid;
    color: #166A54;
    font-size: clamp(2rem, 2vw, 2.8rem);
}
.about__diagram__column dd {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    margin-top: min(2vw, 20px);
}

@media (max-width: 768px) {
    .about__diagram__column {
        width: min(48%, 410px);
    }
}
@media (max-width: 500px) {
    .about__diagram__column {
        width: 100%;
    }
}
.network__img {
    background-color: #F9F9FA;
    padding: max(min(4.5vw, 90px), 40px) min(5.2vw, 100px);
}

.network__detail h3 {
    border-bottom: 2px #166A54 solid;
    padding-bottom: max(min(1.2vw, 20px), 10px);
}

.network__detail__column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px #707070 solid;
}
.network__detail__column dt {
    width: min(100%, 250px);
}
.network__detail__column dd {
    width: calc(100% - 250px);
}
.network__detail__column dd li {
    padding-left: 1em;
    position: relative;
}
.network__detail__column dd li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 1080px) {
    .network__detail__column dt {
        width: min(100%, 200px);
    }
    .network__detail__column dd {
        width: calc(100% - 200px);
    }
}
@media (max-width: 768px) {
    .network__detail__column dt {
        width: 100%;
        font-size: 1.2em;
    }
    .network__detail__column dd {
        width: 100%;
        padding-top: 10px;
        font-size: 1.4rem;
    }
}

/*# sourceMappingURL=style.css.map */

.member__table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    line-height: 1.4;
    col:nth-child(1),
    col:nth-child(2) {
        width: 18%;
    }
    col:nth-child(5) {
        width: 22%;
    }
    col:nth-child(4) {
        width: 220px;
    }
    th {
            color: #166A54;
            border-bottom: 2px #166A54 solid;
            padding: 0 0 20px;
            font-size: clamp(1.8rem, 2vw, 2.1rem);
    }
    td {
            font-size: clamp(1.5rem, 1.5vw, 1.8rem);
            padding: max(min(4vw, 40px), 15px) 20px max(min(4vw, 40px), 15px) 0;
            border-bottom: 1px #166A54 solid;
            &:last-child {
                    padding-right: 0;
            }
            span {
                    display: inline-block;
                    &:not(:last-child) {
                            margin-right: 10px;
                    }
            }
    }
    td:nth-child(5) a {
        font-size: 0.9em;
        letter-spacing: 0;
    }
    td:nth-child(5) a:hover {
        text-decoration: underline;
        opacity: 1;
    }
}
@media (max-width: 1080px) {
.member__table {
    col:nth-child(2) {
            width: 16%;
    }
    col:nth-child(4) {
        width: 185px;
    }
}
}
@media (max-width: 768px) {
.member__table {
    colgroup,
    col,
    thead {
            display: none;
    }
}
.member__table,
.member__table tbody,
.member__table tr,
.member__table th,
.member__table td {
    display: block;
}
.member__table tbody {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 20px;
}
.member__table tr {
    width: 48%;
    border: 1px #166A54 solid;
    &:not(:first-child) {
    }
}
.member__table td {
    padding: 0 0 8px;
    border: none;
    text-align: center;
    background-color: #fff;
}
.member__table td::before {
    display: block;
    width: 100%;
    margin: 0 0 8px;
    padding: 3px 0;
    background-color: #D8D8D8;
    color: #166A54;
    font-weight: bold;
    text-align: center;
}
.member__table td:nth-child(1)::before {
    content: '企業名';
}
.member__table td:nth-child(2)::before {
    content: '代表者名';
}
.member__table td:nth-child(3)::before {
    content: '所在地';
}
.member__table td:nth-child(4)::before {
    content: 'TEL/FAX';
}
.member__table td:nth-child(5):has(a)::before {
    content: 'HP';
}
.member__table td:nth-child(5):not(:has(a)) {
    display: none;
}
}
@media (max-width: 600px) {
.member__table tbody {
    justify-content: center;
}
.member__table tr {
    width: min(100%, 400px);
}
}



.about__access h3 {
    font-size: 2.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 10px;
}
@media (max-width: 1440px) {
    .about__access h3 {
        font-size: 2.5rem;
    }
}
@media (max-width: 1000px) {
    .about__access h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .about__access h3 {
        font-size: 2rem;
    }
}
.about__access h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #166A54;
}


.page-template-page-about .about__greeting .inner .about__greeting__content .greeting__img__container:has(p:first-child:last-child) {
    justify-content: flex-end;
}
.page-template-page-about .about__greeting .inner .about__greeting__content .greeting__img__container p:first-child {
    text-align: right;
}