@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Zen Kaku Gothic Antique", sans-serif;
    --font-en: "Inter", sans-serif;
    --color-gray: #F2F2F2;
    --color-black: #000000;
    --header-height: 100px;
}
@media (max-width: 1280px) {
    :root {
        --header-height: 70px;
    }
}
@media (max-width: 768px) {
    :root {
        --header-height: 42px;
    }
}

.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;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--color-black);
    background-color: #ffffff;
    font-weight: 500;
    font-family: var(--font-jp);
}
@media (max-width: 768px) {
    html body {
        font-size: 1.4rem;
    }
}
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;
}

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

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

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

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

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    --trigger-height: 24px;
    --trigger-width: var(--header-height);
    display: none;
    width: var(--trigger-width);
    aspect-ratio: 1;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
    background: #fff;
}
@media (max-width: 768px) {
    .menu-trigger {
        --trigger-width: 42px;
    }
}
.menu-trigger span {
    display: inline-block;
    --trigger-bar-width: 30px;
    width: var(--trigger-bar-width);
    height: 1px;
    background-color: var(--color-black);
    position: absolute;
    left: calc(50% - var(--trigger-bar-width) / 2);
    transition-duration: 0.6s;
}
@media (max-width: 768px) {
    .menu-trigger span {
        --trigger-bar-width: 22px;
    }
}
.menu-trigger span:nth-of-type(1) {
    top: calc(50% - 8px);
}
.menu-trigger span:nth-of-type(2) {
    top: calc(50% + 8px);
}
.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;
}
@media (max-width: 1280px) {
    .menu-trigger {
        display: block;
    }
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - 8px);
        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% - 8px);
        transform: rotate(0deg);
    }
}
@keyframes menu-open_03 {
    0% {
        width: var(--trigger-bar-width);
        left: calc(50% - var(--trigger-bar-width) / 2);
    }
    66.6666% {
        width: var(--trigger-bar-width);
        left: calc(50% - var(--trigger-bar-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-bar-width);
        left: calc(50% - var(--trigger-bar-width) / 2);
    }
    70% {
        width: var(--trigger-bar-width);
        left: calc(50% - var(--trigger-bar-width) / 2);
    }
    100% {
        width: var(--trigger-bar-width);
        left: calc(50% - var(--trigger-bar-width) / 2);
    }
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + 8px);
        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% + 8px);
        transform: rotate(0deg);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    padding: 0 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 1500px) {
    header {
        padding: 0 30px;
    }
}
@media (max-width: 1280px) {
    header {
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    header {
        padding: 0 15px;
    }
}
header .header__logo {
    max-height: 100%;
}
header .header__logo img {
    max-height: var(--header-height);
}
@media (max-width: 768px) {
    header .header__logo img {
        max-width: 143px;
    }
}
header .header__menu {
    display: flex;
    font-weight: 700;
    gap: 50px;
}
@media (max-width: 1500px) {
    header .header__menu {
        gap: 30px;
    }
}
@media (max-width: 1280px) {
    header .header__menu {
        display: none;
    }
}
header .header__menu li:hover > a {
    opacity: unset;
    text-decoration: underline;
}
header .header__menu .sub {
    position: relative;
    padding-right: 20px;
}
header .header__menu .sub ul {
    display: none;
    position: absolute;
    min-width: 100%;
    white-space: nowrap;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    background: #fff;
    text-align: center;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    border: 1px solid #000;
}
header .header__menu .sub ul a {
    display: block;
    padding: 5px;
}
header .header__menu .sub:hover ul {
    display: flex;
}
header .header__menu .sub::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 14px;
    aspect-ratio: 14/12;
    background: url(../img/common/triangle_bk.svg) center/contain no-repeat;
}

.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: 50px 20px 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;
        width: 100%;
    }
    .nav .wrapper .nav__menu {
        display: flex;
        flex-direction: column;
    }
    .nav .wrapper .nav__menu > li {
        padding: 20px 0;
        border-bottom: 1px solid #000;
        font-weight: 700;
    }
    .nav .wrapper .nav__menu > li a {
        display: block;
    }
    .nav .wrapper .nav__menu > li.sub > a {
        position: relative;
        padding-right: 20px;
    }
    .nav .wrapper .nav__menu > li.sub > a::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 14px;
        aspect-ratio: 14/12;
        background: url(../img/common/triangle_bk.svg) center/contain no-repeat;
    }
    .nav .wrapper .nav__ig {
        margin-top: 30px;
        display: flex;
        gap: 10px;
        font-weight: 700;
    }
    .nav .wrapper .nav__ig img {
        width: 30px;
    }
}

#mask {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}
#mask.active {
    display: block;
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer .inner {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    footer .inner {
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__left .footer__logo {
        display: block;
        max-width: 206px;
    }
}
footer .inner .footer__left .address {
    font-size: 2rem;
}
@media (max-width: 1280px) {
    footer .inner .footer__left .address {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__left .address {
        text-align: center;
        font-size: 1.4rem;
    }
}
footer .inner .footer__left .tel {
    margin-top: 20px;
}
@media (max-width: 768px) {
    footer .inner .footer__left .tel {
        margin-top: 5px;
    }
}
footer .inner .footer__left .tel a {
    font-size: 3rem;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    footer .inner .footer__left .tel a {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__left .tel a {
        font-size: 2rem;
    }
}
footer .inner .footer__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}
@media (max-width: 768px) {
    footer .inner .footer__right {
        align-items: center;
    }
}
footer .inner .footer__right .footer__menu {
    font-size: 2.2rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    footer .inner .footer__right .footer__menu {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    footer .inner .footer__right .footer__menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        font-size: 1.4rem;
    }
}
footer .inner .footer__right .copyright {
    font-size: 1.4rem;
}
@media (max-width: 768px) {
    footer .inner .footer__right .copyright {
        margin-top: 45px;
        font-size: 1rem;
        text-align: center;
    }
}
footer .footer__bg {
    margin-top: -50px;
    position: relative;
    z-index: -1;
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.lower__header h1 {
    font-size: 9rem;
    font-weight: 700;
    line-height: 1.2;
}
@media (max-width: 1280px) {
    .lower__header h1 {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .lower__header h1 {
        font-size: 3.2rem;
    }
}
.lower__header .h1__en {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2182D5;
    padding-left: 150px;
    position: relative;
}
@media (max-width: 1280px) {
    .lower__header .h1__en {
        font-size: 2.5rem;
        padding-left: 100px;
    }
}
@media (max-width: 768px) {
    .lower__header .h1__en {
        font-size: 1.8rem;
        padding-left: 60px;
    }
}
.lower__header .h1__en::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 120px;
    height: 3px;
    background: #2182D5;
}
@media (max-width: 1280px) {
    .lower__header .h1__en::before {
        width: 80px;
    }
}
@media (max-width: 768px) {
    .lower__header .h1__en::before {
        width: 40px;
        height: 2px;
    }
}
.lower__header .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
    justify-content: flex-end;
}
@media (max-width: 768px) {
    .lower__header .breadcrumb {
        justify-content: flex-start;
        gap: 5px 15px;
    }
}
.lower__header .breadcrumb .this {
    color: #BFBFBF;
}
.lower__header .breadcrumb li:not(:last-child) {
    padding-right: 50px;
    position: relative;
}
.lower__header .breadcrumb li:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    top: 50%;
    right: 0;
    background: #000;
}

.h2__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    line-height: 1.7;
}
@media (max-width: 1280px) {
    .h2__container {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .h2__container {
        gap: 10px;
    }
}
.h2__container h2 {
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .h2__container h2 {
        font-size: 3.4rem;
    }
}
@media (max-width: 768px) {
    .h2__container h2 {
        font-size: 2.4rem;
    }
}
.h2__container .h2__en {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2182D5;
    position: relative;
    padding-left: 85px;
}
@media (max-width: 1280px) {
    .h2__container .h2__en {
        font-size: 1.8rem;
        padding-left: 60px;
    }
}
@media (max-width: 768px) {
    .h2__container .h2__en {
        font-size: 1.6rem;
        padding-left: 35px;
    }
}
.h2__container .h2__en::before {
    content: "";
    position: absolute;
    width: 65px;
    height: 1px;
    top: 50%;
    left: 0;
    background: #707070;
}
@media (max-width: 1280px) {
    .h2__container .h2__en::before {
        width: 35px;
    }
}
@media (max-width: 768px) {
    .h2__container .h2__en::before {
        width: 25px;
    }
}

.top__news .inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
@media (max-width: 1280px) {
    .top__news .inner {
        flex-direction: column;
    }
}
.top__news .inner .top__news__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__left {
        gap: 20px;
        flex-direction: row;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__left {
        gap: 10px;
    }
}
.top__news .inner .top__news__left h2 {
    font-size: 6rem;
    font-weight: 700;
    writing-mode: vertical-rl;
    line-height: 1.2;
    letter-spacing: 0.2em;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__left h2 {
        writing-mode: unset;
        font-size: 4rem;
        letter-spacing: unset;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__left h2 {
        font-size: 2.5rem;
    }
}
.top__news .inner .top__news__left .h2__en {
    font-size: 2.4rem;
    font-family: var(--font-en);
    font-weight: 700;
    position: relative;
    padding-top: 80px;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__left .h2__en {
        font-size: 2rem;
        padding-top: unset;
        padding-left: 50px;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__left .h2__en {
        font-size: 1.2rem;
        padding-left: 35px;
    }
}
.top__news .inner .top__news__left .h2__en::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 50px;
    background: #707070;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__left .h2__en::before {
        height: 1px;
        width: 30px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__left .h2__en::before {
        width: 25px;
    }
}
.top__news .inner .top__news__right {
    max-width: 1100px;
}
.top__news .inner .top__news__right .date {
    width: 80px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .top__news .inner .top__news__right .date {
        font-size: 1rem;
    }
}
.top__news .inner .top__news__right .categories {
    width: 180px;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__right .categories {
        width: 130px;
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__right .categories {
        width: calc(100% - 15px - 80px);
        font-size: 1.2rem;
    }
}
.top__news .inner .top__news__right .picture {
    width: 150px;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__right .picture {
        width: 100px;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__right .picture {
        width: 80px;
    }
}
.top__news .inner .top__news__right .ttl {
    flex: 1 1;
    font-weight: 500;
    font-family: "Zen Kaku Gothic New", sans-serif;
}
.top__news .inner .top__news__right .post__list__header {
    display: flex;
    border-bottom: 1px solid #707070;
    align-items: center;
    gap: 50px;
    padding-bottom: 20px;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__right .post__list__header {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__right .post__list__header {
        display: none;
    }
}
.top__news .inner .top__news__right .post {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(112, 112, 112, 0.32);
    transition: all 0.2s;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__right .post {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__right .post {
        flex-wrap: wrap;
        gap: 5px 15px;
    }
}
.top__news .inner .top__news__right .post::after {
    content: "";
    display: block;
    width: 36px;
    aspect-ratio: 36/8;
    background: url(../img/common/arrow_bk_right.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__right .post::after {
        width: 30px;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__right .post::after {
        width: 24px;
    }
}
.top__news .inner .top__news__right .post:hover {
    opacity: unset;
    border-color: #000;
}
.top__news .inner .top__news__right .post:hover::after {
    transform: scale(1.3);
}
.top__news .inner .top__news__right .post .thumbnail {
    aspect-ratio: 150/90;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.top__news .inner .top__news__right .btn {
    margin-left: auto;
    min-width: 300px;
}
@media (max-width: 768px) {
    .top__news .inner .top__news__right .btn {
        min-width: 50%;
    }
}

.btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 700;
    padding-bottom: 25px;
    border-bottom: 1px solid #707070;
    transition: all 0.2s;
}
@media (max-width: 1280px) {
    .btn {
        padding-bottom: 15px;
    }
}
.btn::after {
    content: "";
    display: block;
    width: 36px;
    aspect-ratio: 36/8;
    background: url(../img/common/arrow_bk_right.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1280px) {
    .btn::after {
        width: 30px;
    }
}
@media (max-width: 768px) {
    .btn::after {
        width: 24px;
    }
}
.btn:hover {
    opacity: unset;
    border-color: #000;
}
.btn:hover::after {
    transform: scale(1.3);
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.page-template-front-page main {
    margin-top: unset;
}
.page-template-front-page .main__visual {
    position: relative;
}
.page-template-front-page .main__visual h1 {
    position: absolute;
    left: 5%;
    bottom: 5%;
    font-size: 7.5rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0px 3px 30px rgba(0, 0, 0, 0.78);
}
@media (max-width: 1280px) {
    .page-template-front-page .main__visual h1 {
        font-size: 5rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .main__visual h1 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__news__bottom__pict {
        padding: 0;
    }
}
.page-template-front-page .top__about h2 {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 768px) {
    .page-template-front-page .top__about h2 {
        gap: 15px;
    }
}
.page-template-front-page .top__about h2::after {
    content: "";
    display: block;
    width: 65px;
    height: 1px;
    background: #707070;
}
@media (max-width: 768px) {
    .page-template-front-page .top__about h2::after {
        width: 30px;
    }
}
.page-template-front-page .top__about h3 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__about h3 {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__about h3 {
        font-size: 2.4rem;
    }
}
.page-template-front-page .top__about p {
    line-height: 2.8;
}
.page-template-front-page .director {
    padding-bottom: 150px;
}
@media (max-width: 1280px) {
    .page-template-front-page .director {
        padding-bottom: 100px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .director {
        padding-bottom: 50px;
    }
}
.page-template-front-page .director .wrapper {
    background: #F8FBFD;
    padding: 0 0 75px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-front-page .director .wrapper {
        padding: 0 0 40px;
    }
}
.page-template-front-page .director .wrapper .left {
    width: 74%;
    display: flex;
    gap: 50px;
    padding-left: 80px;
}
@media (max-width: 1280px) {
    .page-template-front-page .director .wrapper .left {
        gap: 20px;
        padding-left: 40px;
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .director .wrapper .left {
        width: 100%;
        padding: 0 20px;
    }
}
.page-template-front-page .director .wrapper .txt {
    margin-top: 50px;
}
@media (max-width: 1280px) {
    .page-template-front-page .director .wrapper .txt {
        margin-top: unset;
    }
}
.page-template-front-page .director .wrapper h2 {
    margin-top: -30px;
    font-size: 3rem;
    font-weight: 700;
    writing-mode: vertical-rl;
    line-height: 1.2;
    letter-spacing: 0.15em;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-front-page .director .wrapper h2 {
        margin-top: 20px;
        font-size: 2.4rem;
        writing-mode: unset;
        letter-spacing: unset;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .director .wrapper h2 {
        font-size: 1.8rem;
    }
    .page-template-front-page .director .wrapper h2::before {
        content: "";
        position: absolute;
        bottom: -35px;
        right: 0;
        width: 106px;
        aspect-ratio: 106/160;
        background: url(../img/top/profile.webp) center/contain no-repeat;
    }
}
.page-template-front-page .director .wrapper h2 .bg {
    font-size: 6rem;
}
@media (max-width: 1280px) {
    .page-template-front-page .director .wrapper h2 .bg {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .director .wrapper h2 .bg {
        font-size: 3rem;
    }
}
.page-template-front-page .director .wrapper p {
    line-height: 2.7;
}
@media (max-width: 1280px) {
    .page-template-front-page .director .wrapper p {
        line-height: 2.4;
    }
}
.page-template-front-page .director .wrapper .btn {
    min-width: 300px;
}
@media (max-width: 768px) {
    .page-template-front-page .director .wrapper .btn {
        min-width: unset;
        width: 100%;
    }
}
.page-template-front-page .director .wrapper img {
    width: 26%;
    margin-top: -100px;
    position: absolute;
    right: 0;
    bottom: 0;
}
@media (max-width: 768px) {
    .page-template-front-page .director .wrapper img {
        display: none;
    }
}
.page-template-front-page .top__egao__lindbergh {
    max-width: 1920px;
    margin: 0 auto;
}
.page-template-front-page .top__egao__lindbergh.egao {
    background: url(../img/top/top_egao_bg.svg) top right 17%/43% no-repeat;
}
.page-template-front-page .top__egao__lindbergh.lindbergh {
    background: url(../img/top/top_lindbergh_bg.svg) top 5% right 16%/38% no-repeat;
}
.page-template-front-page .top__egao__lindbergh .inner {
    display: flex;
}
@media (max-width: 768px) {
    .page-template-front-page .top__egao__lindbergh .inner {
        flex-wrap: wrap;
        row-gap: 5px;
    }
}
.page-template-front-page .top__egao__lindbergh .inner .img,
.page-template-front-page .top__egao__lindbergh .inner .txt {
    width: 50%;
}
@media (max-width: 768px) {
    .page-template-front-page .top__egao__lindbergh .inner .img,
    .page-template-front-page .top__egao__lindbergh .inner .txt {
        width: 100%;
    }
}
.page-template-front-page .top__egao__lindbergh .inner .img {
    position: relative;
    height: 32.2916666667vw;
    max-height: 620px;
}
@media (max-width: 768px) {
    .page-template-front-page .top__egao__lindbergh .inner .img {
        height: unset;
    }
}
.page-template-front-page .top__egao__lindbergh .inner .img img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    max-width: 960px;
}
@media (max-width: 768px) {
    .page-template-front-page .top__egao__lindbergh .inner .img img {
        width: 100%;
        position: unset;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }
}
.page-template-front-page .top__egao__lindbergh .inner .txt {
    padding-left: 6%;
}
@media (max-width: 768px) {
    .page-template-front-page .top__egao__lindbergh .inner .txt {
        padding-left: unset;
    }
}
.page-template-front-page .top__egao__lindbergh .inner .txt h2 {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 100px;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__egao__lindbergh .inner .txt h2 {
        font-size: 2.6rem;
        margin-top: 60px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__egao__lindbergh .inner .txt h2 {
        font-size: 2rem;
        margin-top: 20px;
    }
}
.page-template-front-page .top__egao__lindbergh .inner .txt .btn {
    font-size: 2.4rem;
    width: 100%;
    margin-top: 130px;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__egao__lindbergh .inner .txt .btn {
        font-size: 1.8rem;
        margin-top: 90px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__egao__lindbergh .inner .txt .btn {
        font-size: 1.6rem;
        margin-top: 30px;
    }
}
.page-template-front-page .top__recruit {
    padding-top: 150px;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__recruit {
        padding-top: 80px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__recruit {
        padding-top: 20px;
    }
}
.page-template-front-page .top__recruit a {
    position: relative;
}
.page-template-front-page .top__recruit a .txt {
    position: absolute;
    top: 30px;
    left: 30px;
    color: #fff;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1400px) {
    .page-template-front-page .top__recruit a .txt {
        top: 20px;
        left: 20px;
        gap: 10px;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .top__recruit a .txt {
        top: 15px;
        left: 15px;
        gap: 5px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__recruit a .txt {
        top: unset;
        bottom: 10px;
    }
}
.page-template-front-page .top__recruit a .txt h2 {
    font-size: 6rem;
    writing-mode: vertical-rl;
    font-weight: inherit;
    letter-spacing: 0.15em;
    line-height: 1.2;
}
@media (max-width: 1400px) {
    .page-template-front-page .top__recruit a .txt h2 {
        font-size: 5rem;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .top__recruit a .txt h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__recruit a .txt h2 {
        font-size: 2.5rem;
        writing-mode: unset;
        letter-spacing: unset;
    }
}
.page-template-front-page .top__recruit a .txt .h2__en {
    font-size: 2.4rem;
    font-family: var(--font-en);
    position: relative;
    padding-top: 80px;
}
@media (max-width: 1400px) {
    .page-template-front-page .top__recruit a .txt .h2__en {
        font-size: 2rem;
        padding-top: 50px;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .top__recruit a .txt .h2__en {
        font-size: 1.8rem;
        padding-top: 35px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__recruit a .txt .h2__en {
        display: none;
    }
}
.page-template-front-page .top__recruit a .txt .h2__en::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 50px;
    background: #fff;
}
@media (max-width: 1400px) {
    .page-template-front-page .top__recruit a .txt .h2__en::before {
        height: 40px;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .top__recruit a .txt .h2__en::before {
        height: 30px;
    }
}
.page-template-front-page .top__bottom__link .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__bottom__link .inner {
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__bottom__link .inner {
        gap: 20px;
    }
}
.page-template-front-page .top__bottom__link .inner a {
    width: 320px;
}
@media (max-width: 1280px) {
    .page-template-front-page .top__bottom__link .inner a {
        width: 220px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .top__bottom__link .inner a {
        width: 130px;
    }
}

/* ------------------------------------- /
/  お知らせ一覧ページ
/* ------------------------------------- */
.page-template-home .lower__header .inner,
.category .lower__header .inner,
.page-template-page-lindbergh_news .lower__header .inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
}
.page-template-home .lower__header .ttl__box,
.category .lower__header .ttl__box,
.page-template-page-lindbergh_news .lower__header .ttl__box {
    display: flex;
    align-items: baseline;
    gap: 50px;
}
@media (max-width: 768px) {
    .page-template-home .lower__header .ttl__box,
    .category .lower__header .ttl__box,
    .page-template-page-lindbergh_news .lower__header .ttl__box {
        gap: 20px;
    }
}
.page-template-home .lower__header .h1__en,
.category .lower__header .h1__en,
.page-template-page-lindbergh_news .lower__header .h1__en {
    color: #0B0B0B;
    padding-left: 85px;
}
@media (max-width: 768px) {
    .page-template-home .lower__header .h1__en,
    .category .lower__header .h1__en,
    .page-template-page-lindbergh_news .lower__header .h1__en {
        padding-left: 65px;
    }
}
.page-template-home .lower__header .h1__en::before,
.category .lower__header .h1__en::before,
.page-template-page-lindbergh_news .lower__header .h1__en::before {
    width: 65px;
    background: #0B0B0B;
}
@media (max-width: 768px) {
    .page-template-home .lower__header .h1__en::before,
    .category .lower__header .h1__en::before,
    .page-template-page-lindbergh_news .lower__header .h1__en::before {
        width: 55px;
    }
}
.page-template-home .home__header .inner,
.category .home__header .inner,
.page-template-page-lindbergh_news .home__header .inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.page-template-home .home__header .inner .ttl__box,
.category .home__header .inner .ttl__box,
.page-template-page-lindbergh_news .home__header .inner .ttl__box {
    display: flex;
    align-items: baseline;
    gap: 50px;
}
.page-template-home .home__header .inner .ttl__box h1,
.category .home__header .inner .ttl__box h1,
.page-template-page-lindbergh_news .home__header .inner .ttl__box h1 {
    font-size: 9rem;
    font-weight: 700;
}
.page-template-home .home__header .inner .ttl__box .h1__en,
.category .home__header .inner .ttl__box .h1__en,
.page-template-page-lindbergh_news .home__header .inner .ttl__box .h1__en {
    font-size: 3rem;
    font-weight: 700;
    padding-left: 80px;
    position: relative;
}
.page-template-home .home__header .inner .ttl__box .h1__en::before,
.category .home__header .inner .ttl__box .h1__en::before,
.page-template-page-lindbergh_news .home__header .inner .ttl__box .h1__en::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 60px;
    height: 1px;
    background: #000;
}
.page-template-home .home__header .inner .breadcrumb,
.category .home__header .inner .breadcrumb,
.page-template-page-lindbergh_news .home__header .inner .breadcrumb {
    display: flex;
    gap: 20px;
    font-weight: 700;
}
.page-template-home .home__header .inner .breadcrumb li.this,
.category .home__header .inner .breadcrumb li.this,
.page-template-page-lindbergh_news .home__header .inner .breadcrumb li.this {
    color: #BFBFBF;
}
.page-template-home .home__header .inner .breadcrumb li:not(:last-child),
.category .home__header .inner .breadcrumb li:not(:last-child),
.page-template-page-lindbergh_news .home__header .inner .breadcrumb li:not(:last-child) {
    position: relative;
    padding-right: 50px;
}
.page-template-home .home__header .inner .breadcrumb li:not(:last-child)::before,
.category .home__header .inner .breadcrumb li:not(:last-child)::before,
.page-template-page-lindbergh_news .home__header .inner .breadcrumb li:not(:last-child)::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background: #000;
}
.page-template-home .category__link .inner,
.category .category__link .inner,
.page-template-page-lindbergh_news .category__link .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
@media (max-width: 768px) {
    .page-template-home .category__link .inner,
    .category .category__link .inner,
    .page-template-page-lindbergh_news .category__link .inner {
        gap: 15px;
    }
}
.page-template-home .category__link .inner .current,
.category .category__link .inner .current,
.page-template-page-lindbergh_news .category__link .inner .current {
    pointer-events: none;
}
.page-template-home .contents .date,
.category .contents .date,
.page-template-page-lindbergh_news .contents .date {
    width: 80px;
}
.page-template-home .contents .category,
.category .contents .category,
.page-template-page-lindbergh_news .contents .category {
    width: 180px;
}
@media (max-width: 768px) {
    .page-template-home .contents .category,
    .category .contents .category,
    .page-template-page-lindbergh_news .contents .category {
        width: calc(100% - 80px - 20px);
    }
}
.page-template-home .contents .picture,
.category .contents .picture,
.page-template-page-lindbergh_news .contents .picture {
    width: 150px;
}
.page-template-home .contents .ttl,
.category .contents .ttl,
.page-template-page-lindbergh_news .contents .ttl {
    flex: 1;
}
.page-template-home .contents .news__header,
.category .contents .news__header,
.page-template-page-lindbergh_news .contents .news__header {
    display: flex;
    gap: 120px;
    border-bottom: 1px solid #707070;
    padding: 20px 0;
}
@media (max-width: 1280px) {
    .page-template-home .contents .news__header,
    .category .contents .news__header,
    .page-template-page-lindbergh_news .contents .news__header {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-home .contents .news__header,
    .category .contents .news__header,
    .page-template-page-lindbergh_news .contents .news__header {
        display: none;
    }
}
.page-template-home .contents .news a,
.category .contents .news a,
.page-template-page-lindbergh_news .contents .news a {
    display: flex;
    align-items: center;
    gap: 120px;
    border-bottom: 1px solid #707070;
    padding: 25px 0;
    position: relative;
    transition: all 0.2s;
}
.page-template-home .contents .news a:hover,
.category .contents .news a:hover,
.page-template-page-lindbergh_news .contents .news a:hover {
    opacity: unset;
    border-color: #000;
}
.page-template-home .contents .news a:hover::after,
.category .contents .news a:hover::after,
.page-template-page-lindbergh_news .contents .news a:hover::after {
    transform: scale(1.3);
}
@media (max-width: 1280px) {
    .page-template-home .contents .news a,
    .category .contents .news a,
    .page-template-page-lindbergh_news .contents .news a {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-home .contents .news a,
    .category .contents .news a,
    .page-template-page-lindbergh_news .contents .news a {
        flex-wrap: wrap;
    }
}
.page-template-home .contents .news a::after,
.category .contents .news a::after,
.page-template-page-lindbergh_news .contents .news a::after {
    content: "";
    display: block;
    width: 36px;
    aspect-ratio: 36/8;
    background: url(../img/common/arrow_bk_right.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 768px) {
    .page-template-home .contents .news a::after,
    .category .contents .news a::after,
    .page-template-page-lindbergh_news .contents .news a::after {
        width: 30px;
    }
}
.page-template-home .contents .news a .thumbnail,
.category .contents .news a .thumbnail,
.page-template-page-lindbergh_news .contents .news a .thumbnail {
    width: 150px;
    aspect-ratio: 150/90;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 768px) {
    .page-template-home .contents .news a .thumbnail,
    .category .contents .news a .thumbnail,
    .page-template-page-lindbergh_news .contents .news a .thumbnail {
        width: 110px;
    }
}
.page-template-home .pagination .pagination-list,
.category .pagination .pagination-list,
.page-template-page-lindbergh_news .pagination .pagination-list {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    font-size: 2.4rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-home .pagination .pagination-list,
    .category .pagination .pagination-list,
    .page-template-page-lindbergh_news .pagination .pagination-list {
        font-size: 2rem;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-home .pagination .pagination-list,
    .category .pagination .pagination-list,
    .page-template-page-lindbergh_news .pagination .pagination-list {
        font-size: 1.8rem;
        gap: 30px;
    }
}
.page-template-home .pagination .pagination-list .next,
.category .pagination .pagination-list .next,
.page-template-page-lindbergh_news .pagination .pagination-list .next {
    width: 36px;
    aspect-ratio: 1;
    background: url(../img/common/arrow_bk_right.svg) center/contain no-repeat;
}
.page-template-home .pagination .pagination-list .next a,
.category .pagination .pagination-list .next a,
.page-template-page-lindbergh_news .pagination .pagination-list .next a {
    display: block;
    width: 100%;
    height: 100%;
}
.page-template-home .pagination .pagination-list .previous,
.category .pagination .pagination-list .previous,
.page-template-page-lindbergh_news .pagination .pagination-list .previous {
    width: 36px;
    aspect-ratio: 1;
    background: url(../img/common/arrow_bk_right.svg) center/contain no-repeat;
    transform: rotate(180deg);
}
.page-template-home .pagination .pagination-list .previous a,
.category .pagination .pagination-list .previous a,
.page-template-page-lindbergh_news .pagination .pagination-list .previous a {
    display: block;
    width: 100%;
    height: 100%;
}
.page-template-home .pagination .pagination-list .current,
.category .pagination .pagination-list .current,
.page-template-page-lindbergh_news .pagination .pagination-list .current {
    border-bottom: 1px solid #707070;
}

/* ------------------------------------- /
/  お知らせ単体ページ
/* ------------------------------------- */
.single-post .breadcrumb li:nth-child(2) {
    color: #BFBFBF;
}
.single-post .post h1 {
    font-size: 4.6rem;
    font-weight: 700;
    border-bottom: 1px solid #707070;
    padding-bottom: 40px;
}
@media (max-width: 1280px) {
    .single-post .post h1 {
        font-size: 3.2rem;
        padding-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .single-post .post h1 {
        font-size: 2.2rem;
        padding-bottom: 15px;
    }
}
.single-post .post .post__header {
    display: flex;
    font-weight: 700;
    gap: 50px;
}
@media (max-width: 1280px) {
    .single-post .post .post__header {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .single-post .post .post__header {
        gap: 20px;
    }
}
.single-post .post .post__header .category {
    display: flex;
}
.single-post .post .thumbnail {
    max-width: 1000px;
    margin: 0 auto;
}
.single-post .post .post__detail figure {
    max-width: 1000px;
    margin: 120px auto;
}
@media (max-width: 1280px) {
    .single-post .post .post__detail figure {
        margin: 60px auto;
    }
}
@media (max-width: 768px) {
    .single-post .post .post__detail figure {
        margin: 30px auto;
    }
}
.single-post .post .post__detail h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    display: flex;
    align-items: baseline;
    gap: 19px;
}
@media (max-width: 1280px) {
    .single-post .post .post__detail h2 {
        font-size: 2.6rem;
        gap: 15px;
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .single-post .post .post__detail h2 {
        font-size: 2rem;
        gap: 10px;
        margin-bottom: 20px;
    }
}
.single-post .post .post__detail h2::before {
    content: "";
    display: block;
    width: 31px;
    aspect-ratio: 31/27;
    background: url(../img/common/h2.svg) center/contain no-repeat;
    flex-shrink: 0;
}
@media (max-width: 1280px) {
    .single-post .post .post__detail h2::before {
        width: 24px;
    }
}
@media (max-width: 768px) {
    .single-post .post .post__detail h2::before {
        width: 20px;
    }
}
.single-post .post .post__detail h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}
@media (max-width: 1280px) {
    .single-post .post .post__detail h3 {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .single-post .post .post__detail h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
}
.single-post .post .post__detail h4 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}
@media (max-width: 1280px) {
    .single-post .post .post__detail h4 {
        font-size: 1.9rem;
        margin-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .single-post .post .post__detail h4 {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }
}
.single-post .post .post__detail p {
    margin-bottom: 90px;
    line-height: 2.8;
}
@media (max-width: 1280px) {
    .single-post .post .post__detail p {
        margin-bottom: 50px;
    }
}
@media (max-width: 768px) {
    .single-post .post .post__detail p {
        margin-bottom: 25px;
        line-height: 2;
    }
}
.single-post .post .post__detail hr {
    margin-bottom: 90px;
    border-top: 1px solid #707070;
}
@media (max-width: 1280px) {
    .single-post .post .post__detail hr {
        margin-bottom: 50px;
    }
}
@media (max-width: 768px) {
    .single-post .post .post__detail hr {
        margin-bottom: 25px;
    }
}

/* ------------------------------------- /
/  メッセージ
/* ------------------------------------- */
.page-template-page-message .header__img {
    margin-left: auto;
    max-width: 1660px;
    width: 94%;
}
@media (max-width: 768px) {
    .page-template-page-message .header__img {
        width: 96%;
    }
}
.page-template-page-message .message__contents {
    line-height: 2.8;
}
@media (max-width: 768px) {
    .page-template-page-message .message__contents {
        line-height: 2;
    }
}
.page-template-page-message .message__contents .h2__en {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2182D5;
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    .page-template-page-message .message__contents .h2__en {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-message .message__contents .h2__en {
        font-size: 1.6rem;
    }
}
.page-template-page-message .message__contents h2 {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.9;
}
@media (max-width: 1280px) {
    .page-template-page-message .message__contents h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-message .message__contents h2 {
        font-size: 2rem;
    }
}
.page-template-page-message .message__contents .sign {
    width: 50%;
    margin-left: auto;
}
@media (max-width: 768px) {
    .page-template-page-message .message__contents .sign {
        width: 100%;
    }
}

/* ------------------------------------- /
/  会社概要
/* ------------------------------------- */
.page-template-page-company .company__contents dl {
    display: flex;
    padding: 40px 0;
    border-bottom: 1px solid #707070;
}
@media (max-width: 1280px) {
    .page-template-page-company .company__contents dl {
        padding: 30px 0;
    }
}
.page-template-page-company .company__contents dl dt {
    width: 180px;
}
@media (max-width: 1280px) {
    .page-template-page-company .company__contents dl dt {
        width: 120px;
    }
}
@media (max-width: 768px) {
    .page-template-page-company .company__contents dl dt {
        width: 80px;
    }
}
.page-template-page-company .company__contents dl dd {
    flex: 1;
}
.page-template-page-company .company__bottom__link .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 40px;
}
@media (max-width: 1280px) {
    .page-template-page-company .company__bottom__link .inner {
        gap: 15px 20px;
    }
}
.page-template-page-company .company__bottom__link .inner a {
    font-size: 2.4rem;
    font-weight: 700;
    padding: 40px;
    border-bottom: 1px solid #707070;
    width: calc((100% - 40px) / 2);
    position: relative;
    transition: all 0.2s;
}
.page-template-page-company .company__bottom__link .inner a:hover {
    opacity: unset;
    border-color: #000;
}
.page-template-page-company .company__bottom__link .inner a:hover::before {
    transform: translateY(-50%) scale(1.3);
}
@media (max-width: 1280px) {
    .page-template-page-company .company__bottom__link .inner a {
        font-size: 1.8rem;
        padding: 20px 0;
        width: calc((100% - 20px) / 2);
    }
}
@media (max-width: 768px) {
    .page-template-page-company .company__bottom__link .inner a {
        width: 100%;
        padding: 15px 0;
    }
}
.page-template-page-company .company__bottom__link .inner a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    width: 36px;
    aspect-ratio: 36/8;
    transform: translateY(-50%);
    background: url(../img/common/arrow_bk_right.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1280px) {
    .page-template-page-company .company__bottom__link .inner a::before {
        right: 0;
        width: 30px;
    }
}

/* ------------------------------------- /
/  プライバシーポリシー
/* ------------------------------------- */
.page-template-page-privacy .privacy__contents {
    line-height: 2.8;
}
@media (max-width: 768px) {
    .page-template-page-privacy .privacy__contents {
        line-height: 2;
    }
}

/* ------------------------------------- /
/  採用情報
/* ------------------------------------- */
.page-template-page-recruit main {
    margin-top: unset;
}
.page-template-page-recruit .recruit__mv__wrapper {
    position: relative;
}
.page-template-page-recruit .recruit__mv__wrapper .txt {
    position: absolute;
    left: 8%;
    bottom: 15%;
    color: #fff;
    text-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__mv__wrapper .txt {
        bottom: 5%;
        left: 3%;
    }
}
.page-template-page-recruit .recruit__mv__wrapper .txt .h1__en {
    color: inherit;
}
.page-template-page-recruit .recruit__mv__wrapper .txt .h1__en::before {
    background: #fff;
}
.page-template-page-recruit .recruit__contents .h2__container {
    align-items: flex-end;
}
.page-template-page-recruit .recruit__contents .h2__container .h2__en {
    margin-bottom: 8px;
}
.page-template-page-recruit .recruit__contents .container {
    display: flex;
    line-height: 2.8;
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__contents .container {
        flex-wrap: wrap;
        row-gap: 30px;
        line-height: 2;
    }
}
.page-template-page-recruit .recruit__contents .container .txt, .page-template-page-recruit .recruit__contents .container .img {
    width: 50%;
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__contents .container .txt, .page-template-page-recruit .recruit__contents .container .img {
        width: 100%;
    }
}
.page-template-page-recruit .recruit__contents .container .txt {
    padding-right: 3%;
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__contents .container .txt {
        padding-right: unset;
    }
}
.page-template-page-recruit .recruit__contents .recruit__color__box__container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 25px;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit__contents .recruit__color__box__container {
        gap: 20px 15px;
    }
}
.page-template-page-recruit .recruit__contents .recruit__color__box__container > div {
    width: calc((100% - 50px) / 3);
    background: #F8FBFD;
    padding: 85px 45px;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit__contents .recruit__color__box__container > div {
        width: calc((100% - 15px) / 2);
        padding: 50px 25px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__contents .recruit__color__box__container > div {
        padding: 30px 15px;
        width: 100%;
    }
}
.page-template-page-recruit .recruit__contents .recruit__color__box__container > div:nth-child(2) {
    background: #FFFAF7;
}
.page-template-page-recruit .recruit__contents .recruit__color__box__container > div:nth-child(3) {
    background: #F5FDF0;
}
.page-template-page-recruit .recruit__contents .recruit__color__box__container > div:nth-child(4) {
    background: #FDF8FB;
}
.page-template-page-recruit .recruit__contents .recruit__color__box__container > div:nth-child(5) {
    background: #FDFDF0;
}
.page-template-page-recruit .recruit__contents .recruit__color__box__container > div:nth-child(6) {
    background: #FAF8FF;
}
.page-template-page-recruit .recruit__contents .recruit__color__box__container > div h3 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit__contents .recruit__color__box__container > div h3 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__contents .recruit__color__box__container > div h3 {
        font-size: 2rem;
    }
}
.page-template-page-recruit .recruit__contents .voice__box {
    padding: 85px;
    background: #FFFAF7;
    line-height: 1.8;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit__contents .voice__box {
        padding: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__contents .voice__box {
        padding: 20px;
    }
}
.page-template-page-recruit .recruit__contents .voice__box.green {
    background: #F5FDF0;
}
.page-template-page-recruit .recruit__contents .voice__box.blue {
    background: #F8FBFD;
}
.page-template-page-recruit .recruit__contents .voice__box .txt__bold {
    font-size: 2rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit__contents .voice__box .txt__bold {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__contents .voice__box .txt__bold {
        font-size: 1.6rem;
    }
}
.page-template-page-recruit .recruit__contents .voice__box .txt__img__container {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1000px) {
    .page-template-page-recruit .recruit__contents .voice__box .txt__img__container {
        flex-direction: column;
        row-gap: 30px;
        margin-bottom: 30px;
    }
}
.page-template-page-recruit .recruit__contents .voice__box .txt__img__container .txt {
    padding-right: 10px;
}
@media (max-width: 1000px) {
    .page-template-page-recruit .recruit__contents .voice__box .txt__img__container .txt {
        padding-right: 0;
    }
}
.page-template-page-recruit .recruit__contents .voice__box .txt__img__container .txt h3 {
    font-size: 2.4rem;
    font-weight: 500;
}
@media (max-width: 1280px) {
    .page-template-page-recruit .recruit__contents .voice__box .txt__img__container .txt h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-recruit .recruit__contents .voice__box .txt__img__container .txt h3 {
        font-size: 1.8rem;
    }
}
.page-template-page-recruit .recruit__contents .voice__box .txt__img__container .img {
    max-width: 300px;
}
@media (max-width: 1000px) {
    .page-template-page-recruit .recruit__contents .voice__box .txt__img__container .img {
        max-width: unset;
    }
}

/* ------------------------------------- /
/  リンドバーグ
/* ------------------------------------- */
.page-template-page-lindbergh main {
    margin-top: unset;
}
.page-template-page-lindbergh .lindbergh__mv__wrapper {
    position: relative;
}
.page-template-page-lindbergh .lindbergh__mv__wrapper img {
    min-height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left center;
       object-position: left center;
}
.page-template-page-lindbergh .lindbergh__mv__wrapper .txt {
    position: absolute;
    left: 6%;
    bottom: 10%;
}
@media (max-width: 768px) {
    .page-template-page-lindbergh .lindbergh__mv__wrapper .txt {
        left: 2%;
        bottom: 3%;
    }
}
.page-template-page-lindbergh .lindbergh__mv__wrapper .txt h1 {
    color: #fff;
    text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.8);
    font-size: 4.6rem;
    line-height: 1.4;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh .lindbergh__mv__wrapper .txt h1 {
        font-size: 3.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh .lindbergh__mv__wrapper .txt h1 {
        font-size: 2rem;
    }
}
.page-template-page-lindbergh .lindbergh__txt {
    line-height: 2.8;
}
@media (max-width: 768px) {
    .page-template-page-lindbergh .lindbergh__txt {
        line-height: 2;
    }
}
.page-template-page-lindbergh .lindbergh__link .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 60px;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh .lindbergh__link .inner {
        gap: 50px 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh .lindbergh__link .inner {
        gap: 30px 10px;
    }
}
.page-template-page-lindbergh .lindbergh__link .inner > a {
    width: calc((100% - 60px) / 2);
    font-size: 3.5rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh .lindbergh__link .inner > a {
        width: calc((100% - 20px) / 2);
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh .lindbergh__link .inner > a {
        width: calc((100% - 10px) / 2);
        font-size: 1.7rem;
    }
}
.page-template-page-lindbergh .lindbergh__bottom__link .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0 40px;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh .lindbergh__bottom__link .inner {
        gap: 0 20px;
    }
}
.page-template-page-lindbergh .lindbergh__bottom__link .inner > a {
    width: calc((100% - 40px) / 2);
    padding: 70px 60px;
    font-size: 2.4rem;
    font-weight: 700;
    border-bottom: 1px solid #707070;
    position: relative;
    transition: all 0.2s;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh .lindbergh__bottom__link .inner > a {
        width: calc((100% - 20px) / 2);
        padding: 40px 0;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh .lindbergh__bottom__link .inner > a {
        width: 100%;
        padding: 20px 0;
        font-size: 1.8rem;
    }
}
.page-template-page-lindbergh .lindbergh__bottom__link .inner > a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 50px;
    width: 36px;
    aspect-ratio: 36/8;
    background: url(../img/common/arrow_bk_right.svg) center/contain no-repeat;
    transition: inherit;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh .lindbergh__bottom__link .inner > a::before {
        right: 0;
        width: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh .lindbergh__bottom__link .inner > a::before {
        width: 24px;
    }
}
.page-template-page-lindbergh .lindbergh__bottom__link .inner > a:hover {
    opacity: unset;
}
.page-template-page-lindbergh .lindbergh__bottom__link .inner > a:hover::before {
    transform: translateY(-50%) scale(1.3);
}
.page-template-page-lindbergh .lindbergh__bottom__link .inner > a:nth-child(1), .page-template-page-lindbergh .lindbergh__bottom__link .inner > a:nth-child(2) {
    border-top: 1px solid #707070;
}
@media (max-width: 768px) {
    .page-template-page-lindbergh .lindbergh__bottom__link .inner > a:nth-child(2) {
        border-top: none;
    }
}

/* ------------------------------------- /
/  リンドバーグについて
/* ------------------------------------- */
.page-template-page-lindbergh_about .header__img {
    margin-left: auto;
    max-width: 1660px;
    width: 94%;
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .header__img {
        width: 96%;
    }
}
.page-template-page-lindbergh_about .about__link .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 40px;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .about__link .inner {
        gap: 15px 20px;
    }
}
.page-template-page-lindbergh_about .about__link .inner > a {
    width: calc((100% - 40px) / 2);
    border-bottom: 1px solid #707070;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 40px 60px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .about__link .inner > a {
        width: calc((100% - 20px) / 2);
        font-size: 2rem;
        padding: 20px 10px;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .about__link .inner > a {
        width: 100%;
        font-size: 1.8rem;
        padding: 15px 0;
    }
}
.page-template-page-lindbergh_about .about__link .inner > a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 8px;
    aspect-ratio: 8/36;
    background: url(../img/common/arrow_bk_down.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .about__link .inner > a::before {
        right: 10px;
        width: 6px;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .about__link .inner > a::before {
        right: 0;
        width: 5px;
    }
}
.page-template-page-lindbergh_about .about__txt__img__container .inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .about__txt__img__container .inner {
        gap: 30px;
    }
}
.page-template-page-lindbergh_about .about__txt__img__container .inner:nth-child(2n) {
    flex-direction: row-reverse;
}
.page-template-page-lindbergh_about .about__txt__img__container .inner:nth-child(2n) .img {
    padding: 0 4% 0 0;
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .about__txt__img__container .inner:nth-child(n) {
        flex-direction: column;
    }
    .page-template-page-lindbergh_about .about__txt__img__container .inner:nth-child(n) .img {
        padding: 0;
    }
}
.page-template-page-lindbergh_about .about__txt__img__container .inner .txt, .page-template-page-lindbergh_about .about__txt__img__container .inner .img {
    width: calc((100% - 60px) / 2);
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .about__txt__img__container .inner .txt, .page-template-page-lindbergh_about .about__txt__img__container .inner .img {
        width: calc((100% - 30px) / 2);
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .about__txt__img__container .inner .txt, .page-template-page-lindbergh_about .about__txt__img__container .inner .img {
        width: 100%;
    }
}
.page-template-page-lindbergh_about .about__txt__img__container .inner .txt {
    line-height: 2.8;
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .about__txt__img__container .inner .txt {
        line-height: 2;
    }
}
.page-template-page-lindbergh_about .about__txt__img__container .inner .txt h2 {
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .about__txt__img__container .inner .txt h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .about__txt__img__container .inner .txt h2 {
        font-size: 2.2rem;
    }
}
.page-template-page-lindbergh_about .about__txt__img__container .inner .img {
    padding: 0 0 0 4%;
}
.page-template-page-lindbergh_about .about__important h2 {
    font-size: 4.6rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .about__important h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .about__important h2 {
        font-size: 2.4rem;
    }
}
.page-template-page-lindbergh_about .about__important .container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .about__important .container {
        gap: 15px;
    }
}
.page-template-page-lindbergh_about .about__important .container .box {
    width: calc((100% - 50px) / 3);
    border: 5px solid;
    padding: 60px 60px 100px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .about__important .container .box {
        padding: 40px 30px 40px;
        width: calc((100% - 15px) / 2);
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .about__important .container .box {
        padding: 30px 15px;
        width: 100%;
    }
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(1) {
    border-color: #EF6666;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 30%;
    aspect-ratio: 43/105;
    background: url(../img/lindbergh_about/num_1.svg) center/contain no-repeat;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(1) h3 {
    color: #EF6666;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(2) {
    border-color: #2282D5;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 30%;
    aspect-ratio: 59/106;
    background: url(../img/lindbergh_about/num_2.svg) center/contain no-repeat;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(2) h3 {
    color: #2282D5;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(3) {
    border-color: #EAAA32;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(3)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 30%;
    aspect-ratio: 62/108;
    background: url(../img/lindbergh_about/num_3.svg) center/contain no-repeat;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(3) h3 {
    color: #EAAA32;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(4) {
    border-color: #D677D3;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(4)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 30%;
    aspect-ratio: 71/105;
    background: url(../img/lindbergh_about/num_4.svg) center/contain no-repeat;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(4) h3 {
    color: #D677D3;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(5) {
    border-color: #ACE330;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(5)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 30%;
    aspect-ratio: 63/106;
    background: url(../img/lindbergh_about/num_5.svg) center/contain no-repeat;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(5) h3 {
    color: #ACE330;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(6) {
    border-color: #6A53CC;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(6)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 30%;
    aspect-ratio: 62/108;
    background: url(../img/lindbergh_about/num_6.svg) center/contain no-repeat;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(6) h3 {
    color: #6A53CC;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(7) {
    border-color: #A55ACC;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(7)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 30%;
    aspect-ratio: 59/105;
    background: url(../img/lindbergh_about/num_7.svg) center/contain no-repeat;
}
.page-template-page-lindbergh_about .about__important .container .box:nth-child(7) h3 {
    color: #A55ACC;
}
.page-template-page-lindbergh_about .about__important .container .box h3 {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    padding: 0 20px;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .about__important .container .box h3 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .about__important .container .box h3 {
        font-size: 2rem;
    }
}
.page-template-page-lindbergh_about .about__important .container .box p {
    margin-top: 50px;
    line-height: 1.9;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .about__important .container .box p {
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .about__important .container .box p {
        margin-top: 20px;
    }
}
.page-template-page-lindbergh_about .flow h3 {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .flow h3 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .flow h3 {
        font-size: 2rem;
    }
}
.page-template-page-lindbergh_about .flow .container {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    padding: 0 50px;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .flow .container {
        padding: 0 30px;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .flow .container {
        flex-direction: column;
    }
}
.page-template-page-lindbergh_about .flow .container .txt {
    width: 600px;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .flow .container .txt {
        width: 500px;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .flow .container .txt {
        width: 100%;
    }
}
.page-template-page-lindbergh_about .flow .container .txt dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.page-template-page-lindbergh_about .flow .container .txt dl dt {
    width: 130px;
    font-size: 2.4rem;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .flow .container .txt dl dt {
        width: 100px;
        font-size: 2rem;
    }
}
.page-template-page-lindbergh_about .flow .container .txt dl dd {
    width: calc(100% - 130px);
    padding: 15px 0 15px 40px;
    position: relative;
    height: 120px;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .flow .container .txt dl dd {
        width: calc(100% - 100px);
        padding: 15px 0 15px 20px;
        height: 100px;
    }
}
.page-template-page-lindbergh_about .flow .container .txt dl dd:not(:last-child)::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    left: 0;
    top: 50%;
    background: #2182D5;
}
.page-template-page-lindbergh_about .flow .container .txt dl dd::after {
    content: "";
    position: absolute;
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #2182D5;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
}
.page-template-page-lindbergh_about .flow .container .txt dl dd .box {
    height: 100%;
    color: #fff;
    background: #4E96D5;
    border-radius: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-template-page-lindbergh_about .flow .container .txt dl dd .box.ye {
    color: #000;
    background: #F7E136;
}
.page-template-page-lindbergh_about .flow .container .img {
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: calc((100% - 160px - 600px) / 2);
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .flow .container .img {
        max-width: calc(100% - 30px - 500px);
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .flow .container .img {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
    }
    .page-template-page-lindbergh_about .flow .container .img img {
        width: calc((100% - 20px) / 2);
    }
}
.page-template-page-lindbergh_about .schedule .inner {
    position: relative;
}
.page-template-page-lindbergh_about .schedule .inner .img__1 {
    position: absolute;
    top: 22%;
    left: 2%;
    width: 19%;
    z-index: 1;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .schedule .inner .img__1 {
        display: none;
    }
}
.page-template-page-lindbergh_about .schedule .inner .img__2 {
    position: absolute;
    top: 45%;
    right: 1%;
    width: 23%;
    z-index: 1;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .schedule .inner .img__2 {
        display: none;
    }
}
.page-template-page-lindbergh_about .schedule .inner .img__3 {
    position: absolute;
    top: 65%;
    left: 1%;
    width: 16%;
    z-index: 1;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .schedule .inner .img__3 {
        display: none;
    }
}
.page-template-page-lindbergh_about .schedule .month__container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .schedule .month__container {
        gap: 15px;
    }
}
.page-template-page-lindbergh_about .schedule .month__container .month {
    border: 5px solid #ED6666;
    width: calc((100% - 60px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .schedule .month__container .month {
        padding: 30px 40px;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .schedule .month__container .month {
        width: calc((100% - 15px) / 2);
        padding: 20px;
    }
}
.page-template-page-lindbergh_about .schedule .month__container .month.gr {
    border-color: #ABE42F;
}
.page-template-page-lindbergh_about .schedule .month__container .month.bl {
    border-color: #2282D5;
}
.page-template-page-lindbergh_about .schedule .month__container .month.or {
    border-color: #EAAA32;
}
.page-template-page-lindbergh_about .schedule .month__container .month h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #D677D3;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .schedule .month__container .month h3 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .schedule .month__container .month h3 {
        font-size: 2rem;
    }
}
.page-template-page-lindbergh_about .schedule .month__container .month h3.bl {
    color: #2282D5;
}
.page-template-page-lindbergh_about .schedule .month__container .month h3.pl {
    color: #6A53CC;
}
.page-template-page-lindbergh_about .schedule .month__container .month h3.pp {
    color: #A55ACC;
}
.page-template-page-lindbergh_about .schedule .img__wrapper {
    display: none;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .schedule .img__wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5%;
    }
    .page-template-page-lindbergh_about .schedule .img__wrapper img {
        width: 30%;
    }
}
.page-template-page-lindbergh_about .information h3 {
    font-size: 3.5rem;
    font-weight: 700;
    border-bottom: 1px solid #000;
    padding-bottom: 25px;
}
@media (max-width: 1280px) {
    .page-template-page-lindbergh_about .information h3 {
        font-size: 2.8rem;
        padding-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .information h3 {
        font-size: 2rem;
        padding-bottom: 10px;
    }
}
.page-template-page-lindbergh_about .information .txt__wrapper {
    padding: 50px 0;
    border-bottom: 1px solid color-mix(in srgb, #707070 32%, transparent);
    line-height: 2.8;
}
@media (max-width: 768px) {
    .page-template-page-lindbergh_about .information .txt__wrapper {
        line-height: 2;
    }
}/*# sourceMappingURL=style.css.map */