@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Noto Sans JP", sans-serif;
    --font-en: "Inter", sans-serif;
    --font-sm: "Shippori Mincho", serif;
    --color-black: #231815;
    --color-orange: #ea5504;
    --color-yellow: #fac03d;
    --header-height: 60px;
}
@media (max-width: 768px) {
    :root {
        --header-height: 40px;
    }
}

.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%;
    font-feature-settings: "palt";
    -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-family: var(--font-jp);
}
@media (max-width: 950px) {
    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 {
    padding: 0 min(7%, 94.5px);
    max-width: 1350px;
    margin: 0 auto;
}
@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;
    }
}

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

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

.grecaptcha-badge {
    visibility: hidden;
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    padding: 0 min(30px, 3%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #f08300;
    font-weight: 700;
    font-size: 1.2rem;
}
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    opacity: 0.5;
    z-index: -1;
}
header .header__logo {
    max-width: 226px;
}
@media (max-width: 950px) {
    header .header__logo {
        max-width: 180px;
    }
}
@media (max-width: 768px) {
    header .header__logo {
        max-width: 160px;
    }
}
header .header__menu {
    display: flex;
    align-items: center;
    gap: 35px;
}
@media (max-width: 950px) {
    header .header__menu {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    header .header__menu {
        display: none;
    }
}
header .header__menu .header__sns {
    display: flex;
    gap: 15px;
}
@media (max-width: 950px) {
    header .header__menu .header__sns {
        gap: 10px;
    }
}
header .header__menu .header__sns img {
    width: 30px;
}
@media (max-width: 950px) {
    header .header__menu .header__sns img {
        width: 20px;
    }
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    --trigger-wrapper-width: 30px;
    --trigger-wrapper-height: 20px;
    --trigger-width: 24px;
    --trigger-gap: 6px;
    display: none;
    width: var(--trigger-wrapper-width);
    height: var(--trigger-wrapper-height);
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: calc((var(--header-height) - var(--trigger-wrapper-height)) / 2);
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
}
@media (max-width: 768px) {
    .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);
    }
}

.nav {
    display: none;
}
@media (max-width: 768px) {
    .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: 80px 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__sp__logo {
        display: block;
        max-width: 200px;
        margin: 0 auto;
    }
    .nav .wrapper .nav__menu {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
    }
    .nav .wrapper .nav__menu li {
        width: 100%;
        padding: 10px 0;
        text-align: center;
    }
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    margin: 0 auto;
    background: var(--color-orange);
    color: #fff;
}
footer .footer__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
}
@media (max-width: 950px) {
    footer .footer__container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
footer .footer__container .footer__1 {
    border-left: 5px solid #fff;
    padding-left: 10px;
    line-height: 1.2;
}
footer .footer__container .footer__1 h2 {
    font-size: 2.6rem;
    font-weight: 900;
}
@media (max-width: 950px) {
    footer .footer__container .footer__1 h2 {
        font-size: 1.8rem;
    }
}
footer .footer__container .footer__1 .h2__en {
    font-size: 3rem;
    font-weight: 500;
    font-family: var(--font-en);
}
@media (max-width: 950px) {
    footer .footer__container .footer__1 .h2__en {
        font-size: 2.1rem;
    }
}
footer .footer__container .footer__2 {
    display: flex;
    align-items: flex-start;
    font-size: 1.2rem;
    gap: 10px;
    font-weight: 300;
    line-height: 1.5;
}
@media (max-width: 950px) {
    footer .footer__container .footer__2 {
        font-size: 1.1rem;
    }
}
footer .footer__container .footer__2 .circle {
    background: var(--color-yellow);
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-orange);
    line-height: 1.2;
    text-align: center;
    font-weight: 500;
}
footer .footer__back {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    font-size: 1.4rem;
    font-weight: 300;
}
@media (max-width: 950px) {
    footer .footer__back {
        font-size: 1.2rem;
    }
}

.footer__copyright {
    padding: 15px 0;
    color: var(--color-orange);
    text-align: center;
    font-size: 1rem;
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.lower__ttl {
    color: var(--color-orange);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.2;
}
@media (max-width: 950px) {
    .lower__ttl {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .lower__ttl {
        font-size: 2.2rem;
    }
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.page-template-front-page main {
    margin-top: unset;
}
.page-template-front-page .mv {
    background: #ffe9a9;
    padding-bottom: 30px;
}
@media (max-width: 950px) {
    .page-template-front-page .mv {
        padding-bottom: 25px;
    }
}
.page-template-front-page .mv .h1 {
    position: relative;
}
@media (max-width: 768px) {
    .page-template-front-page .mv .h1 {
        padding-bottom: 60px;
    }
}
@media (max-width: 500px) {
    .page-template-front-page .mv .h1 {
        padding-bottom: 80px;
    }
}
.page-template-front-page .mv .h1 .mv__img {
    aspect-ratio: 375/269;
}
.page-template-front-page .mv .h1 .mv__abs {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    margin-bottom: 10px;
}
.page-template-front-page .mv .h1 .mv__abs .mv__h2 {
    text-align: right;
    line-height: 1.2;
    border-right: 5px solid var(--color-orange);
    padding-right: 10px;
}
@media (max-width: 768px) {
    .page-template-front-page .mv .h1 .mv__abs .mv__h2 {
        border-right-width: 3px;
        padding-right: 6px;
    }
}
.page-template-front-page .mv .h1 .mv__abs .mv__h2 h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--color-orange);
}
@media (max-width: 950px) {
    .page-template-front-page .mv .h1 .mv__abs .mv__h2 h2 {
        font-size: 2.1rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .h1 .mv__abs .mv__h2 h2 {
        font-size: 1.9rem;
    }
}
.page-template-front-page .mv .h1 .mv__abs .mv__h2 .h2__en {
    color: var(--color-yellow);
    font-size: 3rem;
    font-family: var(--font-en);
    font-weight: 500;
}
@media (max-width: 950px) {
    .page-template-front-page .mv .h1 .mv__abs .mv__h2 .h2__en {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .h1 .mv__abs .mv__h2 .h2__en {
        font-size: 2.2rem;
    }
}
.page-template-front-page .mv .h1 .mv__abs .subete {
    margin-left: auto;
    margin-top: 15px;
    max-width: 450px;
}
@media (max-width: 950px) {
    .page-template-front-page .mv .h1 .mv__abs .subete {
        margin-top: 5px;
        max-width: 360px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .h1 .mv__abs .subete {
        max-width: 325px;
    }
}
@media (max-width: 500px) {
    .page-template-front-page .mv .h1 .mv__abs .subete {
        margin-left: auto;
        width: calc(min(100%, 325px) - 20px);
    }
}
.page-template-front-page .mv .mv__message {
    padding-top: 20px;
    font-family: var(--font-sm);
    font-weight: 700;
}
@media (max-width: 950px) {
    .page-template-front-page .mv .mv__message {
        padding-top: 15px;
    }
}
.page-template-front-page .mv .mv__message p {
    margin-bottom: 20px;
}
@media (max-width: 950px) {
    .page-template-front-page .mv .mv__message p {
        margin-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .mv__message p {
        margin-bottom: 10px;
    }
}
.page-template-front-page .mv .mv__message p:last-child {
    margin-bottom: unset;
}
.page-template-front-page .mv .mv__sign {
    width: min(180px, 100%);
    margin-left: auto;
    margin-top: -40px;
    aspect-ratio: 362/93;
}
@media (max-width: 950px) {
    .page-template-front-page .mv .mv__sign {
        margin-top: -30px;
        width: min(140px, 100%);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv .mv__sign {
        width: min(125px, 100%);
        margin-top: 10px;
    }
}
.page-template-front-page .information {
    color: var(--color-orange);
}
.page-template-front-page .information .inner {
    display: flex;
    gap: 45px;
}
@media (max-width: 950px) {
    .page-template-front-page .information .inner {
        gap: 25px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .information .inner {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
        gap: 20px;
    }
}
.page-template-front-page .information .inner .information__ttl__wrapper {
    padding-bottom: 10px;
    display: flex;
    align-items: flex-end;
}
.page-template-front-page .information .inner .information__ttl {
    border-left: 5px solid var(--color-orange);
    padding-left: 10px;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .page-template-front-page .information .inner .information__ttl {
        border-left-width: 3px;
        padding-left: 6px;
    }
}
.page-template-front-page .information .inner .information__ttl h2 {
    font-size: 2.6rem;
    font-weight: 900;
}
@media (max-width: 950px) {
    .page-template-front-page .information .inner .information__ttl h2 {
        font-size: 2.1rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .information .inner .information__ttl h2 {
        font-size: 1.9rem;
    }
}
.page-template-front-page .information .inner .information__ttl .h2__en {
    color: var(--color-yellow);
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 500;
}
@media (max-width: 950px) {
    .page-template-front-page .information .inner .information__ttl .h2__en {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .information .inner .information__ttl .h2__en {
        font-size: 2.2rem;
    }
}
.page-template-front-page .information .inner .information__left {
    flex: 1 1;
}
.page-template-front-page .information .inner .information__left .news__list a {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--color-orange);
    line-height: 1.2;
    font-weight: 300;
}
.page-template-front-page .information .inner .information__left .news__list a:last-child {
    border-bottom: 1px solid var(--color-orange);
}
@media (max-width: 950px) {
    .page-template-front-page .information .inner .information__left .news__list a {
        gap: 15px;
        padding: 15px 0;
    }
}
.page-template-front-page .information .inner .information__left .news__list a .ttl {
    word-break: break-all;
}
.page-template-front-page .information .inner .information__left .news__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 370px;
    height: 32px;
    margin: 0 auto;
    border: 1px solid var(--color-yellow);
    border-radius: 14px;
    font-weight: 300;
}
@media (max-width: 950px) {
    .page-template-front-page .information .inner .information__left .news__link {
        width: 300px;
    }
}
.page-template-front-page .information .inner .information__right {
    width: 320px;
}
@media (max-width: 768px) {
    .page-template-front-page .information .inner .information__right {
        width: 100%;
    }
}
.page-template-front-page .information .inner .information__right .h2__en {
    font-size: 4rem;
    font-style: italic;
    color: var(--color-orange);
    border-bottom: 1px solid var(--color-orange);
    font-weight: 300;
    line-height: 1.2;
}
@media (max-width: 950px) {
    .page-template-front-page .information .inner .information__right .h2__en {
        font-size: 3.2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .information .inner .information__right .h2__en {
        font-size: 2.9rem;
    }
}
.page-template-front-page .information .inner .information__right .sns__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 80px;
    border-radius: 40px;
    border: 1px solid var(--color-orange);
    font-size: 3rem;
    font-weight: 300;
    padding: 0 40px 0 110px;
    position: relative;
    margin: 20px auto;
}
@media (max-width: 950px) {
    .page-template-front-page .information .inner .information__right .sns__btn {
        width: 240px;
        height: 60px;
        font-size: 2.4rem;
        margin: 15px auto;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .information .inner .information__right .sns__btn {
        width: 215px;
        height: 55px;
        font-size: 2.2rem;
    }
}
.page-template-front-page .information .inner .information__right .sns__btn::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    aspect-ratio: 1;
}
@media (max-width: 950px) {
    .page-template-front-page .information .inner .information__right .sns__btn::before {
        left: 32px;
        width: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .information .inner .information__right .sns__btn::before {
        left: 30px;
        width: 36px;
    }
}
.page-template-front-page .information .inner .information__right .sns__btn.fb {
    margin-top: 30px;
}
@media (max-width: 950px) {
    .page-template-front-page .information .inner .information__right .sns__btn.fb {
        margin-top: 20px;
    }
}
.page-template-front-page .information .inner .information__right .sns__btn.fb::before {
    background: url(../img/common/logo_fb.svg) center/contain no-repeat;
}
.page-template-front-page .information .inner .information__right .sns__btn.line::before {
    background: url(../img/common/logo_line.svg) center/contain no-repeat;
}
.page-template-front-page .information .inner .information__right .sns__btn.ig::before {
    background: url(../img/common/logo_ig.svg) center/contain no-repeat;
}
.page-template-front-page .policy {
    background: var(--color-yellow);
}
.page-template-front-page .policy .policy__ttl {
    border-left: 5px solid var(--color-orange);
    padding-left: 10px;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__ttl {
        border-left-width: 3px;
        padding-left: 6px;
    }
}
.page-template-front-page .policy .policy__ttl h2 {
    color: var(--color-orange);
    font-size: 2.6rem;
    font-weight: 900;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .policy__ttl h2 {
        font-size: 2.1rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__ttl h2 {
        font-size: 1.9rem;
    }
}
.page-template-front-page .policy .policy__ttl .h2__en {
    font-family: var(--font-en);
    color: #ffe9a9;
    font-size: 3rem;
    font-weight: 500;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .policy__ttl .h2__en {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__ttl .h2__en {
        font-size: 2.2rem;
    }
}
.page-template-front-page .policy .mission__img img {
    width: min(700px, 100%);
    margin: 0 auto;
    aspect-ratio: 1401/152;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .mission__img img {
        width: min(560px, 100%);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy .mission__img img {
        width: min(500px, 100%);
    }
}
.page-template-front-page .policy .policy__inner {
    max-width: 1350px;
    padding: 0 min(7%, 94.5px);
    margin: 0 auto;
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__inner {
        padding: 0 15px;
    }
}
.page-template-front-page .policy .policy__wh {
    margin-top: 5px;
    background: #fff;
    padding: 20px;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .policy__wh {
        padding: 15px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh {
        padding: 15px 10px;
    }
}
.page-template-front-page .policy .policy__wh .h3__wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .policy__wh .h3__wrapper {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh .h3__wrapper {
        gap: 10px;
    }
}
.page-template-front-page .policy .policy__wh .h3__wrapper img {
    width: min(155px, 100%);
    aspect-ratio: 313/186;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .policy__wh .h3__wrapper img {
        width: min(124px, 100%);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh .h3__wrapper img {
        width: min(90px, 100%);
    }
}
.page-template-front-page .policy .policy__wh .h3__wrapper h3 {
    font-size: 5.5rem;
    font-weight: 800;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .policy__wh .h3__wrapper h3 {
        font-size: 4.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh .h3__wrapper h3 {
        font-size: 2.4rem;
    }
}
.page-template-front-page .policy .policy__wh h4 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-orange);
    letter-spacing: -0.04em;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .policy__wh h4 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh h4 {
        font-size: 2rem;
    }
}
.page-template-front-page .policy .policy__wh .popup__wrapper {
    padding-left: 31px;
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh .popup__wrapper {
        padding-left: 20px;
    }
}
.page-template-front-page .policy .policy__wh .popup__wrapper .popup__box {
    border: 3px solid #f6ab00;
    border-radius: 15px;
    background: #fff3c3;
    padding: 15px 10px 10px;
    position: relative;
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh .popup__wrapper .popup__box {
        padding: 10px;
        border-width: 2px;
    }
}
.page-template-front-page .policy .policy__wh .popup__wrapper .popup__box.gr {
    border-color: #abcd03;
    background: #f7f8da;
}
.page-template-front-page .policy .policy__wh .popup__wrapper .popup__box::before {
    content: "";
    position: absolute;
    top: 30%;
    left: -34px;
    width: 34px;
    aspect-ratio: 34/44;
    background: url(../img/top/popup.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh .popup__wrapper .popup__box::before {
        left: -22.7px;
        width: 22.7px;
    }
}
.page-template-front-page .policy .policy__wh .popup__wrapper .popup__box.gr::before {
    background-image: url(../img/top/popup_gr.svg);
}
.page-template-front-page .policy .policy__wh .mission__list__wrapper {
    display: flex;
    gap: 10px;
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh .mission__list__wrapper {
        gap: 5px;
    }
}
.page-template-front-page .policy .policy__wh .mission__list__wrapper .bg__ye {
    width: 112px;
    background: #fcc800;
    height: 34px;
    border-radius: 5px;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .policy__wh .mission__list__wrapper .bg__ye {
        font-size: 1.6rem;
        height: 28px;
        width: 90px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh .mission__list__wrapper .bg__ye {
        font-size: 1.5rem;
        height: 26px;
        width: 81px;
    }
}
.page-template-front-page .policy .policy__wh .mission__list__wrapper .bg__ye.mh50 {
    min-height: 50px;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .policy__wh .mission__list__wrapper .bg__ye.mh50 {
        min-height: 40px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh .mission__list__wrapper .bg__ye.mh50 {
        min-height: 38px;
    }
}
.page-template-front-page .policy .policy__wh .mission__list__wrapper .bg__ye.gr {
    background: #cfdb00;
}
.page-template-front-page .policy .policy__wh ul {
    flex: 1 1;
    line-height: 1.2;
    font-size: 2rem;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .policy__wh ul {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh ul {
        font-size: 1.5rem;
    }
}
.page-template-front-page .policy .policy__wh ul.gr li::before {
    background: #cfdb00;
}
.page-template-front-page .policy .policy__wh ul li {
    padding-left: 20px;
    position: relative;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .policy__wh ul li {
        padding-left: 16px;
    }
}
.page-template-front-page .policy .policy__wh ul li::before {
    content: "";
    position: absolute;
    width: 17px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fcc800;
    top: 5px;
    left: 0;
}
@media (max-width: 950px) {
    .page-template-front-page .policy .policy__wh ul li::before {
        width: 14px;
        top: 4px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy .policy__wh ul li::before {
        top: 3px;
    }
}
.page-template-front-page .profile .inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
@media (max-width: 950px) {
    .page-template-front-page .profile .inner {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .profile .inner {
        flex-direction: column;
        gap: 5px;
    }
}
.page-template-front-page .profile .inner .profile__center__right {
    display: flex;
    gap: inherit;
    align-items: inherit;
    flex: 1 1;
}
@media (max-width: 768px) {
    .page-template-front-page .profile .inner .profile__center__right {
        flex-direction: column-reverse;
        align-items: center;
        width: 100%;
        gap: 5px;
    }
}
.page-template-front-page .profile .inner .profile__ttl {
    border-left: 5px solid var(--color-orange);
    padding-left: 10px;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .page-template-front-page .profile .inner .profile__ttl {
        border-left-width: 3px;
        padding-left: 6px;
    }
}
.page-template-front-page .profile .inner .profile__ttl h2 {
    font-size: 2.6rem;
    color: var(--color-orange);
    font-weight: 900;
}
@media (max-width: 950px) {
    .page-template-front-page .profile .inner .profile__ttl h2 {
        font-size: 2.1rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .profile .inner .profile__ttl h2 {
        font-size: 1.9rem;
    }
}
.page-template-front-page .profile .inner .profile__ttl .h2__en {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-yellow);
}
@media (max-width: 950px) {
    .page-template-front-page .profile .inner .profile__ttl .h2__en {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .profile .inner .profile__ttl .h2__en {
        font-size: 2.2rem;
    }
}
.page-template-front-page .profile .inner .profile__main {
    flex: 1 1;
    font-weight: 300;
}
.page-template-front-page .profile .inner .profile__main h3 {
    width: 71px;
    position: relative;
}
@media (max-width: 950px) {
    .page-template-front-page .profile .inner .profile__main h3 {
        width: 57px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .profile .inner .profile__main h3 {
        width: 51px;
    }
}
.page-template-front-page .profile .inner .profile__main h3 span {
    position: absolute;
    color: var(--color-orange);
    font-weight: 900;
    font-size: 2.1rem;
    line-height: 1.2;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}
@media (max-width: 950px) {
    .page-template-front-page .profile .inner .profile__main h3 span {
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .profile .inner .profile__main h3 span {
        font-size: 1.6rem;
    }
}
.page-template-front-page .profile .inner .profile__main table {
    margin-top: 10px;
}
@media (max-width: 768px) {
    .page-template-front-page .profile .inner .profile__main table {
        margin-top: 5px;
    }
}
.page-template-front-page .profile .inner .profile__main table th {
    font-weight: 300;
    white-space: nowrap;
}
.page-template-front-page .profile .inner .profile__main .profile__link {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-yellow);
    width: 370px;
    height: 32px;
    border-radius: 14px;
    color: var(--color-orange);
}
@media (max-width: 950px) {
    .page-template-front-page .profile .inner .profile__main .profile__link {
        width: 300px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .profile .inner .profile__main .profile__link {
        margin: 0 auto;
    }
}
.page-template-front-page .profile .inner .profile__img {
    width: 155px;
}
@media (max-width: 950px) {
    .page-template-front-page .profile .inner .profile__img {
        width: 124px;
    }
}
.page-template-front-page .profile .inner .profile__img img {
    width: 100%;
    aspect-ratio: 311/1081;
}

/* ------------------------------------- /
/  お知らせ一覧ページ
/* ------------------------------------- */
.archive__list {
    display: flex;
    flex-direction: column;
}
.archive__list a {
    border-top: 1px solid var(--color-orange);
    padding: 5px 0;
    display: flex;
    align-items: baseline;
    gap: 20px;
    color: var(--color-orange);
    font-weight: 300;
}
.archive__list a:last-child {
    border-bottom: 1px solid var(--color-orange);
}
.archive__list a .ttl {
    word-break: break-all;
}

.archive__pagination .pagination__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--color-orange);
    font-weight: 300;
}

/* ------------------------------------- /
/  お知らせ単体ページ
/* ------------------------------------- */
.single-post .post__ttl {
    color: var(--color-orange);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    word-break: break-all;
}
.single-post .single__pagination {
    color: var(--color-orange);
}
.single-post .single__pagination .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.single-post .single__pagination .btn__return.sp {
    display: none;
}/*# sourceMappingURL=style.css.map */