@charset "utf-8";

/*---------------------------------
Fonts
---------------------------------*/
/* Japanese
---------------------------------*/
/* Bold */
@font-face {
    font-family: 'Zen Old Mincho';
    src: url('../font/ZenOldMincho-Bold.ttf') format('truetype');
    font-weight: 700;
}
/* Medium */
@font-face {
    font-family: 'Zen Old Mincho';
    src: url('../font/ZenOldMincho-Medium.ttf') format('truetype');
    font-weight: 500;
}
/* Regular */
@font-face {
    font-family: 'Zen Old Mincho';
    src: url('../font/ZenOldMincho-Regular.ttf') format('trueype');
    font-weight: 400;
}

/*---------------------------------
Variable
---------------------------------*/
:root{
    --color-primary: #BB9C65;
    --color-primary-rgb: 187, 156, 101;

    --color-secondary: #A0283A;
    --color-secondary-rgb: 160, 40, 58;

    --color-tertiary: #323244;
    --color-tertiary-rgb: 50, 50, 68;

    --color-bk: #000;
    --color-bk-rgb: 0,0,0;

    --color-gray: #B8C4CE;

    --color-medium: #ddd;

    --color-light: #F1F3EE;

    --color-wh: #fff;
    --color-wh-rgb: 255,255,255;

    --size-xs: 4px;

    --size-s: 8px;

    --size-m: 16px;

    --size-m: 24px;

    --size-l: 32px;

    --size-xl: 40px;
}
@media (min-width: 768px) {
    :root{

        --size-xs: 8px;

        --size-s: 16px;

        --size-m: 32px;

        --size-m: 48px;

        --size-l: 64px;

        --size-xl: 80px;
    }
}

/*---------------------------------
Reset
---------------------------------*/
html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    background: url('../img/bg.png') 512px;
    color: var(--color-tertiary);
}
body {
    margin: 0;
    font-family: "Zen Old Mincho", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    /*color: var(--color-bk);*/
    color: #444;	
    height: 100%;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
div {
    box-sizing: border-box;
}
a {
    color: unset;
    font-weight: 700;
}
a:hover {
    color: unset;
}
a:visited {
    color: var(--color-link-shade);
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
ol {
    padding-left: 1.6rem;
}
img {
    max-width: 100%;
}
p {
    margin: 0;
    font-weight: 500;
}
@media (min-width: 768px) {
    body {
        font-size: 1.5rem;
    }
}

/*---------------------------------
Common
---------------------------------*/
#wrapper {
    position: relative;
    min-height: 100%;
    height: auto;
    box-sizing:border-box;
    padding-top: 64px;
    display: flex;
    flex-direction: column;
    animation: fadein 2s ease 0s 1 normal;
}
.container {
    margin: 0 25px;
}
.image img {
    max-width: 100%;
}
.display_pc {
    display: none;
}
.display_sp {
    display: block;
}


@media (min-width: 768px) {
    #wrapper {
        padding-top: 0;
    }
    .display_pc {
        display: block;
    }
    .display_sp {
        display: none;
    }
    .container {
        max-width: 1280px;
        padding: 0 40px;
        margin: 0 auto;
		overflow: hidden;
    }
    .page_content .container,
    .single_content .container {
        max-width: 1080px;
    }
    .container.-narrow {
        max-width: 880px;
    }
	
.fadein_sc {
    opacity: 0;
    transform: translateY(120px);
    transition: opacity .6s .1s,transform .6s .1s;
}

.fadein_sc_from_right {
    opacity: 0;
    transform: translateX(120%);
    /*transition: opacity .6s .1s,transform .6s cubic-bezier(0.68, -0.55, 0.265, 1.55) .1s;*/
	transition: opacity .6s .1s,transform .6s .1s;
}

.fadein_sc_from_left {
    opacity: 0;
    transform: translateX(-120%);
    transition: opacity .6s .1s,transform .6s .1s;
    /*transition: opacity .6s .1s,transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) .1s;*/
}

.fadein_sc_from_scale {
    opacity: 0;
    transform: scale(1.3, 1.3);
    transition: opacity .6s .1s,transform .6s cubic-bezier(0.68, -0.55, 0.265, 1.55) .1s;
}

.delay_001 {
    transition-delay: .5s;
}

.delay_002 {
    transition-delay: .2s;
}

.delay_003 {
    transition-delay: .4s;
}

.delay_004 {
    transition-delay: .6s;
}

.delay_005 {
    transition-delay: .8s;
}

.delay_006 {
    transition-delay: 1s;
}

.delay_007 {
    transition-delay: 1.2s;
}

.delay_008 {
    transition-delay: 1.4s;
}

.delay_009 {
    transition-delay: 1.6s;
}	
	
}


/*
Animation
---------------------------------*/
@keyframes fadein {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadein {
    0% {opacity: 0}
    100% {opacity: 1}
}

.-effect {
    opacity: 0;
}
.-effect.-animated {
    animation: fadein .6s .2s cubic-bezier(.25,.46,.45,.94);
    animation-fill-mode: both;
}



/*
Btn
---------------------------------*/
a.btn {
    position: relative;
    color: var(--color-secondary);
    border-left: var(--color-secondary) solid 1px;
    border-right: var(--color-secondary) solid 1px;
    display: inline-block;
    text-align: center;
    padding: 8px 24px;
    text-decoration: none;
    font-size: 1.5rem;
}

a.btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 8px);
    height: 1px;
    background: var(--color-secondary);
    transition: .3s;
}
a.btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 8px);
    height: 1px;
    background: var(--color-secondary);
    transition: .3s;
}
a.btn02 {
    position: relative;
    color: #ffffff;
    display: inline-block;
    text-align: center;
    padding: 8px 24px;
    text-decoration: none;
    font-size: 1.5rem;
    background-color: #464656;
	border: 1px solid #454555;
}

a.btn02::before {

}
a.btn02::after {

}

a.btn03 {
position: relative;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  padding: 15px 20px 15px 40px;
  text-decoration: none;
  font-size: 2.4rem;
  background-color: #464656;
  border: 1px solid #454555;
  border-radius: 5px;
  width: 260px;
}

a.btn03::before {
content: "";
  position: absolute;
  top: 20px;
  left: 25px;
  right: 0;
  height: 32px;
  width: 25px;
  background: url(..//img/icon_tel.svg) center/cover no-repeat;
  /*transition: background .3s;*/
  background-size: 80% auto;

}
    a.btn03:hover::before {
		background: url(..//img/icon_tel_hover.svg) center/cover no-repeat;
		background-size: 80% auto;
    }
a.btn03::after {

}


a.btn div {
    position: relative;
}
@media (min-width:  769px) {
    a.btn {
        min-width: 260px;
        padding: 12px 24px;
        font-size: 1.6rem;
        transition: background-color .3s;
    }
    a.btn:hover {
        background-color: rgba(var(--color-secondary-rgb), .05);
    }
    a.btn:hover::before {
        width: 100%;
    }
    a.btn:hover::after {
        width: 100%;
    }
	
	a.btn02 {
        min-width: 240px;
        padding: 12px 24px;
        font-size: 1.6rem;
        transition: background-color .3s;
    }
    a.btn02:hover {
		border: 1px solid #454555;
		color: #454555;
		background-color: #fff;
	
    }
    a.btn02:hover::before {
        width: 100%;
    }
    a.btn02:hover::after {
        width: 100%;
    }

	
a.btn03 {
position: relative;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  padding: 15px 20px 15px 40px;
  text-decoration: none;
  font-size: 2.4rem;
  background-color: #464656;
  border: 1px solid #454555;
  border-radius: 5px;
  width: 260px;
}	
	
    a.btn03:hover {
		border: 1px solid #454555;
		color: #454555;
		background-color: #fff;
	
    }
    a.btn03:hover::before {
		background: url(..//img/icon_tel_hover.svg) center/cover no-repeat;
		background-size: 80% auto;
    }

}



/*---------------------------------
Header Footer
---------------------------------*/
/*
Header
---------------------------------*/
.header {
    background: url('../img/bg.png') 512px;
    background-color: var(--color-wh);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    height: 64px;
}
.header_inner {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 25px;
}
.header_logo {
    display: block;
    width: auto;
    height: 40px;
    font-size: 0;
    transition: opacity .3s;
}
.header_logo h1,
.header_logo p {
    height: 100%;
}
.header_logo img {
    height: 100%;
    width: auto;
    margin: 0 auto;
}

@media (min-width:  769px) {
    .header {
        height: 152px;
        position: static;
    }
    .header_inner {
        padding: 0 40px;
        max-width: 1600px;
        margin: 0 auto;
    }
    .header_logo {
        height: 160px;
        width: 160px;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        top: 32px;
        border-left: solid 1px rgba( var(--color-tertiary-rgb) ,.5 );
        border-right: solid 1px rgba( var(--color-tertiary-rgb) ,.5 );
        border-bottom: solid 1px rgba( var(--color-tertiary-rgb) ,.5 );
        padding: 16px;
		background: linear-gradient(180deg, rgba(249, 249, 249, 0) 0%, rgba(249, 249, 249, 1) 85%, rgba(249, 249, 249, 1) 100%);
    }
    .header_logo h1,
    .header_logo p {
        height: 120px;
    }
    .header_logo:hover {
        opacity: 0.7;
    }
    
}




/*
Fix header
---------------------------------*/
.fix_header {
    display: none;
}
@media (min-width:  769px) {
    .fix_header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        background: url('../img/bg.png') 512px;
        background-color: var(--color-wh);
        padding: 16px 0;
        transform: translateY(-100%);
        transition: transform .3s;
    }
    .fix_header.scroll {
        transform: translateY(0);
    }
    .fix_header_inner {
        padding: 0 40px;
        max-width: 1600px;
        margin: 0 auto;
        display: flex;
        align-items: center;
    }
    a.fix_header_logo {
        height: 40px;
        transition: opacity .3s;
    }
    a.fix_header_logo:hover {
        opacity: .7;
    }
    .fix_header_logo p {
        height: 100%;
    }
    .fix_header_logo img {
        height: 100%;
    }
    .fix_nav_list {
        display: flex;
        align-items: center;
        margin-left: 40px;
    }
    .fix_nav_list li + li {
        margin-left: 24px;
    }
    .fix_nav_list li a {
        text-decoration: none;
        transition: color .3s;
    }
    .fix_nav_list li a:hover {
        color: var(--color-secondary);
    }
}

/*
Global nav
---------------------------------*/
.global_nav {
    display: none;
}
@media (min-width:  769px) {
    .global_nav {
        display: block;
        width: 100%;
        margin: 32px 0 0;
    }
    .global_nav_list {
        display: flex;
    }
    .global_nav_list li {
        flex: 1;
        text-align: center;
/*        border-bottom: solid 1px rgba( var(--color-tertiary-rgb) ,.5 );
        padding: 24px 4px 16px;
*/		
    }
    .global_nav_list li a {
        position: relative;
        display: block;
        padding: 32px 0 16px;
        text-decoration: none;
        transition: color .3s;
    }
    .global_nav_list li a:hover {
        color: var(--color-primary);
    }
    .global_nav_list li a::before {
		content: "";
		position: absolute;
		top: 8px;
		left: 0;
		right: 0;
		margin: auto;
		/*height: 16px;*/
		height: 24px;
		width: 24px;
		background: url(../img/icon_nanaju01.svg) center/cover no-repeat;
        transition: background .3s;
    }
    .global_nav_list li a:hover::before {
        background: url(../img/icon_nanaju_goldbrown01.svg) center/cover no-repeat;
    }
    .global_nav_list li.half {
        margin-left: 240px;
    }
}
@media (min-width:  1200px) {
    .global_nav_list li {
        padding: 24px 8px 16px;
        font-size: 1.5rem;
    }

}
@media (min-width:  1600px) {
    .global_nav_list li {
        padding: 24px 16px 16px;
        font-size: 1.6rem;
    }
}


/*
Menu nav
---------------------------------*/
.btn_menu {
    display: block;
    height: 64px;
    width: 64px;
    position: fixed;
    top: 0;
    right: 0;
    padding: 12px;
    z-index: 9999;
    box-sizing: border-box;
    cursor: pointer;
    transition: opacity .3s;
    text-decoration: none;
}
.btn_menu:hover {
    text-decoration: none;
}
.btn_menu span {
    display: block;
    height: 1px;
    width: 32px;
    background: var(--color-tertiary);
    margin: 12px 0 0 auto;
    transition: transform .3s;
    transform-origin: left;
    border-radius: 2px;
}
.global_nav .btn_menu span {
    background: var(--color-wh);
}
.btn_menu span:nth-child(2) {
    margin-top: 12px;
    transition: transform .3s;
    transform-origin: right;
}
.btn_menu div {
    display: none;
}
.btn_menu.active span:nth-child(2) {
    transform: scaleX(.6);
}
.menu_nav {
    position: fixed;
    top: 64px;
    left: 100%;
    width: 100%;
    height: calc( 100vh - 64px );
    background: url('../img/bg.png') 512px;
    transition: opacity .6s cubic-bezier(.25,.1,.25,1),left 0s cubic-bezier(.25,.1,.25,1) .6s;
    opacity: 0;
}
.menu_nav.active {
    left: 0;
    opacity: 1;
    transition: opacity .6s cubic-bezier(.25,.1,.25,1);
}
.menu_nav_inner {
    padding: 32px 0;
    margin: 0 25px;
}
.menu_nav_list li + li {
    margin: 16px 0 0;
}
.menu_nav_list li a {
    position: relative;
    padding: 8px 8px 8px 32px;
    text-decoration: none;
}
.menu_nav_list li a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 20px;
    width: 20px;
    background: url(../img/icon_nanaju01.svg) center/cover no-repeat;
}
@media (min-width: 768px) {
    .btn_menu {
        display: none;
    }
    .menu_nav {
        display: none;
    }
}







/*
Footer
---------------------------------*/
.footer {
    background: rgba( var(--color-tertiary-rgb) ,.9 );
    width: 100%;
    text-align: center;
    position: relative;
    color: var(--color-wh);
    margin: auto 0 0;
}
/*
.footer::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: url(../img/seigaiha.png) bottom/56px repeat-x;
    opacity: .1;
}
*/
.footer_inner {
    margin: 0 25px;
    padding: 32px 0 136px;
}
.footer_nav_list li + li {
    border-top: solid 1px rgba(var(--color-wh-rgb), .2);
}
.footer_nav_list li a {
    padding: 8px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.footer .copyright {
    margin-top: 24px;
}
.footer_fix {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 88;
}
.footer_fix_nav {
    display: flex;
    align-items: center;
}
.footer_fix_nav li a {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.footer_fix_nav li a img {
    width: 100%;
    height: auto;
}
.footer_fix_nav li +li {
    margin-left: 12px;
}

/*    a#return_top{
    transition: opacity .3s;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #292a2c;
    color: #FFF;
    text-decoration: none;
    font-size: 1.2rem;
    }	
*/

.footer_logo {
	height: auto;
    width: 30vw;
    position: static;
    left: 0;
    right: 0;
    margin: 40px auto 10px;
    top: 198px;
    padding: 16px 0 0;
    display: block;
	}
.footer_logo img{width:100%;height:auto}

@media (min-width: 768px) {
    .footer_inner {
        padding: 112px 40px 80px;
        max-width: 1600px;
        margin: 0 auto;
    }
    .footer_nav_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer_nav_list li + li {
        border: none;
        border-left: 1px solid rgba(var(--color-wh-rgb), .2);
    }
    .footer_nav_list li a {
        transition: opacity .3s;
        padding: 4px 16px;
    }
/*
	a#return_top{
    width: 64px;
    height: 64px;
    font-size: 1.2rem;
    padding: 4px 20px;
    }	
*/	
    .footer_nav_list li a:hover {
        opacity: .7;
    }
    .footer .copyright {
        margin-top: 56px;
    }
    .footer_fix {
        right: 25px;
        bottom: 25px;
    }
    .footer_fix_nav li a {
        width: 64px;
        height: 64px;
        transition: opacity .3s;
    }
    .footer_fix_nav li a:hover {
        opacity: .7;
    }
	.footer_logo{

	}
	.footer_logo img{}
}


/*---------------------------------
Main
---------------------------------*/
/*
Main Visual
---------------------------------*/
.main_visual {
    position: relative;
}
.main_visual .top_swiper {
    aspect-ratio: 75/56;
}
.main_visual img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media (min-width: 768px) {
    .main_visual {
/*         
        max-width: 1600px;
        padding: 0 40px;
        margin: 88px auto;
*/

        padding: 0px;
        margin: 20px auto 0px;
			width:100%;
	}
	
    .main_visual .top_swiper {
        aspect-ratio: 19/9;
    }
}


/*
Section
---------------------------------*/
.section {
    /*padding: 40px 0;*/
	padding: 20px 0;
}


.section_title {
    text-align: center;
    margin: 0 0 32px;
    position: relative;
}
.section_title span {
    display: inline-block;
    position: relative;
    padding: 8px 16px;
}
.section_title span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    width: 40px;
    height: 1px;
    background: var(--color-secondary);
}
.section_title span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    width: 40px;
    height: 1px;
    background: var(--color-secondary);
}

@media (min-width: 768px) {
    .section {
        /*padding: 112px 0;*/
		padding: 56px 0;
    }
    .section_title {
        margin: 0 0 64px;
        font-size: 2.4rem;
    }
    .section_title span {
        padding: 16px 32px;
    }
    .section_title span::before,
    .section_title span::after {
        width: 80px;
    }

}

/*
Section top news
---------------------------------*/
.top_news_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section_top_news h2 {
    position: relative;
    font-size: 1.6rem;
    text-align: left;
    display: inline-block;
    margin: 0;
}
.section_top_news h2 span {
    position: relative;
    display: inline-block;
    padding: 2px 16px;
}
.section_top_news h2::before,
.section_top_news h2::after,
.section_top_news h2 span::before,
.section_top_news h2 span::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    background: none;
}
.section_top_news h2::before {
    top: 0;
    left: 0;
    border-width: 16px 8px 0 0;
    border-color: var(--color-tertiary) transparent transparent transparent;
}
.section_top_news h2::after {
    top: 0;
    right: 0;
    border-width: 16px 0 0 8px;
    border-color: var(--color-tertiary) transparent transparent transparent;
}
.section_top_news h2 span::before {
    bottom: 0;
    left: 0;
    border-width: 0 8px 16px 0;
    border-color: transparent transparent var(--color-tertiary) transparent;
}
.section_top_news h2 span::after {
    bottom: 0;
    right: 0;
    border-width: 16px 8px 0 0;
    border-color: transparent var(--color-tertiary) transparent transparent;
}

.top_news_header a {
    text-decoration: none;
    border-bottom: solid var(--color-secondary) 1px;
    padding: 0 0 2px 0;
}
.top_news_list {

}
.top_news_list li {
    padding: 16px 0;
}
.top_news_list li + li {
    border-top: solid 1px rgba(var(--color-tertiary-rgb) , .3);
}
.top_news_list li a {
    text-decoration: none;
}
.top_news_list li h3 {
    font-size: 1.3rem;
    margin: 0 0 0;
}
.top_news_list li time {
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .section_top_news {
position: relative;
        bottom: 0;
        z-index: 5;
        /* background: url(../img/bg.png) 512px; */
        background-color: var(--color-wh);
        padding: 40px 0 0 40px;
        margin: 40px auto;
        width: 60vw;
    }
    .section_top_news .container {
        /*padding: 0;*/
        padding: 0 40px 0 0px;		
    }
	.section_top_news1{position: relative;
        bottom: 0;
        z-index: 5;
        /* background: url(../img/bg.png) 512px; */
        background-color: var(--color-wh);
        padding: 40px 0 0 40px;
        margin: 40px auto;
        width: 60vw;}	
	.section_top_news2{position: relative;
        bottom: 0;
        z-index: 5;
        /* background: url(../img/bg.png) 512px; */
        background-color: var(--color-wh);
        padding: 40px 0 0 40px;
        margin: 40px auto;
        width: 60vw;}
    .top_news_list li h3 {
        font-size: 1.4rem;
    }
    .top_news_header a {
        margin-left: 80px;
    }
}


/*
column box
---------------------------------*/
.flex_box_item + .flex_box_item {
    margin-top: 32px;
}
.flex_box_item .img {
    position: relative;
}
.flex_box_item .img::before,
.flex_box_item .img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    background: rgba(var(--color-tertiary-rgb),.3);
}
.flex_box_item .img::before {
    top: 6px;
}
.flex_box_item .img::after {
    bottom: 6px;
}
.flex_box_item .img .inner {
    position: relative;
    padding: 12px;
}
.flex_box_item .img .inner::before,
.flex_box_item .img .inner::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    background: rgba(var(--color-tertiary-rgb),.3);
}
.flex_box_item .img .inner::before {
    left: 6px;
}
.flex_box_item .img .inner::after {
    right: 6px;
}
.flex_box_item .img img {
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: 2px;
}
.flex_box_item .txt {
    margin: 16px 0 0;
}

.flex_box_item .txt h2 {
	position: relative;
	padding: 0 0 0 25px;
	margin: 0 0 24px;
	font-size: 1.6rem;
}
.flex_box_item .txt h2::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: url(../img/icon_h3.svg) center/cover no-repeat;
    width: 20px;
    height: 20px;	
    /*height: 12px;*/
}
.flex_box_item .txt h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    height: 1px;
    width: 48px;
    background: rgba(var(--color-tertiary-rgb),.3);
}

.flex_box_item .txt h3 {
	position: relative;
	padding: 0 0 0 25px;
	margin: 0 0 24px;
	font-size: 1.6rem;
}
.flex_box_item .txt h3::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: url(../img/icon_h3.svg) center/cover no-repeat;
    width: 20px;
    height: 20px;	
    /*height: 12px;*/
}
.flex_box_item .txt h3::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    height: 1px;
    width: 48px;
    background: rgba(var(--color-tertiary-rgb),.3);
}
.flex_box_item .txt p {
    margin: 12px 0 0;
    font-size: 1.4rem;
}
.flex_box_item .txt .btn_wrapper {
    text-align: center;
    margin: 24px 0 0;
}
@media (min-width: 768px) {
    .flex_box_item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .flex_box_item_list .flex_box_item:nth-of-type(even) {
        flex-direction: row-reverse;
    }
    .flex_box_item .img {
        width: 46%;
    }
    .flex_box_item .img .inner {
        padding: 16px;
    }
    .flex_box_item .img::before {
        top: 8px;
    }
    .flex_box_item .img::after {
        bottom: 8px;
    }
    .flex_box_item .img .inner::before {
        left: 8px;
    }
    .flex_box_item .img .inner::after {
        right: 8px;
    }
    .flex_box_item .txt {
        width: 48%;
        margin: 0;
    }

    .flex_box_item .txt h2 {
        /*padding: 0 0 0 48px;
        margin: 0 0 48px;*/
		padding: 0 0 0 40px;
		margin: 0 0 40px;
		font-size: 2rem;
    }
    .flex_box_item .txt h2::before {
/*        width: 32px;
        height: 20px;
*/		
        width: 30px;
        height: 30px;		
    }
    .flex_box_item .txt h2::after {
        bottom: -24px;
        width: 80px;
    }	
	
    .flex_box_item .txt h3 {
        /*padding: 0 0 0 48px;
        margin: 0 0 48px;*/
		padding: 0 0 0 40px;
		margin: 0 0 40px;
		font-size: 2rem;
    }
    .flex_box_item .txt h3::before {
/*        width: 32px;
        height: 20px;
*/		
        width: 30px;
        height: 30px;		
    }
    .flex_box_item .txt h3::after {
        bottom: -24px;
        width: 80px;
    }
    .flex_box_item .txt p {
        font-size: 1.5rem;
        margin-top: 24px;
    }
    .flex_box_item .txt .btn_wrapper {
        margin: 32px 0 0;
        text-align: left;
    }
}

/*
compact box
---------------------------------*/
.compact_box_list {
    display: flex;
    flex-wrap: wrap;

}
.compact_box_item {
    width: 48%;
}
@media (max-width: 767px) {
    .compact_box_list .compact_box_item:nth-of-type(even) {
        margin-left: 4%;
    }
    .compact_box_list .compact_box_item:nth-of-type(n+3) {
        margin-top: 24px;
    }
}
.compact_box_item h3 {
    position: relative;
    text-align: center;
    margin: 16px 0 0;
    padding: 0 0 12px;
    font-size: 1.3rem;
}
.compact_box_item h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 1px;
    width: 40px;
    background: rgba(var(--color-tertiary-rgb),.3);
}
.compact_box_item p {
    margin: 12px 0 0;
    font-size: 1.2rem;
}
@media (min-width: 768px) {
    .compact_box_item {
        width: 22%;
    }
    .compact_box_item + .compact_box_item {
        margin-left: 4%;
    }
    .compact_box_list .compact_box_item:nth-of-type(4n+1) {
        margin-left: 0;
    }
    .compact_box_list .compact_box_item:nth-of-type(n+5) {
        margin-top: 40px;
    }
    .compact_box_item h3 {
        font-size: 1.8rem;
        margin: 32px 0 0;
        padding: 0 0 24px;
    }
    .compact_box_item p {
    margin: 24px 0 0;
        font-size: 1.5rem;
    }
}


/*
Simple box
---------------------------------*/
.simple_box_item + .simple_box_item {
    margin-top: 32px;
}
.simple_box_item .img {
    position: relative;
}
.simple_box_item .img::before,
.simple_box_item .img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    background: rgba(var(--color-tertiary-rgb),.3);
}
.simple_box_item .img::before {
    top: 6px;
}
.simple_box_item .img::after {
    bottom: 6px;
}
.simple_box_item .img .inner {
    position: relative;
    padding: 12px;
}
.simple_box_item .img .inner::before,
.simple_box_item .img .inner::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0;
    background: rgba(var(--color-tertiary-rgb),.3);
}
.simple_box_item .img .inner::before {
    left: 6px;
}
.simple_box_item .img .inner::after {
    right: 6px;
}

.simple_box_item .img img {
    object-fit: cover;
    aspect-ratio: 16/9;
    border-radius: 2px;
}
.simple_box_item h3 {
    position: relative;
    padding: 0 0 24px;
    margin: 24px 0 ;
    font-size: 1.6rem;
    text-align: center;
}
.simple_box_item h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 1px;
    width: 40px;
    background: rgba(var(--color-tertiary-rgb),.3);
}
.simple_box_item p {
    margin: 16px 0 0;
    font-size: 1.4rem;
}

li.simple_box_item h3 {
    font-size: 1.6rem;
    margin: 20px;
    color: #444;
}



@media (min-width: 768px) {
    .simple_box_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .simple_box_item {
        width: 30%;
    }
    .simple_box_item + .simple_box_item {
        margin: 0 0 0 5%;
    }
    .simple_box_list .simple_box_item:nth-of-type(3n+1) {
        margin-left: 0;
    }
    .simple_box_list .simple_box_item:nth-of-type(n+4) {
        margin-top: 40px;
    }
    .simple_box_item .img .inner {
        padding: 16px;
    }
    .simple_box_item .img::before {
        top: 8px;
    }
    .simple_box_item .img::after {
        bottom: 8px;
    }
    .simple_box_item .img .inner::before {
        left: 8px;
    }
    .simple_box_item .img .inner::after {
        right: 8px;
    }

li.simple_box_item h3 {

}	

}



/*
Table scroll
---------------------------------*/
.table_scroll_wraper {
    overflow-x: auto;
    padding-bottom: 10px;
    margin: 32px 0;
}
table.table_scroll {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
.table_scroll th,
.table_scroll td {
    padding: 0.5em;
    border: 1px solid #707070;
    text-align: center;
    white-space: nowrap;
}
.table_scroll thead th {
    border: none;
}
.table_scroll tbody th {
    background: #F7F4F2;
    border-left: 0;
}
.table_scroll td.ok::before {
    font: var(--fa-font-solid);
    content: '\f14a';
    font-size: 2rem;
}
.table_scroll tr td:nth-of-type(2) {
    color: var(--color-primary);
}
.table_scroll tr td:nth-of-type(3) {
    color: var(--color-secondary);
}
.table_scroll td.ng {
    background: url(../img/icon_ng.png) no-repeat center/30px;
}
.table_scroll thead tr:first-child th:first-child {
    background: url(../img/bg.png) 512px;
    position: sticky;
    top: 0;
    left: 0;
}
.table_scroll .sticky {
    position: sticky;
    top: 0;
    left: 0;
    background: #F7F4F2;
}
.table_scroll .sticky:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    right: -1px;
    height: 100%;
    border-left: 1px solid #707070;
    border-right: 1px solid #707070;
    z-index: -1;
}
.table_scroll tbody img {
    min-width: 112px;
}
@media (min-width: 768px) {
    .table_scroll_wraper {
        margin: 56px 0;
    }
    .table_scroll th,
    .table_scroll td {
        padding: 1em;
    }
    .table_scroll td.ok::before {
        font-size: 3rem;
    }
}




/*
Bg Anime Section
---------------------------------*/
.bg_anime_section {
    cursor: pointer;
}

@media (max-width: 767px) {
    .bg_anime_section + .bg_anime_section {
        margin-top: 40px;
    }
}


.bg_anime_section .bg_anime_link {
    text-decoration: none;
    display: flex;
    flex-direction: column-reverse;
    pointer-events: none;
}
.bg_anime_section .bg_anime_link .text {
    display: flex;
    margin: 0;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 500;
    transition: color 600ms cubic-bezier(.25,.1,.25,1) 0ms;
}
.bg_anime_section .bg_anime_link .text .title {
    text-align: left;
    font-size: 1.8rem;
    margin: 16px 0 16px;
    padding: 0 0 16px;
}
.bg_anime_section a .text .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    margin: auto;
    width: 20px;
    height: 1px;
    background: var(--color-secondary);
}
.bg_anime_section .bg_anime_link .text .title span:last-child {
    display: none;
}

.bg_anime_section .bg_anime_link .text dd {
    margin: 0;
    font-size: 1.3rem;
}
.bg_anime_section .bg_anime_link .text dd .read_test {
    margin-top: 0;
    font-weight: 700;
    font-size: 1.4rem;
}
.bg_anime_section .bg_anime_link .image {
    transition: opacity 600ms cubic-bezier(.25,.1,.25,1) 0ms;
    position: relative;
}

.bg_anime_section .bg_anime_link .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
@media (min-width: 768px) {
    .bg_anime_inner {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 0;
        height: 100%;
    }
    .bg_anime_section .bg_anime_link {
        flex-direction: row;
        pointer-events: auto;
        height: 100%;
    }
    .bg_anime_section .btn_wrapper {
        display: none;
    }
    .bg_anime_section .bg_anime_link:after {
        width: 60%;
        background-color: var(--color-tertiary);
        right: 0;
        top: 0;
        height: 100%;
        content: "";
        display: block;
        position: absolute;
        z-index: 100;
        opacity: 0;
        transition: all 600ms cubic-bezier(.25,.1,.25,1) 0ms;
    }
    .bg_anime_section.-reverse .bg_anime_link {
        flex-direction: row-reverse;
    }
    .bg_anime_section:hover .bg_anime_link:after {
        opacity: .7!important;
        width: 100%!important;
    }
        .bg_anime_section:hover .base {
        opacity: 0;
    }
    .bg_anime_section .bg_anime_link .text {
        width: 40%;
        padding: 40px;
    }
    .bg_anime_section:hover .bg_anime_link .text {
        color: var(--color-wh);
    }

    .bg_anime_section .bg_anime_link .text .title {
        position: relative;
        font-size: 2.2rem;
        margin: 0 0 24px;
        padding: 0 0 24px;
    }
    .bg_anime_section:hover a .text .title::after {
        opacity: 0!important;
        transition: all 800ms cubic-bezier(.25,.1,.25,1) 60ms!important;
    }
    .bg_anime_section .bg_anime_link .text .title span:last-child {
        display: block;
        color: var(--color-wh);
        position: absolute;
        top: 0;
        left: 10%;
        opacity: 0;
        transition: all 600ms cubic-bezier(.445,.05,.55,.95) 0ms;
        z-index: 1;
    }
    .bg_anime_section .bg_anime_link .text .title span:last-child::after {
        content: "";
        position: absolute;
        bottom: -24px;
        left: 0;
        right: auto;
        margin: auto;
        width: 20px;
        height: 1px;
        background: var(--color-wh);
    }
    .bg_anime_section:hover .bg_anime_link .text .title span:first-child {
        opacity: 0!important;
        left: 0!important;
        transition: all 800ms cubic-bezier(.25,.1,.25,1) 60ms!important;
    }
    .bg_anime_section:hover .bg_anime_link .text .title span:last-child {
        opacity: 1!important;
        left: 0!important;
        transition: all 800ms cubic-bezier(.25,.1,.25,1) 60ms!important;
    }
    .bg_anime_section .bg_anime_link .text dd {
        font-size: 1.4rem;
    }
    .bg_anime_section .bg_anime_link .text dd .read_test {
        font-size: 1.5rem;
    }
    .bg_anime_section .bg_anime_link .image {
        width: 60%;
    }
    .bg_anime_section:hover  .bg_anime_link .image {
        opacity: 0;
    }
    .bg_anime_section .base {
        position: absolute;
        z-index: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 1;
        background: url(../img/bg.png) 512px;
        transition: all 600ms cubic-bezier(.25,.1,.25,1) 0ms;
    }
}


/* 背景画像指定 */
@media (min-width: 768px) {
    .bg_anime_section .inner_001 {
        background-image: url(../img/dummy_01.jpg);
    }

    .bg_anime_section .inner_002 {
        background-image: url(../img/dummy_02.jpg);
    }

    .bg_anime_section .inner_003 {
        background-image: url(../img/dummy_03.jpg);
    }
}



/* --------------------------------
Page
-------------------------------- */
.page_title_wrapper {
    margin: 0 25px;
    padding: 40px 0 0;
}
.page_title {
    text-align: center;
    position: relative;
    padding: 24px 16px;
    margin: 0;
    font-size: 2rem;
}
.page_title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 40px;
    width: 40px;
    border-top: solid 1px var(--color-secondary);
    border-left: solid 1px var(--color-secondary);
}
.page_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    height: 40px;
    width: 40px;
    border-bottom: solid 1px var(--color-secondary);
    border-right: solid 1px var(--color-secondary);
}

.page_thumb {
    margin: 40px 25px;
}
.page_thumb img {
    object-fit: cover;
    aspect-ratio: 16/9;
    height: auto;
    width: 100%;
    border-radius: 2px;
}


.page_content h2 {
    position: relative;
    padding: 8px 16px;
    width: fit-content;
    margin: 32px auto 24px;
	text-align: center;
}
.page_content h2 span span{
	font-size: 1.6rem;
}
.page_content h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    width: 40px;
    height: 1px;
    background: var(--color-secondary);
}
.page_content h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 auto;
    width: 40px;
    height: 1px;
    background: var(--color-secondary);
}


.page_content h3 {
    position: relative;
    text-align: center;
    font-size: 1.6rem;
    margin: 24px 0 16px;
    padding-bottom: 12px;
}
.page_content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 20px;
    height: 1px;
    background: var(--color-secondary);
}

.page_content h4 {
    font-size: 1.5rem;
    margin: 16px 0 8px;
}
.page_content ul {
    list-style: disc;
    padding-left: 16px;
    margin: 16px 0;
}
.page_content ul li+ li {
    margin-top: 4px;
}
.page_content ol {
    padding-left: 24px;
    margin: 16px 0;
}
.page_content ol li+ li {
    margin-top: 4px;
}
.page_content  p {
    margin: 16px 0;
}
.page_content .container > *:first-child {
    margin-top: 0;
}

figure.wp-block-table.event-table table{    
	border: hidden;
	    max-width: 720px;
	margin:0 auto;
}


figure.wp-block-table.event-table table tr{}
figure.wp-block-table.event-table table th{ 
    border: none;
    display: block;
    padding: 20px 0 0 0;
    text-align: inherit;
}
figure.wp-block-table.event-table table td{
    font-size: 1.8rem;
    display: block;
    border-left: none;
    border-top: none;
    border-right: none;
    padding: 0px 0 20px 0;
    text-align: inherit;
}


@media (min-width: 768px) {
    .page_title_wrapper {
        margin: 0 auto;
        padding: 80px 40px 0;
        max-width: 1080px;
    }
    .page_title {
        padding: 48px 32px;
        font-size: 2.8rem;
    }
    .page_thumb {
        margin: 80px auto 0;
        /*max-width: 1280px;
        padding: 0 40px;*/
		padding:0 0;
		width:100%;
    }
    .page_content h2 {
        font-size: 2.4rem;
        margin: 64px auto 48px;
        padding: 16px 32px;
    }
	.page_content h2 span{
		
	}	
    .page_content h3 {
        font-size: 2rem;
        margin: 48px 0 32px;
        padding-bottom: 24px;
    }
    .page_content h3::after {
        width: 40px;
    }
    .page_content h4 {
        font-size: 1.7rem;
        margin: 32px 0 16px;
    }
    .page_content ul {
        padding-left: 16px;
        margin: 32px 0;
    }
    .page_content ul li+ li {
        margin-top: 8px;
    }
    .page_content ol {
        padding-left: 24px;
        margin: 32px 0;
    }
    .page_content ol li+ li {
        margin-top: 8px;
    }
    .page_content  p {
        margin: 24px 0;
		height: auto;
    }

figure.wp-block-table.event-table table{}
figure.wp-block-table.event-table table tr{}
figure.wp-block-table.event-table table th{
	text-align: left;
    width: 30%;
    padding: 20px 20px 20px 5px;
    border-right: hidden;
    border-bottom: 1px solid rgba( var(--color-tertiary-rgb),.3);
    display: table-cell;

	}
figure.wp-block-table.event-table table td{
	padding: 20px 20px 20px 5px;
	display: table-cell;
	}	
	
}


/*
Page news
---------------------------------*/
.news_list {
}
.news_list li {
    padding: 16px 0;
}
.news_list li + li {
    border-top: solid 1px rgba(var(--color-tertiary-rgb) , .3);
}
.news_list li a {
    text-decoration: none;
    transition: opacity .3s;
}
.news_list li h3 {
    font-size: 1.3rem;
    margin: 4px 0 0
}
.news_list li time {
    font-size: 1.2rem;
}
@media (min-width: 768px) {
    .news_list li {
		padding: 32px 100px;
    }
    .news_list li a {
        display: flex;
        align-items: center;
    }
    .news_list li h3 {
        font-size: 1.6rem;
        margin: 0 0 0 56px;
    }
    .news_list li time {
        font-size: 1.4rem;
    }
    .news_list li a:hover {
        opacity: .7;
    }
}

/*
Google Clendar
---------------------------------*/

.googleCalendar iframe {
  width: 100%;
  height: 400px;
}
@media all and (min-width: 768px) {
  .googleCalendar iframe {
	height: 600px;
  }
}


/*
Pager
---------------------------------*/
.nav-links {
    margin-top: 40px;
}
.page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.page-numbers li {
    margin: 8px;
}
.page-numbers li span {
    padding: 2px 4px;
}
.page-numbers li a {
    padding: 2px 4px;
    text-decoration: none;
    border-bottom: solid 1px var(--color-secondary);
    transition: color .3s;
}
@media (min-width: 768px) {
    .nav-links {
        margin-top: 80px;
    }
    .page-numbers li {
        margin: 12px;
        font-size: 1.6rem;
    }
    .page-numbers li a:hover {
        color: var(--color-secondary);
    }
}


/*
Contact form 7
---------------------------------*/
.wpcf7-form dl {
    margin: 0;
}
.wpcf7-form dl dd {
    margin: 0;
}
.wpcf7-form dl dd + dt {
    margin: 24px 0 0;
}
.wpcf7-form .required {
    display: inline-block;
    border: solid 1px var(--color-secondary);
    color: var(--color-secondary);
    font-size: 1.2rem;
    padding: 0 4px;
    border-radius: 2px;
    margin: 0 0 0 16px;
}

.wpcf7-form .wpcf7-form-control {
    font-size: 1.6rem;
    padding: 12px 16px;
    max-width: 100%;
    width: 100%;
    border: solid 1px var(--color-medium);
    border-radius: 2px;
}
.wpcf7-form .wpcf7-form-control:focus {
    outline: var(--color-secondary) solid 1px;
}

.wpcf7-form .wpcf7-select,
.wpcf7-form .wpcf7-date,
.wpcf7-form .wpcf7-checkbox,
.wpcf7-form .wpcf7-radio {
    width: auto;
}
.wpcf7-form-control-wrap {
    margin: 8px 0 0;
}
.wpcf7-form-control-wrap[data-name="file"] {
    width: 100%;
}
.wpcf7-form dl dd .wpcf7-file {
    padding: 0;
    background: var(--color-wh);
}
.wpcf7-form ::file-selector-button,
.wpcf7-form ::-webkit-file-upload-button {
    background-color: var(--color-medium);
    border: none;
    cursor: pointer;
    border-right: 1px solid var(--color-medium);
    padding: 8px;
    margin-right: 8px;
}

.wpcf7-form dl dd .wpcf7-checkbox,
.wpcf7-form dl dd .wpcf7-radio {
    padding: 0;
    border: 0;
}
.wpcf7-form .wpcf7-checkbox input[type="checkbox"] {
    display: none;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item-label {
    position: relative;
    padding: 0 0 0 32px;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item-label::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 22px;
    width: 22px;
    background: var(--color-wh);
    border: solid 1px var(--color-medium);
    border-radius: 2px;
    transition: border-color .3s;
}
.wpcf7-form .wpcf7-checkbox .wpcf7-list-item-label::after {
    position: absolute;
    left: 10px;
    top: 7px;
    height: 8px;
    width: 12px;
    border-left: solid 1px var(--color-secondary);
    border-bottom: solid 1px var(--color-secondary);
    transform: scale(0) rotate(-45deg);
    transform-origin: bottom left;
    opacity: 0;
    transition: transform .6s, opacity .6s;
}
.wpcf7-form .wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    border: solid 1px var(--color-secondary);
}
.wpcf7-form .wpcf7-checkbox input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    opacity: 1;
    transform: scale(1) rotate(-45deg);
}

.wpcf7-form .wpcf7-radio input[type="radio"] {
    display: none;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item-label {
    position: relative;
    padding: 0 0 0 32px;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item-label::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 22px;
    width: 22px;
    background: var(--color-wh);
    border: solid 1px var(--color-medium);
    border-radius: 50%;
    transition: border-color .3s;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item-label::after {
    position: absolute;
    left: 4px;
    top: 4px;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    border: solid 1px var(--color-secondary);
    opacity: 0;
    transform: scale(0);
    transition: transform .6s, opacity .6s;
}
.wpcf7-form .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label::before {
    border: solid 1px var(--color-secondary);
}
.wpcf7-form .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label::after {
    opacity: 1;
    transform: scale(1);
}

@media (min-width: 768px) {
    .wpcf7-form dl {
        display: flex;
        flex-wrap: wrap;
    }
    .wpcf7-form dt {
        width: 40%;
        padding: 17px 0 0;
    }
    .wpcf7-form dl dd + dt {
        margin: 40px 0 0;
    }
    .wpcf7-form dd {
        width: 60%;
    }
    .wpcf7-form dl dd:nth-of-type(n+2) {
        margin: 40px 0 0;
    }
    .wpcf7-form .wpcf7-form-control {
        padding: 20px 24px;
    }
    
}




.wpcf7-form .wpcf7-list-item {
    margin: 8px 16px 8px 0;
}
.wpcf7-form .wpcf7-list-item label {
    cursor: pointer;
}
.wpcf7-form .wpcf7-form-control-wrap {
    display: block;
}
.wpcf7-form .form_select_flex .wpcf7-form-control-wrap {
    display: inline-block;
}
.wpcf7-form .from_send_btn {
    position: relative;
    border-left: var(--color-secondary) solid 1px;
    border-right: var(--color-secondary) solid 1px;
    margin: 40px auto 0;
    max-width: 240px;
}
.wpcf7-form .from_send_btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 8px);
    height: 1px;
    background: var(--color-secondary);
    transition: .3s;
}
.wpcf7-form .from_send_btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 8px);
    height: 1px;
    background: var(--color-secondary);
    transition: .3s;
}
.wpcf7-form .wpcf7-spinner {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    background: none;
    border: solid 1px var(--color-secondary);
}
.wpcf7-form .wpcf7-spinner::before {
    background: none;
    border: solid 1px var(--color-secondary);
    top: 3px;
    left: 3px;
}
.wpcf7-form .wpcf7-submit:focus {
    outline: none;
}
.wpcf7-form .wpcf7-submit {
    background: none;
    border: none;
    color: var(--color-secondary);
    cursor: pointer;
}

.wpcf7-form .wpcf7-not-valid-tip {
    color: var(--color-secondary);
    margin: 8px 0 0;
    font-size: 1.2rem;
}

.wpcf7 .wpcf7-form .wpcf7-response-output {
    margin: 32px 0 0;
    border: none;
    padding: 12px;
    border-radius: 2px;
    background-color: rgba( var(--color-bk-rgb) ,.03);
    font-size: 1.4rem;
    color: var(--color-secondary);
}


@media (min-width: 768px) {
    .wpcf7-form .wpcf7-submit {
        transition: background-color .3s;
    }
    .wpcf7-form .wpcf7-submit:hover {
        background-color: rgba(var(--color-secondary-rgb), .05);
    }
    .wpcf7-form .from_send_btn:hover::before {
        width: 100%;
    }
    .wpcf7-form .from_send_btn:hover::after {
        width: 100%;
    }
    .wpcf7-form .from_send_btn {
        margin: 80px auto 0;
        max-width: 320px;
    }
}





/*
Single
---------------------------------*/
.single_title_wrapper {
    margin: 40px 25px 24px;
}
.single_title_wrapper time {
    font-size: 1.3rem;
}
.single_title_wrapper .single_title {
    margin: 0;
    font-size:2rem;
    padding-bottom: 16px;
    border-bottom: solid 1px var(--color-secondary);
}
.single_thumb {
    margin: 0 25px;
}
.single_thumb img {
    object-fit: cover;
    aspect-ratio: 16/9;
    height: auto;
    width: 100%;
    border-radius: 2px;
}
.single_content h2 {
    font-size: 1.8rem;
    margin: 32px 0 24px;
    border-bottom: solid 1px var(--color-secondary);
    width:fit-content;
    padding-bottom: 8px;
}
.single_content h3 {
    font-size: 1.6rem;
    margin: 24px 0 16px;
    border-left: solid 1px var(--color-secondary);
    padding-left: 12px;
}
.single_content h4 {
    font-size: 1.5rem;
    margin: 16px 0 8px;
}
.single_content ul {
    list-style: disc;
    padding-left: 16px;
    margin: 16px 0;
}
.single_content ul li+ li {
    margin-top: 4px;
}
.single_content ol {
    padding-left: 24px;
    margin: 16px 0;
}
.single_content ol li+ li {
    margin-top: 4px;
}
.single_content  p {
    margin: 16px 0;
	font-size: 2rem;
}
.single_content .container > *:first-child {
    margin-top: 0;
}
.single_pagenation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: solid 1px rgba( var( --color-tertiary-rgb),.3 );
    padding-top: 24px;
}
.single_pagenation a {
    text-decoration: none;
}
.single_pagenation_back,
.single_pagenation_prev,
.single_pagenation_next {
    width: 30%;
	text-align: center;
}
.single_pagenation_back a,
.single_pagenation_prev a,
.single_pagenation_next a {
    border-bottom: solid 1px var(--color-secondary);
    padding: 8px;
}

@media (min-width: 768px) {
    .single_title_wrapper {
        margin: 112px auto 48px;
        padding: 0 40px;
        max-width: 1080px;
    }
    .single_title_wrapper time {
        font-size: 1.5rem;
    }
    .single_title_wrapper .single_title {
        font-size:2.8rem;
        padding-bottom: 32px;
    }
    .single_thumb {
        max-width: 1080px;
        padding: 0 40px;
        margin: 0 auto;
    }
    .single_content h2 {
        font-size: 2.4rem;
        margin: 64px 0 48px;
        padding-bottom: 16px;
    }
    .single_content h3 {
        font-size: 2rem;
        margin: 48px 0 32px;
        padding-left: 24px;
    }
    .single_content h4 {
        font-size: 1.7rem;
        margin: 32px 0 16px;
    }
    .single_content ul {
        padding-left: 16px;
        margin: 32px 0;
    }
    .single_content ul li+ li {
        margin-top: 8px;
    }
    .single_content ol {
        padding-left: 24px;
        margin: 32px 0;
    }
    .single_content ol li+ li {
        margin-top: 8px;
    }
    .single_content  p {
        margin: 24px 0;
    }
    .single_pagenation {
        margin-top: 80px;
        padding-top: 48px;
    }

}


/*
Wp block
---------------------------------*/
/* Wp image */
.wp-block-image {
    margin: 16px 0;
}
.wp-block-image img {
    border-radius: 2px;
}
/* Wp quote */
.wp-block-quote {
    position:relative;
    margin: 24px 0;
    padding: 16px;
    background-color: rgba( var(--color-bk-rgb) ,.03);
    border-radius: 2px;
}
.wp-block-quote::before{
    position: absolute;
    left: 16px;
    top: 8px;
    color: rgba( var(--color-primary-rgb) ,.3);
    box-sizing: border-box;
    font: var(--fa-font-solid);
    content: '\f10d';
    line-height: 1;
    font-size: 2rem;
}
.wp-block-quote::after{
    position: absolute;
    right: 16px;
    bottom: 8px;
    color: rgba( var(--color-primary-rgb) ,.3);
    box-sizing: border-box;
    font: var(--fa-font-solid);
    content: '\f10d';
    line-height: 1;
    font-size: 2rem;
}
.wp-block-quote cite {
    text-align: right;
    margin: 0 0 16px;
    display: block;
    color: var(--color-tertiary);
}
/* Wp btn */
.wp-block-buttons {
    margin: 24px 0;
}
.wp-block-buttons .wp-block-button__link {
    position: relative;
    color: var(--color-secondary);
    border-left: var(--color-secondary) solid 1px;
    border-right: var(--color-secondary) solid 1px;
    display: inline-block;
    text-align: center;
    padding: 8px 24px;
    text-decoration: none;
    font-size: 1.5rem;
    background: none;
    border-radius: 0;
}
.wp-block-buttons .wp-block-button__link::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 8px);
    height: 1px;
    background: var(--color-secondary);
    transition: .3s;
}
.wp-block-buttons .wp-block-button__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 8px);
    height: 1px;
    background: var(--color-secondary);
    transition: .3s;
}
/* Wp table */
.wp-block-table {
    margin: 32px 0;
}
.wp-block-table table td,
.wp-block-table table th {
    border: 1px solid rgba( var(--color-tertiary-rgb),.3);
}
.wp-block-table table thead {
    border-bottom: 3px solid rgba( var(--color-tertiary-rgb),.3);
}
.wp-block-table table tfoot {
    border-top: 3px solid rgba( var(--color-tertiary-rgb),.3);
}
.wp-element-caption {
    margin-top: 8px;
    color: rgba( var(--color-tertiary-rgb),.7);
}

figure.wp-block-table.table-type01{
    text-align: center;
    margin: 40px auto 80px;
}
figure.wp-block-table.table-type01 td{
	width: 45%;
	    padding: 10px;
}
figure.wp-block-table.table-type01 td + td {
        width: 55%;
}
@media (min-width: 768px) {
	
figure.wp-block-table.table-type01 {
    text-align: center;
    background-color: #f9f1f1;
    width: 100%;
    margin: 0 auto 100px;
}
figure.wp-block-table.table-type01 td {
width: 40%;
}
figure.wp-block-table.table-type01 td + td {
width: 60%;
}
}
/* Wp media text */
.wp-block-media-text {
    margin: 32px 0;
    background-color: rgba( var(--color-bk-rgb) ,.03);
    border-radius: 2px;
    overflow: hidden;
}
.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
    padding: 16px;
}
.wp-block-gallery {
    margin: 32px 0;
}
@media (min-width: 768px) {
    .wp-block-image {
        margin: 32px 0;
    }
    .wp-block-quote {
        margin: 48px 0;
        padding: 32px;
    }
    .wp-block-quote::before{
        left: 32px;
        top: 16px;
        font-size: 3rem;
    }
    .wp-block-quote::after{
        position: absolute;
        right: 32px;
        bottom: 16px;
        font-size: 3rem;
    }
    .wp-block-buttons {
        margin: 48px 0;
    }
    .wp-block-buttons .wp-block-button__link {
        min-width: 240px;
        padding: 12px 24px;
        font-size: 1.6rem;
        transition: background-color .3s;
    }
    .wp-block-buttons .wp-block-button__link:hover {
        background-color: rgba(var(--color-secondary-rgb), .05);
    }
    .wp-block-buttons .wp-block-button__link:hover::before {
        width: 100%;
    }
    .wp-block-buttons .wp-block-button__link:hover::after {
        width: 100%;
    }
    .wp-block-table {
        margin: 56px 0;
    }
    .wp-block-media-text {
        margin: 56px 0;
    }
    .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
        padding: 32px;
    }
    .wp-block-gallery {
        margin: 56px 0;
    }
}







/*
Wp Color pallet
---------------------------------*/
.has-black-background-color {
  background-color: var(--color-tertiary);
}
.has-black-color {
  color: var(--color-tertiary);
}
.has-yellow-background-color {
  background-color: var(--color-primary);
}
.has-yellow-color {
  color: var(--color-primary);
}
.has-red-background-color {
  background-color: var(--color-secondary);
}
.has-red-color {
  color: var(--color-secondary);
}
@media (min-width: 768px) {

}


/* --------------------------------
Add Class
-------------------------------- */
/*
Min width
---------------------------------*/
.-min40 {
    min-width: 40px;
}
.-min80 {
    min-width: 80px;
}
.-min120 {
    min-width: 120px;
}
.-min160 {
    min-width: 160px;
}
.-min200 {
    min-width: 200px;
}
.-min240 {
    min-width: 240px;
}
.-min320 {
    min-width: 320px;
}
.-min400 {
    min-width: 400px;
}
.-min480 {
    min-width: 480px;
}
.-min560 {
    min-width: 560px;
}
.-min640 {
    min-width: 640px;
}
.-min720 {
    min-width: 720px;
}
.-min800 {
    min-width: 800px;
}

/*
Max width
---------------------------------*/
.-max40 {
    max-width: 40px;
}
.-max80 {
    max-width: 80px;
}
.-max120 {
    max-width: 120px;
}
.-max160 {
    max-width: 160px;
}
.-max200 {
    max-width: 200px;
}
.-max240 {
    max-width: 240px;
}
.-max320 {
    max-width: 320px;
}
.-max400 {
    max-width: 400px;
}
.-max480 {
    max-width: 480px;
}
.-max560 {
    max-width: 560px;
}
.-max640 {
    max-width: 640px;
}
.-max720 {
    max-width: 720px;
}
.-max800 {
    max-width: 800px;
}

/*
Margin
---------------------------------*/
.-m_auto {
    margin-left: auto;
    margin-right: auto;  
}

.-mt_auto {
    margin-top: auto;
}
.-mt0 {
    margin-top: 0!important;
}
.-mt_xs {
    margin-top: var(--size-xs);
}
.-mt_s {
    margin-top: var(--size-s);
}
.-mt_m {
    margin-top: var(--size-m);
}
.-mt_l {
    margin-top: var(--size-l);
}
.-mt_xl {
    margin-top: var(--size-xl);
}

.-mb_auto {
    margin-bottom: auto;
}
.-mb0 {
    margin-bottom: 0!important;
}
.-mb_xs {
    margin-bottom: var(--size-xs);
}
.-mb_s {
    margin-bottom: var(--size-s);
}
.-mb_m {
    margin-bottom: var(--size-m);
}
.-mb_l {
    margin-bottom: var(--size-l);
}
.-mb_xl {
    margin-bottom: var(--size-xl);
}


.-mr_auto {
    margin-right: auto;
}
.-mr0 {
    margin-right: 0!important;
}
.-mr_xs {
    margin-right: var(--size-xs);
}
.-mr_s {
    margin-right: var(--size-s);
}
.-mr_m {
    margin-right: var(--size-m);
}
.-mr_l {
    margin-right: var(--size-l);
}
.-mr_xl {
    margin-right: var(--size-xl);
}

.-ml_auto {
    margin-left: auto;
}
.-ml0 {
    margin-left: 0!important;
}
.-ml_xs {
    margin-left: var(--size-xs);
}
.-ml_s {
    margin-left: var(--size-s);
}
.-ml_m {
    margin-left: var(--size-m);
}
.-ml_l {
    margin-left: var(--size-l);
}
.-ml_xl {
    margin-left: var(--size-xl);
}

/*
Padding
---------------------------------*/
.-pt0 {
    padding-top: 0!important;
}
.-pt_xs {
    padding-top: var(--size-xs);
}
.-pt_s {
    padding-top: var(--size-s);
}
.-pt_m {
    padding-top: var(--size-m);
}
.-pt_l {
    padding-top: var(--size-l);
}
.-pt_xl {
    padding-top: var(--size-xl);
}

.-pb0 {
    padding-bottom: 0!important;
}
.-pb_xs {
    padding-bottom: var(--size-xs);
}
.-pb_s {
    padding-bottom: var(--size-s);
}
.-pb_m {
    padding-bottom: var(--size-m);
}
.-pb_l {
    padding-bottom: var(--size-l);
}
.-pb_xl {
    padding-bottom: var(--size-xl);
}

.-pr0 {
    padding-right: 0!important;
}
.-pr_xs {
    padding-right: var(--size-xs);
}
.-pr_s {
    padding-right: var(--size-s);
}
.-pr_m {
    padding-right: var(--size-m);
}
.-pr_l {
    padding-right: var(--size-l);
}
.-pr_xl {
    padding-right: var(--size-xl);
}

.-pl0 {
    padding-left: 0!important;
}
.-pl_xs {
    padding-left: var(--size-xs);
}
.-pl_s {
    padding-left: var(--size-s);
}
.-pl_m {
    padding-left: var(--size-m);
}
.-pl_l {
    padding-left: var(--size-l);
}
.-pl_xl {
    padding-left: var(--size-xl);
}

/*
Width
---------------------------------*/
.-w8 {
    width: 8%;
}
.-w16 {
    width: 16%;
}
.-w24 {
    width: 24%;
}
.-w32 {
    width: 32%;
}
.-w40 {
    width: 40%;
}
.-w48 {
    width: 48%;
}
.-w56 {
    width: 56%;
}
.-w64 {
    width: 64%;
}
.-w72 {
    width: 72%;
}
.-w80 {
    width: 80%;
}
.-w88 {
    width: 88%;
}
.-w96 {
    width: 96%;
}
.-w100 {
    width: 100%;
}

/*
Text align
---------------------------------*/
.-ta_left {
    text-align: left;
}
.-ta_center {
    text-align: center;
}
.-ta_right {
    text-align: right;
}
.-ta_initial {
    text-align: initial;
}

@media (min-width: 768px) {
	.-ta_pc_left {
    text-align: left;
}
	.-ta_pc_center {
    text-align: center;
}
	.-ta_pc_right {
    text-align: right;
}	
.-ta_pc_initial {
    text-align: initial;
}	
	
}

/*
Font size
---------------------------------*/
.-fs_small {
    font-size: 70%;
}
.-fs_large {
    font-size: 150%;
}

/*
Font color
---------------------------------*/
.-fc_red {
    color: var(--color-tertiary);
}

/*
BG color
---------------------------------*/
.-bg_gray {
    background-color: rgba( var(--color-bk-rgb) ,.03);
}
.-bg_beige {
    background-color: rgba( var(--color-primary-rgb) ,.3);
}

/*
Display flex
---------------------------------*/
.-inline {
    display: inline-block;
}
.-d_flex {
    display: flex;
}
.-ai_center {
    align-items: center;
}
.-jc_center {
    justify-content: center;
}
.-jc_sb {
    justify-content: space-between;
}



/*
Google map
---------------------------------*/
.gmap {
    margin: 0 auto 100px;
}
@media (min-width: 768px) {}


/*
駐車場予約カレンダー
---------------------------------*/
@media (min-width: 768px) {}


/*
駐車場目次
---------------------------------*/
.mokuji-area{}
.mokuji{}
ol.single_table_of_contents {
    width: 100%;
    margin: 0 auto 80px;
    padding: 25px 50px;
    border: 1px solid var(--color-secondary);
    line-height: 25px;
}
@media (min-width: 768px) {
	.mokuji-area{}
.mokuji {
    font-size: 18px;
    margin: 0 0 10px !important;
}
ol.single_table_of_contents {
    width: 45%;
    margin: 0 auto;
    padding: 40px 100px;
    border: 1px solid var(--color-secondary);
    line-height: 40px;
    color: #444;
}
	
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
}

/*reCAPTCHA v3 バッジを左下に移動*/
.grecaptcha-badge {
width: 70px !important;
overflow: hidden !important;
transition: all 0.3s ease !important;
left: 4px !important;
}
.grecaptcha-badge:hover {
width: 256px !important;
}