@charset "utf-8";
/* common.css
-------------------------------------- */
/* wp alginment
-------------------------------------- */

.alignleft {
	/* display: inline; */
	float: left;
}

.alignright {
	/* display: inline; */
	float: right;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

blockquote.alignleft, .wp-caption.alignleft, img.alignleft {
	margin: 0.4em 1.6em 1.6em 0;
}

blockquote.alignright, .wp-caption.alignright, img.alignright {
	margin: 0.4em 0 1.6em 1.6em;
}

blockquote.aligncenter, .wp-caption.aligncenter, img.aligncenter {
	clear: both;
	margin-top: 0.4em;
	margin-bottom: 1.6em;
}

.wp-caption.alignleft, .wp-caption.alignright, .wp-caption.aligncenter {
	margin-bottom: 1.2em;
}

@media all and (max-width:900px) {
	.alignleft {
		/* display: inline; */
		float: none;
		width: 100%;
	}
	.alignright {
		/* display: inline; */
		float: none;
		width: 100%;
	}
	.aligncenter, .alignnone {
		width: 100%;
	}
	blockquote.alignleft, .wp-caption.alignleft, img.alignleft {
		margin: 0.4em auto 1.6em auto;
	}
	blockquote.alignright, .wp-caption.alignright, img.alignright {
		margin: 0.4em auto 1.6em auto;
	}
}

/* 記事成形関係 */

.article_data img {
	max-width: 100%;
    width: auto !important;
	height: auto !important;
	margin-bottom: 1.5rem;
}

.article_data>h1 {
	font-size: 2.8rem;
	margin-bottom: 1.5rem;
}

.article_data h2 {
	font-size: 2.3rem;
	margin-bottom: 1.5rem;
}

.article_data h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.article_data h4 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
}

.article_data h5 {
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
}

.article_data h6 {
	font-size: 1.4rem;
	margin-bottom: 1.5rem;
}

.article_data pre {
	display: block;
	width: 100%;
	padding: 1em;
	margin-bottom: 1.5rem;
	line-height: 2;
	white-space: pre;
	overflow: scroll;
}

.article_data blockquote {
	display: block;
	width: 100%;
	padding: 1em;
	border: 1px solid #999;
	background-color: #f2f2f2;
	border-radius: 10px;
	margin-bottom: 1.5rem;
}

.article_data strong {
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.article_data ul {
	padding-left: 1em;
	width: 100%;
	list-style-position: outside;
	list-style-image: none;
	list-style-type: disc;
	margin-bottom: 1.5rem;
}

.article_data ol {
	padding-left: 1em;
	width: 100%;
	list-style-position: outside;
	margin-bottom: 1.5rem;
}

.article_data>p {
	margin-bottom: 1.5rem;
}

.article_data hr {
	display: block;
	height: 1px;
	border-bottom: 1px solid #999;
}

@media all and (max-width:768px) {
	.article_data h1 {
		font-size: 2rem !important;
	}
	.article_data h2 {
		font-size: 1.8rem !important;
	}
	.article_data h3 {
		font-size: 1.6rem !important;
	}
	.article_data h4 {
		font-size: 1.4rem !important;
	}
	.article_data h5 {
		font-size: 1.2rem !important;
	}
	.article_data h6 {
		font-size: 1.1rem !important;
	}
}
/* header -----------------------------------------------------------------------------------------*/
body {
	padding: 0;
}
/* メイン共通 */
div,
applet,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    font-size: 16px;
}
#main {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: #5a5a5a;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* margin-top: 6rem; */
}

@keyframes show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes show2 {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.main-header__contact {
    position: fixed !important;
}

.mv-top .swiper-container {
    overflow: initial !important;
}

.button {
    border: solid 0.1rem #73c8b2;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 28rem;
    border-radius: 1rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button p {
    color: #73c8b2;
    font-size: 1.7rem;
    margin-bottom: 0 !important;
    padding: 1.5rem 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button p.co_button {
    position: absolute;
    font-size: 1.7rem;
    right: 2.5rem;
    top: 0%;
}
.button:hover p.co_button {
    right: 1.5rem;
}
.button:hover p {
    color: #fff;
}

.button:hover {
    background-color: #73c8b2;
}

#main>.subpage>section[class*="_top"]>p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
}

#main>.subpage>section[class*="_top"]>h2 {
    font-family: "din";
    font-size: 1.4rem;
    padding-top: 7rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

#main>.subpage>section[class*="_top"]>h3 {
    font-weight: 700;
    font-size: 3rem;
    color: #73c8b2;
    /* border-bottom: solid 0.1rem #e6eaea; */
    letter-spacing: 0.4rem;
    padding-bottom: 4.5rem;
    text-align: center;
    /* margin-bottom: 7rem; */
}

#main>.subpage>section[class*="_top"]>h4 {
    font-weight: 700;
    font-size: 2.4rem;
}

@media all and (max-width: 900px) {
    /* #main {
        margin-top: 2rem;
    } */
    #main>.subpage>section[class*="_top"]>h2 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    #main>.subpage>section[class*="_top"]>p {
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }
    #main>.subpage>section[class*="_top"]>h3 {
        font-weight: 700;
        font-size: 2.2rem;
        padding-bottom: 4rem;
        margin-bottom: 0rem;
        letter-spacing: 0.1rem;
        border-bottom: none;
    }
    #main>.subpage>section[class*="_top"]>h4 {
        font-weight: 700;
        font-size: 1.8rem;
        text-align: center;
    }
    .button {
        width: 21rem;
    }
    .button p {
        padding: 0.8rem 0;
        font-size: 1.4rem !important;
    }
    .button p.co_button {
        position: absolute;
        font-size: 1.4rem;
        right: 2rem;
        top: 0%;
    }
    .button:hover p.co_button {
        right: 2rem;
    }
    .button:hover {
        background-color: rgba(255, 255, 255, 0);
    }
    .button:hover p {
        color: #73c8b2;
    }
}
.concept{
    display: flex;
    flex-direction: column;
}
/* content1 content2 共通-----------------------------------------------------------------------*/

.content1 ul, .content2 ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
}

.content1 ul li h4, .content2 ul li h4 {
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: 3.4rem;
}

.content1 ul li p, .content2 ul li p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
    /* opacity: 0; */
}
.content1 ul li .content_button, .content2 ul li .content_button {
    margin: 4rem auto 0;
}
.content1 ul img, .content2 ul img {
    width: 100%;
}

@media all and (max-width: 1200px) {
    .content1 ul, .content2 ul {
        width: 92%;
        margin: 0 4%;
    }
}

@media all and (max-width: 769px) {
    .content1 ul li h4, .content2 ul li h4 {
        width: 75%;
        margin: 0 auto 3.5rem;
        text-align: center;
        font-size: 2.2rem;
    }
    .content1 ul li p, .content2 ul li p {
        margin-bottom: 3rem;
        font-size: 1.4rem;
    }
    .content1 ul li .content_button, .content2 ul li .content_button {
        margin: 3rem auto;
    }
    .content1 ul, .content2 ul {
        width: 100%;
        margin: 0;
    }
}

/* content1 -----------------------------------------------------------------------*/

.content1 ul li:first-child {
    width: 42%;
}

.content1 ul li:last-child {
    width: 50%;
}

@media all and (max-width: 769px) {
    .content1 ul {
        flex-direction: column;
    }
    .content1 ul li:first-child {
        width: 92%;
        margin: 0 auto 30px;
    }
    .content1 ul li:last-child {
        width: 100%;
    }
}

/* content2 -----------------------------------------------------------------------*/

.content2 ul li:last-child {
    width: 42%;
}

.content2 ul li:first-child {
    width: 50%;
}

@media all and (max-width: 769px) {
    .content2 ul {
        flex-direction: column-reverse;
    }
    .content2 ul li:last-child {
        width: 92%;
        margin: 0 auto 30px;
    }
    .content2 ul li:first-child {
        width: 100%;
    }
}

/* content3 -----------------------------------------------------------------------*/

.content3 {
    background-color: #f2f2f2;
    padding: 16rem 0 14rem;
}

.content3 ul {
    max-width: 120rem;
    margin: 0 auto;
}

.content3 ul h4 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: 2.4rem;
}

.content3 ul p {
    max-width: 96rem;
    margin: 0 auto 7rem;
    text-align: center;
    line-height: 1.8;
}
.content3 ul li img {
    width: 100%;
}
@media all and (max-width: 900px) {
    .content3 ul h4 {
        font-size: 1.8rem;
        width: 65%;
        margin: 0 auto 3.5rem;
    }
    .content3 ul p {
        font-size: 1.4rem;
        text-align: left;
        width: 92%;
        margin: 0 auto 3rem;
    }
    .content3 ul img{
        width: 100%;
        height: 30rem;
        object-fit: cover;
    }
    .content3 {
        background-color: #e6eaea;
        padding: 8rem 0 0;
        margin-bottom: 4rem;
    }
}

/* content4 -----------------------------------------------------------------------*/

.content4 ul {
    max-width: 120rem;
    margin: 0 auto;
}

.content4 ul h4 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: 2.4rem;
}

.content4 ul p {
    max-width: 96rem;
    margin: 0 auto 7rem;
    text-align: center;
    line-height: 1.8;
}
.content4 ul li .content_button{
    margin: 0 auto 4rem;
}
.content4 ul img{
    width: 100%;
}
@media all and (max-width: 1200px) {
    .content4 ul {
        width: 92%;
        margin: 0 auto;
    }
}
@media all and (max-width: 900px) {
    .content4 ul h4 {
        font-size: 1.8rem;
        width: 75%;
        margin: 0 auto 3.5rem;
    }
    .content4 ul p {
        width: 92%;
        margin: 0 auto 3rem;
        font-size: 1.4rem;
        text-align: left;
    }
    .content4 ul img{
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .content4 ul li .content_button{
        margin: 0 auto 3rem;
    }
}
@media all and (max-width: 600px) {
    .content4 ul img{
        height: 25.5rem;
    }
}

/* content5 -----------------------------------------------------------------------*/
.content5 {
    background-color: #f2f2f2;
    padding: 16rem 0 14rem;
}
.content5 ul {
    max-width: 120rem;
    margin: 0 auto;
}

.content5 ul h4 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-size: 2.4rem;
}

.content5 ul p {
    max-width: 96rem;
    margin: 0 auto 7rem;
    text-align: center;
    line-height: 1.8;
}
.content5 ul li ul{
    display: flex;
    justify-content: space-between;
}
.content5 ul li ul li{
    width: 31%;
    position: relative;
    display: inline-block;
    overflow: hidden;
    height: 37rem;
}
.content5 ul li ul.twi li{
    width: 48%;
}
.content5 ul li ul li.img_2{
    width: 48%;
}
.content5 ul li ul li.img_3{
    width: 100%;
}
.content5 ul li img{
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    min-height: 100%;
    max-width: none;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
@supports ( object-fit: cover ) {
    .content5 ul li img{
        position: static;
        height: 100%;
        width: 100%;
        left: 0;
        min-width: 100;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        -ms-transform: none;
        -moz-transform: none;
        -webkit-transform: none;
        transform: none;
    }
}
@media all and (max-width: 1200px) {
    .content5>ul{
        width: 92%;
        margin: 0 auto;
    }
}
@media all and (max-width: 900px) {
    .content5 {
        padding: 8rem 0 8rem;
        margin-bottom: 4rem;
    }
    .content5 ul li ul li{
        width: 100%;
        height: auto;
        margin-bottom: 2.5rem;
    }
    .content5 ul h4 {
        font-size: 1.8rem;
        width: 65%;
        margin: 0 auto 3.5rem;
    }
    .content5 ul p {
        width: 92%;
        margin: 0 auto 3rem;
        font-size: 1.4rem;
        text-align: left;
    }
    .content5 ul li ul{
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .content5 ul li ul li img{
        width: 100%;
        object-fit: cover;
        height: auto;

    }
    .content5 ul li ul li:last-child{

        margin: 0 auto;
    }
}

/* content　下線 -----------------------------------------------------------------------*/
.content_line{
    margin-bottom: 10rem;
}
.content_line ul{
    padding-bottom: 10rem;
    border-bottom: dotted 0.1rem #e6eaea;
}
@media all and (max-width: 900px) {
    .content_line{
        margin-bottom: 8rem;
    }
    .content_line ul{
        padding-bottom:8rem;
        border-bottom: dotted 0.1rem #e6eaea;
    }
}
/* content　下線なし -----------------------------------------------------------------------*/
.content_line_none{
    margin-bottom: 15rem;
}
@media all and (max-width: 900px) {
    .content_line_none{
        margin-bottom: 8rem;
    }
}



/* 追加パーツ */

.column ul li img{
    width: 100%;
}
.column ul li h4{
    font-weight: 700;
    font-size: 2.4rem;
}
.column ul li p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
}
.column ul li .b_column{
    margin-left: auto;
    margin-right: auto;
}

.column ul li .b_map iframe{
    width: 100%;
}




/* template1 template2-----------------------------------------------------------------------------*/
.concept_company{
    width: 100%;
    margin: 0 auto;
    min-height: 1%;
}
.concept_company ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.concept_company .heading>p{
    font-size: 1.6rem;
    margin-bottom: 4.3rem;
    line-height: 1.8;
    text-align: left;
}
@media all and (max-width: 900px) {
    .concept_company .heading>p{
        font-size: 1.6rem;
        margin-bottom: 3rem;
        width: 90%;
        margin: 0 auto 4rem;
    }
}
/* .concept_company ul img{
    width: 100%;
    object-fit: cover;
} */
/* right */
.concept_company.right ul li:first-child{
    width: 25%;
    margin-left:10%;
}
.concept_company.right ul li:last-child{
    width: 60%;
}



/* left */
.concept_company.left ul li:first-child{
    width: 60%;
}
.concept_company.left ul li:last-child{
    width: 25%;
    margin-right: 10%;
}
@media all and (max-width: 1500px) {
    .concept_company.right ul li:first-child{
        width: 30%;
        margin-left:5%;
    }
    .concept_company.left ul li:last-child{
        width: 30%;
        margin-right: 5%;
    }
}
@media all and (max-width: 900px) {
    .concept_company{
        max-width: 192rem;
        width: 100%;
        margin: 0 auto;
    }
    .concept_company ul img{
        width: 100%;
    }
    .concept_company h2{
        text-align: center;
        padding-top: 8rem;
    }
    .concept_company h3{
        text-align: center;
        margin-bottom: 3rem !important;
    }
    /* right */
    .concept_company.right ul{
        flex-direction: column;
    }
    .concept_company.right ul li:first-child{
        width: 100%;
        margin-left:0%;
    }
    .concept_company.right ul li:last-child{
        width: 100%;
        position: relative;
    }
    .concept_company.right ul li:last-child a{
        position: absolute;
        top: 50%;
        left: 50%;
        border: solid 1px #fff;
        transform: translateY(-50%) translateX(-50%);
        -webkit- transform: translateY(-50%) translateX(-50%);
        background-color:rgba(0,0,0,0.2);
    }
    .concept_company.right ul li:last-child a p{
        color: #fff;
    }
    /* left */
    .concept_company.left ul{
        flex-direction: column-reverse;
    }
    .concept_company.left ul li:first-child{
        width: 100%;
        position: relative;
    }
    .concept_company.left ul li:last-child{
        width: 100%;
        margin-right: 0%;
    }
    .concept_company.left ul li:first-child a{
        position: absolute;
        top: 50%;
        left: 50%;
        border: solid 1px #fff;
        transform: translateY(-50%) translateX(-50%);
        -webkit- transform: translateY(-50%) translateX(-50%);
        background-color:rgba(0,0,0,0.2);
    }
    .concept_company.left ul li:first-child a p{
        color: #fff;
    }
}
@media all and (max-width: 600px) {
}

/* cat_links ページヘッダー付近のカテゴリリンク
--------------------------------------------------------------------------------------------------------------------------- */

.cat_links {
    width: 100%;
    margin: 0 auto;
}

.cat_links>ul {
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* .cat_links>ul>li {
    margin: 0 auto;
} */

.cat_links>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    padding: 3px 0;
    text-align: center;
    position: relative;
    font-weight: bold;
    height: 70px;
    color: #73c8b2;
    border: 1px solid #73c8b2;
    font-size: 1.6rem;
}

/* .cat_links>ul>li>a::after {
    content: '→';
    width: auto;
    height: 1em;
    vertical-align: middle;
    display: inline-block;
    position: absolute;
    right: 1.5em;
    top: 25%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
@media all and (-ms-high-contrast: none) {
    .cat_links>ul>li>a::after {
        top: 31%;
    }
} */
.cat_links>ul>li>a:hover, .cat_links>ul>li>a.active {
    background-color: #feb52b;
    color: #fff;
    border: 1px solid #feb52b;
}
.cat_links>ul>li:hover>a::after{
    right: 0.8em;
}
@media all and (max-width: 900px) {
    .cat_links {
        padding: 1em 0;
        margin: 0 auto;
    }
    .cat_links>ul{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .cat_links>ul>li>a {
        padding: 3px;
        font-size: 1.3rem;
    }
    .cat_links>ul>li>a::after {
        right: 0.5em;
    }
    .cat_links>ul>li:hover>a::after{
        right: 0.5em;
    }
}


/* policy part プライバシーポリシー
--------------------------------------------------------------------------------------------------------------------------*/
.policy li{
    margin-bottom: 40px;
}
.policy :last-child{
    margin-bottom: 0px;
}
.policy li h4{
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.3em;
}
.policy li p{
    line-height: 1.8;
}


/* links part リンク一覧
--------------------------------------------------------------------------------------------------------------------------*/
.links_in{
    display: flex;
    justify-content: space-between;
}
.links_in ul li.txt a{
    display: block;
    width: 100%;
    padding: 0.3em 0;
}
.links_in ul li.txt a::before {
    content: '▶︎';
    color: #73c8b2;
    display: inline-block;
    margin-right: 0.3em;
}

.links_in ul li.txt_sub a::before {
    content: '-';
    display: inline-block;
    margin-right: 0.5em;
}
.links_in ul li.txt_sub a {
    display: block;
    width: 100%;
    padding: 0.5em 0;
    font-size: 1.4rem;
}

.tem6 ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 100px;
}
.tem6 ul li img{
    width: 100%;

}

@media all and (max-width: 900px) {
    .links_in{
        flex-wrap: wrap;
    }
}





























/* anime　--------------------------------------------------------------------------------*/
/* fide */

@keyframes fade-up {
	0% {
		transform: translateY(2rem);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.movetext{opacity:0;}
.movetext span{opacity:0;}

.move.on{ 
    opacity: 0;
    animation-name:leftfide;
    animation-duration:1s;
    animation-fill-mode: forwards;
}
@keyframes leftfide {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    0% {
        opacity: 50%;
        transform: translateX(-20px);
    }
    100%{
        opacity: 1;
        transform: translateX(0);
    }
} 

@media all and (max-width: 900px) {
    .movetext{opacity:1 !important;}
    .movetext span{opacity:1 !important;}
}



.concept_company.right .con_com_imganime {
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 100%;
}

@keyframes blockSlide_1 {
    0% {
        transform: translateX(100%);
        width: 100%;
    }
    30% {
        width: 100%;
        transform: translateX(0);
        opacity: 1;
    }
    40% {
        width: 100%;
        transform: translateX(0);
        opacity: 0;
    }

    100% {
        width: 100%;
        transform: translateX(0);
        opacity: 0;
    }
}

.concept_company.right .wrap_animated::after {
    animation: blockSlide_1 2s ease both;
    position: absolute;
    background-color: #e6eaea;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


.concept_company.right .con_com_img {
    transform: translateX(100%);
    width: 300rem;
}

@keyframes imgFadeIn_1 {
    0% {
        opacity: 0;
    }
    30% {
        transition: 1s;
        -webkit-transition: 1s;
        opacity: 0;
    }
    40% {
        transform: scale(1.1);
        transition: 1s;
        -webkit-transition: 1s;
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }

}

.concept_company.right .img_animated {
    animation: imgFadeIn_1 2s ease both;
}



.concept_company.left .con_com_imganime {
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 100%;
}

@keyframes blockSlide_2 {
    0% {
        width: 0%;
    }
    30% {
        width: 100%;
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        width: 100%;
        transform: translateX(0);
        opacity: 0;
    }
    100% {
        width: 100%;
        transform: translateX(0);
        opacity: 0;
    }
}

.concept_company.left .wrap_animated::after {
    animation: blockSlide_2 1.5s ease both;
    position: absolute;
    background-color: #e6eaea;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.concept_company.left .con_com_img {
    transform: translateX(100%);
    width: 300rem;
}

@keyframes imgFadeIn_2 {
    0% {
        opacity: 0;
    }
    30% {
        transition: 1s;
        -webkit-transition: 1s;
        opacity: 0;
    }
    40% {
        transform: scale(1.1);
        transition: 1s;
        -webkit-transition: 1s;
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }

}

.concept_company.left .img_animated {
    animation: imgFadeIn_2 1.5s ease both;
}

@media all and (-ms-high-contrast: none) {
    .concept_company.right .con_com_img {
        transform: translateX(100%);
        width: 100%;
    }
    .concept_company.left .con_com_img {
        transform: translateX(100%);
        width: 100%;
    }
}
@media all and (max-width: 900px) {
    .concept_company.right .wrap_animated::after {
        animation: none;
        opacity: 0;
    }

    .concept_company.right .con_com_img {
        transform: translateX(0%);
    }

    .concept_company.right .img_animated {
        animation: none;
    }

    .concept_company.left .wrap_animated::after {
        animation: none;
        opacity: 0;
    }

    .concept_company.left .con_com_img {
        transform: translateX(0%);
    }

    .concept_company.left .img_animated {
        animation: none;
    }
}


.pagination {
  max-width: 730px;
  width: 90%;
  margin: auto;
  text-align: center;
}

.pagination * {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  padding: 0 0.5em;
  font-size: 2.5rem;
}

.pagination .current {
  color: #00552e;
}


.b_center{
    margin: 4rem auto 0;
}

@media all and (max-width: 900px) {
    .b_center{
        margin: 2rem auto 4rem;
    }

}




/* movie 
------------------------------------------------------------------------------*/
.youtube {
  position: relative;
  width:100%;
  height:0;
  padding-top: 56.25%; 
}

.youtube iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mp4_video {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mp4_video video {
    width: 100%;

}


/* post_template1 -----------------------------------------------------------------------------*/
.post_template1{
    text-align: center;
}
.post_template1 .heading>h2{
    font-family: "din";
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}
.post_template1 .heading>h3{
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 6rem;
    color: #73c8b2;
}
.post_template1 .heading>p{
    font-size: 1.6rem;
    margin-bottom: 4rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 5rem;
}
@media all and (max-width: 900px) {
    .post_template1 .heading>h2{
        /* padding-top: 6rem; */
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    .post_template1 .heading>h3{
        font-weight: 700;
        font-size: 2.2rem;
        margin-bottom: 5rem;
    }
    .post_template1 .heading>p{
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }
}
.post_template1 .works_main img{
    width: 100%;
    /* object-position: right top; */
}

.post_template1 .swiper-slide .slide_in .in_hover{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
    flex-direction: column;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    transform: translate3d(0,0,100);
}
.post_template1 .swiper-slide .slide_in:hover .in_hover{
    opacity: 1;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.2);
}
@keyframes flip-in-hor-top {
	0% {
		transform: translateY(2rem);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
.post_template1 .swiper-slide .slide_in .in_hover h4{
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 7rem;
    width: 75%;
    margin: 0 auto;
    z-index: 1000;
    filter: drop-shadow(1.5px 1.5px 3px rgba(0, 0, 0, 0.8));
}
.post_template1 .swiper-slide .slide_in:hover .in_hover h4,.post_template1 .swiper-slide .slide_in:hover .in_hover>p,
.post_template1 .swiper-slide .slide_in:hover .in_hover .button{
    animation: flip-in-hor-top 0.3s linear 0s;
    z-index: 1000;
}
.post_template1 .swiper-slide .slide_in .in_hover>p{
    font-size: 1.7rem;
    margin-bottom: 5rem;
    color: #fff;
    text-align: center;
    z-index: 1000;
    filter: drop-shadow(1.5px 1.5px 3px rgba(0, 0, 0, 0.8));
}
.post_template1 .swiper-slide .slide_in .in_hover img{
    width: 100%;
    object-fit: cover;
}
.post_template1 .swiper-slide .slide_in .in_hover .button{
    /* border: solid 0.1rem #fff; */
    width: 80%;
    max-width: 22rem;
    margin: 0 auto;
    border-radius: 4rem;
    z-index: 1000;
}
/* .post_template1 .swiper-slide .slide_in .in_hover .button p{
    color: #fff;
    filter: drop-shadow(1.5px 1.5px 3px rgba(0, 0, 0, 0.8));
}
.post_template1 .swiper-slide .slide_in .in_hover .button:hover{
    background-color: #73c8b2;
    border: solid 0.1rem #73c8b2;
}
.post_template1 .swiper-slide .slide_in .in_hover .button:hover p{
    filter: drop-shadow(1.5px 1.5px 3px rgba(0, 0, 0, 0));
} */
.post_template1 .swiper-slide .slide_in li:last-child{
    overflow: hidden;

}
.post_template1 .swiper-slide .slide_in li:last-child img{
  transition: .3s;
  -webkit-transition: .3s;
}

.post_template1 .swiper-slide .slide_in:hover li:last-child img{
  transform: scale(1.1);
}
.post_template1 .works_main>a.button{
    margin: 9rem auto 0;

}
.post_template1 .swiper-button-prev{
    border-radius: 0 5rem 5rem 0;
    height: 10rem;
    width: 5rem;
    background-color: rgba(0, 0, 0, 0.5);
    top:56%;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);
    left: 0;

}
.post_template1 .swiper-button-next{
    border-radius: 5rem 0 0 5rem;
    height: 10rem;
    width: 5rem;
    background-color: rgba(0, 0, 0, 0.5);
    top:56%;
    transform: translateY(-50%);
    -webkit- transform: translateY(-50%);

    right: 0;
}

.post_template1 .swiper-button-prev:after,.post_template1 .swiper-button-next:after{
    font-size: 1.6rem;
    color: #fff;
}
.post_template1 .swiper-button-prev:after{
    content: '←';
}
.post_template1 .swiper-button-next:after{
    content: '→';
}
.post_template1 .swiper-slide img{
    width: 100%;
    object-fit: cover;
    height: 25vw;
}

@media all and (max-width: 900px) {
    .post_template1 .swiper-slide{
        background-color: #fff;
    }

    .post_template1 .swiper-slide .slide_in .in_hover{
        position: static;
        top: 50%;
        left: 50%;
        transform: translateY(0%) translateX(0%);
        -webkit- transform: translateY(0%) translateX(0%);
        width: 100%;
        opacity: 1;
    }
    .post_template1 .swiper-slide .slide_in .in_hover h4{
        font-size: 1.8rem;
        letter-spacing: 0.1em;
        padding-top: 4rem;
        margin-bottom: 1rem;
        color: #5a5a5a;
        filter: drop-shadow(1.5px 1.5px 3px rgba(0, 0, 0, 0));
    }
    .post_template1 .swiper-slide .slide_in .in_hover>p{
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        color: #5a5a5a;
        filter: drop-shadow(1.5px 1.5px 3px rgba(0, 0, 0, 0));
    }
    .post_template1 .swiper-slide .slide_in img{
        width: 100%;
        object-fit: cover;
        height: 40rem;
    }
    .post_template1 .swiper-slide .slide_in .in_hover .button{
        /* border: solid 0.1rem #5a5a5a; */
        width: 13rem;
        margin: 0 auto 4rem;
        border-radius: 4rem;
        justify-content: space-between;
        padding-left: 2rem;
    }
    .post_template1 .swiper-slide .slide_in .in_hover .button p{
        /* color: #5a5a5a; */
        font-size: 1.1rem !important;
        /* filter: drop-shadow(1.5px 1.5px 3px rgba(0, 0, 0, 0)); */
    }
    .post_template1 .works_main>a.button{
        margin: 3.5rem auto 0

    }
    .post_template1 .swiper-button-prev{
        height: 6rem;
        width: 3rem;
        justify-content: flex-start;
        padding-left: 0.4rem;
        top: 63%;

    }
    .post_template1 .swiper-button-next{
        height: 6rem;
        width: 3rem;
        justify-content: flex-end;
        padding-right: 0.4rem;
        top: 63%;
    }

    .post_template1 .swiper-button-prev:after,.post_template1 .swiper-button-next:after{
        font-size: 1.4rem;
        color: #fff;
    }
    /* .post_template1 .swiper-slide .slide_in .in_hover .button:hover{
        background-color: #fff;
        border: solid 0.1rem #5a5a5a;
    } */
    .post_template1 .swiper-slide .slide_in:hover .in_hover h4,.post_template1 .swiper-slide .slide_in:hover .in_hover>p,
    .post_template1 .swiper-slide .slide_in:hover .in_hover .button{
        animation: none;
        z-index: 1000;
    }
    .post_template1 .swiper-slide .slide_in li:last-child img{
    transition: 0s;
    -webkit-transition: 0s;
    }

    .post_template1 .swiper-slide .slide_in:hover li:last-child img{
    transform: scale(1);
    }
    .post_template1 .swiper-slide .slide_in:hover .in_hover{
        background-color: rgba(0, 0, 0, 0.0);
    }
}
@media all and (max-width: 600px) {
    .post_template1 .swiper-slide .slide_in img{
        height: 21.7rem;
    }
}

/* post_template2 -----------------------------------------------------------------------------*/
.post_template2{
    min-height: 1%;

}
.post_template2 .heading>p{
    font-size: 1.6rem;
    margin-bottom: 4rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 5rem;
}
@media all and (max-width: 900px) {
    .post_template2 .heading>p{
        font-size: 1.6rem;
        margin-bottom: 3rem;
    }
}
.post_template2 .news_main{
    width: 100%;
}
.post_template2 .news_main .swiper-custom-parent{
    width: 100%;
    position: relative;
    margin-bottom: 6rem;
}
.post_template2 .news_main .swiper-container3{
    width: 85%;
}
.post_template2 .news_main h4{
    font-size: 1.4rem;
    margin: 0.5rem;
}
.post_template2 .news_main .slide_in p{
    font-size: 1.4rem;
    line-height: 2.2rem;
}
.post_template2 .news_main img{
    width: 100%;
}
.post_template2 .extension{
    overflow: hidden;
    position: relative;
    padding-bottom: 100%;
}
.post_template2 .extension img{
    transition: .3s;
    -webkit-transition: .3s;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post_template2 .extension:hover img{
  transform: scale(1.1);
}
.post_template2 .button{
    margin: 0 auto;
}
.post_template2 .swiper-button-prev,.post_template2 .swiper-button-next{
    border-radius: 50%;
    height: 5rem;
    width: 5rem;
    background-color: #e6eaea;
    top:41.5%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.post_template2 .swiper-button-prev:hover,.post_template2 .swiper-button-next:hover{
    background-color: #73c8b2;
}

.post_template2 .swiper-button-prev:after,.post_template2 .swiper-button-next:after{
    font-size: 1.6rem;
    color: #5a5a5a;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
.post_template2 .swiper-button-prev:hover:after,.post_template2 .swiper-button-next:hover:after{
    color: #fff;
}
.post_template2 .swiper-button-prev:after{
    content: '←';
}
.post_template2 .swiper-button-next:after{
    content: '→';
}

.post_template2 .news_numbar{
    max-width: 120rem;
    position: relative;
    margin: 0 auto 6rem;
}
.post_template2 .number_inn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.post_template2 .number_inn>a{
    width: 22%;
    margin: 0 1.5%;
}
/* .post_template2 .number_inn>a:first-child{
    margin: 3%;
} */
@media all and (max-width: 1400px) {
    .post_template2 .news_main .news_img{
        height: 20vw;
    }
}
@media all and (max-width: 900px) {
    .post_template2{
        margin-bottom: 0rem;
        border-bottom: none;
        padding-top: 0;
    }
    .post_template2 .news_numbar{
        display: none;
    }
    .post_template2 .news_main{
        margin: 0 4%;
        width: 90%;
    }
    .post_template2 .swiper-custom-parent,.post_template2 .news_number{
        display: none;
    }
    .post_template2 .sp_news{
        margin-bottom: 4rem;
        width: 100%;
    }
    .post_template2 .sp_news li{
        padding-bottom: 1.8rem;
        border-bottom: solid 0.1rem #e6eaea;
        margin-bottom: 1.8rem;
    }
    .post_template2 .sp_news li:last-child{
        margin-bottom: 0rem;
        border-bottom: none;
    }
    .post_template2 .sp_news li a{
        display: flex;
        justify-content: space-between;
    }
    .post_template2 .sp_news li a .news_img{
        width: 35%;
        padding-bottom: 35%;
        position: relative;
    }
    .post_template2  .sp_news li a .news_img img{
        width: auto;
        position: absolute;
        height: 100%;
        object-fit: cover;
    }
    .post_template2 .sp_news li .news_text{
        width: 60%;
    }
    .post_template2 .news_main h4{
        font-size: 1.3rem;
        margin: 0 0 0.5rem 0;
    }
    .post_template2 .news_main p{
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 0;
    }
    .post_template2 .button{
        margin: 0 auto;
    }
}
@media all and (max-width: 600px) {
    .post_template2 .news_main h4{
        font-size: 1.2rem;
    }
    .post_template2 .news_main p{
        font-size: 1.4rem;
        font-weight: 700;
    }
}


/* .C_menu_top
---------------------------------------------------------------------------------------------------------------------------- */
header .C_menu_top{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
header .C_menu_top_name{
    width: 30%;
    margin: 1rem 0 1rem 2rem;
}
header .C_menu_top_name a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 3rem;
}
header .C_menu_top_name img{
    margin-right: 2rem;
    height: 100%;
    width: auto;
}
header .C_menu_top_sns{
    display: flex;
    justify-content: center;
    width: 20%;
    margin: 1rem 0;
}
header .C_menu_top_sns li{
    margin-right: 1rem;
}
header .C_menu_top_sns li:last-child{
    margin-right: 0;
}
header .C_menu_top_sns a{
    height: 3rem;
    display: block;
}
header .C_menu_top_sns svg{
    height: 3rem;
    width: auto;
}
header .C_menu_top_link{
    display: flex;
    justify-content: flex-end;
    width: 30%;
    margin-right: 1%;
}
header .C_menu_top_link div{
    display: flex;
    align-items: center;
    width: 45%;
    position: relative;
    transition: all 0.3s;
}
header .C_menu_top_link div::after{
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    border: 2px solid;
    border-color:  transparent transparent #fff #fff;
    transform: rotate(-135deg) skew(5deg,5deg);
    right: 15%;
    transition: all 0.3s;
}
header .C_menu_top_link div:hover::after{
    right: 10%;
}
header .C_menu_top_link div.one{
    background-color: #00aced;
    border-radius: 0 0 3rem 3rem;
    margin-right: 2rem;


}
header .C_menu_top_link div.two{
    background-color: #3b5998;
    border-radius: 0 0 3rem 3rem;

}
header .C_menu_top_link div a{
    display: block;
    height: 100%;
    padding: 0.4rem 0 0.4rem 2.2rem;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #fff;

}
header .C_menu_top_link div a img{
    width: 1.8rem;
    height: auto;
    margin-right: 1rem;
}

/* .C_menu_middle
---------------------------------------------------------------------------------------------------------------------------- */
header .C_menu_middle{
    max-width: 20rem;
    width: 50%;
    margin: 2rem auto;
    transition: all 0.3s;
    height: 100%;
    opacity: 1;

}
header .C_menu_middle.scroll{
    height: 0;
    overflow: hidden;
    margin: 0rem auto;
    opacity: 0;
}
header .C_menu_middle_logo img {
    width: 100%;
    height: auto;

}

/* .C_menu_buttom
---------------------------------------------------------------------------------------------------------------------------- */
header .C_menu_buttom{
    position: relative;
}

header .C_menu_buttom_menu{
    display: flex;
    justify-content: center;
    align-items: initial;
    width: 100%;
    height: 9rem;
}

header .C_menu_buttom_menu>li {
    width: 18rem;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
header .C_menu_buttom_menu>li>a {
    width: 100%;
    height: 9rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .C_menu_buttom_menu>li ul {
    position: absolute;
    opacity: 0;
    display: none;
}

header .C_menu_buttom_menu>li ul li a {
    font-weight: 700;
    font-size: 1.4rem;
    opacity: 1;
    color: #5a5a5a;
    padding: 0 0 0.2rem;
}

header .C_menu_buttom_menu>li ul li a:hover {
    opacity: 0.5;
}

header .C_menu_buttom_menu>li:hover ul {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    display: flex;
    justify-content: center;
    top: 9rem;
    right: 0;
    animation: show .3s linear 0s;
    border-bottom: solid 0.1rem #e6eaea;
}

header .C_menu_buttom_menu>li:hover ul li {
    width: 25rem;
    padding: 2.5rem 0;
    text-align: center;
}
header .C_menu_buttom_menu>li p {
    font-family: "din";
    font-size: 1.75rem;
    text-align: center;
    letter-spacing: .2em;
    position: relative;
    color: #5a5a5a;
    width: 100%;
    border-left: solid 1px #5a5a5a;
}
header .C_menu_buttom_menu>li p::before{
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    border: 2px solid;
    border-color:  transparent transparent #5a5a5a #5a5a5a;
    transform: rotate(-45deg) skew(5deg,5deg);
    top: 130%;
    left: 48%;
    transition: all 0.3s;
}
header .C_menu_buttom_menu>li:last-child p{
    border-right: solid 1px #5a5a5a;
}
header .C_menu_buttom_menu>li:hover p::before{
    border-color:  transparent transparent #9f7d6e #9f7d6e;
    top: 145%;
}
/* contentホバーによる文章差し替え */

header .C_menu_buttom_menu>li .h_name {
    display: block;
}

header .C_menu_buttom_menu>li:hover .h_name {
    display: none;
    animation: show2 .3s linear 0s;
}

header .C_menu_buttom_menu>li .h_name_hover {
    display: none;
    color: #9f7d6e;
}

header .C_menu_buttom_menu>li:hover .h_name_hover {
    display: block;
    animation: show .3s linear 0s;
}
@media all and (max-width: 900px) {
    .C_menu{
        display: none;
    }
}


/* .B_menu_top
---------------------------------------------------------------------------------------------------------------------------- */
header .B_menu_top{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
header .B_menu_top_name{
    width: 45%;
    margin: 1rem 0 1rem 2rem;
}
header .B_menu_top_name a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 3rem;
}
header .B_menu_top_name img{
    margin-right: 2rem;
    height: 100%;
    width: auto;
}
header .B_menu_top_sns{
    display: flex;
    justify-content: flex-end;
    margin: 1rem;
}
header .B_menu_top_sns li{
    margin-right: 1rem;
}
header .B_menu_top_sns li:last-child{
    margin-right: 0;
}
header .B_menu_top_sns a{
    height: 3rem;
    display: block;
}
header .B_menu_top_sns svg{
    height: 3rem;
    width: auto;
}
header .B_menu_top_link{
    display: flex;
    justify-content: flex-end;
    width: 50%;
}
header .B_menu_top_link>div{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    max-width: 20rem;
    transition: all 0.3s;
}
header .B_menu_top_link div::after{
    content: "→";
    position: absolute;
    font-size: 1.4rem;
    right: 15%;
    color: #fff;
    transition: all 0.3s;
}
header .B_menu_top_link div:hover::after{
    right: 10%;
}
header .B_menu_top_link div.one{
    background-color: #00aced;

}
header .B_menu_top_link div a{
    display: block;
    height: 100%;
    padding: 0.4rem 2.5rem 0.4rem 2.2rem;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    color: #fff;

}
header .B_menu_top_link div a img{
    width: 1.8rem;
    height: auto;
    margin-right: 1rem;
}


/* .B_menu_buttom
---------------------------------------------------------------------------------------------------------------------------- */
#topview .B_menu_buttom{
    position: relative;
    display: block;
}

#topview .B_menu_buttom_menu{
    display: flex;
    justify-content: center;
    align-items: initial;
    width: 100%;
    height: 9rem;
}

#topview .B_menu_buttom_menu>li {
    width: 18rem;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
#topview .B_menu_buttom_menu>li>a {
    width: 100%;
    height: 9rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
#topview .B_menu_buttom_menu>li ul {
    position: absolute;
    opacity: 0;
    display: none;
}

#topview .B_menu_buttom_menu>li ul li a {
    font-weight: 700;
    font-size: 1.4rem;
    opacity: 1;
    color: #5a5a5a;
    padding: 0 0 0.2rem;
}

#topview .B_menu_buttom_menu>li ul li a:hover {
    opacity: 0.5;
}

#topview .B_menu_buttom_menu>li:hover ul {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    display: flex;
    justify-content: center;
    top: 9rem;
    right: 0;
    animation: show .3s linear 0s;
    border-bottom: solid 0.1rem #e6eaea;
}

#topview .B_menu_buttom_menu>li:hover ul li {
    width: 25rem;
    padding: 2.5rem 0;
    text-align: center;
}
#topview .B_menu_buttom_menu>li p {
    font-family: "din";
    font-size: 1.75rem;
    text-align: center;
    letter-spacing: .2em;
    position: relative;
    color: #5a5a5a;
    width: 100%;
    border-left: solid 1px #5a5a5a;
}
#topview .B_menu_buttom_menu>li p::before{
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    border: 2px solid;
    border-color:  transparent transparent #5a5a5a #5a5a5a;
    transform: rotate(-45deg) skew(5deg,5deg);
    top: 130%;
    left: 48%;
    transition: all 0.3s;
}
#topview .B_menu_buttom_menu>li:last-child p{
    border-right: solid 1px #5a5a5a;
}
#topview .B_menu_buttom_menu>li:hover p::before{
    border-color:  transparent transparent #9f7d6e #9f7d6e;
    top: 145%;
}
/* contentホバーによる文章差し替え */

#topview .B_menu_buttom_menu>li .h_name {
    display: block;
}

#topview .B_menu_buttom_menu>li:hover .h_name {
    display: none;
    animation: show2 .3s linear 0s;
}

#topview .B_menu_buttom_menu>li .h_name_hover {
    display: none;
    color: #9f7d6e;
}

#topview .B_menu_buttom_menu>li:hover .h_name_hover {
    display: block;
    animation: show .3s linear 0s;
}




@media all and (max-width: 900px) {
    .B_menu,#topview .B_menu_buttom{
        display: none;
    }
}


.C_footer{
    display: flex;
    justify-content: space-between !important;
    align-items: stretch !important;
}
.C_footer_main,.C_footer_map{
    width: 50%;
}
.C_footer_main ul{
    display: flex;
    justify-content: center;
}

#footer .C_footer_main .f_name {
    margin: 7rem 0 4rem;
}
#footer .C_footer_main .f_price {
    margin-bottom: 2rem;
}
#footer .C_footer_main .f_link {
    margin: 0 0 7rem;
}

#footer .C_footer_map iframe {
    width: 100%;
    height: 100%;
}

#footer .f_cc {
    border-top: solid 1px #e6eaea;
    padding: 1.5rem 0 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#footer .f_cc p {
    font-size: 1.1rem;
    font-weight: 700;
}

@media all and (max-width: 900px) {
    .C_footer{
        flex-direction: column;
    }
    .C_footer_main,.C_footer_map{
        width: 100%;
    }
    #footer .C_footer_map {
        display: flex;
    }
    #footer .C_footer_map iframe {
        width: 100%;
        height: 260px;
    }
}

/* .B_footer
----------------------------------------------------------------------------------------------------------------------------- */
#footer .B_footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 0;
}
#footer .B_footer_innter{
    display: flex;
    justify-content: flex-start;
    margin-left: 5%;
}
#footer .B_footer_innter div{
    width: 320px;
    padding-right: 3%;
}
#footer .B_footer_link{
    width: 300px;
    margin-right: 5%;
}
#footer .B_footer_sns ul{
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}
#footer .B_footer_sns li{
    width: 4rem;
    height: auto;
    margin:0 1rem ;
}
#footer .B_footer__price p span{
    margin-left: 5rem;

}
#footer .B_footer__price p .res_C{
    display: none;

}
#footer .B_footer_page{
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer .B_footer_page a{
   padding-right: 2rem;
   position: relative;
   font-size: 1.4rem;
}
#footer .B_footer_page a:hover{
    opacity: 0.7;
}
#footer .B_footer_page a::after{
    content: "";
    position: absolute;
    top: 33%;
    right: 0.8rem;
    width: 0.6rem;
    height: 0.6rem;
    border: 1px solid;
    border-color:  transparent transparent #5a5a5a #5a5a5a;
    transform: rotate(225deg) skew(4deg,4deg);
}
#footer .B_cc {
    padding: 0.8rem 0 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00aced;
}

#footer .B_cc p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
@media all and (max-width: 1300px) {
    #footer .B_footer_innter{
        flex-direction: column;
    }
}
@media all and (max-width: 800px) {
    #footer .B_footer{
        width: 94%;
        margin: 0 auto;
    }
    #footer .B_footer_innter div{
        width: 320px;
        padding-right: 3%;
        margin-bottom: 2.5rem;
        
    }
    #footer .B_footer__price p span{
        margin-left: 0;

    }
    #footer .B_footer__price p .res_C{
        display: block;

    }
}
@media all and (max-width: 600px) {
    #footer .B_footer{
        flex-direction: column;
    }
    #footer .B_footer_innter{
        width: 94%;
        margin: 0 auto 4rem;
    }
    #footer .B_footer__price{
        justify-content: flex-start;
    }
    #footer .B_footer_link{
        width: 94%;
        margin: 0 auto;
    }
    #footer .B_footer_sns ul{
        justify-content: flex-start;
    }
    #footer .B_footer_page{
        justify-content: flex-start;
    }
}


.sp_sns_cco {
    width: 100%;
    position: relative;
    right: 0rem;
    bottom: 4%;
    z-index: 999;
    padding-bottom: 3rem;
    display: block;
}
.sp_sns_cco ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sp_sns_cco ul li {
    width: 4rem;
    margin: 0.8rem;
}
.sns_item {
    display: none;
}
@media all and (max-width: 900px) {
    .sns_item {
        width: 100%;
        position: relative;
        right: 0rem;
        bottom: 4%;
        z-index: 999;
        padding-bottom: 0rem;
        display: block;
    }
    .sns_item ul {
        display: flex;
        justify-content: center;
        align-items: center;
    }
        .sns_item ul li {
        width: 4rem;
        margin: 0.8rem;
    }
}

.campany_overview h4{
    text-align: center;
    margin: 0 0 2.5rem;
    font-weight: 700;
    font-size: 2.4rem;
}
.campany_overview ul{
    text-align: center;
    border-top: solid 0.1rem #4d4d4d;
}
.campany_overview ul li{
    display: flex;
    justify-content: space-between;
    border-bottom: dotted 0.1rem #4d4d4d;
}
.campany_overview ul li:last-child{
    border-bottom: none;
}
.campany_overview ul li p{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem !important;
    margin-left: 4rem;
    width:calc(100% - 330px) !important;
    font-size: 18px;
    line-height: 1.8;
    text-align: left;
}
.campany_overview ul li p:first-child{
    width: 320px !important;
    font-size: 17px;
    font-weight: 700;
}
.campany_overview ul li .item{
    width: 200px !important;
    font-weight: 700;
}
.campany_overview ul li .item.letter{
    /* letter-spacing: 3rem; */
    font-size: 1.4rem;
}
@media all and (max-width: 960px) {
    .campany_overview{
        width: 92%;
        margin: 0 auto;
    }
}
@media all and (max-width: 900px) {
    .campany_overview ul li p{
        font-size: 16px;
    }
    .campany_overview ul li .item.letter{
        letter-spacing: 0.2rem;
    }
    .campany_overview h4{
        margin: 0 0 1.5rem;
        font-size: 2rem;
    }
    .campany_overview ul li {
        width: 100%!important;
    }
    .campany_overview ul li {
        display: flex;
        justify-content: space-between;
        border-bottom: dotted 0.1rem #4d4d4d;
    }

    .campany_overview ul li{
        flex-direction: column;
    }

    .campany_overview ul li p {
        width: 100% !important;
        font-size: 14px;
        margin: 0 5px 15px;
    }

    .campany_overview ul li p:first-child {
        width: 100% !important;
        font-size: 15px;
        margin: 15px 5px 8px !important;
    }

}


/* Q&A -----------------------------------------------------------------------------------------*/
.faq_area {
    max-width: 1100px;
    margin: 0 auto;
}

.faq_accordion {
    max-width: 100%;
    margin: 0 auto;
}
.faq_ttl {
    background-color: #fff;
    border-radius: 1rem;
    color: #000;
    border: solid 1px #000;
    font-size: 2.3rem;
    font-weight: bold;
    padding: 20px 11%;
    text-align: center;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
    margin-bottom: 4rem;
}

.faq_accordion.last .faq_ttl {
    margin-bottom: 0;
}

.faq_ttl:hover {
    opacity: .8;
}

.faq_ttl .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -2.6rem;
    left: 50%;
    right: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 7rem;
    height: 2.6rem;
    background-color: #dedede;
    border-radius: 1.2rem;
    box-sizing: border-box;
    transition-duration: 0.2s;
    opacity: 1;
}

.faq_ttl .i_box .one_i {
    display: block;
    width: 7px;
    height: 7px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
}

.faq_ttl.open .i_box {
    opacity: 0;
}

.faq_ttl .i_box .one_i:before,
.faq_ttl .i_box .one_i:after {
    display: flex;
    content: '';
    background-color: #4d4d4d;
    border-radius: 10px;
    width: 10px;
    height: 2px;
    position: absolute;
    top: 0;
    right: 0;

}

.faq_ttl .i_box .one_i:before {
    width: 2px;
    height: 10px;
    top: 0;
    right: 0;
}

.faq_ttl p {
    position: absolute;
    font-size: 4rem;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
}


.faq_inner {
    display: none;
    padding: 0 0 3rem;
    width: 96%;
    margin: 0 auto;
}

.faq_inner p.txt_a_ac {
    margin-bottom: 2rem;
}

.faq_inner .closeArea {
    width: 7rem;
    margin: 0 auto;
}

.faq_inner .closeArea .close_box a.close {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 1.3rem;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition-duration: 0.2s;
    border-radius: 1.2rem;
}

.faq_inner .closeArea .close_box a.close:hover {
    opacity: .8;
}

.faq_inner .closeArea .close_box a.close .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    font-size: 2.5rem;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color: #000;
}

.faq_inner .closeArea .close_box .i_box .one_i {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
}

.faq_inner .closeArea .close_box .i_box .one_i:before,
.closeArea .close_box .i_box .one_i:after {
    content: '';
    background-color: #4d4d4d;
    border-radius: 10px;
    width: 1.5rem;
    height: 0.1rem;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(45deg);
    transform-origin: center center;
}

.faq_inner .faq_accordion .closeArea .close_box a.close .i_box .one_i:before {
    width: 0.1rem;
    height: 1.5rem;
    top: 0;
    left: 7px;
}

@media screen and (max-width: 600px) {
    #faq {
        padding-bottom: 6rem;
    }

    .faq_topSecttl {
        margin-bottom: 4rem;
        padding-top: 6rem;
    }

    .faq_accordion .faq_ttl {
        font-size: 1.6rem;
        text-align: left;
        padding: 1.5rem 2rem 1.5rem 9rem;
    }

    .faq_accordion .faq_ttl p {
        font-size: 3.3rem;
    }

    .faq_accordion {
        width: 92%;
    }

    .faq_ttl .i_box .one_i {
        width: 4px;
        height: 4px;

    }

    .faq_ttl .i_box .one_i:before,
    .faq_ttl .i_box .one_i:after {
        width: 7px;
        height: 1px;

    }

    .faq_ttl .i_box .one_i:before {
        width: 1px;
        height: 7px;
    }
}

/* Q&A -----------------------------------------------------------------------------------------*/




/* ten3 news -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.news_in ul {
    width: 100%;
    border-top: solid 1px #707070;
    color: #707070;
    margin-bottom: 60px;
}
.news_in li{
    width: 100%;
    border-bottom: solid 1px #707070;
}

.news_in li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
}

.news_in li a h4{
    width: 12%;
    font-size: 14px;
    font-weight: 600;
}
.news_in li a h3 {
    width: calc(83% - 50px);
    font-size: 16px;
    font-weight: 600;
}
.news_in li a .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e6eaea;
    transition: all 0.3s;
}
.news_in li a:hover .arrow {
    background-color: #707070;
    color: #fff;
}

.concept_topimg{
    max-width: 1680px;
    margin: 155px auto 100px;
    width: 90%;
}
.concept_topimg_in{
    background-color: #78C79E;
    border-radius: 20px;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.concept_topimg_in.seisyo {
    background-color: #F8C17C;
}
.concept_topimg_in.seishin {
    background-color: #C8B4E6;
}
.concept_topimg_in.momo {
    background-color: #FF9595;
}
.concept_topimg_in.sodan {
    background-color: #85D3D6;
}


.concept_topimg_in .back{
    position: absolute;
    bottom: 0%;
    left: 0%;
    margin-bottom: 0;
    width: 40%;
}
.concept_topimg_in .back img {
    width: 100%;
    height: auto;
}
.concept_topimg_in.seisyo .back {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 48%;
}
.concept_topimg_in.seishin .back {
    top: 0;
    bottom: auto;
    width: 48%;
}
.concept_topimg_in.momo .back {
    right: 0;
    left: auto;
    width: 48%;
}
.concept_topimg_in.seisyo .back {
    width: 48%;
}


.concept_topimg_in .txt{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    height: 80%;
}
.concept_topimg_in .txt img{
    height: 100%;
    width: auto;
}
@media all and (max-width: 950px) {
    .concept_topimg {
        margin: 65px auto 60px;
        width: 90%;
    }
}
@media all and (max-width: 800px) {
    .news_in li a h4 {
        width: 23%;
    }

    .news_in li a h3 {
        width: calc(75% - 60px);
    }

    .concept_topimg_in {
        height: 210px;
    }
    .concept_topimg_in .txt {
        height: auto;
        width: 32vw;
    }
    .concept_topimg_in .back {
        width: 60%;
    }


}
@media all and (max-width: 600px) {
    .concept_topimg_in .txt {
        width: 60%;
    }
}

/* ten3 news -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.news_in ul {
    width: 100%;
    border-top: solid 1px #707070;
    color: #707070;
    margin-bottom: 60px;
}

.news_in li {
    width: 100%;
    border-bottom: solid 1px #707070;
}

.news_in li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
}

.news_in li a h4 {
    width: 12%;
    font-size: 14px;
    font-weight: 600;
}

.news_in li a h3 {
    width: calc(83% - 50px);
    font-size: 16px;
    font-weight: 600;
}

.news_in li a .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e6eaea;
    transition: all 0.3s;
}

.news_in li a:hover .arrow {
    background-color: #707070;
    color: #fff;
}

.concept_topimg {
    max-width: 1680px;
    margin: 155px auto 100px;
    width: 90%;
}

.concept_topimg_in {
    background-color: #78C79E;
    border-radius: 20px;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.concept_topimg_in.seisyo {
    background-color: #F8C17C;
}

.concept_topimg_in.seishin {
    background-color: #C8B4E6;
}

.concept_topimg_in.momo {
    background-color: #FF9595;
}

.concept_topimg_in.sodan {
    background-color: #85D3D6;
}


.concept_topimg_in .back {
    position: absolute;
    bottom: 0%;
    left: 0%;
    margin-bottom: 0;
    width: 40%;
}

.concept_topimg_in .back img {
    width: 100%;
    height: auto;
}

.concept_topimg_in.seisyo .back {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    width: 48%;
}

.concept_topimg_in.seishin .back {
    top: 0;
    bottom: auto;
    width: 48%;
}

.concept_topimg_in.momo .back {
    right: 0;
    left: auto;
    width: 48%;
}

.concept_topimg_in.seisyo .back {
    width: 48%;
}


.concept_topimg_in .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    height: 80%;
}

.concept_topimg_in .txt img {
    height: 100%;
    width: auto;
}

@media all and (max-width: 950px) {
    .concept_topimg {
        margin: 65px auto 60px;
        width: 90%;
    }
}

@media all and (max-width: 769px) {
    .news_in li a {
        flex-direction: column;
        align-items: baseline;
        padding: 15px 70px 15px 15px;
        position: relative;
    }

    .news_in li a h4 {
        width: 100%;
    }

    .news_in li a h3 {
        width: 100%;
    }
    .news_in li a .arrow {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
    }
    .concept_topimg_in {
        height: 210px;
    }

    .concept_topimg_in .txt {
        height: auto;
        width: 32vw;
    }

    .concept_topimg_in .back {
        width: 60%;
    }


}

@media all and (max-width: 600px) {
    .concept_topimg_in .txt {
        width: 60%;
    }
}
.tem6 ul li dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    padding: 8px 2%;
}
.tem6 ul li hr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    padding: 8px 0;
    margin: 8px 0;
}
.tem6 .waku_y{
    background-color: #ffe09e;
    padding: 30px;
}
.tem6 .waku_b {
    background-color: #dbf9f8;
    padding: 30px;
}
.tem6 .waku_w {
    background-color: #fff;
    padding: 30px;
}
.tem6 .waku_b span {
    display: block;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
.tem6 .piece_info dt{
    width: 100px;
    padding: 5px 10px;
    background-color: #dbf9f8;
    text-align: center;
}
.tem6 .piece_info dd {
    width: calc(100% - 120px);
}
@media all and (max-width: 769px) {
    .tem6 ul li{
        margin-bottom: 30px;
    }
    .tem6 ul li:last-child{
        margin-bottom: 0px;
    }
    .tem6 ul li p{
        font-size: 14px;
    }
    .tem6 ul li dl {
        font-size: 16px;
    }
}

#cta_link{
    max-width: 1200px;
    width: 92%;
    margin: 80px auto 160px;
    background-color: #dbf9f8;
    padding: 60px 4%;
}
#cta_link h3{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}
#cta_link p {
    margin-bottom: 30px;
    text-align: center;
}
#cta_link ul{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}
#cta_link ul li .btn_area a{
    max-width: 100%;

}
#cta_link ul li {
    width: 100%;
}
#cta_link ul .column1 {
    max-width: 300px;
    
}
#cta_link ul .column2 {
    max-width: 300px;
    margin: 0 30px;

}
#cta_link ul .column3{
    width: 60px;

}
#cta_link ul .column3 figure {
    width: 60px;

}
#earth_price ul li {
    background-color: #fff;
    padding: 30px 4%;
}
#earth_price ul li hr{
    background-color: #000d0f;
    padding: 0.5px;
}
@media all and (max-width: 769px) {
    #cta_link {
        margin: 60px auto 80px;
        padding: 30px 4%;
    }

    #cta_link h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    #cta_link p {
        margin-bottom: 30px;
        font-size: 14px;
    }
    #cta_link ul {
        justify-content: flex-start;
        flex-wrap: wrap;
        max-width: 300px;
        margin: 0 auto;
    }
    #cta_link ul .column1 {
        margin-bottom: 0;
        width: 100%;
    }
    #cta_link ul .column2 {
        width: 100%;

    }
    #cta_link ul li a {
        margin: 0;
    }


    #cta_link ul .column3 figure {
        width: 60px;

    }
    #cta_link ul .column3 figure {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
    }
    #cta_link ul li.column1 .btn_area .button {
        margin: 0 0 15px 0;
    }
    #cta_link ul li.column2 .btn_area .button{
        margin: 0;
    }
    #cta_link ul li.column2{
        margin: 0;
    }
}


.feature_ttl{
    font-size: 16px;
    font-weight: 600;
    border-left: solid 8px #5fbc25;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.feature_ttl.other {
    font-size: 23px;

}
.feature_ttl span{
    font-size: 30px;
    font-weight: 600;
    padding-right: 15px;
}

@media all and (max-width: 769px) {
    .feature_ttl{
        font-size: 14px !important;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    .feature_ttl span {
        font-size: 20px;
        padding-right: 0px;
    }
    .feature_ttl.other {
        font-size: 18px !important;

    }
}

#emu_works_in3 ul{
    align-items: center;
}
#emu_works_in3 ul li p{
    font-size: 18px;
}
#emu_works_in3 ul li p span{
    font-size: 30px;
    font-weight: 600;
}

@media all and (max-width: 769px) {
    /* #emu_works_in3 ul {
        flex-direction: column-reverse;
    } */

    #emu_works_in3 ul li p {
        font-size: 14px;
    }

    #emu_works_in3 ul li p span {
        font-size: 20px;
        font-weight: 600;
    }
    #emu_works_in3 ul li.column1 {
        margin: 0;
    }
    #emu_works_in3 ul li.column2 {
        margin: 0 0 30px 0;
    }
    #emu_works_in6 ul li.column1 {
        margin: 0;
    }
    #emu_works_in6 ul li.column2 .list_area{
        border-top: none;
    }
    #emu_works_in7 ul li.column1 {
        margin-bottom: 60px;
    }
}

#main .list_area {
    border-top: dotted 1px #110004;
    width: 100%;
}

#main .list_area li {
    border-bottom: dotted 1px #110004;
    width: 100%;
    padding: 20px 40px;
    margin-bottom: 0;
}
#main .list_area li p{
    font-size: 18px;
}

@media all and (max-width: 600px) {
    #main .list_area li {
        border-bottom: dotted 1px #110004;
        width: 100%;
        padding: 15px 10px;
        margin-bottom: 0;
    }
}

.nolink a {
    pointer-events: none !important;
    text-decoration: none !important;
}

.w300{
    max-width: 380px;
    width: 100%;
    margin: 0 auto 30px;
}
.w400 {
    max-width: 450px;
    width: 100%;
    margin: 0 auto 30px;
}
.w600 {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}
.w800 {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}



.sns_list{
    display: flex;
    justify-content: space-between;
}
.sns_list li{
    width: 24%;
    /* background-color: #dedede; */
}
.sns_list li a{
    display: block;
    width: 100%;
    height: 100%;
}

.youtube_container{
    width: 100%;
    height: 100%;
}
.youtube_container iframe{
    width: 100%;
    height: 100%;
}

@media all and (max-width: 900px) {
    .sns_list {
        flex-direction: column;
    }
    .sns_list li{
        width: 100%;
    }
}

.ttl_area{
    margin: 210px auto 60px;
    width: 92%;
    max-width: 1490px;
    border-bottom: solid 4px #f7f5f5;
}

.ttl_area .about-top__ct-ttl{
    margin-bottom: 20px;
}

@media all and (max-width: 1200px) {
    .ttl_area{
        margin: 160px auto 60px;
    }
}
@media all and (max-width: 1024px) {
    .ttl_area {
        margin: 90px auto 60px;
    }
}
@media all and (max-width: 600px) {
    .ttl_area {
        margin: 90px auto 30px;
    }
}

.c-btn__01{
    margin: 20px auto 0;
}

.waku_item{
    background-color: #f3fbe9;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
}
.waku_item>span{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 25px;
}
.waku_item.under {
    background-color: #f3fbe9;
    padding: 0px 30px 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
    margin-bottom: 40px;
}
.waku_item.line {
    padding: 0px 30px 30px 30px;
    margin-bottom: 40px;
    border-bottom: solid 1px #110004;
}
.waku_item .c-btn__01{
    margin: 0 auto;
    max-width: 400px;
}

.two-co {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100% !important;
}
.two-co .list {
    width: 49%;
}
.cont_number{
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 10px;
}
.cont_number span {
    width: calc(100% - 65px);
}
.cont_number .number{
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin-right: 15px;
    background-color: #5fbc25;
    color: #fff;
}
.table th{
    width: 100px;
    padding: 4px 0;
}
.table td{
    width: calc(99% - 100px);
    padding: 4px 0;
}
@media all and (max-width: 800px) {
    .waku_item {
        padding: 15px;
        font-size: 12px;
    }

    .waku_item span {
        font-size: 16px;
        /* padding-bottom: 15px; */
    }
    .two-co .list {
        width: 100%;
    }
    .cont_number {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .cont_number span {
        width: calc(100% - 48px);
    }

    .cont_number .number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 8px;
    }


}

.swiper-container3 .slide_in{
    width: 100%;
}
.swiper-container3 .slide_in a{
    width: 100%;
}

.filedl{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto 100px;
    background-color: #f3fbe9;
    padding: 30px;
}
.filedl.under_no {
    margin: 0 auto;
}
.filedl ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.filedl ul li.item{
    width: 30%;
}
.filedl ul .link{
    width: 68%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.filedl ul .link a {
    width: 49%;
    background-color: #fff;
    border: solid 1px #5fbc25;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    transition-duration: 0.2s;
}
.filedl ul .link a:hover{
    opacity: 0.5;
}
.filedl ul .link a figure{
    width: 50px;
    
}
.filedl ul .link a figure img{
    width: 100%;
    height: auto;
}
.filedl ul .link a p{
    width: calc(100% - 60px);
    font-size: 14px;
    font-weight: 600;
}
.filedl ul .link a.three{
    width: 31%;
}
.filedl ul .link a.one{
    width: 100%;
}
.filedl .note{
    padding-top: 30px;
    font-size: 14px;
}
.filedl .note span{
    font-size: 16px;
    font-weight: 600;
}
@media all and (max-width: 800px) {
    .filedl ul li.item {
        width: 40%;
    }
    .filedl ul .link {
        flex-direction: column;
        width: 55%;
    }
    .filedl ul .link a, .filedl ul .link a.three {
        width: 100%;
        margin-bottom: 10px;
        padding: 10px;
    }
    .filedl ul .link a:last-child, .filedl ul .link a.three:last-child {
        margin-bottom: 0px;
    }
    
}
@media all and (max-width: 600px) {
    .filedl ul {
        flex-direction: column;
    }
    .filedl ul li.item {
        width: 100%;
        margin-bottom: 15px;
    }
    .filedl ul .link {
        width: 100%;
    }
    .filedl ul .link a p {
        font-size: 12px;
    }
    .filedl ul .link a p {
        font-size: 12px;
    }
}


.contact .contact_end form ul.item li.item_in p.w100 span,
.contact .contact_end form ul.item li.item_in p.w150 span {
    flex-direction: column;
}

.rec_list{
    background-color: #f3fbe9;
    padding: 30px 40px;
}

.rec_list table {
    width: 100%;
}
.rec_list th{
    width: 220px;
    padding: 8px 20px;
    background-color: #5fbc25;
    color: #fff;
    border-bottom: solid 3px #f3fbe9;
}
.rec_list th p{
    color: #fff;
}
.rec_list td{
    width: calc(100% - 223px);
    padding: 15px 20px;
    background-color: #fff;
    border-bottom: solid 3px #f3fbe9;
}
.w500 a{
    max-width: 500px;
    margin: 0 auto;
}
@media all and (max-width: 600px) {
    .rec_list {
        padding: 30px 5%;
    }
    .rec_list th {
        width: 95px;
        padding: 11px 12px;
        font-size: 12px;
    }
    .rec_list td{
        width: calc(100% - 95px);
        padding: 11px 12px;
        font-size: 12px;
    }
}

.otp{
    width: 100%;
    background-color: #f3fbe9;
    padding: 0 30px 30px 30px;
}

.otp .otp__in .c-btn__01{
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}

.otp .otp__in #otp-content{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0 0 0;
}

.otp .otp__in #otp-content.show{
    max-height: none;
    overflow: visible;
}


.otp__in-ttl{
    text-align: center;
    margin-bottom: 10px;
}
.otp__in-item{
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.otp__in-item input{
    width: 100%;
}
.otp__in-item .button.alt{
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    border-left: solid 0.5px #000;
    border-right: solid 0.5px #000;
    border-bottom: solid 0.5px #000;
    background-color: #e3e3e3;
    padding: 0;
    margin-bottom: 10px;
}

.confirm_btm2{
    margin-top: 40px;
    border: 1px solid #5fbc25;
}

.confirm_btm2 input{
    padding: 25px 30px;
    position: relative;
    background: #fff;
    font-size: 1.7rem;
    font-weight: 500;
    
}

.confirm_btm2 input:hover{
    background-color: #5fbc25;
    color: #fff;
}

.confirm_btm2 .wpcf7-spinner{
    display: none;

}