/*----- 共通設定START -----*/
.clearfix::after {
   content: "";
   display: block;
   clear: both;
}
body {
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

a {
	text-decoration:none;
	color:#000000;
}

a:hover {
	opacity:0.8;
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

li {
	list-style-type:none;
}

/*----- 共通設定END -----*/

/*----- マージン指定START -----*/
.mt10 {margin-top:10px;}
.mr10 {margin-right:10px;}
.mb10 {margin-bottom:10px;}
.ml10 {margin-left:10px;}
.mt100 {margin-top:100px;}
.mr100 {margin-right:100px;}
.mb100 {margin-bottom:100px;}
.ml100 {margin-left:100px;}
/*----- マージン指定END -----*/


/*----- ヘッダーK's-style START -----*/


header.ksstyle {
  position: relative;
  background-color: #FFF;
  opacity:0.8;
  box-shadow: 0px 0px 8px rgb(0 0 0 / 15%);
  z-index:9999;
}

.brand {
	font-weight: bold;
	font-size: 20px;
}

header.ksstyle .ksstyle_start img {
	width:100%;
	max-width:180px;
}

.ksstyle_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.1rem;
}

@media (min-width: 630px) {
	.ksstyle_wrapper {
		justify-content: initial; 
	}
}
@media (min-width: 630px) {
	.ksstyle_middle {
		margin-left: auto;
	} 
}

@media (max-width: 629px) {
	.ksstyle_end {
		padding-right: 4rem;
	}
}

@media (min-width: 630px) {
	.nav_wrapper {
		display: flex;
	}
}

@media (max-width: 629px) {
	.nav_wrapper {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		z-index: -1;
		background-color: #d9f0f7;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-100%);
		transition: transform 0.3s ease-out, opacity 0.3s ease-out;
	}
	.nav_wrapper.active {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}
}

.nav_item a {
	display: block;
	padding: 1rem 2rem;
	font-size:22px;
}
ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.nav_wrapper > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 80px;
    width: 200%;
    background: #FFF;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

li.menu__single:hover ul.menu__second-level {
    top: 60px;
    visibility: visible;
	opacity:0.9;
}
li.menu__single ul.menu__second-level li a {
	font-size:18px !important;
	
}


/*ハンバーガーメニュー*/
#navArea {

}
.head_logo_sp {
	max-width:250px;
	float:left;
}
.head_logo_sp img {
	width:100%;
}
@media screen and (max-width: 400px) {

.head_logo_sp {
	max-width:200px;
	float:left;
}
}
@media screen and (max-width: 340px) {

.head_logo_sp {
	max-width:180px;
	float:left;
}
}

/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav {
    left: -280px;
    width: 280px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 99993;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
	.ksstyle {
		display:block;
	}
	#navArea {
		display:none;
	}
}

@media screen and (max-width: 800px) {
	.ksstyle {
		display:none;
	}
	#navArea {
		display:block;
	}
	section.full {
    margin-top: 0px !important;
	}
	section.full_iruka {
    margin-top: 0px !important;
	}
	section.full_kyousei {
    margin-top: 0px !important;
	}
}

/*----- ヘッダーK's-style END -----*/



/*----- メインK's-style START -----*/
section.full {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background: url("../img/full_bg_top.jpg")
	center / cover;
	margin-top:-70px;
	z-index:-9999;
}

section.full .catch_cp {
	margin: 0;
	position: absolute;
	top: calc(50% - 0.5em);
	width: 100%;
	text-align: center;
	line-height: 1;
	font-size: 3vw;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	color:#FFF;
	text-shadow: 3px 3px 3px #000;
}
section.type01 {
	max-width:1000px;
	margin:0 auto;
	background: url("../img/hart_hand.gif");
	background-position: left 50% bottom 0;
	background-repeat: no-repeat;
	background-size: 10% auto;
	padding-bottom:20px;
}
section.type01 h2 {
	font-size: 1.5vw;
	text-align:center;
	line-height:150%;
	margin-top:100px;
}
section.type01 h2 span {
	font-size: 1vw;
	display:block;
	border-top:5px solid #f39700;
	color:#f39700;
	width:300px;
	margin:0 auto;
}
section.type01 p {
	padding:50px 10%;
	font-size:1.1vw;
	line-height:150%;
}
section.type01 .btn {
	background: #FFF; /* 背景色 */
	color: #f39700; /* 文字色 */
	padding: 16px 40px; /* 上下の余白、左右の余白 */
	text-decoration: none; /* デフォルトで入るリンクの下線を消す */
	border-radius: 10px; /* 角を丸くする */
	border:2px solid #f39700;
	font-size:1vw;
	font-weight:bold;
	text-align:center;
	display:block;
	float:right;
	margin-right:10%;
}

section.type02 {
	background: url("../img/bg_top_01.gif");
	background-color:#EEE;
	background-position: left 0 top 0;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-top:50px;
	max-width:1000px;
	width:100%;
	margin:100px auto 0;
}
section.type02 h2 {
	border-radius: 5px; /* 角を丸くする */
	border:2px solid #f39700;
	font-size:1.3vw;
	padding:10px 30px;
	display:block;
	text-align:center;
	max-width:200px;
	margin:0 auto;
	margin-top:50px;
	background-color:#FFF;
}
section.type02 p {
	width:60%;
	margin:30px auto;
	font-size:1vw;
	line-height:150%;
}
section.type02 ul {
	width:100%;
}
section.type02 li {
	float:left;
	width:42%;
	padding:4%;
}


section.type02 .iruka_bn {
	position: relative;
	width: 100%;
	min-height: 280px;
	background: url("../img/iruka_bn.jpg")
	center / cover;
}
section.type02 .kyousei_bn {
	position: relative;
	width: 100%;
	min-height: 280px;
	background: url("../img/kyousei_bn.jpg")
	center / cover;
}
section.type02 .catch_cp {
	margin: 0;
	position: absolute;
	top: calc(50% - 0.5em);
	width: 100%;
	text-align: center;
	line-height: 1;
	font-size: 1.5vw;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	color:#FFF;
	text-shadow: 3px 3px 3px #000;
}
section.type02 .catch_cp span {
	display:block;
	font-size:1.2vw;
	margin-top:10px;
}
section.type02 ul li p {
	width:100%;
}
section.type02 .btn {
	background: #FFF; /* 背景色 */
	color: #f39700; /* 文字色 */
	padding: 16px 40px; /* 上下の余白、左右の余白 */
	text-decoration: none; /* デフォルトで入るリンクの下線を消す */
	border-radius: 10px; /* 角を丸くする */
	border:2px solid #f39700;
	font-size:1vw;
	font-weight:bold;
	text-align:center;
	display:block;
	margin:0 auto;
	width:30%;
	position:relative;
	bottom:10%;
}

section.type03 {
	position: relative;
	width: 100%;
	margin:0 auto;
	max-width:1000px;
	min-height: 420px;
	background: url("../img/saiyou_bg.jpg")
	center / cover;
}
section.type03 .saiyou_txt {
	background:#FFF;
	width:50%;
	margin:50px 0 0 5%;
	position: absolute;
	padding:3%;
}
section.type03 h3 {
	font-size:1.4vw;
	line-height:150%;
}
section.type03 p {
	line-height:150%;
	font-size:1vw;
}
section.type03 .btn {
	background: #FFF; /* 背景色 */
	color: #f39700; /* 文字色 */
	padding: 16px 40px; /* 上下の余白、左右の余白 */
	text-decoration: none; /* デフォルトで入るリンクの下線を消す */
	border-radius: 10px; /* 角を丸くする */
	border:2px solid #f39700;
	font-size:1vw;
	font-weight:bold;
	text-align:center;
	display:block;
	margin:0 auto;
	width:30%;
	position:relative;
	bottom:10%;
}
section.type04 {
	position: relative;
	width: 100%;
	margin:0 auto;
	max-width:1000px;
	min-height: 450px;
	max-height: 500px;
	background: url("../img/ksstyle_obout_bg.jpg")
	center / cover;
	padding-top:40px;
}
section.type04 h2 {
	font-size:1.5vw;
	text-align:center;
}
section.type04 p {
	font-size:1vw;
	line-height:200%;
	padding:0 10%;
	margin-top:30px;
	
display        : inline-block;
color          : #000;
letter-spacing : 4px;
text-shadow    : 
2px  2px 1px #FFF,
-2px  2px 1px #FFF,
2px -2px 1px #FFF,
-2px -2px 1px #FFF,
2px  0px 1px #FFF,
0px  2px 1px #FFF,
-2px  0px 1px #FFF,
0px -2px 1px #FFF;        /* 文字の影 */
}
section.type05 {
	width:100%;
	max-width:900px;
	background:#EAEAEA;
	margin:80px auto 0;
}
section.type05 p {
	font-size:1vw;
	padding:30px 5%;
	line-height:150%;
}
section.type05 .daihyou_name {
	text-align:right;
	display:block;
	font-size:1.1vw;
	margin-top:20px;
}
section.type06 {
	width:100%;
	max-width:900px;
	margin:80px auto 0;
}
section.type06 h2 {
	font-size:1.4vw;
	text-align:center;
}
section.type06 h3 {
	font-size:1.2vw;
	border-top:1px solid #f39700;
	border-bottom:1px solid #f39700;
	padding:15px 0;
	margin-top:40px;
}
section.type06 p {
	margin-top:20px;
	font-size:1vw;
	line-height:150%;
}
section.type06 .btn {
	background: #f39700; /* 背景色 */
	color: #FFF; /* 文字色 */
	padding: 16px 40px; /* 上下の余白、左右の余白 */
	text-decoration: none; /* デフォルトで入るリンクの下線を消す */
	border-radius: 10px; /* 角を丸くする */
	border:2px solid #f39700;
	font-size:1vw;
	font-weight:bold;
	text-align:center;
	display:block;
	margin:30px auto 0;
	width:30%;
}
section.type07 {
	width:100%;
	max-width:1000px;
	margin:80px auto 0;
}
section.type07 h2 {
	font-size:3vw;
	text-align:center;
}
section.type07 h3 {
	font-size:2vw;
	margin-top:40px;
}
section.type07 h3 span {
	color:#f39700;
	font-size:2vw;
	margin-right:5px;
}
section.type07 .kaisha {
	width: 100%;
	max-width:1000px;
	margin-top:20px;
}
section.type07 .kaisha {
	width: 100%;
	max-width:1000px;
	margin:20px auto;
}
section.type07 table.kaisha {
	border-collapse: collapse ;
}
section.type07 .kaisha th {
	font-weight: bold;
	background-color: #f39700; 
	text-align:center;
	letter-spacing:0.8vw;
	color:#FFF;
}
section.type07 .kaisha th,
section.type07 .kaisha td {
	border: 1px solid #E68F00;
	padding: 20px;
}

@media screen and (max-width: 767px) {
section.type07 .kaisha,
section.type07 .kaisha tr,
section.type07 .kaisha td,
section.type07 .kaisha th {display:block;}
section.type07 .kaisha th {width:auto;}
}


section.type08 {
	position: relative;
	width: 100%;
	margin:0 auto;
	max-width:1000px;
	min-height: 350px;
	max-height: 400px;
	background: url("../img/recruit_bottom_bg.jpg")
	center / cover;
	margin-top:80px;
}
section.type08 p {
	font-size:2vw;
	position: absolute;
	top: calc(40% - 1.2vw);
	width:40%;
	line-height:150%;
	padding-left:5%;
}

/*----- メインK's-style END -----*/


/*----- フッターK's-style START -----*/
footer .footer_company {
	text-align:center;
	margin-top:100px;
}
footer .footer_company p.com_name {
	font-size:1.5vw;
}
footer .footer_company p.com_add {
	font-size:1vw;
	margin-top:10px;
}
footer .footer_company p.com_tel {
	font-size:1.2vw;	
	margin-top:10px;
}
footer .footer_company p.com_tel img {
	width:26px;
	margin-right:10px;
}
footer .footer_nav {
	background:#f39700;	
	width:100%;
	margin-top:50px;
}
footer .footer_nav ul {
	text-align:center;
}
footer .footer_nav ul li {
	padding:30px;
	float:left;
}
footer .footer_nav ul li a {
	color:#FFF;
	font-size:1.2vw;
}
footer .footer_nav ul.flex {
	display: flex;
	justify-content: center;
}
/*----- フッターK's-style END -----*/


/*----- メイン イルカ START -----*/
section.full_iruka {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background: url("../img/full_bg_top_iruka.jpg")
	center / cover;
	margin-top:-70px;
	z-index:-9999;
}

section.full_iruka .catch_cp {
	margin: 0;
	position: absolute;
	top: calc(50% - 0.5em);
	width: 100%;
	text-align: center;
	line-height: 1;
	font-size: 3vw;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	color:#FFF;
	text-shadow: 3px 3px 10px #000;
}
section.full_iruka p {
	margin: 0;
	position: absolute;
	top: calc(60% - 0.6em);
	width: 100%;
	text-align: center;
	line-height: 150%;
	font-size: 1.2vw;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	color:#FFF;
	text-shadow: 2px 2px 10px #000;
}


section.type09 {
	width: 100%;
	margin:80px auto 0;
	max-width:700px;
}
section.type09 p {
	font-size:1vw;
	line-height:150%;
}
section.type09 .frame-box-001 {
	padding: 30px;
	position: relative;
}

section.type09 .frame-box-001::before, .frame-box-001::after {
	content: '';
	width: 30px;
	height: 30px;
	position: absolute;
}

section.type09 .frame-box-001::before {
	border-left: solid 4px #7ecef4;
	border-top: solid 4px #7ecef4;
	top: 0;
	left: 0;
}

section.type09 .frame-box-001::after {
	border-right: solid 4px #7ecef4;
	border-bottom: solid 4px #7ecef4;
	bottom: 0;
	right: 0;
}
section.type09 p.tel_app {
	text-align:center;
	margin-top:60px;
	line-height:200%;
	font-weight:bold;
	font-size:1.1vw;
}
section.type09 p.tel_app span {
	color:#13b5b1;
	background:linear-gradient(transparent 60%, #fff799 60%);
	font-size:1.6vw;
}
section.type09 .tel_link {
	position: relative;
	padding: 1rem 2rem calc(1rem + 10px);
	background: #eb6877;
	font-size:1.5vw;
	width:100%;
	max-width:300px;
	margin:30px auto;
	text-align:center;
}
section.type09 .tel_link a {
	color:#FFF;
}
/*
section.type09 .tel_link:before {
	position: absolute;
	top: -7px;
	left: -7px;
	width: 100%;
	height: 100%;
	content: '';
	border: 1px solid #000;
}
*/
section.type09 .tel_link img {
	width:30px;
	margin-right:10px;
}


section.type10 {
	background: #e5f5fd;
	position: relative;
	width:100%;
	padding:80px 0;
	margin-top:80px;
}
section.type10 .type10_bg {
	position: relative;
	width: 100%;
	margin:0 auto;
	max-width:1000px;
	min-height: 350px;
	background: url("../img/aisatu_bg.jpg")
	right / 50%;
	background-repeat: no-repeat;
}
section.type10 .aisatu_txt_shadow {
	background: #7ecef4;
	width: 60%;
}
section.type10 .aisatu_txt {
	width: 100%;
	background: #FFF;
	position:relative;
	top:-10px;
	left:-10px;
}
section.type10 .aisatu_txt h3 {
	font-size:1.2vw;
	line-height:150%;
	color:#7ecef4;
	text-align:center;
	border-bottom:5px solid #e5f5fd;
	width:30%;
	padding-top:20px;
	margin:0 auto;
}
section.type10 .aisatu_txt p {
	line-height:150%;
	font-size:1vw;
	color:#000;
	padding:30px 6%;
}


section.type11 {
	position: relative;
	width:100%;
}
section.type11 h2 {
	background-size: auto auto;
	background-color: rgba(126, 202, 244, 1);
	background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(126, 206, 244, 1) 10px, rgba(126, 206, 244, 1) 20px );
	color:#FFF;
	text-align:center;
	font-size:1.5vw;
	padding:40px 0;
}
section.type11 h2 img {
	width:35px;
	margin:0 5px;
}
section.type11 .type11_bg {
	width: 100%;
	min-height: 60vh;
	background: url("../img/sien_agata_bg.jpg")
	center / cover;
	z-index:-9999;
	padding-top:80px;
}
section.type11 .bg_txt {
	max-width:1000px;
	margin:0 auto;
}
section.type11 .type11_bg p {
	width:50%;
	font-size:1vw;
	padding:20px 3%;
	line-height:180%;
	background-color: rgba(255,255,255,0.5);
}
section.type11 .type11_bg p span {
	color:#13b5b1;
	font-size:1.3vw;
	display:block;
	margin-top:20px;
}



section.type12 {
	width:100%;
	max-width:1000px;
	margin:80px auto;
}
section.type12 .img_cont {
	width:50%;
	background:#FFF;
	box-shadow: 2px 2px 4px gray;
	float:left;
	position:relative;
}
section.type12 .img_cont img {
	width:100%;
}
section.type12 .txt_cont {
	background:#e5f5fd;
	float:left;
	width:46%;
	height:320px;
	margin-left:-3%;
	margin-top:50px;
	padding-top:30px;
	padding-left:5%;
	padding-right:2%;
}
section.type12 .txt_cont h3 {
	font-size:1vw;
	line-height:150%;
	background: linear-gradient(transparent 70%, #fff799 0%);
	display: inline;
	text-align:center;
	padding-top:20px;
}
section.type12 .txt_cont p {
	font-size:1vw;
	line-height:150%;
	margin-top:20px;
}

section.type13 {
	width:100%;
	background:#FAFAFA;
	padding:40px 0;
}

section.type13 h2 {
	position: relative;
	padding: 1rem 2rem calc(1rem + 10px);
	background: #13b5b1;
	font-size:1.5vw;
	width:100%;
	max-width:300px;
	margin:30px auto;
	text-align:center;
	color:#FFF;
}
section.type13 h2:before {
	position: absolute;
	top: -7px;
	left: -7px;
	width: 100%;
	height: 100%;
	content: '';
	border: 1px solid #000;
}
section.type13 ul {
	width:100%;
	max-width:1000px;
	margin:60px auto;
}
section.type13 ul li {
	float:left;
	width:30%;
	margin:0 1%;
}
section.type13 ul li:nth-child(2) {
	margin:0 3%;
}
section.type13 ul li img {
	width:100%;
	max-width:500px;
}
section.type13 .txt_area {
	max-width:500px;
}
section.type13 ul li p {
	background: linear-gradient(transparent 70%, #fff799 0%);
	display: inline;
	padding: 0 0 4px;
	line-height:180%;
}
section.type13 p.txt_box {
	background:#FFF;
	border-radius: 10px;
	width:100%;
	max-width:1000px;
	margin:40px auto;
	padding:20px;
	border:5px solid #13b5b1;
	box-sizing: border-box;
	font-size:1vw;
	line-height:180%;
}

section.type14 {
	position: relative;
	width:100%;
}
section.type14 h2 {
	background-size: auto auto;
	background-color: rgba(126, 202, 244, 1);
	background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(126, 206, 244, 1) 10px, rgba(126, 206, 244, 1) 20px );
	color:#FFF;
	text-align:center;
	font-size:1.5vw;
	padding:40px 0;
}
section.type14 .box_cont {
	width:100%;
	max-width:1000px;
	margin:40px auto;
}
section.type14 .box_l {
	float:left;
	width:55%;
}
section.type14 .box_l img {
	width:100%;
	max-width:600px;
}
section.type14 .box_r {
	float:right;
	width:40%;
}
section.type14 .box_r h3 {
	border-bottom:4px solid #7ecef4;
	font-size:1.1vw;
	width:80%;
	margin:20px auto 0;
	padding-bottom:10px;
	text-align:center;
}
section.type14 .box_r p {
	margin-top:30px;
	font-size:0.9vw;
	line-height:180%;
	
}
section.type14 .sisetu_detail {
	background-color: #E5F5FD;
	background-image:radial-gradient(#BDE0F7 10%, transparent 10%);
	background-size: 20px 20px;
	padding:40px 0;
}
section.type14 .sisetu_detail ul {
	width:100%;
	max-width:1000px;
	margin:0 auto;
}
section.type14 .sisetu_detail ul li {
	float:left;
	width:30%;
}
section.type14 .sisetu_detail ul li:nth-child(2) {
	margin:0 5%;
}
section.type14 .sisetu_detail ul li img {
	width:100%;
	max-width:323px;
	box-shadow: 3px 3px 8px rgb(0 0 0 / 15%);	
}
section.type14 .sisetu_detail ul li p {
	line-height:150%;
}
section.type14 .sisetu_detail ul li p span {
	text-align:center;
	display:block;
	margin-top:10px;
	font-weight:bold;
}

section.type14  p.shadow_box {
	box-shadow: 10px 10px 0px 0 rgb(255,255,153);
	background:#FFF;
	border:2px solid #333;
	border-radius: 3px;
	width:100%;
	max-width:700px;
	padding:20px;
	margin:40px auto 0;
	line-height:150%;
	box-sizing: content-box;
}
@media screen and (max-width: 767px) {
	section.type14  p.shadow_box {
		box-shadow: 0;
		background:#FFF;
		border:2px solid #333;
		border-radius: 3px;
		width:90%;
		max-width:700px;
		padding:20px 1%;
		margin:40px auto 0;
		line-height:150%;
		box-sizing: content-box;
	}
}


section.type14 .contact_box {
	background:#BFE5F8;
	text-align:center;
	padding:20px 0;
}
section.type14 .contact_box p {
	font-size:1vw;
}
section.type14 .tel_link {
	position: relative;
	padding: 1rem 2rem calc(1rem + 10px);
	background: #eb6877;
	font-size:1.5vw;
	width:100%;
	max-width:300px;
	margin:30px auto;
	text-align:center;
}
section.type14 .tel_link a {
	color:#FFF;
}
/*
section.type14 .tel_link:before {
	position: absolute;
	top: -7px;
	left: -7px;
	width: 100%;
	height: 100%;
	content: '';
	border: 1px solid #000;
}
*/
section.type14 .tel_link img {
	width:30px;
	margin-right:10px;
}



section.type15 {
	position: relative;
	width:100%;
  background-color: #fff;
  background-image:
    radial-gradient(#BEE6F9 10%, transparent 15%);
  background-size: 20px 20px;
}
section.type15 h2 {
	background-size: auto auto;
	background-color: rgba(126, 202, 244, 1);
	background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(126, 206, 244, 1) 10px, rgba(126, 206, 244, 1) 20px );
	color:#FFF;
	text-align:center;
	font-size:1.5vw;
	padding:40px 0;
}
section.type15 .process {
	background-color: #fff;
	max-width:920px;
	width:90%;
	margin:100px auto 0;
	padding:60px 5% 20px;
}
section.type15 .process h3 {
	font-size:1.3vw;
	border-left:8px solid #13b5b1;
	padding-left:10px;
}
section.type15 .process_l {
	float:left;
	width:60%;
}
section.type15 .process_r {
	float:right;
	width:40%;
}
section.type15 .process_r img {
	width:100%;
	max-width:500px;
}
section.type15 .process p {
	margin-top:10px;
	line-height:200%;
	font-size:1vw;
}
section.type15 h4 {
	position: relative;
	padding: 1rem 2rem calc(1rem + 10px);
	background: #13b5b1;
	font-size:1.5vw;
	width:100%;
	max-width:300px;
	margin:30px auto;
	text-align:center;
	color:#FFF;
}
section.type15 h4:before {
	position: absolute;
	top: -7px;
	left: -7px;
	width: 100%;
	height: 100%;
	content: '';
	border: 1px solid #000;
}
section.type15 .use_flow {
	border:5px solid #13b5b1;
	border-radius: 20px;
	width:100%;
	max-width:1000px;
	margin:0 auto;
	background-image:url("../img/use_bg.gif");
	background-repeat: repeat;
	padding:40px 0;
	box-sizing: border-box;
}
section.type15 .use_flow ul li {
	position: relative;
	display: block;
	padding: 30px 0;
	color: #555;
	font-size: 16px;
	background: #FFF;
	border: solid 3px #13b5b1;
	box-sizing: border-box;
	border-radius: 15px;
	width:80%;
	margin: 30px auto;
	box-shadow: 3px 3px 0px 0 rgb(19,181,177);
	text-align:center;
	font-size:1.1vw;
	font-weight:bold;
	color:#13b5b1;
}
section.type15 .use_flow ul li:last-child {
	color:#E3007E;
	font-size:1.3vw;
}
section.type15 .use_flow ul li span {
	background: linear-gradient(transparent 60%, #fff799 0%);
	padding:0 10px;
}

section.type15 .use_flow ul li:before {
	content: "";
	position: absolute;
	bottom: -24px;
	left: 50%;
	margin-left: -15px;
	border: 12px solid transparent;
	border-top: 12px solid #FFF;
	z-index: 2;
}
section.type15 .use_flow ul li:after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 50%;
	margin-left: -17px;
	border: 14px solid transparent;
	border-top: 14px solid #13b5b1;
	z-index: 1;
}

section.type15 .use_flow ul li:last-child:before {
	border: 0px solid transparent;
}
	
section.type15 .use_flow ul li:last-child:after {
	border: 0px solid transparent;
}
section.type15 .step_flow_cont {
	max-width:1000px;
	width:100%;
	margin:0 auto;
	background:#FFF;
}
section.type15 .step_flow {
	padding:30px 5%;
}
section.type15 .step_flow .step1 {
	font-size:1.2vw;
	color:#00a0e9;
	font-weight:bold;
	margin-top:20px;
	background: linear-gradient(transparent 60%, #CCECFB 0%);
	display:inline-block;
}
section.type15 .step_flow .step2 {
	font-size:1.2vw;
	color:#f39800;
	font-weight:bold;
	margin-top:20px;
	background: linear-gradient(transparent 60%, #FDEACC 0%);
	display:inline-block;
}
section.type15 .step_flow .step3 {
	font-size:1.2vw;
	color:#ea68a2;
	font-weight:bold;
	margin-top:20px;
	background: linear-gradient(transparent 60%, #FBE1EC 0%);
	display:inline-block;
}
section.type15 .step_flow .step4 {
	font-size:1.2vw;
	color:#fdd80d;
	font-weight:bold;
	margin-top:20px;
	background: linear-gradient(transparent 60%, #FFF7CF 0%);
	display:inline-block;
}
section.type15 .step_flow .step5 {
	font-size:1.2vw;
	color:#13b5b1;
	font-weight:bold;
	margin-top:20px;
	background: linear-gradient(transparent 60%, #D0F0EF 0%);
	display:inline-block;
}
.step1 span, .step2 span, .step3 span, .step4 span, .step5 span {
	font-size:1.7vw;
	padding:0 10px;
}
section.type15 .step_flow p {
	font-size:1vw;
	line-height:150%;
	margin-top:10px;
}
section.type15 .target_person_cont {
	background:#d7f1fc;
	width:100%;
	max-width:1000px;
	margin:0 auto;
	padding:30px 0;
}
section.type15 .target_person {
	background:#FFF;
	width:90%;
	max-width:1000px;
	box-sizing:border;
	margin:0 auto;
	border: solid 2px #7ecef4;
	box-sizing: border-box;
	border-radius: 5px;
}
section.type15 .target_person h3 {
	background:#7ecef4;
	color:#FFF;
	font-size:1.1vw;
	padding:10px 20px;
}
section.type15 .target_person p {
	padding:30px;
	font-size:1vw;
	line-height:150%;
	background-image:url("../img/target_person_img.gif");
	background-repeat: no-repeat;
	background-position: top right 10px;
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
	-1px 1px 0 #FFF, 1px -1px 0 #FFF,
	0px 1px 0 #FFF,  0-1px 0 #FFF,
	-1px 0 0 #FFF, 1px 0 0 #FFF;
}
section.type16 h2 {
	background-size: auto auto;
	background-color: rgba(126, 202, 244, 1);
	background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(126, 206, 244, 1) 10px, rgba(126, 206, 244, 1) 20px );
	color:#FFF;
	text-align:center;
	font-size:1.5vw;
	padding:40px 0;
}
section.type16 .price_cont {
	background-color: #fff;
	max-width:920px;
	width:90%;
	margin:50px auto 0;
	padding:30px 5% 20px;
}
section.type16 .price_cont h3 {
	font-size:1.3vw;
	border-left:8px solid #13b5b1;
	padding-left:10px;
}
section.type16 .price_cont p {
	margin-top:20px;
	line-height:150%;
	font-size:1vw;
}
section.type16 .price_cont h4 {
	font-size:1.3vw;
	color:#19a0e9;
	background: linear-gradient(transparent 60%, #fff89e 0%);
	display:inline-block;
	margin-top:40px;
}
section.type16 .price_table {
	width: 100%;
	margin-top:20px;
}
section.type16 table.price_table {
	border-collapse: collapse ;
}

section.type16 .price_table tr:first-child {
	background-color: #7ecef4;
	color:#FFF;
	font-weight:bold;
}
section.type16 .price_table th {
	font-weight: bold;
	background-color: #E5F5FD; 
}
section.type16 .price_table th,
section.type16 .price_table td {
	border: 1px solid #97D8F7;
	padding: 20px;
}
section.type16 .price_cont span {
	color:#4395FA;
	padding:0 5px;
}

@media screen and (max-width: 767px) {
section.type16 .price_table,
section.type16 .price_table tr,
section.type16 .price_table td,
section.type16 .price_table th {}
section.type16 .price_table th {width:auto;}
}





section.type17 {
	position: relative;
	width:100%;
	background-color: #fff;
	background-image:
	radial-gradient(#BEE6F9 10%, transparent 15%);
	background-size: 20px 20px;
	padding-bottom:40px;
}
section.type17 h2 {
	background-size: auto auto;
	background-color: rgba(126, 202, 244, 1);
	background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(126, 206, 244, 1) 10px, rgba(126, 206, 244, 1) 20px );
	color:#FFF;
	text-align:center;
	font-size:1.5vw;
	padding:40px 0;
}
section.type17 .day_cont {
	background-color: #fff;
	max-width:920px;
	width:90%;
	margin:40px auto 0;
	padding:60px 5% 20px;
}
section.type17 .day_cont h3 {
	font-size:1.3vw;
	border-left:8px solid #13b5b1;
	padding-left:10px;
}
section.type17 .day_l {
	float:left;
	width:60%;
}
section.type17 .day_r {
	float:right;
	width:40%;
}
section.type17 .day_r img {
	width:100%;
	max-width:500px;
}
section.type17 .day_cont p {
	margin-top:10px;
	line-height:200%;
	font-size:1vw;
}




section.type18 {
	background:#E4F5FD;
	padding:40px 0;
}
section.type18 h4 {
	position: relative;
	padding: 1rem 2rem calc(1rem + 10px);
	background: #13b5b1;
	font-size:1.5vw;
	width:100%;
	max-width:300px;
	margin:30px auto;
	text-align:center;
	color:#FFF;
}
section.type18 h4:before {
	position: absolute;
	top: -7px;
	left: -7px;
	width: 100%;
	height: 100%;
	content: '';
	border: 1px solid #000;
}
section.type18 .day_schedule {
	width:100%;
	max-width:1000px;
	background:#FFF;
	padding:20px 0;
	margin:0 auto;
	text-align:center;
}
section.type18 .day_schedule img {
	width:100%;
	max-width:770px;
}

section.type19 {
	width:100%;
	max-width:1000px;
	box-sizing:border-box;
	border:5px solid #13b5b1;
	border-radius: 20px;
	margin:40px auto;
	padding:20px 0;
}
section.type19 h3 {
	font-size:1.1vw;
	text-align:center;
	background-image:url("../img/dotted_colorful.jpg");
	background-repeat: no-repeat;
	background-position: bottom 0px center;
	padding:0 0 40px;
	background-size: 50% auto;
}
section.type19 img {
	float:left;
	width:100%;
	max-width:200px;
}
section.type19 p {
	padding:20px 5%;
	text-align:center;
	font-size:1vw;
	line-height:200%;
}


section.type20 {
	
}
section.type20 h2 {
	background-size: auto auto;
	background-color: rgba(126, 202, 244, 1);
	background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(126, 206, 244, 1) 10px, rgba(126, 206, 244, 1) 20px );
	color:#FFF;
	text-align:center;
	font-size:1.5vw;
	padding:40px 0;
}
section.type20 .company {
	width: 100%;
	max-width:1000px;
	margin:20px auto;
}
section.type20 table.company {
	border-collapse: collapse ;
}
section.type20 .company th {
	font-weight: bold;
	background-color: #E5F5FD; 
	text-align:center;
	letter-spacing:0.8vw;
}
section.type20 .company th,
section.type20 .company td {
	border: 1px solid #97D8F7;
	padding: 20px;
}

@media screen and (max-width: 767px) {
section.type20 .company,
section.type20 .company tr,
section.type20 .company td,
section.type20 .company th {display:block;}
section.type20 .company th {width:auto;}
}
section.type20 .access_map {
	background:#E4F5FD;
	width:100%;
	padding:40px 0;
}
section.type20 .access_area {
	background:#FFF;
	width:100%;
	max-width:1000px;
	margin:0 auto;
}
section.type20 .access_area p {
	line-height:150%;
	font-size:1vw;
	padding:20px;
}
section.type20 .access_contact {
	max-width:600px;
	width:100%;
	background:#FFF;
	box-shadow: 10px 10px 0px 0 rgb(19,180,179);
	margin:40px auto;
	position:relative;
	padding:30px 0;
}
section.type20 .access_contact p {
	text-align:center;
	font-size:1.1vw;
	background: linear-gradient(transparent 70%, #FFFFCC 0%);
	width:85%;
	margin:0 auto;
}
section.type20 .img_layout {
	position:absolute;
	right:0px;
	bottom:0px;
	max-width:60px;
}
section.type20 .img_layout img {
	width:100%;
}
/*----- メイン イルカ END -----*/



/*----- メイン 共生の森 START -----*/
section.full_kyousei {
	position: relative;
	width: 100%;
	min-height: 120vh;
	background: url("../img/full_bg_top_kyousei.jpg")
	center / cover;
	margin-top:-70px;
	z-index:-9999;
}

section.full_kyousei .catch_cp {
	margin: 0;
	position: absolute;
	top: calc(50% - 0.5em);
	width: 100%;
	text-align: center;
	line-height: 1.6;
	font-size: 3vw;
	font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
	color:#FFF;
	text-shadow: 3px 3px 10px #000;
}


section.type21 {
	
}
section.type21 .kyousei_copy {
	width: 100%;
	max-width:1000px;
	min-height: 400px;
	background: url("../img/kyousei_copy.jpg") no-repeat;
	margin:60px auto 0;
}
section.type21 .kyousei_copy h2 {
	color:#FFF;
	text-shadow: 1px 1px 5px #000;
	font-size: 1.6vw;
	text-align:center;
	padding-top:10%;
}
section.type21 .kyousei_copy p {
	color:#FFF;
	text-shadow: 1px 1px 5px #000;
	text-align:center;
	line-height:200%;
	font-size: 1.2vw;
	margin-top:30px;
}
section.type21 .kyousei_uketuke {
	width: 100%;
	max-width:900px;
	min-height: 500px;
	background: url("../img/leaf_bg.jpg") no-repeat;
	margin:60px auto 0;
	padding-top:140px;
}
section.type21 .kyousei_uketuke h3 {
	font-size: 1vw;
	text-align:center;
	position: relative;
	padding: 0 65px;
	max-width:340px;
	margin:0 auto;
}
section.type21 .kyousei_uketuke h3:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background: #CCC;
}
section.type21 .kyousei_uketuke h3 span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}
section.type21 .kyousei_uketuke p {
	color:#000;
	text-align:center;
	line-height:200%;
	font-size: 1.2vw;
	margin-top:30px;
}
section.type21 .kyousei_uketuke .tel_link {
	text-align:center;
	margin-top:10px;
}
section.type21 .kyousei_uketuke .tel_link a {
	color:#019E96;
	font-size:1.7vw;
}
section.type21 .kyousei_uketuke .tel_link img {
	width:40px;
	margin-right:10px;
}
section.type21 .nyukyo_annai {
	margin:0 auto;
	max-width:700px;
}
section.type21 .nyukyo_annai a {
	filter: drop-shadow(0 5px 5px rgba(0, 0, 0, .4));
}
section.type21 .nyukyo_annai img {
	width:100%;
}
section.type22 {
	background:#f3fbfb;
	width:90%;
	max-width:800px;
	padding:40px 5%;
	margin: 60px auto 0;
}
section.type22 h2 {
	font-size:1.4vw;
	text-align:center;
}
section.type22 h2 img {
	width:100%;
	max-width:50px;
	vertical-align: middle;
	margin-left:20px;
}
section.type22 p {
	font-size:0.9vw;
	line-height:170%;
	margin-top:20px;
	text-align:left;
}
section.type23 {
	width:100%;
	max-width:1000px;
	margin:60px auto 0;
}

section.type23 h2 {
	font-size:1.4vw;
	text-align:center;
}
section.type23 h2 img {
	width:100%;
	max-width:80px;
	vertical-align: middle;
	margin-right:20px;
}
section.type23 .type_box {
	
}
section.type23 .type_box .type_box_img {
	width:50%;
	padding:40px 5%;
	float:left;
}
section.type23 .type_box .type_box_img img {
	width:100%;
}
section.type23 .type_box .type_box_txt {
	width:30%;
	padding:40px 5%;
	float:left;
}
section.type23 .type_box .type_box_txt h3 {
	font-size:1vw;
	font-weight:bold;
}
section.type23 .type_box .type_box_txt p {
	line-height:150%;
	margin-top:20px;
}
section.type23 .type_box .type_box_txt h3 span {
	display:block;
	font-size:2.3vw;
	color:#019E96;
	margin-bottom:10px;
}
section.type24 {
	width:100%;
	max-width:1000px;
	margin:60px auto 0;
}

section.type24 h2 {
	font-size:1.4vw;
	text-align:center;
}
section.type24 h2 img {
	width:100%;
	max-width:60px;
	vertical-align: middle;
	margin-left:20px;
	transform: rotate( 45deg );
}
section.type24 p {
	text-align:center;
	line-height:150%;
	font-size:1.1vw;
}

section.type25 {
	width:100%;
	max-width:1000px;
	min-height:300px;
	margin:60px auto 0;
	background: url("../img/kyousei_uketuke_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60% auto;
	padding-top:150px;
}
section.type25 h3 {
	text-align:center;
	font-size:1.2vw;
}

section.type25 .tel_link {
	position: relative;
	padding: 15px;
	background: #019E96;
	font-size:1.5vw;
	width:100%;
	max-width:300px;
	margin:20px auto;
	text-align:center;
}
section.type25 .tel_link a {
	color:#FFF;
}
section.type25 .tel_link img {
	width:30px;
	margin-right:10px;
}
section.kyousei_title {
	background: url("../img/kyousei_h2_bg.jpg");
	background-position: center;
	max-height:200px;
	padding:50px 0;
	text-align:center;
}
section.kyousei_title h2 {
	font-size:1.8vw;
}
section.kyousei_title h2 span {
	font-size:0.8vw;
	display:block;
}


section.type26 {
	width:100%;
	max-width:1000px;
	margin:60px auto 0;
}

section.type26 p.intro_text {
	font-size:1vw;
	text-align:center;
	background: url("../img/intro_p_img.jpg") no-repeat;
	background-position: right;
	padding:40px 15%;
	line-height:200%;
}
section.type26 .type_box {
	
}
section.type26 .type_box .type_box_img {
	width:50%;
	padding:40px 5%;
	float:left;
}
section.type26 .type_box .type_box_img img {
	width:100%;
}
section.type26 .type_box .type_box_txt {
	width:30%;
	padding:40px 5%;
	float:left;
}
section.type26 .type_box .type_box_txt h3 {
	font-size:1vw;
	font-weight:bold;
}
section.type26 .type_box .type_box_txt p {
	line-height:150%;
	margin-top:20px;
}
section.type26 .type_box .type_box_txt h3 span {
	display:block;
	text-align:center;
	font-size:1.2vw;
	background:#019E96;
	color:#FFF;
	padding:10px;
	margin-bottom:10px;
}


section.type27 {
	width:100%;
	max-width:1000px;
	margin:60px auto 0;
}
section.type27 .room_intro {
	background:#F3F9F4;	
}
section.type27 h2 {
	text-align:center;
	font-size:1.6vw;
}
section.type27 .gallery {
	width:90%;
	margin:40px auto 0;
}
section.type27 .gallery p {
	text-align:center;
	padding:20px;
}
section.type27 .choice-btn {
	width:90%;
	margin:0 auto;
}
section.type27 img {
	vertical-align:top;
}
section.type27 h3 {
	background:#019E97;
	color:#FFF;
	text-align:center;
	padding:15px 30px;
	margin:40px auto 0;
	display:inline-block;
	font-size:1.2vw;
}
section.type27 h4 {
	margin-top:40px;
	font-size:1.1vw;
}
section.type27 .madori {
	width:100%;
}
section.type27 .madori img {
	width:100%;
	max-width:580px;
	margin:40px auto;
	display:block;
}
section.type27 .madori p {
	line-height:200%;
}


section.type27 .madori table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
	margin-top:10px;
	margin-bottom:40px;
}

section.type27 .madori table tr {
  background-color: #fff;
  border: 1px solid #019E97;
  padding: .35em;
}
section.type27 .madori table th,
section.type27 .madori table td {
  padding: 1em 10px 1em 1em;
  border-right: 1px solid #019E97;
}
section.type27 .madori table th {
  font-size: .85em;
}
section.type27 .madori table thead tr{
  background-color: #EEFFFE;
}
section.type27 .madori .txt{
   text-align: left;
   font-size: .85em;
}
section.type27 .madori .price{
   text-align: right;
}
@media screen and (max-width: 600px) {
  section.type27 .madori table {
    border: 0;
    width:100%
  }
  section.type27 .madori table th{
    background-color: #EEFFFE;
    display: block;
    border-right: none;
  }
  section.type27 .madori table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  section.type27 .madori table tr {
    display: block;
    margin-bottom: .625em;
  }
  
  section.type27 .madori table td {
    border-bottom: 1px solid #019E97;
    display: block;
    font-size: .8em;
    text-align: right;
    position: relative;
    padding: .625em .625em .625em 4em;
    border-right: none;
  }
  
  section.type27 .madori table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
  }
  
  section.type27 .madori table td:last-child {
    border-bottom: 0;
  }
}

section.type27 .near_info {
	
}
section.type27 .near_info h3 {
	margin-top:80px;
}
section.type27 .near_info ul {
	
}
section.type27 .near_info ul li {
	float:left;
	width:28%;
	margin:20px 2%;
	text-align:center;
}
section.type27 .near_info ul li img {
	width:100%;
	max-width:280px;
	margin-bottom:10px;
}
section.type27 .near_info p {
	border:2px solid #019E97;
	width:60%;
	padding:20px;
	margin:40px auto;
	text-align:center;
	line-height:200%;
	box-sizing: border-box;
}
section.type28 {
	padding:80px 0;
	text-align:center;
  background-image:
  repeating-linear-gradient(
    90deg,
    #EAEAEA ,
    #EAEAEA 1px,
    transparent 1px,
    transparent 16px
  ),
  repeating-linear-gradient(
    0deg,
    #EAEAEA ,
    #EAEAEA 1px,
    #fff 1px,
    #fff 16px
  );
}
section.type28 p.under_line {
	background: linear-gradient(transparent 60%, #69BE78 60%);
    font-size: 1vw;
	display:inline-block;
}
section.type28 .flow_box_kyousei {
	max-width:1000px;
	margin:0 auto;
	padding:0 0 40px;
}
section.type28 .flow_box_kyousei img {
	width:100%;
	max-width:743px;
	margin:0 auto;
	display:block;
}
section.type28 ul {
	width:100%;
	max-width:1000px;
	margin:0 auto;
	background-color:#019E97;
	padding:20px 0;
}
section.type28 ul li {
	width:90%;
	margin:10px 5%;
	background-color:#FFF;
	border-radius: 10px 10px 10px 10px;
	padding:10px 0;
}
section.type28 ul li .li_left {
	width:20%;
	float:left;
	background-color:#FFF;
	color:#019E97;
	font-size:1.2vw;
}
section.type28 ul li .li_left span {
	display:block;
	font-size:2vw;
	font-weight:bold;
}
section.type28 ul li .li_right {
	width:75%;
	float:left;
	padding-right:5%;
	background-color:#FFF;
	text-align:left;
	line-height:150%;
}
section.type28 ul li .li_right span {
	display:block;
	font-size:1vw;
	margin-bottom:5px;
	font-weight:bold;
}
section.type28 ul li:last-child .li_right span {
	background: linear-gradient(transparent 60%, #FFFF00 60%);
	max-width:90px;
}


section.type29 {
	max-width:1000px;
	margin:40px auto 0;
}
section.type29 h3 {
	font-size:1.5vw;
	text-align:center;
}
section.type29 ul {
	margin-top:40px;
}
section.type29 ul li {
	float:left;
	width:50%;
	font-size:1vw;
	line-height:200%;
	font-family:'Noto Sans CJK JP','游ゴシック','Osaka','Noto Sans CJK JP';
	font-weight:bold;
}
section.type29 ul li img {
	width:100%;
}
section.type29 p {
	border:2px solid #019E97;
	width:90%;
	padding:20px 5%;
	margin:20px auto;
	line-height:200%;
	box-sizing: border-box;
}

section.type30 {
	width:100%;
	max-width:1000px;
	margin:60px auto 0;
}
section.type30 img {
	vertical-align:top;
}
section.type30 .fee_box {
	background:#F3F9F4;
}
section.type30 .fee_box_in {
	width:90%;
	margin:0 5%;
}
section.type30 p.type30_txt {
	color:#019E97;
	text-align:center;
	font-size:1.1vw;
	margin-top:40px;
	line-height:150%;
}
section.type30 h3 {
	color:#019E97;
	font-size:1.2vw;
	margin-top:40px;
}
section.type30 ul.yatin {
}
section.type30 ul.yatin li {
	float:left;
	margin:10px 30px 20px 0;
	font-size:1vw;
}
section.type30 .plus_mark {
	color:#019E97;
	font-size:1.6vw;
	font-weight:bold;
	text-align:center;
	margin:0 auto 20px;
}
section.type30 p.kounetu {
	font-size:1vw;	
	border-bottom:1px solid #019E97;
	display:block;
	padding-bottom:20px;
}
section.type30 p.kounetu span {
	color:#019E97;
	margin-right:5px;
}
section.type30 p.fee_total {
	font-size:1vw;
	text-align:center;
	margin:20px 0 40px;
}
section.type30 p.fee_total span {
	color:#019E97;
	font-weight:bold;
	margin-right:40px;
}


section.type31 {
	max-width:1000px;
	margin:0 auto;
}
section.type31 h3 {
	padding:5px 10px;
	border-left:5px solid #019E97;
	text-align:center;
	width:250px;
	margin:50px auto;
	font-size:1vw;
}
section.type31 table {
	border-collapse: collapse;
	width:90%;
	margin:0 5%;
	font-size:1vw;
}
section.type31 table tr {
  border-bottom: 1px dotted #019E97;
}
section.type31 table tr:last-child {
  border-bottom: none;
}
section.type31 table tr th {
	border-right:2px solid #019E97;
	padding:20px;
	text-align:left;
}
section.type31 table tr td {
	padding:20px;
}
section.type31 .day_flow_img {
	width:100%;
	max-width:900px;
	margin:40px auto;
}

section.type32 {
	width:100%;
	max-width:1000px;
	margin:60px auto 0;
}
section.type32 img {
	vertical-align:top;
}
section.type32 .use_service {
	background:#F3F9F4;
	margin-bottom:100px;
}
section.type32 h3 {
	font-size:1.4vw;
	text-align:center;
}
section.type32 dl {
	line-height:200%;
	width:90%;
	margin:20px auto;
}
section.type32 dt {
	color:#019E97;
	margin-top:40px;
	font-size:1.3vw;
	font-weight:bold;
}
section.type32 dt span {
	color:#FFF;
	background: #019E97;
    height: 40px;
    width: 40px;
	padding:8px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
	margin-right:10px;
}
section.type32 dd {
	font-size:1vw;
	margin-top:20px;
}
section.type32 .type32_l {
	width:36%;
	float:left;
	padding:0 2%;
}
section.type32 .type32_l p {
	line-height:150%;
	font-size:1.2vw;
	font-weight:bold;
	margin-top:100px;
}
section.type32 .type32_l img {
	width:100%;
	max-width:100px;
	float:right;
}
section.type32 .type32_r {
	width:60%;
	float:right;
}
section.type32 .type32_r img {
	width:100%;
}

section.type33 .company {
	width: 100%;
	max-width:1000px;
	margin:20px auto;
}
section.type33 table.company {
	border-collapse: collapse ;
}
section.type33 .company th {
	font-weight: bold;
	background-color: #018D86; 
	color:#FFF;
	text-align:center;
	letter-spacing:0.8vw;
}
section.type33 .company th,
section.type33 .company td {
	border: 1px solid #019E97;
	padding: 20px;
}

@media screen and (max-width: 767px) {
section.type33 .company,
section.type33 .company tr,
section.type33 .company td,
section.type33 .company th {display:block;}
section.type33 .company th {width:auto;}
}


section.type34 {
	width:100%;
	max-width:1000px;
	margin:0 auto;
}

section.type34 .access_map {
	width:100%;
	padding:40px 0;
}
section.type34 .access_area {
	background:#FFF;
	width:100%;
	max-width:1000px;
	margin:0 auto;
}
section.type34 .access_area p {
	line-height:150%;
	font-size:1vw;
	padding:20px;
}
section.type34 h3 {
	font-size:1.3vw;
	text-align:center;
	margin-top:80px;
}
section.type34 h3 span {
	display:block;
	font-size:0.8vw;
	margin-top:5px;
}
section.type34 ul {
	
}
section.type34 ul li {
	float:left;
	width:40%;
	margin:40px 5%;
}
section.type34 ul li img {
	width:100%;
}
section.type34 ul li p {
	text-align:center;
	margin-top:10px;
	font-size:1vw;
}
/*----- メイン 共生の森 END -----*/

/*----- フッターイルカ START -----*/
footer#iruka_foot .footer_company {
	text-align:center;
	margin-top:100px;
}
footer#iruka_foot .footer_nav {
	background:#f39700;	
	width:100%;
	margin-top:50px;
	background-size: auto auto;
	background-color: rgba(126, 202, 244, 1);
	background-image: repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(126, 206, 244, 1) 10px, rgba(126, 206, 244, 1) 20px );
}
/*----- フッターイルカ END -----*/

/*----- フッター共生の森 START -----*/
footer#kyousei_foot .footer_company {
	text-align:center;
	margin-top:100px;
	background: url("../img/kyousei_foot_bg.jpg") repeat-x;
	width:100%;
	min-height:300px;
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
	-1px 1px 0 #FFF, 1px -1px 0 #FFF,
	0px 1px 0 #FFF,  0-1px 0 #FFF,
	-1px 0 0 #FFF, 1px 0 0 #FFF;
}
footer#kyousei_foot p.com_address {
	font-size:1vw;
	margin-top:10px;
}
footer#kyousei_foot .footer_nav {
	background:#019E96;	
	width:100%;
	margin-top:0px;
}
/*----- フッター共生の森 END -----*/

/*wordpress編集用*/
.entry-header .entry-title {
	display:none;
}


/*----- レスポンシブ設定 画面最大600px以下 -----*/

@media screen and (max-width: 600px) {
	.catch_cp {
		font-size:5vw !important;
	}
	section.full, section.full_iruka, section.full_kyousei {
		min-height: 50vh;
	}
	section.type01 {
		background: none;
	}
	section.type01 h2 {
		font-size: 5vw;
	}
	section.type01 h2 span {
		font-size: 5vw;
	}
	section.type01 p {
		font-size: 4vw;
	}
	section.type01 .btn, section.type02 .btn, section.type03 .btn, section.type06 .btn {
		font-size: 4vw;
	}
	section.type01 .btn {
		display: block;
		margin: 0 auto;
		width: 30%;
		position: relative;
		bottom: 10%;
		float:none;
	}
	section.type03 .btn {
		font-size: 3vw;
	}
	section.type02 h2 {
		font-size: 5vw;
	}
	section.type02 p {
		font-size: 4vw;
	}
	section.type02 li {
		float:left;
		width:92%;
		padding:4%;
	}
	section.type03 {
		min-height:250px;
	}
	section.type03 .saiyou_txt {
		width:84%;
		background:rgba(255,255,255,0.8);
	}
	section.type03 h3 {
	font-size:4vw;
	}
	section.type03 p {
	font-size:3vw;
	}	
	
	section.type04 h2 {
		font-size: 5vw;
	}
	section.type04 p {
		font-size: 4vw;
	}
	section.type05 p {
		font-size: 4vw;
	}
	section.type05 .daihyou_name {
		font-size: 4vw;
	}
	section.type06 h2 {
		font-size: 6vw;
	}
	section.type06 h3 {
		font-size: 5vw;
	}
	section.type06 p {
		font-size: 4vw;
	}
	section.type06 .btn {
		width: 40%;
	}

	
	section.type07 h2 {
		font-size: 6vw;
	}
	section.type07 h3 {
		font-size: 5vw;
	}
	section.type08 {
		min-height: 220px;
		max-height: 300px;
	}
	section.type08 p {
		font-size: 4vw;
		top: calc(30% - 1.2vw);
	}

	
	section.full_iruka p {
		font-size:3vw;
	}
	section.type09 .frame-box-001 {
		font-size:4vw;
	}
	section.type09 p.tel_app {
		font-size:3vw;
	}
	section.type09 p.tel_app span {
		font-size:6vw;
	}
	section.type09 .tel_link {
		font-size:7vw;
	}
	section.type10 .aisatu_txt_shadow {
		width:90%;
		margin:0 2% 0 8%;
	}
	section.type10 .type10_bg {
		min-height: 300px;
		background: url(../img/aisatu_bg.jpg) bottom / 100%;
		padding-bottom: 200px;
	}
	section.type10 .aisatu_txt h3 {
		font-size: 5vw;
	}
	section.type10 .aisatu_txt p {
		font-size: 4vw;
	}
	section.type11 h2 {
		font-size: 5vw;
	}
	section.type11 .type11_bg p {
		width: 80%;
		font-size: 4vw;
		padding: 20px 10%;
	}
	section.type11 .type11_bg p span {
		font-size: 6vw;
	}
	section.type12 .img_cont {
		width: 100%;
		box-shadow: none;
	}
	section.type12 .txt_cont {
		width: 93%;
		margin-left: 0%;
		margin-top: 50px;
		padding-top: 30px;
	}
	section.type12 .txt_cont h3 {
		font-size: 5vw;
	}
	section.type12 .txt_cont p {
		font-size: 4vw;
		line-height: 150%;
		margin-top: 20px;
	}
	section.type13 h2 {
		font-size:5vw;
	}
	section.type13 ul li {
		float: left;
		width: 80%;
		margin: 20px 10%;
	}
	section.type13 ul li:nth-child(2) {
		margin: 20px 10%;
	}
	section.type13 ul li img {
    max-width: 500px;
	}
	section.type13 p.txt_box {
		font-size: 4vw;
	}
	section.type14 h2 {
		font-size: 6vw;
	}
	section.type14 .box_l {
		width: 100%;
	}
	section.type14 .box_r {
		float: right;
		width: 94%;
		margin: 0 3%;
	}
	section.type14 .box_r h3 {
		font-size: 4vw;
	}
	section.type14 .box_r p {
		font-size: 4vw;
	}
	section.type14 .sisetu_detail ul li {
		width: 100%;
		text-align: center;
		margin: 20px 0%;
	}
	section.type14 .sisetu_detail ul li p {
		text-align: left;
		font-size:4vw;
	}
	section.type14 .sisetu_detail ul li p span {
		font-size:5vw;
	}
	section.type14 .sisetu_detail ul li:nth-child(2) {
		margin: 20px 0%;
	}
	section.type14 .contact_box p {
		font-size: 3vw;
	}
	section.type14 .tel_link a {
		font-size: 5vw;
	}
	section.type14 p.shadow_box {
		font-size:4vw;
	}

	section.type15 h2 {
    font-size: 6vw;
	}
	section.type15 .process h3 {
    font-size: 4vw;
	}
	section.type15 .process p {
    font-size: 4vw;
	}
	section.type15 h4 {
	font-size: 5vw;	
	}
	section.type15 .use_flow ul li {
	font-size: 5vw;
	}
	section.type15 .use_flow ul li:last-child {
    font-size: 5vw;
	}
	
	section.type15 .step_flow .step1, section.type15 .step_flow .step2, section.type15 .step_flow .step3, section.type15 .step_flow .step4, section.type15 .step_flow .step5 {
	font-size:5vw;
	}
	.step1 span, .step2 span, .step3 span, .step4 span, .step5 span {
    font-size: 6vw;
	}
	section.type15 .step_flow p {
    font-size: 4vw;
	}
	section.type15 .target_person h3 {
    font-size: 4vw;
	}
	section.type15 .target_person p {
    font-size: 4vw;
    background-image: none;
	}
	section.type16 h2 {
		font-size:6vw;
	}
	section.type16 .price_table {
		font-size: 3.5vw;
	}
	section.type16 .price_cont h3 {
		font-size: 5vw;
	}
	section.type16 .price_cont p {
		font-size: 4vw;
	}
	section.type16 .price_cont h4 {
		font-size: 5vw;
	}
	section.type16 .price_cont p {
		font-size: 3vw;
	}
	section.type17 h2 {
		font-size:6vw;
	}
	section.type17 .day_cont h3 {
		font-size: 5vw;
	}
	section.type17 .day_l {
		width: 100%;
	}
	section.type17 .day_cont p {
		font-size: 4vw;
	}
	section.type17 .day_r {
		width: 100%;
	}
	section.type18 h4 {
		font-size: 5vw;
	}
	section.type19 h3 {
		font-size: 4vw;
	}
	section.type19 p {
		font-size: 4vw;
		text-align:left;
	}
	section.type19 img {
		width: 70%;
		margin:0 15%;
	max-width:400px;
	}
	section.type20 h2 {
		font-size:6vw;
	}
	section.type20 .access_area p {
		font-size:3vw;
	}
	section.type20 .access_contact p {
		font-size:3vw;
	}
	section.type21 .kyousei_copy h2 {
		font-size: 6vw;
	}
	section.type21 .kyousei_copy p {
		font-size: 4vw;
	}
	section.type21 .kyousei_uketuke h3 {
		font-size: 5vw;
		padding: 0 20px;
	}
	section.type21 .kyousei_uketuke p {
		font-size: 5vw;
	}
	section.type21 .kyousei_uketuke .tel_link a {
		font-size: 8vw;
	}
	section.type21 .kyousei_uketuke {
		min-height: 300px;
	}
	section.type22 h2 {
		font-size: 5vw;
	}
	section.type22 p {
		font-size: 4vw;
	}
	section.type23 h2 {
		font-size: 5vw;
	}
	section.type23 .type_box .type_box_img {
		width: 90%;
	}
	section.type23 .type_box .type_box_txt {
		width: 90%;
	}
	section.type23 .type_box .type_box_txt h3 {
		font-size: 5vw;
	}
	section.type23 .type_box .type_box_txt h3 span {
		font-size: 7vw;
	}
	section.type24 h2 {
		font-size: 5vw;
	}
	section.type24 p {
		font-size: 3vw;
	}
	section.type25 h3 {
		font-size: 5vw;
	}
	section.type25 .tel_link {
		font-size: 6vw;
	}
	section.kyousei_title h2 {
		font-size: 6vw;
	}
	section.kyousei_title h2 span {
		font-size: 3vw;
	}
	section.type26 p.intro_text {
		font-size: 3.5vw;
		text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
		-1px 1px 0 #FFF, 1px -1px 0 #FFF,
		0px 1px 0 #FFF,  0-1px 0 #FFF,
		-1px 0 0 #FFF, 1px 0 0 #FFF;
	}
	section.type26 .type_box .type_box_txt {
		width: 90%;
	}
	section.type26 .type_box .type_box_img {
		width: 90%;
	    padding: 20px 5%;
	}
	section.type26 .type_box .type_box_txt h3 {
		font-size: 4vw;
	}
	section.type26 .type_box .type_box_txt h3 span {
		font-size: 5vw;
	}
	
	section.type27 h2 {
		font-size: 6vw;
	}
	section.type27 h3 {
		font-size: 4vw;
	}
	section.type27 .near_info ul li {
		width: 98%;
	}
	section.type27 .near_info p {
		width: 80%;
	}
	section.type28 p.under_line {
		font-size: 4vw;
	}
	section.type28 ul li .li_left {
		font-size: 5vw;
	}
	section.type28 ul li .li_left span {
		font-size: 7vw;
	}
	section.type28 ul li .li_right span {
		font-size: 5vw;
	}
	section.type29 h3 {
		font-size: 6vw;
	}
	section.type29 ul li {
		width: 96%;
		margin:0 2%;
		font-size: 4vw;
	}
	section.type29 ul li:first-child {
		display:none;
	}
	section.type30 p.type30_txt {
		font-size: 4vw;
	}
	section.type30 h3 {
		font-size: 5vw;
	}
	section.type30 ul.yatin li {
		font-size: 4vw;
	}
	section.type30 .plus_mark {
		font-size: 6vw;
	}
	section.type30 p.kounetu {
		font-size: 4vw;
		line-height:150%;
	}
	section.type30 p.fee_total {
		font-size: 5vw;
	}
	section.type31 h3 {
		font-size: 4vw;
	}
	section.type31 table {
		font-size: 4vw;
	}
	section.type32 h3 {
		font-size: 4vw;
	}
	section.type32 dt {
		font-size: 5vw;
	}
	section.type32 dd {
		font-size: 3.5vw;
	}
	section.type32 .type32_l {
		width: 96%;
	}
	section.type32 .type32_l p {
    	font-size: 5vw;
	}
	section.type32 .type32_l img {
		display:none;
	}
	section.type32 .type32_r {
		width: 100%;
	}
	section.type33 .company {
		width: 90%;
	}
	section.type34 .access_area p {
    	font-size: 3.5vw;
	}
	section.type34 h3 {
		font-size: 5vw;
	}
	section.type34 h3 span {
    	font-size: 3.5vw;
	}
	section.type34 ul li {
    	width: 90%;
	}
	section.type34 ul li p {
    	font-size: 5vw;
	}
	
	
	footer .footer_company p.com_name {
		font-size: 5vw;
	}
	footer .footer_company p.com_add {
		font-size: 4vw;
	}
	footer .footer_company p.com_tel {
		font-size: 6vw;
	}
	footer .footer_nav ul li {
		padding:20px 5%;
		float:left;
		width:40%;
	}
	footer .footer_nav ul li a {
		font-size:3vw;
	}
	footer .footer_nav ul.flex {
		display: block;
	}
	footer#kyousei_foot p.com_address {
		font-size: 4vw;
	}
}
