﻿@charset "utf-8";
@import "base.css";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  全般設定
　━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
body {
	font-family: 'Noto Serif JP', serif;
	font-family: "Zen Maru Gothic", sans-serif;
	font-family: 'Zen Maru Gothic', 'Noto Sans JP', 'Yu Gothic Medium', '游ゴシック Medium', YuGothic, '游ゴシック体', 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'メイリオ', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #534741;
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
}
#wrapper {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
}
* { box-sizing: border-box; }

.flex {
	display: flex;
	flex-wrap: wrap;
}
.reverse {
	flex-flow: row-reverse;
}

.jc_sb {
	justify-content: space-between;
}
.jc_c {
	justify-content: center;
}
.ai_c {
	align-items: center;
}

.w1600,
.w1400,
.w1385,
.w1200,
.w1040 {
	width: 100%;
	margin: 0 auto;
}
.w1600 {
	max-width: 1600px;
}
.w1400 {
	max-width: 1400px;
}
.w1385 {
	max-width: 1385px;
}
.w1200 {
	max-width: 1200px;
}
.w1040 {
	max-width: 1040px;
}

@media (min-width: 769px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

a.flex {
	width: 100%;
	height: 100%;
}

.lh175 {
	line-height: 1.75;
}
.lh185 {
	line-height: 1.85;
}

.indent01 {
	text-indent: -1em;
	padding-left: 1em;
}

.pc1000,
.pc {
	display: inline-block;
}
.sp1000,
.sp {
	display: none;
}

@media (max-width: 1000px) {
	.pc1000 {
		display: none;
	}
	.sp1000 {
		display: inline-block;
	}
}
@media (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: inline-block;
	}
}


/* header
------------------------------------------------------------*/
header {
	width: 100%;
	height: 110px;
	position: absolute;
	left: 0;
	top: 0;
}
header .inner {
	width: 100%;
	height: 100%;
}
header .logo {
	padding: 10px;
}

@media (max-width: 1400px) {
	header {
		height: 90px;
	}
	header .logo img {
		width: 302px;
	}
}

@media screen and (max-width: 1200px) {
	.sp_menu {
		display : block;
		width: 42px;
		height: 42px;
		text-align: center;
		position: fixed;
		right: 20px;
		top: 20px;
		z-index: 3;
		cursor: pointer;
	}
    .sp_menu span {
	    display: block;
		width: 30px;
		height: 2px;
		background-color: #534741;
		position: absolute;
		left    : 6px;
		-webkit-transition: 0.3s ease-in-out;
		-moz-transition   : 0.3s ease-in-out;
		transition        : 0.3s ease-in-out;
  	}
  	.sp_menu span:nth-child(1) { top: 10px; }
  	.sp_menu span:nth-child(2) { top: 20px; }
  	.sp_menu span:nth-child(3) { top: 30px; }
  
	.sp_menu.active span {
		background-color: #ffffff;
	}
    /* スマホメニューを開いてる時のボタン */
    .sp_menu.active span:nth-child(1) {
		left: 6px;
		top: 16px;
		-webkit-transform: rotate(-45deg);
		-moz-transform   : rotate(-45deg);
		transform        : rotate(-45deg);
  	}
    .sp_menu.active span:nth-child(2),
  	.sp_menu.active span:nth-child(3) {
		top: 16px;
		-webkit-transform: rotate(45deg);
		-moz-transform   : rotate(45deg);
		transform        : rotate(45deg);
  	}
}


nav {
	width: calc(100% - 540px);
	max-width: 980px;
}
nav ul {
	width: 100%;
}

@media (min-width: 1201px) {
	nav ul li a:hover {
		color: #18a2a3;
	}

	nav ul li.contact {
		width: 240px;
		height: 75px;
	}
	nav ul li.contact a {
		background-color: #534741;
		color: #ffffff;
		border-radius: 0 0 0 30px;
	}
	nav ul li.contact span {
		background-image: url(../img/common/mail.svg);
		background-position: left center;
		background-repeat: no-repeat;
		background-size: 21px auto;
		padding-left: 30px;
	}
}

@media (max-width: 1400px) {
	nav {
		width: calc(100% - 360px);
	}
}

@media (max-width: 1200px) {
    nav {
		width: 100%;
		max-width: 240px;
		height: 100%;
		background-color: #534741;
		position: fixed;
		right: 0;
		top: 0;
		z-index : 2;
		transform: translateX(100%);
		transition: all 0.6s;
    }
    nav ul {
		width: 100%;
		border-radius: 0;
		margin: 0 auto;
		padding: 72px 30px 10px;
	}
    nav ul li {
		width: 100%;
		padding: 0;
		transition: .4s all;
    }
    nav ul li:last-child {
		padding-bottom: 0;
    }
    nav ul li a {
	    display: block;
		color: #ffffff;
	    padding: 1em 10px;
    }
    /* クリックでjQueryで追加・削除 */
    nav.active {
		display: block;
	    opacity: 1;
	    transform: translateX(0%);
    }

	nav ul li a.jc_c {
		justify-content: flex-start;
	}
}


/* footer
------------------------------------------------------------*/
footer {
	background-color: #e7f6f6;
	color: #ffffff;
}
footer .inner {
	width: 100%;
	height: 100%;
	background-color: #534741;
	border-radius: 40px 40px 0 0;
	padding: 70px 40px 20px;
}
#f_cont {
	width: 100%;
	max-width: 1350px;
	margin: 0 auto;
}

#f_cont .left {
	width: 750px;
}
#f_cont .left .info {
	font-size: 20px;
}
#f_cont .left .info .addr {
	line-height: 1.6;
	margin: 20px 0 10px;
}
#f_cont .left .map {
	width: 360px;
	height: 260px;
}
#f_cont .left .map iframe {
	border-radius: 20px;
}

#f_cont .right {
	width: 360px;
}
#f_cont .right ul li:not(:first-child) {
	margin-top: 35px;
}
#f_cont .right ul li a {
	font-size: 18px;
	font-weight: 400;
}
#f_cont .right ul li a:hover {
	color: #fcb037;
}

@media (max-width: 1400px) {
	#f_cont .left {
		width: 400px;
	}
	#f_cont .left .map {
		margin-top: 30px;
	}
}

@media (max-width: 1000px) {
	footer .inner {
		border-radius: 20px 20px 0 0;
		padding: 60px 20px 20px;
	}
	#f_cont .right {
		width: 270px;
	}
	#f_cont .right ul li a {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	#f_cont {
		justify-content: center;
	}
	#f_cont .left {
		width: 100%;
		max-width: 360px;
		margin-right: 0;
	}
	#f_cont .left .info {
		width: 100%;
		font-size: 16px;
	}
	#f_cont .left .info .logo {
		text-align: center;
	}
	#f_cont .left .info .logo img {
		width: 280px;
	}
	#f_cont .left .info .addr {
		margin-top: 30px;
	}
	#f_cont .left .info .map {
		width: 100%;
		height: 200px;
	}

	#f_cont .right {
		display: none;
	}
}

#copyright {
	margin-top: 120px;
	padding-top: 20px;
}
#copyright .copyright {
	font-size: 15px;
	font-weight: 300;
	text-align: center;
}

#pagetop {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

@media (max-width: 768px) {
	#copyright {
		margin-top: 80px;
	}
	#copyright .copyright {
		font-size: 12px;
	}
}


/* main　
------------------------------------------------------------*/
section {
	padding-left: 40px;
	padding-right: 40px;
}

@media screen and (max-width: 1000px) {
	section {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.bg.white {
	background-color: #ffffff;
}
.bg.pink {
	background-color: #fdf0f3;
}
.bg.yellow {
	background-color: #fff7eb;
}
.bg.blue {
	background-color: #e7f6f6;
}


.br90 {
	border-radius: 90px;
}

@media screen and (max-width: 1200px) {
	.br90 {
		border-radius: 40px;
	}
}


.section_cont.bg.white {
	padding: 60px 40px;
}

@media screen and (max-width: 1000px) {
	.section_cont.bg.white {
		padding: 50px 20px;
	}
}

.s_ttl {
	text-align: center;
	margin-bottom: 30px;
}
.s_ttl .ja {
	font-size: 20px;
	margin-top: 12px;
}
@media screen and (max-width: 1000px) {
	.s_ttl .ja {
		font-size: 16px;
	}

	.s_ttl .en img {
		width: auto;
		height: 24px;
	}
}


/* main_img
------------------------------------------------------------*/
#main_img {
	background-image: url(../img/main/main_img_bg.png);
	background-position: center bottom;
	background-repeat: no-repeat;
}
#main_img .inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 110px 40px 100px;
}
#main_img .main_img_txt {
	font-size: 24px;
	line-height: 2.4;
	writing-mode: vertical-rl;
	display: flex;
	justify-content: flex-end;
}
#main_img .main_img {
	width: calc(67% - 280px);
}
#main_img .main_img img {
	border-radius: 285px 285px 0 0;
}
#main_img .main_img_ttl {
	width: calc(40% - 280px);
	display: flex;
	align-items: center;
}

@media screen and (max-width: 1400px) {
	#main_img .inner {
		justify-content: center;
	}
	#main_img .main_img {
		width: calc(64% - 280px);
		margin: 0 60px;
	}
	#main_img .main_img_ttl {
		width: calc(46% - 280px);
		justify-content: center;
	}
}
	
@media screen and (max-width: 1200px) {
	#main_img .main_img_txt {
		font-size: 21px;
		line-height: 2;
	}

	#main_img .main_img_ttl {
		width: calc(50% - 240px);
	}
}

@media screen and (max-width: 1000px) {
	#main_img .main_img_txt {
		font-size: 18px;
		line-height: 1.8;
	}
	#main_img .main_img {
		width: calc(64% - 200px);
		margin: 0 40px;
	}
	#main_img .main_img_ttl {
		width: calc(50% - 200px);
	}
}

@media screen and (max-width: 768px) {
	#main_img .inner {
		padding-bottom: 240px;
		position: relative;
	}
	#main_img .main_img_txt {
		width: 200px;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
	}
	#main_img .main_img {
		width: 50%;
		margin: 0;
	}
	#main_img .main_img_ttl {
		width: 36%;
		margin-left: 10%;
	}
}


/* information
------------------------------------------------------------*/
#information {
	background-image: url(../img/information/information_bg.png);
	background-position: center top;
	background-repeat: no-repeat;
	position: relative;
}
#information::after {
	content: '';
	width: 100%;
	height: 40px;
	background-image: url(../img/information/information_wave.png);
	background-position: center top;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
}

#information section {
	padding-top: 40px; 
	padding-bottom: 80px;
}
#information .section_cont {
	padding-bottom: 120px;
}

#information .s_cont .ttl {
	font-size: 30px;
	font-weight: 600;
	text-align: center;
}
#information .s_cont .box {
	max-width: 800px;
	margin: 40px auto 0;
}
#information .s_cont dl:not(:first-child) {
	margin-top: 30px;
}
#information .s_cont dl dt {
	font-size: 20px;
	font-weight: 700;
}
#information .s_cont dl:first-child dt {
	color: #ea7289;
}
#information .s_cont dl:nth-child(2) dt {
	color: #fcb037;
}
#information .s_cont dl:nth-child(3) dt {
	color: #18a2a3;
}
#information .s_cont dl dt span {
	display: inline-block;
	background-color: #534741;
	color: #ffffff;
	margin-bottom: 5px;
	padding: 1px 10px 2px;
}
#information .s_cont dl dd {
	font-size: 18px;
	line-height: 1.7;
}

#information .section_img {
	margin-top: -80px;
}
#information .section_img .img {
	max-width: 33%;
}
#information .section_img .img:first-child {
	margin-top: -60px;
}
#information .section_img .img:nth-child(2) {
	margin-top: 30px;
}

@media screen and (max-width: 1500px) {
	#information .section_img {
		width: calc(100% + 60px);
		margin-left: -30px;
	}
	#information .section_img .img:first-child {
		margin-top: -30px;
	}
}

@media screen and (max-width: 1000px) {
	#information .s_cont .ttl {
		font-size: 21px;
	}
}

@media screen and (max-width: 768px) {
	#information section {
		padding-bottom: 60px;
	}

	#information .s_cont .ttl {
		font-size: 18px;
		text-align: left;
	}
	#information .s_cont .box {
		margin-top: 20px;
	}
	#information .s_cont dl:not(:first-child) {
		margin-top: 20px;
	}
	#information .s_cont dl dt {
		font-size: 18px;
	}
	#information .s_cont dl dd {
		font-size: 16px;
	}
}


/* #care
------------------------------------------------------------*/
#care {
	background-image: url(../img/care/care_bg.png);
	background-position: center bottom 40px;
	background-repeat: no-repeat;
	padding-top: 40px;
}
#care section {
	padding-top: 80px; 
	padding-bottom: 100px;
}

#care .cont .left {
	width: 46%;
}
#care .cont .right {
	width: 44.3%;
}
#care .cont .right .ttl {
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	#care section {
		padding-top: 60px; 
		padding-bottom: 80px;
	}

	#care .cont .left {
		width: 100%;
		text-align: center;
	}
	#care .cont .right {
		width: 100%;
		margin-top: 30px;
	}
	#care .cont .right .ttl {
		margin-bottom: 20px;
	}
	#care .cont .right .ttl img {
		width: 240px;
	}
}


/* flow
------------------------------------------------------------*/
#flow {
	background-image: url(../img/flow/flow_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
#flow section {
	padding-top: 80px; 
	padding-bottom: 60px;
}

#flow .cont .box {
	width: 17.85%;
	margin-top: 20px;
}
#flow .cont .step {
	color: #18a2a3;
	font-size: 23px;
	font-weight: 700;
	text-align: center;
}
#flow .cont .frame {
	width: 100%;
	background-color: #18a2a3;
	border-radius: 20px;
	color: #ffffff;
	text-align: center;
	margin-top: 15px;
	padding: 20px 15px 15px;
}
#flow .cont .frame .ttl {
	font-size: 19px;
	margin-top: 5px;
}
#flow .cont .txt {
	margin-top: 15px;
}

@media screen and (max-width: 1200px) {
	#flow .cont .frame .ttl {
		font-size: 16px;
	}
}

@media screen and (max-width: 1000px) {
	#flow .cont {
		justify-content: center;
	}
	#flow .cont .box {
		width: 30%;
		margin: 0 1% 20px;
	}
}

@media screen and (max-width: 768px) {
	#flow section {
		padding-top: 60px; 
	}

	#flow .cont {
		justify-content: space-between;
	}
	#flow .cont .box {
		width: 49%;
		margin: 0 0 20px;
	}
}


/* day
------------------------------------------------------------*/
#day {
	background-image: url(../img/day/day_bg.png);
	background-position: center top -20px;
	background-repeat: no-repeat;
	position: relative;
}
#day::after {
	content: '';
	width: 100%;
	height: 71px;
	background-image: url(../img/day/day_wave.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}
#day section {
	padding-top: 120px; 
	padding-bottom: 380px;
}

#day .s_cont {
	margin-top: 40px;
	padding: 20px 0;
	position: relative;
}
#day .s_cont::before {
	content: '';
	display: block;
	width: 6px;
	height: 100%;
	border-left: 5px dotted #fcb037;
	border-left-width: 6px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: auto;
}
#day .s_cont .box {
	width: 100%;
	max-width: 1010px;
	margin: 0 auto;
}
#day .s_cont .box:not(:first-child) {
	margin-top: 30px;
}
#day .s_cont .box .left,
#day .s_cont .box .right {
	width: 41.58%;
}
#day .s_cont .box .left {
	position: relative;
}
#day .s_cont .box .left .ttl {
	width: 105px;
	height: 105px;
	background-color: #18a2a3;
	border-radius: 53px;
	position: absolute;
	left: -50px;
	top: -50px;
}
#day .s_cont .box:nth-child(2n) .left .ttl {
	left: auto;
	right: -50px;
}
#day .s_cont .box .left .ttl span {
	display: inline-block;
	background-image: url(../img/day/day_ttl_img.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 23px auto;
	color: #ffffff;
	text-align: center;
	line-height: 1.2;
	padding-top: 14px;
}
#day .s_cont .box .left .img img {
	border-radius: 24px;
}
#day .s_cont .box .right .fukidashi {
	width: 100%;
	min-height: 100px;
	background-color: #fcb037;
	border-radius: 100vmax;
	margin-bottom: 35px;
	padding: 20px;
	position: relative;
}
#day .s_cont .box .right .fukidashi::before {
	content: '';
	width: 100%;
	height: 35px;
	background-image: url(../img/day/day_fukidashi_right.svg);
	background-position: left 30px bottom 8px;
	background-repeat: no-repeat;
	background-size: auto 35px;
	position: absolute;
	left: 0;
	bottom: -30px;
}
#day .s_cont .box.reverse .right .fukidashi::before {
	background-image: url(../img/day/day_fukidashi_left.svg);
	background-position: right 30px bottom 8px;
}
#day .s_cont .box .right .fukidashi span {
	font-size: 18px;
	font-weight: 600;
}

#day .s_txt {
	width: 100%;
	max-width: 1010px;
	background-color: #ea7289;
	border-radius: 100vmax;
	color: #ffffff;
	font-size: 20px;
	margin: 40px auto 0;
	padding: 15px 30px;
}
#day .s_txt span {
	font-size: 25px;
	font-weight: 600;
}

@media screen and (max-width: 1200px) {
	#day .s_cont .box .left .ttl {
		width: 90px;
		height: 90px;
		left: -30px;
		top: -30px;
	}
	#day .s_cont .box:nth-child(2n) .left .ttl {
		right: -30px;
	}

	#day .s_cont .box .right .fukidashi {
		border-radius: 30px;
		padding: 20px 25px;
	}

	#day .s_cont .box .right .fukidashi span {
		font-size: 18px;
		font-weight: 600;
	}
}

@media screen and (max-width: 1000px) {
	#day section {
		padding-bottom: 240px;
	}

	#day .s_ttl .en img {
		height: 14px;
	}
	#day .s_ttl .ja img {
		width: auto;
		height: 26px;
	}
}

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

	#day section {
		padding-top: 60px;
		padding-bottom: 140px;
	}

	#day .s_cont {
		margin-top: 20px;
	}
	#day .s_cont::before {
		content: none;
	}

	#day .s_cont .box {
		max-width: 420px;
		justify-content: center;
	}
		
	#day .s_cont .box.reverse {
		flex-flow: wrap;
	}

	#day .s_cont .box .left {
		width: 100%;
	}

	#day .s_cont .box .right {
		width: 100%;
		margin-top: 15px;
	}
	#day .s_cont .box .right .fukidashi {
		min-height: 1px;
		background-color: transparent;
		margin-bottom: 0;
		padding: 0;
		justify-content: flex-start;
	}
	#day .s_cont .box .right .fukidashi::before {
		content: none;
	}
	#day .s_cont .box .right .fukidashi span {
		font-size: 16px;
	}

	#day .s_txt {
		border-radius: 20px;
		font-size: 16px;
		margin-top: 30px;
		padding: 15px 20px;
	}
	#day .s_txt span {
		font-size: 18px;
	}
}


/* life
------------------------------------------------------------*/
#life {
	background-image: url(../img/life/life_bg.png);
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
#life::before,
#life::after {
	content: '';
	width: 100%;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	right: 0;
}
#life::before {
	height: 263px;
	background-image: url(../img/life/life_bg02.png);
	background-position: center;
	top: -170px;
}
#life::after {
	height: 71px;
	background-image: url(../img/life/life_wave.png);
	background-position: center bottom;
	bottom: 0;
}
#life section {
	padding-top: 60px; 
	padding-bottom: 160px;
}

#life .cont .left {
	width: 44.71%;
}
#life .cont .left .img {
	margin-top: -200px;
}
#life .cont .left .img img {
	border-radius: 233px 233px 0 0;
}
#life .cont .right {
	width: 44.23%;
	text-align: center;
}
#life .cont .right .fukidashi {
	width: 100%;
	min-height: 165px;
	background-color: #534741;
	color: #ffffff;
	border-radius: 100vmax;
	margin-top: 40px;
	position: relative;
}
#life .cont .right .fukidashi::before {
	content: '';
	width: 100%;
	height: 40px;
	background-image: url(../img/life/life_fukidashi_left.svg);
	background-position: left 30px bottom 8px;
	background-repeat: no-repeat;
	background-size: auto 31px;
	position: absolute;
	left: 0;
	bottom: -25px;
}
#life .cont .right .fukidashi {
	font-size: 18px;
}
#life .cont .right .fukidashi span {
	display: inline-block;
	font-size: 20px;
	margin-bottom: 10px;
}

@media screen and (max-width: 1200px) {
	#life .cont .right .fukidashi {
		border-radius: 40px;
	}
}

@media screen and (max-width: 768px) {
	#life section {
		padding-bottom: 120px;
	}

	#life .cont .left {
		width: 100%;
	}
	#life .cont .left .img {
		text-align: center;
		margin-top: -40px;
	}
	#life .cont .right {
		width: 100%;
		text-align: left;
		margin-top: 30px;
	}
	#life .cont .right .ttl img {
		width: 280px;
	}

	#life .cont .right .fukidashi {
		border-radius: 30px;
		margin-top: 30px;
	}
	#life .cont .right .fukidashi::before {
		content: none;
	}
}


/* other
------------------------------------------------------------*/
#other {
	background-color: #e7f6f6;
	background-image: url(../img/other/other_bg.png);
	background-position: center top;
	background-repeat: no-repeat;
}
#other section {
	padding-top: 60px;
	padding-bottom: 120px;
}

#other .cont .box {
	width: 48%;
}
#other .cont .box_cont {
	width: 100%;
	min-height: 450px;
	background-color: #ffffff;
	border-radius: 100vmax;
	padding: 60px 30px;
}
#other .s_cont {
	min-height: 210px;
}

@media screen and (max-width: 1200px) {
	#other .cont .box {
		width: 80%;
		margin: 0 auto;
	}
	#other .cont .box_cont {
		border-radius: 40px;
	}
}

@media screen and (max-width: 768px) {
	#other section {
		padding-top: 10px;
		padding-bottom: 60px;
	}
	#other .cont .box {
		width: 100%;
	}
	#other .cont .box_cont {
		min-height: 1px;
		padding: 40px;
	}

	#other .s_cont {
		min-height: 1px;
	}
}

#link,
#contact {
	margin-top: -80px;
	padding-top: 80px;
}

#link .s_cont .btn a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
#link .s_cont .btn a p {
	color: #ffffff;
	font-size: 23px;
	font-weight: 600;
	position: absolute;
	right: 45px;
	bottom: 76px;
}

#contact .s_cont .s_cont_inner {
	max-width: 380px;
}
#contact .s_cont .btn:nth-child(2) {
	margin: 15px 0;
}
#contact .s_cont .btn a {
	width: 300px;
	height: 60px;
	border-radius: 100vmax;
}
#contact .s_cont .btn:first-child a {
	background-color: #fcb037;
}
#contact .s_cont .btn:nth-child(2) a {
	background-color: #534741;
	color: #ffffff;
}
#contact .s_cont .btn a span {
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 30px;
}
#contact .s_cont .btn:first-child a span {
	background-image: url(../img/common/tel.svg);
	background-size: 18px auto;
	font-size: 28px;
	font-weight: 600;
}
#contact .s_cont .btn:nth-child(2) a span {
	background-image: url(../img/common/mail.svg);
	background-size: 23px auto;
	font-size: 18px;
}
#contact .s_cont .btn:nth-child(3) span {
	display: inline-block;
	background-color: #fff7eb;
	border-radius: 100vmax;
	padding: 10px 20px;
}

@media screen and (max-width: 768px) {
	#link,
	#contact {
		margin-top: -40px;
		padding-top: 40px;
	}

	#link .s_cont .btn a img {
		width: 260px;
	}

	#link .s_cont .btn a p {
		font-size: 16px;
		right: 23px;
		bottom: 45px;
	}

	#contact .s_cont .btn a {
		width: 280px;
		height: 54px;
	}
	#contact .s_cont .btn:nth-child(3) span {
		width: 280px;
		display: flex;
		justify-content: center;
	}
}










