html {
	scroll-behavior: smooth;
}
body{
	font-family: 'Noto Sans JP', sans-serif!important;
	display: flex;
	flex-flow: column;
	min-height: 100vh;
	color:#2E2E2E;
}
main {
  flex: 1;
	min-height: 800px;
}
.container-fluid {

}
a{
	transition : all 0.4s ease 0s;
	color:#2E2E2E!important;
}
a:hover{
	color:#3D49E1!important;
	text-decoration: none!important;
}
p{
	letter-spacing: 0.1rem;
}
h2{
	letter-spacing: 0.2rem;
	font-weight: bold!important;
}

.sp{display: none;}
.pc{display:block;}

@media screen and (max-width: 560px) { 
	.sp{display: block;}
	.pc{display:none;}
}
section{
	/*border:1px solid red;*/
}



/***お困り****/
.worry{
	background-image: url("img/gray_bk.webp");
	background-size: cover;
	padding:3rem 0 2rem 0;
}
.worry h2,.cause h2{
	font-size:1.5rem;
	text-align: center;
	color:#00097F;
}
.worry p{
	font-size:1.5rem;
}
.worry span{
	border-bottom:1px solid #000;
	font-weight: bold;
}
.worry img{
	/*box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);*/
}
@media screen and (max-width: 560px) { 
	.worry p{
	font-size:1.1rem;
}
}
.cause{
	padding:3rem 0;
	background-color:#FDF7E7;
	color:#fff;
}
.cause h2{
	margin-bottom: 2rem;
	color:orange;
}
.cause .inner{
	background-color:#fff;
	border-radius:  10px 10px 0 0;
}
.cause .inner div{
	background-color:orange;
	border-radius: 10px 10px 0 0;
	padding:1rem;
	text-align: center;
	letter-spacing: 0.2rem;
	font-size:1.2rem;
}
.cause .inner p{
	color:#2E2E2E;
	padding:1rem;
	line-height: normal;
}

.dli-caret-down {
  display: inline-block;
  vertical-align: middle;
  color: orange;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 2rem 2rem;
  border-top-color: currentColor;
  border-bottom: 0;
position: relative;
	bottom:-4rem;
	text-align: center;
}


.point{
	background-image: url("img/point_bk.jpg");
	background-size: cover;
	border-radius: 5px;
}
.point .num{
	background-color:#000;
	color:#fff;
	padding:0.1rem 0.4rem 0.5rem 0.4rem;
	font-size:0.8rem
}

.point h3 span{
	color:#fff;
	background-color:#FF6D00;
	font-size:1.5rem;
	padding:0.5rem;
	line-height: 4rem;
}
.point .inner p{
	font-size:1.2rem;
	line-height: 2.5rem;
}
.point ol{
	font-size:1.2rem;
}
.point .inner span{
	border-bottom:2px solid #FF6D00;
}
.point ol li{
	padding: 0.5rem 0;
} 
.point .inner .box{
	background-color:#fff;
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.point .inner .box h4{
	border-bottom: 1px solid #3333;
	padding-bottom: 0.5rem;
	font-size:1.2rem;
}
.point .inner .box p{
	line-height: 1.7rem;
	font-size:1rem;
}

/****pack*************/

.pack .container{
	margin: 8em auto;
	padding:2em;/*内側の余白*/
	background: none;/*元のボックス背景色なし*/
	border:1px solid #ccc ;/*線の太さ・種類・色*/
	position: relative;/*配置（基準）*/
}
.pack .container:after{
	background-color:#FDF7E7;/*ずらしたボックスの背景色*/
	border:none;
	content: '';
	position: absolute;/*配置（ここを動かす）*/
	top: 10px;/*上から*/
	left: 10px;/*左から*/
	width: 100%;
	height: 100%;
	z-index: -1;
}
.pack h2 span{
	background-color:#FF6D00;
	color:#fff;
	padding:0 0.5rem
}
.pack h3{
	font-size:1.3rem;
	font-weight: bold;
	margin-bottom:1rem;
}
.pack h3 span{
	background-color:#FF6D00;
	color:#fff;
	padding:0 0.5rem;
	margin-right:0.5rem;

}
.pack img{
	margin-bottom: 1rem;
}
/****flow*************/
.flow{
	background-color: #FDF7E7;
	padding:3rem 0 2rem 0;
}
.flow img{
	margin-bottom: 1rem;
}
.flow h3{
	font-size:1.1rem;
	font-weight: bold;
}
/****FAQ*************/
.faq {
	font-size:1.1rem;
}
.toggle {
	display: none;
}
.faq .inner {
	position: relative;
	margin-bottom: 1rem;
}
.question,.anser {
	transform: translateZ(0);
	transition: all 0.3s;
}
.question {
	border-bottom: solid 1px #999;
	padding: 1rem 2.2rem 1rem 1rem;
	display: block;
	color: #333;
	font-weight: bold;
}
.question span,.anser span {
	font-size: 130%;
	padding-right: 1rem;
	color: #FF6D00;
	line-height: 0;
}
.question:after,.question:before {
	content: "";
	position: absolute;
	right: 1.25rem;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 2px;
	height: 0.75rem;
	background-color: #999;
	transition: all 0.3s;
}
.question:after {
	transform: rotate(90deg);
}
.anser {
	max-height: 0;
	overflow: hidden;
}
.anser div {
	margin: 0;
	padding: 2rem 1rem 2rem;
	line-height: 1.8;
}

.toggle:checked + .question + .anser {
	max-height: 500px;
	transition: all 1.5s;
}
.toggle:checked + .question:before {
	transform: rotate(90deg) !important;
}

/*****adopt*************/
.adopt{
	padding:3rem 0;
}
.adopt h3{
	font-size:1.2rem!important;
	font-weight:bold;
}
.adopt p{
	
}
/****お問い合わせリンク************/
.contact a{
	display: block;
	padding:1rem;
	border:2px solid #1596D1;
	width:80%;
	max-width: 500px;
	margin:2rem auto;
	color:#1596D1!important;
	text-align: center;	
	font-weight: bold;
	background-color:#fff;
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);

}
.contact a:hover{
	color:#FFF!important;
	background-color: #2C377F;
}

/***ヘッダー固定**/
header {
	position: fixed;
	width:100%;
	z-index: 999;
	background-color: rgba(255, 255, 255, 0.7);
}
header a{
	/*color:#000!important;*/
	font-weight: bold;
}
.flow,.faq,.adopt {
  padding-top: 100px;
  margin-top: 100px;
}

nav ul{
	list-style: none;
}
nav ul li{
	height: 3rem;
}
nav ul li a{
	display: block;
	height: 100%;
	padding-top: 0.7rem;
}
.u_line a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #3D49E1;
bottom: 20px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
opacity: 0;
visibility: hidden;
transition: 0.3s;
}

.u_line a:hover::after {
visibility: visible;
bottom: 0px; /*アニメーションが止まる位置*/
opacity: 1;
}

.contact_btn{
	border-radius: 5px;
	background-color:#1596D1;
	color:#fff!important;
	margin-right:20px;
}
.contact_btn img{
	margin:0 5px 2px 0;
}
.contact_btn:hover{
	color:#fff!important;
	background-color:#2C377F;
}
/*********ハンバーガーメニュー************/
@media screen and (min-width: 992px) {
	.hamburger-menu{display: none;}
}
@media screen and (max-width: 992px) {
	#nav{
		display: none;
	}
.menu-btn {
  position: fixed;
  top: 15px;
  right: 10px;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #1596D1;
	border-radius: 999px;
}
.menu-btn:hover {
  cursor: pointer;
}
/* 三本線の実装 */
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
/* チェックボックスを非表示にする */
#menu-btn-check {
  display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255,255,255,0); /*メニューオープン時は真ん中の線を透明にする*/
}
/* メニューを開いている時はハンバーガーボタンが×になる */
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
/* メニュー部分の実装================= */
.menu-content {
  z-index:10; 
  width: 80%;
  height: auto;
  position: fixed;
  top: 0;
  left: 100%;
  background-color:#1596D1;
  transition: all 0.5s;
}
.menu-content ul {
  padding: 60px 10px 0;
	font-weight: bold;
}
.menu-content ul li {
  border-bottom: solid 1px #fff;
  list-style: none;
}
.menu-content ul li:first-child{
		border-bottom:none;
	}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff!important;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
#menu-btn-check:checked ~ .menu-content{
		left: 50%;}
}






/*パンくずリスト 全体************/
p#breadcrumbs {
    padding:1rem 0;
    font-size: 0.9rem;
}

/*パンくずリスト リンク*/
p#breadcrumbs a{
}	






/**footer************/
footer{
	text-align: center;
	color:#fff;
	background-color: #2E2E2E;
	padding:3px 0;}
footer h1{
	font-size:0.9rem
} 
footer img{
	width:220px;
	margin-bottom: 0.5rem
}
footer a{
	font-size:0.8rem;
	margin:0 1rem;
	color:#fff!important;
 }
	

/**メールフォーム************/
.cform {
	padding-bottom:100px;
}
.required{
	background-color: #52c2d0;
	color:#fff!important;
	padding:5px 10px 5px 0;
	border-radius: 5px;
	margin-left: 10px;
	}
.cform-inner {
  width: 90%;
  margin: 0 auto;
}
.cform dt {
  display: flex;
  align-items: center;
	padding-bottom:10px;
	font-size:1.1rem;
}
.cform dt span {
  padding-left: 0.5em;
  font-size: 0.8rem;
  color: #f00;
}
.cform dd {
  margin-bottom: 15px;

}
.cform .text {
	margin-bottom: 2em;
}
.cform .name,.cform .mail
{	
    height: 3em;
    width: 100%;
    padding: 5px 16px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.cform .tel
{	
    height: 2.4em;
    width: auto;
    padding: 5px 16px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.cform .message
{	
    height: 7em;
    width: 100%;
    padding: 5px 16px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.cform .name:focus,.cform .mail:focus,.cform .tel:focus,.cform .message:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
.cform .btn {
  width: 200px;
  padding: 10px 20px;
  border-radius: 15px;
  font-size: 1rem;
  color: #fff;
}
.cform .btn:hover {
  color: #fff;
}
.cform .btn-back {
  background: #ccc;
  margin-right: 15px;
}
.cform .btn-submit {
  background: #23498F;
}
.cform .btn-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.mw_wp_form_preview {
  margin-left: 0.5em;
}

@media screen and (max-width: 560px) { 
.cform-inner {
  width: 100%;}
}


/**フェードイン********/
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 600ms;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
/**スライドイン*****************/
.slide-in {
  font-weight: bold;
  animation: slideIn 2s ease-out;
}

@keyframes slideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/****page******************/

main.page{
	margin-top:100px;
}

@media screen and (max-width: 560px) { 
main.page{
	margin-top:75px;
}
}
/*タイトル背景*/
.page_title{
	background-image: url("img/job.webp");
	background-size: cover;
	height: 150px;
}
.contact_bnr{
	background-image: url("img/contact.webp");
}


main.page h1{
	color:#fff;
	height:150px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size:1.5rem;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
