
body {
	font-family: 'Noto Sans JP', sans-serif;
	position: relative;
    left: 0;
    overflow-x: hidden;
	-webkit-text-size-adjust: 100%; /* iphone横向き 文字拡大防止 */
}
img {
	display: block;
	width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a {
	text-decoration: none;
	color: #000;
	transition: all .3s;
}
a:hover {
	opacity: 0.7;
}
p {
	font-size: 16px;
	line-height: 1.8;
}
/* デフォルトの装飾を削除 */
input, textarea, select {
	-webkit-appearance: none;
	width: calc(100% - 22px);
	padding: 6px 10px;
	border: 1px #cfcfcf solid;;
	background: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active  {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
select {
	width: 100%;
	background: #fff url("../img/icon_select.png") center right 10px / 10px no-repeat;
	padding: 10px;
	cursor: pointer;
}
select::-ms-expand {
    display: none;
}
:focus {
    outline: -webkit-focus-ring-color none;
}
::placeholder {
  color: #C1C1C1;
}

/*==================================================================================
ヘッダー
==================================================================================*/
header {
	width: calc(100% - 80px);
	padding: 30px 40px!important;
	background: #fff;
	z-index: 9999;
	position: relative;
}
header.second {
	box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
header.second.animated {
	animation: head_animated .6s;
}
@keyframes head_animated {
	0% {transform: translateY(-100%);}
	100% {transform: translateY(0);}
}
header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
header .row {
	position: relative;
}
header .logo {
	display: block;
	width: 200px;
}
header nav.gnav ul {
	display: flex;
	flex-wrap: wrap;
}
header nav.gnav ul li {
	padding: 5px 40px;
	border-right: 1px #ccc solid;
}
header nav.gnav ul li:last-child {
	border-right: none;
}
header nav.gnav ul li a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.1em;
}
header nav.gnav ul li a:hover {
	opacity: 1;
	color: #238c5a;
}
header .btn_entry {
	display: block;
	width: 220px;
	padding: 15px 0;
	border-radius: 5px;
	background: #FF2828;
	color: #fff;
	font-size: 20px;
	font-weight: 900;
	text-align: center;
	letter-spacing: 0.1em;
	position: relative;
}
header .btn_entry::before {
	content: "";
	display: block;
	width: 70px;
	height: 70px;
	background: url("../img/icon_click.png") center center / contain no-repeat;
	position: absolute;
	top: -10px;
	left: -62px;
	transition: all .1s;
}
header .btn_entry::after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-top: 2px #fff solid;
	border-right: 2px #fff solid;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .1s;
}
header .btn_entry span {
	display: inline-block;
	padding-right: 15px;
}
header .btn_entry:hover {
	opacity: 1;
	background: #e90000;
}
header .btn_entry:hover::before {
	transform: rotate(10deg);
}
header .btn_entry:hover::after {
	right: 15px;
}


.btn_search_tab {
    display: block;
    position: fixed;
    right: 0px;
    top: 200px;
    z-index: 100;
}

/* スマホ版 メニュー -----------------------*/
nav.gnav_sp {
    z-index: 2;
    width: 100%;
	height: calc(100vh - 64px);
	background: rgba(0,0,0,0.8);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
    position: absolute;
    top: 64px;
    left: 0;
}
nav.gnav_sp.active {
    opacity: 1;
	visibility: visible;
}
nav.gnav_sp ul {
    width: 100%;
	padding-bottom: 20px;
	border-top: 1px #ccc solid;
    background: #fff;
    text-align: center;
}
nav.gnav_sp ul li {
    width: 100%;
    border-bottom: 1px dotted #ccc;
}
nav.gnav_sp ul li:last-child {
    border-bottom: 1px solid #ccc;
}
nav.gnav_sp ul li a {
    display: block;
	padding: 20px 0;
    background: #f9fbfa;
	font-size: 14px;
}

.gnavToggle {
    z-index: 3;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    position: absolute;    /* bodyに対しての絶対位置指定 */
    top: 17px;
    right: 20px;
}
.gnavToggle span {
    display: block;
    width: 100%;
    border-bottom: solid 3px #238c5a;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    position: absolute;    /* .navToggleに対して */
    left: 0;
}
.gnavToggle span:nth-child(1) {
    top: 6px;
}
.gnavToggle span:nth-child(2) {
    top: 14px;
}
.gnavToggle span:nth-child(3) {
    top: 22px;
}
.gnavToggle span:nth-child(4) {
    border: none;
    color: #FFF;
    font-size: 10px;
    font-weight: bold;
    top: 36px;
	left: 10px;
}
.gnavToggle.active span:nth-child(1) {
    top: 14px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.gnavToggle.active span:nth-child(2),
.gnavToggle.active span:nth-child(3) {
    top: 14px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
section {
	padding: 120px 0!important;
	position: relative;
}
section.pd_non {
	padding: 0!important;
}
.container {
	width: calc(100% - 40px);
	max-width: 1200px;
	padding: 0 20px;
	margin: auto;
}
.max680 {
	max-width: 680px;
	margin: auto;
}
.max960 {
	max-width: 960px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.align_center {
	align-items: center;
}
.row.just_center {
	justify-content: center;
}
.row.just_end {
	justify-content: flex-end;
}
.row.just_start {
	justify-content: flex-start;
}
.col2 {
	width: calc(100% / 2 - 30px);
}

.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_30 {
	margin-bottom: 30px;
}
.mb_60 {
	margin-bottom: 60px;
}
.mb_120 {
	margin-bottom: 120px;
}
.mr_10 {
	margin-right: 10px;
}

/* フォント */
h1 {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 60px;
	font-weight: 700;
	text-align: center;
	letter-spacing: .05em;
}
h1 span {
	display: block;
	margin-bottom: 20px;
}
h1 span img {
	width: 200px;
	margin: auto;
}
h2 {
	padding-bottom: 30px!important;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	letter-spacing: .1em;
	position: relative;
}
h2::after {
	content: "";
	display: block;
	width: 110px;
	height: 8px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
h3 {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	letter-spacing: .1em;
	position: relative;
}
h3::before {
	content: "";
	display: block;
	width: 100%;
	border-bottom: 1px #000 solid;
	position: absolute;
	top: 50%;
	left: 0;
}
h3 span {
	display: inline-block;
	padding: 0 15px;
	background: #fff;
	position: relative;
}
h4 {
	padding-left: 8px!important;
	border-left: 6px #000 solid!important;
	font-size: 18px;
	font-weight: 400;
}
.font_12 {
	font-size: 12px;
}
.font_14 {
	font-size: 14px;
}
.font_18 {
	font-size: 18px;
}
.font_24 {
	font-size: 24px;
}
.font_30 {
	font-size: 30px;
}
.font_46 {
	font-size: 46px;
	line-height: 1;
}
.txt_center {
	text-align: center;
}
.txt_right {
	text-align: right;
}
.ttl_font {
	font-family: 'Zen Maru Gothic', sans-serif;
}
.light {
	font-weight: 300;
}
.medium {
	font-weight: 500;
}
.bold {
	font-weight: 700;
}
.black {
	font-weight: 900;
}
.vertical {
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	letter-spacing: 0.1em;
	line-height: 1;
}
.green {
	color: #238c5a;
}
.line2_2 {
	line-height: 2.2;
}
.txt_space {
	letter-spacing: 0.1em;
}

/* ヘッダー旗 --------------*/
.head_flag {
	overflow: hidden;
	position: relative;
}
.head_flag::before {
	content: "";
	display: block;
	width: 100%;
    min-width: 1920px;
	height: 680px;
	background: url("../img/head_flag.png") left -11% top / 45% no-repeat, url("../img/head_flag_r.png") right -11% top / 45% no-repeat;
	position: absolute;
	top: -110px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}

/* 波 ---------------------*/
.bg_color {
	padding: 60px 0;
	background: url("../img/bg_other.jpg") left top / 500px repeat;
}

.wave {
	position: relative;
	overflow: hidden;
}
.wave::before,
.wave::after {
	content: "";
	display: block;
	width: 100%;
	height: 360px;
	background-image: url("../img/wave.png");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
}
.wave::before {
	background-position: center bottom;
	top: -320px;
}
.wave::after {
	background-position: center top;
	bottom: -320px;
}

/* アニメーション -----------*/
.animated.fadeinup {
	animation: fadeinup .6s;
}
@keyframes fadeinup {
	0% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}

/* ホワイトボード --------------*/
.boad {
	padding: 60px;
	background: #fff;
	border-radius: 20px;
}

/* チェックボックス -----------*/
.btn_check {
	display: inline-block;
	cursor: pointer;
}
.btn_check:hover {
	opacity: 0.8;
}
.btn_check input {
	display: none;
}
.btn_check p {
	padding-left: 20px;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.2;
	white-space: nowrap;
	position: relative;
}
.btn_check p::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border: 1px #49AC35 solid;
	border-radius: 3px;
	position: absolute;
	top: 2px;
	left: 0;
}
.btn_check p::after {
	content: "";
	display: block;
	width: 5px;
	height: 9px;
	border-right: 1px #fff solid;
	border-bottom: 1px #fff solid;
	position: absolute;
	top: 2px;
	left: 4px;
	opacity: 0;
	transform: rotate(45deg);
}
.btn_check input:checked + p::after {
	opacity: 1;
}


/*==================================================================================
INDEX
==================================================================================*/
section#main {
	height: calc(1100px - 120px);
	padding: 60px 0!important;
	position: relative;
	overflow: hidden;
}
section#main::after {
	content: "";
	display: block;
	width: 100%;
	height: 280px;
	background: url("../img/main_bg_green2.png") center top / 220px repeat-x;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
}
section#main.head_flag::before {
	top: -20%;
}

/* 空 */
section#main .bg_sky {
	width: 100%;
	min-width: 1920px;
	position: absolute;
	top: 280px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
/* 丘、木 */
section#main .bg_tree {
	width: 1920px;
	position: absolute;
	top: 200px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
}
/* 雲、鳥 */
section#main .bg_side {
	width: 1920px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
}
section#main .cloud_l,
section#main .bird_l,
section#main .cloud_r,
section#main .bird_r {
	width: 25%;
	position: absolute;
}
section#main .cloud_l {
	bottom: 5%;
	left: -4%;
}
section#main .bird_l {
    top: 10%;
    left: 10%;
}
section#main .cloud_r {
    top: 26%;
    right: -8%;
}
section#main .bird_r {
    top: 12%;
    right: 8%;
}
/* 人 -----------------------------*/
section#main .person {
	width: 100%;
	max-width: 1080px;
	position: absolute;
	top: 770px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}
section#main .person .p01 {
	width: 120px;
	position: absolute;
	left: 0;
	bottom: 0;
}
section#main .person .p02 {
	width: 120px;
	position: absolute;
	left: 15%;
	bottom: 70px;
}
section#main .person .p03 {
	width: 120px;
	position: absolute;
	right: 15%;
	bottom: 70px;
}
section#main .person .p04 {
	width: 100px;
	position: absolute;
	right: 20px;
	bottom: -5px;
}
/* 吹き出し */
section#main .person .comment {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: #fff;
	position: absolute;
	top: -130px;
	left: 50%;
	transform: translateX(-50%);
	transition: all .2s;
}
section#main .person .comment::after {
	content: "";
	display: block;
	border-top: 8px #fff solid;
	border-right: 5px transparent solid;
	border-left: 5px transparent solid;
	position: absolute;
	left: 50%;
	bottom: -8px;
	transform: translateX(-50%);
}
section#main .person .comment p {
	width: 100%;
	line-height: 1.4;
	margin-bottom: 5px;
}
section#main .person .comment span {
	display: inline-block;
	padding: 2px 15px;
	border-radius: 20px;
	background: #fbb92a;
	color: #fff;
	font-size: 12px;
	text-align: center;
	position: relative;
}
section#main .person .comment span::after {
	content: "";
	display: block;
	width: 4px;
	height: 4px;
	border-top: 1px #fff solid;
	border-right: 1px #fff solid;
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%) rotate(45deg);
}
section#main .person .comment:hover {
	opacity: 1;
	transform: translateX(-50%) scale(1.1);
}
section#main .person .comment:hover span {
	background: #FF6E00;
}
section#main .person .comment:hover span::after {
	right: 6px;
}
/* ロゴ */
section#main .logo {
	position: relative;
}
section#main .logo img {
	width: 300px;
	margin: auto;
}

/* 求人を探す -----------------------*/
section#main .btm {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 60px;
	z-index: 6;
}
nav.search_job {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: calc(100% - 40px);
	max-width: calc(1200px - 40px);
	margin: auto;
	padding: 20px;
	border-radius: 20px;
	background: #fff;
}
nav.search_job .check_group {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: calc(100% - 55px - 140px);
}
nav.search_job .howto {
	width: calc(100% - 31px);
	padding: 0 15px;
	border-left: 1px #ccc solid;
}
nav.search_job .howto .ttl {
	padding: 8px 10px;
	border-radius: 3px;
	background: #49AC35;
	color: #fff;
	line-height: 1;
}
nav.search_job .howto ul.col2 {
	width: calc(100% / 2 - 10px);
}
nav.search_job .howto ul li {
	margin-bottom: 10px;
}
nav.search_job .howto ul li:last-child {
	margin-bottom: 0;
}
nav.search_job .howto ul li ul {
	padding-left: 22px;
}
/* チェックボックス */
nav.search_job .btn_check input:checked + p::before {
	background: #49AC35;
}
/* 検索ボタン */
nav.search_job .btn_group {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-content: flex-end;
	width: 150px;
}
nav.search_job .btn_search {
	display: block;
	width: 100%;
	padding: 8px 10px;
	border: none;
	border-radius: 3px;
	background: #FF6E00;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	line-height: 1.4;
	cursor: pointer;
}
nav.search_job .btn_search:hover {
	opacity: 1;
	background: #ff3b00;
}
nav.search_job .btn_clear {
	display: block;
	width: 100%;
	padding: 8px;
	border-radius: 3px;
	border: 1px #ccc solid;
	background: #fff;
	color: #666;
	font-size: 12px;
	font-weight: 200;
	text-align: center;
	line-height: 1;
	cursor: pointer;
}
nav.search_job .btn_all {
	display: block;
	padding-right: 20px;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	position: relative;
}
nav.search_job .btn_all::before {
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #49AC35;
	position: absolute;
	bottom: 2px;
	right: 0;
}
nav.search_job .btn_all::after {
	content: "";
	display: block;
	border-top: 3px transparent solid;
	border-right: none;
	border-bottom: 3px transparent solid;
	border-left: 6px #fff solid;
	position: absolute;
	bottom: 6px;
	right: 3px;
}

/* News ------------------------------------------------------------------------*/
section#top_news {
	padding: 60px 0 80px!important;
	background: url("../img/top_news_bg.jpg") center bottom / cover no-repeat;
	position: relative;
	overflow-x: hidden;
}
section#top_news .container {
	position: relative;
	z-index: 10;
}
section#top_news .container::before,
section#top_news .container::after {
	content: "";
	display: block;
	width: 200px;
	height: 233px;
	background-position: center top;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 8%;
}
section#top_news .container::before {
	background-image: url("../img/top_news_bg01.png");
	left: -160px;
}
section#top_news .container::after {
	background-image: url("../img/top_news_bg02.png");
	right: -160px;
}
section#top_news .h1 {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	line-height: 1;
	letter-spacing: .05em;
}
.article {
	display: block;
	width: calc(100% / 4 - 20px - 20px);
	padding: 10px;
	border-radius: 20px;
	background: #fff;
}
.article .thumbnail {
	height: 140px;
	border-radius: 20px;
	overflow: hidden;
}
.article .thumbnail img {
	height: 100%!important;
	object-fit: cover;
}
.article:hover {
	opacity: 1;
	box-shadow: 0 6px 6px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}
.article:hover p {
	color: #238c5a;
}
div.article {
	width: calc(100% / 4 - 20px);
	padding: 0;
	background: none;
}
div.article:hover {
	box-shadow: none;
	transform: none;
}
.category {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 3px;
	color: #fff;
	font-size: 12px;
}
.category.cate01 {
	background: #ff7878;
}
.category.cate03 {
	background: #ff8c3c;
}
.category.cate04 {
	background: #a0aa00;
}
section#top_news ul.cate_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
section#top_news ul.cate_list li {
	margin-left: 10px;
}
section#top_news ul.cate_list li:last-child {
	margin-left: 30px;
}
section#top_news ul.cate_list li:last-child a {
	display: inline-block;
	padding-right: 15px;
	position: relative;
}
section#top_news ul.cate_list li:last-child a::after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-top: 1px #000 solid;
	border-right: 1px #000 solid;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%) rotate(45deg);
}

/* About Juju ---------------------------------------------------------------------*/
section#top_about {
	padding: 120px 80px!important;
	background-image: url("../img/top_about_ilst03.png"), url("../img/top_about_ilst04.png"), url("../img/top_about_ilst05.png"), url("../img/top_about_ilst06.png"), url("../img/top_about_ilst07.png"), url("../img/top_about_ilst08.png"), url("../img/top_about_ilst09.png"), url("../img/top_about_ilst10.png"), url("../img/top_about_ilst11.png");
	background-position: left top 200px, left 60px top 800px, left 60px bottom 360px, left bottom, right top 200px, right 60px top 680px, right 60px bottom 600px, right bottom 380px, right 60px bottom -100px;
	background-size: 260px;
	background-repeat: no-repeat;
}
section#top_about .container {
	position: relative;
	z-index: 10;
}
section#top_about .container::before,
section#top_about .container::after {
	content: "";
	display: block;
	width: 200px;
	height: 200px;
	background-position: center top;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
}
section#top_about .container::before {
	background-image: url("../img/top_about_ilst01.png");
	top: -190px;
	left: 0;
}
section#top_about .container::after {
	background-image: url("../img/top_about_ilst02.png");
	top: -80px;
	right: 0;
}
section#top_about .about {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	width: 75%;
	max-width: calc(900px - 25%);
	margin: 0 0 20px;
	padding: 0 10% 0 15%;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
}
section#top_about .about.right {
	margin: 0 0 20px auto;
	padding: 0 15% 0 10%;
}
section#top_about .about:nth-child(1) {
	background-image: url("../img/top_about01_bg.png");
}
section#top_about .about:nth-child(2) {
	background-image: url("../img/top_about02_bg.png");
}
section#top_about .about:nth-child(3) {
	background-image: url("../img/top_about03_bg.png");
}
section#top_about .about:nth-child(4) {
	background-image: url("../img/top_about04_bg.png");
}
section#top_about .about:nth-child(5) {
	background-image: url("../img/top_about05_bg.png");
}
section#top_about .about .number {
	line-height: 1;
	position: absolute;
	top: 0;
	left: 60px;
}
section#top_about .about.right .number {
	position: absolute;
	top: 0;
	left: auto;
	right: 60px;
}
section#top_about .about .number span {
	display: block;
	font-size: 76px;
	line-height: 0.8;
}
section#top_about .about .img {
	width: calc(100% - 240px);
	min-width: 340px;
	margin-bottom: 20px;
	margin-right: 10px;
}
section#top_about .about.right .img {
	margin-right: 0;
	margin-left: 10px;
}
section#top_about .about .txt p {
	line-height: 2;
}
section#top_about .about .txt .ttl_font {
	display: inline-block;
	line-height: 1;
	white-space: nowrap;
	position: relative;
}
section#top_about .about .txt .ttl_font::before {
	content: "";
	display: block;
	width: 100%;
	height: 80%;
	background: rgba(255,255,255,0.5);
	position: absolute;
	left: 0;
	bottom: -30%;
}
section#top_about .about .txt .ttl_font span {
	position: relative;
}
section#top_about .about .btn_detail {
	display: inline-block;
	width: calc(200px - 20px);
	padding: 12px;
	border-radius: 50px;
	color: #fff;
	font-weight: 700;
	text-align: center;
	position: relative;
}
section#top_about .about:nth-child(1) .btn_detail {
	background: #4196ff;
}
section#top_about .about:nth-child(2) .btn_detail {
	background: #ffb400;
}
section#top_about .about:nth-child(3) .btn_detail {
	background: #5abe46;
}
section#top_about .about:nth-child(4) .btn_detail {
	background: #ff8030;
}
section#top_about .about:nth-child(5) .btn_detail {
	background: #ff768b;
}
section#top_about .about .btn_detail::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px #fff solid;
	border-right: 1px #fff solid;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .1s;
}
section#top_about .about .btn_detail:hover {
	opacity: 1;
}
section#top_about .about:nth-child(1) .btn_detail:hover {
	background: #0977FF;
}
section#top_about .about:nth-child(2) .btn_detail:hover {
	background: #F39E00;
}
section#top_about .about:nth-child(3) .btn_detail:hover {
	background: #4FAC3C;
}
section#top_about .about:nth-child(4) .btn_detail:hover {
	background: #FF6809;
}
section#top_about .about:nth-child(5) .btn_detail:hover {
	background: #FF536D;
}
section#top_about .about .btn_detail:hover::after {
	right: 12px;
}

/* 求人一覧アコーディオン -------------------------------------*/
.acd-check{
	display: none;
}
.acd-label{
	display: inline-block;
	padding: 0 0 0 30px;
	font-size: 18px;
	cursor: pointer;
	position: relative;
}
.acd-label::before{
	content: "";
	display: block;
	width: calc(24px - 2px);
	height: calc(24px - 2px);
	border: 1px #238966 solid;
	border-radius: 50%;
	background: url("../img/icon_acco.png") center center / 10px no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(45deg);
}
.acd-check:checked + .acd-label::before{
	transform: translateY(-50%);
}
.acd-content{
	max-width: 680px;
	height: 0;
	margin: auto;
	opacity: 0;
	transition: .5s;
	visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content{
	height: auto;
	opacity: 1;
	visibility: visible;
}
.accordion-area li {
	border: 1px #238966 solid;
	border-radius: 10px;
	background: #fff;
}
.title {
	padding: 15px;
	position: relative;
	cursor: pointer;
	transition: all .1s ease;
}
.title::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: url("../img/icon_acco.png") center center / contain no-repeat;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%) rotate(45deg);
}
.title.close::before{
	transform: translateY(-50%);
}
.box {
	display: none;/*はじめは非表示*/
	padding: 10px 60px;
}
.box p {
	padding-left: 15px;
	text-align: left;
	position: relative;
}
.box p::before {
	content: "";
	display: block;
	border-top: 4px transparent solid;
	border-right: none;
	border-bottom: 4px transparent solid;
	border-left: 6px #49ac35 solid;
	position: absolute;
	top: 8px;
	left: 0;
}
.box p span {
	display: inline-block;
	margin-right: 3px;
	padding: 3px 6px;
	border-radius: 3px;
	color: #fff;
	font-size: 12px;
	line-height: 1;
}
.box p span.tag01 {
	background: #ff7878;
}
.box p span.tag02 {
	background: #006e00;
}
.box p span.tag03 {
	background: #005aa0;
}
.box .sepa {
	border-bottom: 2px #ccc dotted;
}


/*==================================================================================
ニュース
==================================================================================*/
section#news_list .side {
	width: 120px;
}
section#news_list .side ul li {
	margin-bottom: 10px;
}
section#news_list .side ul li .category {
	width: calc(100% - 20px);
	padding: 8px 10px;
	font-size: 14px;
	text-align: center;
}
section#news_list .side ul.archive li {
	margin-bottom: 20px;
}
section#news_list .side ul.archive li a {
	display: inline-block;
	padding-left: 20px;
	position: relative;
}
section#news_list .side ul.archive li a::before {
	content: "";
	display: block;
	width: 15px;
	border-bottom: 1px #000 solid;
	position: absolute;
	top: 50%;
	left: 0;
}
section#news_list .news_list {
	width: calc(100% - 180px);
	max-width: 840px;
}
section#news_list .article {
	width: calc(100% / 2 - 40px - 15px);
	padding: 20px;
}
section#news_list .article .thumbnail {
	height: 240px;
}
.wp-pagenavi,
section#news_list nav.pagenav {
	width: 100%;
	margin-top: 60px;
}
.wp-pagenavi,
section#news_list nav.pagenav ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
.wp-pagenavi a,
.wp-pagenavi span,
section#news_list nav.pagenav ul li a,
section#news_list nav.pagenav ul li span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	font-size: 14px;
}
.wp-pagenavi span.current,
section#news_list nav.pagenav ul li span {
	background: #FFA05A;
	color: #fff;
}
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink,
section#news_list nav.pagenav ul li:first-child a,
section#news_list nav.pagenav ul li:last-child a {
	width: 80px;
}
.wp-pagenavi a:hover,
section#news_list nav.pagenav ul li a:hover {
	opacity: 1;
	background: rgba(255,255,255,0.3);
}
/* ニュース詳細 ----------------------------*/
section#news .thumbnail {
	padding: 10px;
	border-radius: 5px;
	background: #fff;
}
section#news nav.article_nav {
	width: 100%;
}
section#news nav.article_nav ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}
section#news nav.article_nav ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	font-size: 14px;
}
section#news nav.article_nav ul li.list a {
	background: url("../img/icon_list.png") center center / 20px no-repeat;
}
section#news nav.article_nav ul li.prev a,
section#news nav.article_nav ul li.next a {
	width: 120px;
}
section#news nav.article_nav ul li a:hover {
	opacity: 1;
	background-color: rgba(255,255,255,0.3);
}

/*==================================================================================
Jujuグループ
==================================================================================*/
main.about h2::after {
	background-image: url("../img/about_h2.jpg");
}
main.about h3 {
	color: #0082DC;
}
main.about h3::before {
	border-bottom-color: #0082DC;
}
.blue {
	color: #0082DC;
}
main.about .bg_color {
	background-image: url("../img/bg_about.jpg");
}
/* 代表挨拶 ----------------------------------------------------*/
section#about_agree .agree {
	max-width: 1920px;
	margin: auto;
	padding: 120px 0;
	background: url("../img/about_agree.jpg") center center / cover no-repeat;
}
section#about_agree .agree .img {
	display: none;
}
section#about_agree .agree .txt {
	width: 50%;
	min-width: 540px;
	margin: 0 0 0 auto;
}
section#about_agree .agree .txt .name p {
	line-height: 1.2;
	letter-spacing: 0.05em;
}
/* 寿々寿々グループ沿革 -------------------------------------------*/
section#about_history table {
	width: 100%;
	line-height: 1.4;
}
section#about_history table th {
	color: #0082DC;
	font-weight: 400;
	text-align: left;
}
section#about_history table th:nth-child(2) {
	padding: 0 20px 0 2px;
	text-align: right;
}
section#about_history table td {
	padding: 0 0 10px 20px;
	border-left: 1px #000 dashed;
}
/* グループ各社紹介 ----------------------------------------------*/
section#about_group .boad {
	width: calc(100% / 3 - 22px - 40px);
	padding: 0 20px 58px;
	position: relative;
}
section#about_group .boad .ttl {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 120px;
	border-bottom: 1px #0082DC dotted;
	font-size: 20px;
	text-align: center;
	line-height: 1.4;
}
section#about_group .btn_detail {
	display: block;
	width: calc(100% - 40px - 20px);
	padding: 10px;
	border: 1px #0082DC solid;
	border-radius: 10px;
	color: #0082DC;
	font-size: 16px;
	text-align: center;
	position: absolute;
	left: 20px;
	bottom: 20px;
}
section#about_group .btn_detail::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px #0082DC solid;
	border-right: 1px #0082DC solid;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s;
}
section#about_group .btn_detail:hover {
	opacity: 1;
	background: #0082DC;
	color: #fff;
}
section#about_group .btn_detail:hover::after {
	border-top: 1px #fff solid;
	border-right: 1px #fff solid;
	right: 12px;
}

/*==================================================================================
グループ各社紹介
==================================================================================*/
/* 代表挨拶 ----------------------------------------*/
section#group_agree .img {
	width: 460px;
}
section#group_agree .txt {
	width: calc(100% - 460px - 60px);
}
/* 事業内容 -----------------------------------------*/
section#group_service .boad {
	padding: 60px 30px;
	border-radius: 200px;
	background: #fff;
}
/* 会社概要、沿革 ------------------------------------*/
section#group_info table {
	width: 100%;
	line-height: 1.6;
}
section#group_info table th {
	padding: 0 20px 0 0;
	color: #0082DC;
	font-weight: 400;
	text-align: right;
	white-space: nowrap;
}
section#group_info table td {
	padding: 0 0 10px 20px;
	border-left: 1px #000 dashed;
}
section#group_info table.history th {
	width: 66px;
	padding: 0;
	text-align: left;
}
section#group_info table.history th:nth-child(2) {
	width: calc(56px - 22px);
	padding: 0 20px 0 2px;
	text-align: right;
}

/*==================================================================================
数字で見るJuju
==================================================================================*/
main.data .bg_color {
	background-image: url("../img/bg_data.jpg");
}
section#data .container {
	max-width: 1080px;
}
section#data .data_img {
	width: calc(100% / 4 - 15px);
}
section#data .data_img2 {
	width: calc(100% / 2 - 10px);
}

/*==================================================================================
お仕事について
==================================================================================*/
main.work h2::after {
	background-image: url("../img/work_h2.jpg");
}
.pink {
	color: #FF788C;
}
main.work .bg_color {
	background-image: url("../img/bg_work.jpg");
}
section#work .wrap {
	width: 100%;
}
section#work input.trigger {
	display: none;
}
section#work label.works {
	display: block;
	width: 360px;
	margin: 0 15px 30px;
	border-radius: 20px;
	overflow: hidden;
	transition: all .3s;
	cursor: pointer;
}
section#work label.works .img {
	height: 220px;
	overflow: hidden;
}
section#work label.works .img img {
	height: 100%;
	object-fit: cover;
	transition: all .3s;
}
section#work label.works .txt {
	padding: 15px;
	background: #fff;
	letter-spacing: 0.05em;
	position: relative;
	transition: all .3s;
}
section#work label.works .txt::after {
	content: "";
	width: 10px;
	height: 10px;
	border-top: 1px #ccc solid;
	border-right: 1px #ccc solid;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s;
}
section#work label.works:hover {
	box-shadow: 0 6px 6px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}
section#work label.works:hover .txt {
	color: #FF788C;
}
section#work label.works:hover .txt::after {
	border-color: #FF788C;
}
/* ポップアップ -----------------------------------*/
section#work .popup {
	width: 100%;
	height: 100vh;
	background: rgba(255,165,170,0.80);
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	transition: all .3s;
}
section#work input.trigger:checked + .popup {
	visibility: visible;
	opacity: 1;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
section#work .popup label.bg {
	display: block;
	width: 100%;
	height: 100%;
}
section#work .popup .boad {
	width: calc(100% - 60px - 40px);
	max-width: calc(740px - 60px);
	padding: 30px;
	position: absolute;
	top: 200px;
	left: 50%;
	transform: translateX(-50%);
}
section#work .popup .boad .scroll {
	max-height: 500px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
section#work .popup .boad .scroll::-webkit-scrollbar {
	width: 8px;
}
section#work .popup .boad .scroll::-webkit-scrollbar-track {
	margin: 2px;
	background: #ccc;
	border-radius: 5px;
}
section#work .popup .boad .scroll::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background: #666;
}
section#work .popup .boad label.close {
	width: 40px;
	height: 40px;
	background: url("../img/icon_close.png") center center / contain no-repeat;
	position: absolute;
	top: -45px;
	right: 0;
	cursor: pointer;
}
section#work .popup .boad .img {
	width: 260px;
	height: 195px;
	overflow: hidden;
}
section#work .popup .boad .img img {
	height: 100%;
	object-fit: cover;
}
section#work .popup .boad .txt {
	width: calc(100% - 260px - 30px);
}

/* 入社後のフォローについて --------------------------------*/
section#work_follow .follow {
	width: calc(100% / 3 - 81px);
	padding: 0 40px;
	border-right: 1px #ccc dashed;
}
section#work_follow .follow:last-child {
	width: calc(100% / 3 - 80px);
	border-right: none;
}

/*==================================================================================
社員インタビュー
==================================================================================*/
main[class^="int"] .bg_color {
	background-image: url("../img/bg_interview.jpg");
}
section#interview .boad {
	padding: 30px;
}
section#interview .boad .row {
	flex-wrap: nowrap;
}
section#interview .boad .btn_check p {
	padding-left: 25px;
	font-size: 16px;
}
section#interview .boad .btn_check p::before {
	width: 14px;
	height: 14px;
	top: 1px;
}
section#interview .boad .btn_check p::after {
	left: 5px;
}
section#interview .boad .ttl {
	padding: 10px;
	border: 1px #ccc solid;
	border-radius: 5px;
	line-height: 1;
	letter-spacing: 0.05em;
}
section#interview .boad ul li {
	margin-bottom: 20px;
}
/* 職種で絞り込み */
section#interview .works {
	width: calc(75% - 180px);
}
section#interview .works ul {
	display: flex;
	flex-wrap: wrap;
}
section#interview .works ul li {
	width: calc(100% / 3);
	min-width: 200px;
}
section#interview .works .btn_check.w01 p::before {
	border-color: #FF7878;
}
section#interview .works .btn_check.w02 p::before {
	border-color: #9682B4;
}
section#interview .works .btn_check.w03 p::before {
	border-color: #A0AA00;
}
section#interview .works .btn_check.w04 p::before {
	border-color: #FF8C3C;
}
section#interview .works .btn_check.w05 p::before {
	border-color: #00AA5A;
}
section#interview .works .btn_check.w06 p::before {
	border-color: #008CA0;
}
section#interview .works .btn_check.w07 p::before {
	border-color: #BE8C4B;
}
section#interview .works .btn_check.w01 input:checked + p::before {
	background: #FF7878;
}
section#interview .works .btn_check.w02 input:checked + p::before {
	background: #9682B4;
}
section#interview .works .btn_check.w03 input:checked + p::before {
	background: #A0AA00;
}
section#interview .works .btn_check.w04 input:checked + p::before {
	background: #FF8C3C;
}
section#interview .works .btn_check.w05 input:checked + p::before {
	background: #00AA5A;
}
section#interview .works .btn_check.w06 input:checked + p::before {
	background: #008CA0;
}
section#interview .works .btn_check.w07 input:checked + p::before {
	background: #BE8C4B;
}
/* 働き方で絞り込み */
section#interview .status {
	width: 180px;
	margin: 0 20px;
}
section#interview .status .btn_check.s01 p::before {
	border-color: #005AA0;
}
section#interview .status .btn_check.s02 p::before {
	border-color: #006E00;
}
section#interview .status .btn_check.s01 input:checked + p::before {
	background: #005AA0;
}
section#interview .status .btn_check.s02 input:checked + p::before {
	background: #006E00;
}
/* ボタン */
section#interview .btn_group {
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	width: 20%;
}
section#interview .btn_group .btn_search {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: calc(100% - 48px - 20px);
	padding: 35px 20px;
	border: none;
	border-radius: 5px;
	background: #FF6E00;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.05em;
	cursor: pointer;
}
section#interview .btn_group .btn_search:hover {
	opacity: 1;
	background: #ff3b00;
}
section#interview .btn_group .btn_clear {
	display: block;
	width: 100%;
	padding: 10px 20px;
	border: 1px #FF8C3C solid;
	border-radius: 5px;
	background: #fff;
	color: #FF8C3C;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
	cursor: pointer;
	letter-spacing: 0.05em;
}

/* インタビューリンク -------------------------*/
.member_voice {
	display: block;
	width: calc(100% / 4 - 15px);
}
.member_voice .icon_p {
	display: block;
}
.member_voice .icon_p img {
    max-width: 220px!important;
   	margin: auto;
}
.member_voice .icon_p:hover {
	opacity: 0.8;
	transform: translateY(-5px);
}
.jobtag {
	display: block;
	max-width: 220px;
	margin: 0 auto 5px;
	padding: 8px 0;
	border-radius: 5px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.05em;
}
.jobtag.w01 {
	background: #FF7878;
}
.jobtag.w02 {
	background: #9682B4;
}
.jobtag.w03 {
	background: #A0AA00;
}
.jobtag.w04 {
	background: #FF8C3C;
}
.jobtag.w05 {
	background: #00AA5A;
}
.jobtag.w06 {
	background: #008CA0;
}
.jobtag.w07 {
	background: #BE8C4B;
}
.jobtag.s01,
.jobtag.s02 {
	max-width: calc(220px - 2px);
	background: #fff;
}
.jobtag.s01 {
	border: 1px #005AA0 solid;
	color: #005AA0;
}
.jobtag.s02 {
	border: 1px #006E00 solid;
	color: #006E00;
}

/* インタビュー詳細 ----------------------------------------------------------------*/
section#interview .main {
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
section#interview .main .img {
	height: 520px;
}
section#interview .main .img img {
	height: 100%;
	object-fit: cover;
}
section#interview .main .txt {
	width: calc(50% - 120px - 60px);
	min-width: calc(460px - 120px);
	height: calc(100% - 120px);
	padding: 60px;
	background: rgba(255,255,255,0.80);
	position: absolute;
	top: 0;
	right: 30px;
}
section#interview .main .txt .jobtag {
	width: calc(100% / 2 - 5px);
	max-width: calc(100% / 2 - 5px);
	margin: 0;
}
section#interview .main .txt ul li p {
	padding-left: 24px;
	position: relative;
}
section#interview .main .txt ul li p::before {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
section#interview.w01 .main .txt ul li p::before {
	background: #FF7878;
}
section#interview.w02 .main .txt ul li p::before {
	background: #9682B4;
}
section#interview.w03 .main .txt ul li p::before {
	background: #A0AA00;
}
section#interview.w04 .main .txt ul li p::before {
	background: #FF8C3C;
}
section#interview.w05 .main .txt ul li p::before {
	background: #00AA5A;
}
section#interview.w06 .main .txt ul li p::before {
	background: #008CA0;
}
section#interview.w07 .main .txt ul li p::before {
	background: #BE8C4B;
}
section#interview .column {
	width: calc(100% / 2 - 20px);
}
section#interview .column:nth-child(3) {
	margin-top: -380px;
}
section#interview .faq {
	margin-bottom: 40px;
	border-radius: 20px;
	overflow: hidden;
}
section#interview .faq .question {
	display: flex;
	align-items: center;
	height: 85px;
	padding: 0 50px;
}
section#interview.w01 .faq .question {
	background: #FF7878;
}
section#interview.w02 .faq .question {
	background: #9682B4;
}
section#interview.w03 .faq .question {
	background: #A0AA00;
}
section#interview.w04 .faq .question {
	background: #FF8C3C;
}
section#interview.w05 .faq .question {
	background: #00AA5A;
}
section#interview.w06 .faq .question {
	background: #008CA0;
}
section#interview.w07 .faq .question {
	background: #BE8C4B;
}
section#interview .faq .question p {
	padding-left: 60px;
	color: #fff;
	font-weight: 500;
	line-height: 1.6;
	position: relative;
}
section#interview .faq .question p span {
	display: inline-block;
	font-size: 30px;
	letter-spacing: 0.05em;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
section#interview .faq .answer {
	min-height: calc(140px - 60px);
	padding: 30px 50px;
	background: #fff;
}
section#interview .faq .answer p {
	font-size: 14px;
}
section#interview .img01,
section#interview .img02,
section#interview .img03 {
	margin-bottom: 40px;
	border-radius: 20px;
	overflow: hidden;
}
section#interview .img01 {
	height: 340px;
}
section#interview .img02 {
	height: 290px;
}
section#interview .img03 {
	height: 440px;
}
section#interview .img01 img,
section#interview .img02 img,
section#interview .img03 img {
	height: 100%;
	object-fit: cover;
}
section#interview h3 span {
    background: url("../img/bg_interview.jpg") center center / 500px no-repeat;
}

/*==================================================================================
検索結果
==================================================================================*/
section#search_result .search_window {
	width: 100%;
	padding-top: 46px;
	position: relative;
}
/* 変更ボタン */
section#search_result label.search {
	display: block;
	width: calc(100% - 40px - 40px);
	max-width: calc(1200px - 40px);
	padding: 10px 20px;
	border-radius: 5px;
	background: #fff;
	font-size: 16px;
	letter-spacing: 0.05em;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all .3s;
}
section#search_result label.search::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-right: 1px #000 solid;
	border-bottom: 1px #000 solid;
	position: absolute;
	top: 45%;
	right: 15px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s;
}
section#search_result input.trigger {
	display: none;
}
section#search_result input.trigger:checked ~ label.search {
	background: #d6e5d3;
}
section#search_result input.trigger:checked ~ label.search::after {
	top: 60%;
	transform: translateY(-50%) rotate(-135deg);
}
section#search_result input.trigger + form {
	width: 100%;
	height: 0;
	opacity: 0;
	position: relative;
	transform: translateY(-60px);
}
section#search_result input.trigger:checked + form {
	height: auto;
	opacity: 1;
	transform: translateY(0);
	transition: all .3s;
}
/* 検索窓 */
section#search_result nav.search_job .check_group {
	width: calc(100% - 140px);
}
section#search_result nav.search_job .howto:first-child {
	width: calc(100% - 15px);
	padding-left: 0;
	border-left: none;
}
/* 検索結果 --------------------------------------*/
section#search_result .boad {
	width: calc(100% / 2 - 60px - 15px);
	padding: 30px;
	position: relative;
}
section#search_result .boad .ttl {
	padding-left: 10px;
	line-height: 1;
}
section#search_result .boad .ttl.inst01 {
	border-left: 6px #64AA46 solid;
}
section#search_result .boad .ttl.inst02 {
	border-left: 6px #FF7878 solid;
}
section#search_result .boad .ttl.inst03 {
	border-left: 6px #32A0F0 solid;
}
section#search_result .boad .ttl.inst04 {
	border-left: 6px #C89678 solid;
}
section#search_result .boad .thumbnail {
	height: 300px;
	border-radius: 10px;
	overflow: hidden;
}
section#search_result .boad .thumbnail img {
	height: 100%!important;
	object-fit: cover;
}
section#search_result .jobtag {
	max-width: calc(100% - 62px);
	margin: 0 10px 10px 0;
	padding: 10px 30px;
	background: #fff;
	font-size: 18px;
	font-weight: 500;
}
section#search_result .jobtag.w01 {
	border: 1px #FF7878 solid;
	color: #FF7878;
}
section#search_result .jobtag.w02 {
	border: 1px #9682B4 solid;
	color: #9682B4;
}
section#search_result .jobtag.w03 {
	border: 1px #A0AA00 solid;
	color: #A0AA00;
}
section#search_result .jobtag.w04 {
	border: 1px #FF8C3C solid;
	color: #FF8C3C;
}
section#search_result .jobtag.w05 {
	border: 1px #00AA5A solid;
	color: #00AA5A;
}
section#search_result .jobtag.w06 {
	border: 1px #008CA0 solid;
	color: #008CA0;
}
section#search_result .jobtag.w07 {
	border: 1px #BE8C4B solid;
	color: #BE8C4B;
}
section#search_result .jobtag.s01,
section#search_result .jobtag.s02 {
	max-width: calc(100% - 62px);
}
section#search_result .boad h4 {
	padding-bottom: 8px!important;
	border-bottom: 1px #000 solid!important;
}
section#search_result .boad table {
	width: 100%;
	font-size: 16px;
	line-height: 1.8;
}
section#search_result .boad table th {
	width: 90px;
	padding-bottom: 5px;
	font-weight: 500;
	text-align: left;
	vertical-align: top;
}
section#search_result .boad table td {
	padding-bottom: 5px;
	font-weight: 300;
}
section#search_result .boad .btn_fix {
	width: calc(100% - 60px);
	position: absolute;
	left: 30px;
	bottom: 30px;
}
section#search_result .boad a {
	display: block;
	width: calc(100% / 2 - 30px - 5px);
	padding: 15px;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.05em;
	position: relative;
}
section#search_result .boad a::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 1px #fff solid;
	border-right: 1px #fff solid;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s;
}
section#search_result .boad a:nth-child(1) {
	background: #FF6E00;
	color: #fff;
}
section#search_result .boad a:nth-child(2){
	width: calc(100% / 2 - 34px - 5px);
	border: 2px #666 solid;
	color: #666;
}
section#search_result .boad a.btn_detail2 {
	width: calc(100% - 34px - 5px);
	padding: 10px 15px;
	border: 2px #666 solid;
	font-size: 16px;
	font-weight: 300;
	color: #666;
}
section#search_result .boad a:nth-child(2)::after,
section#search_result .boad a.btn_detail2::after {
	border-top: 1px #666 solid;
	border-right: 1px #666 solid;
}
section#search_result .boad a:nth-child(1):hover {
	opacity: 1;
	background: #FF4F00;
}
section#search_result .boad a:hover::after {
	right: 10px;
}


/*==================================================================================
施設紹介
==================================================================================*/
section#inst_info .inst_name {
	padding-bottom: 20px;
	line-height: 1;
	position: relative;
}
section#inst_info .inst_name::after {
	content: "";
	display: block;
	width: 300px;
	height: 5px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
section#inst_info .ttl_font a{
	text-decoration:underline;
}

main[class*="inst01"] section#inst_info .inst_name::after {
	background-image: url("../img/inst_name01.png");
}
main[class*="inst02"] section#inst_info .inst_name::after {
	background-image: url("../img/inst_name02.png");
}
main[class*="inst03"] section#inst_info .inst_name::after {
	background-image: url("../img/inst_name03.png");
}
main[class*="inst04"] section#inst_info .inst_name::after {
	background-image: url("../img/inst_name04.png");
}
section#inst_info .boad {
	padding: 20px;
}
section#inst_info .boad ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
section#inst_info .boad ul li {
	margin-right: 20px;
}
section#inst_info .boad ul li.wrap {
	width: 100%;
	margin-right: 0;
}
section#inst_info .boad ul li p {
	line-height: 2;
	position: relative;
}
section#inst_info .boad ul li p::before {
	content: "\025cf";
	position: relative;
}
main[class*="inst01"] section#inst_info .boad ul li p::before {
	color: #64AA46;
}
main[class*="inst02"] section#inst_info .boad ul li p::before {
	color: #FF7878;
}
main[class*="inst03"] section#inst_info .boad ul li p::before {
	color: #32A0F0;
}
main[class*="inst04"] section#inst_info .boad ul li p::before {
	color: #C89678;
}
section#inst_info .img {
	width: 40%;
	height: 460px;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}
section#inst_info .img img {
	height: 100%;
	object-fit: cover;
}
section#inst_info .txt {
	width: calc(60% - 60px);
}
main.institution h2 {
	padding: 0 0 0 12px!important;
	border-left: 8px #000 solid!important;
	text-align: left;
	letter-spacing: 0.05em;
}
main.institution h2::after {
	display: none;
}
main[class*="inst01"] h2 {
	border-color: #64AA46!important;
}
main[class*="inst02"] h2 {
	border-color: #FF7878!important;
}
main[class*="inst03"] h2 {
	border-color: #32A0F0!important;
}
main[class*="inst04"] h2 {
	border-color: #C89678!important;
}
section#inst_info .txt table {
	width: 100%;
}
section#inst_info .txt table th {
	vertical-align: top;
	text-align: left;
}
section#inst_info .txt table th span {
	display: inline-block;
	width: 140px;
	padding: 5px 0;
	border-radius: 3px;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-align: center;
}
main[class*="inst01"] section#inst_info .txt table th span {
	background: #64AA46!important;
}
main[class*="inst02"] section#inst_info .txt table th span {
	background: #FF7878!important;
}
main[class*="inst03"] section#inst_info .txt table th span {
	background: #32A0F0!important;
}
main[class*="inst04"] section#inst_info .txt table th span {
	background: #C89678!important;
}
section#inst_info .txt table td {
	width: calc(100% - 150px);
	padding: 0 0 20px 10px;
	line-height: 1.6;
}
/* 施設長からのメッセージ ---------------------------------------*/
section#inst_message .txt {
	width: 50%;
}
section#inst_message .img {
	width: calc(50% - 60px);
}
section#inst_message .img img {
	max-width: 420px;
	margin: auto;
}
section#inst_message .col4 {
	width: calc(100% / 4 - 8px);
	border-radius: 5px;
	overflow: hidden;
}
/* 所在地 ----------------------------------------------------*/
section#inst_adress .map {
	width: 50%;
	height: 400px;
	border-radius: 5px 0 0 5px;
	overflow: hidden;
}
section#inst_adress .txt {
	width: calc(50% - 120px);
	padding: 60px;
	background: #fff;
	border-radius: 0 5px 5px 0;
	overflow: hidden;
}
section#inst_adress .txt .icon {
	display: block;
	padding-left: 30px;
	line-height: 1.4;
	position: relative;
}
section#inst_adress .txt .icon::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
section#inst_adress .txt .icon.train::before {
	background-image: url("../img/icon_train.png");
}
section#inst_adress .txt .icon.car::before {
	background-image: url("../img/icon_car.png");
}
section#inst_adress .txt .icon.bus::before {
	background-image: url("../img/icon_bus.png");
}
/* 募集要項 -------------------------------------------------*/
main.institution section#inst_request h2 {
	padding-left: 0!important;
	border-left: none!important;
	text-align: center;
}
section#inst_request .request {
	width: 100%;
	padding-top: calc(170px + 40px);
	position: relative;
}
section#inst_request .request input {
	display: none;
}
section#inst_request .request .boad {
	padding-top: calc(90px + 60px);
	visibility: hidden;
	opacity: 0;
	position: absolute;
}
section#inst_request .request input#trigger01:checked + .boad,
section#inst_request .request input#trigger01_2:checked + .boad,
section#inst_request .request input#trigger02:checked + .boad,
section#inst_request .request input#trigger03:checked + .boad,
section#inst_request .request input#trigger04:checked + .boad,
section#inst_request .request input#trigger05:checked + .boad,
section#inst_request .request input#trigger06:checked + .boad,
section#inst_request .request input#trigger07:checked + .boad {
	visibility: visible;
	opacity: 1;
	position: relative;
	transition: all .3s;
}
section#inst_request .request .boad .req_ttl {
	display: flex;
	align-items: center;
	width: calc(100% - 120px);
	height: 90px;
	padding: 0 60px;
	border-radius: 20px 20px 0 0;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.05em;
	position: absolute;
	top: 0;
	left: 0;
}
section#inst_request .request input#trigger01 + .boad .req_ttl,
section#inst_request .request input#trigger01:checked ~ ul li label.trigger01,
section#inst_request .request input#trigger01_2 + .boad .req_ttl,
section#inst_request .request input#trigger01_2:checked ~ ul li label.trigger01_2 {
	background: #FF7878;
}
section#inst_request .request input#trigger02 + .boad .req_ttl,
section#inst_request .request input#trigger02:checked ~ ul li label.trigger02 {
	background: #A0AA00;
}
section#inst_request .request input#trigger03 + .boad .req_ttl,
section#inst_request .request input#trigger03:checked ~ ul li label.trigger03 {
	background: #FF8C3C;
}
section#inst_request .request input#trigger04 + .boad .req_ttl,
section#inst_request .request input#trigger04:checked ~ ul li label.trigger04 {
	background: #00AA5A;
}
section#inst_request .request input#trigger05 + .boad .req_ttl,
section#inst_request .request input#trigger05:checked ~ ul li label.trigger05 {
	background: #9682B4;
}
section#inst_request .request input#trigger06 + .boad .req_ttl,
section#inst_request .request input#trigger06:checked ~ ul li label.trigger06 {
	background: #008CA0;
}
section#inst_request .request input#trigger07 + .boad .req_ttl,
section#inst_request .request input#trigger07:checked ~ ul li label.trigger07 {
	background: #BE8C4B;
}
section#inst_request .request input#trigger01 + .boad h4,
section#inst_request .request input#trigger01_2 + .boad h4 {
	border-color: #FF7878!important;
}
section#inst_request .request input#trigger02 + .boad h4 {
	border-color: #A0AA00!important;
}
section#inst_request .request input#trigger03 + .boad h4 {
	border-color: #FF8C3C!important;
}
section#inst_request .request input#trigger04 + .boad h4 {
	border-color: #00AA5A!important;
}
section#inst_request .request input#trigger05 + .boad h4 {
	border-color: #9682B4!important;
}
section#inst_request .request input#trigger06 + .boad h4 {
	border-color: #008CA0!important;
}
section#inst_request .request input#trigger07 + .boad h4 {
	border-color: #BE8C4B!important;
}
section#inst_request .request .boad table {
	width: 100%;
	border-top: 1px #ccc solid;
	font-size: 16px;
	line-height: 1.6;
}
section#inst_request .request .boad table tr {
	border-bottom: 1px #ccc solid;
}
section#inst_request .request .boad table th {
	width: calc(100px - 20px);
	padding: 10px;
	font-weight: 400;
	text-align: center;
	vertical-align: top;
}
section#inst_request .request input#trigger01 + .boad table th,
section#inst_request .request input#trigger01_2 + .boad table th {
	background: #fff5f5;
}
section#inst_request .request input#trigger02 + .boad table th {
	background: #f8f9eb;
}
section#inst_request .request input#trigger03 + .boad table th {
	background: #fff7f2;
}
section#inst_request .request input#trigger04 + .boad table th {
	background: #f2fbf7;
}
section#inst_request .request input#trigger05 + .boad table th {
	background: #faf7ff;
}
section#inst_request .request input#trigger06 + .boad table th {
	background: #f6fafb;
}
section#inst_request .request input#trigger07 + .boad table th {
	background: #EFE2D3;
}
section#inst_request .request .boad table td {
	width: calc(100% - 100px - 20px);
	padding: 10px;
}

/* トリガーボタン */
section#inst_request .request ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
section#inst_request .request ul li {
	width: calc(100% / 4 - 10px);
	margin-bottom: 15px;
}
section#inst_request .request ul li label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 70px;
	border-radius: 50px;
	background: #aaa;
	color: #fff;
	line-height: 1.4;
	letter-spacing: 0.05em;
	position: relative;
	cursor: pointer;
}
section#inst_request .request ul li label::after {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-right: 1px #fff solid;
	border-bottom: 1px #fff solid;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(-45deg);
	transition: all .3s;
}
section#inst_request .request input#trigger01:checked ~ ul li:nth-child(1) label::after,
section#inst_request .request input#trigger02:checked ~ ul li:nth-child(2) label::after,
section#inst_request .request input#trigger03:checked ~ ul li:nth-child(3) label::after,
section#inst_request .request input#trigger04:checked ~ ul li:nth-child(4) label::after,
section#inst_request .request input#trigger05:checked ~ ul li:nth-child(5) label::after,
section#inst_request .request input#trigger06:checked ~ ul li:nth-child(6) label::after,
section#inst_request .request input#trigger07:checked ~ ul li:nth-child(7) label::after {
	transform: translateY(-50%) rotate(45deg);
}
section#inst_request .request input#trigger01:checked ~ ul li label.trigger01::after,
section#inst_request .request input#trigger01_2:checked ~ ul li label.trigger01_2::after,
section#inst_request .request input#trigger02:checked ~ ul li label.trigger02::after,
section#inst_request .request input#trigger03:checked ~ ul li label.trigger03::after,
section#inst_request .request input#trigger04:checked ~ ul li label.trigger04::after,
section#inst_request .request input#trigger05:checked ~ ul li label.trigger05::after,
section#inst_request .request input#trigger06:checked ~ ul li label.trigger06::after,
section#inst_request .request input#trigger07:checked ~ ul li label.trigger07::after {
	transform: translateY(-50%) rotate(45deg);
}

/*==================================================================================
お問い合わせ
==================================================================================*/
/* タブ */
section#contact .tab_group {
	padding-left: 60px;
}
section#contact .tab {
	display: inline-block;
	padding: 25px 60px;
	border-radius: 20px 20px 0 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.05em;
	cursor: pointer;
	position: relative;
	z-index: 10;
}
section#contact .tab:nth-child(1) {
	margin-right: 10px;
	background: #FF7878;
}
section#contact .tab:nth-child(2) {
	margin-right: 10px;
	background: #00BE78;
}
section#contact .tab:nth-child(3) {
	background: #ff823c;
}
section#contact .tab::before {
	content: "";
	display: none;
	width: 100%;
	height: 40px;
	position: absolute;
	left: 0;
	bottom: -40px;
	transition: all .3s;
}
section#contact .tab:nth-child(1)::before {
	background: #FF7878;
}
section#contact .tab:nth-child(2)::before {
	background: #00BE78;
}
section#contact .tab:nth-child(3)::before {
	background: #ff823c;
}
section#contact .tab.on::before {
	display: block;
}
section#contact .tab::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-right: 1px #fff solid;
	border-bottom: 1px #fff solid;
	position: absolute;
	left: 50%;
	bottom: -20px;
	transform: translateX(-50%) rotate(45deg);
}
section#contact .tab:nth-child(1):hover,
section#contact .tab:nth-child(1):hover::before {
	opacity: 1;
	background: #FF5050;
}
section#contact .tab:nth-child(2):hover,
section#contact .tab:nth-child(2):hover::before {
	opacity: 1;
	background: #00AB6C;
}
section#contact .tab:nth-child(3):hover,
section#contact .tab:nth-child(3):hover::before {
	opacity: 1;
	background: #FF6108;
}
/* タブ中身 ----------------------------------*/
section#contact .boad {
	width: calc(100% - 240px);
	padding: 120px;
}
section#contact .tab_cont.cont01 .item {
	background: #FF7878;
}
section#contact .tab_cont.cont02 .item {
	background: #00BE78;
}
section#contact .tab_cont input,
section#contact .tab_cont textarea {
	width: calc(100% - 42px);
	padding: 12px 20px;
	border-radius: 0 5px 5px 0;
}
section#contact .tab_cont select {
	padding: 12px 20px;
	border-radius: 0 5px 5px 0;
}
section#contact .tab_cont.cont01 input,
section#contact .tab_cont.cont01 select,
section#contact .tab_cont.cont01 textarea {
	border-color: #FF7878;
}
section#contact .tab_cont.cont02 input,
section#contact .tab_cont.cont02 select,
section#contact .tab_cont.cont02 textarea {
	border-color: #00BE78;
}
/* 個人情報の取扱について */
section#contact .privacy {
	padding: 30px;
	border: 1px #ccc solid;
	border-radius: 5px;
}
section#contact .privacy .btn_check span {
	padding-left: 28px;
	font-size: 18px;
	font-weight: 500;
	position: relative;
}
section#contact .privacy .btn_check span::before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	border: 1px #000 solid;
	border-radius: 3px;
	position: absolute;
	top: 4px;
	left: 0;
}
section#contact .privacy .btn_check span::after {
	content: "";
	display: block;
	width: 6px;
	height: 13px;
	border-right: 3px #fff solid;
	border-bottom: 3px #fff solid;
	position: absolute;
	top: 3px;
	left: 6px;
	opacity: 0;
	transform: rotate(45deg);
}
section#contact .privacy .btn_check input:checked ~ span::after {
	opacity: 1;
}
section#contact .tab_cont.cont01 .privacy .btn_check input:checked ~ span {
	color: #FF7878;
}
section#contact .tab_cont.cont01 .privacy .btn_check span::after {
	border-color: #FF7878;
}
section#contact .tab_cont.cont02 .privacy .btn_check input:checked ~ span {
	color: #00BE78;
}
section#contact .tab_cont.cont02 .privacy .btn_check span::after {
	border-color: #00BE78;
}
/* 送信ボタン */
section#contact .tab_cont input[type="button"] {
	margin-bottom: 20px;
	border-radius: 10px;
	letter-spacing: 0.05em;
}
section#contact .tab_cont.cont01 input[type="button"] {
	background: #FF7878;
}
section#contact .tab_cont.cont01 input[type="button"]:hover {
	opacity: 1;
	background: #FF4B4B;
}
section#contact .tab_cont.cont02 input[type="button"] {
	background: #00BE78;
}
section#contact .tab_cont.cont02 input[type="button"]:hover {
	opacity: 1;
	background: #00A165;
}

/* 電話 */
section#contact .tel {
	display: inline-block;
	margin-left: 30px;
	padding-left: 65px;
	text-align: center;
	position: relative;
}
section#contact .tel span {
	font-size: 60px;
	line-height: 1;
}
section#contact .tel::before {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background: url("../img/icon_tel.png") center center / contain no-repeat;
	position: absolute;
	top: 10px;
	left: 0;
}
section#contact .tel.orange {
	color: #ff823c;
}
section#contact .tel.orange::before {
	background-image: url("../img/icon_tel_or.png");
}

/*==================================================================================
楽しく働く
==================================================================================*/
main.enjoy h2::after {
	background-image: url("../img/enjoy_h2.jpg");
}
.orange {
	color: #ff8c3c;
}
main.enjoy .bg_color {
	background-image: url("../img/bg_enjoy.jpg");
}
/* 福利厚生 ---------------------------------------------*/
section#benefits .benefits_slide {
	width: calc(100% - 120px);
	padding: 0 60px;
}
section#benefits .benefits_slide .inner {
	padding: 0 30px;
	position: relative;
}
section#benefits .benefits_slide .inner::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-right: 2px #ccc dotted;
	position: absolute;
	top: 0;
	right: -1px;
}
section#benefits .benefits_slide .inner .thumbnail {
	width: 100%;
	height: 320px;
	border-radius: 20px;
	overflow: hidden;
}
section#benefits .benefits_slide .sp-arrows {
	width: calc(100% + 120px);
	left: -60px;
}
section#benefits .benefits_slide .sp-arrow {
	width: 15px;
	height: 15px;
	border-top: 1px #666 solid;
	border-left: 1px #666 solid;
	transform: rotate(-45deg);
}
section#benefits .benefits_slide .sp-arrow.sp-next-arrow {
	transform: rotate(135deg);
}
section#benefits .benefits_slide .sp-arrow::before,
section#benefits .benefits_slide .sp-arrow::after {
	display: none;
}
section#benefits .benefits_slide .sp-buttons {
	padding-top: 30px;
}
section#benefits .benefits_slide .sp-button {
    border-color: #ff8c3c;
}
section#benefits .benefits_slide .sp-selected-button {
    background-color: #ff8c3c;
}

/* 企業主導型保育園について,イベントたくさん！ -----------------------------------------*/
section#nursery_school .boad,
section#enjoy_event .boad {
	padding: 30px;
	position: relative;
}
section#enjoy_event .boad .number {
	position: absolute;
	top: 30px;
	right: 30px;
}
section#enjoy_event .boad .number.left {
	right: auto;
	left: 30px;
}
section#enjoy_event .boad .number p {
	line-height: 0.9;
}
section#enjoy_event .boad .number p span {
	font-size: 68px;
}
section#nursery_school .boad .img,
section#enjoy_event .boad .img {
	width: 50%;
	height: 320px;
	border-radius: 20px;
	overflow: hidden;
}
section#nursery_school .boad .img img,
section#enjoy_event .boad .img img {
	height: 100%;
	object-fit: cover;
}
section#nursery_school .boad .txt,
section#enjoy_event .boad .txt {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	width: calc(50% - 40px);
	position: relative;
}
section#nursery_school .boad .txt p,
section#enjoy_event .boad .txt p {
	width: 100%;
	max-width: 380px;
}
section#nursery_school .boad .txt p.font_24,
section#enjoy_event .boad .txt p.font_24 {
	line-height: 1.4;
}
section#nursery_school .boad a,
section#enjoy_baseball .boad a {
	display: block;
	width: calc(100% - 22px);
	max-width: calc(380px - 22px);
	margin: auto;
	padding: 12px 10px;
	border: 1px #ff8c3c solid;
	border-radius: 10px;
	color: #ff8c3c;
	text-align: center;
	position: relative;
}
section#nursery_school .boad a::after,
section#enjoy_baseball .boad a::after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-top: 1px #ff8c3c solid;
	border-right: 1px #ff8c3c solid;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%) rotate(45deg);
}
section#nursery_school .boad a:hover,
section#enjoy_baseball .boad a:hover {
	opacity: 1;
	background: #ff8c3c;
	color: #fff;
}
section#nursery_school .boad a:hover::after,
section#enjoy_baseball .boad a:hover::after {
	border-color: #fff;
}
/* 野球部について -----------------------------------------*/
section#enjoy_baseball .boad {
	padding: 60px;
}
section#enjoy_baseball .boad .img {
	border-radius: 20px;
	overflow: hidden;
}

/*==================================================================================
企業主導型保育園
==================================================================================*/
main.and h2::after {
	background-image: url("../img/and_h2.jpg");
}
.pink {
	color: #ff7378;
}
main.and .bg_color {
	background-image: url("../img/bg_and.jpg");
}
main.and .wave::before {
	display: none;
}
section#and_main .main {
	padding-bottom: 30px;
	position: relative;
}
section#and_main .main::before {
	content: "";
	display: block;
	width: 100px;
	height: 220px;
	background: url("../img/and_main_l.png") center bottom / contain no-repeat;
	position: absolute;
	left: 3%;
	bottom: 0;
	z-index: 2;
}
section#and_main .main::after {
	content: "";
	display: block;
	width: 220px;
	height: 220px;
	background: url("../img/and_main_r.png") center bottom / contain no-repeat;
	position: absolute;
	right: -2%;
	bottom: 0;
	z-index: 2;
}
section#and_main .txt {
	position: relative;
}
section#and_main .txt::before,
section#and_main .txt::after {
	content: "";
	display: block;
	width: 170px;
	height: 250px;
	background: url("../img/and_main_ilst01.png") center center / contain no-repeat;
	position: absolute;
	top: -2%;
	left: 0;
}
section#and_main .txt::after {
	background-image: url("../img/and_main_ilst02.png");
	left: auto;
	right: 0;
}
/* 保育園＆のこだわり ----------------------------------*/
section#and_picky .ttl img {
	width: 120px;
	margin: auto;
}
/* 保育園＆の5つのポイント ------------------------------*/
section#and_points .col3 {
	width: calc(100% / 3 - 30px);
	border-radius: 20px;
	overflow: hidden;
}
section#and_points .col3:first-child {
	display: flex;
	justify-content: center;
	align-items: center;
}
section#and_points .col3:first-child img {
	width: 80%;
}
section#and_points .col3 .txt {
	width: calc(100% - 60px);
	padding: 30px;
	background: #fff;
}
/* 園での過ごし方 ------------------------------*/
section#and_schedule h3 {
	color: #ff7378;
}
section#and_schedule h3::before {
	border-color: #ff7378;
}
section#and_schedule h3 span {
	padding-left: 50px;
	position: relative;
}
section#and_schedule h3 span::before {
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background: url("../img/icon_time.png") center center / contain no-repeat;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
}
section#and_schedule .row {
	flex-wrap: nowrap;
}
section#and_schedule .col3 {
	width: calc(100% / 3);
}
section#and_schedule .col3:first-child {
	min-width: 330px;
	margin-right: 20px;
}
section#and_schedule .sche {
	margin-bottom: 30px;
}
section#and_schedule .sche:nth-child(3),
section#and_schedule .sche:nth-child(6) {
	margin-bottom: 0;
}
section#and_schedule .sche .time {
	width: 80px;
}
section#and_schedule .sche .time p {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	background: url("../img/and_sche01.jpg") center top / contain no-repeat;
	color: #fff;
	font-size: 20px;
	line-height: 1.2;
}
section#and_schedule .sche:nth-child(even) .time p {
	background-image: url("../img/and_sche02.jpg");
}
section#and_schedule .sche .time p:nth-child(2) {
	margin-top: 30px;
	position: relative;
}
section#and_schedule .sche .time p:nth-child(2)::before {
	content: "";
	display: block;
	border: 6px transparent solid;
	border-bottom: none;
	border-top: 10px #ff7378 solid;
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
}
section#and_schedule .sche .time p span {
	display: block;
	width: 100%;
}
section#and_schedule .sche .txt {
	width: calc(100% - 90px);
	line-height: 1.4;
}
/* 概要 --------------------------------*/
section#and_info .frame {
	padding: 20px 40px;
	border: 1px #ff7378 solid;
	border-radius: 30px;
}
section#and_info .frame .ttl_font {
	padding-bottom: 20px;
	border-bottom: 1px #ff7378 solid;
	line-height: 1;
}


section#and_info .frame .row {
	flex-wrap: nowrap;
}
section#and_info .frame ul:nth-child(2) {
	min-width: 480px;
}
section#and_info .frame ul li p:first-letter {
	color: #ff7378;
}
section#and_info span.icon_tel {
	display: block;
}
section#and_info span.icon_tel img {
	width: 60px;
	margin: auto;
}
section#and_info .tel {
	font-size: 60px;
	line-height: 1;
	color: #ff7378;
}
section#and_info a {
	color: #ff7378;
}

/*==================================================================================
寿々実業団野球部
==================================================================================*/
main.baseball {
	overflow: hidden;
}
main.baseball .wave::before {
	display: none;
}
main.baseball section {
	max-width: 1920px;
	margin: auto;
}
main.baseball .ttl_font {
	font-family: anton, sans-serif;
	font-weight: 400;
}
main.baseball .mincho {
	font-family: shippori-antique, sans-serif;
	font-weight: 400;
}
section#bb_main {
	padding: 0!important;
}
.clipping {
	width: 100%;
	min-width: 1920px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.bg_spotlight {
	max-width: 1920px;
	margin: auto;
	padding: 120px 0;
	background: url("../img/bb_bg.jpg") left top -1080px / contain repeat-y;
	position: relative;
}
.font_60 {
	font-size: 60px;
	line-height: 1;
}
section#bb_about,
section#bb_concept {
	padding: 0!important;
	position: relative;
}
section#bb_concept {
	margin-bottom: 120px;
}
section#bb_about .container,
section#bb_concept .container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
section#bb_about .col2,
section#bb_concept .col2 {
	width: calc(100% / 2 - 60px);
}
section#bb_about .img,
section#bb_concept .img {
	width: 50%;
	height: 540px;
	overflow: hidden;
}
section#bb_about .img {
	margin: 0 0 0 auto;
}
section#bb_about .img img,
section#bb_concept .img img {
	height: 100%;
	object-fit: cover;
}
/* 監督からのメッセージ ----------------------------------------*/
section#bb_message {
	margin-bottom: 120px;
	background: url("../img/bb_message_bg.jpg") center top / cover no-repeat;
	color: #fff;
	position: relative;
}
section#bb_message .clipping::after {
	content: "";
	display: block;
	width: 580px;
	height: 1040px;
	background: url("../img/bb_message.png") center top / contain no-repeat;
	position: absolute;
	top: -65%;
	right: 10%;
}
section#bb_message.animated .clipping::after {
	animation: message_p01 1s;
}
@keyframes message_p01 {
	0% {opacity: 0; transform: translateX(10%);}
	50% {opacity: 0; transform: translateX(10%);}
	100% {opacity: 1; transform: translateX(0);}
}

/* SNS ----------------------------------------*/
section#bb_sns {
	padding: 0!important;
    margin-bottom: 60px;
}
section#bb_sns a {
	display: flex;
    align-items: center;
    width: 240px;
    height: 50px;
    box-sizing: border-box;
    padding: 0 30px;
    border: 2px #000 solid;
    border-radius: 50px;
    background: #fff;
}
section#bb_sns a img {
	width: 25px;
    margin-right: 20px;
}

/* お問い合わせ ----------------------------------------*/
section#bb_contact {
	padding: 60px 0 100px!important;
	background: url("../img/bb_contact_bg.jpg") center top / cover no-repeat;
	position: relative;
}
section#bb_contact .clipping {
	min-width: 1450px;
}
section#bb_contact .clipping::before {
	content: "";
	display: block;
	width: 460px;
	height: 600px;
	background: url("../img/bb_contact02.png") center top / contain no-repeat;
	position: absolute;
	left: 15%;
	bottom: -10px;
}
section#bb_contact .clipping .name {
	padding: 10px 20px;
	background: rgba(255,255,255,0.7);
	border: 2px #000 solid;
	position: absolute;
    left: 18%;
	bottom: 24%;
    z-index: 2;
}
section#bb_contact .clipping .name p {
	line-height: 1.4;
}
section#bb_contact .contact {
	padding: 30px;
	background: rgba(0,0,0,0.7);
	color: #fff;
	position: relative;
	z-index: 10;
}
section#bb_contact .contact a {
	color: #fff;
}

/*==================================================================================
求人情報
==================================================================================*/
section#search_result.request .inst_name {
	padding-bottom: 20px;
	line-height: 1;
	position: relative;
}
section#search_result.request .inst_name::after {
	content: "";
	display: block;
	width: 300px;
	height: 5px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
}
section#search_result.request .ttl_font a{
	text-decoration:underline;
}
main[class^="01"] section#search_result.request .inst_name::after {
	background-image: url("../img/inst_name01.png");
}
main[class^="02"] section#search_result.request .inst_name::after {
	background-image: url("../img/inst_name02.png");
}
main[class^="03"] section#search_result.request .inst_name::after {
	background-image: url("../img/inst_name03.png");
}
main[class^="04"] section#search_result.request .inst_name::after {
	background-image: url("../img/inst_name04.png");
}

section#search_result.request .boad {
	width: calc(100% - 15px);
}
section#search_result.request .boad .thumbnail {
	height: 360px;
}

/*==================================================================================
フッター
==================================================================================*/
footer {
	padding: 40px 0 0!important;
}
footer.bg {
	padding: 80px 0 0!important;
	background: url("../img/foot_bg.jpg") center top / cover no-repeat;
}
footer .foot_logo {
	width: 220px;
}
footer nav.foot_nav {
	display: flex;
	flex-wrap: wrap;
	width: 400px;
}
footer nav.foot_nav .ttl {
	width: 100%;
}
footer nav.foot_nav ul {
	width: calc(100% / 2 - 41px);
	padding: 0 10px;
	border-left: 1px #ccc solid;
	box-sizing: unset;
}
footer nav.foot_nav ul:last-child {
	width: calc(100% / 2 - 42px);
	border-right: 1px #ccc solid;
}
footer nav.foot_nav ul li {
	margin-bottom: 15px;
	padding-left: 20px;
	position: relative;
}
footer nav.foot_nav ul li::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: #238966;
	position: absolute;
	top: 4px;
	left: 0;
}
footer nav.foot_nav ul li:last-child {
	margin-bottom: 0;
}
footer nav.foot_nav ul li a {
	display: inline-block;
	font-size: 14px;
}
footer nav.foot_nav ul li a.disa {
	pointer-events: none;
}
footer nav.foot_nav ul li ul {
	width: 100%;
	margin-top: 15px;
	padding: 0;
	border: none;
}
footer nav.foot_nav ul li ul:last-child {
	width: 100%;
	border-right: none;
}
footer nav.foot_nav ul li ul li {
	margin-bottom: 15px;
	padding-left: 0;
	position: relative;
}
footer nav.foot_nav ul li ul li::before {
	display: none;
}
footer .copy {
	padding: 15px 0;
	background: #bedc4b;
	font-size: 12px;
	text-align: center;
	line-height: 1;
}
/* マイナビバナー */
footer .bana_mynavi {
	display: block;
	width: 195px;
}

/* ページトップへ戻るボタン */
.btn_pagetop {
	display: block;
	width: calc(60px - 2px);
	height: calc(60px - 2px);
	border: 1px #009b7d solid;
	border-radius: 50%;
	background: #fff;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 100;
}
.btn_pagetop span {
	display: block;
	width: 12px;
	height: 12px;
	border-top: 1px #009b7d solid;
	border-right: 1px #009b7d solid;
	transform: translateX(-50%) rotate(-45deg);
	position: absolute;
	top: 45%;
	left: 50%;
}



.tb {display: none;}
.pc {display: inline;}
.sp {display: none;}



@media screen and (max-width : 1600px) {
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header {
		width: calc(100% - 40px);
		padding: 30px 20px!important;
	}
	header .logo {
		width: 160px;
	}
	header nav.gnav ul li {
		padding: 3px 20px;
	}
	header nav.gnav ul li a {
		font-size: 14px;
	}
	header .btn_entry {
		width: 160px;
		font-size: 16px;
	}
	header .btn_entry::before {
		width: 50px;
		height: 50px;
		top: -5px;
		left: -45px;
	}
	header .btn_entry::after {
		width: 8px;
		height: 8px;
		right: 15px;
	}
	header .btn_entry:hover::after {
		right: 12px;
	}
}



@media screen and (max-width : 1200px) {
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header {
		width: calc(100% - 40px);
		padding: 20px!important;
	}
	header .logo {
		width: 120px;
	}
	header nav.gnav ul li {
		padding: 3px 20px;
	}
	header nav.gnav ul li a {
		font-size: 12px;
		letter-spacing: 0;
	}
	header .btn_entry {
		width: 130px;
	    margin-left: 30px;
		padding: 12px 0;
		font-size: 14px;
	}
	header .btn_entry::before {
		width: 40px;
		height: 40px;
		top: -2px;
		left: -35px;
	}
	header .btn_entry::after {
		width: 6px;
		height: 6px;
		right: 10px;
	}
	header .btn_entry span {
		padding-right: 10px;
	}
	header .btn_entry:hover::after {
		right: 8px;
	}

	/*==================================================================================
	共通
	==================================================================================*/
	/* ヘッダー旗 --------------*/
	.head_flag::before {
	    min-width: 1200px;
		background-size: 40%;
		top: 0;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	section#main {
	    height: auto;
	    padding: 40px 0!important;
	}
	section#main::after {
		height: 320px;
		background: url("../img/main_bg_green.jpg") center top 100px / 460px repeat-x, url("../img/main_bg_green.png") center top / 680px repeat-x;
	}
	section#main.head_flag::before {
		top: -10%;
	}
	/* 空 */
	section#main .bg_sky {
		width: 100%;
		min-width: 1200px;
		top: 190px;
	}
	/* 丘、木 */
	section#main .bg_tree {
		width: 100%;
		min-width: 1200px;
		top: 140px;
	}
	/* 雲、鳥 */
	section#main .bg_side {
		width: 100%;
		min-width: 1200px;
	}
	section#main .cloud_l {
		bottom: auto;
    	top: 30%;
    	left: -2%;
	}
	section#main .bird_l {
	    left: 13%;
	}
	section#main .cloud_r {
		top: 20%;
	    right: -2%;
	}
	section#main .bird_r {
	    top: 11%;
	    right: 12%;
	}
	/* 人 -----------------------------*/
	section#main .person {
		max-width: 680px;
		bottom: auto;
		top: 510px;
	}
	section#main .person .p01 {
		width: 80px;
	}
	section#main .person .p02 {
		width: 80px;
		left: 15%;
		bottom: 50px;
	}
	section#main .person .p03 {
		width: 80px;
		right: 15%;
		bottom: 50px;
	}
	section#main .person .p04 {
		width: 60px;
        bottom: -60px;
        right: 0;
	}
	/* 吹き出し */
	section#main .person .comment {
		width: 100px;
		height: 100px;
		top: -120px;
	}
	section#main .person .comment p {
		font-size: 10px;
	}
	section#main .person .comment span {
		font-size: 10px;
	}
	/* ロゴ */
	section#main .logo img {
		width: 240px;
	}

	/* 求人を探す -----------------------*/
	section#main .btm {
   		width: 100%;
   		position: relative;
   		bottom: 0;
   		margin-top: 320px;
	}
	nav.search_job {
		width: calc(100% - 40px - 40px);
	}
	nav.search_job .vertical {
		font-size: 20px;
	}
	nav.search_job .check_group {
		width: calc(100% - 50px - 110px);
	}
	nav.search_job .howto .ttl {
		padding: 5px 10px;
		font-size: 12px;
	}
	nav.search_job .howto ul.col2 {
		width: calc(100% / 2 - 7px);
	}
	nav.search_job .howto ul li {
		margin-bottom: 5px;
	}
	nav.search_job .howto ul li ul {
		padding-left: 15px;
	}
	/* チェックボックス */
	nav.search_job .btn_check p {
		padding-left: 15px;
		font-size: 12px;
		font-weight: 400;
	}
	nav.search_job .btn_check p::before {
		width: 10px;
		height: 10px;
		top: 1px;
	}
	nav.search_job .btn_check p::after {
		width: 4px;
		top: 0;
	}
	/* 検索ボタン */
	nav.search_job .btn_group {
		width: 110px;
	}
	nav.search_job .btn_search {
		padding: 5px;
		font-size: 12px;
	}
	nav.search_job .btn_clear {
		padding: 5px;
		font-size: 10px;
	}
	nav.search_job .btn_all {
		font-size: 10px;
	}
	nav.search_job .btn_all::before {
		bottom: 0;
	}
	nav.search_job .btn_all::after {
		bottom: 4px;
	}

	/* About Juju ---------------------------------------------------------------------*/
	section#top_about {
		background-position: left top 100px, left 10px top 800px, left 10px bottom 600px, left bottom, right top 200px, right 10px top 610px, right 10px bottom 740px, right bottom 380px, right 10px bottom -50px;
		background-size: 140px;
	}

	/*==================================================================================
	検索結果
	==================================================================================*/
	/* 検索窓 */
	section#search_result nav.search_job .check_group {
		width: calc(100% - 110px);
	}

	/*==================================================================================
	お問い合わせ
	==================================================================================*/
	/* タブ */
	section#contact .tab {
		padding: 15px 30px;
		border-radius: 10px 10px 0 0;
		font-size: 16px;
	}
	section#contact .tab:nth-child(1) {
		margin-right: 5px;
	}
	section#contact .tab:nth-child(2) {
		margin-right: 5px;
	}
}


@media screen and (max-width : 960px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p {font-size: 14px;}
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header {
		padding: 15px 20px!important;
	}
	header nav.gnav {
		display: none;
	}
	header .btn_entry {
	    margin-left: 0;
		margin-right: 50px;
		padding: 10px 0;
	}
	header .btn_entry::before {
	    top: -4px;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	section {
		padding: 60px 0!important;
	}
	.container {
		max-width: 680px;
	}
	.max680 {
		max-width: 460px;
	}
	.col2 {
		width: 100%;
		max-width: 460px;
		margin: auto;
	}
	.mb_10 {
		margin-bottom: 8px;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
	.mb_30 {
		margin-bottom: 20px;
	}
	.mb_60 {
		margin-bottom: 40px;
	}
	.mb_120 {
		margin-bottom: 60px;
	}

	/* フォント */
	h1 {
		font-size: 40px;
	}
	h1 span {
		margin-bottom: 10px;
	}
	h1 span img {
		width: 120px;
	}
	h2 {
		padding-bottom: 20px!important;
		font-size: 24px;
	}
	h2::after {
		width: 80px;
		height: 5px;
	}
	h3 {
		font-size: 20px;
	}
	h4 {
		padding-left: 6px!important;
		border-left: 6px;
		font-size: 14px;
	}
	.font_14 {
		font-size: 12px;
	}
	.font_18 {
		font-size: 16px;
	}
	.font_24 {
		font-size: 20px;
	}
	.font_30 {
		font-size: 24px;
	}
	.font_46 {
		font-size: 34px;
	}
	
	/* ヘッダー旗 --------------*/
	.head_flag::before {
	    min-width: 0;
		height: 200px;
	    background-position: left -10% top, right -10% top;
		top: -40px;
	}

	/* 波 ---------------------*/
	.bg_color {
		padding: 30px 0;
	}
	.wave::before,
	.wave::after {
		height: 160px;
	}
	.wave::before {
		background-position: center bottom;
		top: -140px;
	}
	.wave::after {
		background-position: center top;
		bottom: -140px;
	}

	/* ホワイトボード -----------*/
	.boad {
		padding: 30px;
		border-radius: 10px;
	}

	/* チェックボックス ----------*/
	.btn_check p {
		padding-left: 15px;
		font-size: 12px;
	}
	.btn_check p::before {
		width: 10px;
		height: 10px;
		top: 1px;
	}
	.btn_check p::after {
		width: 4px;
		top: 0;
	}

	/*==================================================================================
	INDEX
	==================================================================================*/
	section#main {
	    padding: 20px 0!important;
	}
	section#main::after {
		height: 60%;
	}
	section#main.head_flag::before {
		top: -5%;
	}
	section#main p {
		font-size: 12px;
	}
	/* 空 */
	section#main .bg_sky {
		width: 960px;
		top: 140px;
	}
	/* 丘、木 */
	section#main .bg_tree {
		width: 740px;
		min-width: 0;
		top: 110px;
	}
	/* 雲、鳥 */
	section#main .bg_side {
		width: 740px;
		min-width: 0;
	}
	section#main .cloud_l {
		top: 22%;
		left: -8%;
	}
	section#main .bird_l {
		top: 12%;
		left: 8%;
	}
	section#main .cloud_r {
		top: 18%;
		right: -8%;
	}
	section#main .bird_r {
		top: 12%;
		right: 6%;
	}
	/* 人 -----------------------------*/
	section#main .person {
		max-width: 500px;
		top: 360px;
	}
	section#main .person .p01 {
		width: 60px;
	}
	section#main .person .p02 {
		width: 60px;
		left: 15%;
		bottom: 30px;
	}
	section#main .person .p03 {
		width: 60px;
		right: 15%;
		bottom: 30px;
	}
	/* 吹き出し */
	section#main .person .comment {
	    top: -115px;
		box-shadow: 0 0 4px rgba(0,0,0,0.2);
	}
	/* ロゴ */
	section#main .logo img {
		width: 200px;
	}

	/* 求人を探す -----------------------*/
	section#main .btm {
		margin-top: 240px;
	}
	nav.search_job {
		display: block;
		width: calc(100% - 20px - 20px);
		max-width: calc(680px - 20px - 20px);
		padding: 15px 10px 10px;
		border-radius: 10px;
	}
	nav.search_job .vertical {
		padding-bottom: 15px;
		font-size: 14px;
		text-align: left;
		-webkit-writing-mode: horizontal-tb;
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
	}
	nav.search_job .check_group {
		flex-wrap: wrap;
		width: 100%;
		border: 1px #ccc solid;
		border-radius: 5px;
		overflow: hidden;
	}
	nav.search_job .howto {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		padding: 0;
		border-left: none;
		border-bottom: 1px #ccc solid;
	}
	nav.search_job .howto:last-child {
		border-bottom: none;
	}
	nav.search_job .howto .ttl {
		display: flex;
		justify-content: center;
		align-items: center;
	    width: calc(68px - 20px);
		margin-bottom: 0!important;
		border-radius: 0;
	}
	nav.search_job .howto ul {
		display: flex;
		flex-wrap: wrap;
		width: calc(100% - 20px - 68px);
	    padding: 5px 10px;
	}
	nav.search_job .howto ul li {
		margin-right: 10px;
	}
	nav.search_job .howto ul li .pc_only {
		display: none;
	}
	nav.search_job .howto .row {
		width: calc(100% - 20px - 68px);
	    padding: 5px 10px;
	}
	nav.search_job .howto .row ul,
	nav.search_job .howto .row ul.col2 {
		width: 100%;
		max-width: 100%;
		padding: 0;
	}
	nav.search_job .howto .row ul li.sp_flex {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	nav.search_job .howto .row ul li.sp_flex ul {
		width: auto;
		padding: 2px 0 2px 5px;
		border-radius: 3px;
		background: #efefef;
	}
	nav.search_job .btn_check.mb_10 {
	    margin-bottom: 5px;
		margin-right: 10px;
	}
	/* 検索ボタン */
	nav.search_job .btn_group {
		align-items: center;
		width: calc(100% - 20px);
		margin: 10px 0 0;
		padding: 10px;
		background: #fff9eb;
	}
	nav.search_job .btn_search {
		width: auto;
		margin-left: 10px;
		padding: 8px 10px;
		font-size: 14px;
		box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
	}
	nav.search_job .btn_clear {
		width: 110px;
		padding: 8px 0;
		font-weight: 400;
		order: -1;
	}
	nav.search_job .sp_wrap {
		width: 100%;
		margin-bottom: 5px;
	}
	nav.search_job .btn_all {
		font-size: 12px;
	}

	/* News ------------------------------------------------------------------------*/
	section#top_news {
		padding: 40px 0 60px!important;
		background-image: url("../img/top_news_bg_sp.jpg");
	}
	section#top_news .container::before,
	section#top_news .container::after {
		width: 120px;
		top: -3%;
	}
	section#top_news .container::before {
		left: -60px;
	}
	section#top_news .container::after {
		right: -60px;
	}
	section#top_news .h1 {
		font-size: 30px;
	}
	.article {
		width: calc(100% / 2 - 10px - 20px);
		padding: 10px;
		border-radius: 15px;
	}
	div.article {
		width: calc(100% / 2 - 10px);
		padding: 0;
	}
	.article .thumbnail {
		border-radius: 15px;
	}

	/* About Juju ---------------------------------------------------------------------*/
	section#top_about {
		padding: 80px 40px 160px!important;
		background-position: left top 100px, left 10px top 1140px, left 10px bottom 920px, left bottom, right top 200px, right 10px top 650px, right 10px bottom 960px, right bottom 380px, right 10px bottom -50px;
	}
	section#top_about .container {
		width: 100%;
		padding: 0;
	}
	section#top_about .container::before,
	section#top_about .container::after {
		width: 20%;
		min-width: 110px;
	}
	section#top_about .container::before {
		top: -120px;
	}
	section#top_about .container::after {
		top: -80px;
	}
	section#top_about .about {
		flex-wrap: wrap;
		width: 100%;
		max-width: 380px;
		margin: 0 auto 60px;
		padding: 0;
		background: none;
	}
	section#top_about .about.right {
		margin: 0 auto 60px;
		padding: 0;
	}
	section#top_about .about:nth-child(1),
	section#top_about .about:nth-child(2),
	section#top_about .about:nth-child(3),
	section#top_about .about:nth-child(4),
	section#top_about .about:nth-child(5) {
		background: none;
	}
	section#top_about .about .number,
	section#top_about .about.right .number {
		top: 200px;
		left: -10px;
		right: auto;
		z-index: 3;
	}
	section#top_about .about .number span {
		font-size: 54px;
	}
	section#top_about .about .img,
	section#top_about .about.right .img {
		width: 80%;
		min-width: 0;
		margin: 0;
		position: relative;
		top: 0;
		left: calc(20% + 20px);
		z-index: 2;
	}
	section#top_about .about .txt.order2  {
		order: 2;
	}
	section#top_about .about .txt,
	section#top_about .about.right .txt {
		width: calc(100% - 60px);
		margin: -40px auto 0;
		padding: 30px 0 30px 60px;
		position: relative;
	}
	section#top_about .about .txt::before {
		content: "";
		display: block;
		width: 440px;
		height: 300px;
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	section#top_about .about:nth-child(1) .txt::before {
		background-image: url("../img/top_about01_bg_sp.png");
	}
	section#top_about .about:nth-child(2) .txt::before {
		background-image: url("../img/top_about02_bg_sp.png");
	}
	section#top_about .about:nth-child(3) .txt::before {
		background-image: url("../img/top_about03_bg_sp.png");
	}
	section#top_about .about:nth-child(4) .txt::before {
		background-image: url("../img/top_about04_bg_sp.png");
	}
	section#top_about .about:nth-child(5) .txt::before {
		background-image: url("../img/top_about05_bg_sp.png");
	}
	section#top_about .about .txt p,
	section#top_about .about .txt ul {
		position: relative;
	}
	section#top_about .about .btn_detail {
	    width: calc(180px - 20px);
	    padding: 10px;
	    font-size: 14px;
	}

	/*==================================================================================
	ニュース
	==================================================================================*/
	section#news_list .side {
		width: 100px;
	}
	section#news_list .side ul li .category {
		width: calc(100% - 12px);
		padding: 6px;
		font-size: 12px;
	}
	section#news_list .side ul.archive li {
		margin-bottom: 15px;
	}
	section#news_list .side ul.archive li a {
		font-size: 14px;
	}
	section#news_list .news_list {
		width: calc(100% - 160px);
	}
	section#news_list .article {
		width: calc(100% / 2 - 20px - 10px);
		padding: 10px;
	}
	section#news_list .article .thumbnail {
		height: 160px;
	}

	/*==================================================================================
	Jujuグループ
	==================================================================================*/
	/* 代表挨拶 ----------------------------------------------------*/
	section#about_agree .agree {
		padding: 60px 0;
		background: #F3F0EE;
	}
	section#about_agree .agree .img {
		display: block;
		width: 60%;
		max-width: 260px;
		margin: 0 auto 30px;
	}
	section#about_agree .agree .txt {
		width: 100%;
		min-width: 0;
		margin: 0;
	}
	section#about_agree .agree .txt .name p {
	    letter-spacing: 0;
	}
	/* 寿々寿々グループ沿革 -------------------------------------------*/
	section#about_history table {
		font-size: 14px;
	}
	section#about_history table th {
		width: 60px;
	}
	section#about_history table th:nth-child(2) {
		width: calc(46px - 15px);
		padding: 0 15px 0 0;
	}
	section#about_history table td {
		padding: 0 0 10px 15px;
	}
	/* グループ各社紹介 ----------------------------------------------*/
	section#about_group .row {
		justify-content: center;
	}
	section#about_group .boad {
		width: calc(100% / 2 - 20px - 30px);
		min-width: calc(300px - 30px);
		margin: 0 10px 20px;
		padding: 0 15px 56px;
	}
	section#about_group .boad .ttl {
		height: 80px;
		font-size: 18px;
	}
	section#about_group .btn_detail {
		width: calc(100% - 30px 20px);
		font-size: 14px;
		left: 15px;
	}

	/*==================================================================================
	グループ各社紹介
	==================================================================================*/
	/* 代表挨拶 ----------------------------------------*/
	section#group_agree .img {
		display: block;
		width: 60%;
		max-width: 260px;
		margin: 0 auto 30px;
	}
	section#group_agree .txt {
		width: 100%;
	}
	/* 事業内容 -----------------------------------------*/
	section#group_service .boad {
		padding: 30px 20px;
		border-radius: 200px;
	}
	/* 会社概要、沿革 ------------------------------------*/
	section#group_info table {
		font-size: 14px;
	}
	section#group_info table th {
		padding: 0 15px 10px 0;
	}
	section#group_info table td {
		padding: 0 0 10px 15px;
	}
	section#group_info table.history th {
		width: 60px;
	}
	section#group_info table.history th:nth-child(2) {
		width: calc(46px - 15px);
		padding: 0 15px 0 0;
	}

	/*==================================================================================
	数字で見るJuju
	==================================================================================*/
	section#data .data_img {
		width: calc(100% / 4 - 10px);
	}
	section#data .data_img2 {
		width: calc(100% / 2 - 5px);
	}

	/*==================================================================================
	お仕事について
	==================================================================================*/
	section#work .container {
		max-width: 1200px;
	}
	section#work label.works {
		width: 240px;
		margin: 0 8px 16px;
		border-radius: 10px;
	}
	section#work label.works .img {
		height: 140px;
	}
	section#work label.works .txt {
		padding: 10px;
	}
	section#work label.works .txt::after {
		width: 6px;
		height: 6px;
		right: 15px;
	}
	/* ポップアップ -----------------------------------*/
	section#work .popup .boad {
		width: calc(100% - 40px - 20px);
		max-width: calc(540px - 40px);
		padding: 20px;
		top: 100px;
		left: 50%;
		transform: translateX(-50%);
	}
	section#work .popup .boad .scroll {
		max-height: 460px;
	}
	section#work .popup .boad .scroll::-webkit-scrollbar {
		width: 5px;
	}
	section#work .popup .boad label.close {
		width: 30px;
		height: 30px;
		top: -40px;
	}
	section#work .popup .boad .img {
		width: 160px;
		height: auto;
	}
	section#work .popup .boad .txt {
		width: calc(100% - 160px - 20px);
	}

	/* 入社後のフォローについて --------------------------------*/
	section#work_follow .follow {
		width: calc(100% / 3 - 41px);
		padding: 0 20px;
	}
	section#work_follow .follow:last-child {
		width: calc(100% / 3 - 40px);
	}

	/*==================================================================================
	社員インタビュー
	==================================================================================*/
	section#interview .boad {
		padding: 20px;
	}
	section#interview .boad .row {
		flex-wrap: wrap;
	}
	section#interview .boad .btn_check p {
		padding-left: 18px;
		font-size: 12px;
	}
	section#interview .boad .btn_check p::before {
		width: 10px;
		height: 10px;
		top: 1px;
	}
	section#interview .boad .btn_check p::after {
		left: 4px;
	}
	section#interview .boad .ttl {
		margin-bottom: 10px;
		padding: 5px 8px;
		font-size: 14px;
		border-radius: 3px;
	}
	section#interview .boad ul li {
		margin-bottom: 5px;
	}
	/* 職種で絞り込み */
	section#interview .works {
		width: calc(100% - 140px);
	}
	section#interview .works ul li {
		width: calc(100% / 2 - 5px);
		min-width: 140px;
	}
	/* 働き方で絞り込み */
	section#interview .status {
		width: 130px;
		margin: 0;
	}
	/* ボタン */
	section#interview .btn_group {
		justify-content: flex-end;
		align-items: center;
		width: calc(100% - 20px);
	    margin: 10px 0 0;
	    padding: 10px;
	    background: #fff9eb;
	}
	section#interview .btn_group .btn_search {
		width: auto;
		height: auto;
		margin-left: 10px;
		padding: 10px 20px;
		border-radius: 3px;
		font-size: 14px;
		font-weight: 700;
		box-shadow: 2px 2px 4px rgb(0 0 0 / 20%);
	}
	section#interview .btn_group .btn_clear {
		width: auto;
		padding: 3px 10px;
		border-radius: 3px;
		font-size: 12px;
		order: -1;
	}

	/* インタビューリンク -------------------------*/
	.member_voice {
		display: block;
		width: calc(100% / 3 - 10px);
	}
	.member_voice .icon_p img {
		max-width: 180px!important;
	}
	.jobtag {
		max-width: 180px;
		margin: 0 auto 5px;
		padding: 5px 0;
		border-radius: 3px;
		font-size: 12px;
	}
	.jobtag.s01,
	.jobtag.s02 {
		max-width: calc(180px - 2px);
	}
	.member_voice p:last-child {
		font-size: 12px;
	}

	/* インタビュー詳細 ----------------------------------------------------------------*/
	section#interview .main {
		border-radius: 10px;
	}
	section#interview .main .img {
		height: auto;
		border-radius: 10px;
		overflow: hidden;
	}
	section#interview .main .txt {
		width: calc(100% - 40px - 40px);
		max-width: calc(460px - 40px);
		min-width: 0;
		padding: 20px;
		border-radius: 10px;
		position: relative;
		top: -40px;
		left: 50%;
		margin: 0;
		transform: translateX(-50%);
	}
	section#interview .main .txt .jobtag {
		max-width: 100%;
	}
	section#interview .main .txt ul li p {
		font-size: 12px;
		padding-left: 15px;
	}
	section#interview .main .txt ul li p::before {
		width: 10px;
		height: 10px;
	}
	section#interview .column {
		width: calc(100% / 2 - 10px);
	}
	section#interview .column:nth-child(3) {
		margin-top: -220px;
	}
	section#interview .faq {
		margin-bottom: 20px;
		border-radius: 10px;
	}
	section#interview .faq .question {
		height: 65px;
		padding: 0 20px;
	}
	section#interview .faq .question p {
		padding-left: 45px;
		line-height: 1.4;
	}
	section#interview .faq .question p span {
		font-size: 24px;
	}
	section#interview .faq .answer {
		min-height: calc(120px - 40px);
		padding: 15px 20px;
	}
	section#interview .faq .answer p {
		font-size: 12px;
	}
	section#interview .img01,
	section#interview .img02,
	section#interview .img03 {
		margin-bottom: 20px;
		border-radius: 10px;
	}
	section#interview .img01 {
		height: 200px;
	}
	section#interview .img02 {
		height: 160px;
	}
	section#interview .img03 {
		height: 240px;
	}

	section#interview .team_voice {
		max-width: 460px;
		margin: auto;
	}
	section#interview .team_voice .member_voice {
    	width: calc(100% / 2 - 5px);
	}

	/*==================================================================================
	検索結果
	==================================================================================*/
	section#search_result .search_window {
		padding-top: 44px;
	}
	/* 変更ボタン */
	section#search_result label.search {
		width: calc(100% - 40px - 20px);
		max-width: calc(680px - 40px);
		font-size: 14px;
	}
	section#search_result label.search::after {
		width: 6px;
		height: 6px;
	}
	/* 検索窓 */
	section#search_result nav.search_job .check_group {
		width: 100%;
	}
	section#search_result nav.search_job .howto:first-child {
		width: 100%;
	}
	/* 検索結果 --------------------------------------*/
	section#search_result .boad {
		width: calc(100% / 2 - 40px - 10px);
		padding: 20px;
		padding-bottom: 80px;
	}
	section#search_result .boad .ttl {
		line-height: 1.2;
	}
	section#search_result .boad .ttl.font_24 {
		font-size: 18px;
	}
	section#search_result .boad .thumbnail {
		height: 180px;
		border-radius: 5px;
	}
	section#search_result .jobtag {
		max-width: calc(100% - 42px);
		margin: 0 8px 8px 0;
		padding: 5px 20px;
		font-size: 14px;
	}
	section#search_result .jobtag.s01,
	section#search_result .jobtag.s02 {
		max-width: calc(100% - 42px);
	}
	section#search_result .boad h4 {
		padding-bottom: 5px!important;
	}
	section#search_result .boad table {
		font-size: 12px;
		line-height: 1.6;
	}
	section#search_result .boad table th {
		width: 70px;
	}
	section#search_result .boad .btn_fix {
		width: calc(100% - 40px);
		left: 20px;
		bottom: 20px;
	}
	section#search_result .boad a {
		display: block;
		width: calc(100% - 20px );
		padding: 15px 10px;
		font-size: 14px;
	}
	section#search_result .boad a::after {
		width: 8px;
		height: 8px;
	}
	section#search_result .boad a:nth-child(1) {
		margin-bottom: 8px;
	}
	section#search_result .boad a:nth-child(2) {
		width: calc(100% - 22px);
		border-width: 1px;
	}
	section#search_result .boad a.btn_detail2 {
		width: calc(100% - 22px);
		padding: 10px;
		border-width: 1px;
		font-size: 14px;
	}

	/*==================================================================================
	施設紹介
	==================================================================================*/
	section#inst_info .inst_name {
		padding-bottom: 15px;
	}
	section#inst_info .inst_name::after {
		width: 240px;
	}
	section#inst_info .boad {
		padding: 10px 20px;
	}
	section#inst_info .boad ul {
		justify-content: flex-start;
	}
	section#inst_info .boad ul li {
		margin-right: 15px;
	}
	section#inst_info .boad ul li p {
		line-height: 1.6;
	}
	section#inst_info .img {
		width: 100%;
		height: 340px;
		margin: 0 auto 30px;
	}
	section#inst_info .txt {
		width: 100%;
	}
	main.institution h2 {
		padding: 0 0 0 10px!important;
		border-left: 6px #000 solid!important;
	}
	section#inst_info .txt table th span {
		width: 120px;
		font-size: 14px;
	}
	section#inst_info .txt table td {
		width: calc(100% - 130px);
		padding: 0 0 10px 10px;
		font-size: 14px;
	}
	/* 所在地 ----------------------------------------------------*/
	section#inst_adress .txt {
		width: calc(50% - 60px);
		padding: 30px;
	}
	/* 施設長からのメッセージ ---------------------------------------*/
	section#inst_message .txt {
		width: 100%;
		order: 2;
	}
	section#inst_message .img {
		width: 100%;
		margin-bottom: 20px;
	}
	section#inst_message .img img {
		max-width: 260px;
	}
	section#inst_message .col4 {
		width: calc(100% / 2 - 5px);
	}
	/* 募集要項 -------------------------------------------------*/
	section#inst_request .request {
		padding-top: calc(174px + 20px);
	}
	section#inst_request .request .boad {
		padding-top: calc(70px + 30px);
	}
	section#inst_request .request .boad .req_ttl {
		width: calc(100% - 60px);
		height: 70px;
		padding: 0 30px;
		border-radius: 10px 10px 0 0;
		font-size: 18px;
	}
	section#inst_request .request .boad table {
		font-size: 14px;
	}
	section#inst_request .request .boad table th {
		width: calc(80px - 20px);
	}
	section#inst_request .request .boad table td {
		width: calc(100% - 80px - 20px);
	}

	/* トリガーボタン */
	section#inst_request .request ul li {
		width: calc(100% / 2 - 4px);
		margin-bottom: 8px;
	}
	section#inst_request .request ul li:nth-child(7),
	section#inst_request .request ul li:nth-child(8) {
		margin-bottom: 0;
	}
	section#inst_request .request ul li label {
		height: 50px;
		font-size: 14px;
	}
	section#inst_request .request ul li label::after {
		width: 5px;
		height: 5px;
		right: 15px;
	}

	/*==================================================================================
	お問い合わせ
	==================================================================================*/
	/* タブ */
	section#contact .tab_group {
		padding-left: 30px;
	}
	section#contact .tab {
		padding: 10px 30px;
		border-radius: 10px 10px 0 0;
		font-size: 14px;
	}
	section#contact .tab::before {
		height: 25px;
		bottom: -25px;
	}
	section#contact .tab::after {
		width: 6px;
		height: 6px;
		bottom: -15px;
	}
	/* タブ中身 ----------------------------------*/
	section#contact .boad {
		width: calc(100% - 60px);
		padding: 60px 30px;
	}
	section#contact .tab_cont input,
	section#contact .tab_cont textarea {
		width: calc(100% - 22px);
		padding: 10px;
		border-radius: 0 0 5px 5px;
	}
	section#contact .tab_cont select {
		padding: 10px;
		border-radius: 0 0 5px 5px;
	}
	/* 個人情報の取扱について */
	section#contact .privacy {
		padding: 20px;
	}
	section#contact .privacy .btn_check span {
		padding-left: 26px;
		font-size: 16px;
	}
	section#contact .privacy .btn_check span::before {
		width: 16px;
		height: 16px;
	}
	section#contact .privacy .btn_check span::after {
		width: 6px;
		height: 13px;
		top: 1px;
	}
	/* 送信ボタン */
	section#contact .tab_cont input[type="button"] {
		margin-bottom: 10px;
		border-radius: 5px;
	}
	/* 電話 */
	section#contact .sp_wrap {
		width: 100%;
	}
	section#contact .tel {
		margin-left: 0;
		padding-left: 40px;
	}
	section#contact .tel span {
		font-size: 40px;
	}
	section#contact .tel::before {
		width: 30px;
		height: 30px;
		top: 8px;
	}

	/*==================================================================================
	楽しく働く
	==================================================================================*/
	/* 福利厚生 ---------------------------------------------*/
	section#benefits .benefits_slide {
		width: 100%;
		padding: 0;
	}
	section#benefits .benefits_slide .inner {
		padding: 0 15px;
	}
	section#benefits .benefits_slide .inner .thumbnail {
		height: 200px;
		border-radius: 10px;
	}
	section#benefits .benefits_slide .sp-arrows {
		width: calc(100% + 60px);
		left: -30px;
	}
	section#benefits .benefits_slide .sp-arrow {
		width: 6px;
		height: 6px;
	}
	section#benefits .benefits_slide .sp-button {
		width: 10px!important;
		height: 10px!important;
	}

	/* 企業主導型保育園について,イベントたくさん！ -----------------------------------------*/
	section#nursery_school .boad,
	section#enjoy_event .boad {
		padding: 20px;
	}
	section#enjoy_event .boad .number {
		position: absolute;
		top: 20px;
		right: 20px;
	}
	section#enjoy_event .boad .number.left {
		left: 20px;
	}
	section#enjoy_event .boad .number p span {
		font-size: 50px;
	}
	section#nursery_school .boad .img,
	section#enjoy_event .boad .img {
		border-radius: 10px;
	}
	section#nursery_school .boad .txt,
	section#enjoy_event .boad .txt {
		display: block;
		width: calc(50% - 40px - 20px);
		padding: 60px 20px 20px;
	}
	section#nursery_school .boad a,
	section#enjoy_baseball .boad a {
		border-radius: 5px;
		font-size: 14px;
	}
	section#nursery_school .boad a::after,
	section#enjoy_baseball .boad a::after {
		width: 4px;
		height: 4px;
		right: 15px;
	}
	/* 野球部について -----------------------------------------*/
	section#enjoy_baseball .boad {
		padding: 20px 20px 40px;
	}
	section#enjoy_baseball .boad .img {
		border-radius: 10px;
	}

	/*==================================================================================
	企業主導型保育園
	==================================================================================*/
	main.and .bg_color {
		padding-top: 0;
	}
	section#and_main .main::before {
		width: 60px;
		height: 110px;
	}
	section#and_main .main::after {
		width: 160px;
		height: 160px;
	}
	section#and_main .txt::before,
	section#and_main .txt::after {
		width: 100px;
		height: 200px;
	}
	/* 保育園＆のこだわり ----------------------------------*/
	section#and_picky .ttl img {
		width: 80px;
	}
	/* 保育園＆の5つのポイント ------------------------------*/
	section#and_points .col3 {
		width: calc(100% / 2 - 10px);
		border-radius: 10px;
	}
	section#and_points .col3 .txt {
		width: calc(100% - 40px);
		padding: 20px;
	}
	/* 園での過ごし方 ------------------------------*/
	section#and_schedule h3 span {
		padding-left: 40px;
	}
	section#and_schedule h3 span::before {
		width: 20px;
		height: 20px;
	}
	section#and_schedule .boad {
		max-width: calc(360px - 60px);
		margin: auto;
	}
	section#and_schedule .row {
		flex-wrap: wrap;
	}
	section#and_schedule .col3 {
		width: 100%;
	}
	section#and_schedule .col3:first-child {
		min-width: 0;
		margin-right: 0;
	}
	section#and_schedule .sche {
		margin-bottom: 20px;
	}
	section#and_schedule .sche:nth-child(3),
	section#and_schedule .sche:nth-child(6) {
		margin-bottom: 20px;
	}
	section#and_schedule .sche .time {
		width: 60px;
	}
	section#and_schedule .sche .time p {
		width: 60px;
		height: 60px;
		font-size: 16px;
	}
	section#and_schedule .sche .txt {
		width: calc(100% - 65px);
	}
	/* 概要 --------------------------------*/
	section#and_info .frame {
		padding: 20px;
		border-radius: 10px;
	}
	section#and_info .frame .ttl_font {
		padding-bottom: 15px;
	}
	section#and_info .frame .row {
		flex-wrap: wrap;
	}
	section#and_info .frame ul:nth-child(2) {
		min-width: 0;
	}
	section#and_info span.icon_tel img {
		width: 40px;
	}
	section#and_info .tel {
		font-size: 40px;
	}

	/*==================================================================================
	寿々実業団野球部
	==================================================================================*/
	.clipping {
		min-width: 460px;
	}
	.bg_spotlight {
		padding: 80px 0;
		background-position: left top -460px;
	}
	.font_60 {
		font-size: 40px;
	}
	section#bb_concept {
		margin-bottom: 80px;
	}
	section#bb_about .container,
	section#bb_concept .container {
		max-width: calc(100% - 40px);
		position: relative;
		top: 0;
		left: 0;
		transform: none;
	}
	section#bb_about .col2,
	section#bb_concept .col2 {
		width: 100%;
		margin-bottom: 30px;
	}
	section#bb_about .img,
	section#bb_concept .img {
		width: 100%;
		height: 240px;
		max-width: 460px;
		margin: 0 auto 20px;
	}
	section#bb_about .img {
		margin: 0 auto 20px;
	}
	/* 監督からのメッセージ ----------------------------------------*/
	section#bb_message {
		margin-bottom: 40px;
	}
    /* SNS ----------------------------------------*/
    section#bb_sns {
        margin-bottom: 0;
    }
    section#bb_sns a {
        width: 220px;
    }
    section#bb_sns a img {
        margin-right: 10px;
    }
	/* お問い合わせ ----------------------------------------*/
	section#bb_contact {
		padding: 30px 0 50px!important;
	}
	section#bb_contact .clipping {
		max-width: 740px;
        min-width: 460px;
	}
	section#bb_contact .clipping::before {
		width: 45%;
		height: 130%;
        background-position: center bottom;
		left: 2%;
	}
    section#bb_contact .clipping .name {
    	padding: 8px 10px;
        left: 10px;
    	bottom: 20%;
    }
    section#bb_contact .clipping .name .font_18 {
    	font-size: 12px;
    }
    section#bb_contact .clipping .name .font_24 {
    	font-size: 18px;
    }
	section#bb_contact .max960 {
		max-width: 460px;
	}
	section#bb_contact .contact {
		padding: 10px 15px 15px;
	}

	/*==================================================================================
	求人情報
	==================================================================================*/
	section#search_result.request .inst_name {
		padding-bottom: 15px;
	}
	section#search_result.request .inst_name::after {
		width: 240px;
	}
	section#search_result.request .boad {
		width: calc(100% - 40px);
	}
	section#search_result.request .boad .thumbnail {
		height: 240px;
	}

	/*==================================================================================
	フッター
	==================================================================================*/
	footer {
		padding: 30px 0 0!important;
	}
	footer.bg {
		padding: 60px 0 0!important;
		background-image: url("../img/foot_bg_sp.jpg");
	}
	footer .container {
		max-width: 460px;
	}
	footer .foot_logo {
		width: 160px;
	}
	footer .info {
		margin-bottom: 30px;
	}
	footer nav.foot_nav {
		width: 100%;
	}
	footer nav.foot_nav ul li {
		margin-bottom: 10px;
	}
	footer nav.foot_nav ul li ul {
		margin-top: 10px;
	}
	footer nav.foot_nav ul li ul li {
		margin-bottom: 10px;
	}
	footer .copy {
		padding: 10px 0;
		font-size: 10px;
	}
	/* マイナビバナー */
	footer .bana_mynavi {
		margin-bottom: 30px;
	}
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		width: calc(40px - 2px);
		height: calc(40px - 2px);
		right: 20px;
		bottom: 20px;
	}
	.btn_pagetop span {
		width: 8px;
		height: 8px;
	}
}


@media screen and (max-width : 680px) {
	/*==================================================================================
	共通
	==================================================================================*/
	/* ヘッダー旗 --------------*/
	.head_flag::before {
		top: -20px;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	section#main::after {
		height: 67.5%;
	}
	section#main.head_flag::before {
		top: -3%;
	}
	/* 空 */
	section#main .bg_sky {
		top: 130px;
	}
	/* 丘、木 */
	section#main .bg_tree {
		width: 580px;
	}
	/* 雲、鳥 */
	section#main .bg_side {
		width: 540px;
	}
	section#main .cloud_l,
	section#main .bird_l,
	section#main .cloud_r,
	section#main .bird_r {
		width: 28%;
	}
	section#main .cloud_l {
		top: 20%;
	}
	section#main .bird_l {
		display: none;
	}
	section#main .cloud_r {
		right: -4%;
	}
	section#main .bird_r {
		display: none;
	}
	/* 人 -----------------------------*/
	section#main .person {
		max-width: 300px;
		top: 340px;
	}
	section#main .person .p01 {
		width: 50px;
	}
	section#main .person .p02 {
		width: 50px;
		left: 25%;
		bottom: 20px;
	}
	section#main .person .p03 {
		width: 50px;
		right: 25%;
		bottom: 20px;
	}
	section#main .person .p04 {
		width: 40px;
        bottom: 0;
        right: -10px;
	}

	/* 求人を探す -----------------------*/
	section#main .btm {
		margin-top: 260px;
	}

	/*==================================================================================
	ニュース
	==================================================================================*/
	section#news_list .side {
		order: 2;
	}
	section#news_list .news_list {
		width: 100%;
	}
	section#news_list .article .thumbnail {
		height: 140px;
	}
	section#news_list nav.pagenav {
		margin-top: 40px;
	}

	/*==================================================================================
	数字で見るJuju
	==================================================================================*/
	section#data .container {
		max-width: 460px;
	}
	section#data .data_img {
		width: calc(100% / 2 - 5px);
		margin-bottom: 10px;
	}
	section#data .data_img2 {
		width: 100%;
		margin-bottom: 10px;
	}

	/*==================================================================================
	お仕事について
	==================================================================================*/
	/* 入社後のフォローについて --------------------------------*/
	section#work_follow .boad {
		max-width: 360px;
		margin: auto;
	}
	section#work_follow .follow {
		width: 100%;
		margin-bottom: 20px;
		padding: 0 0 20px;
		border-right: none;
		border-bottom: 1px #ccc dashed;
	}
	section#work_follow .follow:last-child {
		width: 100%;
		margin-bottom: 0;
		border-bottom: none;
	}

	/*==================================================================================
	社員インタビュー
	==================================================================================*/
	/* インタビューリンク -------------------------*/
	section#interview.list .row {
		max-width: 460px;
		margin: auto;
	}
	.member_voice {
		display: block;
		width: calc(100% / 2 - 5px);
	}
	.jobtag {
		padding: 6px 0;
		font-size: 10px;
	}

	/* インタビュー詳細 ----------------------------------------------------------------*/
	section#interview .main .row {
		margin-bottom: 20px;
	}
	section#interview .column {
		width: 100%;
		max-width: 460px;
		margin: auto;
	}
	section#interview .column:nth-child(3) {
		margin-top: 0;
	}
	section#interview .faq {
		margin-bottom: 15px;
	}
	section#interview .faq .answer {
		min-height: calc(65px - 20px);
		padding: 10px 20px;
	}
	section#interview .img01,
	section#interview .img02,
	section#interview .img03 {
		margin-bottom: 15px;
	}
	section#interview .img01 {
		height: auto;
	}
	section#interview .img02 {
		height: auto;
	}
	section#interview .img03 {
		height: auto;
	}

	/*==================================================================================
	検索結果
	==================================================================================*/
	/* 検索結果 --------------------------------------*/
	section#search_result .boad {
		width: calc(100% - 40px);
		max-width: calc(460px - 40px);
		margin: 0 auto 20px;
		padding-bottom: 20px;
	}
	section#search_result .boad .btn_fix {
		width: 100%;
		position: relative;
		left: 0;
		bottom: 0;
	}

	/*==================================================================================
	施設紹介
	==================================================================================*/
	/* 所在地 ----------------------------------------------------*/
	section#inst_adress .map {
		width: 100%;
		height: 300px;
		border-radius: 5px 5px 0 0;
	}
	section#inst_adress .txt {
		width: calc(100% - 60px);
		border-radius: 0 0 5px 5px;
	}

	/*==================================================================================
	楽しく働く
	==================================================================================*/
	/* 企業主導型保育園について,イベントたくさん！ -----------------------------------------*/
	section#nursery_school .boad,
	section#enjoy_event .boad {
		margin-top: 60px;
	}
	section#enjoy_event .boad .number {
		top: -40px;
	}
	section#nursery_school .boad .img,
	section#enjoy_event .boad .img {
		width: 100%;
		margin-bottom: 20px;
	}
	section#nursery_school .boad .txt,
	section#enjoy_event .boad .txt {
		width: calc(100% - 40px);
		padding: 0 20px;
	}
	section#nursery_school .boad .txt p,
	section#enjoy_event .boad .txt p {
		max-width: 100%;
	}
	section#enjoy_event .boad .order2 {
		order: 2;
	}
	section#nursery_school .boad a,
	section#enjoy_baseball .boad a {
		border-radius: 5px;
		font-size: 14px;
	}
	section#nursery_school .boad a::after,
	section#enjoy_baseball .boad a::after {
		width: 4px;
		height: 4px;
		right: 15px;
	}
	/* 野球部について -----------------------------------------*/
	section#enjoy_baseball .boad {
		padding: 20px 20px 40px;
	}
	section#enjoy_baseball .boad .img {
		border-radius: 10px;
	}
	section#enjoy_baseball .boad .txt {
		width: calc(100% - 40px);
		padding: 0 20px;
	}

	/*==================================================================================
	企業主導型保育園
	==================================================================================*/
	section#and_main .main {
		padding-bottom: 60px;
	}
	section#and_main .main::before {
		width: 45px;
		height: 90px;
	}
	section#and_main .main::after {
		width: 140px;
		height: 140px;
	}
	section#and_main .txt::before,
	section#and_main .txt::after {
		width: 15%;
		height: 200px;
		background-position: center top;
		top: -10%;
	}
	/* 保育園＆の5つのポイント ------------------------------*/
	section#and_points .col3 {
		width: 100%;
		max-width: 360px;
		margin: 0 auto 20px;
	}
	section#and_points .col3:first-child img {
		max-width: 200px;
	}
}


@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
	
	p { font-size: 12px; }

	/*==================================================================================
	共通
	==================================================================================*/
	/* フォント */
	h1 {
		font-size: 30px;
	}
	h2 {
		font-size: 20px;
		padding-bottom: 20px!important;
	}
	h3 {
		font-size: 18px;
	}

	.font_18 {
		font-size: 14px;
	}
	.font_24 {
		font-size: 18px;
	}
	.font_30 {
		font-size: 22px;
	}
	.font_46 {
		font-size: 28px;
	}
	.txt_space {
		letter-spacing: 0.05em;
	}
	.light {
		font-weight: 400;
	}

	/* ホワイトボード */
	.boad {
		padding: 20px;
	}
	
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header .btn_entry {
		width: 110px;
		margin-right: 45px;
	}
	header .btn_entry::before {
	    width: 32px;
	    height: 32px;
		top: 0;
	    left: -28px;
	}
	header .btn_entry::after {
		display: none;
	}
	header .btn_entry span {
		padding: 0;
	}
	/*==================================================================================
	INDEX
	==================================================================================*/
	section#main::after {
		height: 70%;
	}
	/* News ------------------------------------------------------------------------*/
	.article .font_14 {
		font-size: 10px;
	}
	.category {
		font-size: 10px;
	}
	section#top_news .row {
		margin-bottom: 10px;
	}
	section#top_news .article {
		width: calc(100% / 2 - 5px - 20px);
		margin-bottom: 10px;
	}
	section#top_news .article .thumbnail {
		height: 100px;
	}
	section#top_news ul.cate_list li:last-child {
		width: 100%;
		margin-left: 0;
		margin-top: 10px;
		text-align: right;
	}
	/* About Juju ---------------------------------------------------------------------*/
	section#top_about {
		padding: 80px 20px 120px!important;
		background-image: url("../img/top_about_ilst03.png"), url("../img/top_about_ilst04.png"), url("../img/top_about_ilst05.png"), url("../img/top_about_ilst06.png"), url("../img/top_about_ilst07.png"), url("../img/top_about_ilst09.png"), url("../img/top_about_ilst11.png");
		background-position: left top 100px, left 10px top 640px, left 10px bottom 840px, left bottom 420px, right top 160px, left -20px top 1100px, right 10px bottom -20px;
		background-size: 100px;
	}
	section#top_about .container::before,
	section#top_about .container::after {
		width: 90px;
		min-width: 0;
	}
	section#top_about .container::before {
		top: -120px;
		left: -20px;
	}
	section#top_about .container::after {
		top: -80px;
		right: -20px;
	}
	section#top_about .about {
		max-width: 340px;
	}
	section#top_about .about .number,
	section#top_about .about.right .number {
		top: 180px;
	}
	section#top_about .about .txt::before {
		width: 360px;
		height: 260px;
	}
	/* 求人一覧アコーディオン -------------------------------------*/
	.title::before {
		left: 15px;
	}
	.box {
		display: none;/*はじめは非表示*/
		padding: 10px 15px;
	}
	.box p {
		padding-left: 12px;
	}
	.box p span {
		font-size: 10px;
	}

	/*==================================================================================
	ニュース
	==================================================================================*/
	section#news_list .article {
		width: calc(100% / 2 - 5px - 20px);
		margin-bottom: 10px;
	}
	section#news_list .article .thumbnail {
		height: 100px;
	}
	.wp-pagenavi,
	section#news_list nav.pagenav {
		margin-top: 20px;
	}
	.wp-pagenavi a,
	.wp-pagenavi span,
	section#news_list nav.pagenav ul li a,
	section#news_list nav.pagenav ul li span {
		font-size: 12px;
	}
	.wp-pagenavi a.nextpostslink,
	.wp-pagenavi a.previouspostslink,
	section#news_list nav.pagenav ul li:first-child a,
	section#news_list nav.pagenav ul li:last-child a {
		width: 50px;
	}
	/* ニュース詳細 ----------------------------*/
	section#news nav.article_nav ul li a {
		font-size: 12px;
	}
	section#news nav.article_nav ul li:first-child a,
	section#news nav.article_nav ul li:last-child a {
		width: 100px;
	}

	/*==================================================================================
	Jujuグループ
	==================================================================================*/
	/* 寿々グループと事業について -------------------------------------*/
	section#about_service .boad {
		padding: 20px 10px;
	}
	/* 寿々寿々グループ沿革 -------------------------------------------*/
	section#about_history table {
		font-size: 12px;
	}
	section#about_history table th {
		width: 50px;
		font-size: 12px;
	}
	section#about_history table th:nth-child(2) {
	    width: calc(36px - 10px);
	    padding: 0 10px 0 0;
	}
	section#about_history table td {
	    padding: 0 0 10px 10px;
	}

	/*==================================================================================
	グループ各社紹介
	==================================================================================*/
	/* 事業内容 -----------------------------------------*/
	section#group_service .boad .font_18 {
		font-size: 12px;
	}
	/* 会社概要、沿革 ------------------------------------*/
	section#group_info table {
		font-size: 12px;
	}
	section#group_info table th {
		padding: 0 10px 10px 0;
	}
	section#group_info table td {
	    padding: 0 0 10px 10px;
	}
	section#group_info table.history th {
		width: 50px;
		font-size: 12px;
	}
	section#group_info table.history th:nth-child(2) {
	    width: calc(36px - 10px);
	    padding: 0 10px 0 0;
	}

	/*==================================================================================
	お仕事について
	==================================================================================*/
	section#work .row.just_center {
		justify-content: space-between;
	}
	section#work label.works {
		width: calc(100% / 2 - 5px);
		margin: 0 0 10px;
	}
	section#work label.works .img {
		height: 100px;
	}
	section#work label.works .txt.font_18 {
		font-size: 12px;
	}
	section#work label.works .txt::after {
		display: none;
	}
	/* ポップアップ -----------------------------------*/
	section#work .popup .boad .row.align_center {
		align-items: flex-start;
	}
	section#work .popup .boad .img {
		width: 100%;
		height: auto;
		margin-bottom: 10px;
	}
	section#work .popup .boad .txt {
		width: calc(100% - 20px);
	}

	/*==================================================================================
	社員インタビュー
	==================================================================================*/
	/* インタビュー詳細 ----------------------------------------------------------------*/
	section#interview .main .txt {
		top: -20px;
	}
	section#interview .main .txt .jobtag {
		width: 100%;
		margin-bottom: 5px;
	}
	section#interview .faq .question {
		height: 50px;
	}
	section#interview .faq .question p {
		padding-left: 40px;
	}
	section#interview .faq .question p span {
		font-size: 20px;
	}

	/*==================================================================================
	施設紹介
	==================================================================================*/
	section#inst_info .img {
		height: 240px;
	}
	section#inst_info .txt table th span {
		width: 100px;
		font-size: 12px;
	}
	/* 所在地 ----------------------------------------------------*/
	section#inst_adress .txt {
		width: calc(100% - 40px);
		padding: 20px;
	}
	/* 募集要項 -------------------------------------------------*/
	section#inst_request .request {
		padding-top: calc(132px + 20px);
	}
	section#inst_request .request .boad {
		padding-top: calc(60px + 20px);
	}
	section#inst_request .request .boad .req_ttl {
		width: calc(100% - 40px);
		height: 60px;
		padding: 0 20px;
		font-size: 16px;
	}
	section#inst_request .request .boad table {
		font-size: 12px;
	}
	section#inst_request .request .boad table th {
		width: calc(70px - 20px);
	}
	section#inst_request .request .boad table td {
		width: calc(100% - 70px - 20px);
	}

	/* トリガーボタン */
	section#inst_request .request ul li {
		width: calc(100% / 2 - 2px);
		margin-bottom: 4px;
	}
	section#inst_request .request ul li label {
		height: 40px;
		font-size: 12px;
	}
	section#inst_request .request ul li:nth-child(3) label {
		font-size: 10px;
	}
	section#inst_request .request ul li label::after {
		right: 10px;
	}

	/*==================================================================================
	お問い合わせ
	==================================================================================*/
	/* タブ */
	section#contact .tab_group {
		padding-left: 10px;
	}
	section#contact .tab {
		padding: 10px 20px;
	}
	section#contact .tab:nth-child(1),
	section#contact .tab:nth-child(2) {
	    margin-right: 2px;
	}
	/* タブ中身 ----------------------------------*/
	section#contact .boad {
		width: calc(100% - 20px);
		padding: 40px 10px;
	}

	/*==================================================================================
	楽しく働く
	==================================================================================*/
	/* 福利厚生 ---------------------------------------------*/
	section#benefits .benefits_slide .inner .thumbnail {
		height: 260px;
	}
	/* 企業主導型保育園について,イベントたくさん！ -----------------------------------------*/
	section#nursery_school .boad .img,
	section#enjoy_event .boad .img {
		height: 180px;
	}
	section#nursery_school .boad .txt,
	section#enjoy_event .boad .txt {
		width: 100%;
		padding: 0;
	}
	/* 野球部について -----------------------------------------*/
	section#enjoy_baseball .boad {
		padding: 20px 20px 30px;
	}
	section#enjoy_baseball .boad .txt {
		width: 100%;
		padding: 0;
	}

	/*==================================================================================
	企業主導型保育園
	==================================================================================*/
	section#and_main .main {
		padding-bottom: 80px;
	}

	/*==================================================================================
	寿々実業団野球部
	==================================================================================*/
	.bg_spotlight {
		padding: 40px 0 80px;
	}
	/* 監督からのメッセージ ----------------------------------------*/
	section#bb_message {
		margin-bottom: 40px;
	}
	/* お問い合わせ ----------------------------------------*/
	section#bb_contact {
		padding: 20px 0 40px!important;
	}
	section#bb_contact .clipping {
		max-width: 100%;
        min-width: 0;
	}
	section#bb_contact .clipping::before {
        width: 55%;
		height: 130%;
		left: 0;
        bottom: 0;
	}
    section#bb_contact .clipping .name {
    	padding: 5px 10px;
        left: 10px;
    	bottom: 20%;
    }
    section#bb_contact .clipping .name .font_18 {
    	font-size: 10px;
    }
    section#bb_contact .clipping .name .font_24 {
    	font-size: 14px;
    }
	section#bb_contact .contact {
		padding: 8px 12px 12px;
	}
	section#bb_contact .contact p {
		font-size: 11px;
	}
	section#bb_contact .contact .font_30 {
		font-size: 18px;
	}
	section#bb_contact .contact .font_60 {
		font-size: 30px;
	}
	section#bb_contact .contact .font_24 {
		font-size: 13px;
	}
	/*==================================================================================
	求人情報
	==================================================================================*/
	section#search_result.request .boad .thumbnail {
		height: 180px;
	}

	/*==================================================================================
	フッター
	==================================================================================*/
	footer nav.foot_nav ul {
		width: calc(100% / 2 - 21px);
		padding: 0 10px;
	}
	footer nav.foot_nav ul:last-child {
		width: calc(100% / 2 - 22px);
	}
	footer nav.foot_nav ul li a {
		font-size: 12px;
	}
}

