@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    outline: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@-webkit-keyframes flash {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

@keyframes flash {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

@-webkit-keyframes rise {
    0% {
        top: 100%;
        right: -30%;
    }

    100% {
        top: 0%;
        right: 0%;
    }
}

@keyframes rise {
    0% {
        top: 100%;
        right: -30%;
    }

    100% {
        top: 0%;
        right: 0%;
    }
}

@-webkit-keyframes down {
    0% {
        bottom: 100%;
        left: 40%;
    }

    100% {
        bottom: 0%;
        left: 0%;
    }
}

@keyframes down {
    0% {
        bottom: 100%;
        left: 40%;
    }

    100% {
        bottom: 0%;
        left: 0%;
    }
}

@-webkit-keyframes rise_sp {
    0% {
        top: 100%;
        right: -50%;
    }

    100% {
        top: 0%;
        right: 0%;
    }
}

@keyframes rise_sp {
    0% {
        top: 100%;
        right: -50%;
    }

    100% {
        top: 0%;
        right: 0%;
    }
}

@-webkit-keyframes down_sp {
    0% {
        bottom: 100%;
        left: 63%;
    }

    100% {
        bottom: 0%;
        left: 0%;
    }
}

@keyframes down_sp {
    0% {
        bottom: 100%;
        left: 63%;
    }

    100% {
        bottom: 0%;
        left: 0%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

:root {
    /* Brand colors（基本はそのまま） */
    --color-main: #2FA4E7;
    /* メインブルー（CTA・強調） */
    --color-accent: #38D6FF;
    /* アニメーション・装飾 */
    --color-sub: #1E293B;
    /* 濃い文字・見出し用（旧subの代替） */
    --color-text: #0F172A;
    /* 通常テキスト */

    /* Background */
    --color-bg: #F8FAFC;
    /* 全体背景（うっすら青グレー） */
    --color-bg-card: #FFFFFF;
    /* カード背景 */
    --color-bg-card-hover: #F1F5F9;
    /* hover時にほんのり変化 */

    /* Border / UI */
    --color-border: rgba(15, 23, 42, 0.08);
    /* 境界線（薄く） */
    --color-text-muted: #64748B;
    /* 補足テキスト */

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--color-main) 0%, var(--color-accent) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(47, 164, 231, 0.15) 0%, rgba(56, 214, 255, 0.05) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(47, 164, 231, 0.2);

    /* Typography */
    --font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Layout */
    --header-height: 72px;
    --container-max: 1200px;
}


.label_cat {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    font-family: vinyl, sans-serif;
    text-transform: uppercase;
}

.label_date {
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
    font-family: vinyl, sans-serif;
}

.label_more_link {
    color: #265EDD;
    font-family: vinyl, sans-serif;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    letter-spacing: 0.15rem;
    font-size: 1.5rem;
    cursor: pointer;
    text-decoration: none;
}

.label_more_link__icon {
    position: relative;
    margin-left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.label_more_link__icon_file {
    fill: #265EDD;
    width: 11px;
    height: 8px;
    display: block;
}

.label_more_link__icon::before {
    content: '';
    display: block;
    height: 1.5px;
    width: 20px;
    position: absolute;
    background: #265EDD;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -20px;
}

.label_more_link__icon::after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    border: 1px solid #265EDD;
    border-radius: 100px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    bottom: 10px;
}

.label_more_link:hover {
    text-decoration: none;
}

.label_more_link:hover .label_more_link__icon::after {
    -webkit-animation-name: flash;
    animation-name: flash;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@keyframes flash {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

.label_more_link .label {
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
}

.label_back_link {
    color: #265EDD;
    font-family: vinyl, sans-serif;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    letter-spacing: 0.15rem;
    font-size: 1.5rem;
    cursor: pointer;
    text-decoration: none;
}

.label_back_link__icon {
    position: relative;
    margin-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.label_back_link__icon_file {
    fill: #265EDD;
    width: 11px;
    height: 8px;
    display: block;
}

.label_back_link__icon::before {
    content: '';
    display: block;
    height: 1.5px;
    width: 20px;
    position: absolute;
    background: #265EDD;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -20px;
}

.label_back_link__icon::after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    border: 1px solid #265EDD;
    border-radius: 100px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    bottom: 10px;
}

.label_back_link:hover {
    text-decoration: none;
}

.label_back_link:hover .label_back_link__icon::after {
    -webkit-animation-name: flash;
    animation-name: flash;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@keyframes flash {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

.label_back_link .label {
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
}

.covered_link_content {
    position: relative;
    cursor: pointer;
}

.covered_link_content .covered_link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    z-index: 10;
}

.covered_link_content:hover .label_more_link__icon::after {
    -webkit-animation-name: flash;
    animation-name: flash;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@keyframes flash {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

.slider_control_navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 100;
}

.slider_control_navigation__icon {
    background: rgba(38, 94, 221, 0.4);
    border-radius: 100px;
    padding: 20px;
    margin: 0 5px;
    fill: #fff;
    width: 20px;
    height: 20px;
    display: block;
    cursor: pointer;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider_control_navigation .swiper-button-disabled {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.index_large_en {
    font-family: vinyl, sans-serif;
    font-size: 10rem;
    letter-spacing: 0.25rem;
    line-height: 1;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    color: #265EDD;
}

@media (min-width: 750px) and (max-width: 991px) {
    .index_large_en {
        font-size: 8rem;
        letter-spacing: 0.12rem;
    }
}

@media (max-width: 749px) {
    .index_large_en {
        font-size: 6rem;
        letter-spacing: 0.1rem;
    }
}

.index_mid_en {
    font-family: vinyl, sans-serif;
    font-size: 7.2rem;
    letter-spacing: 0.15rem;
    line-height: 1;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    color: #265EDD;
    text-transform: uppercase;
}

@media (min-width: 750px) and (max-width: 991px) {
    .index_mid_en {
        font-size: 6rem;
        letter-spacing: 0.1rem;
    }
}

@media (max-width: 749px) {
    .index_mid_en {
        font-size: 3.9rem;
        letter-spacing: 0.1rem;
    }
}

.index_min_en {
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
    font-family: vinyl, sans-serif;
    color: #00A7FF;
}

.index_large_jp {
    display: block;
    font-family: fot-cezanne-pron, sans-serif;
    font-size: 3.6rem;
    letter-spacing: 0.32rem;
    line-height: 1.5;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    color: #265EDD;
}

@media (min-width: 750px) and (max-width: 991px) {
    .index_large_jp {
        font-size: 2.8rem;
        letter-spacing: 0.32rem;
    }
}

@media (max-width: 749px) {
    .index_large_jp {
        font-size: 2.75rem;
        letter-spacing: 0.3rem;
    }
}

.index_mid_jp {
    display: block;
    font-family: fot-cezanne-pron, sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.25rem;
    line-height: 1.6;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    color: #265EDD;
}

@media (max-width: 749px) {
    .index_mid_jp {
        font-size: 1.8rem;
        letter-spacing: 0.2rem;
    }
}

.index_min_jp {
    display: block;
    font-family: fot-cezanne-pron, sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    line-height: 1.5;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    color: #265EDD;
}

@media (max-width: 749px) {
    .index_min_jp {
        font-size: 1.6rem;
        letter-spacing: 0.1rem;
    }
}

.button_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #265EDD;
    color: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    text-decoration: none;
}

.button_link:hover {
    text-decoration: none;
    color: #fff;
}

@media (min-width: 992px) {
    .button_link:hover {
        -webkit-box-shadow: 0 14px 20px -10px rgba(0, 0, 0, 0.7);
        box-shadow: 0 14px 20px -10px rgba(0, 0, 0, 0.7);
    }
}

.button_link .icon {
    width: 20px;
    height: 20px;
    fill: #fff;
    display: block;
    margin-right: 5px;
}

.body_text {
    line-height: 2;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    letter-spacing: 0.15rem;
}

.body_text h1,
.body_text h2,
.body_text h3 {
    margin: 25px 0 10px;
}

.body_text h1:first-child,
.body_text h2:first-child,
.body_text h3:first-child {
    margin: 0 0 10px;
}

.body_text h1 {
    display: block;
    font-family: fot-cezanne-pron, sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.25rem;
    line-height: 1.6;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    color: #265EDD;
}

@media (max-width: 749px) {
    .body_text h1 {
        font-size: 1.8rem;
        letter-spacing: 0.2rem;
    }
}

.body_text h2,
.body_text h3 {
    display: block;
    font-family: fot-cezanne-pron, sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    line-height: 1.5;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    color: #265EDD;
}

@media (max-width: 749px) {

    .body_text h2,
    .body_text h3 {
        font-size: 1.6rem;
        letter-spacing: 0.1rem;
    }
}

.body_text .label_more_link {
    margin: 25px 0;
}

.body_text .label_more_link:last-child {
    margin-bottom: 0;
}

.text_tel_num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    margin-right: 30px;
}

@media (max-width: 749px) {
    .text_tel_num {
        display: none;
    }
}

.text_tel_num_icon {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-right: 3px;
}

.text_tel_num_num {
    color: #fff;
    letter-spacing: 0.18rem;
    font-size: 2.4rem;
    font-weight: normal;
    font-family: vinyl, sans-serif;
    white-space: nowrap;
}

.text_tel_num_num a {
    color: #fff;
    text-decoration: none;
}

.business_time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: vinyl, sans-serif;
    margin-bottom: 15px;
    margin-right: 20px;
}

@media (max-width: 749px) {
    .business_time {
        margin-right: 0;
        margin-bottom: 50px;
    }
}

.business_time dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 25px;
}

.business_time dl:last-child {
    margin-right: 0;
}

.business_time dt {
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
    margin-right: 15px;
}

.business_time dd {
    font-size: 2rem;
    letter-spacing: 0.15rem;
}

.topics_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    margin: 0 0 15px 0;
    color: #00A7FF;
    font-family: vinyl, sans-serif;
}

@media (max-width: 749px) {
    .topics_head {
        margin: 0 0 5px 0;
    }
}

.topics_head .label_cat {
    font-size: 1.4rem;
    margin-bottom: 0;
}

.topics_head .label_date {
    font-size: 1.4rem;
}

.memo_text {
    color: #656d6e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.2rem;
    line-height: 1.5;
}

.memo_text::before {
    content: 'â€»';
    margin-right: 3px;
}

.access_map {
    background: #265EDD;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 50vh;
}

.access_map iframe {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    mix-blend-mode: luminosity;
    width: 100%;
    height: 100%;
    border: 0;
    margin-bottom: -5px;
    padding: 0;
}

.recommended_balloon {
    padding: 25px 25px 25px 35px;
    border-radius: 15px;
    border: 2px solid #265EDD;
    font-family: fot-cezanne-pron, sans-serif;
    letter-spacing: 0.05rem;
    font-size: 1.5rem;
    line-height: 1.6;
    color: #265EDD;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

@media (max-width: 749px) {
    .recommended_balloon {
        padding: 25px 25px 25px 25px;
    }
}

.recommended_balloon::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    border-radius: 100px;
    background: #265EDD;
    left: 0;
    top: 50%;
    border: 10px solid #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 749px) {
    .recommended_balloon::before {
        width: 2px;
        height: 25px;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        left: 50%;
        top: -5px;
    }
}

.index_lesson_en {
    font-size: 5.2rem;
}

@media (max-width: 749px) {
    .index_lesson_en {
        font-size: 3.6rem;
    }
}

.index_lesson_jp {
    font-size: 2rem;
    letter-spacing: 0.3rem;
}

.common_header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 500;
    padding: 25px 40px 25px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media (max-width: 749px) {
    .common_header {
        padding: 25px 20px 0 15px;
    }
}

.common_header__logo {
    padding: 5px 0 10px;
    font-size: 2rem;
    color: #fff;
}

.logo {
    width: 80px;
}

@media (max-width: 749px) {
    .common_header__logo {
        padding: 5px 0 10px;
    }
}

.common_header__logo_file {
    display: block;
    width: 240px;
    height: 48px;
    fill: #fff;
}

.common_header__utility {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.common_header__navigtion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: vinyl, sans-serif;
    margin-right: 30px;
}

@media (max-width: 991px) {
    .common_header__navigtion {
        display: none;
    }
}

.common_header__navigtion li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.common_header__navigtion li::after {
    content: '';
    display: block;
    background: #fff;
    width: 1px;
    height: 25px;
    margin: 0 25px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.js-min_header .common_header__navigtion li::after {
    background: #265EDD;
}

.common_header__navigtion li:last-child::after {
    display: none;
}

.common_header__navigtion a {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
}

.common_header__navigtion a:hover {
    color: #fff;
}

.common_header .common_header__logo_file,
.common_header .common_header__tel_icon,
.common_header .text_tel_num,
.common_header .common_header__navigtion a,
.common_header .common_header__navigtion li::after,
.common_header .js-menu_icon span {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.common_header.js-min_header {
    isolation: isolate;
    padding: 15px 30px;
}

.common_header.js-min_header .common_header__utility {
    mix-blend-mode: difference;
}

.common_header.js-min_header .common_header__logo {
    mix-blend-mode: multiply;
}


@media (max-width: 749px) {
    .common_header.js-min_header {
        padding: 10px 25px 10px 15px;
    }
}

.common_header.js-min_header .common_header__logo_file,
.common_header.js-min_header .text_tel_num_icon {
    fill: #d49d00;
}

.common_header.js-min_header .common_header__logo_file {
    width: 200px;
    height: 40px;
}

.common_header.js-min_header .text_tel_num_num,
.common_header.js-min_header .common_header__navigtion a,
.common_header.js-min_header .common_header__navigtion li::after {
    color: #265EDD;
}

.common_header.js-min_header .js-menu_icon span {
    background: #265EDD;
}

.common_footer {
    width: 100%;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.common_footer__inner {
    margin: 0 auto;
    max-width: 1200px;
    padding: 40px;
    position: relative;
    z-index: 40;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #265EDD;
}

@media (max-width: 991px) {
    .common_footer__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 40px 25px;
    }
}

.common_footer__inner_coporate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media (max-width: 749px) {
    .common_footer__inner_coporate {
        margin-top: 15px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.common_footer__inner_reserve {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}

@media (max-width: 749px) {
    .common_footer__inner_reserve {
        margin-bottom: 25px;
    }
}

.common_footer__inner_reserve .button_link {
    background: #fff;
    color: #265EDD;
    text-decoration: none;
}

.common_footer__inner_reserve .button_link .icon {
    fill: #265EDD;
}

.common_footer .footer_copy {
    font-family: fot-cezanne-pron, sans-serif;
    padding: 15px 30px;
    font-size: 1.6rem;
    letter-spacing: 0.15rem;
    line-height: 1.6;
}

@media (max-width: 749px) {
    .common_footer .footer_copy {
        text-align: center;
    }
}

.common_footer__inner_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

@media (min-width: 750px) and (max-width: 991px) {
    .common_footer__inner_content {
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 749px) {
    .common_footer__inner_content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }
}

.common_footer__inner_links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px;
    margin-bottom: 5px;
}

@media (min-width: 750px) and (max-width: 991px) {
    .common_footer__inner_links {
        padding: 0 35px 0 0;
    }
}

@media (max-width: 749px) {
    .common_footer__inner_links {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        padding: 0px;
    }
}

.common_footer__inner_links li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 749px) {
    .common_footer__inner_links li {
        width: 50%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 15px;
    }
}

.common_footer__inner_links li::after {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: #265EDD;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 749px) {
    .common_footer__inner_links li::after {
        display: none;
    }
}

.common_footer__inner_links li:last-child::after {
    display: none;
}

.common_footer__inner_links li:last-child a {
    padding: 10px 0 10px 20px;
}

@media (max-width: 749px) {
    .common_footer__inner_links li:last-child a {
        padding: 10px 20px;
    }
}

.common_footer__inner_links a {
    color: #265EDD;
    text-decoration: none;
    padding: 10px 20px;
    font-family: vinyl, sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
    display: block;
}

@media (max-width: 749px) {
    .common_footer__inner_links a {
        font-size: 1.5rem;
    }
}

.common_footer__inner_links a:hover {
    color: #265EDD;
}

.common_footer .copyright_text {
    text-decoration: none;
    margin-top: 10px;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    display: block;
}

.common_footer .footer_coporate_logo__image_file {
    fill: #265EDD;
    width: 150px;
    height: 150px;
}

@media (max-width: 749px) {
    .common_footer .footer_coporate_logo__image_file {
        width: 135px;
        height: 135px;
    }
}

.common_footer .footer_tagline__image_file {
    fill: #265EDD;
    width: 180px;
    height: 35px;
}

@media (max-width: 749px) {
    .common_footer .footer_tagline__image_file {
        margin-top: 35px;
        width: 120px;
        height: 35px;
    }
}

.common_footer .text_tel_num_num {
    color: #265EDD;
}

.common_footer .text_tel_num_num a {
    color: #265EDD;
}

.common_footer .text_tel_num_icon {
    fill: #265EDD;
}

.common_footer.nav_open {
    -webkit-filter: blur(20px);
    filter: blur(20px);
}

.global_navigation {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 400;
    background: rgba(38, 94, 221, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.global_navigation.nav_open {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.global_navigation__inner {
    padding: 30px 30px 30px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 749px) {
    .global_navigation__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow: scroll;
        width: 80%;
        padding: 0 10%;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.global_navigation__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 749px) {
    .global_navigation__content {
        padding-top: 200px;
        padding-bottom: 60px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.global_navigation__list {
    padding: 0 120px 0 0;
}

.global_navigation__label {
    margin-bottom: 40px;
}

.global_navigation__link {
    color: #fff;
    text-decoration: none;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.global_navigation__link:hover {
    color: #fff;
}

@media (min-width: 992px) {
    .global_navigation__link:hover {
        color: #E2FF00;
    }
}

.global_navigation .label_en {
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 0.17rem;
    font-family: vinyl, sans-serif;
    margin-bottom: 2px;
}

@media (max-width: 749px) {
    .global_navigation .label_en {
        font-size: 2rem;
        letter-spacing: 0.15rem;
    }
}

.global_navigation .label_en_mid {
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.17rem;
    font-family: vinyl, sans-serif;
    margin-bottom: 2px;
}

@media (max-width: 749px) {
    .global_navigation .label_en_mid {
        font-size: 2rem;
        letter-spacing: 0.15rem;
    }
}

.global_navigation .label_en_min {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.15rem;
    font-family: vinyl, sans-serif;
    margin-bottom: 2px;
}

.global_navigation .label_jp {
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    font-family: fot-cezanne-pron, sans-serif;
}

@media (max-width: 749px) {
    .global_navigation .label_jp {
        font-size: 1.2rem;
    }
}

.global_navigation__sub_list {
    padding: 0 60px 0 0;
}

.global_navigation__sub_label {
    margin-bottom: 40px;
}

.global_navigation .nav_icon {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-bottom: 5px;
}

.global_navigation .nav_icon.join {
    width: 34px;
    height: 34px;
}

.global_navigation__button {
    color: #fff;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 30px;
    border-radius: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

@media (max-width: 749px) {
    .global_navigation__button .label_en_min {
        font-size: 1.75rem;
    }

    .global_navigation__button .nav_icon {
        width: 25px;
        height: 25px;
    }

    .global_navigation__button .nav_icon.join {
        width: 30px;
        height: 30px;
    }
}

.global_navigation__button_list {
    margin-top: -20px;
}

@media (max-width: 749px) {
    .global_navigation__button_list {
        margin-top: 5px;
        position: fixed;
        right: 5%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.global_navigation__button:hover {
    color: #fff;
}

@media (min-width: 992px) {
    .global_navigation__button:hover {
        color: #E2FF00;
    }

    .global_navigation__button:hover .nav_icon {
        fill: #E2FF00;
    }
}

.global_navigation__button .label_en_min {
    letter-spacing: 0.15rem;
}

.global_navigation .text_tel_num {
    display: none;
    margin-left: -10px;
    margin-bottom: 35px;
}

@media (max-width: 749px) {
    .global_navigation .text_tel_num {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.global_navigation .text_tel_num_num {
    font-size: 2rem;
}

.global_navigation__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    right: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 749px) {
    .global_navigation__sns {
        position: static;
        right: auto;
        top: auto;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.global_navigation__sns_title {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #fff;
    font-family: vinyl, sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    margin-bottom: 20px;
}

@media (max-width: 749px) {
    .global_navigation__sns_title {
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    }
}

.global_navigation__sns_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 749px) {
    .global_navigation__sns_list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.global_navigation__sns_list li {
    margin-bottom: 30px;
}

@media (max-width: 749px) {
    .global_navigation__sns_list li {
        margin-bottom: 0;
        margin-right: 25px;
    }
}

.global_navigation__sns_list .sns_icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

body.nav_open {
    height: 100%;
    overflow: hidden;
}

.js-menu_icon {
    display: block;
    width: 30px;
    height: 21px;
    position: relative;
    z-index: 1001;
    cursor: pointer;
}

.js-menu_icon div {
    position: relative;
}

.js-menu_icon span {
    display: block;
    height: 1px;
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.js-menu_icon span:nth-child(1) {
    top: 0px;
}

.js-menu_icon span:nth-child(2) {
    top: 10px;
}

.js-menu_icon span:nth-child(3) {
    top: 20px;
}

.js-menu_icon.opened_nav span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.js-menu_icon.opened_nav span:nth-child(2) {
    width: 0;
    left: 50%;
}

.js-menu_icon.opened_nav span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.content_area {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    z-index: 20;
}

.content_area.nav_open {
    -webkit-filter: blur(20px);
    filter: blur(20px);
}

@media (max-width: 749px) {
    .buddy_list {
        margin: 0 15px;
    }
}

.buddy_list_container {
    overflow: hidden;
    padding: 40px 80px 0 12%;
    margin: 0 auto 40px;
    position: relative;
    z-index: 20;
}

@media (min-width: 750px) and (max-width: 991px) {
    .buddy_list_container {
        padding: 0 30px 0 16%;
    }
}

@media (max-width: 749px) {
    .buddy_list_container {
        padding: 0;
    }
}

.buddy_list_title {
    position: relative;
}

@media (max-width: 749px) {
    .buddy_list_title {
        padding: 30px 25px;
    }
}

.buddy_list_title .index_large_en {
    position: absolute;
    line-height: 1;
    left: 0;
    top: -40px;
    font-size: 12rem;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

@media (min-width: 750px) and (max-width: 991px) {
    .buddy_list_title .index_large_en {
        top: 0;
    }
}

@media (max-width: 749px) {
    .buddy_list_title .index_large_en {
        font-size: 6rem;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        position: static;
        left: auto;
        top: auto;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        margin-bottom: 10px;
    }
}

.buddy_list_title .index_mid_jp {
    padding: 0 30px 40px;
}

@media (max-width: 749px) {
    .buddy_list_title .index_mid_jp {
        padding: 0;
    }
}

.buddy_list .swiper-slide {
    max-width: 320px;
    width: auto;
    height: auto;
}

@media (min-width: 750px) and (max-width: 991px) {
    .buddy_list .swiper-slide {
        max-width: 240px;
    }
}

@media (max-width: 749px) {
    .buddy_list .swiper-slide {
        max-width: 200px;
    }
}

.buddy_list .swiper-slide.animated .image,
.buddy_list .swiper-slide.animated .buddy_name_en,
.buddy_list .buddy_content.animated .image,
.buddy_list .buddy_content.animated .buddy_name_en {
    opacity: 1;
}

.buddy_list .swiper-slide.animated .image,
.buddy_list .buddy_content.animated .image {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.buddy_list .swiper-slide.animated .buddy_name_en,
.buddy_list .buddy_content.animated .buddy_name_en {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.buddy_list .swiper-slide.animated .background::before,
.buddy_list .buddy_content.animated .background::before {
    opacity: 1;
    -webkit-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
}

.buddy_list .slider_control_navigation {
    position: absolute;
    top: 40px;
    right: 10px;
}

@media (min-width: 750px) and (max-width: 991px) {
    .buddy_list .slider_control_navigation {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .buddy_list .slider_control_navigation svg {
        margin-top: 10px;
    }
}

@media (max-width: 749px) {
    .buddy_list .slider_control_navigation {
        top: 0;
    }
}

.buddy_list__thumb {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.buddy_list__thumb .image {
    width: 100%;
    display: block;
    position: relative;
    z-index: 3;
    -webkit-transition: 1s;
    transition: 1s;
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
}

.buddy_list__thumb .background {
    border-radius: 30px;
    background: #265EDD;
    width: 100%;
    height: 80%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 749px) {
    .buddy_list__thumb .background {
        border-radius: 20px;
    }
}

.buddy_list__thumb .background::before {
    content: '';
    background: url(../images/object-diagonal-down.svg) no-repeat;
    background-position: right bottom;
    background-size: 120% 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 100%;
    right: 100%;
    z-index: 2;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    opacity: 0;
    -webkit-transform: translate(0%, 250%);
    transform: translate(0%, 250%);
}

.buddy_list .buddy_name_en {
    font-size: 5rem;
    color: #E2FF00;
    letter-spacing: 0.2rem;
    font-family: vinyl, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 20px;
    margin-top: -20%;
    position: relative;
    z-index: 5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    opacity: 0;
    -webkit-transform: translateX(10%);
    transform: translateX(10%);
}

@media (min-width: 750px) and (max-width: 991px) {
    .buddy_list .buddy_name_en {
        font-size: 4rem;
        padding: 0 10px;
    }
}

@media (max-width: 749px) {
    .buddy_list .buddy_name_en {
        font-size: 3.2rem;
        padding: 0 10px;
    }
}

.buddy_list .buddy_name {
    font-family: fot-cezanne-pron, sans-serif;
    color: #265EDD;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    font-weight: 600;
    font-weight: normal;
}

@media (max-width: 749px) {
    .buddy_list .buddy_name {
        font-size: 1.5rem;
    }
}

.buddy_list__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 20px 15px;
}

@media (max-width: 749px) {
    .buddy_list__text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 10px 10px 15px;
    }
}

@media (max-width: 749px) {
    .buddy_list__text .label_more_link {
        margin-top: 15px;
    }
}

.program_list {
    position: relative;
}

@media (min-width: 750px) and (max-width: 991px) {
    .program_list {
        padding: 0 30px;
    }
}

@media (max-width: 749px) {
    .program_list {
        padding: 0 15px;
    }
}

.program_list_container {
    overflow: hidden;
    padding: 0 80px 80px 12%;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

@media (min-width: 750px) and (max-width: 991px) {
    .program_list_container {
        padding: 0 0 60px;
    }
}

@media (max-width: 749px) {
    .program_list_container {
        padding: 0 0 40px;
    }
}

.program_list .swiper-slide {
    max-width: 460px;
    width: auto;
    height: auto;
}

@media (min-width: 750px) and (max-width: 991px) {
    .program_list .swiper-slide {
        max-width: 380px;
    }
}

@media (max-width: 749px) {
    .program_list .swiper-slide {
        max-width: 300px;
    }
}

.program_list .swiper-slide.animated .image {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    aspect-ratio: 3/2;
}

.program_list .slider_control_navigation {
    position: absolute;
    top: -30px;
    right: 10px;
}

@media (max-width: 749px) {
    .program_list .slider_control_navigation {
        top: -15px;
    }
}

.program_list__thumb {
    width: 100%;
    position: relative;
    margin-bottom: 25px;
}

.program_list__thumb .image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 3;
    -webkit-transition: 1s;
    transition: 1s;
    opacity: 0;
    border-radius: 30px;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
}

@media (max-width: 749px) {
    .program_list__thumb .image {
        border-radius: 20px;
    }
}

.program_list__text {
    padding: 0 20px;
}

@media (max-width: 749px) {
    .program_list__text {
        padding: 0 10px;
    }
}

.program_list__text .body_text {
    margin-bottom: 25px;
    line-height: 1.8;
}

.program_name {
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

@media (max-width: 749px) {
    .program_name {
        padding: 0 10px;
    }
}

.program_name_en {
    font-size: 4.2rem;
    color: #00A7FF;
    letter-spacing: 0.2rem;
    font-family: vinyl, sans-serif;
    margin: -20px 0 5px;
}

.program_name_jp {
    font-size: 1.8rem;
    color: #265EDD;
    letter-spacing: 0.1rem;
    font-family: fot-cezanne-pron, sans-serif;
}

.program_num {
    font-family: vinyl, sans-serif;
    font-size: 8rem;
    letter-spacing: 0.1rem;
    color: #00A7FF;
    position: absolute;
    z-index: 5;
    left: 20px;
    top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 749px) {
    .program_num {
        font-size: 6rem;
        -webkit-transform: translateY(-25%);
        transform: translateY(-25%);
        left: 10px;
    }
}

.page_text_section__body .program_name {
    padding: 0 70px 0 0;
    margin-bottom: 25px;
}

@media (max-width: 749px) {
    .page_text_section__body .program_name {
        padding: 0;
    }
}

.page_text_section__body .program_name_en {
    margin: 0 0 5px;
}

.page_text_section__body .program_num {
    left: auto;
    right: 0;
    -webkit-transform: translateY(-7%);
    transform: translateY(-7%);
}

.contents_list {
    position: relative;
}

@media (min-width: 750px) and (max-width: 991px) {
    .contents_list {
        padding: 0 30px;
    }
}

@media (max-width: 749px) {
    .contents_list {
        padding: 0 15px;
    }
}

.contents_list .slider_control_navigation {
    position: absolute;
    top: 0;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.contents_list_container,
.contact_list_container {
    overflow: hidden;
    padding: 30px 80px 0 12%;
    margin: 0 auto 40px;
    position: relative;
    z-index: 20;
}

.contact_list_container {
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .contents_list_container,
    .contact_list_container {
        padding: 30px 0 0 0;
        padding-inline: 20px;
    }
}

.contents_list .swiper-slide {
    max-width: 320px;
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: 30px;
    background: #265EDD;
    color: #E2FF00;
}

@media (min-width: 750px) and (max-width: 991px) {
    .contents_list .swiper-slide {
        max-width: 280px;
        border-radius: 20px;
    }
}

@media (max-width: 749px) {
    .contents_list .swiper-slide {
        max-width: 240px;
        border-radius: 20px;
    }
}

.contents_list .swiper-slide.animated .image {
    opacity: 1;
}

.contents_list .swiper-slide.animated .image {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.contents_list .swiper-slide.animated .buddy_name_en {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.contents_list .swiper-slide::before {
    content: '';
    background: url(../images/object-diagonal-down.svg) no-repeat;
    background-position: right bottom;
    background-size: 120% 100%;
    width: 80%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: -20%;
    z-index: 0;
}

.contents_list .swiper-slide::after {
    content: '';
    background: url(../images/object-diagonal-up.svg) no-repeat;
    background-position: right bottom;
    background-size: 120% 100%;
    width: 80%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: -10%;
    z-index: 0;
}

.contents_list__thumb {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.contents_list__thumb .image {
    width: 120%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 3;
    -webkit-transition: 1s;
    transition: 1s;
    opacity: 0;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
}

.contents_list__text {
    padding: 25px 25px 40px;
    position: relative;
    z-index: 2;
}

@media (min-width: 750px) and (max-width: 991px) {
    .contents_list__text {
        padding: 30px 25px;
    }
}

@media (max-width: 749px) {
    .contents_list__text {
        padding: 30px 25px;
    }
}

.contents_list .label_more_link {
    color: #E2FF00;
}

@media (max-width: 749px) {
    .contents_list .label_more_link {
        font-size: 1.3rem;
        margin-top: 2px;
    }
}

.contents_list .label_more_link__icon_file {
    fill: #E2FF00;
}

@media (max-width: 749px) {
    .contents_list .label_more_link__icon_file {
        width: 10px;
        height: 8px;
    }
}

@media (max-width: 749px) {
    .contents_list .label_more_link__icon {
        margin-left: 15px;
    }
}

.contents_list .label_more_link__icon::before {
    background: #E2FF00;
}

@media (max-width: 749px) {
    .contents_list .label_more_link__icon::before {
        width: 12px;
        left: -10px;
    }
}

.contents_list .label_more_link__icon::after {
    background: #E2FF00;
    border: 0;
}

.contents_list .contents_name_en {
    color: #E2FF00;
    font-size: 3.2rem;
    margin-bottom: 5px;
}

.contents_list .contents_name_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contents_list .contents_name_jp {
    margin: 10px 0;
}

.content_title__container {
    padding: 0 40px 50px;
}

@media (max-width: 749px) {
    .content_title__container {
        padding: 0 25px 25px;
    }
}

.tag_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 10px -5px;
}

.tag_list .tag_label,
.btn-submit {
    background: #00A7FF;
    color: #fff;
    font-family: fot-cezanne-pron, sans-serif;
    font-size: 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-radius: 100px;
    padding: 7px 12px;
    margin: 0 5px 5px 0;
    line-height: 1;
}

.tag_list .tag_label::before {
    content: '#';
    margin-right: 3px;
}

.float_btn_area {
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    right: 0;
    bottom: -200px;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 30px 0 0 0;
    overflow: hidden;
}

@media (max-width: 749px) {
    .float_btn_area {
        border-radius: 20px 0 0 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        bottom: 0;
        right: -200px;
    }
}

.float_btn_area.transform {
    bottom: 0;
}

@media (max-width: 749px) {
    .float_btn_area.transform {
        right: 0;
    }
}

.float_btn_area.nav_open {
    -webkit-filter: blur(20px);
    filter: blur(20px);
}

.float_btn_area .button_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 140px;
    min-height: 140px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

@media (max-width: 749px) {
    .float_btn_area .button_link {
        min-width: 80px;
        min-height: 80px;
    }
}

.float_btn_area .button_link .icon {
    fill: #fff;
    width: 30px;
    height: 30px;
    margin-right: 0;
    margin-bottom: 8px;
}

@media (max-width: 749px) {
    .float_btn_area .button_link .icon {
        margin-bottom: 3px;
    }
}

.float_btn_area .button_link .index_min_en,
.float_btn_area .button_link .index_min_jp {
    color: #fff;
}

.float_btn_area .button_link .index_min_en {
    font-size: 1.6rem;
}

@media (max-width: 749px) {
    .float_btn_area .button_link .index_min_en {
        display: none;
    }
}

@media (max-width: 749px) {
    .float_btn_area .button_link .index_min_jp {
        letter-spacing: 0.1rem;
        font-size: 1.2rem;
    }
}

.float_btn_area .button_link.reserve {
    background: #003476;
}

.float_btn_area .button_link.join {
    background: #00A7FF;
}

@media (min-width: 992px) {
    .float_btn_area .button_link:hover {
        background: #E2FF00;
    }

    .float_btn_area .button_link:hover .index_min_en,
    .float_btn_area .button_link:hover .index_min_jp {
        color: #003476;
    }

    .float_btn_area .button_link:hover .icon {
        fill: #003476;
    }
}

.page_title {
    background: #265EDD;
    min-height: 380px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (min-width: 750px) and (max-width: 991px) {
    .page_title {
        min-height: 320px;
    }
}

@media (max-width: 749px) {
    .page_title {
        min-height: 260px;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

.page_title.min_size {
    min-height: 140px;
    margin-bottom: 40px;
}

.page_title.nav_open {
    -webkit-filter: blur(20px);
    filter: blur(20px);
}

.page_title__area {
    position: relative;
    z-index: 11;
    margin: 0 auto;
    width: 100%;
    padding: 100px 80px 40px;
    max-width: 1420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 749px) {
    .page_title__area {
        padding: 130px 25px 50px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }
}

.page_title__area .index_mid_en,
.page_title__area .index_mid_jp {
    color: #fff;
}

@media (min-width: 750px) and (max-width: 991px) {
    .page_title__area .index_mid_en {
        font-size: 3.8rem;
        letter-spacing: 0.2rem;
    }
}

@media (max-width: 749px) {
    .page_title__area .index_mid_en {
        font-size: 2.8rem;
        letter-spacing: 0.2rem;
    }
}

@media (max-width: 749px) {
    .page_title__area .index_mid_jp {
        font-size: 1.4rem;
        letter-spacing: 0.13rem;
    }
}

.page_title__background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 10;
}

.page_title__background .animate_up {
    position: absolute;
    top: 0;
    left: 50%;
    width: 360px;
    height: 1500px;
    -webkit-transform: rotate(-40deg) translateY(100%);
    transform: rotate(-40deg) translateY(100%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
    border-radius: 1000px;
    overflow: hidden;
}

.page_title__background .animate_up::after {
    content: "";
    position: absolute;
    background: #0048EA;
    width: 100%;
    height: 100%;
    left: 0;
}

.page_title__background .animate_down {
    position: absolute;
    top: 0;
    right: 50%;
    width: 360px;
    height: 1500px;
    -webkit-transform: rotate(40deg) translateY(-150%);
    transform: rotate(40deg) translateY(-150%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 1000px;
    overflow: hidden;
}

.page_title__background .animate_down::after {
    content: "";
    position: absolute;
    background: #056DFA;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}

@media (max-width: 749px) {
    .page_title__background .animate_down {
        right: 130%;
        width: 180px;
    }
}

.page_title__background.animated .animate_up {
    -webkit-transform: rotate(-40deg) translateY(-50%);
    transform: rotate(-40deg) translateY(-50%);
}

.page_title__background.animated .animate_down {
    -webkit-transform: rotate(40deg) translateY(-50%);
    transform: rotate(40deg) translateY(-50%);
}

.content_button__area_center {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (max-width: 749px) {
    .content_button__area_center {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.content_button__area_between {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 749px) {
    .content_button__area_between {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.content_link__area_center {
    max-width: 1280px;
    margin: 30px auto 80px;
    padding: 30px 30px 0;
    border-top: 1px solid #656d6e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.content_link__area_between {
    width: 100%;
    max-width: 1280px;
    margin: 30px auto 80px;
    padding: 30px 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #656d6e;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 749px) {
    .content_link__area_between {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.page_content_article {
    position: relative;
    z-index: 20;
}

.content_wrap {
    margin: 0 auto 60px;
    padding: 0 80px;
    width: 100%;
    max-width: 1420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
}

.content_wrap .content_title__container {
    padding: 0;
}

@media (min-width: 750px) and (max-width: 991px) {
    .content_wrap {
        padding: 0 50px;
    }
}

@media (max-width: 749px) {
    .content_wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
        margin: 0 auto 20px;
    }
}

@media (max-width: 749px) {
    .content_wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
    }
}

.content_wrap.flex_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media (max-width: 749px) {
    .content_wrap.flex_row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.content_wrap.flex_row .content_title__container {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-top: 5px;
    margin-right: 40px;
    position: sticky;
    top: 100px;
}

@media (max-width: 749px) {
    .content_wrap.flex_row .content_title__container {
        position: static;
        top: auto;
    }
}

.content_wrap .content_title__container {
    padding: 0 20px;
    margin-bottom: 25px;
}

@media (max-width: 749px) {
    .content_wrap .content_title__container {
        padding: 0 25px;
        margin-bottom: 15px;
    }
}

.content_wrap .page_text_section {
    padding: 0;
}

.content_wrap .content_two_column,
.content_wrap .content_three_column {
    padding: 0;
}

@media (max-width: 749px) {

    .content_wrap .content_two_column,
    .content_wrap .content_three_column {
        padding: 0 15px;
    }
}

.page_text_section {
    margin: 0 auto 60px;
    padding: 0 80px;
    width: 100%;
    max-width: 1420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.page_text_section .content_title__container {
    padding: 0;
}

@media (min-width: 750px) and (max-width: 991px) {
    .page_text_section {
        padding: 0 50px;
    }
}

@media (max-width: 749px) {
    .page_text_section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
        margin: 0 auto 20px;
    }
}

.page_text_section__body {
    min-width: 380px;
    max-width: 580px;
    width: auto;
    padding: 5%;
    margin-left: -5%;
}

@media (min-width: 750px) and (max-width: 991px) {
    .page_text_section__body {
        min-width: 300px;
        max-width: 100%;
    }
}

@media (max-width: 749px) {
    .page_text_section__body {
        margin-left: 0;
        min-width: 0;
        padding: 40px 25px;
    }
}

.page_text_section__index {
    margin-bottom: 30px;
}

.page_text_section__index.index_mid_en {
    margin-bottom: 20px;
}

.page_text_section__image_title {
    fill: #265EDD;
    width: 300px;
    height: 60px;
    margin-bottom: 20px;
}

.page_text_section__paragraph {
    margin-bottom: 30px;
}

.page_text_section__paragraph:last-child {
    margin-bottom: 0;
}

.page_text_section__picture {
    width: 60%;
    border-radius: 40px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -15%;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (min-width: 750px) and (max-width: 991px) {
    .page_text_section__picture {
        width: 70%;
        margin-top: 5%;
    }
}

@media (max-width: 749px) {
    .page_text_section__picture {
        margin: 0;
        width: 100%;
        border-radius: 0;
    }
}

.page_text_section__picture.mid_size {
    width: 50%;
}

@media (min-width: 750px) and (max-width: 991px) {
    .page_text_section__picture.mid_size {
        width: 40%;
        display: none;
    }
}

@media (max-width: 749px) {
    .page_text_section__picture.mid_size {
        margin: 0;
        width: 100%;
        border-radius: 0;
    }
}

.page_text_section__picture.min_size {
    width: 35%;
}

@media (min-width: 750px) and (max-width: 991px) {
    .page_text_section__picture.min_size {
        width: 30%;
        display: none;
    }
}

@media (max-width: 749px) {
    .page_text_section__picture.min_size {
        margin: 0;
        width: 100%;
        border-radius: 0;
    }
}

.page_text_section__picture img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 580px;
    display: block;
}

@media (min-width: 750px) and (max-width: 991px) {
    .page_text_section__picture img {
        min-height: 420px;
    }
}

@media (max-width: 749px) {
    .page_text_section__picture img {
        width: 100%;
        height: 100%;
        min-height: 280px;
    }
}

@media (max-width: 749px) {
    .page_text_section__picture.buddy_picture {
        margin: 0 15px;
        width: calc(100% - 30px);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.page_text_section__picture.buddy_picture .image {
    width: 100%;
    max-width: 360px;
    min-height: 100%;
    z-index: 2;
}

@media (max-width: 749px) {
    .page_text_section__picture.buddy_picture .image {
        max-width: 180px;
    }
}

.page_text_section__picture.buddy_picture .background {
    border-radius: 40px;
    background: #265EDD;
    width: 100%;
    height: 80%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 749px) {
    .page_text_section__picture.buddy_picture .background {
        border-radius: 20px;
    }
}

.page_text_section__picture.buddy_picture .background::before {
    content: '';
    background: url(../images/object-diagonal-down.svg) no-repeat;
    background-position: right bottom;
    background-size: 120% 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 100%;
    right: 100%;
    z-index: 2;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    opacity: 0;
    -webkit-transform: translate(0%, 250%);
    transform: translate(0%, 250%);
}

.page_text_section.js-scroll_animation .page_text_section__picture {
    -webkit-filter: blur(20px);
    filter: blur(20px);
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
    opacity: 0;
}

.page_text_section.animated .page_text_section__picture {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.page_text_section.animated .background::before {
    opacity: 1;
    -webkit-transform: translate(100%, 100%);
    transform: translate(100%, 100%);
}

.page_text_section.mid_size {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.page_text_section.mid_size .page_text_section__picture {
    margin-top: 0;
}

.page_text_section.mid_size .page_text_section__picture img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    min-height: 220px;
}

@media (max-width: 749px) {
    .page_text_section.mid_size .page_text_section__picture img {
        min-height: 160px;
    }
}

.page_text_section.row_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media (max-width: 749px) {
    .page_text_section.row_reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.page_text_section.row_reverse .page_text_section__body {
    margin-right: -60px;
    margin-left: 0;
}

@media (max-width: 749px) {
    .page_text_section.row_reverse .page_text_section__body {
        margin: 0;
    }
}

.content_two_column {
    margin: 0 auto 60px;
    padding: 0 80px;
    width: 100%;
    max-width: 1420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.content_two_column .content_title__container {
    padding: 0;
}

@media (min-width: 750px) and (max-width: 991px) {
    .content_two_column {
        padding: 0 50px;
    }
}

@media (max-width: 749px) {
    .content_two_column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
        margin: 0 auto 20px;
    }
}

@media (max-width: 749px) {
    .content_two_column {
        padding: 0 15px;
    }
}

.content_two_column .page_text_section {
    width: 48%;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 0;
    margin: 0 0 40px;
}

@media (min-width: 750px) and (max-width: 991px) {
    .content_two_column .page_text_section {
        width: 100%;
    }
}

@media (max-width: 749px) {
    .content_two_column .page_text_section {
        width: 100%;
        margin: 0 0 25px;
    }
}

.content_two_column .page_text_section__picture {
    width: 50%;
    border-radius: 30px;
}

.content_two_column .page_text_section__picture img {
    height: 100%;
}

@media (max-width: 749px) {
    .content_two_column .page_text_section__picture {
        width: 100%;
        border-radius: 20px;
    }
}

.content_two_column .page_text_section__body {
    margin-left: -40px;
    min-width: 0;
    width: 60%;
}

@media (max-width: 749px) {
    .content_two_column .page_text_section__body {
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 25px 15px;
    }
}

@media (max-width: 749px) {
    .content_two_column .page_text_section.row_reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.content_two_column .page_text_section.row_reverse .page_text_section__body {
    margin-right: -5%;
}

.content_two_column .page_text_section__index {
    line-height: 1.5;
    margin-bottom: 20px;
}

@media (max-width: 749px) {
    .content_two_column .page_text_section__index.index_min_jp {
        margin-bottom: 10px;
    }
}

@media (max-width: 749px) {
    .content_two_column.buddy_profile {
        padding: 0 25px;
    }
}

.content_two_column.buddy_profile .body_text .index_mid_en {
    margin-bottom: 15px;
}

.content_three_column {
    margin: 0 auto 60px;
    padding: 0 80px;
    width: 100%;
    max-width: 1420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.content_three_column .content_title__container {
    padding: 0;
}

@media (min-width: 750px) and (max-width: 991px) {
    .content_three_column {
        padding: 0 50px;
    }
}

@media (max-width: 749px) {
    .content_three_column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
        margin: 0 auto 20px;
    }
}

@media (max-width: 749px) {
    .content_three_column {
        padding: 0 15px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.content_three_column .page_text_section {
    width: 31%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 0;
    margin: 0 0 40px;
}

@media (max-width: 749px) {
    .content_three_column .page_text_section {
        width: 48%;
    }
}

.content_three_column .page_text_section__picture {
    width: 100%;
    border-radius: 30px;
}

@media (max-width: 749px) {
    .content_three_column .page_text_section__picture {
        border-radius: 20px;
    }
}

.content_three_column .page_text_section__body {
    padding: 25px 5%;
    margin-left: 0;
    min-width: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.content_three_column .page_text_section.row_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.content_three_column .page_text_section.row_reverse .page_text_section__body {
    margin-right: 0;
}

.content_three_column .page_text_section__index {
    line-height: 1.6;
    margin-bottom: 15px;
}

.content_three_column .page_text_section__image_title {
    margin-bottom: 15px;
}

.content_three_column .buddy_content {
    margin-bottom: 0;
}

.content_three_column::after {
    content: '';
    width: 31%;
}

@media (min-width: 750px) and (max-width: 991px) {
    .content_three_column::after {
        width: 48%;
    }
}

@media (max-width: 749px) {
    .content_three_column::after {
        width: 100%;
    }
}

.content_faq {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 60px;
    width: 100%;
}

.content_faq:first-child {
    margin-top: 40px;
}

@media (max-width: 749px) {
    .content_faq {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.content_faq .content_title__container {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 60px;
}

.content_faq__container {
    width: 100%;
}

@media (max-width: 749px) {
    .content_faq__container {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 15px;
    }
}

.content_faq__content {
    padding: 15px 35px 15px 15px;
    border-top: 1px solid #265EDD;
}

@media (max-width: 749px) {
    .content_faq__content {
        padding: 15px 10px 15px 0;
    }
}

.content_faq__content:last-child {
    border-bottom: 1px solid #265EDD;
}

.content_faq__question,
.content_faq__answer {
    padding: 15px 0 15px 50px;
    position: relative;
}

.content_faq__question::before,
.content_faq__answer::before {
    font-size: 4rem;
    line-height: 1;
    letter-spacing: 0.15rem;
    font-family: vinyl, sans-serif;
    color: #265EDD;
    font-weight: normal;
    position: absolute;
    left: 10px;
    top: 12px;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    font-weight: normal;
}

.content_faq__question {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.content_faq__question::before {
    content: 'Q.';
}

.content_faq__question.faq_opened .question_icon {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.content_faq__answer {
    display: none;
}

.content_faq__answer::before {
    content: 'A.';
    color: #265EDD;
}

.content_faq__answer h1,
.content_faq__answer h2,
.content_faq__answer h3 {
    color: #265EDD;
    margin-bottom: 10px;
    font-weight: normal;
}

.content_faq__answer p {
    line-height: 1.8;
}

.content_faq__answer p:first-child {
    margin-top: 8px;
}

.content_faq .title_label,
.content_faq .content_faq__answer h1,
.content_faq .content_faq__answer h2,
.content_faq .content_faq__answer h3 {
    font-family: fot-cezanne-pron, sans-serif;
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    font-weight: normal;
}

@media (max-width: 749px) {

    .content_faq .title_label,
    .content_faq .content_faq__answer h1,
    .content_faq .content_faq__answer h2,
    .content_faq .content_faq__answer h3 {
        font-size: 1.6rem;
    }
}

.content_faq .question_icon {
    display: block;
    position: relative;
    margin-left: auto;
    width: 30px;
    height: 30px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 749px) {
    .content_faq .question_icon {
        width: 20px;
        height: 20px;
    }
}

.content_faq .question_icon::before,
.content_faq .question_icon::after {
    content: '';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #265EDD;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.content_faq .question_icon::before {
    width: 100%;
    height: 1.5px;
}

.content_faq .question_icon::after {
    width: 1.5px;
    height: 100%;
}

.description_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 25px;
}

.description_wrapper:last-child {
    margin-bottom: 0;
}

@media (max-width: 749px) {
    .description_wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.description_wrapper .description_content {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 1px solid #265EDD;
    padding: 0 30px 0 0;
    margin: 0 30px 0 0;
}

@media (max-width: 749px) {
    .description_wrapper .description_content {
        border-right: 0;
        border-bottom: 1px solid #265EDD;
        padding: 0 0 15px 0;
        margin: 0 0 25px 0;
    }
}

.description_wrapper .description_content:last-child {
    border-right: 0;
    padding: 0;
    margin: 0;
}

@media (max-width: 749px) {
    .description_wrapper .description_content:last-child {
        border-right: 0;
        border-bottom: 0;
    }
}

.description_content .content_title__container {
    margin-bottom: 25px;
}

.description_content .content_title__container .index_mid_en {
    font-size: 3.2rem;
    letter-spacing: 0.2rem;
}

.description_content dl,
.description_content dt,
.description_content dd {
    color: #265EDD;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.description_content dl {
    padding: 0 0 15px 0;
}

@media (max-width: 749px) {
    .description_content dl {
        padding-bottom: 10px;
    }
}

.description_content dl.flex_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 5px 0;
}

.description_content dl.flex_wrap dt {
    margin: 10px 15px 10px 0;
}

@media (max-width: 749px) {
    .description_content dl.flex_wrap dt {
        width: 100%;
        margin-bottom: 10px;
    }
}

.description_content dl.flex_wrap dd {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 30%;
}

@media (max-width: 749px) {
    .description_content dl.flex_wrap dd {
        min-width: 42%;
    }
}

@media (max-width: 749px) {
    .description_content dl.flex_wrap .value {
        font-size: 2.6rem;
        letter-spacing: 0.15rem;
        font-family: vinyl, sans-serif;
    }
}

.description_content dt {
    white-space: nowrap;
    margin-right: 20px;
}

@media (max-width: 749px) {
    .description_content dt {
        margin-right: 10px;
    }
}

.description_content dd {
    white-space: nowrap;
    margin-right: 20px;
}

.description_content dd:last-child {
    margin-right: 0;
}

.description_content .label {
    line-height: 1;
    border-radius: 100px;
    border: 1px solid #265EDD;
    font-family: fot-cezanne-pron, sans-serif;
    padding: 5px 10px;
    display: block;
}

.description_content .value {
    font-size: 3.2rem;
    letter-spacing: 0.2rem;
    font-family: vinyl, sans-serif;
}

@media (max-width: 749px) {
    .description_content .value {
        font-size: 2.4rem;
        letter-spacing: 0.15rem;
    }
}

.description_content .unit {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    font-family: fot-cezanne-pron, sans-serif;
}

.description_content .min_text {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    font-family: fot-cezanne-pron, sans-serif;
}

.lesson_description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.lesson_description dl,
.lesson_description dt,
.lesson_description dd {
    color: #265EDD;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lesson_description dl {
    padding: 0 25px 15px 0;
}

@media (max-width: 749px) {
    .lesson_description dl.flex_wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 749px) {
    .lesson_description dl.flex_wrap dt {
        width: 100%;
        margin-bottom: 10px;
    }
}

.lesson_description dl.flex_wrap dd {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 30%;
}

@media (max-width: 749px) {
    .lesson_description dl.flex_wrap dd {
        min-width: 42%;
    }
}

@media (max-width: 749px) {
    .lesson_description dl.flex_wrap .value {
        font-size: 2.6rem;
        letter-spacing: 0.15rem;
        font-family: vinyl, sans-serif;
    }
}

.lesson_description dt {
    white-space: nowrap;
    margin-right: 20px;
}

.lesson_description dd {
    white-space: nowrap;
    margin-right: 20px;
}

.lesson_description dd:last-child {
    margin-right: 0;
}

.lesson_description .label {
    line-height: 1;
    border-radius: 100px;
    font-size: 1.3rem;
    font-family: fot-cezanne-pron, sans-serif;
    display: block;
    color: #00A7FF;
}

.lesson_description .value {
    font-size: 3.2rem;
    letter-spacing: 0.2rem;
    font-family: vinyl, sans-serif;
}

@media (max-width: 749px) {
    .lesson_description .value {
        font-size: 2rem;
        letter-spacing: 0.15rem;
        font-family: vinyl, sans-serif;
    }
}

.lesson_description .unit {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    font-family: fot-cezanne-pron, sans-serif;
}

.lesson_description .min_text {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    font-family: fot-cezanne-pron, sans-serif;
}

.photo_slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

@media (max-width: 749px) {
    .photo_slider {
        margin-top: -20px;
        margin-bottom: 0;
    }
}

.photo_slider .swiper-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.photo_slider .swiper-slide {
    width: 480px;
}

@media (max-width: 749px) {
    .photo_slider .swiper-slide {
        width: 240px;
    }
}

.photo_slider .swiper-slide img {
    width: 100%;
    display: block;
}

.program_fature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.program_fature__content {
    width: 48%;
    border: 2px solid #265EDD;
    border-radius: 25px;
    padding: 35px 35px;
    margin-top: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 749px) {
    .program_fature__content {
        width: 100%;
        border-radius: 15px;
        margin-top: 65px;
    }
}

.program_fature__heading {
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: -70px 0 20px 0;
    padding: 0 20px;
}

.program_fature__heading .label,
.program_fature__heading .num {
    font-family: vinyl, sans-serif;
}

.program_fature__heading .label {
    letter-spacing: 0.15rem;
    font-size: 2rem;
    margin-bottom: 5px;
    color: #265EDD;
    margin-bottom: 5px;
}

.program_fature__heading .num {
    background: #265EDD;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 2rem;
}

@media (min-width: 750px) and (max-width: 991px) {
    .archive_topics_list .page_text_section {
        width: 48%;
    }
}

@media (max-width: 749px) {
    .archive_topics_list .page_text_section {
        width: 100%;
    }
}

@media (max-width: 749px) {
    .archive_topics_list .page_text_section__body {
        padding: 25px 5% 0;
    }
}

.archive__title_area {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 40px;
    padding: 0 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 749px) {
    .archive__title_area {
        padding: 0 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.archive__title_area .content_title__container {
    margin-bottom: 0;
    padding: 0;
}

.archive__form_navigation_container {
    border-radius: 10px;
    margin: 0 15px 20px;
    width: 320px;
    position: relative;
    z-index: 200;
}

@media (max-width: 749px) {
    .archive__form_navigation_container {
        margin: 0;
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }
}

.archive__form_navigation_selected {
    padding: 20px 15px;
    display: none;
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 20;
    border-bottom: 1px solid #265EDD;
    color: #265EDD;
}

@media (max-width: 749px) {
    .archive__form_navigation_selected {
        margin-top: 25px;
    }
}

.archive__form_navigation_selected::after {
    content: '\f3d0';
    font-family: 'ionicons';
    font-size: 1.6rem;
    letter-spacing: 0;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 20px;
    line-height: 20px;
    border-radius: 100%;
    text-align: center;
    padding: 3px;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    z-index: 0;
    color: #265EDD;
}

.archive__form_navigation {
    border-radius: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    -webkit-box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.4);
    border-radius: 0;
    display: none;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.archive__form_navigation li {
    width: 100%;
    background: #fff;
}

.archive__form_navigation li a {
    padding: 20px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-decoration: none;
    color: #265EDD;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    line-height: 1.5;
}

.archive__form_navigation li a:hover {
    background: #265EDD;
    color: #fff;
}

.archive__form_navigation li a.current {
    background: #265EDD;
    color: #fff;
}

.page_navigation_content {
    max-width: 1240px;
    margin: 0 auto 40px;
}

.archive_page_navigation {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.archive_page_navigation li,
.archive_page_navigation a,
.archive_page_navigation span {
    margin-right: 15px;
}

@media (max-width: 749px) {

    .archive_page_navigation li,
    .archive_page_navigation a,
    .archive_page_navigation span {
        margin-right: 10px;
    }
}

.archive_page_navigation li:last-child,
.archive_page_navigation a:last-child,
.archive_page_navigation span:last-child {
    margin-right: 0;
}

.archive_page_navigation a,
.archive_page_navigation span,
.archive_page_navigation .page-numbers {
    font-family: vinyl, sans-serif;
    text-decoration: none;
    border-radius: 100px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    min-width: 35px;
    height: 35px;
    padding: 0;
    line-height: 35px;
    text-align: center;
    display: block;
    background: #656d6e;
    color: #fff;
}

@media (min-width: 992px) {
    .archive_page_navigation a:hover {
        background: #E2FF00;
        color: #265EDD;
    }
}

.archive_page_navigation .acticve,
.archive_page_navigation .current {
    background: #265EDD;
    color: #fff;
}

.archive_page_navigation .next,
.archive_page_navigation .prev {
    padding: 0 20px;
    background: transparent;
    color: #265EDD;
}

@media (min-width: 992px) {

    .archive_page_navigation .next:hover,
    .archive_page_navigation .prev:hover {
        background: #265EDD;
        color: #fff;
    }
}

.page_navigation__prev,
.page_navigation__next,
.next {
    letter-spacing: 0.12rem;
}

.page_navigation__prev a,
.page_navigation__prev span,
.page_navigation__next a,
.page_navigation__next span,
.next a,
.next span {
    padding: 0 20px;
    background: transparent;
    color: #265EDD;
}

@media (min-width: 992px) {

    .page_navigation__prev a:hover,
    .page_navigation__next a:hover,
    .next a:hover {
        background: #265EDD;
        color: #fff;
    }
}

.single_container {
    max-width: 1280px;
}

.single_container__cat_list {
    margin-top: 40px;
}

@media (max-width: 749px) {
    .single_container__cat_list {
        display: none;
    }
}

.single_container__cat_list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-family: fot-cezanne-pron, sans-serif;
    margin-bottom: 25px;
}

.single_container__cat_list li .label_cat {
    font-size: 1.65rem;
    line-height: 1.5;
    text-decoration: none;
    letter-spacing: 0.15rem;
}

.single_container__cat_list li::before {
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    border-radius: 10px;
    background: #00A7FF;
    margin: 11px 5px 0 0;
}

.topics_single_body {
    width: 100%;
}

.topics_title_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 20px 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid #bdcace;
}

.topics_title_area .index_large_jp {
    letter-spacing: 0.1rem;
    line-height: 1.4;
    letter-spacing: 0.1rem;
}

@media (max-width: 749px) {
    .topics_title_area .index_large_jp {
        font-size: 2.4rem;
    }
}

.topics_title_area__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 15px;
}

@media (max-width: 749px) {
    .topics_title_area__head {
        margin-bottom: 30px;
    }
}

.topics_title_area__foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 15px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px 20px;
}

.topics_title_area__utility {
    color: #00A7FF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 749px) {
    .topics_title_area__utility {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.topics_title_area__utility .label_cat {
    font-size: 1.8rem;
}

@media (max-width: 749px) {
    .topics_title_area__utility .label_cat {
        font-size: 1.4rem;
        margin: 0 0 5px;
        padding: 0;
    }
}

.topics_title_area__utility .label_date {
    font-size: 1.8rem;
    border-left: 2px solid #00A7FF;
    margin-left: 10px;
    padding-left: 10px;
}

@media (max-width: 749px) {
    .topics_title_area__utility .label_date {
        font-size: 1.4rem;
        border-left: 0;
        margin: 0;
        padding: 0;
    }
}

.topics_title_area__share {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 749px) {
    .topics_title_area__share {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.topics_title_area__share_title {
    font-family: vinyl, sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    color: #00A7FF;
    margin-right: 25px;
}

@media (max-width: 749px) {
    .topics_title_area__share_title {
        font-size: 1.4rem;
        margin-right: 15px;
    }
}

.topics_title_area__share_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.topics_title_area__share_list li {
    margin-right: 15px;
}

.topics_title_area__share_list li:last-child {
    margin-right: 0;
}

.topics_title_area__share_list .sns_icon {
    width: 25px;
    height: 25px;
}

@media (max-width: 749px) {
    .topics_title_area__share_list .sns_icon {
        width: 22px;
        height: 22px;
    }
}

.topics_title_area__share_list .sns_icon.twitter {
    fill: #279ef1;
}

.topics_title_area__share_list .sns_icon.facebook {
    fill: #3a5697;
}

.topics_title_area__share_list .sns_icon.line {
    fill: #1fbd05;
}

.topics_body_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 35px 0;
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*
  * Here we here not able to use a mobile first CSS approach.
  * Custom widths are set using inline styles, and on mobile,
  * we need 100% width, so we use important to overwrite the inline style.
  * If the style were set on mobile first, on desktop styles,
  * we would have no way of setting the style again to the inline style.
  */
}

.topics_body_area .aligncenter {
    max-width: 100%;
    display: block;
    margin: 0 auto 35px;
}

.topics_body_area h1 {
    font-size: 2.8rem;
    letter-spacing: 0.22rem;
    line-height: 1.4;
    font-weight: normal;
    margin: 20px 0;
    font-family: fot-cezanne-pron, sans-serif;
    color: #265EDD;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

.topics_body_area h1:first-child {
    margin-top: 0;
}

.topics_body_area h2 {
    font-size: 2.2rem;
    letter-spacing: 0.1rem;
    color: #265EDD;
    line-height: 1.5;
    font-weight: normal;
    margin: 15px 0;
    font-family: fot-cezanne-pron, sans-serif;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

.topics_body_area h2:first-child {
    margin-top: 0;
}

.topics_body_area h3 {
    font-size: 1.8rem;
    letter-spacing: 0.06rem;
    color: #265EDD;
    line-height: 1.6;
    font-weight: normal;
    margin: 20px 0;
    font-family: fot-cezanne-pron, sans-serif;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

.topics_body_area h3:first-child {
    margin-top: 0;
}

.topics_body_area h4 {
    font-size: 1.6rem;
    letter-spacing: 0.12rem;
    color: #265EDD;
    line-height: 1.6;
    font-weight: normal;
    margin: 15px 0;
    font-family: fot-cezanne-pron, sans-serif;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

.topics_body_area h4:first-child {
    margin-top: 0;
}

.topics_body_area p {
    margin: 0 0 15px 0;
    line-height: 1.8;
    letter-spacing: 0.05rem;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

.topics_body_area p:first-child {
    margin-top: 0;
}

.topics_body_area hr,
.topics_body_area .wp-block-separator {
    border: 0;
    height: 1px;
    width: calc(100% + 40px);
    margin: 30px -20px;
    background: #bdcace;
}

.topics_body_area ol {
    margin: 0 0 20px 0;
    padding: 0;
    counter-reset: content-counter;
}

.topics_body_area ol ul,
.topics_body_area ol ol {
    margin: 10px 0;
}

.topics_body_area ol li::before {
    counter-increment: content-counter;
    content: counter(content-counter);
    font-family: vinyl, sans-serif;
    color: #265EDD;
    font-size: 1.6rem;
}

.topics_body_area ul {
    margin: 20px 0;
    padding: 0;
}

.topics_body_area ul:first-child {
    margin: 0 0 20px;
}

.topics_body_area ul ul,
.topics_body_area ul ol {
    margin: 10px 0 0;
}

.topics_body_area ul ul:first-child,
.topics_body_area ul ol:first-child {
    margin: 10px 0 0;
}

.topics_body_area ul li::before {
    -webkit-font-smoothing: antialiased;
    font-family: "ionicons";
    content: '◼️';
    color: #265EDD;
}

.topics_body_area li {
    margin: 0 0 15px;
    padding: 0 0 0 25px;
    position: relative;
    list-style-type: none;
    line-height: 1.8;
}

.topics_body_area li::before {
    position: absolute;
    left: 0;
    top: 0;
}

.topics_body_area li:last-child {
    margin-bottom: 0;
}

.topics_body_area li ul li::before {
    -webkit-font-smoothing: antialiased;
    font-family: "ionicons";
    content: '◼️';
    color: #265EDD;
}

.topics_body_area .wp-block-quote {
    background: #EFF3F7;
    padding: 25px 30px;
    margin: 20px 0;
    border-radius: 8px;
}

.topics_body_area .wp-block-quote p {
    margin: 0 0 15px;
}

.topics_body_area .wp-block-quote p:last-child {
    margin-bottom: 0;
}

.topics_body_area .wp-block-image {
    margin: 25px 0;
}

.topics_body_area .wp-block-image:first-child {
    margin-top: 0;
}

.topics_body_area .wp-block-image figcaption {
    color: #656d6e;
    font-size: 1.2rem;
}

.topics_body_area img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
}

@media (max-width: 749px) {
    .topics_body_area img {
        margin: 20px auto;
    }
}

.topics_body_area img:first-child {
    margin-top: 0;
}

.topics_body_area figure img {
    margin: 0 auto 15px;
}

.topics_body_area table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
    width: 100%;
    margin: 0 0 40px 0;
    border: 0;
}

.topics_body_area table th {
    padding: 20px;
    color: #265EDD;
    width: 20%;
    border: 0;
    border-bottom: 1px solid #265EDD;
    line-height: 1.5;
}

@media (max-width: 749px) {
    .topics_body_area table th {
        display: block;
        width: 100%;
        border-bottom: 0;
        padding: 20px 0 0;
    }
}

.topics_body_area table th.min_width {
    width: 100px;
}

.topics_body_area table th.has-text-align-left {
    text-align: left;
}

.topics_body_area table td {
    padding: 20px;
    border: 0;
    border-bottom: 1px solid #bdcace;
    line-height: 1.5;
}

@media (max-width: 749px) {
    .topics_body_area table td {
        display: block;
        padding: 20px 0;
    }
}

.topics_body_area table td.has-text-align-left {
    text-align: left;
}

.topics_body_area .article_content_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.topics_body_area .article_content_text {
    max-width: 60%;
    margin: 0 2% 0 0;
}

.topics_body_area .article_content_img {
    max-width: 40%;
    height: 100%;
    margin: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.topics_body_area .article_content_img.flex_end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.topics_body_area .article_content_img p {
    margin: 0;
}

.topics_body_area .article_content_img p.min_text {
    font-size: 1.2rem;
}

.topics_body_area .article_content_img .illust {
    margin: -80px auto -30px;
    display: block;
    width: 240px;
}

.topics_body_area .article_content_detail {
    width: 32%;
    margin: 0 2% 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.topics_body_area .article_content_detail:last-child {
    margin: 0 0 30px 0;
}

.topics_body_area .article_content_detail img {
    display: block;
    margin: 0 auto 20px;
}

.topics_body_area .article_content_detail h4 {
    margin: 0 0 15px;
    color: #00A7FF;
}

.topics_body_area .article_content_detail p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.5;
}

.topics_body_area .article_flex_end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.topics_body_area .link_pdf {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.topics_body_area .link_pdf::before {
    -webkit-font-smoothing: antialiased;
    font-family: "ionicons";
    color: #265EDD;
    content: '\f41f';
    margin-right: 6px;
    font-size: 2rem;
}

.topics_body_area .link_pdf::after {
    content: 'PDF';
    color: #fff;
    background: #00A7FF;
    line-height: 1;
    padding: 5px 10px;
    border-radius: 8px;
    margin-left: 6px;
}

.topics_body_area .link_blank {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    color: #00A7FF;
    margin: 5px 0 0;
}

.topics_body_area .link_blank::before {
    -webkit-font-smoothing: antialiased;
    font-family: "ionicons";
    color: #00A7FF;
    content: '\f12f';
    margin-right: 6px;
    font-size: 2rem;
}

.topics_body_area .wp-block-media-text {
    /*!rtl:begin:ignore*/
    direction: ltr;
    /*!rtl:end:ignore*/
    display: grid;
    grid-template-columns: 50% 1fr;
    grid-template-rows: auto;
}

.topics_body_area .wp-block-media-text.has-media-on-the-right {
    grid-template-columns: 1fr 50%;
}

.topics_body_area .wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__content,
.topics_body_area .wp-block-media-text.is-vertically-aligned-top .wp-block-media-text__media {
    -ms-flex-item-align: start;
    align-self: start;
}

.topics_body_area .wp-block-media-text .wp-block-media-text__content,
.topics_body_area .wp-block-media-text .wp-block-media-text__media,
.topics_body_area .wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,
.topics_body_area .wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {
    -ms-flex-item-align: center;
    align-self: center;
}

.topics_body_area .wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__content,
.topics_body_area .wp-block-media-text.is-vertically-aligned-bottom .wp-block-media-text__media {
    -ms-flex-item-align: end;
    align-self: end;
}

.topics_body_area .wp-block-media-text .wp-block-media-text__media {
    /*!rtl:begin:ignore*/
    grid-column: 1;
    grid-row: 1;
    /*!rtl:end:ignore*/
    margin: 0;
}

.topics_body_area .wp-block-media-text .wp-block-media-text__content {
    direction: ltr;
    /*!rtl:begin:ignore*/
    grid-column: 2;
    grid-row: 1;
    /*!rtl:end:ignore*/
    padding: 0 8% 0 8%;
    word-break: break-word;
}

.topics_body_area .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
    /*!rtl:begin:ignore*/
    grid-column: 2;
    grid-row: 1;
    /*!rtl:end:ignore*/
}

.topics_body_area .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    /*!rtl:begin:ignore*/
    grid-column: 1;
    grid-row: 1;
    /*!rtl:end:ignore*/
}

.topics_body_area .wp-block-media-text__media img,
.topics_body_area .wp-block-media-text__media video {
    height: auto;
    max-width: unset;
    width: 100%;
    vertical-align: middle;
}

.topics_body_area .wp-block-media-text.is-image-fill .wp-block-media-text__media {
    height: 100%;
    min-height: 250px;
    background-size: cover;
}

.topics_body_area .wp-block-media-text.is-image-fill .wp-block-media-text__media>a {
    display: block;
    height: 100%;
}

.topics_body_area .wp-block-media-text.is-image-fill .wp-block-media-text__media img {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 600px) {
    .topics_body_area .wp-block-media-text.is-stacked-on-mobile {
        grid-template-columns: 100% !important;
    }

    .topics_body_area .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
        grid-column: 1;
        grid-row: 1;
    }

    .topics_body_area .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
        grid-column: 1;
        grid-row: 2;
    }
}

.topics_body_area .wp-block-column {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 420px;
    /**
    * Individual Column Alignment
    */
}

.topics_body_area .wp-block-column.is-vertically-aligned-top {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.topics_body_area .wp-block-column.is-vertically-aligned-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.topics_body_area .wp-block-column.is-vertically-aligned-bottom {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.topics_body_area .wp-block-column.is-vertically-aligned-top,
.topics_body_area .wp-block-column.is-vertically-aligned-center,
.topics_body_area .wp-block-column.is-vertically-aligned-bottom {
    width: 100%;
}

.topics_body_area pre {
    white-space: pre-wrap;
    font-family: "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´ Pro W3", "Hiragino Kaku Gothic Pro", "ãƒ¡ã‚¤ãƒªã‚ª", Meiryo, "ï¼­ï¼³ ï¼°ã‚´ã‚·ãƒƒã‚¯", sans-serif;
}

.topics_body_area .min_text {
    font-size: 70%;
}

.topics_body_area .button_link {
    text-decoration: none;
    width: 100%;
    max-width: 340px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.topics_body_area .button_link p {
    margin: 0;
}

.topics_body_area .button_link:hover {
    color: #fff;
}

.topics_body_area .label_more_link {
    text-decoration: none;
}

.main_visual {
    background: #265EDD;
    height: 90vh;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 750px) and (max-width: 991px) {
    .main_visual {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

@media (max-width: 749px) {
    .main_visual {
        height: 600px;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
}

.main_visual.nav_open {
    -webkit-filter: blur(20px);
    filter: blur(20px);
}

.main_visual__copy_area {
    position: relative;
    z-index: 11;
    left: 8%;
    color: #fff;
    padding: 60px 30px 30px;
    width: 28%;
    min-width: 400px;
    max-width: 480px;
}

@media (min-width: 750px) and (max-width: 991px) {
    .main_visual__copy_area {
        width: 100%;
        left: 3%;
        padding: 60px 30px 160px;
    }
}

@media (max-width: 749px) {
    .main_visual__copy_area {
        width: 100%;
        min-width: 240px;
        max-width: 320px;
        left: 3%;
        padding: 60px 30px 100px;
    }
}

.main_visual__copy_area .main_copy {
    display: block;
    margin-bottom: 35px;
    color: #fff;
}

@media (max-width: 749px) {
    .main_visual__copy_area .main_copy {
        margin-bottom: 25px;
    }
}

.main_visual__copy_area .main_copy img {
    display: block;
    width: 100%;
}

@media (min-width: 750px) and (max-width: 991px) {
    .main_visual__copy_area .main_copy img {
        max-width: 320px;
        left: 0;
    }
}

@media (max-width: 749px) {
    .main_visual__copy_area .main_copy img {
        max-width: 220px;
        left: 0;
    }
}

.main_visual__copy_area .sub_copy {
    display: block;
    font-family: fot-cezanne-pron, sans-serif;
    font-size: 2rem;
    letter-spacing: 0.38rem;
    line-height: 1.8;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
}

@media (max-width: 749px) {
    .main_visual__copy_area .sub_copy {
        font-size: 1.5rem;
        letter-spacing: 0.2rem;
    }
}

.main_visual__copy_area .label_more_link {
    color: #fff;
    font-size: 1.6rem;
    margin-top: 60px;
}

@media (max-width: 749px) {
    .main_visual__copy_area .label_more_link {
        display: none;
    }
}

.main_visual__copy_area .label_more_link__icon_file {
    fill: #fff;
}

.main_visual__copy_area .label_more_link__icon::before {
    background: #fff;
}

.main_visual__copy_area .label_more_link__icon::after {
    background: rgba(255, 255, 255, 0.2);
    border: 0px;
}

.main_visual__background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 10;
}

.main_visual__background .animate_up {
    position: absolute;
    width: 65%;
    height: 100%;
    -webkit-transform: translateX(15%);
    transform: translateX(15%);
    top: 100%;
    overflow: hidden;
    -webkit-animation-name: rise;
    animation-name: rise;
    -webkit-animation-duration: 0.35s;
    animation-duration: 0.35s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@media (max-width: 991px) {
    .main_visual__background .animate_up {
        width: 120%;
        -webkit-transform: translateX(35%);
        transform: translateX(35%);
        -webkit-animation-name: rise_sp;
        animation-name: rise_sp;
        -webkit-animation-duration: 0.35s;
        animation-duration: 0.35s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.main_visual__background .animate_up img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
}

.main_visual__background .animate_down {
    position: absolute;
    width: 75%;
    height: 100%;
    bottom: 100%;
    -webkit-transform: translateX(-15%);
    transform: translateX(-15%);
    -webkit-animation-name: down;
    animation-name: down;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@media (max-width: 991px) {
    .main_visual__background .animate_down {
        width: 120%;
        -webkit-transform: translateX(-35%);
        transform: translateX(-35%);
        -webkit-animation-name: down_sp;
        animation-name: down_sp;
        -webkit-animation-duration: 0.2s;
        animation-duration: 0.2s;
        -webkit-animation-delay: 0.5s;
        animation-delay: 0.5s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

.main_visual__background .animate_down img {
    position: absolute;
    width: 100%;
    height: 100%;
}

.main_visual__images {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 10;
}

.main_visual__images img {
    border-radius: 20px;
    display: block;
    position: absolute;
}

.main_visual__images .visual_1 {
    width: 50%;
    min-width: 640px;
    border-radius: 50px;
    right: 2%;
    z-index: 3;
    -webkit-transition: -webkit-transform .6s linear .008s;
    transition: -webkit-transform .6s linear .008s;
    transition: transform .6s linear .008s;
    transition: transform .6s linear .008s, -webkit-transform .6s linear .008s;
    opacity: 0;
    -webkit-animation-name: fade;
    animation-name: fade;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@media (min-width: 750px) and (max-width: 991px) {
    .main_visual__images .visual_1 {
        width: 75%;
        border-radius: 40px;
        min-width: 300px;
        right: 5%;
    }
}

@media (max-width: 749px) {
    .main_visual__images .visual_1 {
        width: 82%;
        min-width: 300px;
        border-radius: 25px;
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        opacity: 0;
        -webkit-animation-name: fade_sp;
        animation-name: fade_sp;
        -webkit-animation-duration: 0.3s;
        animation-duration: 0.3s;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }
}

.main_visual__images .visual_2 {
    height: 38%;
    border-radius: 50px;
    left: 30%;
    -webkit-transform: translate(-10%, 0);
    transform: translate(-10%, 0);
    z-index: 2;
    -webkit-transition: -webkit-transform .5s linear .004s;
    transition: -webkit-transform .5s linear .004s;
    transition: transform .5s linear .004s;
    transition: transform .5s linear .004s, -webkit-transform .5s linear .004s;
    opacity: 0;
    -webkit-animation-name: blur-2;
    animation-name: blur-2;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@media (min-width: 750px) and (max-width: 991px) {
    .main_visual__images .visual_2 {
        height: 28%;
        border-radius: 35px;
        left: auto;
        right: -8%;
        margin-bottom: 15%;
    }
}

@media (max-width: 749px) {
    .main_visual__images .visual_2 {
        height: 20%;
        border-radius: 25px;
        left: auto;
        right: -10%;
        opacity: 0;
        -webkit-animation-name: blur-2_sp;
        animation-name: blur-2_sp;
        -webkit-animation-duration: 0.4s;
        animation-duration: 0.4s;
        -webkit-animation-delay: 0.8s;
        animation-delay: 0.8s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }
}

.main_visual__images .visual_3 {
    height: 32%;
    border-radius: 50px;
    left: 5%;
    -webkit-transform: translate(-10%, 0);
    transform: translate(-10%, 0);
    z-index: 2;
    -webkit-transition: -webkit-transform .3s linear 0s;
    transition: -webkit-transform .3s linear 0s;
    transition: transform .3s linear 0s;
    transition: transform .3s linear 0s, -webkit-transform .3s linear 0s;
    opacity: 0;
    -webkit-animation-name: blur-3;
    animation-name: blur-3;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@media (min-width: 750px) and (max-width: 991px) {
    .main_visual__images .visual_3 {
        height: 28%;
        border-radius: 35px;
        left: -5%;
        margin-top: 7%;
    }
}

@media (max-width: 749px) {
    .main_visual__images .visual_3 {
        height: 22%;
        border-radius: 25px;
        left: -5%;
        opacity: 0;
        -webkit-animation-name: blur-3_sp;
        animation-name: blur-3_sp;
        -webkit-animation-duration: 0.4s;
        animation-duration: 0.4s;
        -webkit-animation-delay: 0.6s;
        animation-delay: 0.6s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
        top: 13%;
    }

    100% {
        margin-top: 0;
    }

    100% {
        opacity: 1;
        top: 15%;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
        top: 13%;
    }

    100% {
        margin-top: 0;
    }

    100% {
        opacity: 1;
        top: 15%;
    }
}

@-webkit-keyframes blur-2 {
    0% {
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0);
        bottom: 5%;
    }

    70% {
        -webkit-filter: blur(0);
        filter: blur(0);
        bottom: 10%;
    }

    100% {
        opacity: 1;
        -webkit-filter: blur(4px);
        filter: blur(4px);
        bottom: 10%;
    }
}

@keyframes blur-2 {
    0% {
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0);
        bottom: 5%;
    }

    70% {
        -webkit-filter: blur(0);
        filter: blur(0);
        bottom: 10%;
    }

    100% {
        opacity: 1;
        -webkit-filter: blur(4px);
        filter: blur(4px);
        bottom: 10%;
    }
}

@-webkit-keyframes blur-3 {
    0% {
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0);
        top: -1%;
    }

    70% {
        -webkit-filter: blur(0);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        -webkit-filter: blur(6px);
        filter: blur(6px);
        top: 4%;
    }
}

@keyframes blur-3 {
    0% {
        opacity: 0;
        -webkit-filter: blur(0);
        filter: blur(0);
        top: -1%;
    }

    70% {
        -webkit-filter: blur(0);
        filter: blur(0);
    }

    100% {
        opacity: 1;
        -webkit-filter: blur(6px);
        filter: blur(6px);
        top: 4%;
    }
}

@media (max-width: 749px) {
    @-webkit-keyframes fade_sp {
        0% {
            opacity: 0;
            top: 13%;
        }

        100% {
            margin-top: 0;
        }

        100% {
            opacity: 1;
            top: 18%;
        }
    }

    @keyframes fade_sp {
        0% {
            opacity: 0;
            top: 13%;
        }

        100% {
            margin-top: 0;
        }

        100% {
            opacity: 1;
            top: 18%;
        }
    }

    @-webkit-keyframes blur-2_sp {
        0% {
            opacity: 0;
            -webkit-filter: blur(0);
            filter: blur(0);
            top: 28%;
        }

        70% {
            -webkit-filter: blur(0);
            filter: blur(0);
            top: 35%;
        }

        100% {
            opacity: 1;
            -webkit-filter: blur(4px);
            filter: blur(4px);
            top: 35%;
        }
    }

    @keyframes blur-2_sp {
        0% {
            opacity: 0;
            -webkit-filter: blur(0);
            filter: blur(0);
            top: 28%;
        }

        70% {
            -webkit-filter: blur(0);
            filter: blur(0);
            top: 35%;
        }

        100% {
            opacity: 1;
            -webkit-filter: blur(4px);
            filter: blur(4px);
            top: 35%;
        }
    }

    @-webkit-keyframes blur-3_sp {
        0% {
            opacity: 0;
            -webkit-filter: blur(0);
            filter: blur(0);
            top: 8%;
        }

        70% {
            -webkit-filter: blur(0);
            filter: blur(0);
        }

        100% {
            opacity: 1;
            -webkit-filter: blur(6px);
            filter: blur(6px);
            top: 12%;
        }
    }

    @keyframes blur-3_sp {
        0% {
            opacity: 0;
            -webkit-filter: blur(0);
            filter: blur(0);
            top: 8%;
        }

        70% {
            -webkit-filter: blur(0);
            filter: blur(0);
        }

        100% {
            opacity: 1;
            -webkit-filter: blur(6px);
            filter: blur(6px);
            top: 12%;
        }
    }
}

.main_visual__scroll {
    color: #fff;
    font-family: vinyl, sans-serif;
    position: absolute;
    z-index: 10;
    bottom: 40px;
    left: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main_visual__scroll_icon {
    position: relative;
    margin-right: 10px;
}

.main_visual__scroll_icon_file {
    fill: #fff;
    width: 8px;
    height: 14px;
    display: block;
}

.main_visual__scroll_icon::before {
    content: '';
    display: block;
    height: 30px;
    width: 1px;
    position: absolute;
    background: #fff;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -20px;
}

.main_visual__scroll_icon::after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    border: 1px solid #fff;
    border-radius: 100px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    bottom: 10px;
    -webkit-animation-name: flash;
    animation-name: flash;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@keyframes flash {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

.main_visual__scroll_label {
    letter-spacing: 0.2rem;
}

.toppage_topics_container {
    padding: 40px 80px 0 12%;
    margin: -120px auto 40px;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

@media (min-width: 750px) and (max-width: 991px) {
    .toppage_topics_container {
        padding: 0 30px 0 16%;
    }
}

@media (max-width: 749px) {
    .toppage_topics_container {
        margin: -20px auto 0;
        padding: 0 20px;
    }
}

.toppage_topics_list .swiper-slide {
    max-width: 480px;
    width: auto;
    height: auto;
}

@media (max-width: 749px) {
    .toppage_topics_list .swiper-slide {
        max-width: 280px;
    }
}

.toppage_topics_list .slider_control_navigation {
    position: absolute;
    top: 0;
    right: 10px;
}

.toppage_topics__thumb {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    max-height: 270px;
}

@media (max-width: 749px) {
    .toppage_topics__thumb {
        margin-bottom: 20px;
        border-radius: 20px;
    }
}

.toppage_topics__thumb img {
    width: 100%;
    display: block;
}

.toppage_topics__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 20px 0 0;
}

@media (max-width: 749px) {
    .toppage_topics__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 15px 20px;
    }
}

.toppage_topics__head {
    background: rgba(226, 255, 0, 0.9);
    color: #265EDD;
    font-family: vinyl, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    margin-top: -20px;
    margin-right: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 749px) {
    .toppage_topics__head {
        width: auto;
        height: auto;
        background: transparent;
        color: #00A7FF;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        padding: 0;
        margin: 0 0 15px 0;
    }
}

.toppage_topics__head .label_cat {
    margin-bottom: 5px;
}

@media (max-width: 749px) {
    .toppage_topics__head .label_cat {
        font-size: 1.4rem;
        margin-bottom: 0;
    }
}

@media (max-width: 749px) {
    .toppage_topics__head .label_date {
        font-size: 1.4rem;
    }
}

.toppage_topics__text {
    padding: 20px 0;
}

@media (max-width: 749px) {
    .toppage_topics__text {
        padding: 0;
    }
}

.toppage_topics_more {
    height: 100%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.toppage_topics_more__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: rgba(0, 167, 255, 0.8);
    border-radius: 200px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.toppage_topics_more__link:hover {
    width: 220px;
    height: 220px;
    margin: -10px;
}

.toppage_topics_more__label {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    font-family: vinyl, sans-serif;
    margin-bottom: 5px;
}

.toppage_topics_more__min_label {
    margin-bottom: 20px;
    font-family: fot-cezanne-pron, sans-serif;
}

.toppage_topics_more .label_more_link__icon {
    position: relative;
    margin-right: 10px;
}

.toppage_topics_more .label_more_link__icon_file {
    fill: #fff;
    display: block;
}

.toppage_topics_more .label_more_link__icon::before {
    background: #fff;
}

.toppage_topics_more .label_more_link__icon::after {
    content: '';
    border: 1px solid #fff;
    -webkit-animation-name: flash;
    animation-name: flash;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@keyframes flash {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        width: 60px;
        height: 60px;
        opacity: 0;
    }
}

.topics_title {
    font-family: fot-cezanne-pron, sans-serif;
    color: #265EDD;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    margin-bottom: 25px;
}

@media (max-width: 749px) {
    .topics_title {
        font-size: 1.55rem;
        margin-bottom: 15px;
    }
}

.toppage_concept_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 80px;
    margin-top: 30px;
}

@media (max-width: 749px) {
    .toppage_concept_container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 40px;
    }
}

.toppage_concept__text {
    width: 40%;
    min-width: 540px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 80px;
}

@media (min-width: 750px) and (max-width: 991px) {
    .toppage_concept__text {
        min-width: 370px;
        width: 30%;
        padding: 20px 40px 40px;
    }
}

@media (max-width: 749px) {
    .toppage_concept__text {
        min-width: 0;
        width: 100%;
        padding: 20px 25px 40px;
    }
}

.toppage_concept__index_large {
    margin-bottom: 35px;
}

.toppage_concept__index_min {
    margin-bottom: 35px;
}

.toppage_concept__body_text {
    margin-bottom: 45px;
}

.toppage_concept__body_text:last-child {
    margin-bottom: 0;
}

.toppage_concept__body_text .buddy_director {
    font-family: fot-cezanne-pron, sans-serif;
    color: #265EDD;
    line-height: 1.5;
    margin-bottom: 10px;
}

.toppage_concept__body_text .buddy_name {
    font-family: fot-cezanne-pron, sans-serif;
    color: #265EDD;
    font-size: 1.75rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    font-weight: 600;
}

.toppage_concept__picture {
    width: 50%;
    border-radius: 0 50px 50px 0;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.toppage_concept__picture.reverse{
        border-radius: 50px 0 0 50px ;
}

@media (min-width: 750px) and (max-width: 991px) {
    .toppage_concept__picture {
        width: 70%;
    }
}

@media (max-width: 749px) {
    .toppage_concept__picture {
        width: 100%;
        border-radius: 0;
    }
}

.toppage_concept__picture img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
}

@media (min-width: 750px) and (max-width: 991px) {
    .toppage_concept__picture img {
        min-height: 420px;
    }
}

@media (max-width: 749px) {
    .toppage_concept__picture img {
        min-height: 100%;
    }
}

html {
    font-weight: 400;
    color: #222;
    font-family: "ãƒ’ãƒ©ã‚®ãƒŽè§’ã‚´ Pro W3", "Hiragino Kaku Gothic Pro", "ãƒ¡ã‚¤ãƒªã‚ª", Meiryo, "ï¼­ï¼³ ï¼°ã‚´ã‚·ãƒƒã‚¯", sans-serif;
    line-height: 1.8;
    letter-spacing: 0.03rem;
    font-size: 62.5%;
}

body {
    font-weight: 400;
    background-color: #fff;
    width: 100%;
    overflow-x: hidden;
    font-size: 1.4rem;
    margin: 0;
}

@media (max-width: 749px) {
    body {
        font-size: 1.3rem;
    }
}

a {
    color: #265EDD;
    text-decoration: underline;
    outline: none;
}

@media (min-width: 992px) {
    a:hover {
        color: #265EDD;
        text-decoration: none;
    }
}

.svg_icons {
    display: none;
}

.contact {
    background: var(--color-accent);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding-block: 50px;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.required {
    color: var(--color-main);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    transition: var(--transition-fast);
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-main);
    box-shadow: 0 0 0 3px rgba(47, 164, 231, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: var(--space-md);
    font-size: var(--font-size-lg);
    border: none;
    display: block;
    margin-inline: auto;
}

@media (min-width: 768px) {
    .btn-submit {
        width: auto;
        min-width: 200px;
    }
}

.form-success-message {
    display: none;
    text-align: center;
    color: #265edd;
    font-size: var(--font-size-lg);
    font-weight: bold;
    margin-top: var(--space-md);
    padding: var(--space-md);
    background-color: rgba(38, 94, 221, 0.1);
    border-radius: 4px;
}

.form-success-message.show {
    display: block;
}