@charset "utf-8";

/*--------------------------------------------------------
★レスポンシブ■タブレット対応
--------------------------------------------------------*/
@media screen and (max-width: 1280px) {
	/* layout */
	html{
		width: 1280px;
	}
	body {
		width: 1280px;
	}
}

/*--------------------------------------------------------
★レスポンシブ■スマホ表示切替ボタン
--------------------------------------------------------*/
@media screen and (max-width: 640px) {
	a#btnSP{
		display: none;
	}
	a#btnPC{
		position: fixed;
		display: block;
		width: auto;
		height: auto;
		font-size: 12px;
		padding: 10px 20px;
		box-sizing: border-box;
		border: 2px solid #009E75;
		background-color: #FFF;
		text-align: center;
		color: #009E75;
		font-weight: 600;
		text-decoration: none;
		line-height: 1em;
		margin-top: 4px;
		left: 5%;
		bottom: 20px;
		z-index: 2;
	}
}
@media screen and (min-width: 641px) {
	.switch{
		display: none;
		height: 0;
	}
	a#btnSP{
		display: none;
	}
	a#btnPC{
		display: none;
	}
}

@media screen and (min-width:1021px) {
	.switch{
		display: block;
		height: auto;
	}
	a#btnPC{
		display: none;
	}
	a#btnSP{
		position: fixed;
		display: block!important;
		width: 300px;
		height: auto;
		z-index: 100;
		font-size: 24px;
		padding: 8px;
		text-align: center;
		border-radius: 20px;
		background-color: #92225B;
		box-shadow: 3px 3px 1px rgba(0,0,0,0.2);
		color: #FFF;
		text-decoration: none;
		bottom: 40px;
		left: 15px;
		z-index: 99999999!important;
	}
}
@media screen and (min-width: 1023px) {
	.switch{
		display: none;
		height: 0;
	}
	a#btnSP{
		display: none;
	}
	a#btnPC{
		display: none;
	}
}
/*--------------------------------------------------------
★レスポンシブ■ヘッダ部分
--------------------------------------------------------*/
@media screen and (min-width: 641px) {
	.pc_none{
		display: none!important;
	}
}
@media screen and (max-width: 640px) {
	.sp_none{
		display: none!important;
	}

	/* スマホ用メニュー */
	.index #wrapper {
		overflow: hidden;
		min-width: 20pc;
		height: auto;
		padding: 0;
	}
	.drawer .contents {
		-webkit-transition: -webkit-transform 0.6s;
		transition: transform 0.6s;
	}
	.drawer #navTgl:checked~.contents {
		-webkit-transform: translateX(-250px);
		transform: translateX(-250px);
	}
	.index #navTgl {
		display: none;
		overflow: hidden;
	}
	.drawer label.pc_none {
		cursor: pointer;
		position: fixed;
		top: 0;
		right: 0;
	}
	.drawer .open{
		z-index: 101;
		width: 50px;
		height: 50px;
		color: #fff;
		background-color: #009E75;
		font-size: 2em;
		line-height: 34px;
		text-align: center;
		-webkit-transition: background-color 0.6s,-webkit-transform 0.6s;
		transition: background-color 0.6s,transform 0.6s;
	}
	.index #navTgl:checked+.open {
		color: #009E75;
		background-color: #c1e8d8;
		-webkit-transform: translateX(-250px);
		transform: translateX(-250px);
	}
	.drawer .open span{
		position: relative;
		display: block;
		font-size: 10px;
		font-weight: 600;
		line-height: 1;
		letter-spacing: 0;
	}
	.drawer .close {
		pointer-events: none;
		z-index: 1;
		width: 100%;
		height: 100%;
		transition: background-color 0.6s;
	}
	.drawer #navTgl:checked~.close {
		pointer-events: auto;
		background-color: rgba(0,0,0,.3);
		z-index: 2;
	}
	.fixed_btn{
		position: fixed;
		display: block;
		width: 67px;
		height: 50px;
		color: #009E75;
		font-size: 1rem;
		font-weight: 600;
		text-align: center;
		line-height: 1;
		letter-spacing: -.01em;
		top: 0;
		right: 50px;
		z-index: 30;
		background: #F1F1F1 url(../images/icon_mailG.svg);
		background-repeat: no-repeat, no-repeat;
		background-position: center top 10px, 0 0;
		background-size: auto 18px, cover;
		padding: 35px 0 5px;
		box-sizing: border-box;
	}
	ul.hospital_list{
		position: fixed;
		display: flex;
		flex-wrap: wrap;
		bottom: 0;
		z-index: 5;
	}
	ul.hospital_list li{
		width: 50%;
	}
	ul.hospital_list li a{
		position: relative;
		display: block;
		color: #FFF;
		font-size: 1.3rem;
		font-weight: 600;
		line-height: 1.3;
		text-align: center;
		letter-spacing: .04em;
		padding: 12px 3%;
	}
	ul.hospital_list li:first-child,
	ul.hospital_list li:first-child a{
		background: #92225B
	}
	ul.hospital_list li:nth-child(2),
	ul.hospital_list li:nth-child(2) a{
		background: #328BFF;
	}
	ul.hospital_list li:nth-child(3),
	ul.hospital_list li:nth-child(3) a{
		background: #249F61;
	}
	ul.hospital_list li:nth-child(4),
	ul.hospital_list li:nth-child(4) a{
		background: #004A89;
	}
	ul.hospital_list li:nth-child(3) a,
	ul.hospital_list li:nth-child(4) a{
		padding-bottom: 20px;
	}
	.menu{
		z-index: 3;
		position: fixed;
		overflow: auto;
		top: 0;
		right: 0;
		width: 250px;
		height: 100%;
		padding: 60px 10px 10px;
		background-color: rgba(241,241,241,.9);
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		-webkit-transition: -webkit-transform 0.6s;
		transition: transform 0.6s;
		box-sizing: border-box;
		z-index: 200;
	}
	.index #navTgl:checked~.menu {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.menu li a{
		position: relative;
		color: #009E75;
	}
	.menu li a span{
		position: relative;
		display: block;
		font-size: 1rem;
	}
	.menu li a.arrow_d:after{
		content: "＞";
		position: absolute;
		display: block;
		font-size: 10px;
		height: 10px;
		top: 0;
		right: 1.5em;
		bottom: 0;
		margin: auto 0;
		transform: rotate(90deg);
	}
	.menu li.has-submenu > a.arrow_d:after{
		content: none;
	}
	.menu ul{
		padding: 0;
	}
	.menu li{
		position: relative;
		border-bottom: 1px solid #009E75;
		font-size: 0.9em;
		line-height: 1.4;
	}
	.menu li a{
		display: block;
		padding: 1em 2em .9em;
		text-decoration: none;
		transition: background-color 0.6s;
	}
	.menu li.has-submenu > a{
		padding-right: 3.8em;
	}
	.menu li .submenu-toggle{
		position: absolute;
		top: 0;
		right: 0;
		width: 3.2em;
		height: 3.3em;
		border: 0;
		background: transparent;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 1;
	}
	.menu li .submenu-toggle::before{
		content: "▼";
		display: block;
		font-size: 10px;
		color: #009E75;
		line-height: 1;
		transition: transform .2s;
	}
	.menu li.is-open > .submenu-toggle::before{
		transform: rotate(180deg);
	}
	.menu ul li ul{
		background: rgba(0,158,117,.7);
	}
	.menu ul li ul li{
		border-bottom-color: rgba(255,255,255,.7);
	}
	.menu ul li ul li:last-child{
		border-bottom: 0;
	}
	.menu ul li ul li a{
		color: #FFF;
	}
}


/*--------------------------------------------------------
★レスポンシブ■コンテンツ部分
--------------------------------------------------------*/
@media screen and (max-width: 640px) {
	html{
		max-width: 640px;
		width: 100%;
		overflow-x: hidden;
		-webkit-text-size-adjust: 100%!important;
	}
	body {
		max-width: 640px;
		min-width: 320px;
		width: 100%;
		overflow-x: hidden!important;
		font-size: 1.4rem;
		line-height: 1.9;
		letter-spacing: .05em;
		-webkit-text-size-adjust: 100%!important;
		top: 0!important;
	}
	/* layout
	------------------------------ */
	.wrapper{
		max-width: 640px;
		width: 90%;
		margin: 0 auto;
		padding: 0 5%;
	}

	/* Common
	------------------------------ */
	.fl_l,.fl_r{
		display: block;
		float: none;
	}
	.float::before,
	.float::after{
		content: " ";
		display: block;
		clear: both;
	}
	.btn{
		width: 230px;
    	height: 54px;
    	line-height: 54px;
    	padding-left: 18px;
	}
	.btn:last-child,
	.btn:last-of-type{
		margin: 0;
	}
	.btn::after{
		right: 18px;
	}
	.btn:hover::after{
		right: 13px;
	}
	.flex{
		display: block;
	}
	.caution{
		font-size: 1.4rem;
		line-height: 1.7;
	}

	/* Header
	------------------------------ */
	header{
		position: relative;
		display: block;
		width: 100%;
		height: auto;
	}
	header::after{
		display: none
	}
	a.fixed_logo{
		position: fixed;
		display: block;
		width: 100%;
		height: 50px;
		font-size: 0;
		line-height: 1;
		background: #FFF;
		box-shadow: 5px 5px 5px rgba(0,0,0,.3);
		z-index: 10;
		top: 0;
		box-sizing: border-box;
	}
	a.fixed_logo::before{
		content: "";
		position: absolute;
		display: block;
		width: 100%;
		height: 28px;
		background: url(../images/logo.svg) no-repeat left center;
		background-size: contain;
		top: 10px;
		left: 8px;
	}
	a.fixed_logo span{
		display: block;
		font-size: 1rem;
		line-height: 1;
		letter-spacing: .05em;
		margin-bottom: 5px;
	}
	a.fixed_logo:hover{
		opacity: .7;
	}
	header{
		position: relative;
		display: block;
		width: 100%;
	}
	header .flex,#gnav,
	header.is-show,header div.wrapper{
		display: none;
	}

	/* index
	------------------------------ */
	#slider{
		width: 100%;
		height: auto;
		margin-top: 50px;
	}
	#slider .swiper-slide{
		height: 0;
		padding-bottom: 60%;
	}
	.swiper-slide p{
		font-size: 2rem;
		line-height: 1.3;
		margin-top: 10%;
		padding: 10px 0 10px 20px;
		background-color:rgba(255,255,255,0.85);
	}
	.swiper-slide p span.en{
		font-size: 1.7rem;
		margin: 0 0 4px 5px;
	}
	.swiper-slide p::before{
		height: 76%;
	}
	.swiper-slide p::after{
		height: 100%;
		background-color:rgba(255,255,255,0.85);
	}
	#index section h2,.css_h2{
		font-size: 2.6rem;
		line-height: 1;
		text-align: center;
		letter-spacing: .3em;
	}
	#index section h2 span.en,
	.sub #bottom_contact h2 span.en,
	.css_h2 span.en{
		font-size: 1.7rem;
		margin-bottom: 14px;
	    padding-bottom: 3px;
	}
	section h2.band{
		height: 110px;
		padding: 14px 0 24px;
	}

	/* index01 */
	#index01{
		padding: 30px 0 60px;
	}
	#index #index01 h2{
		font-size: 2rem;
		margin-bottom: 25px;
	}
	#index #index01 h2 span.en{
		margin-bottom: 20px;
	}
	#index01 p{
		font-size: 1.6rem;
	}
	#index01 ul.flex{
		margin: 30px auto 35px;
		max-width: 288px;
	    display: flex;
	    flex-wrap: wrap;
	    justify-content: center;
	}
	#index01 ul.flex li{
		margin: 0;
	   	width: 96px;
	   	height: 96px;
	   	line-height: 96px;
	    font-size: 1.8rem;
	}
	#index01 ul.flex li:nth-child(2n){
		background: #85cfb2;
	}
	#index01 .btn{
		margin: 15px 0 0;
	}
	/* //index01 */
	/* index02 */
	#index02 .box{
		height: auto;
	}
	#index02 .box::before{
		width: 100%;
		height: 210px;
		background-size: cover;
	}
	#index02 #yess::before{
		background-image: url(../images/index02_main1.jpg);
	}
	#index02 #build::before{
		background-image: url(../images/index02_main2.jpg);
	}
	#index02 .box.left_pic .wrapper{
		width: 90%;
		padding: 233px 0 35px 0;
	}
	#index02 .box h3{
		color: #009e75;
		font-size: 3.6rem;
		line-height: 1;
		margin-bottom: 25px;
	}
	#index02 .box p{
		margin-bottom: 25px;
	}
	#index02 .list::after{
		display: none;
	}
	#index02 .list .wrapper{
		align-items: center;
		background: none;
		/*background: url(../images/box_bg.jpg) no-repeat top left -60px;
		background-size: 625px auto;*/
		padding: 30px 5% 60px;
	}
	#index02 .list a.btn{
		margin: 0 auto;
	}
	#index02 .wrapper .flex a img{
		height: 100%;
	    width: 230px;
	    margin-top: 20px;
	    text-align: right;
	}
	#index02 .wrapper p.caution{
		text-align: left;
		margin-bottom: 0;
	}
	.works_list li h5,.works_list li p{
		text-align: center;
	}
	.works_list .slick-prev,
	.works_list .slick-next{
		top: 230px;
	}
	/* //index02 */
	/* index03 */
	#index03 .contents{
		background: url(../images/index03_bg.jpg) no-repeat top right -280px;
		padding: 40px 0 30px;
		width: 100%;
		height: auto;
		background-size: cover;
	}
	#index03 p{
		text-shadow: 0 0 10px #fff, 0 0 4px #fff;
	}
	#index03 a.btn{
		margin-top: 30px;
	}
	/* //index03 */
	/* index04 */
	#index04{
		padding: 50px 0 60px;
	}
	#index04::after{
		display: none;
	}
	#index04 .wrapper div{
		width: 100%;
	    padding: 17px 0px 21px;
	}
	#index #index04 .wrapper div h2{
		margin-bottom: 0;
	}
	#index04 .wrapper a.btn{
		margin: 30px auto;
		display: block;
	}
	#index04 ol{
		max-width: 950px;
		width: 100%;
	}
	#index04 ol li{
		padding: 20px 0;
	}
	#index04 ol li .date{
		font-size: 1.4rem;
		line-height: 1;
	}
	#index04 ol li a.text_link{
		display: block;
		padding-top: 5px;
	}
	/* sub
	------------------------------ */
	.main_title{
		margin-top: 50px;
		padding: 50px 0;
		height: auto;
	}
	.main_title::before{
		width: 100%;
		height: 100%;
	}
	.main_title .flex{
		height: auto;
		max-width: 288px;
		margin: 0 auto;
	}
	.main_title .flex div{
		height: auto;
		padding: 0 0 20px;
	}
	.main_title .sub_h1 span.ja{
		font-size: 2.4rem;
	}
	.main_title .sub_h1 span.en{
		margin-bottom: 10px;
	}
	.sub article.fl_l{
		max-width: unset;
		width: 100%;
	}
	.sub_section{
		padding-top: 60px;
	}
	.sub_section:first-of-type{
		padding-top: 30px;
	}
	.sub_section:last-of-type{
		padding-bottom: 60px;
	}
	.sub_section .css_h2{
		font-size: 2.4rem;
	    line-height: 1.3;
	    text-align: left;
	    border-left-width: 7px;
	    margin-bottom: 30px;
	    padding: 15px 20px 13px;
	}
	.sub_section h2,.single-recruitment h1.logotype{
		font-size: 2.4rem;
		line-height: 1.3;
		text-align: left;
		border-left-width: 7px;
		margin-bottom: 30px;
		padding: 15px 20px 13px;
	}
	.sub_section h3{
		font-size: 2rem;
		letter-spacing: .02em;
		margin-bottom: 15px;
		line-height: 1.3;
	}
	.sub_section .flex_temp{
		display: block;
	}
	.sub_section .flex_temp img{
		max-width: 100%;
		display: block;
		margin: 0 auto 15px;
	}
	.sub_section .flex_temp.right_pict img{
		display: block;
		margin: 0 auto 10px;
	}
	.sub_section table.sp_lay{
		margin-bottom: 30px;
	}
	.sub_section table.sp_lay tr th,
	.sub_section table.sp_lay tr td{
		position: relative;
		display: block;
		line-height: 1.88;
		letter-spacing: .05em;
		padding: 4% 5%;
		box-sizing: border-box;
	}
	.sub_section table.sp_lay tr th{
		width: 100%;
		padding-left: 5%;
	}
	.sub_section table.sp_lay tr td{
		padding-left: 5%;
	}

	/* business
	------------------------------ */
	#business .catchcopy{
		width: 90%;
		padding: 5%;
		font-size: 2rem;
		margin-bottom: 40px;
		line-height: 1.6;
	}
	#business .left_pic img,#yess .left_pic img,#build .left_pic img{
		margin-right: auto;
	}
	#business .left_pic a.btn{
		margin: 30px auto 0;
	}
	#business .business01_yess,#business .business01_build{
		margin-top: 50px;
	}
	#business .business01_yess img,#business .business01_build img,
	#yess #yess03 img,#build #build02 img{
		max-width: 100%;
	    margin: 20px auto 10px;
	    display: block;
	}
	#business .business01_yess a.btn,#business .business01_build a.btn,
	#yess #yess03 a.btn,#build #build02 a.btn{
		margin: 30px auto 0;
	    display: block;
	}
	#business .flex_temp .wrapper{
		padding: 0;
	}

	/* business - yess -
	------------------------------ */
	#yess #yess01 .left_pic div img {
	    margin: 10px 0 0 0;
	}
	#yess #yess01 .merit{
		margin-top: 60px;
	}
	#yess #yess01 .merit ul{
		display: inline-block;
		margin-top: 20px;
	}
	#yess #yess01 .merit ul li{
		width: 100%;
		display: block;
		margin-bottom: 20px;
	}
	#yess #yess01 .merit ul li:last-of-type{
		margin-bottom: 0;
	}
	#yess #yess01 .merit ul li h4{
		font-size: 2rem;
	    width: 100%;
	    line-height: 0;
	    padding: 25px 0;
	    height: auto;
	    display: block;
	    margin-right: 0;
	}
	#yess #yess01 .merit ul li p{
		display: block;
		width: 100%;
		padding-top: 5px;
	}
	#yess #yess02 ul li{
		width: 100%;
		height: auto;
		margin-bottom: 20px;
	}
	#yess #yess02 ul:last-child li{
		margin-bottom: 20px;
	}
	#yess #yess02 ul li::after{
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		border-top: 16px solid #009E75;
		border-right: 16px solid transparent;
		border-left: 16px solid transparent;
		right: 45%;
		bottom: -32px;
	}
	#yess #yess02 ul li h4{
		font-size: 2rem;
		padding-top: 10px;
	}
	#yess #yess02 ul li p{
		height: auto;
		padding-bottom: 14px;
	}
	/*#yess #yess02 .flow .flex{
		margin-top: 25px;
		padding: 5%;
		width: 90%;
	}
	#yess #yess02 .flow .flex:first-of-type{
		margin-top: 40px;
	}
	#yess #yess02 .flow .flex::after{
		content: "";
		position: absolute;
		width: 0;
		height: 0;
		border-top: 16px solid #009E75;
		border-right: 16px solid transparent;
		border-left: 16px solid transparent;
		left: 45%;
		bottom: -16px;
	}
	#yess #yess02 .flow .flex:last-of-type::after{
		display: none;
	}
	#yess #yess02 .flow .flex h4{
		font-size: 2rem;
		padding: 0 0 4px;
		width: 100%;
	}
	#yess #yess02 .flow .flex p{
		width: 100%;
	}*/
	/* business - build -
	------------------------------ */
	#build #build01 .flex_temp{
		margin-top: 40px;
	}
	#build #build01 .flex_temp:first-of-type{
		margin-top: 0;
	}
	/* company
	------------------------------ */
	#company #company01 p.name{
	    /* margin-top: 10px; */
	}
	.company01_name {
		margin-top: 10px;
	}
	#company #company02 ul li{
		margin-bottom: 24px;
	}
	#company #company02 ul li:last-of-type{
		margin-bottom: 0;
	}
	#company #company03 iframe{
		width: 100%;
	    height: 230px;
	    margin-top: 30px;
	}
	#company #company03 table.lay1 tr th,
	#company #company03 table.lay1 tr td,
	#recruit #recruit04 table.lay1 tr th,
	#recruit #recruit04 table.lay1 tr td{
		display: block;
		width: 90%;
		padding: 5%;
	}
	#company #company04 table.lay2 tr th,
	#recruit #recruit05 table.lay2 tr th{
		display: block;
		width: 100%;
		padding: 3% 5% 2%;
	}
	#company #company04 table.lay2 tr td,
	#recruit #recruit05 table.lay2 tr td,
	#contact #contact02 table.lay2 tr td{
		border:  none;
		display: block;
		padding: 2% 5% 3%;
	}
	#company #company04 table.lay2 tr:last-of-type th{
		border-bottom: none;
		border-top: 1px solid #009E75;
	}
	#company #company04 table.lay2 tr:last-of-type td{
		border-bottom: 1px solid #009E75;
	}

	/* recruit
	------------------------------ */
	#recruit02 ul li{
		margin-bottom: 30px;
		width: 100%;
		max-width: 100%;
	}
	#recruit02 ul li:last-of-type{
		margin-bottom: 0;
	}
	#recruit02 ul li h3{
		margin: 15px 0 10px;
	}
	#recruit03 .box{
		margin: 20px auto 0;
		padding: 25px;
	}
	#recruit03 .box h3{
		font-size: 1.6rem;
		margin-bottom: 25px;
	}
	#recruit03 .box dl dt{
		font-size: 2rem;
		line-height: 1.3;
	}
	#recruit03 .box dl dd{
		line-height: 1.2;
		margin-bottom: 30px;
	}
	#recruit05 form#mailformpro,
	#contact02 form#mailformpro{
	    padding: 30px 0px;
	}
	#recruit05 #mailformpro table.lay2 tr th,
	#contact02 #mailformpro table.lay2 tr th{
		display: block;
	    width: 100%;
	    padding: 5% 5% 2%;
	}
	#recruit05 #mailformpro table.lay2 tr td,
	#contact02 #mailformpro table.lay2 tr td{
		display: block;
	    width: 100%;
	    padding: 2% 5% 5%;
	}
	#recruit05 table.lay2 tr td ul li,
	#contact02 table.lay2 tr td ul li{
		margin-right: 15px;
	}
	#recruit05 table.lay2 tr td input[type="text"],
	#recruit05 table.lay2 tr td input[type="tel"],
	#recruit05 table.lay2 tr td input[type="email"],
	#contact02 table.lay2 tr td input[type="text"],
	#contact02 table.lay2 tr td input[type="tel"],
	#contact02 table.lay2 tr td input[type="email"]{
		max-width: 520px;
		width: 100%;
		height: 30px;
	}
	#recruit05 table.lay2 tr td input[type="date"]{
		max-width: 280px;
		width: 100%;
		height: 30px;
	}
	#recruit05 table.lay2 tr td .postal_code input[type="text"],
	#contact02 table.lay2 tr td .postal_code input[type="text"]{
		max-width: 160px;
		width: 100%;
		margin: 0 0 7px 10px;
		height: 30px;
	}
	#recruit05 table.lay2 tr:last-of-type th,
	#contact02 table.lay2 tr:last-of-type th{
		border-bottom: none;
		border-top: 1px solid #009E75;
	}
	#recruit05 #mailformpro table.lay2 tr:last-of-type td,
	#contact02 #mailformpro table.lay2 tr:last-of-type td{
		border-bottom: 1px solid #009E75;
	}
	#recruit05 table.lay2 tr:last-of-type td textarea,
	#contact02 table.lay2 tr:last-of-type td textarea{
		min-height: 160px;
	}
	#recruit05 #privacy_policy,
	#contact02 #privacy_policy{
		margin-top: 0;
	}
	#recruit05 #privacy_policy h3,
	#contact02 #privacy_policy h3{
		font-size: 2rem;
	}
	#recruit05 button,
	#contact02 button{
		margin: 30px auto 0;
		width: 230px;
	    height: 54px;
	    line-height: 54px;
	    padding-left: 18px;
	}

	/* recruit - thanks
	------------------------------ */
	#thanks .sub_h1 span.ja{
	    line-height: 1.3;
	    letter-spacing: normal;
	    padding: 13px;
	}
	#thanks .sub_section{
		text-align: left;
	}
	#thanks .tel_box{
		padding: 50px 10px 10px;
	    max-width: 360px;
	    display: block;
	    margin: 15px auto;
	}
	#thanks .tel_box p.tel{
		width: 100%;
		margin: 0 auto 20px;
		height: 30px;
	}
	#thanks .tel_box p.logotype{
		line-height: 1.5;
	}
	#thanks .btn{
		margin: 40px auto 0;
	}

	/* works - archive
	------------------------------ */
	#works .works_list_box{
		padding-top: 140px;
		margin-top: -90px;
	}
	#works #works_yess{
		margin-top: -140px;
	}
	#works .archive ul.flex li{
		max-width: 100%;
	}
	/* works - single
	------------------------------ */
	#works .single div.flex{
		margin-bottom: 40px;
	}
	#works .single .inner{
		display: block;
		min-width: 100%;
		padding: 20px 0 19px 35px;
	}
	#works .single .designer{
		max-width: 100%;
		width: 80%;
		margin: 20px 0 0 0;
	}
	.works_pict li{
		max-width: 100%;
		margin-bottom: 30px;
	}
	.works_pict li span{
		font-size: 1.6rem;
		text-align: left;
		margin-top: 12px;
	}
	#works .single a.btn{
		margin: 60px auto 0;
	}

	/* contact
	------------------------------ */
	#contact01 h2{
		padding: 15px 18px 13px;
	}
	#contact01 .tel_box,#contact_thanks .tel_box{
		padding: 50px 10px 10px;
		margin: 15px auto 0;
		max-width: 360px;
		display: block;
	}
	#contact01 .tel_box::before,#contact_thanks .tel_box::before{
		content: "";
		width: 100%;
		height: 30px;
	}
	/* contact - thanks
	------------------------------ */
	#contact_thanks .sub_h1 span.ja{
	    line-height: 1.3;
	    letter-spacing: normal;
	    padding: 12px;
	}
	#contact_thanks .tel_box{
		margin: 10px auto 20px;
	}
	#contact_thanks .sub_section .btn{
		margin: 40px auto 0;
	}
	/* news - archive
	------------------------------ */
	#news article.fl_l{
		width: 100%;
	}
	#news .archive ol li{
		margin-bottom: 30px;
		padding: 20px 20px 0;
	}
	#news .archive ol li:last-child{
		margin-bottom: 0;
	}
	#news .archive ol li div{
		min-width: 570px;
		width: 100%;
		text-align: right;
	}
	#news .archive ol li div.flex,
	#news .single div.flex{
		display: flex;
	}
	#news .archive ol li div.flex p.tag,
	#news .single div.flex p.tag{
		min-width: 104px;
		width: auto;
		height: 23px;
		margin-left: 20px;
	}
	#news .archive ol li a.btn{
		margin: 20px auto;
		width: 220px;
		height: 50px;
		line-height: 50px;
	}
	/* pagenavi */
	.pagenavi{
		margin: 40px auto 0;
	}
	.pagenavi span,.pagenavi a{
		min-width: 30px;
		height: 30px;
		font-size: 1.6rem;
		line-height: 30px;
		margin: 0 5px;
	}
	.pagenavi .prev::after,
	.pagenavi .next::after{
		font-size: 1.6rem;
		line-height: 26px;
		left: 10px;
	}
	
	/* news - single
	------------------------------ */
	#news .single h1{
		font-size: 2rem;
		margin-bottom: 20px;
	}
	#news .single h2{
		font-size: 1.8rem;
		margin-bottom: 20px;
		padding: 12px 16px 10px 20px;
	}
	#news .single h3{
		font-size: 1.6rem;
		line-height: 1;
	}
	.adjacent_post_links{
		margin-top: 30px;
	}
	.adjacent_post_links ul{
		display: block;
		justify-content: space-between;
		align-items: flex-start;
	}
	.adjacent_post_links .previous a,
	.adjacent_post_links .center a,
	.adjacent_post_links .next a{
		font-size: 1.4rem;
	}
	.adjacent_post_links .previous a{
		padding-left: 15px;
	}
	.adjacent_post_links .next a{
		padding-right: 15px;
	}
	.adjacent_post_links .previous a::before,
	.adjacent_post_links .next a::before{
		width: 8px;
		height: 8px;
	}
	/* aside
	------------------------------ */
	aside{
		width: 100%;
		margin-bottom: 50px;
	}
	aside ul > li.categories{
		line-height: 55px;
	}
	aside ul li.categories ul li a{
		line-height: 50px;
	}

	/* footer
	------------------------------ */
	/* bottom_contact */
	#bottom_contact{
		padding: 30px 0;
	}
	.sub #bottom_contact{
		margin-top: 0;
	}
	#bottom_contact .wrapper div,
	#bottom_contact .wrapper div:nth-child(2){
		max-width: 430px;
		margin: 0 auto;
	}
	#bottom_contact .wrapper div .tel{
		margin-top: 6px;
		height: 23px;
		width: 100%;
	}
	#bottom_contact .wrapper div a.btn.contact{
		display: none;
	}
	#bottom_contact .flex::before{
		display: none;
	}
	#bottom_contact .flex div:first-child::after{
		display: none;
	}
	#bottom_contact .flex div{
		padding: 12px 0 32px;
	}
	#bottom_contact .flex div:first-child{
		padding-bottom: 0
	}
	/* //bottom_contact */
	.footer_contents{
		padding: 30px 0;
	}
	.footer_contents .logo{
	    width: auto;
	    max-width: 403px;
	}
	.footer_menu{
		display: none;
	}
	footer small{
		width: 90%;
		height: 36px;
		line-height: 1.5;
		padding: 30px 5% 80px;
	}
	footer .banner a img {
	    margin: 30px auto 0;
	}

	/* Breadcrumb
	------------------------------ */
	.breadcrumbs{
		height: auto;
		font-size: 1.2rem;
		margin: 0 auto;
		padding: 20px 0;
	}

	/* yonmaruyon
	------------------------------ */
	#yonmaruyon .main_title .flex div {
	    height: 100px;
	}
	#yonmaruyon01 .tel_box .tel{
		margin: 23px auto 20px;
	    max-width: 250px;
	}
	/* Page Navi
	------------------------------ */
	.wp-pagenavi{
		padding-bottom: 70px;
	}

	/* Page Top
	------------------------------ */
	footer .pagetop{
		position: fixed;
		bottom: 110px;
		right: 20px;
		width: 60px;
		height: 60px;
		-webkit-transition: all .4s;
		-moz-transition: all .4s;
		-ms-transition: all .4s;
		-o-transition: all .4s;
		transition: all .4s;
		opacity: 0;
		z-index: 10;
		box-sizing: border-box;
		border: none;
		background: #009E75;
	}
	footer .pagetop span::before{
		display: none;
	}
	footer .pagetop.show{
		opacity: 1;
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
	}
	footer .pagetop span{
		position: relative;
		display: block;
		font-size: 0;
		line-height: 0;
	}
	footer .pagetop:hover{
		background: #C1E8D8;
	}
	footer .pagetop::before{
		content: "";
		position: absolute;
		width: 20px;
		height: 20px;
		border-top: #fff solid 1px;
		border-left: #fff solid 1px;
		transform: rotate(45deg);
		background: none;
		left: 0;
		right: 0;
		margin: 0 auto;
		top: 21px;
		transition: .25s;
	}
	footer .pagetop:hover::before{
		width: 20px;
		border-top-color: #fff;
		border-left-color: #fff;
	}
}