@charset "UTF-8";

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

>>> 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: 15px !important;
}
body {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    font-family: 'Noto Sans JP', sans-serif;
    transition:ALL .8s ease .3s;
    opacity: 0;
}
body.show {
    opacity: 1;
}

@media (max-width: 520px) {
    html {
        font-size: 3.6vw !important;
    }
}
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: 1;
    word-break: break-all;
    line-break: normal;
    letter-spacing: -.02em;
}
img {
    display: block;
    width: 100%;
    height: auto;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}


.clear {
    clear: both;
}
.clear hr {
    display: none;
}
.wrap {
    width: 1100px;
    margin: 0 auto;
}
.wrap850 {
    width: 850px;
    margin: 0 auto;
}
.wrap800 {
    width: 800px;
    margin: 0 auto;
}
@media (max-width: 520px) {
    .wrap {
        width: 100%;
    }
    .wrap850 {
        width: 100%;
    }
    .wrap800 {
        width: 100%;
    }
}

.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;
    }
}

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

>>> Share Style

---------------------------------*/
/*
* Share Style
*/
.base_hl {
	font-family: 'Noto Serif JP', serif;
	font-size: 2.8rem;
	letter-spacing: .1em;
	line-height: 1.5;
}
.hl_style01 {
	text-align: center;
	font-size: 1.5rem;
	position: relative;
	letter-spacing: .1em;
}
.hl_style01::before {
	content: "";
	width: 45px;
	height: 45px;
	display: block;
	background:url(../img/common/icon_bk.png) center center/contain no-repeat;
	margin: 0 auto 10px;
}
@media (max-width: 520px) {
    .base_hl {
        font-size: 2rem;
    }
    .hl_style01 {
        text-align: center;
        font-size: 1.5rem;
        position: relative;
        letter-spacing: .1em;
    }
    .hl_style01::before {
        content: "";
        width: 45px;
        height: 45px;
        display: block;
        background:url(../img/common/icon_bk.png) center center/contain no-repeat;
        margin: 0 auto 10px;
    }
}

.icon_hl {
    position: relative;
}
.icon_hl::before {
    content: "";
    width: 1.5em;
    height: 1.5em;
    display: inline-block;
    background:url(../img/common/icon_bk.png) center center/contain no-repeat;
    margin-bottom: 10px;
}
@media (max-width: 520px) {
    .icon_hl::before {
        width: 1em;
        height: 1em;
        margin-bottom: -3px;
        margin-right: 10px;
    }
}

.vartical_hl {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-family: 'Noto Serif JP', serif;
	font-size: 2.5rem;
	letter-spacing: .3em;
	font-weight: 500;
}
@media (max-width: 520px) {
    .vartical_hl {
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        font-size: 1.8rem;
    }
}

.btn01 {
	display: block;
	position: relative;
	border: 4px solid #000;
	text-align: center;
	padding: 45px 0;
	color: #000;
	font-size: 1.4rem;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: .1em;
	line-height: 1;
	transition:ALL .5s ease;
	z-index: 2;
}
.btn01:hover {
	color: #fff;
}
.btn01::before {
	content: "";
	display: block;
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	border: 4px solid #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
	transition:ALL .5s ease;
}
.btn01:hover::before {
	background-color: #000;
}
.btn01 span {
	position: relative;
	z-index: 3;
}
.btn01 span::before {
	content: "";
	width: 1.8rem;
	height: 1.8rem;
	background: url(../img/common/icon_bk.png) center center/contain no-repeat;
	position: relative;
	display: inline-block;
	top: 6px;
	margin-top: -10px;
	margin-right: 5px;
	/* position: absolute;
	top: 0;
	right: calc(100% + 10px); */
	z-index: 2;
}
.btn01:hover span::before {
	background: url(../img/common/icon_wh.png) center center/contain no-repeat;
}
@media (max-width: 520px) {
    .btn01 {
        padding: 35px 0;
        border: 2px solid #000;
    }
    .btn01::before {
        border: 2px solid #000;
    }
    .btn01 span::before {
        top: 4px;
    }
}

.link_area ul {
    padding: 0 !important;
}
.link_area ul li {
    font-size: 1rem !important;
    width: 100%;
}
.link_area ul li + li {
    margin-top: 10px !important;
}
.link_area ul li a {
    color: #000;
    position: relative;
}
.link_area ul li::before {
    display: inline-block !important;
    content: "" !important;
    width: 1em !important;
    height: 1em !important;
    background-color: transparent !important;
	background: url(../img/common/icon_bk_nuri.png) center center/contain no-repeat !important;
    position: relative !important;
    top: 3px !important;
    right: auto !important;
    margin-right: 10px !important;
}
.link_area ul li a::after {
    content: "";
    width: 0%;
    height: 1px;
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    background-color: #000;
    transition:ALL .5s ease;

}
.link_area ul li a:hover::after {
    width: 100%;
}

/*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: #000;
    background-color: #fff;
    border: 1px solid #000;
    padding: 15px 0;
    text-decoration: none;
    text-align: center;
}
.navigation .navigation_btn a:hover {
    background-color: #000;
    color: #fff;
}
.navigation .navigation_btn.navigation_btn_back a {
    border: 0;
    background-color: #fff;
}
.navigation .navigation_btn.navigation_btn_back a:hover {
    border: 0;
    color: #000;
    opacity: 0.5;
}

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

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

>>>Header Style

---------------------------------*/
header {
    width: 100%;
    padding: 20px 0;
    background-color: #fff;
    position: fixed;
    top: -150px;
    left: 0;
    z-index: 10000;
    transition:ALL .5s ease;

}
header.top_header.active {
    top: 0;
}
header.sub_header {
    top: 0;
}
header #logo {
    width: 220px;
    position: relative;
    margin: 0 auto;
    z-index: 5;
}
header #site_description {
    text-align: center;
    margin: 5px 0;
}
header .yoyaku_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    font-size: 1.4rem;
    letter-spacing: .1em;
    font-family: 'Noto Serif JP', serif;
    transition: ALL .5s ease;
}
header .yoyaku_btn:hover {
    opacity: 0.5;
}
header .yoyaku_btn::before {
    content: "";
    position: relative;
    display: inline-block;
    width: 32px;
    height: 28px;
    background: url(../img/common/icon_bk.png) center center/contain no-repeat;
    margin-right: 8px;
}
header .yoyaku_btn span {
    position: relative;
    top: -6px;
}
@media (max-width: 520px) {
    header {
        padding: 13px 0;
    }
    header #logo {
        width: 30%;
    }
    header #site_description {
        display: none;
    }
    header .yoyaku_btn {
        display: none;
    }    
}


.g_nav {
    width: 300px;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: -400px;
    z-index: 3;
    transition: ALL .3s ease;
}
.g_nav.active {
    left: 0;
}
.g_nav ul {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.g_nav ul li {
    text-align: center;
    letter-spacing: .05em;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.15rem;
}
.g_nav ul li + li {
    margin-top: 20px;
    letter-spacing: .1em;
}
.g_nav ul li a {
    color: #000;
    transition:ALL .5s ease;
}
.g_nav ul li a:hover {
    opacity: 0.5;
}
@media (max-width: 520px) {
    .g_nav {
        width: 100%;
        height: 100vh;
        left: auto;
        right: 100%;
    }
    .g_nav ul li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .g_nav ul li + li {
        margin-top: 15px;
    }
    .g_nav.active {
        right: 20%;
    }
}

.header_overray {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 999;
    pointer-events: none;
    transition: ALL .5s ease;
}
.header_overray.active {
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: auto;
}

.menu_trigger,
.menu_trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
.menu_trigger {
    width: 60px;
    height: 20px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 30px;
    z-index: 4;
    cursor: pointer;
}
.menu_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
    border-radius: 4px;
}
.menu_trigger span:nth-of-type(1) {
    top: 0;
}
.menu_trigger span:nth-of-type(2) {
    bottom: 0;
}
.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) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
}
@media (max-width: 520px) {
    .menu_trigger {
        width: 30px;
        height: 15px;
        left: 5%;
    }
    .menu_trigger span {
        height: 2px;
    }
    .menu_trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(6px) rotate(-45deg);
        transform: translateY(6px) rotate(-45deg);
    }
}

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

>>>Footer Style

---------------------------------*/
footer {
    padding-bottom: 0;
}
.footer_info {
	background-color: #F0F0F0;
	padding: 65px 0;
	margin-top: 200px;
}
@media (max-width: 520px) {
    .footer_info {
        background-color: #F0F0F0;
        padding: 65px 5%;
        margin-top: 100px;
    }
}

.footer_info .info {
	width: 380px;
	position: relative;
}
.footer_info .info .f_logo {
	width: 260px;
	margin-bottom: 35px;
}
.footer_info .info li {
	list-style: none;
	letter-spacing: .05em;
	font-size: .92rem;
}
.footer_info .info li + li {
	margin-top: 10px;
}
.footer_info .info li a {
    color: #000;;
}
.footer_info .info li a img {
    display: inline-block;
    margin-right: 5px;
    width: auto;
    height: 1rem;
}
.footer_info .info .g_map {
    width: 100%;
    height: 200px;
    margin-top: 35px;
}
@media (max-width: 520px) {
    .footer_info .info {
        width: 100%;
        text-align: center;
        position: relative;
    }
    .footer_info .info .f_logo {
        width: 60%;
        margin: 0 auto 35px;
    }
    .footer_info .info li {
        list-style: none;
        letter-spacing: .05em;
        font-size: 1.2rem;
        line-height: 1.4;
    }
    .footer_info .info li + li {
        margin-top: 10px;
    }
}

.footer_info .news {
	width: calc(100% - 380px);
	padding-left: 145px;
	position: relative;
    text-align: center;
}
.footer_info .news h2 {
	font-size: 1.2rem;
	margin-bottom: 25px;
    text-align: left;
}
.footer_info .news .news_item {
	padding: 15px 0;
	border-top: 1px solid #707070;
	position: relative;
}
.footer_info .news .news_item:last-of-type {
	border-bottom: 1px solid #707070;
}
.footer_info .news .news_item .meta {
	width: 130px;
	text-align: center;
	color: #999999;
	font-size: .95rem;
	letter-spacing: .1em;
	line-height: 1.4;
}
.footer_info .news .news_item .post_ttl {
	width: calc(100% - 130px);
	padding-right: 45px;
    text-align: left;
}
.footer_info .news .news_item .post_ttl h3 {
	font-size: .95rem;
	line-height: 1.4;
	letter-spacing: .1em;
    font-weight: 500;
}
.footer_info .news .news_item a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.footer_info .news .index_link {
	position: absolute;
	top: -8px;
	right: 0;
	letter-spacing: .1em;
	background-color: #000;
	color: #fff;
	border-radius: 1000px;
	padding: 10px 25px;
	transition:ALL .3s ease;
}
.footer_info .news .index_link:hover {
	background-color: #fff;
	color: #000;
}
@media (max-width: 520px) {
    .footer_info .news {
        width: 100%;
        padding-left: 0;
        margin-top: 35px;
    }
    .footer_info .news h2 {
        font-size: 1.3rem;
        margin-bottom: 35px;
        text-align: center;
    }
    .footer_info .news .news_item .meta {
        width: 110px;
    }
    .footer_info .news .news_item .post_ttl {
        width: calc(100% - 110px);
        padding-right: 45px;
    }
    .footer_info .news .news_item .post_ttl h3 {
        font-size: .95rem;
        line-height: 1.4;
        letter-spacing: .1em;
    }
    .footer_info .news .news_item a {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .footer_info .news .index_link {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin: 25px 0 0 auto
    }
}



footer .f_nav {
	background-color: #CECECE;
	padding:25px 0;
}
footer .f_nav ul {
	justify-content: center;
}
footer .f_nav ul li {
	margin-left: 30px;
	font-weight: 600;
	letter-spacing: .1em;
	color: #000;
}
footer .f_nav ul li::before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url(../img/common/icon_bk_nuri.png) center center/contain no-repeat;
	margin-right: 5px;
	position: relative;
	top: 2px;
}
footer .f_nav ul li a {
	color: #000;
	transition:ALL .5s ease;
}
footer .f_nav ul li a:hover {
	opacity: .3;
}
@media (max-width: 520px) {
    footer .f_nav {
        background-color: #CECECE;
        padding:25px 0;
    }
    footer .f_nav ul {
        justify-content: center;
    }
    footer .f_nav ul li {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
    footer .f_nav ul li + li {
        margin-top: 10px;
    }
}

footer .copy {
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 30px 0;
	letter-spacing: .1em;
	line-height: 1;
}



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

>>>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

---------------------------------*/
.post_index {
    margin-top: 150px;
}
.post_index .post_item {
    border-top: 1px solid #000;
    padding: 15px 0;
    position: relative;
}
.post_index .post_item:last-child {
    border-bottom: 1px solid #000;
}
.post_index .post_item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition:ALL .5s ease;
}
.post_index .post_item a:hover {
    background-color: rgba(255, 255, 255, 0.7);
}
.post_index .f_item {

}
.post_index .f_item:nth-of-type(1) {
    width: 280px;
    padding: 10px 20px:
}
.post_index .f_item:nth-of-type(2) {
    width: calc(100% - 280px);
}
.post_index .f_item .thumb {
    width: 80%;
    margin: 0 auto;
    position: relative;
}
.post_index .f_item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.post_index .f_item .meta {
    color: #999999;
    letter-spacing: .05em;
    margin-top: 15px;
}
.post_index .f_item h2 {
    font-size: .92rem;
    letter-spacing: .05em;
    line-height: 1.9;
    font-weight: 500;
    margin-top: 5px;
}


@media (max-width: 520px) {
    .post_index {
        margin-top: 100px;
        padding: 0 5%;
    }
    .post_index .post_item {
        border-top: 1px solid #000;
        padding: 15px 0;
        position: relative;
    }
    .post_index .post_item:last-child {
        border-bottom: 1px solid #000;
    }
    .post_index .post_item a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        transition:ALL .5s ease;
    }
    .post_index .post_item a:hover {
        background-color: rgba(255, 255, 255, 0.7);
    }
    .post_index .f_item {
    
    }
    .post_index .f_item:nth-of-type(1) {
        width: 100%;
        padding: 0:
    }
    .post_index .f_item:nth-of-type(2) {
        width: 100%;
        padding: 0 5%;
    }
    .post_index .f_item .thumb {
        width: 90%;
        margin: 0 auto;
        background-color: #dcdcdc;
    }
    .post_index .f_item .meta {
        color: #999999;
        letter-spacing: .05em;
        margin-top: 15px;
    }
    .post_index .f_item h2 {
        font-size: .92rem;
        letter-spacing: .05em;
        line-height: 1.9;
        font-weight: 500;
        margin-top: 5px;
    }
}


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

>>>Post Style

---------------------------------*/
.post_details {
    padding: 150px 0 0;
}
.post_details .post_body {
    padding: 75px 0;
    background-color: #fff;
}
.post_details .inner {
    margin-top: 50px;
    padding: 0 10%;
}

.post_details .post_head {
    padding: 5px 5%;
}
.post_details h1 {
    letter-spacing: .05em;
    line-height: 1.4;
    font-weight: 500;
    border-bottom: 1px #707070 solid;
    padding-bottom: 20px;
}
.post_details .meta {
    text-align: right;
    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 .thumb {
    margin-top: 50px;
    margin-bottom: 60px;
    position: relative;
}
.post_details .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.post_details p {
    line-height: 1.5;
}
.post_details h2 {
    position: relative;
    padding-bottom: 15px;
}
.post_details h2::before {
    content: "";
    width: 200px;
    height: 2px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
}



@media (max-width: 520px) {
    .post_details {
        padding: 75px 5% 0;
    }
    .post_details .post_body {
        padding: 50px 0;
        background-color: #fff;
    }
    .post_details .inner {
        margin-top:35px;
        padding: 0;
    }
    .post_details .thumb {
        margin-top: 35px;
    }
    .post_details h2::before {
        width: 40%;    
    }
}
/*--------------------------------

>>>Page default Style

---------------------------------*/
.page_default {
    padding: 150px 0 0;
}
.page_default .post_body {
    padding: 75px 0;
    background-color: #fff;
}
.page_default .inner {
    margin-top: 50px;
    padding: 0 10%;
}

.page_default .post_head {
    padding: 5px 5%;
}
.page_default h1 {
    letter-spacing: .05em;
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
}
.page_default .meta {
    text-align: center;
    color: #808080;
    letter-spacing: .1em;
    margin-top: 15px;
}

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


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

.page_default h3 + ul,
.page_default h3 + p {
        margin-top: 20px;
}
/* List li -----------------------------------------------------------------*/
.page_default ul {
    padding-left: 30px;
}
.page_default ul li{
    list-style: none;
    position: relative;
    line-height: 1.8;
    letter-spacing: .02em;
}
.page_default ul li::before {
    content: "";
    width: 1em;
    height: 1em;
    border-radius: 500px;
    background-color: #000;
    display: block;
    position: absolute;
    top: 7px;
    left: -30px;
}
.page_default ul li + li {
    margin-top: 15px;
}



.page_default table td,
.page_default table th {
    padding: 10px 5px;
    border: .5px solid #dcdcdc;
}
.page_default .thumb {
    margin-top: 50px;
    margin-bottom: 60px;
}

.page_default h3 {
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    line-height: 1.5;
}

.page_default p {
    line-height: 2;
}

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

.page_default p a {
    color: #000;
    text-decoration: underline;
    transition:ALL .5s ease;
}
.page_default p a:hover {
    opacity: 0.3;
}

@media (max-width: 520px) {
    .page_default {
        padding: 75px 5% 0;
    }
    .page_default .post_body {
        padding: 50px 0;
        background-color: #fff;
    }
    .page_default .inner {
        margin-top:35px;
        padding: 0 5%;
    }
    .page_default .thumb {
        margin-top: 35px;
    }
        
}

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

>>> Contact Form Style

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

.contact_design01 form input{
    width: 100%;
    padding: 10px;
    font-size: 1.28rem !important;
    border: 1px solid #000;
    letter-spacing: .05em;
    margin-top: 10px;
}
.contact_design01 form textarea{
    width:100%;
    padding: 10px;
    font-size: 1.08rem !important;
    border: 1px solid #000;
    letter-spacing: .05em;
    margin-bottom: 50px;
    margin-top: 10px;
}
.contact_design01 form textarea.first-textarea {
    margin-bottom: 0;
}
.contact_design01 form .pp_area {
    margin-bottom: 25px;
}
.contact_design01 form .pp_area .pp_ttl {
    font-size: 1.28rem;
    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:75px auto 0;
    width:250px;
    text-align: center;
    cursor:pointer;
    padding: 17px 0;
    font-size:13px;
    line-height:20px;
    border-radius:200px;
    -moz-border-radius:200px;
    letter-spacing: .2em;
    border:1px solid #000;
    background-color:#fff;
    color: #000;
    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: #000;
    color: #fff;
}
.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;
}

.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;
    }
    
}






.block_kankou {
    margin-top: 200px;
}
.block_kankou ul {
    justify-content: space-between;
	margin-top: 55px;
}
.block_kankou ul li {
    width: 30%;
    list-style: none;
}
.block_kankou ul li a * {
	transition:ALL .5s ease;
}
.block_kankou ul li a:hover * {
	opacity: 0.5;
	
}
.block_kankou ul li h3 {
	font-size: .92rem;
	letter-spacing: .05em;
	font-weight: 500;
	text-align: center;
	color: #000;
}
.block_kankou ul li h3 span {
	display: block;
	margin-top: 5px;
	font-size: .6em;
	color: #898989;
}
@media (max-width: 520px) {
    .block_kankou {
        margin-top: 100px;
        padding: 0 10%;
    }
    .block_kankou ul li {
        width: 100%;
    }
    .block_kankou ul li + li {
        margin-top: 15px;
    }
}

.float_menu {
    display: none;
}
@media (max-width: 520px) {
    .float_menu {
        display: block;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100000;
    }
    .float_menu a {
        display: block;
        width: 50%;
        text-align: center;
        font-size: 1.1rem;
        letter-spacing: .05em;
        padding: 15px 0;
        border: 1.5px solid #000;
        background-color: #fff;
        transition:ALL .5s ease;
    }
    .float_menu a:hover {
        background-color: #000;
        color: #fff;
    }
}
