@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;
    --color-gray: #EDEDED;
    --color-black: #212121;
    --color-red: #BB2000;
    --header-height: 90px;
}
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }
}

.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: 600;
    font-family: var(--font-jp);
}
@media (max-width: 768px) {
    html body {
        font-size: 1.6rem;
    }
}
html body main {
    margin-top: var(--header-height);
}

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

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

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

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

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

.grecaptcha-badge {
    visibility: hidden;
}

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

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    display: none;
    width: 40px;
    height: 24px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: absolute;
    right: 0;
    transform: translateX(-100px);
    transition: transform 0.6s;
    top: 33px;
    z-index: 1000;
    padding-block-end: 0;
    padding-block-start: 0;
}
.menu-trigger span {
    display: inline-block;
    width: 35px;
    height: 1px;
    background-color: var(--color-red);
    position: absolute;
    left: calc(50% - 15px);
    transition-duration: 0.6s;
}
.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 {
    transform: translateX(-20px);
}
.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;
    }
}
@media (max-width: 768px) {
    .menu-trigger {
        top: 18px;
    }
}
@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: 35px;
        left: calc(50% - 15px);
    }
    66.6666% {
        width: 35px;
        left: calc(50% - 15px);
    }
    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: 35px;
        left: calc(50% - 15px);
    }
    70% {
        width: 35px;
        left: calc(50% - 15px);
    }
    100% {
        width: 35px;
        left: calc(50% - 15px);
    }
}
@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-left: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
@media (max-width: 768px) {
    header {
        padding-left: 20px;
    }
}

.header__menu {
    display: flex;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    height: 100%;
}
@media (max-width: 1280px) {
    .header__menu {
        display: none;
    }
}
.header__menu a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 30px;
    position: relative;
}
@media (max-width: 1400px) {
    .header__menu a {
        padding: 0 20px;
    }
}
@media (max-width: 1280px) {
    .header__menu a {
        padding: 0 15px;
    }
}
.header__menu a.supporter {
    margin-left: 40px;
    color: #fff;
    background: var(--color-red);
    border: 1px solid var(--color-red);
    padding: 0 80px;
    font-weight: 700;
    transition: all 0.2s;
}
.header__menu a.supporter:hover {
    background: #fff;
    color: var(--color-red);
    opacity: unset;
}
@media (max-width: 1400px) {
    .header__menu a.supporter {
        padding: 0 60px;
    }
}
@media (max-width: 1280px) {
    .header__menu a.supporter {
        padding: 0 40px;
    }
}
.header__menu a:not(.supporter)::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #000000;
    bottom: 5px;
    transform: scale(0, 1);
    transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s; /*変形の時間*/
}
.header__menu a:not(.supporter):hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
    transform-origin: left top; /*左から右に向かう*/
}

.header__logo_txt {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 1280px) {
    .header__logo_txt {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .header__logo_txt {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
}
.header__logo_txt .bg {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .header__logo_txt .bg {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .header__logo_txt .bg {
        font-size: 2.3rem;
    }
}
.header__logo_txt .sm {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.1;
}
@media (max-width: 1280px) {
    .header__logo_txt .sm {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .header__logo_txt .sm {
        font-size: 0.9rem;
    }
    .header__logo_txt .sm br {
        display: none;
    }
}

.header__sp__supporter__btn {
    display: none;
}
@media (max-width: 1280px) {
    .header__sp__supporter__btn {
        position: absolute;
        z-index: 101;
        top: 0;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.6rem;
        color: #fff;
        font-weight: 700;
        width: 80px;
        height: 100%;
        background: var(--color-red);
    }
}

.nav {
    display: none;
}
@media (max-width: 1280px) {
    .nav {
        display: block;
        width: min(100%, 400px);
        height: 100vh;
        background: #FFF;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.4s;
        transition-delay: 0.2s;
        transform: translateX(100%);
        z-index: 999;
        padding: 80px 45px 0;
    }
    .nav.active {
        transform: translateX(0);
        transition-delay: 0s;
    }
    .nav.active .wrapper {
        transition-delay: 0.4s;
        opacity: 1;
    }
    .nav .wrapper {
        opacity: 0;
        transition-duration: 0.2s;
    }
}

.nav__menu > li {
    border-bottom: 1px solid #707070;
    padding: 15px 0;
}
.nav__menu > li > a {
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
}
.nav__menu > li.accordion {
    position: relative;
}
.nav__menu > li.accordion::before {
    content: "";
    position: absolute;
    top: 25px;
    right: 0;
    width: 11px;
    aspect-ratio: 1;
    background: url(../img/common/accordion.svg) center/contain no-repeat;
    transition: transform 0.2s;
}
.nav__menu > li.accordion.active::before {
    transform: rotate(180deg);
}
.nav__menu > li.accordion .accordion__box {
    font-size: 1.5rem;
    color: #707070;
    padding-top: 15px;
}
.nav__menu > li.accordion .accordion__box li {
    margin: 5px 0;
}

.nav__sns__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
@media (max-width: 1280px) {
    .nav__sns__container {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .nav__sns__container {
        justify-content: center;
    }
}
.nav__sns__container img {
    width: 46px;
}
@media (max-width: 1280px) {
    .nav__sns__container img {
        width: 40px;
    }
}
@media (max-width: 768px) {
    .nav__sns__container img {
        width: 36px;
    }
}
.nav__sns__container img.x {
    width: 43px;
}
@media (max-width: 1280px) {
    .nav__sns__container img.x {
        width: 38px;
    }
}
@media (max-width: 768px) {
    .nav__sns__container img.x {
        width: 34px;
    }
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    background: #EDEDED;
}

.footer__menu {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 768px) {
    .footer__menu {
        display: block;
    }
}

.footer__nav__menu {
    display: none;
    font-size: 2rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    .footer__nav__menu {
        display: block;
    }
}
.footer__nav__menu > li {
    border-bottom: 1px solid #707070;
    padding: 15px 0;
}
.footer__nav__menu > li.accordion {
    position: relative;
}
.footer__nav__menu > li.accordion::before {
    content: "";
    position: absolute;
    top: 24px;
    right: 0;
    width: 11px;
    aspect-ratio: 1;
    transition: transform 0.2s;
    background: url(../img/common/accordion.svg) center/contain no-repeat;
}
.footer__nav__menu > li.accordion.active::before {
    transform: rotate(180deg);
}
.footer__nav__menu > li.accordion > ul {
    font-size: 1.5rem;
    color: #707070;
}
.footer__nav__menu > li.accordion > ul li {
    padding: 5px 0;
}

.footer__logo {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
}
.footer__logo .bg {
    font-size: clamp(4.5rem, 2.5rem + 1.56vw, 5.5rem);
    font-weight: 800;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .footer__logo .bg {
        font-size: clamp(3.6rem, 2.249rem + 1.76vw, 4.5rem);
    }
}
@media (max-width: 768px) {
    .footer__logo .bg {
        font-size: 2.5rem;
    }
}
.footer__logo .sm {
    font-size: clamp(2rem, 1rem + 0.78vw, 2.5rem);
    font-weight: 600;
    line-height: 1;
}
@media (max-width: 768px) {
    .footer__logo .sm {
        font-size: 1.7rem;
        font-weight: 800;
    }
    .footer__logo .sm br {
        display: none;
    }
}

.footer__sns {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .footer__sns {
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .footer__sns {
        font-size: 1.5rem;
        text-align: center;
    }
}

.footer__sns__container {
    display: flex;
    align-items: center;
    gap: 30px;
}
@media (max-width: 1280px) {
    .footer__sns__container {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .footer__sns__container {
        justify-content: center;
    }
}
.footer__sns__container a:hover {
    opacity: unset;
}
.footer__sns__container a:hover img {
    transform: scale(1.1);
}
.footer__sns__container img {
    transition: all 0.2s;
    width: 46px;
}
@media (max-width: 1280px) {
    .footer__sns__container img {
        width: 40px;
    }
}
@media (max-width: 768px) {
    .footer__sns__container img {
        width: 36px;
    }
}
.footer__sns__container img.x {
    width: 43px;
}
@media (max-width: 1280px) {
    .footer__sns__container img.x {
        width: 38px;
    }
}
@media (max-width: 768px) {
    .footer__sns__container img.x {
        width: 34px;
    }
}

.footer__menu__right {
    display: flex;
    gap: 90px;
}
@media (max-width: 1280px) {
    .footer__menu__right {
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .footer__menu__right {
        display: none;
    }
}
.footer__menu__right > ul {
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    font-weight: 700;
    gap: 25px;
}
@media (max-width: 1280px) {
    .footer__menu__right > ul {
        font-size: 1.8rem;
    }
}
.footer__menu__right > ul ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    color: #707070;
}
@media (max-width: 1280px) {
    .footer__menu__right > ul ul {
        font-size: 1.4rem;
    }
}

.footer__bottom {
    border-top: 1px solid #707070;
}

.copyright {
    text-align: right;
    font-size: 1.6rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .copyright {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .copyright {
        font-size: 1.2rem;
        text-align: center;
    }
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(400px, 100%);
    height: 80px;
    background: var(--color-red);
    border: 1px solid var(--color-red);
    color: #fff;
    font-weight: 600;
    position: relative;
    transition: all 0.2s;
}
@media (max-width: 1280px) {
    .btn {
        width: min(320px, 100%);
        height: 70px;
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .btn {
        width: min(250px, 100%);
        height: 50px;
        font-size: 1.4rem;
    }
}
.btn::before {
    transition: inherit;
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    width: 17px;
    aspect-ratio: 1;
    -webkit-mask: url(../img/common/arrow_right_wh.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right_wh.svg) center/contain no-repeat;
    background: #fff;
}
@media (max-width: 768px) {
    .btn::before {
        width: 11px;
    }
}
.btn:hover {
    background: #fff;
    color: var(--color-red);
    opacity: unset;
}
.btn:hover::before {
    background: var(--color-red);
}

.h2__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.h2__container__h2 {
    text-align: center;
    color: var(--color-red);
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .h2__container__h2 {
        font-size: 4.4rem;
    }
}
@media (max-width: 768px) {
    .h2__container__h2 {
        font-size: 3.2rem;
    }
}

.h2__container__h2__en {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border-radius: 20px;
    background: #F0F0F0;
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 0 35px;
}
@media (max-width: 1280px) {
    .h2__container__h2__en {
        height: 32px;
        border-radius: 16px;
        font-size: 1.8rem;
        padding: 0 26px;
    }
}
@media (max-width: 768px) {
    .h2__container__h2__en {
        height: 24px;
        border-radius: 10px;
        font-size: 1.4rem;
        padding: 0 20px;
    }
}

.lower__header {
    padding-top: 100px;
}
@media (max-width: 1280px) {
    .lower__header {
        padding-top: 60px;
    }
}
@media (max-width: 768px) {
    .lower__header {
        padding-top: 20px;
    }
}
.lower__header .breadcrumb {
    margin-top: 50px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 5px 20px;
    position: relative;
    z-index: 1;
}
@media (max-width: 1280px) {
    .lower__header .breadcrumb {
        margin-top: 30px;
        padding-bottom: 15px;
        gap: 5px 15px;
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .lower__header .breadcrumb {
        margin-top: 5px 20px;
        font-size: 1.4rem;
        justify-content: flex-start;
    }
}
.lower__header .breadcrumb li:not(:last-child) {
    padding-right: 32px;
    position: relative;
}
@media (max-width: 1280px) {
    .lower__header .breadcrumb li:not(:last-child) {
        padding-right: 26px;
    }
}
.lower__header .breadcrumb li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 14px;
    aspect-ratio: 1;
    background: url(../img/common/arrow_right_bk.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .lower__header .breadcrumb li:not(:last-child)::after {
        width: 12px;
    }
}

.lower__header__inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 60px 0 120px;
}
@media (max-width: 1280px) {
    .lower__header__inner {
        padding: 0 30px 0 60px;
    }
}
@media (max-width: 768px) {
    .lower__header__inner {
        padding: 0 20px 0 30px;
    }
}

.lower__header__h1 {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .lower__header__h1 {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .lower__header__h1 {
        font-size: 4.5rem;
    }
}

.lower__header__h1__en {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-red);
    font-family: var(--font-en);
    line-height: 1.2;
}
@media (max-width: 1280px) {
    .lower__header__h1__en {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .lower__header__h1__en {
        font-size: 1.8rem;
    }
}

.sns__sns__container {
    display: flex;
    justify-content: center;
    gap: 50px;
}
@media (max-width: 1280px) {
    .sns__sns__container {
        gap: 30px;
    }
}
.sns__sns__container a:hover {
    opacity: unset;
}
.sns__sns__container a:hover img {
    transform: scale(1.1);
}
.sns__sns__container .img {
    margin: 0 auto;
    max-width: 70px;
    aspect-ratio: 1;
}
@media (max-width: 1280px) {
    .sns__sns__container .img {
        max-width: 60px;
    }
}
.sns__sns__container .img img {
    transition: all 0.2s;
}
.sns__sns__container .img img.x {
    width: 90%;
    margin: 0 auto;
}

.supporter {
    padding: 0 60px;
}
@media (max-width: 1280px) {
    .supporter {
        padding: 0 30px;
    }
}
@media (max-width: 768px) {
    .supporter {
        padding: 0 4%;
    }
}

.supporter__inner {
    background: var(--color-red);
    color: #fff;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}
@media (max-width: 768px) {
    .supporter__inner {
        font-size: 1.5rem;
    }
}
.supporter__inner .h2__container__h2__en {
    color: var(--color-red);
}
.supporter__inner .h2__container__h2 {
    color: #fff;
}
.supporter__inner h3 {
    font-size: 4.5rem;
    font-weight: 800;
}
@media (max-width: 1280px) {
    .supporter__inner h3 {
        font-size: 3.2rem;
    }
}
@media (max-width: 768px) {
    .supporter__inner h3 {
        font-size: 2.5rem;
    }
}

.supporter__inner_btn {
    margin: 0 auto;
    background: #fff;
    color: var(--color-red);
    border: 1px solid #fff;
}
.supporter__inner_btn:hover {
    background: var(--color-red);
    color: #fff;
}
.supporter__inner_btn:hover::before {
    background: #fff;
    -webkit-mask: url(../img/common/arrow_right_red.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right_red.svg) center/contain no-repeat;
}
.supporter__inner_btn::before {
    background: url(../img/common/arrow_right_red.svg) center/contain no-repeat;
}

.btn__bg {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 5rem;
    background: var(--color-red);
    height: 200px;
    position: relative;
    border: 1px solid var(--color-red);
    transition: all 0.2s;
}
.btn__bg::before {
    transition: inherit;
    content: "";
    position: absolute;
    width: 39px;
    aspect-ratio: 1;
    top: 50%;
    right: 97px;
    transform: translateY(-50%);
    -webkit-mask: url(../img/common/arrow_right_wh.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right_wh.svg) center/contain no-repeat;
    background: #fff;
}
@media (max-width: 1280px) {
    .btn__bg::before {
        width: 30px;
        right: 50px;
    }
}
@media (max-width: 768px) {
    .btn__bg::before {
        width: 20px;
        right: 30px;
    }
}
.btn__bg:hover {
    background: #fff;
    color: var(--color-red);
    opacity: unset;
}
.btn__bg:hover::before {
    background: var(--color-red);
}
@media (max-width: 1280px) {
    .btn__bg {
        font-size: 4rem;
        height: 150px;
    }
}
@media (max-width: 768px) {
    .btn__bg {
        font-size: 3rem;
        height: 100px;
    }
}

.pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
@media (max-width: 768px) {
    .pagination-list {
        gap: 10px;
    }
}
.pagination-list .current {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: var(--color-red);
    border-radius: 3px;
    width: 50px;
    aspect-ratio: 1;
}
@media (max-width: 768px) {
    .pagination-list .current {
        width: 30px;
    }
}
.pagination-list .inactive {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    aspect-ratio: 1;
    background: #F0F0F0;
    border-radius: 3px;
}
@media (max-width: 768px) {
    .pagination-list .inactive {
        width: 30px;
    }
}
.pagination-list .disabled {
    visibility: hidden;
}
.pagination-list .first span {
    display: block;
    position: relative;
    width: 31px;
    aspect-ratio: 31/21;
    background: url(../img/common/last.svg) center/contain no-repeat;
    transform: rotate(180deg);
}
@media (max-width: 768px) {
    .pagination-list .first span {
        width: 22px;
    }
}
.pagination-list .last span {
    display: block;
    position: relative;
    width: 31px;
    aspect-ratio: 31/21;
    background: url(../img/common/last.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .pagination-list .last span {
        width: 22px;
    }
}
.pagination-list .previous span {
    display: block;
    position: relative;
    width: 21px;
    aspect-ratio: 1;
    background: url(../img/common/next.svg) center/contain no-repeat;
    transform: rotate(180deg);
}
@media (max-width: 768px) {
    .pagination-list .previous span {
        width: 14px;
    }
}
.pagination-list .next span {
    display: block;
    position: relative;
    width: 21px;
    aspect-ratio: 1;
    background: url(../img/common/next.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .pagination-list .next span {
        width: 14px;
    }
}

.category__link .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
@media (max-width: 768px) {
    .category__link .inner {
        gap: 10px;
    }
}
.category__link .inner a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    min-width: 140px;
    background: #F0F0F0;
    border-radius: 3px;
    font-size: 1.6rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    .category__link .inner a {
        min-width: 80px;
        font-size: 1.4rem;
    }
}
.category__link .inner a.current {
    color: #fff;
    background: var(--color-red);
    pointer-events: none;
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.page-template-front-page .mv {
    position: relative;
    margin-bottom: 190px;
}
@media (max-width: 1280px) {
    .page-template-front-page .mv {
        margin-bottom: 120px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv {
        margin-bottom: 90px;
    }
}
.page-template-front-page .mv__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.page-template-front-page .mv__txt {
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: clamp(6rem, 2rem + 3.13vw, 8rem);
    font-weight: 700;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .page-template-front-page .mv__txt {
        font-size: clamp(4rem, 0.999rem + 3.91vw, 6rem);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv__txt {
        font-size: clamp(2.8rem, 1.655rem + 3.05vw, 4rem);
    }
}
.page-template-front-page .mv__txt__h1 {
    font-size: clamp(9rem, 1rem + 6.25vw, 13rem);
    font-weight: 800;
    line-height: 1.2;
}
@media (max-width: 1280px) {
    .page-template-front-page .mv__txt__h1 {
        font-size: clamp(6rem, 1.498rem + 5.86vw, 9rem);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv__txt__h1 {
        font-size: clamp(4.6rem, 3.265rem + 3.56vw, 6rem);
    }
}
.page-template-front-page .mv__sns {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    padding: 0 70px;
    height: 120px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.16);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
}
.page-template-front-page .mv__sns a:hover {
    opacity: unset;
}
.page-template-front-page .mv__sns img {
    transition: all 0.2s;
}
.page-template-front-page .mv__sns img:hover {
    transform: scale(1.1);
}
@media (max-width: 1280px) {
    .page-template-front-page .mv__sns {
        height: 100px;
        border-radius: 8px;
        font-size: 2rem;
        gap: 25px;
        padding: 0 40px;
    }
    .page-template-front-page .mv__sns img {
        width: 45px;
    }
    .page-template-front-page .mv__sns img.x {
        width: 43px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .mv__sns {
        height: 60px;
        font-size: 1.5rem;
        border-radius: 5px;
        gap: 20px;
        padding: 0 35px;
    }
    .page-template-front-page .mv__sns img {
        width: 30px;
    }
    .page-template-front-page .mv__sns img.x {
        width: 27px;
    }
}
.page-template-front-page .news__container {
    padding-bottom: 110px;
}
@media (max-width: 1280px) {
    .page-template-front-page .news__container {
        padding-bottom: 70px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news__container {
        padding-bottom: 30px;
    }
}
.page-template-front-page .news__container__news__list .swiper-slide:first-child a {
    border-top: 1px solid #D6D6D6;
}
.page-template-front-page .news__container__news__list a {
    display: flex;
    align-items: center;
    gap: 60px;
    border-bottom: 1px solid #D6D6D6;
    padding: 25px 50px 25px 25px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-front-page .news__container__news__list a {
        padding: 20px 45px 20px 20px;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news__container__news__list a {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
        padding: 25px 35px 25px 0;
    }
}
.page-template-front-page .news__container__news__list a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    width: 21px;
    aspect-ratio: 1;
    background: url(../img/common/arrow_right_red.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .page-template-front-page .news__container__news__list a::after {
        right: 20px;
        width: 17px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news__container__news__list a::after {
        right: 0;
    }
}
.page-template-front-page .news__container__news__list__date__categories {
    width: 300px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 50px;
}
@media (max-width: 1280px) {
    .page-template-front-page .news__container__news__list__date__categories {
        width: 200px;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news__container__news__list__date__categories {
        width: unset;
        gap: 15px;
    }
}
.page-template-front-page .news__container__news__list__date__categories__date {
    color: var(--color-red);
    font-family: var(--font-en);
}
@media (max-width: 768px) {
    .page-template-front-page .news__container__news__list__date__categories__date {
        font-size: 1.3rem;
    }
}
.page-template-front-page .news__container__news__list__date__categories__categories span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 140px;
    height: 30px;
    background: #F0F0F0;
    border-radius: 3px;
    font-size: 1.6rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-front-page .news__container__news__list__date__categories__categories span {
        min-width: 100px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .news__container__news__list__date__categories__categories span {
        min-width: 60px;
        font-size: 1.2rem;
        height: 20px;
    }
}
.page-template-front-page .news__container__news__list__ttl {
    max-width: 700px;
    flex: 1 1;
}
.page-template-front-page .news__container__btn {
    margin: 0 auto;
}
.page-template-front-page .message {
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
    padding-top: 80px;
    padding-bottom: 50px;
}
@media (max-width: 1280px) {
    .page-template-front-page .message {
        padding-top: 40px;
        padding-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .message {
        padding-top: 30px;
        padding-bottom: 0;
    }
}
.page-template-front-page .message::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 10%;
    right: 0;
    width: 55%;
    height: 90%;
    background: url(../img/top/message_bg.webp) center right/cover no-repeat;
}
@media (max-width: 768px) {
    .page-template-front-page .message::before {
        display: none;
    }
}
.page-template-front-page .message::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url(../img/top/message.webp) bottom right/contain no-repeat;
}
@media (max-width: 768px) {
    .page-template-front-page .message::after {
        display: none;
    }
}
.page-template-front-page .message .inner {
    padding-top: 50px;
}
@media (max-width: 1280px) {
    .page-template-front-page .message .inner {
        padding-top: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .message .inner {
        padding-top: unset;
    }
}
.page-template-front-page .message__half {
    width: 60%;
    padding-right: 10%;
    background: #fff;
    line-height: 1.9;
    padding-bottom: 90px;
    padding-top: 60px;
}
@media (max-width: 1280px) {
    .page-template-front-page .message__half {
        padding-top: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .message__half {
        padding-top: 0;
        width: 100%;
        padding-right: unset;
        padding-bottom: 45px;
        margin-bottom: -50px;
        position: relative;
        z-index: 1;
    }
}
.page-template-front-page .message__half__h2__en {
    background: var(--color-red);
    color: #fff;
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    height: 40px;
    border-radius: 20px;
    width: -moz-fit-content;
    width: fit-content;
}
@media (max-width: 1280px) {
    .page-template-front-page .message__half__h2__en {
        height: 32px;
        border-radius: 16px;
        font-size: 1.8rem;
        padding: 0 12px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .message__half__h2__en {
        height: 24px;
        border-radius: 12px;
        font-size: 1.4rem;
        padding: 0 10px;
    }
}
.page-template-front-page .message__half__h2 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-front-page .message__half__h2 {
        font-size: 3.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .message__half__h2 {
        font-size: 2.5rem;
    }
}
.page-template-front-page .message__sp__img {
    display: none;
}
@media (max-width: 768px) {
    .page-template-front-page .message__sp__img {
        margin-left: 4%;
        display: block;
        background: url(../img/top/message_bg.webp) center/cover no-repeat;
    }
    .page-template-front-page .message__sp__img img {
        position: relative;
        z-index: 2;
    }
}
.page-template-front-page .message__btn {
    margin-top: 60px;
}
.page-template-front-page .message__btn.sp {
    display: none;
}
@media (max-width: 768px) {
    .page-template-front-page .message__btn.sp {
        display: flex;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .message__btn.pc {
        display: none;
    }
}
@media (max-width: 1280px) {
    .page-template-front-page .message__btn {
        margin-top: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .message__btn {
        margin-top: unset;
        margin: 0 auto;
        transform: translateY(-50%);
        z-index: 10;
    }
}
.page-template-front-page .policy {
    padding-top: 170px;
    padding-bottom: 100px;
}
@media (max-width: 1280px) {
    .page-template-front-page .policy {
        padding-top: 90px;
        padding-bottom: 70px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy {
        padding-top: 40px;
        padding-bottom: 30px;
    }
}
.page-template-front-page .policy .btn {
    margin: 0 auto;
}
.page-template-front-page .policy__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 40px;
}
@media (max-width: 1280px) {
    .page-template-front-page .policy__container {
        justify-content: flex-start;
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy__container {
        gap: 10px;
    }
}
.page-template-front-page .policy__container .box {
    width: calc((100% - 90px) / 4 + 1px);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    font-weight: 600;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-front-page .policy__container .box {
        width: calc((100% - 30px) / 2);
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy__container .box {
        width: calc((100% - 10px) / 2);
        padding: 20px 10px;
    }
}
.page-template-front-page .policy__container .box.row__4 {
    width: calc((100% - 90px) / 4);
}
@media (max-width: 1280px) {
    .page-template-front-page .policy__container .box.row__4 {
        width: calc((100% - 30px) / 2);
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy__container .box.row__4 {
        width: calc((100% - 10px) / 2);
    }
}
.page-template-front-page .policy__container .box .img {
    width: 100px;
    aspect-ratio: 1;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .page-template-front-page .policy__container .box .img {
        width: 55px;
    }
}
.page-template-front-page .policy__container .box .img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}
.page-template-front-page .policy__container .box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-front-page .policy__container .box h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy__container .box h3 {
        font-size: 1.7rem;
    }
}
.page-template-front-page .policy__container .box h4 {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
}
@media (max-width: 1280px) {
    .page-template-front-page .policy__container .box h4 {
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy__container .box h4 {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .policy__container .box p {
        font-size: 1.4rem;
    }
}
.page-template-front-page .result {
    padding-top: 100px;
    padding-bottom: 100px;
}
@media (max-width: 1280px) {
    .page-template-front-page .result {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .result {
        padding-top: 40px;
        padding-bottom: 30px;
    }
}
.page-template-front-page .result__container {
    display: flex;
    align-items: center;
}
.page-template-front-page .result__container:nth-child(2n) {
    flex-direction: row-reverse;
}
.page-template-front-page .result__container:nth-child(2n) .result__container__img {
    padding: 0 5% 0 0;
}
@media (max-width: 768px) {
    .page-template-front-page .result__container:nth-child(2n) .result__container__img {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .result__container:nth-child(n) {
        flex-direction: column-reverse;
        gap: 30px;
    }
}
.page-template-front-page .result__container__txt {
    width: 50%;
}
@media (max-width: 768px) {
    .page-template-front-page .result__container__txt {
        width: 100%;
    }
}
.page-template-front-page .result__container__txt__p {
    line-height: 1.6;
}
.page-template-front-page .result__container__h3 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .page-template-front-page .result__container__h3 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .result__container__h3 {
        font-size: 2rem;
    }
}
.page-template-front-page .result__container__img {
    width: 50%;
    padding: 0 0 0 5%;
}
@media (max-width: 768px) {
    .page-template-front-page .result__container__img {
        width: 100%;
        padding: 0;
    }
}
.page-template-front-page .result__btn {
    margin: 0 auto;
}
.page-template-front-page .sns {
    padding-top: 100px;
    padding-bottom: 80px;
}
@media (max-width: 1280px) {
    .page-template-front-page .sns {
        padding-top: 70px;
        padding-bottom: 50px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .sns {
        padding-top: 40px;
        padding-bottom: 30px;
    }
}
.page-template-front-page .supporter {
    padding-top: 100px;
    padding-bottom: 120px;
}
@media (max-width: 1280px) {
    .page-template-front-page .supporter {
        padding-top: 60px;
        padding-bottom: 100px;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .supporter {
        padding-top: 30px;
        padding-bottom: 80px;
    }
}

/* ------------------------------------- /
/  お知らせ一覧ページ
/* ------------------------------------- */
.page-template-home .lower__header,
.category .lower__header {
    border-bottom: 1px solid #D6D6D6;
}
.page-template-home .news,
.category .news {
    padding: 25px;
    border-bottom: 1px solid #D6D6D6;
}
.page-template-home .news:first-child,
.category .news:first-child {
    border-top: 1px solid #D6D6D6;
}
@media (max-width: 768px) {
    .page-template-home .news,
    .category .news {
        padding: 15px 0;
    }
}
.page-template-home .news a,
.category .news a {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-home .news a,
    .category .news a {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-home .news a,
    .category .news a {
        flex-wrap: wrap;
        gap: 10px;
    }
}
.page-template-home .news a::before,
.category .news a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    aspect-ratio: 1;
    background: url(../img/common/arrow_right_red.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .page-template-home .news a::before,
    .category .news a::before {
        width: 17px;
    }
}
.page-template-home .news__date,
.category .news__date {
    font-family: var(--font-en);
    color: var(--color-red);
    line-height: 1.2;
}
.page-template-home .news__category span,
.category .news__category span {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 140px;
    height: 30px;
    background: #F0F0F0;
    border-radius: 3px;
    font-size: 1.6rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    .page-template-home .news__category span,
    .category .news__category span {
        min-width: 80px;
        font-size: 1.4rem;
    }
}
.page-template-home .news__ttl,
.category .news__ttl {
    flex: 1;
    max-width: 700px;
    margin-right: 50px;
}
@media (max-width: 768px) {
    .page-template-home .news__ttl,
    .category .news__ttl {
        flex: unset;
        width: 100%;
        margin-right: 20px;
    }
}

/* ------------------------------------- /
/  お知らせ単体ページ
/* ------------------------------------- */
.single-post .lower__header {
    border-bottom: 1px solid #D6D6D6;
}
.single-post .post__header {
    display: flex;
    align-items: baseline;
    gap: 30px;
}
@media (max-width: 768px) {
    .single-post .post__header {
        gap: 15px;
    }
}
.single-post .post__header__date {
    font-family: var(--font-en);
    color: var(--color-red);
    line-height: 1.2;
}
.single-post .post__header__category span {
    background: #F0F0F0;
    border-radius: 3px;
    height: 30px;
    min-width: 140px;
    padding: 0 5px;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .single-post .post__header__category span {
        min-width: 100px;
        font-size: 1.4rem;
    }
}
.single-post .post__ttl {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    border-bottom: 1px solid #D6D6D6;
    padding-bottom: 40px;
}
@media (max-width: 1280px) {
    .single-post .post__ttl {
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .single-post .post__ttl {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}
.single-post .post__detail {
    max-width: 1000px;
    margin: 0 auto;
}
.single-post .post__detail p {
    line-height: 1.9;
    margin-top: 40px;
    margin-bottom: 70px;
}
@media (max-width: 1280px) {
    .single-post .post__detail p {
        margin-top: 25px;
        margin-bottom: 50px;
    }
}
@media (max-width: 768px) {
    .single-post .post__detail p {
        margin-top: 15px;
        margin-bottom: 30px;
    }
}
.single-post .post__detail h2 {
    margin-top: 100px;
    padding-bottom: 25px;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    border-bottom: 1px solid var(--color-red);
}
@media (max-width: 1280px) {
    .single-post .post__detail h2 {
        margin-top: 60px;
        padding-bottom: 20px;
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .single-post .post__detail h2 {
        margin-top: 30px;
        padding-bottom: 10px;
        font-size: 1.7rem;
    }
}
.single-post .post__detail h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-red);
    display: flex;
    align-items: baseline;
    gap: 13px;
}
@media (max-width: 1280px) {
    .single-post .post__detail h3 {
        font-size: 1.6rem;
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .single-post .post__detail h3 {
        font-size: 1.5rem;
        gap: 8px;
    }
}
.single-post .post__detail h3::before {
    content: "";
    display: block;
    width: 17px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-red);
}
@media (max-width: 1280px) {
    .single-post .post__detail h3::before {
        width: 14px;
    }
}
@media (max-width: 768px) {
    .single-post .post__detail h3::before {
        width: 11px;
    }
}
.single-post .post__pagination {
    border-top: 1px solid #D6D6D6;
}
.single-post .post__pagination__btn__return.sp {
    display: none;
}
@media (max-width: 768px) {
    .single-post .post__pagination__btn__return.sp {
        display: block;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .single-post .post__pagination__btn__return.pc {
        display: none;
    }
}
.single-post .post__pagination__wrapper {
    display: flex;
    justify-content: space-between;
}
.single-post .post__pagination__wrapper .next {
    padding-right: 32px;
    position: relative;
}
.single-post .post__pagination__wrapper .next::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    aspect-ratio: 1;
    background: url(../img/common/next.svg) center/contain no-repeat;
}
.single-post .post__pagination__wrapper .previous {
    padding-left: 32px;
    position: relative;
}
.single-post .post__pagination__wrapper .previous::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    width: 21px;
    aspect-ratio: 1;
    background: url(../img/common/next.svg) center/contain no-repeat;
}

/* ------------------------------------- /
/  政策
/* ------------------------------------- */
.page-template-page-policy h2 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-policy h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy h2 {
        font-size: 2.4rem;
    }
}
.page-template-page-policy h3 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-policy h3 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy h3 {
        font-size: 2rem;
    }
}
.page-template-page-policy .list__wrapper {
    display: flex;
    flex-wrap: wrap;
}
.page-template-page-policy .red {
    color: var(--color-red);
}
.page-template-page-policy .policy__header {
    background: #F0F0F0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    z-index: 0;
    padding: 160px 0;
}
@media (max-width: 1280px) {
    .page-template-page-policy .policy__header {
        font-size: 2rem;
        padding: 80px 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy .policy__header {
        font-size: 1.6rem;
        padding: 40px 0 0;
    }
}
.page-template-page-policy .policy__header .img {
    position: absolute;
    width: 38%;
    aspect-ratio: 1;
    bottom: 0;
    right: 9%;
}
@media (max-width: 768px) {
    .page-template-page-policy .policy__header .img {
        position: unset;
        margin-top: 30px;
        width: 100%;
    }
}
.page-template-page-policy .policy__header .policy__header__inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 60px 0 120px;
}
@media (max-width: 1280px) {
    .page-template-page-policy .policy__header .policy__header__inner {
        padding: 0 30px 0 60px;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy .policy__header .policy__header__inner {
        padding: 0 20px;
    }
}
.page-template-page-policy .policy__header .policy__header__inner .txt {
    width: calc((100% + 60px) / 2 - 60px);
}
@media (max-width: 768px) {
    .page-template-page-policy .policy__header .policy__header__inner .txt {
        width: 100%;
    }
}
.page-template-page-policy .link__container .wrapper {
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    padding: 30px 10px;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
}
@media (max-width: 1280px) {
    .page-template-page-policy .link__container .wrapper {
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
    }
}
.page-template-page-policy .link__container .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 25px;
}
@media (max-width: 1280px) {
    .page-template-page-policy .link__container .container {
        justify-content: flex-start;
    }
}
@media (max-width: 1280px) {
    .page-template-page-policy .link__container .container.pc1280 {
        display: none;
    }
}
.page-template-page-policy .link__container .container .box {
    width: 25%;
    position: relative;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.5;
    text-align: center;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.page-template-page-policy .link__container .container .box.bl {
    border-left: 1px solid #D6D6D6;
}
.page-template-page-policy .link__container .container .box.sp1280 {
    display: none;
}
@media (max-width: 1280px) {
    .page-template-page-policy .link__container .container .box.sp1280 {
        display: flex;
    }
}
@media (max-width: 1280px) {
    .page-template-page-policy .link__container .container .box.sp1280bl {
        border-left: 1px solid #D6D6D6;
    }
}
.page-template-page-policy .link__container .container .box.pc1280bl {
    border-left: 1px solid #D6D6D6;
}
@media (max-width: 1280px) {
    .page-template-page-policy .link__container .container .box.pc1280bl {
        border-left: none;
    }
}
@media (max-width: 1280px) {
    .page-template-page-policy .link__container .container .box {
        width: 50%;
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy .link__container .container .box {
        width: 50%;
        font-size: 1.4rem;
        gap: 10px;
    }
}
.page-template-page-policy .link__container .container .box img {
    width: auto;
    max-width: 60px;
    height: 60px;
    margin: 0 auto;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}
.page-template-page-policy .link__container .container .box p {
    flex: 1 1;
    display: flex;
    align-items: center;
}
.page-template-page-policy .link__container .container .box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 21px;
    aspect-ratio: 1;
    background: url(../img/policy/arrow_down_red.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .page-template-page-policy .link__container .container .box::before {
        width: 17px;
    }
}
.page-template-page-policy .policy__list ul {
    width: 50%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}
@media (max-width: 1280px) {
    .page-template-page-policy .policy__list ul {
        row-gap: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy .policy__list ul {
        row-gap: 15px;
        width: 100%;
    }
}
.page-template-page-policy .policy__list ul li {
    font-size: 2.1rem;
    padding-left: 42px;
    padding-right: 20px;
    position: relative;
}
@media (max-width: 1280px) {
    .page-template-page-policy .policy__list ul li {
        font-size: 1.7rem;
        padding-right: 15px;
        padding-left: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy .policy__list ul li {
        font-size: 1.6rem;
    }
}
.page-template-page-policy .policy__list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    transform: translateY(-50%);
    width: 17px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--color-red);
}
@media (max-width: 1280px) {
    .page-template-page-policy .policy__list ul li::before {
        top: 15px;
        width: 15px;
    }
}
.page-template-page-policy .policy__list ul li .sm {
    font-size: 1.8rem;
}
@media (max-width: 1280px) {
    .page-template-page-policy .policy__list ul li .sm {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy .policy__list ul li .sm {
        font-size: 1.5rem;
    }
}
.page-template-page-policy .policy__list .policy__ttl {
    display: flex;
    gap: 50px;
}
@media (max-width: 1280px) {
    .page-template-page-policy .policy__list .policy__ttl {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy .policy__list .policy__ttl {
        gap: 15px;
    }
}
.page-template-page-policy .policy__list .policy__ttl .icon {
    width: 150px;
    aspect-ratio: 1;
    background: var(--color-red);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1280px) {
    .page-template-page-policy .policy__list .policy__ttl .icon {
        width: 120px;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy .policy__list .policy__ttl .icon {
        width: 90px;
    }
}
.page-template-page-policy .policy__list .policy__ttl .icon img {
    height: 95px;
    max-width: 95px;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}
@media (max-width: 1280px) {
    .page-template-page-policy .policy__list .policy__ttl .icon img {
        height: 75px;
        max-width: 75px;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy .policy__list .policy__ttl .icon img {
        height: 60px;
        max-width: 60px;
    }
}
.page-template-page-policy .policy__list .policy__ttl h2 {
    display: flex;
    align-items: center;
    flex: 1;
    border-bottom: 1px solid var(--color-red);
}
.page-template-page-policy .policy__list p {
    font-size: 2.5rem;
    line-height: 1.6;
}
@media (max-width: 1280px) {
    .page-template-page-policy .policy__list p {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy .policy__list p {
        font-size: 1.6rem;
    }
}
.page-template-page-policy .pict__container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 5%;
}
@media (max-width: 1280px) {
    .page-template-page-policy .pict__container {
        gap: 40px 3%;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy .pict__container {
        gap: 15px;
    }
}
.page-template-page-policy .pict__container img {
    width: 30%;
}
@media (max-width: 1280px) {
    .page-template-page-policy .pict__container img {
        width: 31.3333333333%;
    }
}
@media (max-width: 768px) {
    .page-template-page-policy .pict__container img {
        width: calc((100% - 20px) / 2);
    }
}

/* ------------------------------------- /
/  実績
/* ------------------------------------- */
.page-template-page-result .result__header {
    background: #F0F0F0;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    z-index: 0;
    padding: 160px 0;
}
@media (max-width: 1280px) {
    .page-template-page-result .result__header {
        font-size: 2rem;
        padding: 80px 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-result .result__header {
        font-size: 1.6rem;
        padding: 40px 0 0;
    }
}
.page-template-page-result .result__header__inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 60px 0 120px;
}
@media (max-width: 1280px) {
    .page-template-page-result .result__header__inner {
        padding: 0 30px 0 60px;
    }
}
@media (max-width: 768px) {
    .page-template-page-result .result__header__inner {
        padding: 0 20px;
    }
}
.page-template-page-result .result__header__inner__txt {
    width: calc((100% + 60px) / 2 - 60px);
}
@media (max-width: 768px) {
    .page-template-page-result .result__header__inner__txt {
        width: 100%;
    }
}
.page-template-page-result .result__header__img {
    position: absolute;
    width: 38%;
    aspect-ratio: 1;
    bottom: 0;
    right: 9%;
}
@media (max-width: 768px) {
    .page-template-page-result .result__header__img {
        position: unset;
        margin-top: 30px;
        width: 100%;
    }
}
.page-template-page-result .result__content ul {
    font-weight: 500;
    line-height: 1.9;
}
.page-template-page-result .result__container {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}
@media (max-width: 768px) {
    .page-template-page-result .result__container {
        gap: 30px;
    }
}
.page-template-page-result .result__container__txt {
    width: 53%;
}
@media (max-width: 768px) {
    .page-template-page-result .result__container__txt {
        width: 100%;
    }
}
.page-template-page-result .result__container__txt h2 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-red);
    line-height: 1.4;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-red);
}
@media (max-width: 1280px) {
    .page-template-page-result .result__container__txt h2 {
        font-size: 4rem;
        padding-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .page-template-page-result .result__container__txt h2 {
        font-size: 3rem;
        padding-bottom: 15px;
    }
}
.page-template-page-result .result__container__txt p {
    font-weight: 500;
    line-height: 1.9;
}
.page-template-page-result .result__container__img {
    width: 43%;
}
@media (max-width: 768px) {
    .page-template-page-result .result__container__img {
        width: 100%;
    }
}

/* ------------------------------------- /
/  プロフィール
/* ------------------------------------- */
.page-template-page-profile .profile__main {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}
@media (max-width: 768px) {
    .page-template-page-profile .profile__main {
        flex-direction: column-reverse;
        row-gap: 20px;
    }
}
.page-template-page-profile .profile__main img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    margin-left: auto;
    z-index: -1;
}
@media (max-width: 768px) {
    .page-template-page-profile .profile__main img {
        position: unset;
        transform: unset;
        width: 100%;
    }
}
.page-template-page-profile .profile__main__txt {
    padding: 140px 0 20px;
}
@media (max-width: 768px) {
    .page-template-page-profile .profile__main__txt {
        padding: 0;
    }
}
.page-template-page-profile .profile__main__txt__txt__wrapper {
    background: #fff;
    width: 60%;
    padding: 90px 90px 90px 0;
    font-weight: 500;
    line-height: 1.9;
}
@media (max-width: 1280px) {
    .page-template-page-profile .profile__main__txt__txt__wrapper {
        padding: 50px 50px 50px 0;
    }
}
@media (max-width: 768px) {
    .page-template-page-profile .profile__main__txt__txt__wrapper {
        width: 100%;
        padding: 0;
    }
}
.page-template-page-profile .profile__main__txt__txt__wrapper__h2 {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1.5;
}
@media (max-width: 1280px) {
    .page-template-page-profile .profile__main__txt__txt__wrapper__h2 {
        font-size: 6rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-profile .profile__main__txt__txt__wrapper__h2 {
        font-size: 4rem;
    }
}
.page-template-page-profile .profile__main__txt__txt__wrapper__name__red {
    background: var(--color-red);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 0 30px;
    border-radius: 20px;
    width: -moz-fit-content;
    width: fit-content;
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .page-template-page-profile .profile__main__txt__txt__wrapper__name__red {
        height: 36px;
        padding: 0 20px;
        border-radius: 18px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-profile .profile__main__txt__txt__wrapper__name__red {
        height: 30px;
        padding: 0 15px;
        border-radius: 15px;
        font-size: 1.5rem;
    }
}
.page-template-page-profile .history__h2 {
    font-size: 5rem;
    font-weight: 800;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--color-red);
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-profile .history__h2 {
        font-size: 4rem;
        padding-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-profile .history__h2 {
        font-size: 3rem;
        padding-bottom: 20px;
    }
}
.page-template-page-profile .history__table th, .page-template-page-profile .history__table td {
    font-weight: 600;
    font-size: 2.5rem;
    padding: 5px 50px;
}
@media (max-width: 1280px) {
    .page-template-page-profile .history__table th, .page-template-page-profile .history__table td {
        font-size: 2rem;
        padding: 5px 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-profile .history__table th, .page-template-page-profile .history__table td {
        font-size: 1.6rem;
        padding: 5px;
    }
}
.page-template-page-profile .history__table th {
    white-space: nowrap;
}
.page-template-page-profile .history__table td {
    border-left: 1px solid #D6D6D6;
}
.page-template-page-profile .profile__dummy__wrapper {
    display: flex;
    gap: 50px;
    padding: 0 60px;
}
@media (max-width: 768px) {
    .page-template-page-profile .profile__dummy__wrapper {
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .page-template-page-profile .profile__dummy__wrapper {
        padding: 0 20px;
    }
}
.page-template-page-profile .profile__dummy__wrapper__img {
    width: calc((100% - 100px) / 3);
}
@media (max-width: 768px) {
    .page-template-page-profile .profile__dummy__wrapper__img {
        width: calc((100% - 20px) / 3);
    }
}

/* ------------------------------------- /
/  後援会ご入会
/* ------------------------------------- */
.page-template-page-supporter .lower__header,
.page-template-page-supporter-confirm .lower__header {
    border-bottom: 1px solid #D6D6D6;
}
.page-template-page-supporter .form__notice,
.page-template-page-supporter-confirm .form__notice {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
}
@media (max-width: 1280px) {
    .page-template-page-supporter .form__notice,
    .page-template-page-supporter-confirm .form__notice {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-supporter .form__notice,
    .page-template-page-supporter-confirm .form__notice {
        font-size: 1.7rem;
    }
}
.page-template-page-supporter .error.false,
.page-template-page-supporter-confirm .error.false {
    display: none;
}
.page-template-page-supporter .required,
.page-template-page-supporter-confirm .required {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 30px;
    border-radius: 15px;
    color: #fff;
    background: var(--color-red);
    font-size: 1.4rem;
    font-weight: 700;
}
.page-template-page-supporter .contact-form,
.page-template-page-supporter-confirm .contact-form {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}
@media (max-width: 1280px) {
    .page-template-page-supporter .contact-form,
    .page-template-page-supporter-confirm .contact-form {
        row-gap: 30px;
    }
}
.page-template-page-supporter .contact-form__column,
.page-template-page-supporter-confirm .contact-form__column {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}
@media (max-width: 1280px) {
    .page-template-page-supporter .contact-form__column,
    .page-template-page-supporter-confirm .contact-form__column {
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .page-template-page-supporter .contact-form__column,
    .page-template-page-supporter-confirm .contact-form__column {
        flex-direction: column;
        flex-wrap: wrap;
        row-gap: 5px;
    }
}
.page-template-page-supporter .contact-form__column dt,
.page-template-page-supporter-confirm .contact-form__column dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 290px;
    min-height: 40px;
}
@media (max-width: 1280px) {
    .page-template-page-supporter .contact-form__column dt,
    .page-template-page-supporter-confirm .contact-form__column dt {
        width: 230px;
    }
}
@media (max-width: 768px) {
    .page-template-page-supporter .contact-form__column dt,
    .page-template-page-supporter-confirm .contact-form__column dt {
        width: unset;
        gap: 20px;
    }
}
.page-template-page-supporter .contact-form__column dd,
.page-template-page-supporter-confirm .contact-form__column dd {
    width: calc(100% - 60px - 290px);
}
@media (max-width: 1280px) {
    .page-template-page-supporter .contact-form__column dd,
    .page-template-page-supporter-confirm .contact-form__column dd {
        width: calc(100% - 30px - 230px);
    }
}
@media (max-width: 768px) {
    .page-template-page-supporter .contact-form__column dd,
    .page-template-page-supporter-confirm .contact-form__column dd {
        width: 100%;
    }
}
.page-template-page-supporter .contact-form__column dd input,
.page-template-page-supporter .contact-form__column dd textarea,
.page-template-page-supporter-confirm .contact-form__column dd input,
.page-template-page-supporter-confirm .contact-form__column dd textarea {
    width: 100%;
    background: #EDEDED;
    font-size: inherit;
    border: unset;
    font-family: inherit;
    line-height: 2.2;
    padding: 0 5px;
}
.page-template-page-supporter .contact-form__column dd input.input_error,
.page-template-page-supporter .contact-form__column dd textarea.input_error,
.page-template-page-supporter-confirm .contact-form__column dd input.input_error,
.page-template-page-supporter-confirm .contact-form__column dd textarea.input_error {
    border: 2px solid red;
}
.page-template-page-supporter .form-button__box,
.page-template-page-supporter-confirm .form-button__box {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.page-template-page-supporter .policy,
.page-template-page-supporter-confirm .policy {
    max-height: 200px;
    max-width: 800px;
    margin: 0 auto;
    overflow-x: auto;
    border: 1px solid #000;
    padding: 5px;
}
.page-template-page-supporter .policy__inner,
.page-template-page-supporter-confirm .policy__inner {
    padding: 10px;
    line-height: 2;
}
.page-template-page-supporter .form__agree,
.page-template-page-supporter-confirm .form__agree {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.page-template-page-supporter .form__agree .required,
.page-template-page-supporter-confirm .form__agree .required {
    margin-left: 10px;
}
.page-template-page-supporter .form__agree input,
.page-template-page-supporter-confirm .form__agree input {
    -webkit-appearance: checkbox;
       -moz-appearance: checkbox;
            appearance: checkbox;
}
.page-template-page-supporter #error_05,
.page-template-page-supporter-confirm #error_05 {
    text-align: center;
}
.page-template-page-supporter .form-confirm__button,
.page-template-page-supporter .form-submit__button,
.page-template-page-supporter .form-return__button,
.page-template-page-supporter-confirm .form-confirm__button,
.page-template-page-supporter-confirm .form-submit__button,
.page-template-page-supporter-confirm .form-return__button {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-red);
    width: 400px;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: inherit;
    position: relative;
    cursor: pointer;
    height: 80px;
}
@media (max-width: 1280px) {
    .page-template-page-supporter .form-confirm__button,
    .page-template-page-supporter .form-submit__button,
    .page-template-page-supporter .form-return__button,
    .page-template-page-supporter-confirm .form-confirm__button,
    .page-template-page-supporter-confirm .form-submit__button,
    .page-template-page-supporter-confirm .form-return__button {
        width: 360px;
        height: 70px;
        font-size: 1.7rem;
    }
}
@media (max-width: 768px) {
    .page-template-page-supporter .form-confirm__button,
    .page-template-page-supporter .form-submit__button,
    .page-template-page-supporter .form-return__button,
    .page-template-page-supporter-confirm .form-confirm__button,
    .page-template-page-supporter-confirm .form-submit__button,
    .page-template-page-supporter-confirm .form-return__button {
        width: 260px;
        height: 50px;
        font-size: 1.6rem;
    }
}
.page-template-page-supporter .form-confirm__button,
.page-template-page-supporter .form-submit__button,
.page-template-page-supporter-confirm .form-confirm__button,
.page-template-page-supporter-confirm .form-submit__button {
    color: #fff;
    background: var(--color-red);
}
.page-template-page-supporter .form-confirm__button::before,
.page-template-page-supporter .form-submit__button::before,
.page-template-page-supporter-confirm .form-confirm__button::before,
.page-template-page-supporter-confirm .form-submit__button::before {
    content: "";
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    aspect-ratio: 1;
    background: url(../img/common/arrow_right_wh.svg) center/contain no-repeat;
}
.page-template-page-supporter .form-confirm__button:hover,
.page-template-page-supporter .form-submit__button:hover,
.page-template-page-supporter-confirm .form-confirm__button:hover,
.page-template-page-supporter-confirm .form-submit__button:hover {
    color: var(--color-red);
    background: #fff;
}
.page-template-page-supporter .form-confirm__button:hover::before,
.page-template-page-supporter .form-submit__button:hover::before,
.page-template-page-supporter-confirm .form-confirm__button:hover::before,
.page-template-page-supporter-confirm .form-submit__button:hover::before {
    background: var(--color-red);
    -webkit-mask: url(../img/common/arrow_right_wh.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right_wh.svg) center/contain no-repeat;
}
.page-template-page-supporter .form-return__button,
.page-template-page-supporter-confirm .form-return__button {
    background: #fff;
    color: var(--color-red);
}
.page-template-page-supporter .form-return__button:hover,
.page-template-page-supporter-confirm .form-return__button:hover {
    color: #fff;
    background: var(--color-red);
}
.page-template-page-supporter .faq__q,
.page-template-page-supporter-confirm .faq__q {
    padding: 10px 0;
    border-bottom: 1px solid #000;
    cursor: pointer;
    position: relative;
}
.page-template-page-supporter .faq__q::before,
.page-template-page-supporter-confirm .faq__q::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 21px;
    aspect-ratio: 1;
    background: url(../img/common/accordion.svg) center/contain no-repeat;
    transition: 0.2s transform;
}
.page-template-page-supporter .accordion.active .faq__q::before,
.page-template-page-supporter-confirm .accordion.active .faq__q::before {
    transform: translateY(-50%) rotate(180deg);
}/*# sourceMappingURL=style.css.map */