﻿@charset "UTF-8";
/*
Theme Name: cifa-chofu.com
Author: num
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "Noto Sans JP", sans-serif;
    --font_en: "Jost", sans-serif;
    --h1_font: clamp(22px, 3vw, 32px);
    --h2_font: clamp(25px, 3vw, 70px);
    --h3_font: clamp(22px, 3vw, 55px);
    --m_color: #0dbbf9;
    --m_color2: rgb(219 240 248);
    --a_color: #fde400;
    --f_color: #222;
    --f_color2: #0ca5dc;
    --b_color: 1px solid rgb(13 157 209 / 30%);
    --border_r: max(10px, min(15px, calc((100vw - 10px - 100%) * 9999)));
    --tr: 0.3s ease-out;
    --main_w: min(1200px, calc(100% - (var(--m_ps8) * 2)));
    --main_w2: min(1000px, calc(100% - (var(--m_ps8) * 2)));
    --main_w3: min(1100px, calc(100% - (var(--m_ps8) * 2)));
    --main_mp: 100px;
    --m_ps3: 30px;
    --m_ps5: 50px;
    --m_ps8: 80px;
    --gr: linear-gradient(45deg, var(--m_color) 0%, #007bd7 50%, #00beff 100%);
    --base: 0.0625rem;
}

/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/*ボックスアニメーション*/
.block {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.block::before {
    transform-origin: left;
    transform: translateX(var(--beforeX, 0%));
    transition: none;
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block::after {
    transform-origin: left;
    transform: scaleX(var(--afterScaleX, 0)) translateX(var(--afterX, 0%));
    transition: none;
    background-color: var(--m_color);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.pc_none2 {
    display: none;
}
.flex {
    display: -webkit-flex;
    display: flex;
}
.flex_c {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_c2 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.flex_c_c {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.main_col {
    margin-bottom: 10vw;
}
.main_pa {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}
.m_a {
    max-width: var(--main_w);
}
.m_a2 {
    max-width: var(--main_w2);
}
.m_a3 {
    max-width: var(--main_w3);
}
.m_lr {
    margin-right: auto;
    margin-left: auto;
}
.m_ps3 {
    margin-bottom: var(--m_ps3);
}
.m_ps5 {
    margin-bottom: var(--m_ps5);
}
.m_ps8 {
    margin-bottom: var(--m_ps8);
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb70 {
    margin-bottom: 70px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb90 {
    margin-bottom: 90px;
}
.mb100 {
    margin-bottom: 100px;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}
.mt50 {
    margin-top: 50px;
}
.mt60 {
    margin-top: 60px;
}
.mt70 {
    margin-top: 70px;
}
.mt80 {
    margin-top: 80px;
}
.mt90 {
    margin-top: 90px;
}
.mt100 {
    margin-top: 100px;
}
.fc {
    text-align: center;
}
.fl {
    text-align: left;
}
.fr {
    text-align: right;
}
.fb {
    font-weight: bold;
}
.annotation {
    font-size: var(--f13);
    color: gray;
}

.hover_img2,
.hover_img {
    position: relative;
    overflow: hidden;
}
.hover_img2 img,
.hover_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--tr);
}
.hover_img:hover img {
    scale: 1.1;
}
.hover_img2:hover img {
    scale: 1.025;
}

/*LINE友だち追加*/
.line_btn {
    width: 14vw;
    /* width: 45%; */
}
.line_btn.fc {
    margin-inline: auto;
}
body .line_btn a {
    font-size: var(--f16);
    color: #fff;
    background: #06c755;
    border-radius: 0.4vw;
    padding: 0.5vw 1vw;
    display: flex;
    align-items: center;
    gap: 0.7vw;
    white-space: nowrap;
    font-family: var(--font_ja);
    text-decoration: none;
    justify-content: center;
}
body .line_btn a:hover {
    opacity: 0.7;
}
.line_btn img {
    width: 2vw;
}

/*ボタン*/
.common_btn {
}
.common_btn a {
    background: var(--m_color2);
    color: var(--f_color2);
    text-align: center;
    letter-spacing: 0;
    padding: max(20px, 1.5vw) 4vw max(20px, 1.5vw) max(15px, 1vw);
    border-radius: max(5px, 0.3vw);
    line-height: 1;
    gap: 5px;
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    font-weight: bold;
    width: min(300px, 80%);
}
.common_btn a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-right: 1px solid var(--f_color2);
    border-top: 1px solid var(--f_color2);
    transform: rotate(45deg) translateY(-50%);
}
.common_btn a:hover {
    opacity: 0.7;
}

.common_btn2.fc {
    display: flex;
    align-items: center;
    justify-content: center;
}
.common_btn2 {
}
.common_btn2 a {
    white-space: nowrap;
    font-family: var(--font_en), var(--font_ja);
    text-decoration: none;
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    text-transform: uppercase;
    width: fit-content;
}
.common_btn2 a:before {
    position: absolute;
    right: 0.75vw;
    top: 50%;
    display: block;
    content: "";
    width: 0.45vw;
    height: 0.45vw;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    transition: var(--tr);
    z-index: 1;
}
.common_btn2 a:after {
    content: "";
    background: var(--m_color);
    height: auto;
    aspect-ratio: 1;
    width: 1.5vw;
    border-radius: 50%;
    transition: var(--tr);
}
.common_btn2 a:hover:before {
    /* transform: rotate(45deg) translateY(-50%) translateX(-0.3vw); */
    margin: 0 5px 0px 0;
}
.common_btn2 a:hover:after {
    transform: translateX(-0.3vw);
}

/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
    background: var(--m_color2);
    padding: 4vw;
    border-radius: 2vw;
    background: #f3f3f3;
    margin-top: var(--main_mp);
}
.common_cta_inner {
    gap: var(--m_ps5);
    /* align-items: center; */
}
.common_cta_inner .address {
    color: var(--f_color2);
    flex: 1;
}
.common_cta_inner .address .ttl {
    font-size: var(--f20);
    color: var(--f_color2);
    letter-spacing: 0.1em;
}
.common_cta_inner .map {
    flex: 1;
    /* aspect-ratio: 4/2; */
    border-radius: 20px;
    overflow: hidden;
    /* height: 100%; */
}
.common_cta_inner .map iframe {
    width: 100%;
    height: 100%;
}
.common_cta_inner a {
    color: var(--f_color);
    text-decoration: none;
    font-size: clamp(22px, 3vw, 45px);
    font-family: var(--font_en);
    color: var(--f_color2);
}

/*-------------------------------------
見出し
-------------------------------------*/
h1 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 30px;
}
body:not(.home):not(.single) h1,
body.single .h1 {
    letter-spacing: 0.25em;
    margin: 0;
    font: 900 clamp(16px, 3vw, 20px) var(--font_ja);
    color: var(--f_color2);
    font-size: var(--f18);
    position: relative;
    filter: drop-shadow(2px 4px 10px rgba(255, 255, 255)) drop-shadow(2px 4px 10px rgba(255, 255, 255))
        drop-shadow(2px 4px 10px rgba(255, 255, 255));
}
body:not(.home):not(.single) h1:before,
body.single .h1:before {
    content: attr(data-text);
    display: block;
    font-family: var(--font_en);
    text-transform: uppercase;
    font-weight: bold;
    color: var(--f_color2);
    font-size: var(--f50);
    color: var(--m_color);
}
body:not(.home):not(.single) h1:after,
body.single .h1:after {
    /* content: ""; */
    display: block;
    letter-spacing: 0;
    text-transform: uppercase;
    background: #fff;
    width: 100px;
    height: 2px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.singleh1 {
    color: var(--f_color);
    padding: 0;
    font-size: var(--f30);
    margin-bottom: 0;
}
h2 {
    position: relative;
}
.top_h2 {
    align-items: baseline;
}
.top_h2 h2 {
    z-index: 0;
    letter-spacing: 0.15em;
    font: bold 16px var(--font_ja);
    color: var(--m_color);
    font-size: var(--f16);
}
.top_h2 .data_text {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--m_color);
    font-family: var(--font_en);
    font-size: var(--h2_font);
}
.top_h2 .data_text span {
    color: var(--m_color);
}
.top_h2 h2:after {
    /* content: ""; */
    background: var(--f_color);
    width: 100px;
    height: 2px;
    display: block;
    border-radius: 10px;
    margin-top: 30px;
}
.other_h2 {
    font-size: var(--f26); /* color: var(--f_color2); */
    margin-bottom: 50px;
}
.other_h2:before {
    content: attr(data-text);
    text-transform: uppercase;
    color: var(--m_color);
    opacity: 0.1;
    font-family: var(--font_en);
    font-size: var(--f50);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* top: 0.1rem; */
    z-index: -1;
    width: 100%;
}
.other_h2 span {
    display: flex;
    position: relative;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.other_h2 span:before {
    content: "";
    width: 1vw;
    height: auto;
    aspect-ratio: 1;
    background: var(--m_color);
    display: block;
    border-radius: 0.2vw;
}
.other_h2 span:after {
    content: "";
    width: 1vw;
    height: auto;
    aspect-ratio: 1;
    background: var(--a_color);
    display: block;
    border-radius: 0.2vw;
}
h3 {
    font-weight: bold;
    font-size: var(--f24);
    padding-bottom: 15px;
    border-bottom: 2px dotted var(--m_color);
    position: relative;
    margin-bottom: 50px;
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    color: var(--f_color2);
}
h3:after {
    /* content: ""; */
    width: 100px;
    height: 2px;
    background: var(--m_color);
    left: 0;
    top: 20px;
    display: block;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
}

/*-------------------------------------
レイアウト
-------------------------------------*/
@media only screen and (min-width: 551px) {
    body {
        /* min-width: 1000px; */
    }
}
.wrap {
    position: relative;
    margin: 0 auto;
    /* overflow: hidden; */
    max-width: 1920px;
    gap: 5vw;
    padding-left: max(20px, 5vw);
    padding-right: max(20px, 5vw);
    padding-bottom: var(--main_mp);
}
.main {
    gap: 5vw;
    padding-top: var(--m_ps5);
    /* padding-bottom: var(--main_mp); */
}
body.home .main {
    padding-top: var(--main_mp);
}
.main_wrap {
    overflow: hidden;
    /* width: calc(100% - 250px - var(--m_ps5)); */
    flex: 1;
}
.main_wrap {
    /* padding-top: var(--m_ps5); */
    /* padding-bottom: var(--main_mp); */
    position: relative;
}

/*-------------------------------------
header
-------------------------------------*/
.header {
}

/* サイトタイトル */
.site_ttl {
    line-height: 0;
    width: 18vw;
    margin: 0;
    transition: var(--tr);
    /* visibility: hidden; */
    /* background: #f3f3f3; */
    /* border-radius: 0.5vw; */
    padding: 1vw 0vw;
    /* opacity: 0; */
}
.site_ttl img {
    /* width: 11vw; */
    margin-inline: auto;
}
.h_nav_wrap.is-fixed .site_ttl {
    /* width: 150px; */
    /* visibility: visible; */
    /* opacity: 1; */
}
.site_ttl a {
    display: block;
    font-weight: bold;
    text-decoration: none;
    margin: 0 auto;
    transition: var(--tr);
    background: #f3f3f3;
    background: var(--m_color2);
    border-radius: 0.5vw;
    padding: 0.5vw 1vw;
}
.site_ttl a:hover {
    opacity: 0.7;
}
/*ナビ*/
.h_nav_wrap {
    position: fixed;
    margin-left: auto;
    padding-left: max(20px, 5vw);
    padding-right: max(20px, 5vw);
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed {
    /* padding: 0px 0 0px min(var(--m_ps8), 3vw); */
    background: #fff;
}
.h_nav_inner {
    justify-content: space-between;
    align-items: flex-start;
}
.h_nav_wrap.is-fixed .h_nav_inner {
    justify-content: space-between;
}

.pc_h_nav_bottom {
    gap: min(25px, 3vw);
}
.h_nav_wrap nav {
    height: 100%;
}
.pc_h_nav {
    height: 100%;
    border-radius: 20px;
    /* gap: min(25px, 3vw); */
    flex-flow: column;
    padding: 1vw 0vw;
    gap: 0.5vw;
}
.pc_h_nav ul {
    gap: 3vw;
}
.pc_h_nav_top {
    justify-content: flex-end;
    gap: min(25px, 3vw);
    align-items: center;
}
.h_nav_wrap.is-fixed .pc_h_nav_top {
    margin-bottom: 0;
}
.gnav_news_link {
}
.gnav_news_link a {
}
.gnav_news_line {
}
.gnav_news_line a {
}
.gnav_news_line i {
    font-size: var(--f28);
    color: #06c755;
}
.gnav_news_line :before {
}

.pc_h_nav li {
}
.pc_h_nav a {
    /* font: normal 14px var(--font_ja); */
    /* padding: 10px 10px; */
    text-decoration: none;
    color: var(--f_color);
    display: block;
    font-weight: bold;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.4vw;
    font-size: var(--f15);
    position: relative;
}
.pc_h_nav li a:before,
.gnav_news_link a:before {
    content: "";
    width: 0.5vw;
    height: auto;
    aspect-ratio: 1;
    border-radius: 0.14vw;
    background: var(--m_color);
    display: block;
    transition: var(--tr);
}
.gnav_news_link a:hover:before,
.pc_h_nav li a:hover:before {
    scale: 1.3;
}

.pc_h_nav_last {
    /* margin-right: 50px; */
}
.pc_h_nav_last a {
    background: var(--m_color2);
    color: var(--f_color2);
    font-size: var(--f14);
    text-align: center;
    letter-spacing: 0;
    border-radius: 0 0 10px 10px;
    padding: 0.628vw 1vw;
    border-radius: 0.3vw;
    display: block;
    line-height: 1;
    gap: 5px;
    display: flex;
    align-items: center;
}
.pc_h_nav_last a i {
    transition: var(--tr);
    color: var(--f_color2);
}
.h_nav_wrap.is-fixed .pc_h_nav_last a {
    /* border-radius: 0; */
}
.pc_h_nav_last a:hover i {
    color: #fff;
}
.pc_h_nav_last a:hover {
    background: var(--m_color);
    color: #fff;
}

/*************************************/
.h_img_wrap {
    position: relative;
    padding-top: 6.6vw;
}
.h_img_img {
    border-radius: 2vw;
    overflow: hidden;
    margin: 0 !important;
    max-height: calc(100vh - 87px - 50px);
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.h_img_img a {
    height: 100%;
}
.h_img_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
body:not(.home) .h_img_wrap {
    background: var(--m_color2);
    padding-top: 5vw;
    padding-bottom: 5vw;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    margin-top: 6.6vw;
    border-radius: 1.5vw;
    /* background: #f3f3f3; */
    overflow: hidden;
}
body:not(.home) .bg_rndm {
    width: 100%;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    opacity: 0.1;
    background-position: 50% 50%;
}

.nav_sidebar {
    width: 16%;
    width: 18vw;
    align-items: flex-start;
    flex-flow: column;
    /* padding-top: 5.5vw; */
    gap: 2vw;
}
.nav_sidebar_inner {
    position: sticky;
    top: 7vw;
    left: 0;
    width: 100%;
    background: #0eb2ed;
    border-radius: 1vw;
    padding: 2vw;
}
.nav_sidebar_site_ttl {
    width: 100%;
}
.nav_sidebar_site_ttl a {
    display: block;
    background: var(--m_color2);
    font-weight: bold;
    text-decoration: none;
    margin: 0 auto;
    transition: var(--tr);
    border-radius: 1vw;
    padding: 2.5vw;
    background: #f3f3f3;
}
.nav_sidebar_site_ttl a:hover {
    opacity: 0.7;
}
.pc_h_nav_top .lang_wrap3 {
    position: relative;
}

.pc_h_nav_top .lang_wrap3:before {
    content: "\f0dd";
    font-family: "font awesome 5 free";
    font-weight: bold;
    position: absolute;
    right: 0.7vw;
    top: 43%;
    transform: translateY(-50%);
    line-height: 1;
}

.pc_h_nav_top select {
    width: 100%;
    border-radius: 0.25vw;
    background: none;
    border: 1px solid;
    padding: 0.5vw 0.7vw;
    line-height: 1;
    color: var(--f_color);
    font-size: var(--f14);
    display: block;
    height: 100%;
}
.nav_sidebar_inner ul {
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.nav_sidebar_inner li {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 0.5vw;
    width: 100%;
}
.nav_sidebar_inner li:before {
    content: "";
    content: "";
    width: 0.5vw;
    height: auto;
    aspect-ratio: 1;
    border-radius: 0.14vw;
    background: var(--a_color);
    display: block;
    transition: var(--tr);
}
.nav_sidebar_inner li:hover:before {
    scale: 1.3;
}
.nav_sidebar_inner li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: var(--f15);
    padding-bottom: 5px;
    border-bottom: 2px dotted;
    display: block;
    position: relative;
    flex: 1;
    padding-right: 1vw;
}
.nav_sidebar_inner li a:before {
    content: "";
}
.nav_sidebar_inner li a:after {
    position: absolute;
    right: 0.45vw;
    top: 50%;
    display: block;
    content: "";
    width: 0.45vw;
    height: 0.45vw;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(45deg) translateY(-50%);
}
.h_img_slide_navi {
    position: absolute;
    bottom: 30px;
    left: 30px;
}
.h_img_slide_navi_dots {
}
.h_img_slide_navi_dots .slick-dots {
    display: flex;
    bottom: 0;
}
.h_img_slide_navi_dots .slick-dots li {
}
.h_img_slide_navi_dots .slick-dots li button:before {
    color: var(--m_color);
    font-size: var(--f20);
}

/*-------------------------------------
TOP 1コンテンツ目
-------------------------------------*/
.top_con01_inner {
    flex-wrap: wrap;
    gap: var(--m_ps5);
}
.top_con01_inner li {
    width: calc(100% / 2 - (var(--m_ps5) / 2));
}
.top_con01_inner li .img {
    background: #ddd;
    aspect-ratio: 4/2;
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
}
.top_con01_inner li .ttl a {
    color: var(--f_color2);
    font-weight: bold;
    text-decoration: none;
    width: fit-content;
    font-size: var(--f20);
}
a.arrow {
    display: flex;
    gap: 5px;
    align-items: baseline;
    position: relative;
}
a.arrow2 {
    text-decoration: none;
    border-bottom: 2px dotted;
    font-weight: bold;
    padding-bottom: 0.5vw;
    justify-content: space-between;
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    padding-right: 1.5vw;
}
a.arrow:after {
    content: "\f35a";
    font-family: "font awesome 5 free";
    color: var(--m_color);
    font-size: var(--f16);
}

a.arrow2:before {
    z-index: 1;
    content: "\f13a";
    font-family: "font awesome 5 free";
    transform: rotate(0deg) translateY(-50%);
    border: none;
    color: var(--m_color);
    font-size: var(--f20);
    width: auto;
    height: auto;
    right: 0;
    top: 50%;
    position: absolute;
}
a.arrow2:after {
    contain: none;
}
.top_con01_inner li p {
    /* font-size: var(--f18); */
}

/*-------------------------------------
TOP 2コンテンツ目
-------------------------------------*/
.top_con02_wrap {
    background: var(--gr);
    transition: background 500ms ease-in-out;
}
.top_con02_wrap:hover {
}
.top_con02_inner {
}

/*-------------------------------------
TOP お知らせ
-------------------------------------*/
.top_new_wrap {
    /* max-width: 1000px; */
    /* margin-inline: auto; */
}
.top_new_wrap .common_btn2.pc_none {
    display: none;
}
.top_new_top {
    padding-bottom: 20px;
    border-bottom: 2px dotted var(--m_color);
    justify-content: space-between;
    align-items: center;
}
.top_new_inner li .news_photo {
    aspect-ratio: 1;
    height: auto;
    width: 13%;
    overflow: hidden;
    border-radius: 0.6vw;
}
.top_new_inner li .news_photo a {
    display: block;
    width: 100%;
    height: 100%;
}
.top_new_inner li .news_photo a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top_new_inner li .news_txt {
    flex: 1;
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.top_new_inner li .news_time {
    display: flex;
    gap: 10px;
    align-items: center;
}
.top_new_inner li .news_time time {
    font-family: var(--font_en);
    text-box: trim-both cap alphabetic;
}
.top_new_inner li .news_time span {
}
.top_new_inner li .news_time span a {
    background: var(--m_color);
    color: #fff;
    text-decoration: none;
    padding: 0.4vw 0.7vw;
    display: block;
    text-box: trim-both cap alphabetic;
    font-size: var(--f11);
    font-weight: bold;
}
.top_new_inner li .news_ttl a {
    text-decoration: none;
    color: var(--f_color2);
    font-weight: bold;
    color: var(--f_color);
}

/*タブ*/
.tabs {
    /* background-color: #fff; */
    display: flex;
    flex-wrap: wrap;
}
.tab_item {
    /* max-width: calc(100% / 5 - 1vw); */
    flex: 1;
    height: 3vw;
    background: var(--m_color);
    /* line-height: 42px; */
    font-size: var(--f18);
    display: block;
    color: var(--f_color);
    /* float: left; */
    /* text-align: center; */
    transition: all 0.2s ease;
    margin-right: 1vw;
    border-radius: 0.5vw;
    /* font-weight: bold; */
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tab_item:hover {
    opacity: 0.75;
}
.top_new_inner .tab_item:nth-of-type(1) {
    /* margin-left: 30px; */
}

input[name="tab_item"] {
    display: none !important;
}
.tab_content {
    display: none;
    /* clear: both; */
    /* overflow: hidden; */
    padding-top: var(--m_ps3);
    /* background: var(--m_color2); */
    /* padding: 3vw; */
    /* border-radius: 0 1.2vw 1.2vw 1.2vw; */
    width: 100%;
}
#all:checked ~ #all_con {
    display: block;
}
.tabs input:checked + .tab_item {
    font-weight: bold;
    background: var(--m_color2);
    color: var(--f_color2);
}
.tab_content_description ul {
    display: flex;
    flex-flow: column;
    gap: 20px;
}
.tab_content_description li {
    /* margin-bottom: 20px; */
    /* border-bottom: 1px solid #ddd; */
    /* padding-bottom: 20px; */
    gap: 1.5vw;
}
.tab_content_description li:last-child {
    margin-bottom: 0;
}

.tab_content {
    display: none;
}

/*-------------------------------------
TOPページインスタ
-------------------------------------*/
.top_sns_wrap {
}
.top_sns_ig .top_h2 h2:after {
    margin-left: auto;
    margin-right: auto;
}
.top_sns_wrap > div {
    width: 100%;
}
.top_sns_ig {
}
.insta_img_list {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.insta_img_list:before {
    content: "";
    order: 2;
    width: calc(100% / 5 - 5px);
}
.insta_img_list:after {
    content: "";
    width: calc(100% / 5 - 5px);
}
.insta_img_list .item {
    position: relative;
    z-index: 0;
    width: calc(100% / 5 - 5px);
    overflow: hidden;
    margin-bottom: 10px;
}
.insta_img_list .item a {
    display: block;
    position: relative;
    /* height: 100%; */
    aspect-ratio: 1/1;
}
.insta_img_list .item img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
    /* background: #e5e5e5; */
    padding-top: var(--main_mp);
    padding-top: var(--m_ps5);
}
.breadcrumbs {
    width: 100%;
    font-size: var(--f14);
    line-height: 1.5;
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1vw;
    flex-wrap: wrap;
}
.breadcrumbs a,
.breadcrumbs span {
    font-size: var(--f14);
    color: var(--f_color);
    font-family: var(--font_ja);
    letter-spacing: 0.15em;
}
.breadcrumbs:before {
    /* content: "\f015"; */
    font: 100% "Font Awesome 6 free";
    font-weight: bold;
}
.breadcrumbs span:last-child a {
    pointer-events: none;
    text-decoration: none;
}

/*-------------------------------------
CIFAについて
-------------------------------------*/
.about_inner .desc {
}
.desc p {
    /* max-width: 65%; */
    margin-inline: auto;
}
.about_inner .desc ul {
}
.about_inner .desc li {
}
.about_inner .desc li a {
    border: none;
    padding-right: 2vw;
}
.about_inner .desc li a:before {
    z-index: 1;
    /* content: "\f13a"; */
    font-family: "font awesome 5 free";
    transform: rotate(0deg) translateY(0%);
    border: none;
    color: var(--m_color);
    font-size: var(--f20);
    width: auto;
    height: auto;
    right: 0;
    transition: var(--tr);
    position: static;
    order: 2;
}
.about_inner .desc li a:after {
    position: absolute;
    right: 0;
    content: none;
}
.about_inner .desc li a:hover:before {
    margin: 5px 0 0 0;
}

.about_con00 dl dd > ol {
    counter-reset: number 0;
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.about_con00 dl dd > ol > li {
    position: relative;
    padding-left: 21px;
}
.about_con00 dl dd > ol > li:before {
    counter-increment: number 1;
    content: counter(number) ".";
    position: absolute;
    left: 0;
    top: 1px;
    font-family: var(--font_en);
    font-weight: bold;
}
.about_con00 dl dd ul ul {
    padding-left: max(5px, 1vw);
    display: flex;
    flex-flow: column;
    gap: 7px;
}
.about_con00 dl dd ul ul > li {
    margin-left: 15px;
    position: relative;
}
.about_con00 dl dd ul > li > div {
    position: relative;
    font-weight: bold;
    width: fit-content;
    background: linear-gradient(transparent 60%, #ffeb3b 60%);
    margin-bottom: 10px;
}
.about_con00 dl dd ul ul li:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 0.9vw;
    border-radius: 50%;
    background: var(--m_color);
    width: 0.5vw;
    height: auto;
    aspect-ratio: 1 / 1;
}
.about_con01 dd > ul {
    display: flex;
    flex-flow: column;
    gap: 1vw;
}

.about_con01 dl {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgb(13 157 209 / 30%);
}
.about_con01 dt {
    width: 25%;
    border-bottom: 1px solid rgb(13 157 209 / 30%);
    padding: 15px 10px;
    font-weight: bold;
}
.about_con01 dd {
    width: 75%;
    border-bottom: 1px solid rgb(13 157 209 / 30%);
    padding: 15px 10px;
}

.about_con02 dl {
    background: var(--m_color2);
    padding: 4vw;
    border-radius: 2vw;
    background: #f3f3f3;
}
.about_con02 dt {
    position: relative;
    margin-left: 18px;
    font-weight: bold;
    width: fit-content;
    background: linear-gradient(transparent 60%, #ffeb3b 60%);
    font-size: var(--f18);
}
.about_con02 dt:before {
    content: "";
    position: absolute;
    left: -1.4vw;
    top: 0.8vw;
    border-radius: 50%;
    background: var(--m_color);
    width: 0.7vw;
    height: auto;
    aspect-ratio: 1 / 1;
}
.about_con02 dd {
    padding-left: 3vw;
    margin-top: 5px;
    margin-bottom: 20px;
}
.about_con02 dd.last {
    margin-bottom: 0px;
}
.about_con02 dd ol {
    counter-reset: number 0;
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.about_con02 dd ol li {
    position: relative;
    padding-left: 21px;
}
.about_con02 dd ol li:before {
    counter-increment: number 1;
    content: counter(number) ".";
    position: absolute;
    left: 0;
    top: 1px;
    font-family: var(--font_en);
    font-weight: bold;
}
.about_con02 dd div {
    font-weight: bold;
}
.about_con02 dd p {
    padding-left: 2vw;
}

.about_con02_link {
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.about_con02_link p {
}
.about_con02_link a {
    font-weight: bold;
    color: var(--f_color);
    width: fit-content;
}
.about_con02_link a i {
    color: var(--f_color2);
}

.img_con_wrap {
    gap: 10px;
    margin-bottom: 50px;
}
.img_con_wrap div {
    overflow: hidden;
    border-radius: 1vw;
}
.img_con_wrap2 {
    overflow: hidden;
    border-radius: 1vw;
    aspect-ratio: 886/300;
}
.img_con_wrap2 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img_con_wrap3 {
    overflow: hidden;
    border-radius: 1vw;
    aspect-ratio: 886/300;
}
.img_con_wrap3 img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_con03 ul.list {
    gap: 2vw;
    flex-wrap: wrap;
    row-gap: 15px;
}
.about_con03 ul.list li {
    position: relative;
    padding-left: 18px;
    width: calc(100% / 3 - 1.5vw);
}
.about_con03 ul.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8vw;
    border-radius: 50%;
    background: var(--m_color);
    width: 8px;
    height: auto;
    aspect-ratio: 1 / 1;
}
.about_con03 ul.list li a {
    color: var(--f_color);
    font-weight: bold;
    width: fit-content;
    font-size: 1vw;
    font-size: clamp(15px, 2vw, 1vw);
}

.about_con04 {
}
.about_con04 ol {
    counter-reset: number 0;
    display: flex;
    flex-flow: column;
    gap: 1.5vw;
}
.about_con04 li {
    position: relative;
    padding-left: 21px;
}
.about_con04 li:before {
    counter-increment: number 1;
    content: counter(number) ".";
    position: absolute;
    left: 0;
    top: 1px;
    font-family: var(--font_en);
    font-weight: bold;
}
.about_con04 li div {
    font-weight: bold;
}

/*-------------------------------------
にほんごがくしゅうページ
-------------------------------------*/
.japanese_con01 ol > li p {
    padding: 0;
}

.japanese_con02 {
}
.japanese_con02 dl {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.japanese_con02 dt {
    background: var(--m_color2);
    width: 8.5vw;
    padding: 0 10px;
    border-radius: 3px;
    color: var(--f_color2);
    text-align: center;
}
.japanese_con02 dd {
    width: calc(100% - 8.5vw - 10px);
}
.japanese_con02 .schedule_wrap {
}
.japanese_con02 .schedule_wrap .ttl {
    text-align: center;
    background: var(--m_color2);
    border-radius: 0.5vw;
    padding: 0.5vw;
    margin: 0 0 1.5vw;
    color: var(--f_color2);
    font-weight: bold;
    font-size: var(--f20);
    background: #f3f3f3;
}
.schedule_table table {
    width: 100%;
    margin: 10px 0;
}
.schedule_table table th {
    border-top: 1px solid var(--m_color);
    border-bottom: 1px solid var(--m_color);
    background: var(--m_color2);
    padding: 5px;
    color: var(--f_color2);
}
.schedule_table table th.consultation_hour_time {
    width: 25%;
    text-align: left;
}
.schedule_table table td {
    font-size: 13px;
    padding: 5px;
    border-bottom: 1px solid var(--m_color);
    text-align: center;
    /* color:  var(--m_color); */
    /* font-family: var(--font_en); */
    /* font-weight: bold; */
}
.schedule_table table .consultation_hour_time {
    width: 30%;
    font-size: var(--f18);
    color: var(--f_color2);
    font-family: var(--font_en);
    font-weight: bold;
}

.japanese_con03_link {
}

.japanese_con04 {
}
.japanese_con04_cld01_info {
    gap: 3vw;
}
.japanese_con04_cld01_info .item {
    border-radius: 1.5vw;
    background: #f3f3f3;
    padding: 3vw;
    flex: 1;
}
.japanese_con04_cld01_info .item .ttl {
    font-weight: bold;
    font-size: var(--f18);
    width: fit-content;
    background: linear-gradient(transparent 60%, #ffeb3b 60%);
    margin-bottom: 20px;
}

/*-------------------------------------
イベントページ
-------------------------------------*/
.event_con01 ol {
    counter-reset: number 0;
    display: flex;
    flex-flow: column;
    gap: 30px;
}
.event_con01 ol > li {
    position: relative;
    padding-left: 21px;
    /* background: var(--m_color2); */
    border-radius: 1.5vw;
    padding: 2vw;
    /* border: 2px dotted var(--m_color); */
    background: #f3f3f3;
}
.event_con01 ol:not(.num_non) li div:before {
    counter-increment: number 1;
    content: counter(number) ".";
    position: absolute;
    left: 0;
    top: 1px;
    font-family: var(--font_en);
    font-weight: bold;
}
.event_con01 li div {
    position: relative;
    padding-left: 18px;
    font-weight: bold;
    width: fit-content;
    background: linear-gradient(transparent 60%, #ffeb3b 60%);
    font-size: var(--f18);
    margin-bottom: 10px;
}
.event_con01 ol.num_non li div {
    padding-left: 0px;
}
.event_con01 ol.num_non li div.fc {
    margin-inline: auto;
}
.event_con01 li p {
    padding-left: 3vw;
}
.event_con01 ol li ul {
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.event_con01 ol li ul li {
    position: relative;
    margin-left: 18px;
    width: fit-content;
}
.event_con01 ol li ul li:before {
    content: "";
    content: "";
    position: absolute;
    left: -18px;
    top: 12px;
    border-radius: 50%;
    background: var(--m_color);
    width: 8px;
    height: auto;
    aspect-ratio: 1 / 1;
}

.event_calendar {
}
.event_calendar iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.event_con03_head {
    margin-bottom: 50px;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 2px dotted var(--m_color);
    align-items: flex-end;
}
.other_h2_2 {
    margin: 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    column-gap: 15px;
}
.other_h2_2:before {
    left: 0;
    transform: translateX(0);
    position: static;
    display: block;
    width: 100%;
}
.other_h2_2 span {
    align-items: center;
    margin: 0;
}
.other_h2_2 span:before {
}
.other_h2_2 span:after {
}
.event_con03 .event_con03_head .common_btn2 {
}
.event_con03 ul {
    gap: 3vw;
}
.event_con03 li {
    flex: 1;
    max-width: calc(100% / 4 - 1.5vw);
}
.event_con03 li .photo {
    aspect-ratio: 3/2;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 0.5vw;
    overflow: hidden;
    position: relative;
}
.event_con03 li .photo a {
    display: block;
    width: 100%;
    height: 100%;
}
.event_con03 li .photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: var(--tr);
}
.event_con03 li .photo:hover img {
    scale: 1.1;
}
.event_con03 li time {
    font-family: var(--font_en);
    margin-bottom: 0;
    display: block;
}
.event_con03 li .ttl {
}
.event_con03 li .ttl a {
    text-decoration: none;
    color: var(--f_color2);
    font-size: var(--f18);
    display: block;
    color: var(--f_color);
}
.event_con03 li .ttl h2 {
    line-height: inherit;
}
.event_con03 li .tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0.5vw;
}
.event_con03 li .tags a {
    background: var(--m_color);
    color: #fff;
    text-decoration: none;
    padding: 0.4vw 0.7vw;
    display: block;
    line-height: 1;
    font-size: var(--f11);
    font-weight: bold;
}
.event_con03 li .tags a:hover {
    background: var(--m_color2);
    color: var(--m_color);
}

/*-------------------------------------
ボランティアページ
-------------------------------------*/
.volunteer_con02 {
}
.volunteer_con02 ul {
    display: flex;
    gap: 1vw;
}
.volunteer_con02 ul li {
    flex: 1;
    /* background: #f3f3f3; */
    /* border-radius: 1vw; */
    /* padding: 2vw; */
    display: flex;
    flex-flow: column;
    gap: 1vw;
}
.volunteer_con02 ul li .img {
    border-radius: 1vw;
    overflow: hidden;
}
.volunteer_con02 ul li .img img {
}
.volunteer_con02 ul li .txt {
    background: #f3f3f3;
    border-radius: 1vw;
    padding: 2vw;
    flex: 1;
}

.volunteer_con02 ul li .ttl {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 0.5vw;
    justify-content: center;
}

.volunteer_con02 ul li .ttl span {
    font-weight: bold;
    width: fit-content;
    background: linear-gradient(transparent 60%, #ffeb3b 60%);
    font-size: var(--f18);
}

.volunteer_con03 {
}
.volunteer_con03 .volunteer_con03_info {
    padding: 2vw;
    margin-bottom: var(--m_ps8);
    /* width: min(700px,100%); */
    /* margin-inline: auto; */
    border-radius: 1vw;
}
.volunteer_con03 .volunteer_con03_info p {
    padding: 0;
}

/*-------------------------------------
通訳翻訳・相談ページ
-------------------------------------*/
.consultation_con02_cld {
}
.consultation_con02_cld .item {
    gap: 3vw;
    align-items: flex-start;
    /* background: #f3f3f3; */
    /* padding: 3vw; */
    /* border-radius: 1.5vw; */
}
.consultation_con02_cld .img {
    border-radius: 1vw;
    overflow: hidden;
    aspect-ratio: 3/2;
    width: 40%;
    order: 2;
}
.consultation_con02_cld .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.consultation_con02_cld .txt {
    flex: 1;
}

/*-------------------------------------
お役立ち情報ページ
-------------------------------------*/
.info_con01 ul {
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.info_con01 ul li {
    position: relative;
    margin-left: 18px;
}
.info_con01 ul li:before {
    content: "";
    position: absolute;
    left: -18px;
    top: 14px;
    border-radius: 50%;
    background: var(--m_color);
    width: 8px;
    height: auto;
    aspect-ratio: 1 / 1;
}
.info_con01 ul li a {
    color: var(--f_color);
}

/*-------------------------------------
お知らせ一覧
-------------------------------------*/
.news_wrap {
    gap: 5vw;
}
.news_inner {
    flex: 1;
}
.news_cat_wrap {
    margin-bottom: 50px;
}
.news_cat_wrap ul {
    display: flex;
    row-gap: 2vw;
    column-gap: max(10px, 2vw);
    flex-wrap: wrap;
}
.news_cat_wrap ul li {
    width: calc(100% / 4 - 1.5vw);
}
.news_cat_wrap ul li a {
    height: 100%;
    text-decoration: none;
    border-bottom: 2px dotted;
    font-weight: bold;
    padding-bottom: 0.5vw;
    justify-content: space-between;
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}
.news_cat_wrap ul li a:before {
    top: 40%;
}

.news_inner .main_list {
    flex-wrap: wrap;
    row-gap: 5vw;
    column-gap: 3vw;
}
.news_inner .main_list li {
    width: calc(100% / 2 - 1.5vw);
}
.news_inner .main_list li .news_photo {
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 1vw;
    margin-bottom: 1vw;
    position: relative;
}

.no_status_info {
    background: var(--m_color2);
    padding: min(20px, 2vw) 20px;
    margin-bottom: 50px;
}
.no_status_info div {
    text-align: center;
    color: var(--f_color2);
    font-size: var(--f20);
    font-weight: bold; /* margin-bottom: 10px; */
}
.no_status_info p {
    text-align: center;
}

li .no_status {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: var(--m_color); */
    /* opacity: .3; */
    pointer-events: none;
}
li .no_status:before {
    content: "締め切りました";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    font-size: var(--f25);
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    filter: drop-shadow(0px 0px 15px rgb(13 187 249 /20%)) drop-shadow(0px 0px 15px rgb(13 187 249 /20%))
        drop-shadow(0px 0px 15px rgb(13 187 249 /20%)) drop-shadow(0px 0px 15px rgb(13 187 249 /20%));
}
li .no_status:after {
    content: "";
    background: var(--m_color);
    opacity: 0.3;
    width: 100%;
    height: 100%;
    position: absolute;
}
.news_inner .main_list li .news_photo a {
    display: block;
    width: 100%;
    height: 100%;
}
.news_inner .main_list li .news_photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.news_inner .main_list li .news_txt {
}
.news_inner .main_list li .news_txt time {
    font-family: var(--font_en);
    margin-bottom: 0;
    display: block;
    margin-bottom: 0.3vw;
}
.news_inner .main_list li .news_txt .tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0.5vw;
}
.news_inner .main_list li .news_txt .tags a {
    background: var(--m_color);
    color: #fff;
    text-decoration: none;
    padding: 0.4vw 0.7vw;
    display: block;
    line-height: 1;
    font-size: var(--f11);
    font-weight: bold;
}
.news_inner .main_list li h2 {
}
.news_inner .main_list li h2 a {
    text-decoration: none;
    color: var(--f_color2);
    font-size: var(--f18);
    display: block;
    color: var(--f_color);
}

/*-------------------------------------
お知らせ末端
-------------------------------------*/
.single_news_wrap {
    gap: max(30px, 5vw);
}
.single_news_inner {
    flex: 1;
}
.single_news_top {
    align-items: flex-start;
    margin-bottom: 2vw;
    gap: 2vw;
}
.single_news_top time {
    background: var(--m_color2);
    border-radius: 0.7vw;
    padding: min(10px, 2vw);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 0.5vw;
}
.single_news_top time p {
    font-family: var(--font_en);
    color: var(--m_color);
    font-size: var(--f16);
    font-weight: bold;
    line-height: 1;
}
.single_news_top time span {
    font-family: var(--font_en);
    color: var(--m_color);
    font-size: calc(var(--f10) * 6);
    line-height: 0.7;
    display: block;
}
.single_news_cat {
    display: flex;
    gap: 0.5vw;
    margin-bottom: 0.3vw;
}
.single_news_cat a {
    background: var(--m_color);
    color: #fff;
    text-decoration: none;
    padding: 0.4vw 0.7vw;
    display: block;
    font-size: var(--f13);
    font-weight: bold;
    width: fit-content;
    line-height: 1;
}

.single_news_thumbnail {
    border-radius: 1vw;
    overflow: hidden;
    margin-bottom: 3vw;
}
.single_news_thumbnail img {
}

/*イベント概要*/
.article_main .event_desc.dl {
}
.article_main .event_desc dt {
    width: 20%;
    color: var(--f_color2);
}
.article_main .event_desc dd {
    width: 80%;
    padding: max(10px, 1vw);
    margin-bottom: max(10px, 1vw);
}
.article_main .event_desc dd a {
}

/*イベント参加フォーム*/
.event_from {
    /* max-width: var(--main_w2); */
    background: #f3f3f3;
    border-radius: 2vw;
    padding: 5vw 4vw;
    /* margin-inline: auto; */
    margin-top: 50px;
}
.article_main .event_from h2 {
    margin-top: 0;
    padding: 0;
    font-weight: bold;
    font-size: var(--f24);
    padding-bottom: 15px;
    border-bottom: 2px dotted;
    position: relative;
    margin-bottom: 50px;
    margin-bottom: 1.5em;
    padding-bottom: 1em;
    color: var(--f_color);
    background: none;
    border-radius: 0;
}
.event_from form {
    /* max-width: var(--main_w2); */
    margin-inline: auto;
}
.event_from .wpcf7-form_form .flex {
    flex-flow: column;
    gap: 10px;
    margin-bottom: min(30px, 3vw);
}
.event_from .wpcf7-form_form,
.event_from .wpcf7_right,
.event_from .wpcf7_left {
    border: none;
    width: 100%;
    padding: 0;
}
.event_from .wpcf7-form-control-wrap input,
.event_from .wpcf7-form-control-wrap textarea {
    background: #fff;
}
.event_from .readme {
    background: #fff;
    border: none;
}
.event_from select {
    display: block;
    /* aspect-ratio: 10/5; */
    padding: max(5px, 0.3vw) max(27px, 0.3vw) max(5px, 0.3vw) max(15px, 0.3vw);
    border-radius: 0.4vw;
}
.event_from span[data-name="menu-time"] {
}
.event_from span[data-name="event-course"],
.event_from span[data-name="menu-age"] {
    width: fit-content;
    display: block;
}

.event_from span[data-name="event-course"]::before,
.event_from span[data-name="menu-age"]::before,
.event_from span[data-name="menu-time2"]::before,
.event_from span[data-name="menu-time"]::before {
    border-bottom: 4px solid var(--f_color);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    content: "";
    position: absolute;
    right: 9px;
    top: 37%;
    width: 0;
    border-width: 0.3vw;
    transform: translateY(-50%);
}
.event_from span[data-name="event-course"]::after,
.event_from span[data-name="menu-age"]::after,
.event_from span[data-name="menu-time2"]::after,
.event_from span[data-name="menu-time"]::after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--f_color);
    content: "";
    position: absolute;
    right: 9px;
    top: 63%;
    width: 0;
    border-width: 0.3vw;
    transform: translateY(-50%);
}

/*確認画面*/
.event_from #wpcf7cpcnf table td {
    background: none;
}
.event_from #wpcf7cpcnf table th p {
    margin: 0;
}

/*-------------------------------------
会社概要ページ
-------------------------------------*/
.company_wrap {
}
.company_inner dl {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
}
.company_inner dt {
    float: left;
    width: 27.27%;
    padding: 23px 0;
    border-bottom: 1px solid #ddd;
}
.company_inner dd {
    float: left;
    padding: 23px 0;
    width: 72.73%;
    border-bottom: 1px solid #ddd;
}
.company_googlemap iframe {
    width: 100%;
    border: none;
    height: 450px;
}

/*-------------------------------------
ブログ
-------------------------------------*/
.blog_wrap,
.single_wrap {
    gap: var(--m_ps8);
}
.blog_inner,
.single_inner,
.search_inner {
    flex: 1;
}
.my_result_count {
    margin: 0 0 20px;
}
.blog_inner ul:not(.post-categories) {
    display: flex;
    gap: var(--m_ps5);
    flex-flow: column;
}
.blog_inner li {
}
.blog_con {
    display: flex;
    gap: min(var(--m_ps3), 5vw);
    align-items: flex-start;
}
.blog_photo {
    width: 40%;
    aspect-ratio: 3/2;
    height: auto;
}
.blog_photo a {
    width: 100%;
    height: 100%;
    display: block;
}
.blog_photo img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.blog_text {
    flex: 1;
}
.blog_title {
    margin: 0 0 10px;
    text-align: left;
    font-size: 16px;
}
.blog_title a {
    color: var(--f_color);
    text-decoration: none;
}
.blog_text .tags {
    margin-bottom: 10px;
}
.post-categories li {
    line-height: 1;
}
.blog_clock time {
}
.post-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.post-categories li a {
    background: var(--m_color);
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.8125rem;
    color: #fff;
    text-decoration: none;
    line-height: 1;
}
.post-categories li a:hover {
    background: #f9f9f4;
    color: var(--m_color);
}
.post-categories li a:hover:before {
    color: var(--m_color);
}
.post-categories li a:before {
    content: "#";
    /* font: 100%/1 "font awesome 6 free"; */
    color: #fff;
    display: inline-block;
    margin: 0 2px 0 0;
}
.share_sns_container {
    margin: 0 0 0 auto;
}
.share_sns_container li :before {
    font-size: 1.875rem;

    display: block;
    margin: 0 10px 0 0;
}
.share_sns_container li:nth-of-type(1) :before {
    color: #3f51b5;
}
.share_sns_container li:nth-of-type(2) :before {
    color: #222;
}
.share_sns_container li:nth-of-type(3) :before {
    color: #4caf50;
}
.article_top {
    align-items: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

/*記事内装飾*/
.article_main h2 {
    margin: 4vw 0 2vw;
    background: var(--m_color);
    padding: max(10px, 1vw) max(10px, 1.5vw);
    font-size: 25px;
    color: #ffffff;
    text-align: left;
    border-radius: 0.5vw;
}
.article_main h3 {
    /* margin: 30px 0 20px 0; */
    /* font-weight: bold; */
    /* font-size: 1.4375rem; */
    /* border-bottom: 1px solid #333; */
    /* padding: 0 0 5px; */
}
.article_main h3:after {
    content: none;
}
.article_main h3:before {
    content: none;
}
.article_main h4 {
    margin: 30px 0 20px 0;
    font-weight: bold;
    font-size: var(--f20);
}
.article_main h5 {
    margin: 30px 0 20px 0;
    font-weight: bold;
}
.box2,
.box1,
.box4,
.txt_solid_bl,
.txt_solid_rd,
.txt_dot_bk,
.txt_dot_gr,
.txt_dot_pk {
    display: inline-block;
}
.box5 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffdd40;
}
.box5:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #ffdd40;
}
.box6 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffdd40;
}
.box6:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #ffdd40;
}
.text_anime01 {
    -webkit-animation: blink 0.5s ease-in-out infinite alternate;
    -moz-animation: blink 0.5s ease-in-out infinite alternate;
    animation: blink 0.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.article_main .post_thumbnail_container img {
    display: block;
    margin: 0 auto 30px;
    height: auto;
}
.article_main img {
    display: block;
    height: auto;
    max-width: 100%;
    height: auto;
    display: block;
    width: revert-layer;
}
.article_main .wp-caption {
    width: min(310px, 100%) !important;
}
.article_main .wp-caption img {
    margin-bottom: 15px;
}
.article_main a {
}
.article_main p {
    margin: 0 0 25px;
    line-height: 1.8;
}
.article_main strong {
    background: linear-gradient(transparent 60%, #ffff66 60%);
    font-weight: bold;
}
.article_main table {
    margin: 0 0 25px;
    border-top: 1px solid var(--b_color);
    border-right: 1px solid var(--b_color);
}
.article_main table th {
    background: #e6f7f5;
    font-weight: bold;
    border-left: 1px solid var(--b_color);
    border-bottom: 1px solid var(--b_color);
    padding: 10px 20px;
}
.article_main table td {
    border-left: 1px solid var(--b_color);
    padding: 10px 20px;
    border-bottom: 1px solid var(--b_color);
    font-size: 15px;
}
.article_main ul {
    padding: 20px 20px 20px 30px;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    margin: 0 0 30px;
}
.article_main ul li {
    position: relative;
    padding: 0.5em 0.5em 0.5em 30px;
    line-height: 1.5em;
}
.article_main ul li:before {
    position: absolute;
    content: "";
    display: inline-block;
    background: #333;
    border-radius: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    line-height: 25px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.article_main ol {
    border: solid 1px #eee;
    position: relative;
    background: #f3f3f3;
    margin: 0 0 30px;
    border-radius: 1vw;
    padding-top: max(20px, 2vw);
    padding-bottom: max(20px, 2vw);
    padding-right: max(20px, 2vw);
    padding-left: max(33px, 4vw);
}
.article_main ol li {
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none !important;
    position: relative;
}
.article_main ol li:before {
    font-family: "Font Awesome 6 Free";
    content: "\f0da";
    position: absolute;
    font-weight: bold;
    left: -18px;
    color: gray;
}
.article_main dl {
    flex-wrap: wrap;
    margin-bottom: 50px;
    margin-top: 50px;
}
.article_main dt {
    background: var(--m_color2);
    padding: max(5px, 0.5vw) max(10px, 1vw);
    margin-bottom: max(10px, 1vw);
    font-weight: bold;
    border-radius: 0.4vw;
}
.article_main dd {
    /* border-left: 1px solid #333; */
    margin-bottom: max(20px, 2vw);
    /* line-height: 1.8; */
}
/*シングル　ページネーション*/
.single_pagenavi {
    justify-content: space-between;
    margin-top: max(30px, 5vw);
}
.single_pagenavi.has-pagination {
    margin-top: var(--main_mp);
}
.single_pagenavi .next {
}
.single_pagenavi .prev a,
.single_pagenavi .next a {
    background: var(--m_color);
    display: block;
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 0.7vw;
}
.single_pagenavi :before {
    color: #fff;
}
.single_pagenavi .prev a:hover,
.single_pagenavi .next a:hover {
    background: #999;
}
/*目次*/
.outline {
    background: #f3f3f3;
    padding: 30px;
    margin-top: 2vw;
    display: inline-block;
    max-width: 800px;
    width: 100%;
    line-height: 1.5em;
    border-radius: 1vw;
}
.outline__title {
    font-size: var(--f20);
    font-weight: bold;
}
.outline__toggle {
    display: none !important;
}
.outline__switch::before {
    content: "開く";
    cursor: pointer;
    background: #fff;
    border: solid 1px #eee;
    padding: 5px 10px;
    font-size: var(--f13);
    margin-left: 5px;
    border-radius: 5px;
}
.outline__toggle:checked + .outline__switch::before {
    content: "閉じる";
}
.outline__switch + .outline__list {
    overflow: hidden;
    width: 0;
    height: 0;
    margin: -20px 0;
    transition: var(--tr);
    border: none;
    padding: 0;
}
.outline__toggle:checked + .outline__switch + .outline__list {
    width: auto;
    height: auto;
    margin: 20px 0 0;
    transition: var(--tr);
    border-top: solid 1px #ddd;
    padding: 17px 20px 0;
    border-bottom: none;
    background: none;
}
ul.outline__list li {
    border: none;
    margin: 0 0 0;
    padding: 0.5em 0.5em 0.5em 15px;
}
ul.outline__list li:before {
    content: "-";
    width: 0;
    height: 0;
    line-height: 1.6;
    top: 6px;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
}
ul.outline__list ul {
    border: none !important;
    margin: 0 !important;
    padding: 0 0 0 1em !important;
    background: none !important;
}
.outline__link {
    position: relative;
    color: #191919 !important;
}
span.outline__number {
    display: none;
}
label.outline__switch {
    position: relative;
    float: right;
}
.outline ul {
    -webkit-padding-start: 1.2em;
}
/*-------------------------------------
サイドバー
-------------------------------------*/
.side_wrap {
    width: 23%;
    display: flex;
    flex-flow: column;
    gap: max(20px, 3vw);
}
.side_wrap .widget {
}
.widget_title {
    margin-bottom: 1vw;
}
.widget_title div {
    color: var(--f_color2);
    border-bottom: 2px dotted var(--m_color);
    padding-bottom: 1vw;
    font-family: var(--font_en);
    text-transform: capitalize;
    font-size: var(--f26);
}
.side_wrap li {
    position: relative;
    transition: var(--tr);
}
.side_wrap li:hover {
    opacity: 0.7;
}
.side_wrap li a {
    font-size: var(--f13);
    text-decoration: none;
    color: var(--f_color);
}
.side_wrap li a > div:nth-child(1) {
    width: 70px;
    height: auto;
    aspect-ratio: 3/2;
}
.side_wrap li a > div:nth-child(1) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.side_wrap li a > div:nth-child(2) {
    flex: 1;
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.side_wrap .widget ul {
    display: flex;
    flex-flow: column;
    gap: 0.5vw;
}
.widget_my_widget_recent_posts li a {
    gap: 10px;
    align-items: flex-start;
}
.widget_my_widget_recent_posts .news_clock {
    gap: 3px;
}
.widget_my_widget_recent_posts .news_clock * {
    line-height: 1;
}

/*検索窓*/
.widget_search {
    position: relative;
}
.widget_search div {
    display: flex;
    gap: 0.5vw;
}
.widget_search input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 2px solid var(--m_color);
    color: inherit;
    font-family: inherit;
    font-size: 16px;
    padding: 0.4vw 0.8vw;
    outline: 0;
    border-radius: 0.3vw;
}
.widget_search input[type="text"] {
    width: 100%;
    flex: 1;
}
.widget_search input[type="submit"] {
    border: none;
    cursor: pointer;
    /* position: absolute; */
    top: 5px;
    right: 0;
    font-weight: bold;
    font-family: "font awesome 6 free";
    color: var(--f_color2);
    background: var(--m_color);
    color: #fff;
    border-radius: 0.3vw;
    aspect-ratio: 1;
}
/*最近の投稿*/
.widget_my_recent_posts img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    height: auto;
}
.widget_my_recent_posts time {
    font-size: 0.6875rem;
    margin-bottom: 5px;
}
/*カテゴリーとアーカイブ*/
.widget_archive li a,
.widget_categories li a {
    display: block;
    padding-left: 1vw;
}
.widget_archive li:before,
.widget_categories > ul > li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8vw;
    width: 0.5vw;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--a_color);
}
.widget_categories li ul {
    padding-left: 1vw;
    padding-top: 0.5vw;
}
.widget_categories li li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    height: 1px;
    width: max(7px, 0.5vw);
    background: var(--f_color);
}

/*アーカイブ　ページネーション*/
.wp-pagenavi {
    margin-top: var(--main_mp);
}
.wp-pagenavi_inner {
    gap: 1.5vw;
}
.wp-pagenavi .page-numbers {
    background: #e5e5e5;
    color: var(--f_color);
    text-decoration: none;
    display: block;
    font-family: var(--font_en);
    font-weight: bold;
    border-radius: 0.3vw;
    aspect-ratio: 1;
    height: auto;
    width: 3.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wp-pagenavi .current {
    background: var(--m_color);
    color: #fff;
}
.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_wrap {
}
.contact_inner {
}

.contact_con01 {
}
.contact_con01 dl {
    flex-wrap: wrap;
    border-bottom: var(--b_color);
}
.contact_con01 dt {
    width: 25%;
    padding: 15px 10px;
    border-top: var(--b_color);
    font-weight: bold;
}
.contact_con01 dd {
    width: 75%;
    padding: 15px 10px;
    border-top: var(--b_color);
}
.contact_con01 dd > div {
    gap: 10px;
    flex-wrap: wrap;
}
.contact_con01 dd div div {
    background: var(--m_color2);
    width: max(100px, 6.5vw);
    padding: 0 10px;
    border-radius: 3px;
    color: var(--f_color2);
    text-align: center;
    white-space: nowrap;
}

.contact_info {
    text-align: center;
    background: var(--m_color2);
    padding: max(20px, 2vw) 20px;
    margin: 0 auto 5vw;
    border-radius: 1vw;
    /* font-weight: bold; */
}
.contact_info a {
    text-decoration: none;
    color: var(--f_color2);
    width: 100%;
    cursor: pointer;
    letter-spacing: 0.05em;
    font-size: clamp(27px, 5vw, 45px);
    font-family: var(--font_en);
    font-weight: normal;
    font-size: var(--f50);
}
.contact_info a i {
    color: var(--f_color2);
    font-size: 0.8em;
    padding-right: min(10px, 2vw);
}
.contact_info a:hover {
    opacity: 0.7;
}

/*お問い合わせフォーム内*/
.wpcf7 {
}
.wpcf7-list-item-label {
    margin-left: 5px;
}
.wpcf7-form_form {
    border-top: 1px solid #ddd;
    /* background: #fff; */
}
.wpcf7_left {
    width: 25%;
    padding: 1.7vw 0.7vw;
    border-bottom: 1px solid #ddd;
}
.wpcf7_left legend {
    display: inline-block;
    width: fit-content;
}
form.wpcf7-form .required:before {
    content: "必須";
    width: auto;
    display: inline-block;
    background: #e74c3c;
    padding: 0.25vw 1vw;
    font-weight: normal;
    font-size: var(--f10);
    color: #fff;
    margin-right: 0.5vw;
    vertical-align: middle;
    line-height: 1;
}
form.wpcf7-form .required2:before {
    content: "任意";
    width: auto;
    display: inline-block;
    background: #999;
    padding: 0.25vw 1vw;
    font-weight: normal;
    font-size: var(--f10);
    color: #fff;
    margin-right: 5px;
    vertical-align: middle;
    line-height: 1;
}
.wpcf7_right {
    width: 75%;
    padding: 1.7vw 0.7vw;
    border-bottom: 1px solid #ddd;
    border-left: none;
    /* border-bottom: none; */
}
.wpcf7_checkbox_title {
    max-width: 200px;
    width: 100%;
    border: 1px solid #ddd;
    border-bottom: none;
    background: #f3f3f3;
}
span.wpcf7-list-item {
    display: block !important;
}
.wpcf7-list-item_first_input input {
    width: auto !important;
}
span.wpcf7-list-item input {
    width: auto !important;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline-block;
    position: relative;
    top: -1px;
    width: 1.43rem;
    height: 1.43rem;
    margin-right: 0.72rem;
    padding: 0;
    border: 2px solid #e7e7e7;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="checkbox"]::after,
input[type="radio"]::after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--f_color2);
    transition: var(--tr);
    content: "";
    display: block;
    position: absolute;
    opacity: 0;
}
input[type="radio"]:checked::after,
input[type="checkbox"]:checked::after {
    opacity: 1;
}
span.wpcf7-list-item input[type="checkbox"]::after {
    top: 6px;
    left: 6px;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
}
@media all and (-ms-high-contrast: none) {
    span.wpcf7-list-item input {
        margin: 0 5px 0 0;
    }
}
.form_privacy span.wpcf7-list-item input {
    margin: 0 5px 4px 0;
    aspect-ratio: 1;
}
.wpcf7_container #info2 {
    margin: 10px 0 0;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border: none;
    /* border-radius: 3px; */
    padding: 8px;
    width: 100%;
    font-size: 100%;
    background: #f3f3f3;
    outline: none;
    border-radius: 0.5vw;
    font-size: 16px;
    font-size: clamp(16px, 7vw, var(--f16));
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    cursor: pointer;
}
.wpcf7-checkbox input[type="checkbox"] {
    aspect-ratio: 1;
}

.wpcf7_right.min .wpcf7-form-control-wrap input {
    width: 50%;
}

.form_privacy {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.wpcf7c-elm-step2 {
    text-align: center;
}
.wpcf7_container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
input::placeholder {
    color: #ddd;
}
input::-moz-input-placeholder {
    color: #ddd;
}
input::-ms-input-placeholder {
    color: #ddd;
}
textarea::placeholder {
    color: #ddd;
}
textarea::-ms-placeholder {
    color: #ddd;
}
textarea::-moz-placeholder {
    color: #ddd;
}
/*submitボタンのリセットCSS*/
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
.wpcf7-form div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: 2px solid #e94e43;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7-form span.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #e94e43;
}
/*submitボタンの装飾*/
.wpcf7c_submit {
    text-align: center;
}
.wpcf7c_submit input {
    outline: none;
    max-width: 250px;
    width: 100%;
    margin: 15px auto 0;
    display: block;
    color: #fff;
    font-weight: 700;
    z-index: 0;
    border: none;
    padding: 15px;
    font-size: var(--f16);
    letter-spacing: 0.18em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: var(--m_color);
    border-radius: 0.7vw;
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    opacity: 0.8;
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 1px solid;
    color: var(--m_color);
}

/*プライバシーポリシー*/
.readme {
    width: 78%;
    height: 200px;
    margin: 40px auto 10px;
    overflow-y: scroll;
    padding: 10px 20px;
    border: 1px solid #dadada;
    font-size: 0.8125rem;
}
.readme dl {
    margin: 20px 0 0;
}
.readme dt {
    font-weight: bold;
}
.readme dd {
    margin: 0 0 0 15px;
}
.readme ol li {
    margin: 0 0 0 40px;
    list-style: decimal-leading-zero;
}

/* コンタクトフォーム確認画面 */
.main_wrap #wpcf7cpcnf {
    z-index: 2;
    width: min(700px, 100%);
    right: 0;
    bottom: 0;
}
#wpcf7cpcnf table {
    border: none;
    width: 100%;
}
#wpcf7cpcnf table th {
    background: var(--m_color2);
    /* border: 1px solid #ccc; */
    text-align: left;
    width: 100%;
    display: block;
    padding: 10px 15px;
}
#wpcf7cpcnf table th p {
    color: var(--f_color);
    /* color: var(--f_color2); */
}
#wpcf7cpcnf table td {
    background: #fff;
    border: 1px solid var(--b_color);
    width: 75%;
    padding: 5px 15px;
    display: block;
    width: 100%;
}
.wpcf7cp-btns {
    text-align: center;
}
.wpcf7cp-btns button {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0.5vw;
}
.wpcf7cp-cfm-edit-btn {
    background: #ddd;
    color: #202020;
    border: none;
}
.wpcf7cp-cfm-submit-btn {
    background: var(--m_color);
    color: #fff;
    border: none;
}

/*recaptcha*/
.grecaptcha-badge {
    bottom: 90px !important;
    z-index: 5;
    /* display: none; */
}

/*送信完了画面*/
.thanks_tel {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.thanks_tel a {
    font: clamp(27px, 4vw, 60px) var(--font_en);
    text-decoration: none;
    color: var(--f_color);
}
.thanks_tel a i {
    font-size: clamp(23px, 4vw, 45px);
    margin-right: 10px;
}

/*-------------------------------------
フッター部分
-------------------------------------*/
/* フッター */
.footer {
    background: var(--m_color2);
    position: relative;
    z-index: 0;
}
.footer_inner {
    justify-content: space-between;
    padding-left: max(20px, 5vw);
    padding-right: max(20px, 5vw);
    padding-top: 6vw;
    padding-bottom: 6vw;
    align-items: flex-start;
}
.footer_nav {
    display: flex;
    column-gap: 3vw;
    row-gap: 2vw;
    flex-wrap: wrap;
    width: 45%;
}
.footer_nav a {
    text-decoration: none;
    position: relative;
    font-size: var(--f14);
    color: var(--f_color);
    display: flex;
    font-weight: bold;
    align-items: center;
    gap: 0.4vw;
}
.footer_nav a:before {
    content: "";
    width: 0.6vw;
    height: 0.6vw;
    display: block;
    background: var(--m_color);
    border-radius: 50%;
}
.footer_nav a:hover {
    text-decoration: underline;
}
.footer_address {
    /* text-align: center; */
    letter-spacing: 0.1rem;
    flex: 1;
}
.footer_address .site_ttl {
    padding: 0;
    position: static;
    background: none;
    width: 15vw;
    visibility: visible;
    margin-bottom: 30px;
    background: none;
    opacity: 1;
}
.footer_address .site_ttl a {
    margin: 0 auto;
    background: none;
}
/*sns部分*/
.footer_address_sns {
    margin-top: 20px;
}
.footer_address_sns a {
    font-size: 25px;
    display: inline-block;
}
.footer_address_sns i {
    color: #ddd;
}

/*アドレス*/
.address_container {
    /* text-align: center; */
    font-size: var(--f14);
    color: var(--f_color2);
    font-weight: bold;
    color: var(--f_color);
}
.address_container a {
    color: var(--f_color2);
    text-decoration: none;
    color: var(--f_color);
}
.copyright {
    text-align: center;
    border: none;
    color: #fff;
    padding: 2vw 20px;
    background: var(--m_color);
}
.copyright p {
    color: #fff;
    font-size: var(--f13);
}
.copyright a {
    font-size: 0.875rem;
    color: #fff;
}

/* topに戻る */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 6;
}
#page-top a {
    display: block;
    position: relative;
    padding: 10px 12px;
    background: var(--m_color);
    width: 50px;
    height: 50px;
    border-radius: 0.7vw;
}
#page-top a::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 61%;
}
#page-top a:hover {
    opacity: 0.7;
}

/*404*/
.btn_404.fc {
    margin-inline: auto;
    width: fit-content;
}
.btn_404 a {
    font-weight: bold;
    color: var(--f_color);
    width: fit-content;
    font-family: var(--font_en), var(--font_ja);
    font-size: var(--f20);
}

@media only screen and (max-width: 1024px) {
    .wrap {
        background: none;
    }
}
@media only screen and (min-width: 881px) {
    body .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 880px) {
    :root {
        --f10: 10px;
        --f11: 11px;
        --f12: 12px;
        --f13: 13px;
        --f14: 14px;
        --f15: 15px;
        --f16: 16px;
        --f17: 17px;
        --f18: 18px;
        --f19: 19px;
        --f20: 20px;
        --f21: 21px;
        --f22: 22px;
        --f23: 23px;
        --f24: 24px;
        --f25: 25px;
        --f26: 26px;
        --f27: 27px;
        --f28: 28px;
        --f29: 29px;
        --f30: 30px;
        --f31: 31px;
        --f32: 32px;
        --f33: 33px;
        --f34: 34px;
        --f35: 35px;
        --f36: 36px;
        --f37: 37px;
        --f38: 38px;
        --f39: 39px;
        --f40: 40px;
        --f41: 41px;
        --f42: 42px;
        --f43: 43px;
        --f44: 44px;
        --f45: 45px;
        --f46: 46px;
        --f47: 47px;
        --f48: 48px;
        --f49: 49px;
        --f50: 50px;
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .line_btn {
        width: fit-content;
    }
    .line_btn img {
        width: 20px;
    }
    body .line_btn a {
        padding: 10px 15px;
    }

    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    body {
        font-size: 16px;
    }
    .other_h2_2 {
        font-size: clamp(18px, 3vw, 24px);
        gap: min(10px, 2vw);
    }
    .other_h2_2:before {
        font-size: clamp(35px, 7vw, 50px);
        line-height: 1;
    }
    .other_h2:before {
        font-size: clamp(45px, 7vw, 54px);
    }
    .main_col {
        margin-bottom: 80px;
    }
    .main_pa {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .sp_none {
        display: none !important;
    }
    .main_wrap {
        /* padding-top: 80px; */
        /* padding-bottom: 80px; */
    }
    .common_btn2 a:before {
        width: 7px;
        height: 7px;
        right: 10px;
    }
    .common_btn2 a:after {
        width: 20px;
    }
    a.arrow:before {
        width: 7px;
        height: 7px;
        right: 10px;
    }
    a.arrow:after {
        width: 20px;
    }

    body .line_btn a {
        gap: 10px;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .h_nav_wrap {
        background: none;
        padding: 19px 30px;
    }
    .h_nav_wrap.is-fixed {
        padding: 20px 30px;
    }
    body:not(.home) .h_img_wrap {
        padding-top: 80px;
        padding-bottom: 80px;
        margin-top: 90px;
    }

    .wrap {
    }
    .nav_sidebar {
        display: none;
    }
    .header {
        position: relative;
    }
    body.home .h_img_wrap:before {
        content: "";
        width: 70%;
        height: 123%;
        position: absolute;
        right: -5vw;
        top: -5vw;
        background: var(--m_color2);
        border-radius: 2vw 0 0 2vw;
    }
    .h_img_wrap {
        padding-top: 0;
        margin-top: 17vw;
    }
    .h_img_img {
    }
    header .site_ttl {
        /* opacity: 1; */
        /* visibility: initial; */
        width: min(200px, 30vw);
    }
    header .site_ttl a {
        padding: 7px 10px;
        border-radius: 5px;
    }
    .h_img_slide_navi_dots .slick-dots li button:before {
        font-size: 16px;
    }

    /***** ハンバーガーメニュー *****/
    .scroll-prevent {
        overflow: hidden;
    }

    /************/
    .menu-trigger {
        display: inline-block;
        width: 30px;
        height: auto;
        vertical-align: middle;
        cursor: pointer;
        position: fixed;
        top: 35px;
        right: 30px;
        z-index: 100;
        aspect-ratio: 2/1.5;
        transition: var(--tr);
    }
    .h_nav_wrap.is-fixed .menu-trigger {
        top: 20px;
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--f_color2);
        transition: var(--tr);
        border-radius: 10px;
    }
    .menu-trigger.active span {
        /* background-color: var(--f_color) !important; */
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(10px) rotate(-45deg);
        width: 30px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 50%;
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-11px) rotate(45deg);
    }
    .sp_h_nav_inner {
        width: 100%;
        height: 100%;
        padding: 75px 0;
        background: #ffffff;
        position: fixed;
        top: 0;
        z-index: 8;
        left: 100%;
        transition: var(--tr);
        overflow-y: auto;
    }
    nav.open .sp_h_nav_inner {
        left: 0;
    }
    .sp_h_nav_inner ul {
        height: auto;
        margin: 0 0 10vw;
        border-top: 2px dotted #ddd;
        width: calc(100% - 40px);
        margin-inline: auto;
    }
    .sp_h_nav_inner .sp_h_nav_list li {
    }
    .sp_h_nav_inner .sp_h_nav_list a {
        text-align: left;
        position: relative;
        display: block;
        text-decoration: none;
        color: var(--f_color);
        padding: 15px 20px;
        /* font: 16px var(--font_en); */
        border-bottom: 2px dotted #ddd;
        display: flex;
        align-items: center;
        font-weight: bold;
        gap: 10px;
    }
    .sp_h_nav_inner .sp_h_nav_list li:last-child a {
        display: inline-block;
        background: var(--m_color);
        border-radius: 100px;
        padding: 15px 30px;
        color: #fff;
        width: 90%;
        border-bottom: none;
        text-align: center;
    }
    .sp_h_nav_inner .sp_h_nav_list a:before {
        /* content: ""; */
        content: "";
        /* width: 0.6vw; */
        /* height: 0.6vw; */
        display: block;
        background: var(--m_color);
        border-radius: 50%;
        width: 7px;
        height: 7px;
    }
    .sp_h_nav_inner .sp_h_nav_list li:last-child a:before {
        position: absolute;
        right: 25px;
        top: 50%;
        display: block;
        content: "";
        width: 7px;
        height: 7px;
        border-right: 2px solid #fff;
        border-top: 2px solid #fff;
        transform: rotate(45deg) translateY(-50%);
        border-radius: 0;
    }

    .sp_h_nav_inner .line_btn {
        margin-bottom: 30px;
        margin-inline: auto;
    }

    .sp_h_nav_inner .sp_h_nav_list_inner {
        border-bottom: none;
    }
    .sp_h_nav_inner .sp_h_nav_list_inner li a {
        padding: 10px 0 10px 60px;
        color: #666;
    }
    .sp_h_nav_inner .sp_h_nav_list_inner li a:before {
        content: "┗";
        font-weight: normal;
        left: 40px;
        color: var(--f_color);
    }
    .sp_h_nav_inner li:last-child {
        border: none;
        text-align: center;
        margin: 30px 0 0 0;
    }
    .sp_h_nav_tel {
        padding: 30px 10px;
        background: #f3f3f3;
        text-align: center;
        width: 90%;
        margin: 0 auto;
        border-radius: 2vw;
    }
    .sp_h_nav_tel a {
        text-decoration: none;
        color: var(--m_color);
        display: block;
        margin: 0 0 10px;
        letter-spacing: 0.4vw;
        font: 900 25px/1 var(--font_en);
        font-weight: normal;
        font-size: clamp(32px, 7vw, 40px);
    }
    .sp_h_nav_tel i {
        color: var(--m_color);
        font-size: 0.8em;
        padding-right: 5px;
    }
    .sp_h_nav_sns {
        text-align: center;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 0 10vw;
    }
    .sp_h_nav_sns a {
        background: #fbfbf8;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: inline-block;
        text-align: center;
        font-size: 16px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 10px 0 0;
        text-decoration: none;
    }
    .sp_h_nav_sns a i {
        color: var(--m_color);
    }
    .sp_h_nav_sns img {
        max-width: 28px;
    }

    .sp_h_nav_tel dl {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        flex-flow: column;
        text-align: left;
        margin-top: 20px;
    }
    .sp_h_nav_tel dt {
        background: var(--m_color2);
        width: 110px;
        padding: 7px 20px;
        border-radius: 3px;
        color: var(--f_color2);
        text-align: center;
        font-size: 15px;
        margin-bottom: 5px;
    }
    .sp_h_nav_tel dd {
        width: 100%;
        margin-bottom: 15px;
    }

    /******使わない時はコメントアウト推奨 hader_nav.phpの部分も*****/
    /* .stripeWrapper {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        left: 0;
        top: 0;
    }
    .stripe {
        background-color: var(--m_color);
        transform: translateY(-100%);
    }
    .sp_h_nav_inner {
        position: absolute;
        top: 0%;
        left: 50% !important;
        transform: translate(-50%, 0%);
        height: 100svh;
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        background: none;
    }
    .sp_h_nav_inner li {
        width: fit-content;
        overflow: hidden;
    } */

    /*ハンバーガーメニューここまで*/
    /***************************/

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .top_new_wrap .common_btn2.pc_none {
        display: flex;
    }
    .top_new_inner {
        max-width: 100%;
    }
    .top_new_inner li .news_ttl a {
        font-size: 16px;
    }
    .tab_item {
        font-size: clamp(13px, 3vw, 14px);
        height: auto;
        padding: 5px 10px;
    }
    .top_new_inner li .news_time time {
        font-size: 15px;
    }
    .top_new_inner li .news_time span a {
        font-size: 13px;
        padding: 5px 10px;
    }
    .top_new_inner .tabs {
        margin-bottom: 50px;
        row-gap: 5px;
    }

    .top_con01_inner li .img {
        margin-bottom: 20px;
    }
    .top_con01_inner li .ttl a {
        margin-bottom: 10px;
    }

    /*-------------------------------------
    CIFAについて
    -------------------------------------*/
    .about_con02 dt {
        margin-left: 15px;
    }
    .about_con02 dt:before {
        width: 8px;
        top: 12px;
        left: -15px;
    }
    .about_con03 ul.list li {
        width: auto;
        width: calc(100% / 2 - 20px);
    }
    .about_inner .desc li .img {
        margin-bottom: 15px;
    }
    .about_inner .desc li a {
        margin: 0;
        padding-right: 30px;
    }
    .about_inner .desc li a:before {
    }
    .about_con00 dl dd ul ul > li {
        margin-left: 15px;
    }
    .about_con00 dl dd ul ul li:before {
        width: 7px;
        top: 11px;
        left: -15px;
    }

    .m_a {
        max-width: 100%;
    }

    /*-------------------------------------
    にほんごがくしゅう
    -------------------------------------*/
    .japanese_con02 dl {
    }
    .japanese_con02 dt {
        width: 130px;
    }
    .japanese_con02 dd {
        width: calc(100% - 130px - 10px);
    }

    /*-------------------------------------
    お知らせ一覧ページ
    -------------------------------------*/
    .news_wrap {
        flex-flow: column;
    }

    /*-------------------------------------
    お知らせ末端ページ
    -------------------------------------*/
    .single_news_wrap {
        flex-flow: column;
    }
    .singleh1 {
        font-size: clamp(23px, 4vw, 25px);
    }
    .single_pagenavi {
    }

    /*-------------------------------------
    ブログ
    -------------------------------------*/
    .blog_wrap,
    .single_wrap {
        display: block;
    }
    .blog_inner,
    .single_inner,
    .search_inner,
    .side_wrap {
        width: 100%;
    }
    .blog_inner {
        margin: 0 0 50px;
    }
}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 80px;
        --m_ps3: 20px;
        --m_ps5: 30px;
        --m_ps8: 50px;
        --main_w: min(1200px, calc(100% - (30px * 2)));
        --main_w2: min(1400px, calc(100% - (30px * 2)));
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .desc p {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.8;
    }
    .main_col {
        /* margin-bottom: 50px; */
    }
    .main_pa {
        /* padding-top: 50px; */
        /* padding-bottom: 50px; */
    }
    .main_wrap {
        /* padding-top: 50px; */
        /* padding-bottom: 50px; */
    }
    .sp_none2 {
        display: none !important;
    }
    .pc_none2 {
        display: block;
    }
    body:not(.home) .h_img_wrap {
        padding-top: 50px;
        padding-bottom: 50px;
        margin-top: 23vw;
    }
    .h1,
    body:not(.home):not(.single) h1 {
        font-size: 16px;
        /* padding: 0 30px; */
    }
    body:not(.home) h1.singleh1 {
        padding: 0;
        font-size: 20px;
        margin-bottom: 10px;
    }
    body:not(.home):not(.single) h1:before,
    body.single .h1:before {
        font-size: clamp(30px, 6vw, 35px);
    }
    body:not(.home) h1::after {
        left: 23px;
        top: 14px;
    }
    h2:before {
        /* font-size: 45px; */
        /* top: -70px; */
    }
    .top_h2 h2 {
        margin-bottom: 30px;
    }
    .top_h2 h2:after {
        margin-top: 25px;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .other_h2 {
        font-size: clamp(22px, 6vw, 26px);
    }
    .other_h2:before {
        font-size: clamp(35px, 7vw, 54px);
    }
    .other_h2_2 span {
        /* margin-left: 10px; */
    }
    .other_h2 span:before {
        width: 10px;
    }
    .other_h2 span:after {
        width: 10px;
    }

    /*スクロールヒント*/
    .js-scrollable {
        overflow: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .js-scrollable::-webkit-scrollbar {
        display: none;
    }
    .scroll-hint-icon {
        height: 66px;
        top: 10px;
        width: 66px;
        left: auto;
        right: 10px;
        background: #004bb1;
        background: -moz-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: -webkit-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004bb1', endColorstr='#00beff', GradientType=1);
        background: #2c3e57;
    }
    .scroll-hint-icon:before {
        width: 25px;
        height: 30px;
    }
    .scroll-hint-icon:after {
        width: 30px;
        height: 10px;
        background-size: contain;
    }
    .scroll-hint-text {
        font-size: 13px;
        white-space: normal;
        margin-top: 0;
    }

    .wrap:before {
        top: 60px;
        height: 30vh;
    }
    .h_img_wrap {
        /* padding-top: 100px; */
        margin-top: 23vw;
    }
    body.home .h_img_wrap:before {
        height: 113%;
        right: -6vw;
    }
    .h_img_img {
        max-height: 100%;
        /* height: 50vh; */
        aspect-ratio: 3/3;
    }
    .h_img_img * {
        height: 100%;
    }
    .h_img_img img {
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_inner {
        flex-flow: column;
    }
    .common_cta_wrap {
        padding: 30px 20px;
    }

    /*-------------------------------------
    レイアウト
    -------------------------------------*/
    .wrap {
        /* font-size: 15px; */
        padding-bottom: 50px;
        overflow: hidden;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    .h_nav_wrap {
        padding: 9px 20px;
    }
    .h_nav_wrap.is-fixed {
        padding: 9px 20px;
    }
    header .site_ttl {
        width: 180px;
    }
    .site_ttl img {
        width: 100%;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 140px;
    }
    .site_ttl a {
        color: #fff;
    }
    .menu-trigger {
        top: 25px;
        right: 20px;
    }
    .h_nav_wrap.is-fixed .menu-trigger {
        top: 20px;
    }

    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/
    .top_con01_inner {
        flex-flow: column;
    }
    .top_con01_inner li {
        width: 100%;
    }
    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .tab_item {
        /* max-width: 100%; */
        white-space: nowrap;
        width: fit-content;
    }
    .tab_content_description li {
        align-items: flex-start;
        gap: 10px;
    }
    .top_new_inner li .news_photo {
        width: 20%;
    }

    /*-------------------------------------
    TOPページインスタ
    -------------------------------------*/
    .insta_img_list .item {
        width: calc(100% / 2 - 5px);
        margin-bottom: 5px;
    }
    .new_item_date::before {
        top: 15px;
        right: 0;
    }
    .new_item_date::after {
        top: 15px;
        right: 0px;
    }

    /*-------------------------------------
    CIFAについて
    -------------------------------------*/
    .about_inner .desc ul {
    }
    .about_inner .desc li {
    }

    .about_con01 dl {
        flex-flow: column;
    }
    .about_con01 dt {
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
    }
    .about_con01 dd {
        width: 100%;
    }

    .about_con02 dd {
        margin-top: 15px;
    }
    .about_con02 dl {
        padding: 30px 20px;
    }
    .about_con02 dd ol li {
        margin-bottom: 20px;
    }
    .about_con02 dd div {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .about_con02_link a {
        font-size: 14px;
    }
    .about_con02 dd p {
        padding-left: 0;
        line-height: 1.6;
    }

    .about_con03 ul.list {
        flex-flow: column;
    }
    .about_con03 ul.list li {
        width: 100%;
    }
    .about_con03 ul.list li::before {
        top: 7px;
    }

    .about_con04 ol {
        gap: 20px;
    }
    .about_con04 ol li {
    }
    .about_con04 ol div {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .about_con04 ol p {
        line-height: 1.6;
    }

    /*-------------------------------------
    にほんごがくしゅう
    -------------------------------------*/
    .event_con01 ol > li {
        padding: 30px 20px;
    }
    .event_con01 ol.num_non li div {
        font-size: 17px;
    }
    .schedule_table table {
        table-layout: fixed;
        width: 100%;
    }
    .schedule_table table tbody {
        display: table;
        width: 100%;
    }
    .schedule_table table th {
        width: 50px;
    }
    .schedule_table table td {
        /* width: 50px; */
    }
    .schedule_table table .consultation_hour_time {
        font-size: clamp(14px, 4vw, 18px);
    }

    .japanese_con04_cld01_info {
        flex-flow: column;
        gap: 30px;
    }
    .japanese_con04_cld01_info .item {
        padding: 30px 20px;
    }

    .japanese_con02 dl {
        flex-flow: column;
        margin-bottom: 50px;
    }
    .japanese_con02 dt {
        width: 100%;
        padding: 5px 10px;
        font-weight: bold;
    }
    .japanese_con02 dd {
        width: 100%;
    }

    /*-------------------------------------
    イベントページ
    -------------------------------------*/
    .event_calendar iframe {
        aspect-ratio: 16 / 20;
    }
    .event_con03 ul {
        flex-flow: column;
        gap: 20px;
    }
    .event_con03 li {
        width: 100%;
        display: flex;
        max-width: 100%;
        gap: 10px;
        align-items: flex-start;
    }
    .event_con03 li .photo {
        width: 30%;
        margin: 0;
    }
    .event_con03 li .txt {
        flex: 1;
    }
    .event_con03 li time {
        font-size: 13px;
    }
    .event_con03 li .tags {
    }
    .event_con03 li .tags a {
        font-size: 10px;
        padding: 5px 10px;
    }
    .event_con03 li .ttl a {
        font-size: 16px;
        font-weight: bold;
    }

    li .no_status {
    }
    li .no_status:before {
        font-size: clamp(12px, 3vw, 14px);
    }

    /*-------------------------------------
    ボランティア
    -------------------------------------*/
    .volunteer_con02 ul {
        flex-flow: column;
        gap: 30px;
    }
    .volunteer_con02 ul li {
        gap: 10px;
    }
    .volunteer_con03 .volunteer_con03_info {
        padding: 30px 20px;
    }

    /*-------------------------------------
    通訳翻訳・相談
    -------------------------------------*/
    .consultation_con02_cld .item {
        flex-flow: column;
    }
    .consultation_con02_cld .img {
        order: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .contact_wrap {
        /*  max-width: min(1000px, calc(100% - (30px * 2))); */
    }
    .contact_con01 dl {
        flex-flow: column;
    }
    .contact_con01 dt {
        width: 100%;
        padding-bottom: 0;
        font-size: 17px;
    }
    .contact_con01 dd {
        border: none;
        width: 100%;
    }

    form.wpcf7-form .required:before,
    form.wpcf7-form .required2:before {
        font-size: 10px;
        padding: 3px 10px;
    }

    .contact_inner > p {
        text-align: left;
    }
    .contact_info a {
        font-size: 30px;
    }

    .wpcf7 {
        margin: 30px 0 0;
    }
    .wpcf7_container div.flex {
        display: block;
    }
    .wpcf7_checkbox_title {
        border: none;
    }
    .wpcf7-form-control-wrap input,
    .wpcf7-form-control-wrap textarea {
        font-size: 16px;
    }
    span.wpcf7-list-item input[type="checkbox"]::after {
        top: 3px;
        left: 3px;
    }
    .wpcf7-form_form .flex {
        display: block;
        border-bottom: 1px solid #ddd;
        padding: 0 0 15px;
        width: 100%;
    }
    .wpcf7-form_form label.flex {
        width: fit-content;
        position: relative;
        display: flex;
        padding-bottom: 0;
    }
    .wpcf7_left {
        max-width: 100%;
        border: none;
        padding: 10px 0;
        display: block;
        width: 100%;
    }
    .wpcf7_right {
        /* border-left: 1px solid #ddd; */
        padding: 0;
        border: none;
    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
        font-size: 14px;
    }

    /*確認画面*/
    .main_wrap #wpcf7cpcnf {
        z-index: 2;
    }
    #wpcf7cpcnf table th {
        width: 100%;
        display: block;
        background: none;
        border-bottom: none;
        padding-bottom: 0;
        border-left: none;
        border-right: none;
    }
    #wpcf7cpcnf table td {
        width: 100%;
        display: block;
        border-top: none;
        border-bottom: none;
        border-left: none;
        border-right: none;
    }

    /*-------------------------------------
    お知らせ一覧ページ
    -------------------------------------*/
    .news_cat_wrap ul {
        column-gap: 20px;
    }
    .news_cat_wrap ul li {
        width: calc(100% / 2 - 10px);
    }
    .news_inner .main_list li {
        width: 100%;
    }
    .news_inner .main_list li section {
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }
    .news_inner .main_list li .news_photo {
        width: 30%;
    }
    .news_inner .main_list li .news_txt {
        flex: 1;
    }
    .news_inner .main_list li .news_txt .tags {
        gap: 5px;
    }
    .news_inner .main_list li .news_txt time {
        font-size: 13px;
    }
    .news_inner .main_list li .news_txt .tags a {
        font-size: 10px;
        padding: 5px 10px;
    }
    .news_inner .main_list li h2 a {
        font-size: 16px;
    }

    /*サイドバー*/
    .widget_title {
        margin-bottom: 10px;
    }
    .widget_title div {
        padding-bottom: 10px;
    }
    .side_wrap .widget ul {
        gap: 10px;
    }
    .side_wrap .widget ul ul {
        padding: 10px 0 0 10px;
    }
    .widget_archive li a,
    .widget_categories li a {
        padding-left: 13px;
        font-size: 15px;
    }
    .widget_archive li:before,
    .widget_categories > ul > li:before {
        width: 8px;
        top: 9px;
    }
    .side_wrap li a {
        font-size: 15px;
    }
    .widget_search form,
    .widget_search div {
        width: 100%;
    }
    .widget_search input[type="text"] {
        padding: 10px;
    }
    .widget_search input[type="submit"] {
        width: 50px;
    }

    /*ページネーション*/
    .wp-pagenavi_inner {
        gap: 10px;
    }
    .wp-pagenavi .page-numbers {
        width: 40px;
        height: auto;
        aspect-ratio: 1;
    }

    /*-------------------------------------
    お知らせ末端ページ
    -------------------------------------*/
    .single_news_top {
        flex-flow: column;
    }
    .single_news_top time {
        flex-flow: nowrap;
    }
    .single_news_top time span {
        font-size: 16px;
        font-weight: bold;
        display: flex;
    }
    .single_news_top time span:before {
        content: ".";
        display: block;
    }
    .single_news_cat {
        margin-bottom: 10px;
    }
    .single_news_cat a {
        font-size: 13px;
        padding: 5px 10px;
    }

    /*イベント概要*/
    .article_main dl.event_desc {
        flex-flow: column;
    }
    .article_main .event_desc dt {
        width: 100%;
        margin-bottom: 0;
    }
    .article_main .event_desc dd {
        width: 100%;
    }

    /*イベント申し込みフォーム*/
    .article_main .event_from h2 {
        font-size: clamp(18px, 3vw, 22px);
        text-align: center;
    }
    .event_from span[data-name="event-course"]::before,
    .event_from span[data-name="menu-age"]::before,
    .event_from span[data-name="menu-time2"]::before,
    .event_from span[data-name="menu-time"]::before {
        border-width: 5px;
    }
    .event_from span[data-name="event-course"]::after,
    .event_from span[data-name="menu-age"]::after,
    .event_from span[data-name="menu-time2"]::after,
    .event_from span[data-name="menu-time"]::after {
        border-width: 5px;
    }

    .event_from select {
        padding: 8px 26px 8px 8px;
    }
    .event_from .wpcf7-form_form .flex {
        border: none;
        display: flex;
    }
    .event_from .im_flex {
        display: flex;
        padding-bottom: 0;
    }

    /*確認画面*/
    .event_from #wpcf7cpcnf table th {
        background: var(--m_color2);
        padding: 10px 15px;
    }

    /*-------------------------------------
    ブログページ
    -------------------------------------*/
    .blog_text {
        width: calc(100% - 130px);
        margin: 0;
    }
    .blog_photo {
    }
    .blog_photo img {
    }
    .post-categories li a {
        font-size: 11px;
    }
    .article_top {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cat_container + div {
        padding: 6px 0 0 0;
    }
    .article_main p {
        font-size: 16px;
    }
    .article_main h2 {
        font-size: 18px;
    }
    .article_main h3 {
        font-size: 18px;
    }
    /*目次*/
    .outline {
        padding: 20px;
    }
    .outline__toggle:checked + .outline__switch + .outline__list {
        padding: 17px 0 0;
    }

    .footer_address .site_ttl {
        width: 150px;
    }
    .footer {
    }
    .footer_nav {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .footer_nav li {
        margin: 0 0 5px;
    }
    .footer_nav a {
        gap: 10px;
    }
    .footer_nav a:before {
        width: 7px;
        height: 7px;
    }
    .copyright {
        padding: 35px 50px 35px;
        margin: 0;
    }
    .breadcrumbsinner {
        padding: 30px 20px;
    }
    .article_main img {
        object-fit: contain;
        height: auto;
    }

    .info_con01 ul li:before {
        top: 10px;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer_inner {
        display: block;
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer_nav {
        border: none;
        padding: 0;
        width: 100%;
        flex-flow: column;
        gap: 10px;
    }
    .address_container {
        margin-bottom: 50px;
    }

    /*-------------------------------------
    footer追従ナビ
    -------------------------------------*/
    .sp_bar {
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        background: var(--m_color);
    }
    .sp_bar li {
        width: calc(100% / 2);
        padding: 5px 0;
    }
    .sp_bar a {
        color: #fff;
        padding: 0 10px;
        display: block;
        font-size: 0.6875rem;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        position: relative;
        text-decoration: none;
    }
    .sp_bar li a:before {
        font-weight: bold;
        font-family: "Font Awesome 6 Free";
        display: block;
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f0e0";
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f095";
    }
    .sp_bar li:nth-of-type(2) :before {
        content: "\f077";
    }
}
@media only screen and (max-width: 320px) {
    .wp-pagenavi {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .wp-pagenavi .page-numbers {
        margin: 0 5px 5px 0;
    }
}
