@charset "UTF-8";

/*
Theme Name: mytheme
*/

body {
    margin: 0 auto;
    font-size: 16px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-style: normal;
    display: none;
}

a {
    text-decoration: none;
    color: #02ada5;
    transition: 0.5s;
}

a:hover {
    opacity: 0.7;
}

#header {
    position: fixed;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 10;
}

#header.scroll-nav {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.inner {
    /*padding: 15px 0;*/
    margin: 15px 30px;
}

h1 {
    float: left;
    margin: 0;
    position: relative;
    z-index: 99;
}

h1 img {
    width: 80%;
}

.btn_wrapper {
    padding: 1em 3em;
    text-align: right;
}

.btn--radius {
    margin-right: 1em;
}

a.btn--radius {
    position: relative;
    z-index: 95;
    color: #fff;
    background-color: #FB7A98;
    border: 1px solid #FB7A98;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    padding: 0.5rem 2rem 0.6rem;
    font-weight: bold;
    border-radius: 100vh;
    transition: 0.5s;
}

a.btn--radius:hover {
    color: #595656;
    background-color: #fff;
    border: 1px solid #DCDCDC;
    opacity: 1;
}

.menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    border-radius: 50%;
    background-color: #fff;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #02ada5;
    position: absolute;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #f6f1ed;
    transition: all 0.5s;/*アニメーション設定*/
}

.menu-content ul {
    padding: 120px 0 0 60px;
}

.menu-content ul li {
    list-style: none;
    padding: 20px;
    text-align: left;
}

.menu-content ul li a {
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#595656;
    text-decoration: none;
    position: relative;
    text-align: left;
    font-size: 1.9rem;
    font-weight: bold;
}

.note_img {
    padding: 20px 10px!important;
}

.note_img a {
    margin-right: 40px;
}

a.btn--radius.active {
    color: #595656;
    background-color: #fff;
    border: 1px solid #DCDCDC;
}

#menu-btn-check:checked ~ .menu-content {
    left: 75%;/*メニューを画面内へ*/
}

/*.note_img {
    padding: 0 60px 14px 0;
}*/

a.btn--radius5 {
    color: #fff!important;
    font-size: 1rem!important;
    background-color: #595656;
    border: 1px solid #DCDCDC;
    display: block;
    text-align: center!important;
    vertical-align: middle;
    text-decoration: none;
    width: 220px!important;
    padding: 1.3rem 3.5rem;
    border-radius: 100vh;
    transition: 0.5s;
    padding: 12px!important;
}


#contents_wrap {
    clear: both;
}

.top_1 {
	display: flex;
    flex-direction: row-reverse;
}

.top_img {
	width: 60%;
	animation: fadein 1s linear 0.3s 1 normal backwards;
}
	@keyframes fadein {
		from {
			opacity: 0;
			transform: translateY(20px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
}

.top_img img {
	width: 100%;
}

.top_contents {
	height: 50vw;
}

.top_comment {
	padding: 100px 30px 100px 0;
	animation: fadein 1s linear 1.3s 1 normal backwards;
}
	@keyframes fadein {
  		from {
    		opacity: 0;
    		transform: translateY(50px);
  		}
		to {
    	opacity: 1;
    	transform: translateY(0);
  		}
	}

.top_comment h2 {
    font-size: 2.8em;
    line-height: 1.8em;
    font-weight: bold;
}

.comment_1 {
    margin-top: 50px;
    font-size: 18px;
}

.comment_1 p {
    line-height: 1.8;
}

.main_contents {
    padding: 100px 0;
}

.main_contents h2, .form h2, .about h2 {
    font-size: 2.2em;
    text-align: center;
}

.wrap_1 h3, .wrap_3 h3 {
    font-weight: bold;
    font-size: 22px;
    margin: 0;
}

.wrap_1 h4, .wrap_3 h4 {
    font-size: 34px;
	margin: 10px 0 20px 0;
}

h4 a {
	color: #000;
	border-bottom: 1px solid #000;
	line-height: 1.6;
}

.section_1 {
    width: 70%;
    margin: 0 auto 30px;
    background-color: #e4eeed;
    border-radius: 1.2em;
    padding-bottom: 30px;
}

.wrap {
    display: flex;
    justify-content: space-between;
    padding: 40px 40px 0 40px;
}

.wrap_01 {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 40px 40px 0 40px;
}

.wrap_1 {
    margin: 0 40px 0 0 ;
    width: 50%;
}

.wrap_1_img img {
    width: 100%;
}

.wrap_1 p, .wrap_3 p {
    margin: 5px;
    font-size: 16px;
    text-align: justify;
}

p.link_1, p.link_2, p.link_3 {
    font-size: 14px;
}

p.link_1 {
    margin: 20px 0 30px 0;
}

p.link_2 {
    margin: 0 0 30px 0;
}

p.link_3 {
    margin: 30px 0 5px 0;
}

.wrap_2, .wrap_4 {
    margin: 0 auto;
    padding: 20px 40px 0;
}

.comment_img, .comment_img_1 {
    text-align: center;
  }

.comment_2 {
    margin: 30px 0 0 20px;
}

.comment_2_1 {
    border-radius: 0.5em;
    background: #fff;
    padding: 15px 30px;
    text-align: justify;
}

.comment_img p, .comment_img_1 p {
    font-family: 'Zen Kurenaido', sans-serif;
    font-size: 20px;
    margin: 0;
}

.comment_2 p, .comment_3 p, .comment_4 p {
    font-family: 'Zen Kurenaido', sans-serif;
    margin: 0 0 5px 0;
}

.section_2 {
    width: 70%;
    margin: 0 auto 30px;
    background-color: #f6f1ed;
    border-radius: 1.2em;
    padding-bottom: 30px;
}

.comment_3 {
    margin: 20px 20px 0 0;
}

.fes_button ul {
    display: flex;
    justify-content: start;
    padding: 1.5em 0;
    list-style: none;
}
  
a.btn--radius3 {
    color: #fff;
    background-color: #595656;
    border: 1px solid #595656;
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 120px;
    padding: 0.5rem 2rem;
    margin-right: 10px;
    font-weight: bold;
    border-radius: 100vh;
    transition: 0.5s;
}

.wrap_2_comment, .wrap_4_comment {
    display: flex;
    justify-content: center;
  }

.wrap_4_comment {
    flex-direction: row-reverse;
}

.wrap_3_img img {
    width: 100%;
}

.wrap_3 {
    margin: 0 0 0 40px;
    width: 50%;
}


.section_3 {
    margin-bottom: 100px;
}

.section_3 h2 {
    text-align: center;
}

.group {
    max-width: 800px;
    margin: 0 auto;
}

.wrap_group {
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.wrap_group img {
	padding-top: 50px;
    margin: 10px 30px;
}

.contact {
    width: 100%;
    background-color: #f6f1ed;
}

.contact_wrap {
    width: 60%;
    margin: 0 auto;
    padding: 100px 0;
}

.contact_button {
    padding: 15px;
}

.sns_group {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.sns_1, .sns_2 {
    width: 150px;
    text-align: center;
}

.sns_1 img {
    width: 150px;
    padding: 85px 0;
}

.sns_2 img {
    width: 55px;
    margin-top: 5px;
    padding: 80px 0;
}

.form {
    text-align: center;
    width: 50%;
}

.form h2 {
    margin-top: 0;
}

a.btn--radius4 {
    color: #fff;
    background-color: #595656;
    border: 1px solid #DCDCDC;
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 200px;
    margin: 0 auto;
    padding: 1.3rem 3.5rem;
    font-weight: bold;
    border-radius: 100vh;
    transition: 0.5s;
}

.copyright {
    background-color: #02ada5;
}

.wrap_5 ul {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
}

.wrap_5 ul li:last-of-type {
    margin-left: auto;
}

.wrap_5 li {
    margin: 10px;
    padding: 10px;
    width: auto;
    color: #fff;
    font-size: 14px;
}

.wrap_5 li a {
    color: #fff;
}

/*#page_top{
    width: 50px;
    height: 50px;
    position: fixed;
    right: 30px;
    bottom: 20px;
    background: #02ada5;
    border-radius: 50%;
  }

  #page_top a{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }

  #page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f106';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}*/

.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 500ms;
}
 
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}



/*-- ABOUT --*/

#contents_wrap_1 {
    padding-top: 100px;
}

.main_contents_1 {
    padding: 100px 0 200px 0;
    width: 70%;
    margin: 0 auto;
}

.about {
    padding-bottom: 100px;
}

.about_wrap {
    width: 80%;
    margin: 0 auto;
}

.about_wrap h3 {
    text-align: center;
    padding-top: 50px;
}

.section_4 {
    width: 80%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
}

.box_1 {
    width: 70%;
}

.title_1 {
    width: 40%;
}

.box_2 {
    display: flex;
    align-items: center;
}

.box_2 img {
    width: 150px;
    margin-left: 30px;
}

.section_5 {
    width: 90%;
    margin: 20px auto;
}

.title_2 {
    width: 13%;
}

.section_6 {
    text-align: center;
    margin: 30px auto;
}

.about_wrap hr {
    height: 1px;
    background-color: #BDBDB7;
    border: none; ;
}

td {
    padding: 5px 0;
    vertical-align: top;
}

td a {
    text-decoration: none;
    color: #000;
}

td.address {
    line-height: 2;
    padding: 1px 0;
}


@media screen and (max-width: 1200px) { 

    #menu-btn-check:checked ~ .menu-content {
        left: 60%;
    }

    .top_1 {
		display: block;
    }
	
	.top_img {
		width: 100%;
	}

    .top_contents {
        padding: 50px 0 0 0;
        margin: 0 auto;
        width: 410px;
		height: auto;
    }
	
	.top_comment {
		padding: 0;
	}
    
    .comment_1 p {
        line-height: 1;
    }
    
    .wrap, .wrap_01 {
        display: block;
    }

    .wrap_1 {
        width: 100%;
    }

    .wrap_3 {
        width: 100%;
        margin: 0;
    }

    .wrap_3 .text br {
        display: none;
    }

    .comment_2_1 br {
        display: none;
    }

    .sns_group {
        justify-content: center;
    }

    .sns_2 {
        text-align: right;
        margin: 0 10px 0 0;
    }

    .form {
        width: 100%;
    }

    .contact_wrap {
        padding: 0 0 80px 0;
    }

    .wrap_5 ul {
        display: block;
        text-align: center;
    }

    .wrap_5 li {
        margin: 0;
    }


    .about_wrap {
        width: 100%;
    }

    .section_4 {
        width: 90%;
    }

    .box_1 {
        width: 100%;
    }

    .address br {
        display: none;
    }


}

 
@media screen and (max-width: 768px) { 

    #menu-btn-check:checked ~ .menu-content {
        left: 0;
    }

    .section_1, .section_2, .main_contents_1 {
        width: 90%;
    }

    .wrap_1 h4, .wrap_3 h4 {
        font-size: 30px;
    }

    .group {
        width: 350px;
        text-align: center;
    }

    .wrap_group {
        display: block;
        padding: 0;
    }

    .wrap_group img {
        margin: 10px;
    }
	
	.main_contents_1 {
		padding: 100px 0;
	}

}
 
@media screen and (max-width: 544px) {

    h1 {
        width: 100px;
        padding: 6px 0 0 10px;
    }

    h1 img {
        width: 100%;
    }

    .menu-btn {
        top: 10px;
        width: 40px;
        height: 40px;
    }

    .btn_wrapper {
        padding: 1em 3em 1.5em;
    }

    a.btn--radius {
        padding: 0.6rem 1.5rem;
		font-size: 0.7em;
    }

    .btn--radius {
        margin-right: 2em;
    }

    .inner {
        margin: 0 5px;
    }

    .top_contents {
        width: 320px;
    }

    .top_comment h2 {
        font-size: 2em;
        text-align: justify;
    }

    .comment_1 {
        font-size: 16px;
    }

    .wrap, .wrap_01 {
        padding: 40px 20px 0 20px;
    }
	
	.wrap_1 h3, .wrap_3 h3 {
		font-size: 16px;
	}
	
	.wrap_1 h4, .wrap_3 h4 {
		font-size: 22px;
	}
	
	.wrap_1 p, .wrap_3 p {
		font-size: 14px;
	}
	
	p.link_1, p.link_2, p.link_3 {
		font-size: 12px;
	}


    .wrap_2, .wrap_4 {
        padding: 20px 20px 0 20px;
    }

    .wrap_2_comment, .wrap_4_comment {
        display: block;
    }

    .comment_2, .comment_3 {
        margin: 10px 0 0 0;
    }

    .comment_2_1 {
        padding: 15px 20px;
    }

    .fes_button ul {
        display: block;
		padding: 0.5em 0;
    }
    
    a.btn--radius3 {
        margin: 10px 0;
    }

    .contact_wrap {
        width: 90%;
    }
    
    .group {
        padding: 20px 0;
    }
	
	.wrap_group img {
		padding-top: 30px;
	}

    .logo_1 {
        width: 90%;
    }
    
    .sns_1, .sns_2 {
        width: 110px;
    }

    .contact_button {
        padding: 15px 0;
    }

    a.btn--radius4 {
        padding: 1rem 2rem;
    }

    .wrap_5 ul {
        width: 100%;
    }

    .section_4, .box_2 {
        display: block;
    }

    .box_2 {
        text-align: center;
    }

    .box_2 img {
        margin: 20px 0;
    }

    .title_2 {
        width: 30%;
    }

    #page_top {
        right: 10px;
    }


}