﻿@charset "UTF-8";
/*
Theme Name: kakiseed
Author: num
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "Montserrat", "NotoSansJP",serif;
    --font_en: "Aboreto";
    --font_en2: "proximanova", san-serif;
    --h1_font: clamp(22px, 3vw, 32px);
    --h2_font: clamp(25px, 3vw, 70px);
    --h3_font: clamp(22px, 3vw, 55px);
    --m_color: #77aa35;
    --m_color_2: #e6eddf;
    --a_color: #F2C740;
    --f_color: #333;
    --b_color: #181515;
    --border_r: max(30px, min(15px, calc((100vw - 10px - 100%) * 9999)));
    --tr: 0.3s ease-out;
    --main_w: min(100%, 1240px);
    --main_mp: 100px;
    --m_ps3: 30px;
    --m_ps5: 50px;
    --m_ps8: 80px;
    --gr: linear-gradient(45deg, var(--m_color) 0%, #007bd7 50%, #00beff 100%);
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
Navigation,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    color: #333;
    line-height: 1.8;
    font-size: 100%;
    vertical-align: baseline;
    background-color: transparent;
    font-weight: normal;
    font-family: var(--font_ja);
    font-size: 16px;
    font-weight: 500;
}
*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    line-height: 2;
    word-wrap: break-word;
    font-size: 16px;
    counter-reset: wpp-ranking;
    color: #333;
    position: relative;
    -webkit-text-size-adjust: 100%;
    font-weight: 500;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
Navigation,
nav,
section {
    display: block;
}
nav ul {
    list-style: none;
    height: 100%;
}
ul,
ol,
li {
    list-style: none;
    padding: 0;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #eee;
    margin: 1em 0;
    padding: 0;
}
input,
select {
    vertical-align: middle;
}
input {
    box-sizing: border-box;
}
strong {
}
a,
a:visited {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background-color: transparent;
    text-decoration: none;
    transition: .2s;
}
a:hover {
    text-decoration: none;
    opacity: .8;
}
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
    overflow: hidden;
    height: 0px;
}
.clear {
    clear: both;
}
img {
    width: auto;
    max-width: 100%;
    vertical-align: bottom;
    margin: 0;
    padding: 0;
}
.t_center{
    text-align: center !important;
}
.t_left{
    text-align: left !important;
}
.t_right{
    text-align: right !important;
}
.radius_10{
    border-radius: 10px;
}
.bg_gradation {
    background: -moz-linear-gradient(45deg, #26c9f2 0%, #2678f2 29%, #26c9f2 66%, #9e60fa 100%);
    background: -webkit-linear-gradient(45deg, #26c9f2 0%,#2678f2 29%,#26c9f2 66%,#9e60fa 100%);
    background: linear-gradient(45deg, #26c9f2 0%,#2678f2 29%,#26c9f2 66%,#9e60fa 100%);
    background-size: 400% 400%;
	animation: Gradient 15s ease infinite;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-evenly;
	position: relative;
    border-radius: 30px;
}
.bg_gradation::before,
.bg_gradation::after {
	content: "";
	width: 70vmax;
	height: 70vmax;
	position: absolute;
	background: rgba(255, 255, 255, 0.07);
	left: -20vmin;
	top: -20vmin;
	/*animation: morph 15s linear infinite alternate, spin 20s linear infinite;*/
	z-index: 1;
	/*will-change: border-radius, transform;*/
    border-radius: 100%;
	transform-origin: 55% 55%;
	pointer-events: none;
    z-index: 1;
}
.bg_gradation::after {
    width: 70vmin;
    height: 70vmin;
    left: auto;
    right: -10vmin;
    top: auto;
    bottom: 0;
    /*animation: morph 5s linear infinite alternate, spin 26s linear infinite reverse;*/
    transform-origin: 20% 20%;
}
@keyframes Gradient {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}
@keyframes morph {
    0% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }
    100% {
        border-radius: 40% 60%;
    }
}
@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}
.bg_dotted{
    background-image: radial-gradient(rgba(255,255,255,0.4) 2px, transparent 2px), radial-gradient(rgba(255,255,255,0.4) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 0 0,30px 30px;
    background-repeat: repeat;
}
.zindex2{
    z-index: 2;
}
.br0{
    border-radius: 0;
}
/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/* その場で */
.fadeIn {
    opacity : 0;
    transition : all 1.5s;
}
.fadeIn.active{
    opacity : 1;
}
/*フェードアップアニメーション*/
.fadeUp {
    -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.fadeUp:nth-child(2 + 2n) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*フェードアップ（下向き）アニメーション*/
.fadeDown {
    -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
}
.fadeDown:nth-child(2 + 2n) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.fadeDown-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
/*コンテンツタイトル*/
h1 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
.header{
    position: relative;
}
body .wrap .header .other_h {
    background: none;
    width: 100%;
    max-width: 1500px;
    height: auto;
    margin: 0 auto;
    position: relative;
}
body:not(.home) h1 {
    z-index: 1;
    display: block;
    position: absolute;
    top: 50%;
    text-align: left;
    color: #fff;
    font-size: 20px;
    padding: 0;
    max-width: 1500px;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%,-50%);
    font-weight: 400;
    width: calc(100% - 40px);
    letter-spacing: 0.05em;
}
body:not(.home) h1:before {
    content: attr(data-text);
    display: block;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 50px;
    margin-bottom: 0;
    font-weight: 900;
}
body:not(.home) .img_area {
    width: 50%;
    width: 100%;
    height: 100%;
    position: relative;
}
body:not(.home) .img_area:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(img/mv.jpg);
    background-position: center 40%;
    background-repeat: no-repeat;
    background-size: cover;
}
body:not(.home) .img_area .cat{
    position: absolute;
    z-index: 2;
    top: calc(50% + 70px);
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 600;
    background-color: #fff;
    max-width: 160px;
    margin: 0 auto;
    color: #64b54f;
    display: inline-block;
    padding: 4px 0;
    border-radius: 4px;
}
body.error404 h1 {
    position: static;
    padding: 0;
    margin: 0 auto;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    transform: none;
    margin-bottom: 30px;
    color:#333;
}
body.error404 h1 span{
    font-size: 100px;
    line-height: 1;
    display: block;
    padding: 0;
}
h2 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}
h3 {
    font-weight: bold;
    margin: 0 0 50px;
    font-size: 25px;
    position: relative;
    padding: 0 0 0 30px;
}
.full{
    width: 100% !important;
}
.flex {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
}
.flex_center {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_center_center {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_reverce .flex_img{
    order: 2;
}
.between{
    justify-content: space-between;
}
.stretch{
    align-items: stretch;
}
.inner,
.inner_m,
.inner_s,
.inner_l{
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}
.inner_s{
    max-width: 1000px;
}
.inner_m{
    max-width: 1500px;
}
.inner_l{
    max-width: 1600px;
}
.m0auto {
    margin:0 auto;
}
.mb0 {
    margin-bottom: 0px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb60 {
    margin-bottom: 60px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.mt40 {
    margin-top: 40px !important;
}
.mt50 {
    margin-top: 50px !important;
}
.mt60 {
    margin-top: 60px !important;
}
.mr10{
    margin-right: 10px;
}
.ml10{
    margin-left: 10px;
}
.pt0 {
    padding-top: 0px !important;
}
.pb0 {
    padding-bottom: 0px !important;
}
.pb40 {
    padding-bottom: 40px !important;
}
.px20{
    padding-right:20px;
    padding-left: 20px;
}
.pr{
    position: relative;
}
.pa{
    position: absolute;
}
.fw3{
    font-weight: 300;
}
.fw4{
    font-weight: 400;
}
.fw6{
    font-weight: 600;
}
.fs14{
    font-size: 14px;
}
.fs16{
    font-size: 16px;
}
.fs18{
    font-size: 18px;
}
.fs24{
    font-size: 24px;
}
.line_2{
    line-height: 2.5;
}
.c_white{
    color:#fff !important;
}
.c_gray{
    color: #7b7b7b !important;
}
.c_gray_thin{
    color: #eeeeee !important;
}
.c_green{
    color: var(--m_color);
}
.c_red{
    color: var(--m_color) !important;
}
.bg_white{
    background-color: #fff;
}
.bg_black{
    background-color: #333;
}
.bg_green{
    background: var(--m_color_2);
    background-size: 50vw auto,cover;
}
.bg_gray{
    background-color: #eee;
}
.i_block{
    display: inline-block;
}
.ds_block{
    display:block;
}
br.sp{
    display: none;
}
.height_full{
    height: 100%;
}
.mincho{
    font-family: 'CormorantGaramond','ShipporiMinchoB1-Regular','serif';
}
.noto{
    font-family: "NotoSansJP",serif;
}
/*-------------------------------------
共通追加
-------------------------------------*/
.btn{
    width: 200px;
    position: relative;
    margin: 60px 0 0 0;
}
.btn a{
    height: 100%;
    display: block;
    transition: .2s ease-in-out;
    text-decoration: none;
    width: 100%;
    max-width: 100%;
    padding: 20px 10px 14px 10px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    letter-spacing: 0.1em;
    color: #543a2e;
    border: 1px solid;
    font-family: "JosefinSans","游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.btn:hover a{
    opacity: 1;
}
.btn a:before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 1px solid #543a2e;
    border-right: 1px solid #543a2e;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(45deg);
    left: auto;
    right: 20px;
    transition: .2s ease-in-out;
}
.btn a.c_white:before{
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.btn a:hover{
    color:#f6f4f2;
    background-color: #543a2e;
}
.btn a.c_white:hover{
    border:1px solid #543a2e;
}
.btn a:hover:before{
    border-top: 1px solid #f6f4f2;
    border-right: 1px solid #f6f4f2;
}
.sec_h2{
    font-size: 16px;
    margin-bottom: 80px;
    text-align: left;
    letter-spacing: 0.1em;
    font-weight: 600;
    position: relative !important;
    z-index: 2;
    padding-bottom: 0;
}
.sec_h2 .sec_h2_small{
    font-size: 60px;
    line-height: 1;
    letter-spacing: 0.15em;
    margin-top: 10px;
    position: relative;
    display: block;
}
.sec_h2.t_left .sec_h2_small{
    padding: 0 20px 10px 0;
}
.sec_h2 .sec_h2_small.no_square{
    padding: 0;
}
.sec_h2 .sec_h2_small.no_square:after{
    display: none;
}
h3.sec_h2 .sec_h2_small{
    font-size: 40px;
}
.sec_h2_small{
    font-family: "JosefinSans";
}
.sec_h2_small span{
    font-size: 60px;
    font-family: "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic","ヒラギノ角ゴ ProN W6",sans-serif;
    font-weight: bold;
    margin-top: 18px;
}
h3 {
    font-weight: 400;
    margin: 0 0 40px;
    font-size: 20px;
    position: relative;
    letter-spacing: 0;
    text-align: left;
    padding: 0 0 14px 0;
}
h4{
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
    padding-left: 0;
}
.sec_h4 {
    font-size: 16px;
}
.flex_txt{
    width: calc(50% - 160px);
    margin: 0 100px;
    position: relative;
    z-index: 2;
}
.flex .img_container{
    height: 500px;
    background-image: url(img/cta.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.flex_img{
    width: calc(100% - 550px);
    position: relative;
    z-index: 2;
}
.flex_img img{
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
}
.flex_reverse .flex_txt{
    order: 2;
    margin:0 0 0 60px;
}
.flex_reverse .flex_img{
    order: 1;
    margin:0;
}
.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 .5s ease-in-out infinite alternate;
	-moz-animation:blink .5s ease-in-out infinite alternate;
	animation:blink .5s ease-in-out infinite alternate;
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
.object-fit-img{
    display: block;
    position: relative;
}
.object-fit-img:before{
    content:'';
    display: block;
    padding-top: 60%;
    pointer-events: none;
}
.object-fit-img img{
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    object-position: center;
}
/*-------------------------------------
レイアウト
-------------------------------------*/
.wrap {
    margin: 0 auto;
    max-width: 1920px;
    position: relative;
    overflow: hidden;
}
/*-------------------------------------
header
-------------------------------------*/
body.home .header {
    position: relative;
    background-size: cover;
}
.header_nav_container {
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1001;
    /*max-height: 102px;*/
    position: fixed;
    transition: .2s;
    /*height: 60px;*/
    align-items: center;
    background-color: #fff;
    padding-bottom: 10px;
}
body.home .header_nav_container{
    transition: .4s;
}
.header_nav_container.shadow{
    border: none;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 3px 0px 10px;
    /*height: 60px;*/
}
body:not(.home) .header_nav_container{
    background-color: #fff;
}
.header_nav_container.shadow .pc_header_nav ul{
    border: none;
}
.header_nav_container .pc_header_nav a{
    text-shadow: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}
.header_nav_container .pc_header_nav a i{
    margin-right: 10px;
    font-size: 20px;
}
.header_nav_container .pc_header_nav span.header_eng{
    display: block;
    font-weight: 600;
    text-align: center;
    height: auto;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.2;
}
.header_nav_container .pc_header_nav .header_contact a{
    background: linear-gradient(135deg, #3ba7fa 0%, #66e7f6 100%);
    background: -webkit-linear-gradient(-45deg, #3ba7fa 0%, #66e7f6 100%);
    color: #fff !important;
    padding: 12px 30px;
}
.header_nav_container .pc_header_nav .header_contact a span.header_eng{
    color: #fff !important;
}
/* サイトタイトル */
.site_title {
    z-index: 11;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    transition: .3s;
    margin-left: 20px;
}
.site_title a{
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}
.site_title img{
    transition: .3s;
}
body:not(.home) .site_title{
    /*width: 48px;*/
}
/*ナビ*/
.header_inner {
    display: flex;
    padding: 0 20px;
    margin: 0px auto 25px;
    position: relative;
}
.header_nav {
    margin: 0 20px 0 auto;
    height: 100%;
    padding: 0 0 0 40px;
}
.header_nav nav {
    height: 100%;
}
.sp_trigger_nav{
    display: none;
}
.pc_header_nav {
    height: 100%;
}
.pc_header_nav ul ul{
    display: none;
}
.pc_header_nav li ,
.pc_header_nav li.join_btn.schedule_btn{
    margin: 0 40px 0 0;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}
/*.pc_header_nav li.pc_header_contact a{
    height: 100%;
    background-color: var(--m_color);
    color: #fff !important;
    padding: 0 40px;
}*/
.pc_header_nav li:last-child {
    margin: 0;
}
.pc_header_nav a,
.pc_header_nav span {
    text-decoration: none;
    height: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    margin: auto;
}
.pc_header_nav a:hover {
    opacity: 0.8;
}
.pc_header_nav > ul > li.join_btn{
    margin: 0;
    cursor: pointer;
}
.pc_header_nav > ul > li.join_btn a,
.pc_header_nav > ul > li.login_btn a,
.pc_header_nav > ul > li.join_btn span{
    color: #000;
    padding: 12px;
    text-shadow: none;
}
/*.pc_header_nav > ul > li.join_btn .join_list{
    position: absolute;
    width: 100%;
    min-width: 200px;
    text-align: center;
    height: auto;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    background-color: rgba(255,255,255,1);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.pc_header_nav > ul > li.join_btn .join_list li{
    font-size: 16px;
    color: #fff;
    margin: 0 auto;
    height: auto;
}
.pc_header_nav > ul > li.join_btn .join_list li + li{
    border-top: 1px dotted var(--m_color);
}
.pc_header_nav > ul > li.join_btn .join_list li a{
    display: block;
    text-align: center;
    position: relative;
    color: #000;
    width: 100%;
}
.pc_header_nav > ul > li.join_btn .join_list li:last-child a{
    background-color: transparent;
}*/
.pc_header_nav > .flex_center_center{
    justify-content: flex-end;
    padding: 10px 0;
}
.join_list{
    position: fixed;
    top: 110px;
    left: 50%;
    width: 100%;
    min-width: 250px;
    text-align: center;
    background-color: #fff;
    padding: 40px 20px;
    transform: translateX(-50%);
    max-width: calc(100vw - 40px);
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.15);
}
.join_list ul{
    max-width: 1000px;
    display: flex !important;
    margin:0 auto;
    align-items: stretch;
    justify-content: space-between;
}
.join_list ul li{
    font-size: 16px;
    margin: 0;
    height: auto;
    padding: 10px 18px;
    width: calc((100% - 60px) / 4);
}
.join_list ul li + li:before{
    content: '';
    width: 4px;
    top: 50%;
    left: -14px;
    position: absolute;
    height: 100%;
    background-color: #333;
    max-height: 90px;
    transform: translateY(-50%);
}
.join_list ul li:last-of-type{
    margin: 0;
}
.header_nav_container .pc_header_nav .join_list ul li a{
    text-align: left;
    position: relative;
    flex-direction: column;
    cursor: pointer;
}
.header_nav_container_flex{
    height: 100%;
    align-items: center;
    background-color: #fff;
    max-width: 1000px;
}
.join_list ul li a .jl_img_box{
    height: calc(100% - 25px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 20px;
    width: 100%;
}
.join_list ul li a img{
    margin: 0 auto 20px auto;
    max-width: 100px;
    max-height: 54px;
    display: block;
    height: auto;
    width: auto;
}
.join_list ul li a .jl_name{
    margin-top: auto;
    display: block;
    height: 25px;
    font-size: 12px;
    border-top: 1px solid #333;
    padding-top: 10px;
}
.pc_header_service{
    background-color: var(--m_color);
    border-radius: 10px;
    /*position: absolute;
    top: 70px;
    right: 10px;*/
}
.pc_header_service ul{
    display: flex;
    align-items: center;
}
.pc_header_service ul li{
    padding: 10px;
        margin: 0;
}
.pc_header_service ul li + li:before{
    content: '';
    width: 2px;
    height: calc(100% - 20px);
    top: 50%;
    position: absolute;
    z-index: 3;
    background-color: #fff;
    left: -10px;
    transform: translate(6px, -50%);
}
.pc_header_service ul li a{
    display: block;
    color: #fff;
    padding: 0 20px;
}
.pc_header_service ul li a img{
    display: block;
    width: auto;
    height: auto;
    max-width: 100px;
    max-height: 24px;
    margin: 0 auto 10px auto;
}
.header_img_container {
    position: relative;
    opacity: 1;
    transition: .2s;
}
body:not(.home) .header_img_container {
    margin-top: 128px;
}
.header_img_container.mv_hidden{
    opacity: 0;
}
.img-wrap {
    overflow: hidden;
    position: relative;
}
.img-wrap:before {
    animation: img-wrap 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: #fff;
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
@keyframes img-wrap {
    100% {
        transform: translateX(100%);
    }
}
body:not(.home) .header_img_container > div:not(.header_img_inner_img) {
    background-position: center;
    height: 400px;
    margin: 0;
    position: relative;
    overflow: hidden;
}
body:not(.home) .header_img_container > div:not(.header_img_inner_img):before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(45deg, rgba(0,0,0,0.3),transparent);
    z-index: 1;
    opacity: .6;
    top: 0;
    left: 0;
}
body.home .header_img_container {
    padding: 0;
    z-index: 1;
    width: 100%;
    height:100vh;
}
.slick-slider div{
    height: 100%;
}
.slick{
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.slick .mv_sp{
    display: none;
}
.slick_container{
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100%;
    justify-content: space-between;
    align-items: stretch;
}
.mv_img{
    background-image: url(img/mv.jpg);
    background-position: center 70%;
    height: calc(100% - 18vw);
    margin: auto 20px 0 20px;
    background-size: cover;
}
.mv_txt{
    position: absolute;
    left: 5%;
    top: clamp(80px, 12vw, 210px);
    z-index: 2;
}
.mv_txt_large{
}
.mv_txt_large span{
    color: transparent;
    animation: blur 1.7s ease-out forwards;
    font-size: clamp(60px, 10vw, 140px);
    letter-spacing: 0.1em;
    font-weight: 900;
}
.header_img_container .mv_txt .mv_txt_large span:nth-child(1) {
    animation-delay: 0.1s;
}
.header_img_container .mv_txt .mv_txt_large span:nth-child(2) {
    animation-delay: 0.2s;
}
.header_img_container .mv_txt .mv_txt_large span:nth-child(3) {
    animation-delay: 0.3s;
}
.header_img_container .mv_txt .mv_txt_large span:nth-child(4) {
    animation-delay: 0.4s;
}
.header_img_container .mv_txt .mv_txt_large span:nth-child(5) {
    animation-delay: 0.5s;
}
.header_img_container .mv_txt .mv_txt_large span:nth-child(6) {
    animation-delay: 0.6s;
}
.header_img_container .mv_txt .mv_txt_large span:nth-child(7) {
    animation-delay: 0.7s;
}
.header_img_container .mv_txt .mv_txt_large span:nth-child(8) {
    animation-delay: 0.8s;
}
.header_img_container .mv_txt .mv_txt_large span:nth-child(9) {
    animation-delay: 0.9s;
}
@keyframes blur {/*opacityとtext-shadow+animationでフェードインを表現する*/
    0%    {text-shadow:  0 0 100px #333; opacity:0;}
    40%    {text-shadow:  0 0 90px #333;}
    80%    {opacity: 1;}
    100%    {text-shadow:  0 0 0px #333;}
}
.mv_txt_medium{
    font-size: clamp(24px,3vw,50px);
}
.mv_txt_small{
    font-size: clamp(16px,2vw,20px);
    margin-top: 60px;
}
.mv_scroll{
    font-size: 42px;
    width: 100px;
    aspect-ratio: 1 / 1;
    background-color: var(--m_color);
    border-radius: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5%;
    top: clamp(80px, 15vw, 300px);
}
.mv_scroll:after{
    content: '';
    width: calc(100% + 60px);
    aspect-ratio: 1 / 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(img/scroll_down.svg);
    background-repeat: no-repeat;
    animation: bg_loop 10s linear infinite;
}
@keyframes bg_loop{
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.mv_illust{
    position: absolute;
    width: 300px;
}
.mv_ball{
    right: 6%;
    width: clamp(50px, 6vw, 107px);
    bottom: 30%;
}
.mv_donut{
    right: 15%;
    width: clamp(90px, 9vw, 160px);
    bottom: 9%;
}
/*-------------------------------------
トップ
-------------------------------------*/
.header_img_inner_img{
    height: 100%;
    background-image: url('img/header.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 0 0 auto;
    z-index: 2;
    width: 100%;
    border-radius: 0;
}
.header_img_inner_img img{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
    z-index: 2;
}
.header_img_inner_img .slick img {
    max-height: 100%;
    position:absolute;
    top:0;
    bottom:auto;
    left:auto;
    right:0;
    margin:0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    max-width: 100%;
    object-position: 0 0;
    object-position: 50% 50%;
}
.header_img_inner_img .slick img.sp{
    display: none;
}
.header_img_inner_img .slide_txt{
    position: absolute;
    width: 600px;
    bottom: 20%;
    left: 3%;
    max-width: 70%;
}
.header_img_inner_img .slide_txt img{
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255,0.7));
    width: 100%;
}
.header_img_inner_img .slide_txt p{
    font-size:20px;
    font-weight: 600;
    margin-left: 115px;
    text-shadow: 0 0 10px rgb(255, 255, 255);
}
.sec_space_1{
    padding: clamp(80px,11vw,160px) 0;
}
.sec_space_2{
    padding: clamp(80px,10vw,90px) 0;
}
.sec_space_3{
    padding: 80px 0;
}
.sec_space_4{
    padding: 40px 0;
}
.large_txt{
    font-size: 22px;
    line-height: 2.5;
}
.large_txt span{
    font-size: 18px;
}
.sec_ttl{
    font-size: 60px;
    margin-bottom: 80px;
}
.sec_ttl_eng {
    display: block;
    line-height: 1;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.sec_ttl_1{
    font-size: clamp(32px,3vw,46px);
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 600;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    z-index: 5;
}
.sec_ttl_1_small{
    font-size: 18px;
    display: block;
}
.sec_ttl_2{
    font-size: 76px;
    margin-bottom: 60px;
    line-height: 1.5;
    font-weight: 400;
}
.sec_ttl_2_small{
    display: block;
    line-height: 1;
    font-size: 20px;
    letter-spacing: 0;
}
.sec_ttl_2_nam{
    font-size: 28px;
}
.sec_ttl_3{
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 400;
}
.sec_ttl_3_small{
    font-size: 16px;
    display: block;
}
.sec_ttl_4{
    font-size: 32px;
}
.sec_ttl_5{
    display: block;
    font-size: 28px;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.sec_ttl_5:before,
.sec_ttl_5:after{
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--m_color);
    position: absolute;
    bottom: 0;
    left: 0;
}
.sec_ttl_5:after{
    width: 60px;
    bottom: 8px;
}
.news{
    position: relative;
    z-index: 2;
}
.news .top_news_list .flex{
    align-items: center;
}
.news .top_news_list li{
    border-bottom: 2px solid #333;
}
.news .top_news_list li:first-of-type{
    border-top: 2px solid #333;
}
.news .news_meta{
    position: relative;
    z-index: 2;
    cursor: pointer;
    padding: 10px 0;
    display: block;
}
.top_news_txt{
    width: 400px;
}
.news_meta time{
    margin-right: 20px;
    font-size: 14px;
    display: inline-block;
}
.news_titlearea{
    padding: 10px 0 20px 0;
}
.news_titlearea span{
    background-color: var(--m_color);
    font-weight: 600;
    color: #fff;
    display: inline-block;
    padding: 4px 10px;
}
.news_txt{
    padding: 0 0 20px 0;
    font-size: 14px;
    letter-spacing: 0.1em;
}
.news_txt a{
    color: var(--m_color);
    text-decoration: underline;
}
.news_txt a:hover{
    text-decoration: none;
}
.news_arrow{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 1px solid var(--m_color);
    border-radius: 100%;
    width: 30px;
    height: 30px;
}
.news_arrow::before{
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--m_color);
    border-right: 1px solid var(--m_color);
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(2px, -50%) rotate(45deg);
}
.news .flex{
    justify-content: space-between;
}
.news_img img{
    width: 100%;
}
.news_txt_words{
    width: calc(100% - 300px);
    font-size: 14px;
    letter-spacing: 0.05em;
}
.news_txt_words a{
    text-decoration: underline;
    transition: .3s;
}
.news_txt_words a:hover{
    text-decoration: none;
}
.news .flex .btn{
    width: 260px;
}
.logo_bg{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%,-50%);
    width: 30vw;
    z-index: 1;
}
.logo_bg_2{
    left: auto;
    right: 0;
    transform: translate(50%,-50%);
}
/*トップコンテンツ*/
.top_catering:before{
    content: '';
    width: 100%;
    background-image: url(img/wave_2.svg);
    background-size: auto auto;
    background-repeat: repeat-x;
    background-position: center bottom;
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: 1;
    height: 82px;
}
.illust_bread{
    right: 6%;
    top: 20px;
    width: clamp(200px, 21vw, 300px);
    position: absolute;
    z-index: 4;
}
.three_column{
    justify-content: space-between;
}
.three_container{
    width: calc((100% - 40px) / 3);
}
.three_img{

}
.three_img img{
    border: 1px solid #ddd;
}
.three_ttl{
    font-size: 18px;
    font-weight: 600;
    padding: 16px 0 10px 0;
    display: inline-block;
}
.btn_container{
    text-align: center;
    margin-top: 60px;
}
.btn_container a{
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    display: inline-block;
    position: relative;
    padding: 0 0 16px 4px;
}
/*.btn_container a:after{
    content: '';
    width: calc(100% - 10px);
    height: 2px;
    background-color: #333;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    transition: .2s;
}*/
.btn_container a:after{
    content: '';
    height: 10px;
    background-image: url(img/btn_border.svg);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    transition: .2s;
    width: 100%;
    background-repeat: no-repeat;
    background-position: 10px bottom;
    background-size: calc(100% - 10px) 10px;
}
.btn_container .btn_arrow{
    position: relative;
    margin-left: 60px;
    top: 5px;
}
.btn_container .btn_arrow:before{
    content: '';
    width: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    background-color: var(--m_color);
    position: absolute;
    z-index: 1;
    top: calc(50% + -3px);
    transform: translate(-50%, -50%);
    left: 50%;
    transition: .2s;
}
.btn_container .btn_arrow span{
    font-size: 24px;
    font-weight: 400;
    font-family: "NotoSansJP", sans-serif;
    position: relative;
    z-index: 2;
    color: #fff;
    transition: .2s;
    display: inline-block;
}
/*btn hover*/
.btn_container a:hover{
    opacity: 1;
}
.btn_container a:hover .btn_arrow:before{
    background-color: var(--a_color);
    transform: translate(calc(-50% + 10px), -50%);
}
.btn_container a:hover .btn_arrow span{
    transform: translateX(10px);
}
.btn_container_2{
    width: calc(50% - 20px);
    max-width: 300px;
    border: 2px solid #333;
    text-align: center;
    margin-top: 40px;
}
.btn_container_2 + .btn_container_2{
    margin-left: 20px;
}
.btn_container_2 a{
    font-weight: 600;
    font-size: 18px;
    padding: 14px;
    display: block;
    position: relative;
}
.btn_container_2 a .btn_arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
.btn_container_2 a .btn_arrow span{
    font-family: "NotoSansJP", serif;
}
.bg_area{
    position: relative;
}
/*.bg_area:after{
    content: '';
    width: 100%;
    height: 50%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background-color: var(--m_color_2);
    z-index: 1;
}*/
.top_event{
    position: relative;
    z-index: 2;
}
.illust_megaphone{
    position: absolute;
    width: clamp(100px, 22vw, 350px);
    top: 19%;
    z-index: 1;
}
.top_event .flex{
    align-items: stretch;
    position: relative;
    z-index: 2;
}
.top_event_left{
    display: flex;
    flex-direction: column;
}
.top_event_txt{
    margin-top: auto;
}
.top_baseball{
}
.illust_baseball{
    position: absolute;
    width: clamp(100px, 14vw, 260px);
    right: 2vw;
    top: 42%;
}
.top_baseball_left{
    width: calc(100% - 600px);
    padding-right: 80px;
}
.top_baseball_right{
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 600px;
}
.top_onlineshop .three_column .att_txt{
    margin-top: 40px;
}
.skyimg{
    height: clamp(100px, 16vw, 206px);
    background-image: url(img/bg_sky.jpg);
    margin-top: auto;
    background-size: cover;
    background-position: center bottom;
}
.cta{
    background-image: url(img/cta.jpg);
    background-size: cover;
    background-position: center 64%;
}
.cta .sec_ttl_1{
    border: none;
}
.cta_area{
    margin-top: 80px;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    max-width: 1000px;
}
.cta_area p{
    font-size: 18px;
}
.cta_btn_container {
    max-width: 650px;
    margin: 40px auto 0 auto;
}
.cta_btn_container a{
    background-color: var(--m_color);
    color: #fff;
    display: block;
    font-size: 24px;
    padding: 30px 20px 30px 60px;
    font-weight: 600;
}
/*.cta_btn_container a:after{
    content: '';
    width: clamp(100px, 10vw, 100px);
    position: absolute;
    background-image: url(img/cta_icon.svg);
    aspect-ratio: 1 / 1;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: -20%;
    left: 30px;
}*/
.cta_btn_container a .btn_arrow{
    display: inline-block;
    margin-left: 10px;
}
.cta_btn_container a .btn_arrow span{
    background-color: #fff;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
}
.breadcrumbs {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    background: none;
    position: relative;
    color: #fff;
    padding: 0 0 60px 0;
}
.breadcrumbs a,
.breadcrumbs span {
    font-size: 13px;
    color:#fff;
}
.breadcrumbs:before {
    content: "\f015";
    font: 100% "Font Awesome 5 free";
    font-weight: bold;
}
.breadcrumbs span:last-child a {
    pointer-events: none;
    text-decoration: none;
}
/*-------------------------------------
トップ お知らせ
-------------------------------------*/
.news{
    position: relative;
    z-index: 2;
}
.news .sec_ttl_1{
    border: none;
}
.news .top_news_list{
    width: calc(100% - 500px);
}
.news .top_news_list li{
    padding: 20px 0;
}
.top_news_img{
    width: 200px;
    aspect-ratio: 3 / 2;
    background-color: #eee;
    border: 2px solid #333;
}
.top_news_content{
    width: calc(100% - 240px);
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}
.news .news_meta{
    padding: 0 0 10px 0;
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.news .news_meta time{
    margin-right: 20px;
    font-size: 16px;
}
.news .news_meta .cat{
    display: inline-block;
    background-color: #264990;
    color: #fff;
    font-weight: 400;
    padding: 3px 18px 0 18px;
    font-size: 12px;
    margin-right: 14px;
}
.news .news_meta p{
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.1em;
}
.news .news_txt{
    padding: 0 20px 20px 20px;
    font-size: 14px;
    letter-spacing: 0.1em;
}
.news .flex{
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.news .flex .btn{
    width: 260px;
}
/*-------------------------------------
ケータリング
-------------------------------------*/
.wide .philosophy_left{
    margin-left: clamp(20px, 11vw, 200px);
    width: clamp(300px, 34vw, 650px);
    display: flex;
    flex-direction: column;
}
.philosophy .flex.catering_flex{
}
.wide .philosophy_left p.philosophy_large{
    max-width: 400px;
    margin-bottom: 60px;
}
.wide .philosophy_right{
    width: 55vw;
    max-width: none;
    aspect-ratio: 1 / .5;
    position: relative;
    overflow: hidden;
}
.wide .philosophy_right img{
    position: absolute;
    top: -17%;
    left: 0;
}
.compatible_area{
    margin-top: auto;
    background-image: url(img/craft_border.svg), url(img/craft_border.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 20px 0;
    background-position: center top, center bottom;
}
.compatible_area dt{
    font-size: 20px;
    background-image: url(img/catering_bubble.svg);
    background-size: contain;
    background-position: center;
    padding: 40px 20px 40px 0;
    width: 250px;
    text-align: center;
    font-weight: 600;
}
.compatible_area dd{
}
.catering_h3 {
    font-size: 28px;
    font-weight: 600;
    padding: 0;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    margin-bottom: clamp(40px,4vw,60px);
}
.att_txt{
    padding-left: 16px;
    text-indent: -16px;
    font-size: 16px !important;
    font-weight: 400 !important;
}
.four_img{
    align-items: stretch;
    justify-content: space-between;
}
.four_img_img{
    width: calc((100% - 30px) / 4);
}
.catering_plan_flex{
}
.catering_plan_left{
    width: calc(100% - 580px);
    padding-right: 80px;
}
.catering_plan_right{
}
.catering_price_flex{
    justify-content: space-between;
    gap: 20px;
}
.catering_plan_right dl{
    background-color: var(--m_color_2);
    padding: 20px 10px;
    width: 50%;
}
.catering_plan_right dl + dl{
}
.catering_plan_right dt{
    text-align: center;
    border-right: 2px solid #333;
    width: 122px;
    padding: 0 20px;
}
.catering_plan_right dd{
    width: calc(100% - 122px);
    padding: 0 0 0 20px;
}
.catering_flow {
    align-items: stretch;
    justify-content: space-between;
}
.catering_flow_container{
    border: 2px solid #333;
    padding: 40px 36px;
    width: calc((100% - 40px) / 5);
    position: relative;
}
.catering_flow_container + .catering_flow_container:before{
    content: '→';
    font-family: "NotoSansJP", serif;
    font-size: 20px;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    background-color: var(--m_color);
    position: absolute;
    color: #fff;
    width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translate(-25px, -50%);
    left: 0;
}
#kakiversary .wide .philosophy_right img{
    top: 0;
}
#kakiland .wide .philosophy_right img{
    top: -35%;
}
.flow_dl{
    position: relative;
}
.flow_dl dt{
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}
.flow_dl dt i{
    display: block;
    font-size: 50px;
    margin-bottom: 30px;
    padding: 10px;
}
.flow_dl dd{
    text-align: center;
}
.flow_dl dd a{
    text-decoration: underline;
    color: var(--m_color);
}
.catering_cta {
    justify-content: center;
    margin-top: 40px;
    background-color: #fff;
    padding: 40px;
    align-items: center;
    border: 2px solid #333;
}
.catering_tel{
    padding-right: 40px;
    margin-right: 40px;
    position: relative;
}
.catering_tel:after{
    content: '';
    width: 2px;
    height: calc(100% - 30px);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #333;
}
.catering_tel a{
    align-items: center;
}
.catering_cta a i{
    font-size: 32px;
    aspect-ratio: 1 / 1;
    background-color: var(--m_color);
    color: #fff;
    border-radius: 100%;
    padding: 20px;
    margin-right: 20px;
}
.catering_tel_right{
}
.catering_tel_right p{
    font-size: 20px;
}
.catering_tel_right span{
    font-size: 36px;
    display: block;
    line-height: 1.5;
}
.catering_mail .catering_tel_right span{
    font-weight: 600;
    font-size: 28px;
}
.kakiversary_photo{
    justify-content: space-between;
    margin-bottom: clamp(80px,10vw,90px);
    gap: 10px;
}
.kakiversary_photo_container{
    width: calc(50% - 30px);
}
.kakiversary_photo_container:nth-of-type(2) img{
    margin-top: 40px;
}
.kakiversary_photo img{
    width: calc((100% - 20px) / 3);
}
.kakiversary_access{
    margin-top: clamp(60px,10vw,90px);
}
.kakiversary_access_flex{
    justify-content: space-between;
    align-items: center;
}
.kakiversary_access_left{
    width: 450px;
}
.kakiversary_access_left dl{
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
}
.kakiversary_access_left dl dt{
    width: 90px;
    text-align: center;
    padding: 0 10px;
    background-color: var(--m_color_2);
}
.kakiversary_access_left dl dd{
    width: calc(100% - 90px);
    padding: 0 20px;
}
.kakiversary_access_right{
    width: calc(100% - 530px);
}
.kakiversary .cta_btn_container{
    margin-top: 80px;
}
.page-template-catering .news{
    padding: 0 20px;
}
.kakiland .kakiversary_access_left dl dt{
    background-color: #fff;
}
.business_hours{
    margin-top: clamp(60px,10vw,90px);
}
.business_hours_container{
    width: calc(50% - 20px);
    border: 2px solid #333;
    margin-bottom: 20px;
}
.business_hours_ttl {
    font-size: 20px;
    background: url(img/mask_2.svg), #333;
    color: #fff;
    background-size: 50vw auto, cover;
    padding: 2px 10px;
}
.business_hours_detail{
    padding: 20px;
}
.business_hours_container dl{
}
.business_hours_container dl + dl{
    margin-top: 20px;
}
.business_hours_container dt{
    width: 90px;
    text-align: center;
    padding: 0 10px;
    background-color: var(--m_color_2);
}
.business_hours_container dd{
    width: calc(100% - 90px);
    padding: 0 20px;
}
/*-------------------------------------
ケータリング予約・お問い合わせ
-------------------------------------*/
.page-template-catering_form .wpcf7_left{
    width: 34%;
}
/*-------------------------------------
野球指導
-------------------------------------*/
.baseball_wrap .philosophy .flex{
    flex-direction: row-reverse;
    align-items: stretch;
}
.baseball_wrap .message .flex{
    flex-direction: row;
    align-items: center;
}
.baseball_wrap .philosophy_right{
    margin-left: 0;
    margin-right: 80px;
}
.baseball_firsttxt{
    margin-top: auto;
}
.baseball_wrap .business_hours_container dt{
    width: 150px;
}
.baseball_wrap .business_hours_container dd{
    width: calc(100% - 150px);
}
.baseball_wrap .catering_flow_container{
    width: calc((100% - 30px) / 4);
}
.two_column{
}
.two_column .cta_btn_container {
    width: calc((100% - 40px) / 2);
}
.two_column .cta_btn_container a:after{
    display: none;
}
/*-------------------------------------
ブログ
-------------------------------------*/
.blog_container {
    margin: 0 auto;
}
.my_result_count {
    margin: 0 0 20px;
}
.blog_inner li {
    margin: 0 0 30px;
    cursor: pointer;
}
.blog_inner li + li{
    border-top: 1px solid #333;
    padding-top: 30px;
}
.news_box{
 align-items: center;   
}
.blog_photo img {
    object-fit: cover;
    font-family: "object-fit: cover;";
    height: 200px;
    width: 300px !important;
    border: 2px solid #333;
}
.blog_photo a{
    transition: .2s;
}
.blog_text {
    width: calc(100% - 300px - 60px);
    margin: 0 0 0 60px;
}
.blog_title {
    margin: 0 0 10px;
    text-align: left;
}
.blog_title a{
    color: #000;
    font-size: 20px;
}
.read-more {
    text-align: right;
}
.read-more a {
    position: relative;
    transition: .3s;
    text-decoration: none;
    padding: 10px 25px;
    font-size: 16px;
    letter-spacing: 0.1em;
    display: inline-block;
    background: var(--m_color);
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.blog_inner li:hover .read-more a {
    opacity: .8;
}
.details .date i,
.blog_clock time {
    display: inline-block;
    padding-right: 10px;
    line-height: 1;
}
.post-categories {
    font-size: 0.8125rem;
    display: inline-block;
    padding-right: 10px;
    line-height: 1;
}
.post-categories li a {
    background: var(--m_color);
    display: inline-block;
    margin: 0 5px 0 0;
    padding: 2px 16px;
    font-size: 0.8125rem;
    color: #fff;
    text-decoration: none;
}
.post-type-archive-news .post-categories li a{
    pointer-events: none;
}
.post-categories li a:hover {
    opacity: .8;
}
.post-categories li a:hover:before {
}
.post-categories li a:before {
    content: "\f07c";
    font: 100%/1 "font awesome 5 free";
    color: #fff;
    display: inline-block;
    margin: 0 5px 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: #2196f3;
}
.share_sns_container li:nth-of-type(3) :before {
    color: #4caf50;
}
.article_top {
    margin: 0 0 30px;
}
.article_main h2 {
    margin: 30px 0 20px 0;
    background: #000;
    padding: 20px 20px;
    font-size: 25px;
    color: #fff;
    text-align: left;
}
.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:before {
    content: none;
}
.article_main h4 {
    margin: 30px 0 20px 0;

    font-weight: bold;
    font-size: 1.25rem;
}
.article_main h5 {
    margin: 30px 0 20px 0;
    font-weight: bold;
}
.article_main .post_thumbnail_container img {
    display: block;
    margin: 0 auto 30px;
    height: auto;
}
.article_main img {
    display: block;
    margin: 0 auto 30px;
}
.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 #222;
    border-right: 1px solid #222;
}
.article_main table th {
    background: rgba(0, 127, 235, 0.1);
    font-weight: bold;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 10px 20px;
}
.article_main table td {
    border-left: 1px solid #222;
    padding: 10px 20px;
    border-bottom: 1px solid #222;
    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 whitesmoke;
    padding: 20px 20px 20px 50px;
    position: relative;
    background: #fafafa;
    margin: 0 0 30px;
}
.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 5 Free";
    content: "\f0da";
    position: absolute;
    font-weight: bold;
    left: -18px;
    color: gray;
}
.article_main dl {
}
.article_main dt {
    background: #f3f3f3;
    padding: 10px;
    margin: 0 0 10px;
}
.article_main dd {
    border-left: 1px solid #333;
    padding: 0 0 0 10px;
    margin: 0 0 25px;
    line-height: 1.8;
}
/*アーカイブ　ページネーション*/
.wp-pagenavi .page-numbers {
    color: #fff;
    background-color: var(--m_color);
    text-decoration: none;
    padding: 10px 20px;
}
.wp-pagenavi .current {
    background: #fff;
    color: var(--m_color);
    border: 1px solid var(--m_color);
}
.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}
/**/
.grecaptcha-badge{
    bottom: 90px !important;
    z-index: 1001;
}
/*シングル　ページネーション*/
body.single .header_img_container{
    display: none;
}
body.single h1{
    position: static;
    color: #333;
    width: auto;
    max-width: none;
    transform: none;
    font-size: 26px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.single_pagenavi {
    margin: 10vh 0;
    justify-content: space-between;
    display: flex !important;
}
.single_pagenavi .prev,
.single_pagenavi .next{
    max-width: calc(50% - 5px);
    width: 200px;
}
.single_pagenavi .prev a,
.single_pagenavi .next a {
    display: block;
    padding: 16px 30px;
    color: #fff;
    text-decoration: none;
    background: var(--m_color);
    width: 100%;
    position: relative;
    transition: .2s;
    text-align: center;
}
.single_pagenavi .prev a:before,
.single_pagenavi .next a:before{
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    left: 20px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(225deg);
}
.single_pagenavi .next a:before{
    transform: translateY(-50%) rotate(45deg);
    left:auto;
    right: 20px;
}
.single_pagenavi .prev a:hover,
.single_pagenavi .next a:hover {
    opacity: .8;
}
/*目次*/
.outline {
    border: 1px solid #ddd;
    padding: 30px;
    margin: 10px 0 30px;
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.5em;
    max-width: 800px;
}
.outline__title {
    font-size: 1rem;
    font-weight: bold;
}
.outline__toggle {
    display: none;
}
.outline__switch::before {
    content: "開く";
    cursor: pointer;
    background: #fff;
    border: solid 1px #eee;
    padding: 5px 10px;
    font-size: 0.8rem;
    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: 0.2s;
    border: none;
    padding: 0;
}
.outline__toggle:checked + .outline__switch + .outline__list {
    width: auto;
    height: auto;
    margin: 20px 0px 0;
    transition: 0.2s;
    border-top: solid 1px #ddd;
    padding: 17px 20px 0;
    border-bottom: none;
    background: none;
}
ul.outline__list li {
    border: none;
    margin: 0 0 0px;
    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: 0em 0 0em 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;
}
/*-------------------------------------
イベント・講演会
-------------------------------------*/
.event_service{
}
.event_bg{
    background: url(img/mask_2.svg), var(--m_color);
    background-size: 50vw auto, cover;
    position: relative;
    padding-bottom: calc(clamp(80px, 11vw, 200px) + 80px);
}
.event_bg:after{
    content: '';
    width: 100%;
    background-image: url(img/wave_2.svg);
    background-size: auto auto;
    background-repeat: repeat-x;
    position: absolute;
    top: calc(100% - 80px);
    left: 0;
    z-index: 1;
    height: 82px;
    background-position: left bottom;
}
.event_service_left{
}
.bubble_ttl{
    width: 474px;
    margin-bottom: 20px;
}
.bubble_ttl:before{
    content: '';
    width: 474px;
    height: 273px;
    background-image: url(img/bubble.svg);
    position: relative;
    z-index: 1;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.bubble_ttl span{
    font-size: 32px;
    font-weight: 600;
    position: absolute;
    z-index: 2;
    top: calc(50% - 10px);
    left: 50%;
    transform: translate(-50%, -50%);
}
.event_service_txt{
    padding: 30px;
    transform: translateX(3vw);
}
.event_service .wide .philosophy{
    justify-content: flex-end;
}
.event_service .wide .philosophy_left{
    width: 40vw;
    position: relative;
    z-index: 2;
}
.event_service .wide .philosophy_right{
    margin-left: 0;
    width: 53vw;
    position: relative;
    z-index: 1;
}
.event_service_right{
}
.event_flow {
    counter-reset: number 0;
}
.event_flow .event_flow_container{
    position: relative;
    display: flex;
    align-items: center;
}
.event_flow .event_flow_container + .event_flow_container{
    margin-top: 40px;
    border-top: 2px dotted #333;
    padding-top: 40px;
}
.event_flow .event_flow_container:before{
    counter-increment: number 1;
    content: counter(number);
    font-size: clamp(24px, 4vw, 45px);
    line-height: 1;
    background-image: url(img/bubble_2.svg);
    aspect-ratio: 1 / 1.01;
    width: clamp(80px,8vw,144px);
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}
.event_flow dl{
    width: calc(100% - clamp(80px,8vw,144px));
    padding-left: clamp(20px,4vw,60px);
}
.event_flow dl dt{
    font-size: 24px;
    margin-bottom: 20px;
}
.event_flow dl dd{
    font-size: 18px;
}
.event_achievements_illust{
    position: absolute;
    width: clamp(100px, 22vw, 350px);
    top: 0;
    transform: translateY(-50%);
    right: 0;
    z-index: 4;
}
/*-------------------------------------
会社概要
-------------------------------------*/
.philosophy{
    margin-bottom: clamp(60px,10vw,90px);
}
.philosophy .flex{
    justify-content: center;
    align-items: center;
}
.philosophy_left{
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    width: 462px;
}
.philosophy_left p.philosophy_large,
.philosophy_left .philosophy_large{
    font-size: clamp(28px,3vw,42px);
    margin-bottom: 40px;
    font-weight: 600;
}
.philosophy_logo{
    max-width: 450px;
    max-height: 200px;
}
.philosophy_left p{
    font-size: 18px;
    font-weight: 600;
}
.philosophy_right{
    width: calc(100% - 542px);
    margin-left: 80px;
    max-width: 600px;
    position: relative;
}
.philosophy_right img{
    position: relative;
    z-index: 2;
}
.message_bg_area{
}
.message_bg_area:before{
}
.message_left{
}
.message .flex{
    flex-direction: row-reverse;
}
.message_right{
    margin: 0 80px 0 0;
}
.message_right:before{
    display: none;
}
.profile {
}
.profile .flex{
    align-items: flex-start;
    justify-content: center;
    flex-direction: row-reverse;
}
.profile_left{
    width: 540px;
    margin: 0 0 0 80px;
}
.profile_left dl{
    flex-wrap: wrap;
    margin-top: 20px;
    align-items: stretch !important;
    flex-direction: row !important;
}
.profile_left dl dt{
    width: 150px;
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
}
.profile_left dl dd{
    width: calc(100% - 150px);
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
}
.profile_comment{
}
.profile_comment span{
    display: inline-block;
    padding: 0 10px;
    font-size: 24px;
}
.profile_right{
    max-width: 600px;
    width: calc(100% - 620px);
}
.profile_name{
    font-size: 32px;
    margin-bottom: 20px;
}
.profile_small{
    font-size: 16px;
    display: block;
}
table.data{
    width: 100%;
}
table.data th,
table.data td{
    text-align: left;
    padding: 30px 20px;
    border-bottom: 1px solid #ddd;
    vertical-align: text-top;
    position: relative;
}
table.data th{
    width: 250px;
}
table.data td a{
    text-decoration: underline;
}
table.data td a:hover{
    text-decoration: none;
}
table.data td ol li{
    list-style: none;
    padding-left: 19px;
    text-indent: -19px;
}
table.data td ul li{
    list-style: disc;
    list-style-position: inside;
}
table.data td .location{
    border-top: 1px dashed #ddd;
    margin-top: 20px;
    padding-top: 20px;
}
.map{
    height: 500px;
    margin-top: 10px;
    width: calc(100% - 530px);
}
.map iframe{
    width: 100%;
    height: 100%;
}
.campany_wrap .map{
    width: 100%;
}
/*-------------------------------------
お問い合わせ
-------------------------------------*/
.other_tel{
    padding: 60px 10px;
    margin-bottom: 60px;
}
.other_tel_a_container{
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    max-width: 800px;
    margin: 0 auto 20px auto;
}
.other_tel a{
    font-size: 46px;
    letter-spacing: 0.05em;
    transition: .2s;
    display: block;
    padding: 50px 0;
}
.other_tel a:hover{
    opacity: .8;
}
.other_tel a i{
    border: 1px solid;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    border-radius: 100%;
    padding: 0 0 0 4px;
    margin-right: 26px;
    vertical-align: middle;
}
.page_contact_cta{
    margin: 0 auto 100px auto;
}
.cta.page_contact_cta .top_business_btn{
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.4), 5px 5px 10px rgba(0, 0, 0, 0.16);
    max-width: 700px;
    border-radius: 100px;
    padding: 30px 10px;
    background: linear-gradient(135deg, #0d3c80 0%, #5779AB 100%);
    background: -webkit-linear-gradient(-45deg, #0d3c80 0%, #5779AB 100%);
    transition: .3s;
}
.cta.page_contact_cta .top_business_btn:hover{
    box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.4), 5px 15px 10px rgba(0, 0, 0, 0.16);
    transform: translateY(-10px);
    opacity: 1;
}
.other_contact{
    justify-content: space-between;
}
.cta.page_contact_cta .cta_ttl{
    letter-spacing: 0.1em;
    font-size: 40px;
}
/*お問い合わせフォーム内*/
.wpcf7  form{
    position: relative;
    z-index: 7;
}
.wpcf7-list-item-label {
	margin-left: 5px;
}
.wpcf7-form_form {
	border-top: 1px solid #ddd;
}
.wpcf7-form_form table {
	table-layout: fixed;
	width: 100%;
}
.wpcf7-form_form .flex{
    align-items: stretch;
}
.wpcf7_left {
	border-bottom: 1px solid #ddd;
	display: block;
	font-weight: normal;
	list-style: none;
	padding: 25px 15px;
	text-align: left;
	width: 28%;
}
.wpcf7_left span{
    font-weight: 600;
}
form.wpcf7-form .required:after {
	background: #e74c3c;
	color: #fff;
	content: "必須";
	display: inline-block;
	font-size: 10px;
	font-weight: normal;
	line-height: 1;
	margin-right: 5px;
	padding: 5px 5px;
	vertical-align: middle;
	width: auto;
}
form.wpcf7-form .required2:after {
	background: #3f51b5;
	color: #fff;
	content: "任意";
	display: inline-block;
	font-size: 10px;
	font-weight: normal;
	line-height: 1;
	margin-right: 5px;
	padding: 5px 5px;
	vertical-align: middle;
	width: auto;
}
.wpcf7_right {
	align-items: center;
	border-bottom: 1px solid #ddd;
	border-left: none;
	padding: 25px 15px;
	width: 72%;
}
.wpcf7_checkbox_title {
	background: #f3f3f3;
	border: 1px solid #ddd;
	border-bottom: none;
	max-width: 200px;
	width: 100%;
}
span.wpcf7-list-item {
	display: block !important;
}
.wpcf7-list-item_first_input input {
	width: auto !important;
}
span.wpcf7-list-item input {
	width: auto !important;
}
.wpcf7-form_form input::placeholder,
.wpcf7-form_form textarea::placeholder{
    font-weight: 400;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
	border: 2px solid #e94e43 !important;
	color: #e94e43;
	font-size: 14px;
	margin: 30px 0;
}
@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;
}
.wpcf7_container #info2 {
	margin: 10px 0 0;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
	background: #fff;
	border: 1px solid #ccc;
	font-size: 100%;
	outline: none;

/* border-radius: 3px; */
	padding: 8px;
	width: 100%;
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
	cursor: pointer;
}
.form_privacy {
	display: block;
	margin: 30px 0;
	text-align: center;
}
.wpcf7c-elm-step2 {
	text-align: center;
}
.wpcf7_container {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.wpcf7 input[name="your-email"],
.wpcf7 input[name="your-name"],
.wpcf7 input[name="your-company"],
.wpcf7 input[name="your-x"],
.wpcf7-form-control-wrap input[type="date"],
.wpcf7 input[type="tel"],
.wpcf7 .width_min {
	width: 400px;
}
.wpcf7 .width_min2 {
	max-width: 500px;
	width: 100%;
}
.wpcf7 select[name="menu-860"],
.wpcf7 select[name="menu-861"],
.wpcf7 select[name="menu-862"],
.wpcf7 select[name="menu-863"]{
    border: 1px solid #ccc;
    border-radius: 2px;
    background-color: #fff;
}
.wpcf7 .m-r03,
.wpcf7 .m-r02,
.wpcf7 .m-r01 {
	align-items: center;
	display: flex;
}
.wpcf7 .m-r01 span:nth-child(1) {
	width: 105px;
}
.wpcf7 .m-r02 span:nth-child(1) {
	width: 60px;
}
.wpcf7 .m-r03 span:nth-child(1) {
	width: 80px;
}
.wpcf7-form-control-wrap input[readonly] {
	background: #f3f3f3;
	cursor: not-allowed;
}
/*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;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    background-color: var(--m_color);
}
.wpcf7c_submit:after{
    content: '→';
    position: absolute;
    top: 50%;
    right: 20px;
    color: #fff;
    transform: translateY(-50%);
    font-size: 20px;
    font-family: "NotoSansJP",serif;
}
.wpcf7-spinner{
    display: none !important;
}
.wpcf7c_submit input {
    outline: none;
    max-width: 250px;
    width: 100%;
    margin: 15px auto 0;
    display: block;
    color: #222;
    font-weight: 700;
    z-index: 0;
    border: none;
    padding: 24px 0;
    font-size: 14px;
    letter-spacing: 0.18em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    transition: .3s;
    font-size: 20px;
    color: #fff;
    max-width: 500px;
    padding: 24px 10px;
    font-weight: 400;
    background-color: transparent;
    font-family: "NotoSansJP","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    opacity: 0.8;
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 4px solid #ddd;
    color: #222;
    border-radius: 20px;
    border-radius: clamp(16px, 3vw, 20px);
}
/*プライバシーポリシー*/
.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 0px 0px 15px;
}
.readme ol li {
    margin: 0 0 0 40px;
    list-style: decimal;
}
/*確認画面*/
.wpcf7_left.required:after{
    content: '必須';
    width: auto;
    display: inline-block;
    background: #e74c3c;
    padding: 0px 5px 0px 5px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin: 0 0 0 5px;
    vertical-align: middle;
}
#wpcf7cpcnf{
    position: absolute !important;
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 100vh!important;
    z-index: 999!important;
}
#wpcf7cpcnf table{
    width: calc(100% - 20px);
    max-width: 1200px;
    margin: 0 auto;
}
#wpcf7cpcnf table td,
#wpcf7cpcnf table th{
    width: 250px;
    padding: 25px 15px;
    list-style: none;
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}
#wpcf7cpcnf table td{
    width: calc(100% - 200px);
    min-height: 78px;
}
#wpcf7cpcnf table td p{
    background-color: #eee;
    padding: 3px 8px;
    min-height: 33px;
}
div.wpcf7cp-btns{
    text-align: center;
    margin-top: 4em !important;
}
button.wpcf7cp-cfm-edit-btn,
button.wpcf7cp-cfm-submit-btn{
    width: 300px;
    appearance: none;
    padding: 20px 0;
    cursor: pointer;
    transition: .2s;
    font-size: 16px;
    font-family: 'ShipporiMinchoB1-Regular','serif';
    font-weight: 500;
}
button.wpcf7cp-cfm-submit-btn{
    background-color: var(--m_color);
    color: #fff;
}
button.wpcf7cp-cfm-edit-btn:hover,
button.wpcf7cp-cfm-submit-btn:hover{
    opacity: .8;
}
/*-------------------------------------
フッター
-------------------------------------*/
footer .flex{
    justify-content: space-between;
}
footer .site_title{
    position: static;
    width: 120px;
    margin-bottom: 50px;
    max-width: 100%;
}
footer .site_title a{
    display: block;
    width: 100%;
}
.address_container,
.address_container p{
    color: #b5b5b5;
    font-size: 15px;
}
.footer_nav {
}
.footer_nav li + li{
    margin-left: 80px;
}
.footer_nav li a,
.footer_nav li span{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}
.footer_smallnav{
    margin-top: 20px;
}
.footer_smallnav li{
    margin-bottom: 10px;
}
.footer_smallnav li + li{
    margin: 0;
}
.footer_smallnav li a{
    font-size: 16px;
    color:#b5b5b5;
}
.footer_sns{
    display: flex;
    justify-content: center;
}
.footer_sns li{

}
.footer_sns li + li{
    margin-left: 10px;
}
.footer_sns  li a{
}
.footer_sns  li a i{
    font-size: 24px;
}
.copyright {
    padding: 80px 0 20px 0;
}
/* topに戻る */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 8;
}
#page-top a {
    display: block;
    position: relative;
    color: #000;
    padding: 10px 12px;
    border-radius: 50%;
    border: 1px solid #000;
    width: 50px;
    height: 50px;
}
#page-top a::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 61%;
}
#page-top a:hover {
    opacity: 0.7;
}
/*voice*/
.case_section{
    max-width: 1300px;
    margin: 0 auto;
    background-color: #fff;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}
@media only screen and (max-width: 1024px) {
    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding: 0;
    }
    .site_title {
        background-color: transparent;
        box-shadow: none;
        top: 5px;
        left: 5px;
    }
    .site_title a {
        padding: 0;
        margin: 0;
    }
    .pc_header_nav{
        display: none;
    }
    .sp_trigger_nav_container{
        display: inline-block;
        position: relative;
        z-index: 12;
        pointer-events: all;
    }
    .header_nav_container {
        display: flex !important;
        background-color: #fff;
        height: 70px;
    }
    .header_nav_container:before {
        content: none;
    }
    body:not(.home) .header_img_container {
        margin-top: 70px;
    }
    body.home .header_img_container {
        padding: 0;
        flex-flow: column;
        aspect-ratio: 1.25 / 1;
        height: auto;
    }
    .header_img_inner_img {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        background-position: 47% center;
    }
    /***** ハンバーガーメニュー *****/
    .scroll-prevent {
        overflow: hidden;
    }
    .overlay {
        content: "";
        display: block;
        width: 0;
        height: 0;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        transition: opacity 0.5s;
    }
    .overlay.open {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    .menu-trigger {
        display: inline-block;
        width: 58px;
        height: 58px;
        vertical-align: middle;
        cursor: pointer;
        position: relative;
        z-index: 13;
        margin-top: 4px;
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 14px;
        width: 30px;
        height: 2px;
        background-color: #333;
        transition: all 0.5s;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 20px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(9px) rotate(-45deg);
        background-color: #000;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 29px;
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        top: 38px;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-9px) rotate(45deg);
        background-color: #000;
    }
    .sp_trigger_nav {
        width: 100%;
        height: 100%;
        padding: 100px 0;
        background-color: #fff;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8;
        transform: translate(100%);
        transition: all 0.5s;
        overflow-y: auto;
        display: block;
        height: 100vh !important;
        width: 100vw;
    }
    .sp_trigger_nav.open {
        transform: translateZ(0);
    }
    .sp_trigger_nav ul {
        height: auto;
        margin: 0 0 10vw;
    }
    .sp_trigger_nav .sp_trigger_nav_inner li {
        margin: 0 20px;
        border-bottom: 1px solid #000;
    }
    .sp_trigger_nav .sp_trigger_nav_inner a {
        text-align: left;
        position: relative;
        display: block;
        text-decoration: none;
        color: #000;
        padding: 24px 10px;
        font-weight: 600;
    }
    .sp_trigger_nav .sp_trigger_nav_inner a:after{
        content: "\f054";
        color:#000;
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    .sp_trigger_nav .sp_trigger_nav_inner a span{
        color: #000;
        font-size: 30px;
        padding-right: 20px;
    }
    .sp_trigger_nav .sp_trigger_nav_inner a i{
        margin-left: 6px;
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner {
        border-bottom: none;
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner li a {
        padding: 10px 0 10px 60px;
        color: #666;
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner li a:before {
        content: "┗";
        font-weight: normal;
        left: 40px;
        color: #000;
    }
    .sp_trigger_nav li:last-child {
        border: none;
    }
    .sp_trigger_nav_bottom {
        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_trigger_nav_bottom a {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        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;
        border: 1px solid #b01f28;
    }
    .sp_trigger_nav_bottom a i {
        color: #b01f28;
    }
    .sp_trigger_nav_bottom img {
        max-width: 28px;
    }
    /*-------------------------------------
    トップ 1024~
    -------------------------------------*/
    .header .flex_center_center{
        display: flex;
        justify-content: flex-start;
    }
    .site_title{
        margin-left: 10px;
        top: 9px;
        max-width: 140px;
    }
    .site_title img{
        height: auto;
    }
    .header_nav{
        background-color: transparent;
        box-shadow: none;
        -webkit-backdrop-filter: blur(0);
        backdrop-filter: blur(0);
        display: flex !important;
        margin: 0 0 0 auto;
        position: fixed;
        top:0;
        right:0;
        pointer-events: none;
        padding: 0;
    }
    .sec_ttl{
        margin-bottom: 30px;
    }
    .slick_container{
        display: block;
    }
    .mv_txt{
        left: 5%;
        bottom: 18%;
    }
    .three_column{
        display: block;
    }
    .three_container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .three_container + .three_container{
        margin-top: 40px;
    }
    .top_event .flex{
        display: block;
    }
    .top_event_txt{
        margin-bottom: 40px;
    }
    .btn_container{
        text-align: center !important;
    }
    .illust_megaphone{
        display: none;
    }
    .top_baseball_left{
        width: 100%;
        padding: 0;
    }
    .top_baseball_right{
        width: 100%;
    }
    .skyimg{
        margin-top: 40px;
        height: 300px;
    }
    /*.top_about .flex{
        flex-direction: column;
    }
    .top_about_img_1,
    .top_about_img_2{
        width: 100%;
        max-width: 100%;
        aspect-ratio: auto;
    }
    .top_about_img_1:before{
        max-width: 350px;
        aspect-ratio: 1.5 / 1;
    }
    .top_about_img_1:after{
        max-width: 400px;
        aspect-ratio: 1.5 / 1;
        margin-top: -5vw;
    }
    .top_about_txt{
        max-width: calc(100% - 40px);
        width: 100%;
        margin: 80px 20px;
    }
    .top_about_img_2:before{
        aspect-ratio: 1.5 / 1;
        max-width: 500px;
    }
    .top_about_img_2:after{
        aspect-ratio: 1.5 / 1;
        margin: -5vw auto 0 20px;
        max-width: 350px;
    }
    .cta .flex{
        display: block;
    }
    .btn_container_cta + .btn_container_cta{
        margin: 40px auto 0 auto;
    }
    .cta .flex_center_center{
        display: flex;
    }*/
    .sp_header_service{
        margin: 0 20px;
    }
    .sp_header_service ul{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: stretch;
        margin-bottom: 4vw;
    }
    .sp_header_service ul li{
        width: calc((100% - 10px) / 2);
        background-color: var(--m_color);
        border-radius: 10px;
    }
    .sp_header_service ul li a{
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
        padding: 20px 10px;
    }
    .sp_header_service ul li a div{
        margin: auto;
    }
    .sp_header_service ul li a img{
        display: block;
        height: clamp(40px, 10vw, 60px);
        margin: 0 auto 10px auto;
    }
    /*-------------------------------------
    ケータリング 1024~
    -------------------------------------*/
    .wide .philosophy_left{
        width: 100%;
        margin: 0 auto;
        max-width: calc(100% - 40px);
    }
    .wide .philosophy_left p.philosophy_large{
        margin: 0 auto 60px auto;
        width: 100%;
    }
    .wide .philosophy_right{
        width: 100%;
        max-width: 500px;
    }
    .compatible_area{
        max-width: 650px;
        margin: 0 auto;
        display: flex !important;
    }
    .catering_flow_container{
        width: 100%;
        padding: 40px 20px;
    }
    /*-------------------------------------
    野球指導 1024~
    -------------------------------------*/
    .lesson_flow .profile_left{
        margin: 0 auto;
    }
    .baseball_wrap .philosophy_right{
        margin-right: auto;
        margin-left: auto;
    }
    /*-------------------------------------
    イベント 1024~
    -------------------------------------*/
    .event_service .wide .philosophy_left{
        width: 100%;
    }
    .bubble_ttl{
        margin: 0 auto 40px 5vw;
    }
    .event_service_txt{
        transform: none;
        width: 80%;
        margin: 0 0 0 auto;
    }
    .event_service .wide .philosophy_right{
        width: calc(100% - 40px);
        margin: 40px auto 0 auto;
        max-width: none;
    }
    .event_achievements .philosophy_left{
        max-width: none;
    }
    .event_achievements .philosophy_left p{
        text-align: left !important;
    }
    .event_achievements .philosophy_right{
        max-width: 100%;
    }
    /*-------------------------------------
    ブログ 1024~
    -------------------------------------*/
    .blog_container,
    .single_contaciner {
        display: block;
    }
    .blog_inner, .single_inner, .search_inner{
        width: 100%;
    }
    .side_container{
        width: 100%;
        margin: 40px auto 0 auto;
    }
    /*-------------------------------------
    会社概要 1024~
    -------------------------------------*/
    .philosophy .flex,
    .profile .flex{
        display: block;
    }
    .philosophy_left{
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .philosophy_left p:not(.att_txt){
        text-align: center !important;
    }
    .philosophy_right{
        width: 100%;
        max-width: 500px;
        margin: 40px auto 0 auto;
    }
    .profile_left{
        width: 100%;
        max-width: 540px;
        margin: 60px auto 0 auto;
    }
    .profile_left dl{
        display: flex !important;
    }
    .profile_right{
        width: 100%;
        margin: 40px auto 0 auto;
        max-width: 540px;
    }
    /*-------------------------------------
    お問い合わせ 1024~
    -------------------------------------*/
    .cta.page_contact_cta .cta_ttl{
        margin-right: 0;
        text-align: center;
    }
    .cta.page_contact_cta .top_business_btn{
        max-width: 350px;
    }
    /*-------------------------------------
    フッター 1024~
    -------------------------------------*/
    footer .site_title{
        margin-right: auto;
        margin-left: auto;
        display: block;
    }
    footer .site_title img{
        margin: 0 auto;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    body.home .header {
        height: auto;
        background-position: 57% 50%;
    }
    .pc_header_nav li,
    .pc_header_nav li.join_btn.schedule_btn{
        margin: 0 20px 0 0;
    }
}
@media only screen and (min-width: 769px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .sp_none {
        display: none !important;
    }
    .flex,
    .flex_center_center{
        display: block;
    }
    .flex_txt,
    .flex_img,
    .flex_reverse .flex_img{
        width: 100%;
        padding: 0;
        margin:0 auto;
    }
    .flex_img img{
        margin: 0;
    }
    .flex_txt,
    .flex_reverse .flex_txt{
        margin: 0 0 40px 0;
        max-width: none;
    }
    .flex_img img{
        margin: 0 auto;
        display: block;
        max-width: 640px;
    }
    /*-------------------------------------
    header
    -------------------------------------*/
    .scroll-prevent {
        overflow: hidden;
    }
    .overlay {
        content: "";
        display: block;
        width: 0;
        height: 0;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        transition: opacity 0.5s;
    }
    .overlay.open {
        width: 100%;
        height: 100%;

        opacity: 1;
    }
    .sp_trigger_nav_bottom {
        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_trigger_nav_bottom a {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        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;
        border: 1px solid #b01f28;
    }
    .sp_trigger_nav_bottom a i {
        color: #b01f28;
    }
    .sp_trigger_nav_bottom img {
        max-width: 28px;
    }
    body:not(.home) .header_img_container > div:not(.header_img_inner_img){
        height: 350px;
    }
    .sec_ttl_2{
        font-size: 54px;
    }
    .top_service_ttl_main h3 {
        font-size: 24px;
    }
    /*-------------------------------------
    トップ　768~
    -------------------------------------*/
    .mv_txt_container{
        font-size: 28px;
    }
    .top_about_img_1:before{
        margin-left: 20px;
    }
    .top_about_img_1:after{
        margin-top: -23vw;
    }
    .top_about_img_2:after{
        margin: -15vw auto 0 20px;
    }
    .top_service_ttl{
        display: flex;
    }
    .top_service_nam{
        padding-left: 20px;
    }
    .sec_ttl_2_jp{
        font-size: 42px;
    }
    .top_company_bg{
        writing-mode: horizontal-tb;
        font-size: 18vw;
    }
    .top_company_txt{
        padding-top: 40px !important;
        margin: 0 auto;
    }
    .top_news_txt{
        width: 100%;
        margin-bottom: 40px;
    }
    .news .top_news_list{
        width: calc(100% - 40px);
        margin: 0 auto;
    }
    .news .top_news_list .flex{
        display: flex;
    }
        .top_onlineshop .three_column .att_txt{
        margin-top: 0;
    }
    /*-------------------------------------
    ケータリング 768~
    -------------------------------------*/
    .catering_flow_container,
    .baseball_wrap .catering_flow_container{
        width: 100%;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 500px;
        margin: 0 auto 10px auto;
    }
    .catering_flow_container:before,
    .catering_flow_container + .catering_flow_container:before{
        content: '\f1d8';
        font-family: "Font Awesome 6 Free";
        font-weight: 400;
        font-size: 60px;
        width: 100px;
        text-align: center;
        margin: 0;
        position: static;
        transform: none;
        background-color: transparent;
        color: #333;
    }
    .catering_flow_container:nth-of-type(2):before{
        content: '\f086';
    }
    .catering_flow_container:nth-of-type(3):before{
        content: '\f1ea';
    }
    .catering_flow_container:nth-of-type(4):before{
        content: '\f3d1';
    }
    .catering_flow_container:nth-of-type(5):before{
        content: '\f274';
    }
    .catering_flow_container + .catering_flow_container:after{
        content: '→';
        font-family: "NotoSansJP", serif;
        font-size: 20px;
        aspect-ratio: 1 / 1;
        border-radius: 100%;
        background-color: var(--m_color);
        position: absolute;
        color: #fff;
        width: 40px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        top: -6px;
        left: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
        padding: 0 0 2px 0;
    }
    .wide .philosophy_right{
        max-width: calc(100% - 40px);
    }
    .catering_plan_left{
        width: 100%;
        padding: 0;    
    }
    .catering_plan_right{
        width: 100%;
        margin-top: 0;
    }
    .catering_plan_right dl{
        display: flex;
        width: 100%;
    }
    .catering_plan_right dl + dl{
        margin-top: 10px;
    }
    .philosophy_logo{
        margin-right: auto;
        margin-left: auto;
        max-height: 130px;
    }
    .flow_dl{
        width: 50%;
        margin: 0 0 0 40px;
    }
    .flow_dl dt{
        text-align: left;
    }
    .flow_dl dt i{
        display: none;
    }
    .flow_dl dd{
        text-align: left;
    }
    .catering_tel{
        padding: 0 0 20px 0;
        margin: 0 auto;
    }
    .catering_mail{
        border-top: 1px solid #333;
        padding: 20px 0 0 0;
    }
    .catering_tel a,
    .catering_mail a{
        display: flex;
        justify-content: center;
    }
    .catering_tel:after{
        display: none;
    }
    .kakiversary_photo{
        display: flex;
    }
    .kakiversary_photo_container {
        width: calc(50% - 20px);
    }
    .kakiversary_access_left,
    .map{
        width: 100%;
    }
    .map{
        margin-top: 20px;
    }
    .business_hours_container{
        width: 100%;
    }
    .business_hours_container dl {
        display: flex;
    }
    .btn_container_2,
    .btn_container_2 + .btn_container_2{
        margin: 20px auto 0 auto;
        width: 100%;
    }
    .four_img{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .four_img_img{
        width: calc((100% - 10px) / 2);
    }
    /*-------------------------------------
    野球指導 768~
    -------------------------------------*/
    .two_column .cta_btn_container{
        width: 100%;
    }
    .baseball_wrap .business_hours_container dt{
        width: 117px;
    }
    .baseball_wrap .business_hours_container dd {
        width: calc(100% - 117px);
        padding: 0 10px;
    }
    .baseball_wrap .philosophy_right{
        margin-right: auto;
        margin-left: auto;
    }
    /*-------------------------------------
    ブログ 768~
    -------------------------------------*/
    .blog_inner,
    .single_inner,
    .search_inner,
    .side_container {
        width: 100%;
    }
    .blog_inner {
        margin: 0 0 50px;
    }
    .blog_inner li .flex{
        display: flex;
    }
    .side_container{
        margin:0 auto;
    }
    .blog_photo{
        width: 100%;
        text-align: center;
    }
    .blog_text{
        width: 100%;
    }
    /*-------------------------------------
    会社概要 768~
    -------------------------------------*/
    table.data th{
        width: 200px;
        font-weight: 600;
    }
    /*-------------------------------------
    お問い合わせ　768~
    -------------------------------------*/
    .wpcf7_left,
    .page-template-catering_form .wpcf7_left{
        width: 100%;
        border-bottom: none;
        padding: 20px 0 10px 0;
    }
    .wpcf7_left span{
        display: block;
        margin-bottom: 6px;
    }
    .wpcf7_right{
        width: 100%;
        display: block;
        padding: 0 0 20px 0px;
    }
    .wpcf7-form-control-wrap,
    .wpcf7 input[name="your-email"],
    .wpcf7 input[name="your-name"],
    .wpcf7 input[type="tel"],
    .wpcf7 .width_min{
        width: 100%;
    }
    .wpcf7 input[name="your-email"],
    .wpcf7 input[name="your-name"],
    .wpcf7 input[name="your-x"],
    .wpcf7 input[name="your-company"],
    .wpcf7-form-control-wrap input[type="date"],
    .wpcf7 input[type="tel"]{
        width: 100%;
    }
    /*-------------------------------------
    フッター 768~
    -------------------------------------*/
    footer.section_space{
        padding-bottom: 160px;
    }
    footer .site_title{
        margin-bottom: 30px;
    }
    .footer_nav {
        margin: 60px 0;
    }
    .footer_nav li + li{
        margin-left: 0;
        margin-top: 20px;
    }
    .footer_smallnav li + li{
        margin-top: 0;
    }
    .copyright{
        padding: 20px 20px 20px 20px;
    }
    .copyright p{
        text-align: center !important;
    }
}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    br.sp{
        display: block;
    }
    h2:before {
        font-size: 45px;
        top: -70px;
    }
    h3 {
        font-size: 20px;
        margin: 0 0 5vw;
    }
    h2.sec_h2::after{
        width: 26px;
        height: 26px;
    }
    #page-top{
        right: 6px;
    }
    .copy {
        padding-bottom: 140px;
    }
    body.page-template-default .main_inner {
        padding: 10vw 20px 15vw;
    }
    .header_img_inner_text > div:nth-of-type(1) {
        font-size: 23px;
        margin-bottom: 10px;
    }
    /*-------------------------------------
    レイアウト
    -------------------------------------*/
    .wrap{
        font-size: 0.875rem;
    }
    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    .site_title a {
        color: #fff;
    }
    /*下層ページ*/
    body:not(.home) .header_img_container > div:not(.header_img_inner_img) {
        background-size: cover;
        height: 75vw;
        background-position: 55% center;
    }
    .sec_space_1{
        padding:80px 0;
    }
    .sec_space_2,
    .sec_space_3{
        padding: 60px 0;
    }
    .sp_p0{
        padding:0;
    }
    body:not(.home) h1:before{
        font-size: 40px;
    }
    .sec_ttl_2{
        font-size: 42px;
        margin-bottom: 40px;
    }
    .sec_ttl_2_nam {
        font-size: 24px;
    }
    body:not(.home) h1{
        font-size: 18px;
    }
    /*-------------------------------------
    トップページ　550~
    -------------------------------------*/
    body.home .header_img_container{
        aspect-ratio: 1 / 1.5;
    }
    .mv_img:after{
        background-position: left;
    }
    .mv_txt {
        top: auto;
        bottom: 8%;
        transform: none;
        left: 2%;
    }
    .mv_ball {
        bottom: 37%;
    }
    .mv_txt_container {
        font-size: 25px;
    }
    .mv_txt_container:first-of-type {
        margin: 0 40px 10px 0;
    }
    .mv_txt{
        bottom: 16%;
    }
    .mv_eng{
        animation: bg_loop 15s linear infinite;
        background-size: 260vw auto;
        height: 17.4vw;
    }
    .mv_txt_large span{
        font-size: clamp(44px, 10vw, 160px);
    }
    .mv_txt_small{
        margin-top: 20px;
    }
    .news .top_news_list li{
        padding: 0;
    }
    .news_meta:after{
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    .illust_baseball{
        top: 8%;
    }
    /*-------------------------------------
    お知らせ 550~
    -------------------------------------*/
    body.tax-news-cat h1,
    body.post-type-archive-news h1{
        margin-bottom: 60px;
    }
    .single_pagenavi{
        display: flex;
    }
    .news .news_meta{
        padding: 20px 0;
    }
    .news_wrap .details{
        display: flex;
    }
    .news_list{
        display: block;
    }
    .news_list li{
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
    .news_list li + li{
        border-top: 1px solid #ddd;
        padding-top: 20px;
    }
    .news_list li section{
        border: none;
        padding: 0;
    }
    .news_wrap .news_text{
        display: flex;
        border: none;
        padding: 0;
        flex-direction: column;
    }
    .news_thum {
        width: 100%;
    }
    .news_wrap .news_text a.news_thum{
        width: 100%;
        padding-left: 20px;
    }
    .news .top_news_list .flex{
        display: block;
    }
    .top_news_img{
        width: 100%;
    }
    .top_news_content{
        width: 100%;
    }
    .top_onlineshop .three_container + .three_container{
        margin-top: 40px;
    }
    /*-------------------------------------
    ケータリング 550~
    -------------------------------------*/
    .catering_plan_flex{
        padding: 0;
    }
    .catering_h3 span{
        display: block;
    }
    .catering_flow_container:before, 
    .catering_flow_container + .catering_flow_container:before{
        width: 100px;
    }
    .flow_dl{
        width: calc(100% - 100px);
        margin-left: 20px;
    }
    .catering_cta{
        padding: 40px 20px;
    }
    .catering_tel a, .catering_mail a{
        justify-content: flex-start;
    }
    .catering_cta a i{
        font-size: 24px;
        padding: 14px;
    }
    .catering_tel_right p {
        font-size: 16px;
    }
    .catering_tel_right span{
        font-size: 28px;
    }
    .catering_mail .catering_tel_right span{
        font-size: 24px;
    }
    .kakiversary_photo{
        flex-wrap: wrap;
        justify-content: center;
    }
    .kakiversary_photo img {
        width: calc((100% - 10px) / 2);
    }
    .kakiversary_photo_container{
        width: 100%;
    }
    .kakiversary_photo_container:nth-of-type(2) img{
        margin-top: 10px;
    }
    .three_container{
        width: 100%;
    }
    .three_container + .three_container{
        margin-top: 10px;
    }
    .kakiversary .cta_btn_container a{
        text-align: left;
    }
    /*-------------------------------------
    イベント・講演会 550~
    -------------------------------------*/
    .event_bg{
        padding-bottom: 160px;
    }
    .bubble_ttl{
        width: 100%;
        margin: 80px auto -40px auto;
    }
    .bubble_ttl:before{
        aspect-ratio: 1 / 0.51;
        height: auto;
        width: 100%;
    }
    .bubble_ttl span{
        width: 100%;
        top: calc(50% - 70px);
    }
    .event_service_txt{
        width: 100%;
    }
    /*-------------------------------------
    ブログ 550~
    -------------------------------------*/
    .blog_inner li .flex{
        display: block;
    }
    .blog_container {
        padding: 0 10px;
    }
    .blog_inner .post-categories li{
        margin: 0 0 16px;
    }
    .blog_text {
        margin: 0;
    }
    .blog_photo {
        margin: 0 0 10px 0;
    }
    .blog_photo img {
        height: 220px;
        width: 100% !important;
    }
    .post-categories li a {
        font-size: 11px;
    }
    .article_top {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cat_container + div {
        padding: 6px 0px 0 0;
    }
    .article_main p {
        font-size: 0.875rem;
    }
    /*目次*/
    .outline {
        padding: 20px;
    }
    .outline__toggle:checked + .outline__switch + .outline__list {
        padding: 17px 0px 0;
    }
    .footer_nav {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .breadcrumbsinner {
        padding: 30px 20px;
    }
    .article_main img {
        object-fit: contain;
        font-family: "object-fit: cover;";
        height: auto;
    }
    /*-------------------------------------
    会社概要 550~
    -------------------------------------*/
    table.data,
    table.data tbody,
    table.data tr,
    table.data th,
    table.data td{
        display: block;
    }
    table.data th{
        width: 100%;
        border: none;
        padding: 20px 0 0 0;
    }
    table.data td{
        padding: 0 0 20px 0;
        font-size: 14px;
    }
    table.data td .location{
        font-size: 14px;
    }
    /*-------------------------------------
    お問い合わせ 550~
    -------------------------------------*/
    .other_tel a{
        font-size: 25px;
        padding: 30px 0;
    }
    .other_tel a i{
        margin-right: 16px;
    }
    .cta.page_contact_cta .cta_ttl{
        font-size: 26px;
    }
    ul.contact_att{
        padding:10px 15px;
    }
    .contact_att li{
        text-indent: -14px;
        padding-left: 14px;
    }
    .wpcf7 {
        margin: 0 0 0;
    }
    .wpcf7_container div.flex {
        display: block;
    }
    .wpcf7_checkbox_title {
        border: none;
    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
    }
    .contact_tel {
        margin: 0;
    }
    /*確認画面 550~*/
    #wpcf7cpcnf table td,
    #wpcf7cpcnf table th{
        display: block;
        width: 100%;
        padding: 10px 0 15px 0;
    }
    #wpcf7cpcnf table th{
        display: block;
        width: 100%;
        padding: 10px 0 0 0;
    }
    #wpcf7cpcnf table td{
        min-height: auto;
    }
    button.wpcf7cp-cfm-edit-btn,
    button.wpcf7cp-cfm-submit-btn{
        margin: 0 5px !important;
        font-size: 16px;
        padding: 16px 10px;
        display: block;
        width: 100%;
    }
    button.wpcf7cp-cfm-submit-btn{
        margin-top: 10px !important;
    }
    .wpcf7c_submit input[type="submit"]{
        font-size: 16px;
    }
    /*-------------------------------------
    footer 550~
    -------------------------------------*/
    footer .sec_space_2{
        padding-top: 60px;
    }
}
