@charset "UTF-8";

:root {
    --base_grad: linear-gradient(45deg, #8EC21F, #FFE200);
    --gray_color: #707070;
    --bg_color: #FAF7E7;
    --pink_color: #DF9A9A;
    --yellow_color: #E3D000;
    --yellow_green_color: #8EC21F;
    --orange_color: #FFA700;

    --tamado_blue: #0E7FC4;
}


/*--------------------------------

>>> Base Style

---------------------------------*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}
*:active,
*:focus,
*:hover {
    outline: none;
}
html {
    height: 100%;
    font-size: 10px !important;
    font-weight: 500;
}
body {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    font-family: "Zen Kaku Gothic New", serif;
    transition:ALL .8s ease .3s;
    opacity: 0;
    font-feature-settings: "palt";
}
body.show {
    opacity: 1;
}
body.active {
    overflow: hidden;
}
@media (max-width: 520px) {
    html {
        font-size: 2.4vw !important;
    }
}

/* font-size */
p,li,a,span,div,th,td {
    font-size: 1.5rem;
}


a {
    color: #555;
    text-decoration: none;
    transition:ALL .5s ease;
    -webkit-transition:ALL .5s ease;
    -moz-transition:ALL .5s ease;
    -o-transition:ALL .5s ease;
}
p {
    line-height: 2;
    word-break: break-all;
    line-break: normal;
    letter-spacing: .05em;
    
}
img {
    display: block;
    width: 100%;
    height: auto;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}

.clear {
    clear: both;
}
.clear hr {
    display: none;
}
.wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.wrap800 {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.sp_hide {
    display: block;
}
.pc_hide {
    display: none;
}
br.sp {
    display: none;
}
br.pc {
    display: inline;
}

@media (max-width: 520px) {
    .sp_hide {
        display: none;
    }
    .pc_hide {
        display: block;
    }
    br.sp {
        display: inline;
    }
    br.pc {
        display: none;
    }
}
/*------------------------------
>>> Breadcrumb
-------------------------------*/
#breadcrumb{
	color:#000;
	clear:both;
	font-size:1rem;
	padding:20px 0 20px 5%;
	margin:auto;
}
@media screen and (max-width:520px) {
	#breadcrumb{
		padding:10px 0;
	}
}
#breadcrumb a{
	color:#000;
	text-decoration:none;
}

/*--------------------------------

>>> Share Style

---------------------------------*/
.base_hl {
    font-size: 3rem;
    font-weight: 700;
}
.base_hl span {
    display: block;
    font-size: .65em;
    font-weight: 500;
    margin-bottom: 7.5px;
}
.base_hl span::before {
    content: "";
    display: inline-block;
    width: 1em;
    aspect-ratio: 1/1;
    background: url(../img/common/kinari_obj--org.png) center center/contain no-repeat;
    margin-right: 5px;
    position: relative;
    top: 2px;
}
@media screen and (max-width:520px) {
    .base_hl {
        font-size: 3rem;
        font-weight: 600;
    }
    .base_hl span {
        display: block;
        font-size: .65em;
        font-weight: 600;
        margin-bottom: 7.5px;
    }
    .base_hl span::before {
        content: "";
        display: inline-block;
        width: 1em;
        aspect-ratio: 1/1;
        background: url(../img/common/kinari_obj--org.png) center center/contain no-repeat;
        margin-right: 5px;
        position: relative;
        top: 2px;
    }
    
}


.base_hl.tamado_base_hl span {
    color: var(--tamado_blue);
    font-weight: 700;
    margin-bottom: 7.5px;
}
.base_hl.tamado_base_hl span::before {
    display: none;
}


/*Link*/
.overlink {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/*btn*/
.arrow_btn {
    display: block;
}
.arrow_btn span {
    position: relative;
}
.arrow_btn span::after {
    content: "";
    display: inline-block;
    width: 55px;
    height: 1px;
    background-color: #000;
    margin-left: 5px;
    position: relative;
    transition: all .3s ease;
}
.arrow_btn:hover span::after {
    width: 100px;
}
.arrow_btn span::before {
    content: "";
    width: 10px;
    height: 1px;
    background-color: #000;
    position: absolute;
    right: 0;
    bottom: 4.5px;
    transform-origin: right bottom;
    transform: rotate(30deg);
}

.btn_cal {
    display: block;
    width: 345px;
    border: 6px solid var(--pink_color);
    border-radius: 100vh;
    padding: 15px 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-inline: auto;
    background-color: #fff;
}
.btn_cal:hover {
    opacity: 0.5;
}
.btn_cal::before {
    content: "";
    display: inline-block;
    width: 1em;
    aspect-ratio: 1/1;
    background: url(../img/common/icon_cal.png) center center/contain no-repeat;
    margin-right: 5px;
    position: relative;
    top: 3px;
}
@media screen and (max-width:920px) {
    .btn_cal {
        width: 80%;
        border: 3px solid var(--pink_color);
        font-size: 2rem;
    }
    .btn_cal::before {
        top: 2px;
    }
}


.btn_use_kinari {
    display: block;
    width: 400px;
    border: 6px solid var(--pink_color);
    border-radius: 100vh;
    padding: 15px 0;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-inline: auto;
    position: relative;
    background-color: #fff;
}
.btn_use_kinari:hover {
    opacity: 0.5;
}
.btn_use_kinari::before {
    content: "";
    display: inline-block;
    width: 2.5em;
    aspect-ratio: 1/1;
    background: url(../img/common/icon_fluit.png) center center/contain no-repeat;
    margin-right: 5px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
@media screen and (max-width:920px) {
    .btn_use_kinari {
        width: 80%;
        border: 3px solid var(--pink_color);
        font-size: 2rem;
    }
    .btn_use_kinari::before {
        width: 2em;
    }
}


.bg {
    width: 100vw;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -100;
}
.bg img {
    width: 100%;
	height: 100%;
 	object-fit: cover;
 	object-position: center;
}

.spacer {
    width: 100%;
    height: 100px;
}
/*navigation*/
.navigation {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.navigation .navigation_btn {
    width: 200px;
}
.navigation .navigation_btn a {
    display: block;
    width: 100%;
    color: var(--orange_color);
    border: 1px solid var(--orange_color);
    padding: 15px 0;
    text-decoration: none;
    text-align: center;
    border-radius: 100vh;
}
.navigation .navigation_btn a:hover {
    background-color: var(--orange_color);
    color: #fff;
}
.navigation .navigation_btn.navigation_btn_back a {
    border: 0;
    background-color: transparent;
    color: #808080;
}
.navigation .navigation_btn.navigation_btn_back a:hover {
    opacity: 0.5;
}

@media (max-width: 520px) {
    .navigation .navigation_btn {
        width: 30%;
    }
    .navigation .navigation_btn.navigation_btn_back {
        width: 40%;
    }
}

.lr_bg::before {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% + 150px);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
    background-color: var(--bg_color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    z-index: -1;
    mix-blend-mode: multiply;
}
.rl_bg::before {
    content: "";
    display: block;
    width: 100%;
    height: calc(100% + 150px);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
    background-color: var(--bg_color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: -1;
    mix-blend-mode: multiply;
}

.grecaptcha-badge {
    display: none;
}
/*--------------------------------

>>>Header Style

---------------------------------*/
header {
    width: 100%;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #fff;
}
header .logo {
    width: 170px;
    margin: 0 auto 0 2.5%;
    text-align: center;
    letter-spacing: .1em;
}
header .logo a {
    color: #555;

}
.g_nav {
    position: absolute;
    top: 50%;
    right: 2.5em;
    transform: translateY(-50%);
}
.g_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
.g_nav ul li {
    position: relative;
}
.g_nav ul li + li {
    margin-left: 20px;
}
.g_nav ul li a {
    color: #000;
    position: relative;
}
.g_nav ul li a:not(.h_contact):hover {
    color: var(--orange_color);
}
.g_nav ul li a.current:not(.h_contact)::before {
    content: "";
    display: block;
    width: 100%;
    height: 8px;
    background: url(../img/common/icon_current.png) center center/contain no-repeat;
    position: absolute;
    bottom: calc(100% + 3px);
    left: 50%;
    transform: translateX(-50%);
}
.g_nav ul li a.h_contact {
    display: inline-block;
    width: 150px;
    text-align: center;
    padding: 10px 0;
    background: var(--base_grad);
    color: #fff;
    border-radius: 5px;
}
.g_nav ul .child {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 20px 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.g_nav ul li:hover > .child {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.g_nav ul .child li {
    width: 100%;
    display: block;
    padding: 0;
}
.g_nav ul .child li + li {
    margin-left: 0;
}
.g_nav ul .child li a {
    display: block;
    padding: 10px 0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}
.g_nav ul .child li a.current::before {
    display: none;
}

@media (max-width: 520px) {
    header .logo {
        width: 40%;
        position: relative;
        z-index: 10000;
    }
    .g_nav {
        position: fixed;
        width: 100%;
        height: 100dvh;
        background-color: var(--bg_color);
        top: 0;
        right: -100vw;
        transform: translateY(0%);
        padding-top: 85px;
        transition: all .5s ease;
    }
    .g_nav ul {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        padding: 0 10%;
        margin-top: 25px;
    }
    .g_nav ul li {
        width: 100%;
        border-bottom: 2px dashed var(--pink_color);
        padding: 10px 0;
    }
    .g_nav ul li:last-child {
        border-bottom: 0;

    }
    .g_nav ul li.parent {
        padding-bottom: 10px;
    }
    .g_nav ul li.parent a {
    }
    .g_nav ul li + li {
        margin-left: 0;
    }
    .g_nav ul li a {
        display: block;
        color: #000;
    }
    .g_nav ul li a.current:not(.h_contact)::before {
        display: none;

    }

    .g_nav ul li a.h_contact {
        display: block;
        width: 100%;
        padding: 15px 0;
        margin-top: 20px;
    }

    .g_nav ul .child {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        background: transparent;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0);
        border-radius: 0px;
        padding: 0 0 0 20px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        margin-top: 10px;

    }
    .g_nav ul li:hover > .child {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .g_nav ul .child li {
        width: 100%;
        display: block;
        padding: 0;
        border-bottom: 0px solid gray;
    }
    .g_nav ul .child li + li {
        margin-left: 0;
        border-top: 1px solid gray;
    }
    .g_nav ul .child li a {
        display: block;
        padding: 10px 0;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .g_nav.active {
        right: 0;
    }
}

.header_overray {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 999;
    display: none;
}
.header_overray.active {
    display: block;
}

/*バーガーメニュー PC非表示*/
.menu_trigger {
    display: none;
    z-index: 1000;
}

@media (max-width: 520px) {
    .menu_trigger,
    .menu_trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }
    .menu_trigger {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 10px;
        width: 30px;
        height: 20px;
    }
    .menu_trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #000;
        border-radius: 4px;
    }
    .menu_trigger span:nth-of-type(1) {
        top: 0;
        background-color: var(--orange_color);
    }
    .menu_trigger span:nth-of-type(2) {
        top: 9px;
        background-color: var(--yellow_color);
    }
    .menu_trigger span:nth-of-type(3) {
        bottom: 0;
        background-color: var(--yellow_green_color);
    }
    .menu_trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        transform: translateY(10px) rotate(-45deg);
    }
    .menu_trigger.active span:nth-of-type(2) {
        left: -20px;
        opacity: 0;
    }
    .menu_trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-8px) rotate(45deg);
        transform: translateY(-8px) rotate(45deg);
    }
}

/*--------------------------------

>>>Footer Style

---------------------------------*/
footer {
    /* background-color: var(--bg_color); */
    padding: 210px 0 25px;
    position: relative;
}
footer img.f_bg {
    width: 100%;
	height: 100%;
 	object-fit: cover;
 	object-position: top center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
footer img.children {
    width: 490px;
    position: absolute;
    top: 0;
    left: 5%;
    z-index: 3;
}
footer img.tree {
    width: 300px;
    position: absolute;
    bottom: 20px;
    right: 5%;
    z-index: 3;
}
footer .container {
    position: relative;
    z-index: 10;
}
footer .container h2 {
    font-size: 2.5rem;
}
footer .container h2 span {
    display: block;
    font-size: .6em;
    margin-bottom: 10px;
}
footer .container span.line {
    display: block;
    width: 100px;
    height: 3px;
    background-color: var(--pink_color);
    margin: 20px 0;
}
footer .container .f_nav ul {
    display: flex;
    flex-wrap: wrap;
}
footer .container .f_nav li a {
    font-weight: 600;
}
footer .container .f_nav li a:hover {
    opacity: 0.5;
}

footer .container .f_nav li + li {
    margin-left: 40px;
}
footer .container .f_nav_sub ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
footer .container .f_nav_sub li a {
    font-size: 1.2rem;
    font-weight: 600;
}
footer .container .f_nav_sub li a:hover {
    opacity: 0.5;
}
footer .container .f_nav_sub li + li {
    margin-left: 40px;
}
footer .copyright {
    width: 100%;
    margin-top: 30px;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 10;
}
footer .container img.f_obj {
    display: block;
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

@media (max-width: 520px) {
    footer {
        padding: 0 5% 25px;
    }
    footer img.f_bg {
        width: 100%;
        height: 100%;
         object-fit: contain;
         object-position: bottom center;
        position: absolute;
        top: 0;
        left: 0;
       }   
    footer img.children {
        width: 100%;
        position: relative;
        top: auto;
        left: auto;
        z-index: 3;
        margin-bottom: 30px;
    }
    footer img.tree {
        width: 40%;
        position: relative;
        bottom: auto;
        right: auto;
        margin-inline: auto;
        margin-top: 20px;
    }
    
    footer .container {
        position: relative;
    }
    footer .container h2 {
        font-size: 2rem;
    }
    footer .container h2 span {
        display: block;
        font-size: .6em;
        margin-bottom: 10px;
    }
    footer .container span.line {
        display: block;
        width: 100px;
        height: 3px;
        background-color: var(--pink_color);
        margin: 20px 0;
    }
    footer .container .f_nav {
        display: none;
    }
    footer .copyright {
        margin-top: 50px;
        font-size: 1.4rem;
    }
    footer .container img.f_obj {
        width: 20%;
    }
}

/*--------------------------------

>>>Layout Style

---------------------------------*/
/*Main*/
main {
    width: 100%;
}

/*Side*/
aside {
    overflow: hidden;
    padding: 0 0 20px;
    margin: 0;
    width: 250px;
}

.side-widget {
    padding: 20px 0 0;
    float: left;
    width: 250px;
    overflow: hidden;
}
.side-widget .widget-title {
    margin: 0;
    font-weight: bold;
}
.side-widget ul {
    margin: 0;
}
.side-widget ul li {
    margin: 0;
    padding: 0 0 0 10px;
}
.side-widget ul li p {
    margin: 0;
}
.side-widget ul li th,
.side-widget ul li .side-widget td {
    padding: 0;
    text-align: center;
}


/*--------------------------------

>>>Index Style

---------------------------------*/
@media (max-width: 520px) {
    .post_index .wrap {
        padding: 0 2.5%;
    }
}

.post_index .thumb {
    background: center center/cover no-repeat;
}

.post_index h2 {
    font-size: 1.28rem;
    margin-top: 20px;
}


/*--------------------------------

>>>Post Style

---------------------------------*/
.post_details {
    padding: 0px;
}
.post_details .post_body {
    display: grid;
    grid-template-columns: 480px 1fr;
    column-gap: 50px;
    margin-bottom: 75px;
}
.post_details.one_clomun .post_body {
    display: block;
}
.post_details .post_head {
    padding: 5px 5%;
}
.post_details h1 {
    font-size: 3rem;
    letter-spacing: .05em;
    line-height: 1.4;
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--orange_color);
    margin-bottom: 20px;
}
.post_details a {
    color: var(--orange_color);
}
.post_details .meta {
    text-align: center;
    color: #808080;
    letter-spacing: .1em;
    margin-top: 15px;
}

.post_details h2 + h2,
.post_details h3 + h2,
.post_details h4 + h2,
.post_details p + h2,
.post_details .wp-block-image + h2,
.post_details ul + h2,
.post_details ol + h2,
.post_details figure + h2,
.post_details table + h2 {
    margin-top: 75px;
}
.post_details h2 + h3,
.post_details h3 + h3,
.post_details h4 + h3,
.post_details p + h3,
.post_details .wp-block-image + h3,
.post_details ul + h3,
.post_details ol + h3,
.post_details figure + h3,
.post_details table + h3 {
    margin-top: 35px;
}
.post_details h2 + h4,
.post_details h3 + h4,
.post_details h4 + h4,
.post_details p + h4,
.post_details .wp-block-image + h4,
.post_details ul + h4,
.post_details ol + h4,
.post_details figure + h4,
.post_details table + h4 {
    margin-top: 35px;
}
.post_details h2 + p,
.post_details h3 + p,
.post_details h4 + p,
.post_details p + p,
.post_details .wp-block-image + p,
.post_details ul + p,
.post_details ol + p,
.post_details figure + p,
.post_details table + p {
    margin-top: 35px;
}
.post_details h2 + .wp-block-image,
.post_details h3 + .wp-block-image,
.post_details h4 + .wp-block-image,
.post_details p + .wp-block-image,
.post_details .wp-block-image + .wp-block-image,
.post_details ul + .wp-block-image,
.post_details ol + .wp-block-image,
.post_details figure + .wp-block-image,
.post_details table + .wp-block-image {
    margin-top: 35px;
}
.post_details h2 + ul,
.post_details h3 + ul,
.post_details h4 + ul,
.post_details p + ul,
.post_details .wp-block-image + ul,
.post_details ul + ul,
.post_details ol + ul,
.post_details figure + ul,
.post_details table + ul {
    margin-top: 35px;
}
.post_details h2 + ol,
.post_details h3 + ol,
.post_details h4 + ol,
.post_details p + ol,
.post_details .wp-block-image + ol,
.post_details ul + ol,
.post_details ol + ol,
.post_details figure + ol,
.post_details table + ol {
    margin-top: 35px;
}
.post_details h2 + table,
.post_details h3 + table,
.post_details h4 + table,
.post_details p + table,
.post_details .wp-block-image + table,
.post_details ul + table,
.post_details ol + table,
.post_details figure + table,
.post_details table + table {
    margin-top: 35px;
}


.post_details h2,
.post_details h3,
.post_details h4,
.post_details p,
.post_details .wp-block-image,
.post_details ul,
.post_details ol,
.post_details figure,
.post_details table {
    letter-spacing: .05em;
}

/* List li -----------------------------------------------------------------*/
.post_details ul {
    padding-left: 20px;
}
.post_details ul li{
    list-style: disc;
}
.post_details ul li + li {
    margin-top: 15px;
}



.post_details table td,
.post_details table th {
    padding: 10px 5px;
    border: .5px solid #dcdcdc;
}
.post_details p {
    line-height: 1.5;
}
.post_details .thumb_box {
    position: relative;
} 
.post_details .thumb {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.post_details .sp_thumb {
    border-radius: 20px;
    overflow: hidden;
    display: none;
}
.post_details .wp-block-columns + p,
.post_details p + .wp-block-columns,
.post_details p + .wp-block-group,
.post_details .wp-block-columns + .wp-block-group,
.post_details .wp-block-group + .wp-block-columns,
.post_details p + figure,
.post_details .wp-block-columns + figure,
.post_details figure + figure {
    margin-top: 35px;
}
@media (max-width: 520px) {
    .post_details {
        padding: 0 5% 0;
    }
    .post_details .post_body {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 50px;
        margin-bottom: 75px;
    }
    .post_details .post_head {
        padding: 5px 5%;
    }
    .post_details h1 {
        font-size: 3rem;
        letter-spacing: .05em;
        line-height: 1.4;
        font-weight: 500;
        padding-bottom: 20px;
        border-bottom: 2px dashed var(--orange_color);
        margin-bottom: 20px;
    }
    .post_details .meta {
        text-align: center;
        color: #808080;
        letter-spacing: .1em;
        margin-top: 15px;
    }    
    .post_details .thumb {
        display: none;
    }
    .post_details .sp_thumb {
        margin-top: 35px;
        display: block;
        margin-bottom: 20px;
    }
    .post_details .sp_thumb img {
        margin: 0;
    }
}

/*--------------------------------

>>> Contact Form Style

---------------------------------*/
.contact_design01 form p + p {
    margin-top: 25px;
}
.contact_design01 form label {
    font-size: 1.5rem;
    letter-spacing: .1em;
}
.contact_design01 form label a {
    text-decoration: underline;
}

.contact_design01 form input{
    width: 100%;
    padding: 10px;
    font-size: 1.5rem !important;
    border: 0px solid #000;
    letter-spacing: .05em;
}
.contact_design01 form textarea{
    width:100%;
    padding: 10px;
    font-size: 1.5rem !important;
    border: 0px solid #000;
    letter-spacing: .05em;
    margin-bottom: 0px;
}
.contact_design01 form select {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 1.5rem !important;
    border: 0px solid #000;
    letter-spacing: .05em;
}

.contact_design01 form .pp_area {
    margin-bottom: 25px;
}
.contact_design01 form .pp_area .pp_ttl {
    font-size: 1.5rem;
    letter-spacing: .2em;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 400;
}
.contact_design01 form .pp_area .pp_box {
    width: 100%;
    height: 300px;
    border: 1px solid #000;
    font-size: 1.08rem;
    letter-spacing: .05em;
    overflow: scroll;
}
.contact_design01 form.wpcf7-not-valid-tip{
    padding:2px;
    clear:both;
    color:#c00;
}
.contact_design01 form.wpcf7-display-none{
    display:none;
}
.contact_design01 form img.ajax-loader{
    float:right;
    margin-top:-30px;
}
.contact_design01 form.wpcf7-response-output{
    margin:0 0 20px;
    padding:5px;
    text-align:center;
    border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
}
.contact_design01 form.wpcf7-mail-sent-ok{
    background-color:#398f14;
    color:#fff;
}
.contact_design01 form.wpcf7-mail-sent-ng{
    background-color:#ff0000;
    color:#fff;
}
.contact_design01 form.wpcf7-spam-blocked{
    background-color:#ffa500;
    color:#000;
}
.contact_design01 form.wpcf7-validation-errors{
    background-color:#f7e700;
    color:#000;
}
.contact_design01 form input[type = checkbox] {
    width: auto !important;
    padding: 0 !important;
    display: inline !important;
    margin: 0 !important;
}
.contact_design01 form input.wpcf7-submit{
    display:block;
    margin:30px auto 0;
    width:250px;
    text-align: center;
    cursor:pointer;
    padding: 20px 0;
    font-size:1.5rem;
    line-height:20px;
    border-radius:200px;
    -moz-border-radius:200px;
    letter-spacing: .2em;
    border:0px;
    background-color:var(--orange_color);
    color: #fff;
    transition:ALL .5s ease;
    -webkit-transition:ALL .5s ease;
    -moz-transition:ALL .5s ease;
    -o-transition:ALL .5s ease;
}
.contact_design01 form input.wpcf7-submit:hover {
    background-color: #fff;
    color: var(--orange_color);
}
.contact_design01 form input.wpcf7-submit:disabled {
    opacity: 0.3;
}
.contact_design01 form input.wpcf7-submit:hover:disabled {
    background-color: #000;
    color: #fff;
}
.contact_design01 form .wpcf7-acceptance .wpcf7-list-item {
    display: block;
    text-align: center;
    margin: 0;
}
.contact_design01 form .wpcf7-acceptance .wpcf7-list-item label {
    font-size: .8em !important;
    margin-top: 0;
}

.contact_design01 form .wpcf7-radio {
    display: block;
    padding: 20px 0;
}
.contact_design01 form .wpcf7-radio .wpcf7-list-item {
    margin: 0 65px 0 0;
}
.contact_design01 form .wpcf7-radio .wpcf7-list-item:last-child {
    margin: 0 ;
}
.contact_design01 form .wpcf7-radio .wpcf7-list-item label {
    font-size: .8em !important;
    margin-top: 0;
    letter-spacing: 0em;
}

.contact_design01 span.req {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: red;
    border-radius: 15px;
    position: relative;
    top: 2px;
    margin-left: 5px;
}
@media (max-width: 520px) {
    .contact_design01 form input.wpcf7-submit{
        margin:25px auto 0;
    }
    
}

/*--------------------------------

>>> Index Style

---------------------------------*/
.index_news article {
    display: grid;
    grid-template-columns: 150px 1fr;
    column-gap: 30px;
    border-bottom: 1px solid var(--gray_color);
    padding: 20px 0;
    position: relative;
}
.index_news article .meta {
    text-align: center;
}
.index_news article .ttl {
    transition: all .5s ease;
}
.index_news article:hover .ttl {
    color: var(--orange_color);
}
@media (max-width: 520px) {
    .index_news {
        padding: 0 5%
    }
    .index_news article {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 30px;
        border-bottom: 1px solid var(--gray_color);
        padding: 20px 0;
        position: relative;
    }
    .index_news article .meta {
        text-align: left;
        margin-bottom: 10px;
        color: #808080;
    }
}
/*--------------------------------

>>> Block Style

---------------------------------*/
.block--access {
    padding: 75px 0;
}
.block--access h2 {
    text-align: center;
    margin-bottom: 65px;
}
.block--access .container {
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 30px;
    align-items: center;
}
.block--access .container .info {

}
.block--access .container .info .logo {
    width: 220px;
    margin-bottom: 20px;
}
.block--access .container .info th,
.block--access .container .info td {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 5px 0;
    text-align: left;
    font-weight: 600;
}
.block--access .container .info th {
    width: 75px;
}
.block--access .container .info a.icon_tel {
    display: block;
    font-size: 2.7rem;
    letter-spacing: .05em;
    font-weight: 700;
    color:#000;
    margin-bottom: 10px;
}
.block--access .container .info a.icon_tel:hover {
    opacity: 0.5;
}
.block--access .container .info a.icon_tel::before {
    content: "";
    display: inline-block;
    width: .9em;
    aspect-ratio: 1/1;
    background: url(../img/common/icon_phone.png) center center/contain no-repeat;
    position: relative;
    top: 2px;
    margin-right: 5px;
}
.block--access .container .info p {
    font-size: 1.2rem;
    line-height: 1.5;
}
.block--access .container .info .sns {
    display: flex;
    flex-wrap:wrap;
    column-gap: 20px;
    margin-top: 35px;
}
.block--access .container .info .sns li {
    width: 40px;
}
.block--access .container .info .sns li a:hover {
    opacity: 0.5;
}
.block--access .container .map .inner {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
}
@media (max-width: 520px) {
    .block--access {
        padding: 75px 5%;
    }
    .block--access h2 {
        text-align: center;
        margin-bottom: 65px;
    }
    .block--access .container {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
    .block--access .container .info .logo {
        width: 50%;
        margin-inline: auto;
    }
    .block--access .container .info th,
    .block--access .container .info td {
        font-size: 1.5rem;
    }
    .block--access .container .info th {
        width: 75px;
    }
    .block--access .container .info a.icon_tel {
        font-size: 2.4rem;
        font-weight: 600;
    }
    .block--access .container .info .sns {
        justify-content: center;
    }
    .block--access .container .info .sns li {
        width: 30px;
    }
    
    
}


.block--blog {
    margin-bottom: 50px;

    display: block;
}
.block--blog h2 {
    text-align: center;
    margin-bottom: 40px;
}
.index--blog .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 40px;
    padding: 0 100px;
}
.index--blog a.arrow_btn {
    margin: 55px auto 0;
    text-align: center;
}

.index--blog article {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
    background-color: #fff;
}
.index--blog article .thumb {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/9;
}
.index--blog article .thumb img {
    width: 100%;
	height: 100%;
 	object-fit: cover;
 	object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 1s ease;
}
.index--blog article:hover .thumb img {
    transform: translate(-50%, -50%) scale(1.1);
}
.index--blog article .info {
    padding: 20px 10px;
}
.index--blog article .info .meta {
    font-size: 1.3rem;
    color: #808080;
    letter-spacing: .05em;
    margin-bottom: 10px;
    font-weight: 600;
}
.index--blog article .info .ttl {
    font-size: 1.5rem;
    letter-spacing: .05em;
    line-height: 1.4;
    font-weight: 700;
}
@media (max-width: 520px) {
    .block--blog {
        margin-bottom: 50px;    
    }
    .index--blog .container {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5%;
        padding: 0 2.5%;
    }
    .index--blog article .info .ttl {
        font-size: 1.4rem;
    }    
}


.block--newsletter {
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
}
.block--newsletter h2 {
    text-align: center;
    margin-bottom: 60px;
}
.block--newsletter .index_newsletter {
    position: relative;
}
.block--newsletter article {
}
.block--newsletter article .thumb {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, .2);
}
.block--newsletter article .info {
    margin-top: 20px;
    text-align: center;
}
.block--newsletter a.arrow_btn {
    margin: 55px auto 0;
    text-align: center;
}
@media (max-width: 520px) {
    .block--newsletter .index_newsletter {
        position: relative;
        padding: 0 10%;
    }
    .block--newsletter article {
    }
    .block--newsletter article .info h3 {
        font-size: 1.4rem;
    }
}


.archive_news h2 {
    text-align: center;
    margin-bottom: 75px;
}
.archive_news .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 40px;
}
.archive_news .container article {
    position: relative;
}
.archive_news .container .thumb {
    width: 100%;
    aspect-ratio: 9/13;
}
.archive_news .container .thumb .thumb_inner {
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2);
}

.archive_news .container .thumb img {
    width: 100%;
	height: 100%;
 	object-fit: cover;
 	object-position: center;

}
.archive_news .container h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 20px;
}
.archive_news .container a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media (max-width: 520px) {
    .archive_news {
        padding: 0 5%;
    }
    .archive_news h2 {
        text-align: center;
        margin-bottom: 75px;
    }
    .archive_news .container {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5%;
        row-gap: 40px;
    }
}


.service_index .service_block {
    width: 90%;
}
.service_index .service_block + .service_block {
    margin-top: 75px;
}
.service_index .service_block:nth-of-type(2n) {
    margin-left: 10%;
}
.service_index .service_block .container {
    display: grid;
    grid-template-columns: 255px 1fr;
    column-gap: 50px;
}
.service_index .service_block .thumb .inner {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 15px;
    background-color: #000;
    overflow: hidden;
}
.service_index .service_block .info h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 25px;
}
.service_index .service_block .info h3::before {
    content: "";
    display: inline-block;
    width: 1em;
    aspect-ratio: 1/1;
    background: url(../img/common/dot_or.png) center center/contain no-repeat;
    margin-right: 5px;
}
.service_index .service_block .info table {
    width: 100%;
}
.service_index .service_block .info th,
.service_index .service_block .info td {
    line-height: 1.4;
    padding: 10px 0;
}
.service_index .service_block .info th {
    width: 125px;
    border-bottom: 2px solid var(--yellow_color);
    text-align: left;
}
.service_index .service_block .info td {
    width: calc(100% - 125px);
    border-bottom: 2px solid #D1D1D1;
}
@media screen and (max-width:520px) {
    .service_index .service_block {
        width: 100%;
        padding: 0 5%;
    }
    .service_index .service_block + .service_block {
        margin-top: 75px;
    }
    .service_index .service_block:nth-of-type(2n) {
        margin-left: 0%;
    }
    
    .service_index .service_block .container {
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 50px;
    }
    
    .service_index .service_block .thumb {
        width: 70%;
        
    }

    .service_index .service_block .info {
        margin-top: -2rem;
    }
    .service_index .service_block .info h3 {
        font-size: 2rem;
        text-align: right;
    }    
    .service_index .service_block .info table {
        width: 100%;
    }
    .service_index .service_block .info th,
    .service_index .service_block .info td {
        line-height: 1.4;
        padding: 10px 0;
        display: block;
    }
    .service_index .service_block .info th {
        width: 100%;
        background-color: var(--yellow_color);
        border-bottom: 0px solid var(--yellow_color);
        text-align: center;
        border-radius: 5px;
    }
    .service_index .service_block .info td {
        width: 100%;
        border-bottom: 0px solid #D1D1D1;
    }

}


.pertner {
    display: block;
    width: 100%;
    padding: 75px 0;
    margin-bottom: 100px;
    background-color: #FCFCFC;
}
.pertner h2 {
    text-align: center;
}
.pertner p {
    text-align: center;
    font-size: 1.5rem;
    margin: 50px 0 30px;
}
.pertner .logo_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 30px;
    padding: 0;
}
.pertner .logo_container a {
    transition: all .5s ease;
}
.pertner .logo_container a:hover {
    opacity: 0.5;
}
@media screen and (max-width:520px) {
    .pertner {
        padding: 75px 5%;
    }
    .pertner .logo_container {
        grid-template-columns: repeat(2, 1fr);
    }
    .pertner .logo_container div:empty {
        display: none;
    }
}




.parallax-container {
    position: fixed;
    width: 100%;
    height: 100dvh; /* 画面全体を使う */
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: -2;
    opacity: 0.7;
}

.parallax-item {
    position: absolute;
    bottom: 0;
}
.parallax-item img {
    width: auto;
    height: 150px;
}
.parallax-item:nth-of-type(1) {bottom: -150px;left: 25%;}
.parallax-item:nth-of-type(2) {bottom: -150px;left: 65%;}
.parallax-item:nth-of-type(3) {bottom: -150px;left: 13%;}
.parallax-item:nth-of-type(4) {bottom: 0px;left: 85%;}
.parallax-item:nth-of-type(5) {bottom: -750px;left: 25%;}
.parallax-item:nth-of-type(6) {bottom: -750px;left: 95%;}
.parallax-item:nth-of-type(7) {bottom: -750px;left: 13%;}
.parallax-item:nth-of-type(8) {bottom: -750px;left: 85%;}
@media screen and (max-width:520px) {
    .parallax-container {
        opacity: 0.5;
    }
    .parallax-item img {
        height: 90px;
    }
}






