@charset "UTF-8";

*,*::before,*::after{box-sizing:border-box}*{margin:0}body{line-height:1.5;-webkit-font-smoothing:antialiased}img,picture,video,canvas,svg{display:block;max-width:100%}input,button,textarea,select{font:inherit}p,h1,h2,h3,h4,h5,h6{overflow-wrap:break-word}#root,#__next{isolation:isolate}

/*
html {
    visibility: hidden;
    }
html.wf-active {
    visibility: visible;
}
*/

html { font-size: 62.5%; }
body {
    font-size: 10px;
    line-height: 1.6;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #333;
}
img {
    width: 100%;
}

.roboto-mono {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.enable_sp {
    display: none;
}
body.open {
    height: 100%;
    overflow: hidden;
}
@media screen and (max-width: 820px) {
    .enable_sp {
        display: inherit;
    }
    .enable_pc {
        display: none;
    }
}

/*--------
header
--------*/
.header_wrap {
    position: relative;
    top: 0;
    left: 0;
    padding: 1px 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
}
.header_wrap.is-fixed {
	position: fixed;
}
.header_inner {
    width: 98%;
    max-width: 1200px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_inner .logo {
    width: 24%;
}
.header_inner .logo img {
    max-width: 274px;
    width: 100%;
}
.header_menu {
    width: 74%;
    font-size: 1.6rem;
    font-weight: 700;
}
.header_menu ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header_menu ul li {
    margin-left: 4%;
    text-align: center;
}
.header_menu a {
    text-decoration: none;
    text-align: center;
    color: #333;
    transition: 0.3s;
}
.header_menu a:hover {
    opacity: 0.7;
}
.header_menu span {
    font-size: 1.4rem;
    color: #FF9900;
    display: block;
}
.btn_contact a {
    background-color: #FFD292;
    border-radius: 140px;
    padding: 1em 2.6em;
    display: flex;
    align-items: center;
    transition: 0.3s;
	word-break: keep-all
}
.btn_contact a:hover {
    opacity: 0.7;
}
.btn_contact a::before {
    content: " ";
    width: 1.2em;
    height: 0.9em;
    background: url(../img/icon_mail.svg) no-repeat center center;
    background-size: 100%;
    margin-right: 0.3em;
}
.search_btn ,
.menu_btn {
    display: none;
}
.cta_m_copy {
	font-size: 2.2rem;
	text-align: center;
	display: inline-block;
   margin-bottom: 1rem;
}
.cta_m_copy b {
	color: #ED313D;
}
.cta_m_copy img {
	max-height: 14px;
	width: auto;
	margin: 0 4px;
	display: inline-block;
}
.main_v_wrap .btn_contact .cta_m_copy {
	margin-left: 1em;
}
@media screen and (max-width: 1024px) {
    .header_menu {
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 820px) {
	.cta_m_copy {
		font-size: 1.6rem;
	}
    .header_inner {
        margin: 1.4rem auto;
        width: 92%;
    }
    .header_menu {
        opacity: 0;
        transition: 0.4s;
        position: fixed;
        background: rgba(255, 255, 255, 1);
        overflow-y: auto;
        z-index: -99;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
    }
    .header_menu.open {
        z-index: 1;
        opacity: 1;
        background: rgba(255, 255, 255, 1);
        display: block;
    }
    .header_menu a {
        font-size: 1.8rem;
    }
    .header_menu_wrap {
        padding: 80px 0 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        overflow-y: auto;
    }
    .header_menu ul {
        flex-direction: column;
        width: 100%;
    }
    .header_menu ul li {
        margin: 0 auto 30px;
        padding-bottom: 30px;
        text-align: center;
        border-bottom: 1px solid #333;
        width: 90%;
    }
    .header_inner .logo {
        width: 40%;
    }
    .header_inner .logo img {
        max-width: 164px;
    }
    .header_menu span {
        margin-left: auto;
        margin-right: auto;
    }
    .search_btn {
        display: block;
        margin-left: auto;
        margin-right: 2rem;
    }
    .search_btn button {
        display: block;
        width: 30px;
        height: 30px;
        border: none;
        position: relative;
        z-index: 2;
        padding: 0;
        background: none;
    }
    .search_btn button span::after {
        content: " ";
        display: block;
        width: 1.2em;
        height: 1.2em;
        border: 2px solid #333;
        border-radius: 100px;
        background-color: #FFF;
        position: absolute;
        top: 7px;
        left: 6px;
    }
    .search_btn button span::before {
        content: " ";
        display: block;
        width: 0.2rem;
        height: 1.6em;
        background-color: #333;
        transform: rotate(-45deg);
        border-radius: 4px;
        position: absolute;
        top: 10px;
        left: 14px;
    }
    .menu_btn {
        display: block;
    }
    .menu_btn button {
        display: block;
        width: 30px;
        height: 22px;
        border: none;
        position: relative;
        z-index: 2;
        padding: 0;
        background: none;
    }
    .menu_btn button::before ,
    .menu_btn button::after ,
    .menu_btn button span::before {
        content: " ";
        display: block;
        height: 2px;
        background-color: #333;
        position: absolute;
        right: 0;
        transition: 0.3s;
    }
    .menu_btn button::before {
        top: 0;
        width: 100%;
    }
    .menu_btn button::after {
        top: calc(100% - 2px);
        width: 60%;
    }
    .menu_btn button span::before {
        top: calc(50% - 1px);
        width: 80%;
    }
    .menu_btn button.open::after {
        transform: rotate(-45deg);
        width: 80%;
        top: calc(50% - 1px);
    }
    .menu_btn button.open::before {
        transform: rotate(45deg);
        top: calc(50% - 1px);
        width: 80%;
    }
    .menu_btn button.open span::before {
        opacity: 0;
        width: 0%;
    }
}

/*--------
footer
--------*/
.breadlist {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    column-gap: 1.6rem;
    margin: 0 0 8.0rem;
    overflow: auto;
    white-space: nowrap;
}
.breadlist li {
    font-size: 1.4rem;
    padding-left: 2.4rem;
    position: relative;
}
.breadlist li::before {
    content: " ";
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 0.25em);
    width: 0.5em;
    height: 0.5em;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
}
.breadlist li:first-of-type {
    padding-left: 0;
}
.breadlist li:first-of-type::before {
    display: none;
}
.breadlist li a {
    text-decoration: none;
    color: #333;
}
.breadlist li a:hover {
    text-decoration: underline;
}
.footer_wrap {
    background-color: #FFF;
}
.footer_inner {
    width: 96%;
    max-width: 1200px;
    margin: 72px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.footer_inner .foot_message {
    font-size: 4.0rem;
    color: #F78602;
    text-align: center;
    margin-bottom: 1.2em;
    line-height: 1.6;
}
.footer_inner .foot_message b {
    font-size: 4.8rem;
}
.footer_inner .company {
    color: #333;
    font-size: 1.6rem;
}
.footer_inner .company dl {
    display: flex;
    column-gap: 24px;
}
.footer_inner .company dl dt {
    background-color: #F78602;
    color: #FFF;
    font-size: 1.6rem;
    padding: 0.2em 0.5em;
    width: 6em;
    text-align: center;
    letter-spacing: 0.25em;
    margin-bottom: 32px;
    align-self: flex-start;
}
.footer_inner .company dl dd {
    color: #878787;
    font-size: 2.0rem;
    margin-bottom: 32px;
	text-align: left;
}

.footer_wrap .copyright {
    padding: 32px 0 210px;
    text-align: center;
    width: 100%;
    font-size: 1.6rem;
    color: #FFF;
    background-color: rgba(0,0,0,0.6);
}
@media screen and (max-width: 1024px) {
    .footer_inner .foot_menu {
        width: 100%;
    }
    .footer_inner .foot_menu ul {
        margin: 30px auto 0;
        justify-content: center;
    }
}
@media screen and (max-width: 820px) {
    .breadlist {
        width: 96%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 4rem;
        border-top: 1px solid #333;
        padding-top: 2rem;
    }
}
@media screen and (max-width: 699px) {
    .footer_inner {
        width: 86%;
        margin: 4.8rem auto 1.6rem;
    }
    .footer_inner .company {
        font-size: 1.4rem;
        margin-top: 0;
    }
    .footer_inner .foot_menu ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .footer_inner .foot_menu ul li {
        margin: 0 0 10px 0;
        font-size: 1.4rem;
    }
    .footer_inner .copyright {
        text-align: left;
        font-size: 1.2rem;
    }
    .breadlist li {
        font-size: 1.2rem;
    }
    .footer_inner .foot_message {
        font-size: 1.6rem;
    }
    .footer_inner .foot_message b {
        font-size: 2.4rem;
    }
    .footer_inner .company dl {
        column-gap: 0.8rem;
    }
    .footer_inner .company dl dt {
        font-size: 1.2rem;
    }
    .footer_inner .company dl dd {
        font-size: 1.6rem;
    }
    .footer_wrap .copyright {
        padding: 1.6rem 0 9rem;
        font-size: 1.2rem;
    }
}


.page_header {
    padding: 80px 0;
    margin: 140px auto 0;
    position: relative;
}
.page_header h1 {
    font-size: 4.2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}
.page_header::after {
    content: " ";
    position: absolute;
    top: 0%;
    left: 0;
    width: 96%;
    height: 100%;
    background-color: #E0F2FF;
    border-radius: 0 200px 200px 0;
}
.page_content_wrap {
    max-width: 1200px;
    width: 94%;
    margin: 80px auto;
}
.page_content_wrap p {
    font-size: 1.6rem;
    margin-bottom: 2.2em;
}
.page_content_wrap h2 {
    font-size: 3.2rem;
    margin-top: 1.4em;
    margin-bottom: 0.6em;
    border-bottom: 2px solid #05C6F1;
    padding-bottom: 0.2em;
}
.page_content_wrap h3 {
    font-size: 2.6rem;
    margin-top: 1em;
    margin-bottom: 0.6em;
    color: #05C6F1;
}
.form_layout {
    max-width: 800px;
    margin: 0 auto;
}
.form_layout p {
    font-size: 2.0rem;
    margin: 0 auto 30px;
    font-weight: 600;
}
.form_layout input, .form_layout button, .form_layout textarea, .form_layout select {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.3em 0.5em;
    font-size: 1.6rem;
}
.form_layout .wpcf7-form-control-wrap {
    margin-top: 5px;
    display: block;
}
.form_layout input[type="submit"] {
    background-color: #FFD292;
    color: #333;
    border-radius: 50px;
    border: none;
    font-size: 2.0rem;
    max-width: 300px;
    padding: 0.6em;
    margin: 0 auto;
    display: block;
    transition: 0.3s;
    cursor: pointer;
}
.form_layout input[type="submit"]:hover {
    opacity: 0.7;
}
@media screen and (max-width: 1024px) {
    .page_header {
        padding: 50px 0;
    }
    .page_header h1 {
        font-size: 3.4rem;
    }
    .page_content_wrap {
        width: 92%;
        margin: 40px auto;
    }
    .page_content_wrap h2 {
        font-size: 2.6rem;
    }
    .page_content_wrap h3 {
        font-size: 2.2rem;
    }
}
@media screen and (max-width: 820px) {
    .page_header {
        margin: 60px auto 0;
    }
}
@media screen and (max-width: 699px) {
    .page_header {
        margin-top: 60px;
        padding: 30px 0;
    }
    .page_header h1 {
        font-size: 2.4rem;
    }
    .page_content_wrap {
        margin-top: 40px;
        width: 90%;
    }
    .page_content_wrap p {
        font-size: 1.4rem;
    }
    .page_content_wrap h2 {
        font-size: 2.6rem;
    }
    .page_content_wrap h3 {
        font-size: 2.0rem;
    }
    .form_layout p {
        font-size: 1.6rem;
    }
    .form_layout input, .form_layout button, .form_layout textarea, .form_layout select {
        font-size: 1.4rem;
    }
}



#cta_foot .btn_contact {
	text-align: center;
	margin-bottom: 120px;
}
#cta_foot .btn_contact a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    display: inline-block;
	font-size: 2.8rem;
}
#cta_foot .btn_contact a:hover {
    opacity: 0.7;
}
#cta_foot  .btn_contact a::before {
	display:none;
}
@media screen and (max-width: 820px) {
	#cta_foot .btn_contact a {
		font-size: 1.8em;
	}
	#cta_foot .btn_contact {
		margin-bottom: 80px;
	}
}

#cta_float {display:none;}
@media screen and (max-width: 699px) {
#cta_float {
	position: fixed;
	z-index: 1000;
	bottom: 0;
	left: 0;
	background: #FFF;
	display:flex;
	justify-content: center;
	padding: 10px 0;
	width: 100%;
	box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
	#cta_float .btn_contact a {
		    text-decoration: none;
    color: #333;
    font-weight: 700;
    display: inline-block;
		font-size: 1.5rem;
	}
	
}
	
.anim_fade {
    transition: all .6s ease-out;
    opacity: 0;
    transform: translateY(40%);
}
.anim_fade.delay01 {
    transition: all .7s ease-out;
}
.anim_fade.delay02 {
    transition: all .8s ease-out;
}
.anim_fade.delay03 {
    transition: all .9s ease-out;
}
.anim_fade.started {
    opacity: 1;
    transform: translateY(0);
}
.anim_fade.started.ended {
    opacity: 1;
}


/* 検索 */
.form_input_wrap {
    background-color: #F2FAFF;
    padding: 1vw;
    position: relative;
    z-index: 1;
}
.form_input_area {
    max-width: 1200px;
    width: 96%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.form_content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog_menu .menu select ,
.form_input_area input[type="text"] ,
.form_input_area select {
    border: none;
    padding: 0.6em 2.4em 0.6em 1.2em;
    font-size: 1.4rem;
    border-radius: 4px;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}
.form_input_area input[type="submit"] {
    border: none;
    padding: 0.6em 2.4em;
    font-size: 1.4rem;
    border-radius: 4px;
    background-color: #05C6F1;
    color: #FFF;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: 0.3s;
}
.form_input_area input[type="submit"]:hover {
    box-shadow: none;
    opacity: 0.7;
}
.keyword_wrap {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}
.blog_menu .menu select ,
.form_input_area .select_wrap select {
    width: 100%;
}
.blog_menu .menu select ,
.form_input_area select {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.blog_menu .menu .wp-block-categories ,
.blog_menu .menu .wp-block-archives-dropdown {
    margin: 0 0 2rem;
    position: relative;
}
.blog_menu .menu select {
    border: 1px solid #333;
	background: #FFF;
}
.blog_menu .menu .wp-block-latest-posts__list {
    margin-top: 3rem;
}
.andor_wrap {
    position: relative;
}
.input_wrap {
    margin-right: 0.5rem;
}
.select_wrap {
    position: relative;
    margin-right: 1rem;
}
.blog_menu .menu .wp-block-categories:after ,
.blog_menu .menu .wp-block-archives-dropdown::after ,
.andor_wrap::after ,
.select_wrap:after {
    content: "";
    position: absolute;
    right: 14px;
    top: calc(50% - 1px);
    width: 7px;
    height: 7px;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    pointer-events: none;
    transform: translateY(-50%) rotate(-135deg);
}
.search_text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 4rem;
}
.fix_search_word {
    margin-bottom: 1rem;
}
.fix_search_cat {
    font-size: 1.4rem;
}
.fix_search_none {
    text-align: center;
    font-size: 1.6rem;
    margin-top: 2em;
    width: 100%;
}
.sort-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}
.sort-buttons a {
    display: block;
    background-color: #FFF;
    padding: 0.3em 0.8em;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 0 0.5rem;
    border-radius: 2px;
    color: #333;
    transition: 0.3s;
}
.sort-buttons a:hover {
    background-color: #333;
    color: #FFF;
}
.sort-buttons a.current {
    background-color: #333;
    color: #FFF;
}

/* ブログ：アーカイブ */
.blog_list_wrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.blog_top {
    padding: 1px 0;
    position: relative;
    /*background-color: #E0F2FF;*/

}
.blog_list_title {
    font-size: 2.0rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2 !important;
    position: relative;
}
.blog_list_title span {
    font-size: 6.6rem;
}
.archive_title_wrap {
    background-color: #FFF;
    border-radius: 20px;
    padding: 2em 3em;
    margin-bottom: 4em;
}
.blog_arc_title {
    font-size: 2.8rem;
}
.blog_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.blog_list_block {
    width: 48.5%;
    background-color: #FFF;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 3.2rem;
}

.blog_list_thumb {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.blog_list_thumb img {
    width: 100%;
    height: auto;
    transition: 0.3s;
}
.blog_list_thumb img:hover {
    opacity: 0.7;
}
.blog_list_text {
    padding: 1.5em 2.75em 2em;
}
.list_block_title {
    font-size: 2.0rem;
}
.list_block_title a {
    text-decoration: none;
    color: #333;
}
.list_block_title a:hover {
    color: #05C6F1;
}
.blog_content .blog_cat  {
    margin-bottom: 0;
    position: absolute;
    line-height: 0 !important;
    top: 0;
    left: 0;
    z-index: 2;
    overflow: hidden;
}
.blog_cat a {
    background-color: #05C6F1;
    color: #FFF;
    display: inline-block;
    padding: 0.1em 1.0em 0.2em;
    margin-bottom: 0.5em;
    border-radius: 0 0 4px 0;
    text-decoration: none;
    font-size: 1.2rem;
    transition: 0.3s;
    line-height: 1.8;
}
.blog_cat a:hover {
    opacity: 0.7;
}
.blog_content .blog_time {
    font-size: 1.4rem !important;
    color: #666;
    font-weight: 400;
}
.pagination {
    width: 100%;
}
.nav-links {
    margin-top: 4rem;
    display: flex;
    justify-content: center;

}
.nav-links .page-numbers {
    font-size: 1.6rem;
    display: inline-block;
    width: 2.4em;
    height: 2.4em;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50px;
    color: #333;
    margin: 0 0.5rem 0.5rem;
    transition: 0.3s;
    position: relative;
}
.nav-links .page-numbers:hover {
    background-color: #333;
    color: #FFF;
}
.nav-links .page-numbers.current {
    color: #333;
    background: none;
}
.nav-links .page-numbers.prev::before ,
.nav-links .page-numbers.next::before {
    content: " ";
    display: block;
    width: 0.6em;
    height: 0.6em;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
    margin-right: 0.4em;
}
.nav-links .page-numbers.prev::before {
    transform: rotate(-135deg);
    margin-left: 0.2em;
}
.nav-links .page-numbers.next::before {
    transform: rotate(45deg);
    margin-right: 0.2em;
}
.nav-links .page-numbers.prev:hover ,
.nav-links .page-numbers.next:hover {
    background-color: #333;
}
.nav-links .page-numbers.prev:hover::before ,
.nav-links .page-numbers.next:hover::before {
    border-color: #FFF;
}

/* ブログ：記事 */
.blog_wrap {
    position: relative;
    background: url(../img/bg_wrap_top.svg) no-repeat center top #FFDF36;
    background-size: 100%;
}
.blog_wrap.is-fixed {
    margin-top: 160px;
}
.blog_content_header {
    padding-top: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1vw;
}
.blog_content_header::before ,
.blog_content_header::after {
    content: " ";
    display: inline-block;
}
.blog_content_header::before {
    width: 224px;
    height: 168px;
    background: url(../img/img_head_left.png) no-repeat right center;
    background-size: auto 100%;
}
.blog_content_header::after {
    width: 224px;
    height: 168px;
    background: url(../img/img_head_right.png) no-repeat left center;
    background-size: 100% auto;
}
.blog_layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 94%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}
.single_content {
    background-color: #FFF;
    padding: 56px;
    border-radius: 20px;
}
.single_header {
    margin-bottom: 4.5rem;
}
.single_header_data {
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    column-gap: 16px;
    line-height: 1.2;
    margin-bottom: 1.2em;
}
.single_header_data .blog_cat_head {
    border-left: 1px solid #CCC;
    padding-left: 16px;
}
.single_header_data .blog_cat_head a {
    color: #666;
    text-decoration: none;
}
.single_header_data .blog_cat_head a:hover {
    color: #05C6F1;
}
.single_tit {
    font-size: 3.4rem;
}
.single_post h2 {
    font-size: 2.8rem;
    margin-top: 2.5em;
    margin-bottom: 1.2em;
    padding-bottom: 0.5em;
    border-bottom: 3px solid #05C6F1;
}
.single_post h3 {
    font-size: 2.4rem;
    border-left: 6px solid #05C6F1;
    padding-left: 0.5em;
    margin-bottom: 1.2em;
    margin-top: 2.5em;
}
.single_post h4 {
    font-size: 2.0rem;
    background-color: #E7FBFF;
    padding: 0.6em 1.2em;
    margin-top: 2.5em;
    margin-bottom: 1.6em;
}
.single_post h5 {
    font-size: 1.8rem;
    margin-top: 2.0em;
    margin-bottom: 1.4em;
    border-bottom: 1px solid #999;
    display: inline-block;
}
.page_content {
    width: 100%;
    margin: 3vw 0;
}
.blog_content {
    width: 76%;
    margin: 3vw 0;
}
.blog_content p {
    font-size: 1.6rem;
    margin-bottom: 2em;
    line-height: 1.8;
}
.blog_content figure {
    font-size: 1.6rem;
    margin-bottom: 2em;
    line-height: 1.8;
}
.blog_content p:last-of-type {
    margin-bottom: 0;
}
.blog_menu {
    width: 18%;
    margin: 3vw 0;
}
.blog_menu ul {
    padding: 0;
}
.blog_menu li {
    list-style: none;
}
.blog_menu li h2 {
    color: #05C6F1;
    margin-bottom: 1em;
    font-size: 1.6rem;
}
.blog_menu .wp-block-latest-posts.wp-block-latest-posts__list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5em;
    column-gap: 0.8rem;
}
.blog_menu .wp-block-latest-posts.wp-block-latest-posts__list li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.blog_menu .wp-block-latest-posts__featured-image {
    width: 6rem !important;
}
.blog_menu .wp-block-latest-posts__featured-image img {
    border-radius: 4px;
    max-width: 100% !important;
}
.blog_menu .wp-block-latest-posts.wp-block-latest-posts__list li a {
    font-size: 1.4rem;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
    flex: 1;
}
.blog_menu .wp-block-latest-posts.wp-block-latest-posts__list li a:hover {
    opacity: 0.7;
}
.blog_menu .new_post {
    border-top: 1px dotted #333;
}
.blog_menu .bnr_top img {
    margin-bottom: 2rem;
    border-radius: 14px;
    border: 4px solid #FFF;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    transition: 0.3s;
}
.blog_menu .bnr_top:hover {
    opacity: 0.7;
}

.related_posts {
    margin-top: 4vw;
}
.related_posts .related_posts_title {
    font-size: 2.0rem;
    text-align: center;
    margin-bottom: 2.4rem;
}
.related_posts ul {
    display: flex;
    padding: 0;
    list-style: none;
    justify-content: space-between;
}
.related_posts ul li {
    width: 32%;
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
}
.related_posts .blog_list_text {
    padding: 0;
    margin-top: 0.5em;
}
.related_posts .blog_time {
    font-size: 1.2rem !important;
}
.related_posts .list_block_title  {
    font-size: 1.6rem;
}
.related_posts ul li a:hover {
    opacity: 0.7;
}
.related_posts ul li .blog_list_thumb {
    border-radius: 10px;
    overflow: hidden;
}

.related-posts-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 7.2rem;
    margin-bottom: 7.2rem;
    column-gap: 7.2rem;
}
.related-posts-navigation .related-post a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
    font-size: 1.4rem;
    font-weight: 600;
}
.related-posts-navigation .related-post a:hover {
    opacity: 0.7;
}
.related-posts-navigation .previous-post a ,
.related-posts-navigation .next-post a {
    position: relative;
}
.related-posts-navigation .previous-post a::before ,
.related-posts-navigation .next-post a::after {
    content: " ";
    position: absolute;
    display: block;
    width: 0.6em;
    height: 0.6em;
    top: calc(50% - 0.25em);
}
.related-posts-navigation .previous-post a {
    padding-left: 1em;
}
.related-posts-navigation .previous-post a::before {
    border-bottom: 2px solid #333;
    border-left: 2px solid #333;
    transform: rotate(45deg);
    left: 0;
}
.related-posts-navigation .next-post a {
    padding-right: 1em;
}
.related-posts-navigation .next-post a::after {
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    right: 0;
}
.category_lists {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 2.4rem 0;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    column-gap: 4.0rem;
}
.cat_list_title {
    font-size: 2.0rem !important;
    font-weight: 600;
    word-break: keep-all;
}
.category_lists ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 16px;
}
.category_lists ul a {
    display: inline-block;
    color: #FFF;
    background-color: #05C6F1;
    border-radius: 4px;
    padding: 0.2em 0.6em;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.category_lists ul a:hover {
    opacity: 0.7;
}

@media screen and (max-width: 940px) {
    .blog_wrap.is-fixed {
        margin-top: 140px;
    }
}


@media screen and (max-width: 820px) {
    .blog_wrap.is-fixed {
        margin-top: 60px;
    }
    .blog_list_title {
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    .blog_content_header {
        padding-top: 4vw;
    }
    .blog_list_title span {
        font-size: 4.2rem;
    }
    .blog_content_header::before {
        width: 72px;
        height: 84px;
        background-size: 80% auto;
    }
    .blog_content_header::after {
        width: 72px;
        height: 84px;
    }
    .blog_wrap::after {
        width: 100%;
        border-radius: 0;
    }
    .blog_layout {
        margin-top: 0;
        flex-direction: column;
    }
    .blog_content , .blog_menu {
        width: 94%;
        margin: 4vw auto;
    }
    .blog_menu {
        max-width: 40.8rem;
        margin-bottom: 6rem;
    }
    .single_content {
        padding: 6vw;
        border-radius: 10px;
    }
    .archive_title_wrap {
        border-radius: 10px;
        margin-bottom: 2em;
        padding: 1em 1.5em;
    }
    .list_block_title {
        font-size: 1.8rem;
    }
    .blog_arc_title {
        font-size: 2.2rem;
    }
    .related_posts .list_block_title {
        font-size: 1.4rem;
    }
    .blog_content p {
        font-size: 1.4rem;
    }
    .blog_content .blog_time {
        font-size: 1.2rem !important;
    }
    .blog_cat a {
        font-size: 1.0rem;
    }
    .single_header {
        margin-bottom: 3rem;
    }
    .single_tit {
        font-size: 2.6rem;
        line-height: 1.6;
    }
    .single_post h2 {
        font-size: 2.4rem;
    }
    .single_post h3 {
        font-size: 2.0rem;
    }
    .single_post h4 {
        font-size: 1.8rem;
    }
    .single_post h5 {
        font-size: 1.6rem;
    }
    .related_posts {
        margin: 10vw 0 4vw;
    }
    .related_posts .related_posts_title {
        font-size: 1.8rem;
        padding: 1.5rem 0;
        margin-bottom: 1rem;
    }
    .related_posts ul {
        flex-wrap: wrap;
    }
    .related_posts ul li {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    .related_posts ul li:last-of-type {
        border: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .related_posts ul li .related-post-thumbnail {
        width: 30%;
    }
    .related_posts ul li > a {
        width: 66%;
    }
    .blog_menu .wp-block-latest-posts.wp-block-latest-posts__list li a {
        font-size: 1.2rem;
    }
    .blog_menu .wp-block-latest-posts.wp-block-latest-posts__list li:last-of-type {
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
    }
    .blog_list_wrap {
        margin-top: 0;
    }
    .related-posts-navigation .related-post a {
        font-size: 1.2rem;
    }
    .single_header_data {
        font-size: 1.2rem;
    }
    .cat_list_title {
        font-size: 1.6rem !important;
    }
}

@media screen and (max-width: 699px) {
    .blog_list_title span {
        font-size: 3.2rem;
        margin-bottom: 0;
    }
    .single_tit {
        font-size: 2.4rem;
    }
    .single_post h2 {
        font-size: 2.2rem;
    }
    .single_post h3 {
        font-size: 1.8rem;
    }
    .single_post h4 {
        font-size: 1.6rem;
    }
    .single_post h5 {
        font-size: 1.4rem;
    }
    .related-posts-navigation {
        margin-top: 4.8rem;
        margin-bottom: 4.8rem;
        column-gap: 4.8rem;
    }
    .category_lists {
        flex-direction: column;
        row-gap: 0.8rem;
    }
    .category_lists ul {
        row-gap: 0.8rem;
        column-gap: 0.8rem;
    }
    .related_posts ul {
        flex-direction: column;
    }
    .related_posts ul li {
        width: 90%;
        margin: 0 auto 3.2rem;
    }
    .bnr_top {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .blog_menu {
        width: 90%;
    }
    .blog_list_block {
        border-radius: 10px;
        margin-bottom: 1.6rem;
    }
    .list_block_title {
        font-size: 1.4rem;
    }
    .blog_list_text {
        padding: 1em 1.5em 1.5em;
    }
    .nav-links {
        margin: 2rem auto 4rem;
    }
    .blog_arc_title {
        font-size: 1.8rem;
    }
}

.float_menu {
  position: relative;
  display: none;
	z-index: 3;
}
.float_menu div {
  position: fixed;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0, 0.6);
  width: 100%;
	z-index: 3;
}
.float_menu div ul {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 20px auto;
	list-style: none;
	padding: 0;
}
.float_menu .float_tel {
  border: 3px solid #0ABC33;
  background-color: #FFF;
  border-radius: 10px;
  padding: 10px 30px 10px 10px;
}
.float_menu .float_tel dl {
  display: flex;
  align-items: center;
}
.float_menu .float_tel dl dt {
  font-size: 24px;
  background-color: #0ABC33;
  border-radius: 6px;
  padding: 0.6em 0.7em;
  color: #FFF;
  font-weight: 600;
  margin-right: 20px;
  line-height: 1.4;
}
.float_menu .float_tel dl dd {
  text-align: center;
}
.float_menu .float_tel dl .tel_txt {
  font-size: 46px;
  font-family: 'Roboto Mono', monospace;
  color: #0ABC33;
  letter-spacing: -0.05em;
  margin-top: 0.2em;
	line-height: 1;
	font-weight: 900;
}
.float_menu .float_tel dl .tel_txt::before {
  content: " ";
  display: inline-block;
  width: 24px;
  height: 32px;
  background: url(../img/ico_tel.svg) no-repeat center center;
  background-size: 100%;
  margin-right: 0.1em;
}
.float_menu .float_tel dl .time {
  font-size: 14px;
  font-weight: 600;
  margin: 0.7em 0 0;
  line-height: 1.4;
	color: #333;
}
.float_menu .float_form {
  margin: 0 20px;
}
.float_menu .float_form a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border: 3px solid #FEFC00;
  border-radius: 10px;
  color: #FFF;
  text-shadow: 0px 3px 6px rgba(0,0,0, 0.2);
  background: linear-gradient(#FF003A, #C1002D);
  font-size: 26px;
  font-weight: 600;
  height: 100%;
  padding: 0.5em 50px;
  position: relative;
  transition: 0.3s;
	text-decoration: none;
}
.float_menu .float_form a:hover {
  opacity: 1;
  background: linear-gradient(#FF6600, #FF6600);
}
.float_menu .float_form a::before {
  content: " ";
  display: block;
  position: absolute;
  width: 25px;
  height: 15px;
  background: url(../img/ico_arrow_l.svg) no-repeat center center;
  background-size: 100%;
  left: 0.6em;
  top: 50%;
  margin-top: -7.5px;
}
.float_menu .float_form a::after {
  content: " ";
  display: block;
  position: absolute;
  width: 25px;
  height: 15px;
  background: url(../img/ico_arrow_r.svg) no-repeat center center;
  background-size: 100%;
  right: 0.6em;
  top: 50%;
  margin-top: -7.5px;
}
.float_menu .float_form a span {
  font-size: 20px;
  font-weight: 600;
}
.float_menu .float_pagetop a {
  display: flex;
  background-color: #FFF;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #15ADF7;
  font-size: 16px;
  text-align: center;
  padding: 1em 1.2em;
  height: 100%;
  transition: 0.3s;
	text-decoration: none;
}
.float_menu .float_pagetop a:hover {
  background-color: #B5F2FF;
  opacity: 1;
}
.float_menu .float_pagetop a img {
  max-width: 40px;
}
.float_menu .float_pagetop a span {
  font-weight: 600;
  line-height: 1.4;
  margin-top: 0.5em;
}
.float_menu .tab_disp {
  display: none;
}
.float_menu .sp_disp {
  display: none;
}
@media (min-width: 661px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}
@media (max-width: 1080px) {
  .float_menu .float_tel dl dt {
    font-size: 20px;
  }
  .float_menu .float_tel dl .tel_txt {
    font-size: 32px;
  }
  .float_menu .float_tel dl .tel_txt::before {
    width: 18px;
    height: 24px;
  }
  .float_menu .float_tel dl .time {
    font-size: 12px;
  }
  .float_menu .float_form {
    margin: 0 10px;
  }
  .float_menu .float_form a {
    font-size: 22px;
  }
  .float_menu .float_form a span {
    font-size: 16px;
  }
  .float_menu .float_pagetop a {
    font-size: 14px;
  }
  .float_menu .tab_disp {
    display: inherit;
  }
}
@media (max-width: 890px) {

  .float_menu .float_tel {
    padding: 10px;
  }
  .float_menu .float_tel dl {
    flex-direction: column;
  }
  .float_menu .float_tel dl dt br {
    display: none;
  }
  .float_menu .float_tel dl dt {
    padding: 0.2em 0.5em;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    font-size: 18px;
  }
  .float_menu .float_tel dl .tel_txt {
    font-size: 28px;
  }
  .float_menu .float_tel dl .tel_txt::before {
    width: 18px;
    height: 24px;
  }
  .float_menu .float_tel dl .time {
    display: none;
  }
  .float_menu .float_form a {
    font-size: 20px;
  }
  .float_menu .float_form a span {
    font-size: 14px;
  }
  .float_menu .float_pagetop a {
    font-size: 12px;
  }
}
@media (max-width: 660px) {
  footer{
    padding-bottom: 60px;
  }
  .float_menu div ul {
    margin: 5px 1%;
  }
  .float_menu .float_tel {
    padding: 0;
    border: none;
    width: 53%;
  }
  .float_menu .float_tel a {
    color: #FFF;
    text-shadow: 0px 3px 6px rgba(0,0,0, 0.2);
    background: linear-gradient(#10E631, #08AC34);
    border: 3px solid #FEFC00;
    height: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
	  text-decoration: none;
  }
  .float_menu .float_tel dl {
    display: block;
  }
  .float_menu .float_tel dl dt {
    background: none;
    padding: 0;
    font-size: 14px;
  }
  .float_menu .float_tel dl .tel_txt {
    color: #FFF;
    font-size: 22px;
    margin-top: 0;
    line-height: 1.2;
  }
  .float_menu .float_tel dl .tel_txt::before {
    width: 12px;
    height: 16px;
    background: url(../img/ico_tel_w.svg) no-repeat center center;
    background-size: 100%;
    margin: 0.3em 0.2em 0 0;
  }
  .float_menu .float_form {
    width: 45%;
    margin: 0 0 0 2%;
  }
  .float_menu .float_form a {
    font-size: 14px;
    display: block;
    line-height: 1.6;
    padding: 0.5em 26px;
    text-align: center;
    border-radius: 6px;
  }
  .float_menu .float_form a::before ,
  .float_menu .float_form a::after {
    width: 16px;
    height: 10px;
    margin-top: -5px;
  }
  .float_menu .float_pagetop {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 5px;
    top: -60px;
  }
  .float_menu .float_pagetop a {
    box-shadow: 0px 0px 5px rgba(0,0,0, 0.5);
    border-radius: 2px;
  }
  .float_menu .float_pagetop a span {
    display: none;
  }
  .float_menu .sp_disp {
    display: inherit;
  }
}