@charset "utf-8";

/* CSS Document */
body {
	text-decoration: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	line-height: 1.1em;
}

img {
	width: 100%;
}

header,
section {
	width: 100%
}

section {
	padding-bottom: 0px;
}

.pc {
	display: none !important;
}

.sp {
	display: block !important;
}

/****************************



****************************/
/****************************

   共通

****************************/
.head {
	width: 100%;
	margin: 0;
	background-color: #E1EFEE;
	padding: 0 0;
	position: relative;
	height: 65px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .5);
	z-index: 20;
}

.head .logo {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 180px;
}

/*****************************************************

   ハンバーガーメニュー
       
*****************************************************/
.menu-btn {
	position: absolute;
	top: 0px;
	right: 5px;
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 90;
}

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

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

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

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

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

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

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

.menu-content {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 80;
	background-color: #3584bb;
	text-align: center;
}

.menu-content ul {
	padding: 70px 10px 0;
	text-align: center;
}

.menu-content ul li {
	text-align: center;
	list-style: none;
	width: 50%;
	margin: 0 auto 28px;
}

.menu-content ul li a {
	width: 60%;
	font-size: 15px;
	box-sizing: border-box;
	color: #ffffff;
	text-decoration: none;
	padding: 9px 15px 10px 0;
	position: relative;
}

.menu-content ul li a::before {}

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

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

/**********/
#footer {
	width: 100%;
	background-image: url(../img/foot_bg.png);
	background-size: 100%;
	background-position: center top;
	background-repeat: no-repeat;
	padding: 0;
	margin: 0;
	color: #C6000B;
	position: relative;
	padding-top: 8%;
	z-index: 5;
}

#footer .inner {
	width: 100%;
	margin: 0;
	position: relative;
	padding-top: 35%;
	background-color: #29A19A;
	padding-bottom: 2%;
}

#footer .inner .logo {
	position: absolute;
	top: 5%;
	left: 4%;
	width: 27%;
}

#footer ul {
	display: flex;
	/* flexbox */
	flex-wrap: wrap;
	/* 折返し指定 */
	position: absolute;
	top: 5%;
	left: 35%;
	margin-bottom: 2%;
}

#footer ul li {
	width: 48%;
	margin-right: 2%;
	margin-bottom: 2%;
}

#footer ul .right {
	margin-right: 0;
}

#footer .contact {
	position: static;
	width: 100%;
	text-align: center;
	margin: 5% 0 4%;
}

#footer .contact a img {
	position: static;
	width: 70%;
}

#footer .tel {
	position: static;
	width: 100%;
	text-align: center;
	margin-bottom: 4%;
}

#footer .tel a img {
	position: static;
	width: 70%;
}

#footer .fax {
	position: static;
	width: 100%;
	text-align: center;
	margin-bottom: 2%;
}

#footer .fax img {
	position: static;
	width: 60%;
}

.copy {
	width: 100%;
	text-align: center;
	font-size: 3.1vw;
	color: #29A19A;
	background-color: #FFF;
	padding: 2% 0;
}

/****************　ハンバーガーボタン　*/
.hamburger {
	display: block;
	position: absolute;
	right: 10px;
	z-index: 1;
	right: 25px;
	top: 5px;
	width: 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
	z-index: 20;
}

.hamburger span {
	display: block;
	position: absolute;
	width: 45px;
	height: 4px;
	left: 6px;
	background: #4D9CD7;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.hamburger2 {
	margin-top: 30px;
	margin-bottom: 20px;
	width: 80%;
	margin: 40px 10%;
	cursor: pointer;
	text-align: center;
	z-index: 1;
}

.hamburger2 span {
	padding: 7px 20px;
	background: #fff;
	font-size: 4.5vw;
	color: #4D9CD7;
	border-radius: 10px;
	text-align: center;
}

/****************************

   トップページ

****************************/
#topCont {
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	z-index: 7;
}

#topCont .mineimg {
	width: 96%;
	margin: 0;
	padding: 0;
}

.slid {
	background-color: #E1EFEE;
}

#top_main {
	width: 100%;
	background-image: url(../img/herd_bg.png);
	background-repeat: repeat;
	padding-bottom: 30px;
	margin-bottom: 0;
	padding-top: 20px;
	position: relative;
}

#top_main .img {
	position: absolute;
	top: 0;
	z-index: 11;
}

.main_imgBox {
	padding-top: 90%;
	overflow: hidden;
	position: relative;
	width: 100%;
	margin: 0px auto 0;
	text-align: center;
}

.main_img {
	z-index: 10;
	opacity: 0;
	width: 100%;
	padding-top: 90%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: anime 22s 0s infinite;
	animation: anime 22s 0s infinite;
}

.main_img:nth-of-type(2) {
	-webkit-animation-delay: 6s;
	animation-delay: 6s;
}

.main_img:nth-of-type(3) {
	-webkit-animation-delay: 12s;
	animation-delay: 12s;
}

.main_img:nth-of-type(4) {
	-webkit-animation-delay: 18s;
	animation-delay: 18s;
}

@keyframes anime {
	0% {
		opacity: 0;
	}

	8% {
		opacity: 1;
	}

	17% {
		opacity: 1;
	}

	25% {
		opacity: 0;
		transform: scale(1.2);
		z-index: 9;
	}

	100% {
		opacity: 0
	}
}

.bg_top {
	width: 100%;
	background-image: url(../img/top_slid_bg.png);
	background-size: 100%;
	background-repeat: repeat-x;
	background-position: center top;
	padding-top: 30%;
	z-index: 7;
	display: none;
}

#topCont .info {
	background-color: #E1EFEE;
}

#topCont .info img {
	width: 84%;
	margin: 2% 8%;
	padding: 0;
	background-color: #E1EFEE;
}

#topCont .info .mb_10 {
	margin: 0 0 2%;
}

/*news*/
.news {
	width: 100%;
	margin: 0% 0 -0.4%;
	background-image: url(../img/top_slid_bg_sp.png);
	background-size: 100%;
	background-repeat: repeat;
	background-position: center top;
	padding-top: 9%;
	height: auto;
	position: relative;
	z-index: 5;
}

.news .img {
	width: 100%;
	margin: 0 0%;
}

.news .btn {
	position: relative;
	z-index: 1;
}

.news .btn a {
	width: 70%;
	margin: 4% 10%;
	text-align: center;
	padding: 13px;
	color: #fff;
	border-radius: 30px;
	background-color: #82A831;
	border: 2px solid #82A831;
	display: block;
	transition: .6s;
}

.news .btn a:hover {
	color: #82A831;
	border-radius: 30px;
	background-color: #fff;
	border: 2px solid #82A831;
	transition: .6s;
}

.news ul li {
	border-bottom: 4px solid #FFC;
	padding: 0;
	color: #3F3A3A;
}

.news ul li:last-child {
	border-bottom: none;
}

.news ul li a {
	color: #3F3A3A;
}

.news ul li dl {
	display: block;
	padding: 15px 5px 5px;
}

.news ul li dl dt {
	width: 100%;
	font-size: 3.4vw;
	margin: 0 0 16px;
}

.news ul li dl dd {
	text-align: left;
	width: 100%;
}

.news ul li dl dd .img {
	margin-top: 10px;
}

.news ul li h4 {
	font-size: 3.4vw;
	margin-bottom: 5px;
	line-height: 180%;
	margin-top: -7px;
}

.scroll-area {
	height: 250px;
	width: 88%;
	margin: 0 3%;
	overflow: auto;
	padding-right: 2%;
	border: 4px solid #FFC;
	padding: 2%;
	background-color: #fff;
}

::-webkit-scrollbar {
	padding: 5px;
	width: 12px;
}

::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: #333;
	border-radius: 10px;
}

/***greeting****/
.greeting {
	background-color: #E1EFEE;
}

.greeting .inner {
	width: 93%;
	margin: 0 2% -8%;
	padding: 3% 0 21%;
	position: relative;
	background-color: #E1EFEE;
}

.greeting .img {
	width: 100%;
	margin: 0 0 -7%;
}

.greeting .img2 {
	width: 10%;
	position: absolute;
	top: 80%;
	right: 0%;
}

.greeting .img3 {
	width: 18%;
	position: absolute;
	top: 72%;
	left: 0%;
}

.greeting .txtbox {
	width: 92%;
	margin: 0 0;
	border: 5px solid #775417;
	border-radius: 5px;
	background-image: url(../img/top_greeting_bg.png);
	background-size: 100%;
	background-color: #fff;
	text-align: center;
	padding: 4%;
}

.greeting .txtbox p {
	font-size: 3.6vw;
	line-height: 250%;
	color: #3F3A3A;
	border-bottom: 1px solid #999;
}

/****************************

   保護方針　policy

****************************/
#polcy-Cont {}

#polcy-Cont .mineimg {
	width: 100%;
	background-image: url(../img/policy_mein_img_sp.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
	height: auto;
	z-index: 5;
	position: relative;
	text-align: center;
	padding-bottom: 8%;
}

#polcy-Cont .mineimg img {
	width: 45%;
	margin-top: 7%;
}

#polcy-Cont .sect1 {
	margin-top: -20%;
	padding-top: 20%;
	background-image: url(../img/policy_sect1_bg.png);
	background-repeat: repeat;
	background-size: 20%;
	z-index: 3;
	position: relative;
	padding-bottom: 50px;
}

#polcy-Cont .sect1 .title {
	width: 96%;
	margin: 0 2%;
}

#polcy-Cont .sect1 .img {
	width: 100%;
}

#polcy-Cont .sect2 {
	background-color: #ECF2E2;
	background-repeat: repeat;
	background-size: 100px;
	z-index: 1;
	position: relative;
	padding-bottom: 5%;
}

#polcy-Cont .sect2 .title {
	width: 96%;
	margin: 0% 2% -8%;
	z-index: 10;
	position: relative;
}

#polcy-Cont .sect2 .title img {
	margin-top: -10%;
}

.sect2 .info {
	width: 94%;
	margin: 0 3%;
	display: block;
	/* flexbox */
	flex-wrap: wrap;
	/* 折返し指定 */
}

.sect2 .info .img {
	width: 96%;
	margin: 0 2% 4%;
	z-index: 1;
	position: relative;
}

.sect2 .info .infoBox {
	width: 96%;
	margin: 0 2%;
}

#polcy-Cont .sect2 .title2 {
	width: 96%;
	margin: 0 2% 1%;
}

.infoBox table {
	width: 100%;
	border-collapse: collapse;
	font-size: 3.2vw;
	line-height: 170%;
	font-weight: bold;
	margin-bottom: 5%;
}

.infoBox table tr {
	border: solid 1px #C1D39C;
}

.infoBox table th {
	position: relative;
	text-align: center;
	width: 21%;
	background-color: #82A831;
	color: white;
	text-align: center;
	padding: 2%;
	vertical-align: middle;
}

.infoBox table td {
	text-align: left;
	width: 72%;
	text-align: left;
	background-color: #fff;
	padding: 2%;
	vertical-align: middle;
}

.sect2 .map {
	width: 88%;
	margin: 0 3%;
}

.sect2 .map iframe {
	width: 100%;
	margin: 0 3%;
	height: 250px;
	box-shadow: 2px 2px 4px gray;
}

#polcy-Cont .sect3 {
	background-color: #ECF2E2;
	background-repeat: repeat;
	background-size: 100px;
	z-index: 3;
	position: relative;
	margin-bottom: -5%;
	padding-bottom: 15%;
	background-image: url(../img/policy_sect3_bg_sp.png);
	background-size: 100%;
	padding-top: 2%;
}

#polcy-Cont .sect3 .title {
	width: 96%;
	margin: 0 2%;
}

#polcy-Cont .sect3 ul {
	width: 96%;
	margin: 0 2%;
}

#polcy-Cont .sect3 ul li {
	display: block;
	/* flexbox */
	flex-wrap: wrap;
	/* 折返し指定 */
	margin: 0 0 30px;
	color: #3F3A3A;
}

.bocoler1 {
	border: 3px solid #82A831;
	border-radius: 10px;
}

.bocoler2 {
	border: 3px solid #D2D157;
	border-radius: 10px;
}

.bocoler3 {
	border: 3px solid #CD5657;
	border-radius: 10px;
}

.bocoler4 {
	border: 3px solid #249090;
	border-radius: 10px;
}

#polcy-Cont .sect3 ul .img {
	width: 96%;
	margin: 0 2%;
}

#polcy-Cont .sect3 ul .txt {
	width: 88%;
	margin: 0 3%;
	padding: 2% 3%;
	background-color: #fff;
}

#polcy-Cont .sect3 ul .txt .tl {
	width: 86%;
	margin: 0 8% 2%;
}

#polcy-Cont .sect3 ul .txt p {
	font-size: 3.6vw;
	line-height: 180%;
	font-weight: bold;
}

.order {
	order: 2;
}

/****************************

   一日の流れ　day

****************************/
#day-Cont .mineimg {
	width: 100%;
	background-image: url(../img/day_mein_img_sp.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
	height: auto;
	z-index: 5;
	position: relative;
	text-align: center;
	padding-bottom: 8%;
}

#day-Cont .mineimg img {
	width: 45%;
	margin-top: 7%;
}

#day-Cont .sect1 {
	margin-top: -20%;
	padding-top: 20%;
	background-image: url(../img/day_sect1_bg.png);
	background-repeat: repeat;
	background-size: 15%;
	z-index: 3;
	position: relative;
	padding-bottom: 50px;
	margin-bottom: -20%;
	padding-bottom: 20%;
}

#day-Cont .sect1 .img {
	width: 96%;
	margin: 0 2%;
}

/****************************

   年間行事　event

****************************/
#event-Cont {}

#event-Cont .mineimg {
	width: 100%;
	background-image: url(../img/event_mein_img_sp.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
	height: auto;
	z-index: 5;
	position: relative;
	text-align: center;
	padding-bottom: 8%;
}

#event-Cont .mineimg img {
	width: 45%;
	margin-top: 7%;
}

#event-Cont .sect1 {
	margin-top: -20%;
	padding-top: 23%;
	background-image: url(../img/event_sect1_bg.png);
	background-repeat: repeat;
	background-size: 15%;
	z-index: 3;
	position: relative;
	margin-bottom: -20%;
	padding-bottom: 18%;
}

#event-Cont .sect1 .img {
	width: 96%;
	margin: 0 2%;
}

#event-Cont .sect2 {
	margin: -3% 0 0;
	padding: 5% 0 9%;
	background-image: url(../img/event_sect2_bg_sp.png);
	background-repeat: repeat;
	background-size: 100%;
	z-index: 3;
	position: relative;
}

#event-Cont .sect2 .img {
	width: 96%;
	margin: 0 2%;
}

#event-Cont .sect3 {
	margin: -9% 0 0;
	padding: 3% 0 12%;
	background-image: url(../img/event_sect3_bg_sp.png);
	background-repeat: repeat;
	background-size: 100%;
	z-index: 3;
	position: relative;
}

#event-Cont .sect3 .img {
	width: 96%;
	margin: 0 2%;
}

#event-Cont .sect4 {
	margin: -13% 0 0;
	padding: 2% 0 3%;
	background-image: url(../img/event_sect4_bg_sp.png);
	background-repeat: repeat;
	background-size: 100%;
	z-index: 3;
	position: relative;
}

#event-Cont .sect4 .img {
	width: 96%;
	margin: 0 2%;
}

#event-Cont .sect5 {
	margin: 1% 0 0;
	padding: 1% 0 7%;
	z-index: 3;
	position: relative;
	background-image: url(../img/policy_sect1_bg.png);
	background-repeat: repeat;
	background-size: 100px;
}

#event-Cont .sect5 .img {
	width: 96%;
	margin: 0 2%;
}

/****************************

   特別保育　part

****************************/
#part-Cont .mineimg {
	width: 100%;
	background-image: url(../img/part_mein_img_sp.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
	height: auto;
	z-index: 5;
	position: relative;
	text-align: center;
	padding-bottom: 8%;
}

#part-Cont .mineimg img {
	width: 45%;
	margin-top: 7%;
}

#part-Cont .linkbtn {
	background-color: #E1EFEE;
	width: 100%;
	padding: 18% 0 4%;
	margin-top: -10%;
	margin-bottom: 4%;
}

#part-Cont .linkbtn ul {
	display: block;
	flex-direction: row;
	justify-content: space-between;
	width: 90%;
	margin: 0 5%;
}

#part-Cont .linkbtn ul li a img {
	width: 30%;
}

#part-Cont .linkbtn ul .link1 a {
	background-image: url(../img/part_btn_1_sp.png);
	background-repeat: no-repeat;
	background-size: 100%;
	display: block;
	width: 90%;
	margin: 0 5% 2%;
	padding-top: 17%;
}

#part-Cont .linkbtn ul .link2 a {
	background-image: url(../img/part_btn_2_sp.png);
	background-repeat: no-repeat;
	background-size: 100%;
	display: block;
	width: 90%;
	margin: 0 5% 2%;
	padding-top: 17%;
}

#part-Cont .linkbtn ul .link3 a {
	background-image: url(../img/part_btn_3_sp.png);
	background-repeat: no-repeat;
	background-size: 100%;
	display: block;
	width: 90%;
	margin: 0 5%;
	padding-top: 17%;
}

#part-Cont .sect1Out {
	width: 100%;
	background-image: url(../img/part_sect1_bg.png);
	padding-bottom: 6%;
	background-size: 15%;
}

#part-Cont .sect2Out {
	width: 100%;
	background-image: url(../img/part_sect2_bg.png);
	padding-bottom: 6%;
	background-size: 15%;
}

#part-Cont .sect3Out {
	width: 100%;
	background-image: url(../img/part_sect3_bg.png);
	background-size: 15%;
	margin-bottom: -10%;
	padding-bottom: 10%;
	padding-top: 5%;
}

#part-Cont .sect1 {
	width: 96%;
	margin: 0 2%;
}

#part-Cont .sect1 .title {
	width: 97%;
	margin: 0 1.5%;
}

#part-Cont p {
	width: 98%;
	margin: 0 1% 5%;
	text-align: center;
	font-size: 3.5vw;
	line-height: 180%;
	font-weight: bold;
	color: #3F3A3A;
}

#part-Cont .sect2 {
	width: 96%;
	margin: 0 2%;
}

#part-Cont .sect2 .title {
	width: 96%;
	margin: 0 2%;
}

#part-Cont .sect3 {
	width: 97%;
	margin: 0 1.5%;
}

#part-Cont .sect3 .title {
	width: 97%;
	margin: 0 1.5%;
}

#part-Cont .sect3 .img {
	width: 50%;
	margin: 0 25% -2%;
}

/****************************

   保護方針　introduct

****************************/
#introduct-Cont .mineimg {
	width: 100%;
	background-image: url(../img/intro_mein_img_sp.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
	height: auto;
	z-index: 5;
	position: relative;
	text-align: center;
	padding-bottom: 8%;
}

#introduct-Cont .mineimg img {
	width: 45%;
	margin-top: 7%;
}

#introduct-Cont .sect1 {
	margin-top: -20%;
	padding-top: 20%;
	background-image: url(../img/policy_sect1_bg.png);
	background-repeat: repeat;
	background-size: 20%;
	z-index: 3;
	position: relative;
	padding-bottom: 50px;
}

#introduct-Cont .sect1 .title {
	width: 96%;
	margin: 0 2%;
}

#introduct-Cont .sect1 .img {
	width: 96%;
	margin: 0 2%;
}

#introduct-Cont .sect2 {
	background-color: #ECF2E2;
	background-repeat: repeat;
	background-size: 100px;
	z-index: 3;
	position: relative;
	padding-bottom: 30px;
}

#introduct-Cont .sect2 .title {
	width: 96%;
	margin: 0 2% -8%;
	position: relative;
	z-index: 5;
}

#introduct-Cont .sect2 .title img {
	margin-top: -7%;
}

#introduct-Cont .sect2 .title2 {
	width: 96%;
	margin: 0 2%;
}

.infoBox p {
	font-size: 3vw;
	line-height: 160%;
	text-align: right;
	font-weight: bold;
	margin-top: -3%;
	margin-bottom: 3%;
	color: #3F3A3A;
}

#introduct-Cont1-2 .sect3 {
	width: 100%;
	margin: 0 0%;
	padding: 0;
	position: relative;
	z-index: 3;
}

#introduct-Cont1-2 {
	background-image: url(../img/intro_sect3_bg.png);
	background-repeat: repeat;
	background-size: 100px;
	padding: 25px 0 30px;
}

#introduct-Cont2 .sect1 {
	margin-top: 0%;
	padding-top: 5%;
	background-image: url(../img/event_sect1_bg.png);
	background-repeat: repeat;
	background-size: 15%;
	z-index: 3;
	position: relative;
	margin-bottom: -20%;
	padding-bottom: 18%;
}

#introduct-Cont2 .sect1 .img {
	width: 96%;
	margin: 0 2%;
}

#introduct-Cont2 .sect2 {
	margin: -3% 0 0;
	padding: 5% 0 9%;
	background-image: url(../img/event_sect2_bg_sp.png);
	background-repeat: repeat;
	background-size: 100%;
	z-index: 3;
	position: relative;
}

#introduct-Cont2 .sect2 .img {
	width: 96%;
	margin: 0 2%;
}

#introduct-Cont2 .sect3 {
	margin: -9% 0 0;
	padding: 3% 0 12%;
	background-image: url(../img/event_sect3_bg_sp.png);
	background-repeat: repeat;
	background-size: 100%;
	z-index: 3;
	position: relative;
}

#introduct-Cont2 .sect3 .img {
	width: 96%;
	margin: 0 2%;
}

#introduct-Cont2 .sect4 {
	margin: -13% 0 -5%;
	padding: 2% 0 14%;
	background-image: url(../img/event_sect4_bg_sp.png);
	background-repeat: repeat;
	background-size: 100%;
	z-index: 3;
	position: relative;
}

#introduct-Cont2 .sect4 .img {
	width: 96%;
	margin: 0 2%;
}

/*****************************************************

       メールフォーム

*****************************************************/
/*****************************************************

       メールフォーム

*****************************************************/
#contact-Cont .mineimg {
	width: 100%;
	background-image: url(../img/contact_mein_img_sp.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
	height: auto;
	z-index: 5;
	position: relative;
	text-align: center;
	padding-bottom: 10%;
}

#contact-Cont .mineimg img {
	width: 45%;
	margin-top: 7%;
}

#contact-Cont .sect1 {
	margin-top: -20%;
	padding-top: 25%;
	padding-bottom: 5%;
	width: 100%;
	background-color: #E1EFEE;
}

#contact-Cont .sect1 p {
	width: 95%;
	margin: 0 2% 3%;
	font-size: 3.2vw;
	line-height: 180%;
	font-weight: bold;
	text-align: center;
	color: #3F3A3A;
}

#contact-Cont .sect1 .img {
	width: 96%;
	margin: 0 2%;
}

#formWrap .sect2 .title {
	width: 96%;
	margin: 0 2%;
}

/*****************************************************

       個人情報保護　pp

*****************************************************/
#pp-Cont .sect1 {
	width: 96%;
	margin: 0 2%;
}

#pp-Cont .title {
	width: 96%;
	margin: 3% 2%;
}

#pp-Cont .title .pc {
	display: none;
}

#pp-Cont h3 {
	line-height: 160%;
	margin: 10px;
}

#pp-Cont p {
	line-height: 160%;
}
