@charset "utf-8";
/* --------------------------------------------------------------------------------
	Reset
-------------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
	letter-spacing: 0.1em;
}
html {
	scroll-behavior: smooth;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
input, textarea {
	font-weight: normal;
	font-size: 100%;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
input, textarea, select {}
a {
	overflow: hidden;
	outline: none;
	text-decoration: none;
	color: #333;
}
a:hover, a:active {
	text-decoration: none;
	/*opacity: 0.8;*/
}
input[type="text"]:focus {
	outline: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	border: none;
	-ms-interpolation-mode: bicubic;
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
a img {
	border: none;
	transition: opacity 0.3s ease;
}
a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70); /* ie7 */
	-ms-filter: "alpha(opacity=70)"; /* ie8 */
}
/* --------------------------------------------------------------------------------
	タグ
-------------------------------------------------------------------------------- */
html, body {
	height: 100%;
	margin: 0 !important;
	font-feature-settings: "palt";
	color: #191919;
}
body {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	/*background: #F8F2E4;*/
}

h2{
	font-family: "Roboto", "Noto Sans JP", sans-serif;
	font-weight: 400!important;
}


/* --------------------------------------------------------------------------------
	共通クラス
-------------------------------------------------------------------------------- */
.device-pc {
	display: none!important;
}
.device-sp {
	display: block!important;
}
.inner {
	padding: 0 20px;
}
.btn a:hover {
	background: rgba(165, 31, 85, 1);
	color: #fff !important;
	transition: background 0.3s ease, color 0.3s ease;
}
.btn a:hover::before {
	border-top: solid 1px #fff !important;
	border-right: solid 1px #fff !important;
}
/* --------------------------------------------------------------------------------
	container
-------------------------------------------------------------------------------- */
#container {
	padding-top: 50px;
	background-color: #fff;
}
.page-ttl p {
	font-size: 35px;
	color: rgba(25, 25, 25, 0.1);
	text-align: center;

	font-family: "Roboto", "Noto Sans JP", sans-serif;
	font-weight: 400!important;
}
.page-ttl h2 {
	font-size: 15px;
	color: #0F0F0F;
	text-align: center;
	font-weight: bold;
}
/* --------------------------------------------------------------------------------
	header
-------------------------------------------------------------------------------- */
/*トップ以外*/
#header {
	width: 100%;
	background: url(https://izuman.jp/recruit-site/wp-content/themes/izuman-recruit/images/index/mv-pc.jpg) no-repeat center center;
	background-size: 100%;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	min-height: 100px;
	padding: 0 15px;
	margin: 0 auto;
}

#header .header-logo {
	margin: 0;
	width: 80px;
	flex-shrink: 0;
}

#header .siteinfo {
	position: absolute;
	top: 20px;
	left: 0px;
	border: 1px solid #fff;
	text-align: center;
	color: #fff;
	padding: 6px 16px;
	border-radius: 999px;
	font-size: 10px;
}

/*トップ*/
body.home #header {
	width: 100%;
	position: absolute;
	top: 0;
	z-index: 9999;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	background: none;
	min-height: auto;
	padding: 0;
}
#header .header-container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/*width: 750px;*/
	margin: 0 auto;
	padding: 20px 0
}
body.home #header .siteinfo {
	position: absolute;
	top: 20px;
	left: 20px;
	border: 1px solid #fff;
	text-align: center;
	color: #fff;
	padding: 6px 16px;
	border-radius: 999px;
	font-size: 12px;
}

body.home #header .header-logo {
	margin: 60px 0 20px;
	width: 120px;
	flex-shrink: 0;
}


/* --- ハンバーガーボタン --- */
.humburger-btn {
	position: fixed;
	right: 20px;
	top: 20px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #191919;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	cursor: pointer;
	transition: background 0.3s;
	z-index: 1100;
}
.humburger-btn span {
	display: block;
	width: 14px;
	height: 2px;
	background: #fff;
	margin: 2px 0;
	transition: all 0.3s ease;
}
/* 開いた時の × 変形 */
.humburger-btn.active span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}
.humburger-btn.active span:nth-child(2) {
	opacity: 0;
}
.humburger-btn.active span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}
/* --- メニュー --- */
.humburger-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	/*background: rgba(66,160,138,0.8);*/
	background: #F0F0F0;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	transition: height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
	z-index: 1000;
	overflow-y: auto; /* ← 中身をスクロール */
	-webkit-overflow-scrolling: touch; /* iOS慣性スクロール */
	overscroll-behavior: contain; /* 画面外へのバウンス防止 */
}
.humburger-menu.open {
	height: 100vh;
}
.humburger-menu.open {
	transform: translateY(0);
}
.humburger-inner {
	padding: 100px 20px 40px;
}
/* --- 背景をスクロールさせない制御 --- */
body.menu-open {
	overflow: hidden;
}
#header .header-nav {
	margin: 0 0 40px;
}
#header .header-nav ul {
	display: flex;
	flex-direction: column;
}
#header .header-nav ul li {
	padding: 16px 8px;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	border-bottom: 1px solid #A3A3A3;
}
#header .header-nav ul li a {
	font-size: 16px;
	font-weight: bold;
}
#header .h-info {
	margin: 0 0 60px;
}
#header .h-info ul {
	display: flex;
}
#header .h-info ul li {
	margin: 0 25px 0 0;
}
#header .h-info ul li:first-child a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 42px;
	font-size: 16px;
	font-weight: bold;
	background: #EA3525;
	border-radius: 999px;
	color: #fff;
}
#header .h-info ul li:last-child a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 42px;
	font-size: 16px;
	font-weight: bold;
	background: #191919;
	border-radius: 999px;
	color: #fff;
}
#header .f-sns {}
#header .f-sns ul {
	display: flex;
	justify-content: center;
	margin: 0 0 60px;
}
#header .f-sns ul li {
	margin: 0 10px;
}
#header .f-info {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#header .f-info .f-logo {
	margin: 0 0 10px;
}
#header .f-info h2 {
	margin: 0 0 30px;
	font-size: 18px;
}
#header .f-info .f-tel {
	margin: 0 0 30px;
}
#header .f-info .tel a {
	font-size: 30px;
	padding: 0 0 20px;
}
#header .f-info p {
	text-align: center;
}

  #header .cp-site {
        margin: 30px 0 0;
    }
    #header .cp-site a {
        font-size: 16px;
        color: #191919;
        font-weight: 600;
        border: 1px solid #191919;
        text-align: center;
        padding: 6px 16px;
        border-radius: 999px;
    }





/* --------------------------------------------------------------------------------
	footer
-------------------------------------------------------------------------------- */
#footer {
	padding: 60px 0 60px;
	background-color: #F0F0F0;
	margin: 0 auto;
}
#footer .footer-inner {
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#footer .f-info {
	text-align: center;
}
#footer .f-info .f-logo img {
	width: 150px;
}
#footer .f-info .f-logo {
	margin: 0 0 20px;
}
#footer .f-info h2 {
	font-size: 22px;
	text-align: center;
	color: #191919;
	margin: 0 0 35px;
	font-weight: 600;
}
#footer .f-tel {
	font-size: 16px;
	color: #191919;
	font-weight: 600;
}
#footer .tel {
	margin: 0 0 25px;
}
#footer .f-tel a {
	font-size: 34px;
	color: #191919;
	padding: 0 10px;
	font-weight: 600;
}

#footer .cp-site a {
	font-size: 16px;
	color: #191919;
	font-weight: 600;
	border: 1px solid #191919;
	text-align: center;
	padding: 6px 16px;
	border-radius: 999px;
}



#footer .f-nav {
	width: 80%;
	margin: 40px 0 0;
}
#footer .f-nav ul li {
	margin: 0 0 25px;
}
#footer .f-nav ul li a {
	color: #191919;
	font-size: 15px;
	font-weight: 600;
}
#footer .f-nav ul li ul {
	display: flex;
	margin: 45px 0;
}
#footer .f-nav ul li ul li {
	margin: 0 20px 0 0;
}

#footer .f-nav ul li ul li img{
	width: 30px;
}


#footer .f-contact {
	margin: 40px 0 0;
}
#footer .f-contact ul li {
	margin: 0 0 20px;
}
#footer .f-contact ul li a {
	position: relative;
}
/* 右端の白丸部分 */
#footer .f-contact ul li a::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 50%;
}
/* 白丸内の▶矢印 */
#footer .f-contact ul li a::before {
	content: "";
	position: absolute;
	right: 27px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 7px;
	height: 7px;
	border-top: 2px solid #EA3525;
	border-right: 2px solid #EA3525;
	z-index: 1;
}
/* hover時 */
#footer .f-contact ul li a:hover {
	background: #c52b1f;
}
#footer .f-contact ul li:first-child a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 55px;
	font-size: 14px;
	font-weight: bold;
	background: #EA3525;
	border-radius: 999px;
	color: #fff;
	transition: background 0.3s;
}
#footer .f-contact ul li:last-child a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	height: 55px;
	font-size: 14px;
	font-weight: bold;
	background: #191919;
	border-radius: 999px;
	color: #fff;
	transition: background 0.3s;
}
#footer .f-contact ul li:last-child a::before {
	border-top: 2px solid #000;
	border-right: 2px solid #000;
}
#footer .copy {
	text-align: center;
	font-size: 10px;
	margin: 40px auto 0;
}



#fix-bnr {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	position: fixed;
        bottom: 0px;
        right: 0px;
        z-index: 10;
	width: 100%;
}
#fix-bnr.show {
	opacity: 1;
	visibility: visible;
}


 #fix-bnr .btn.red a {
	 position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 45px;
        font-size: 16px;
        font-weight: bold;
        background: #EA3525;
        border-radius:0px;
        color: #fff;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s 
ease, box-shadow 0.3s 
ease, background 0.3s 
ease, color 0.3s 
ease;
    }

#fix-bnr .btn.red a::before {
	content: "";
	position: absolute;
	right: 37px;
	top: 55%;
	transform: translateY(-50%) rotate(45deg);
	width: 7px;
	height: 7px;
	border-top: 2px solid #EA3525 !important;
	border-right: 2px solid #EA3525 !important;
	z-index: 1;
}

#fix-bnr .btn.red a::after {
	content: "";
	position: absolute;
	right: 25px;
	top: 55%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 50%;
}






/* --------------------------------------------------------------------------------
	wrapper
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
  パンくずリスト
-------------------------------------------------------------------------------- */
#pankuzu {
	background-color: #fff;
}
#pankuzu .breadcrumbs {
	padding-top: 20px;
	padding-bottom: 50px;
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
	display: flex;
	align-items: center;
}
#pankuzu .breadcrumbs > span {
	color: #333333;
	font-size: 12px;
	padding: 5px;
}
/* --------------------------------------------------------------------------------
	main
-------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------
	トップページ home.php
-------------------------------------------------------------------------------- */
#index h2 {
	font-size: 45px;
}
/*mv*/
#index #mv {
	position: relative;
}
#index #mv .mv-img {
	width: 100%;
	line-height: 0;
}
#index #mv .mv-img img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

#index #mv .mv-img video {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}
#index #mv h2 {
	font-size: 23px;
	font-weight: 400;
	color: #fff;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
	letter-spacing: 0.4em;
}
#index .mv-logo, #index .mv-heading {
	opacity: 0;
	transform: scale(0.99); /* 少し縮小から始まる */
	animation: fadeInSoft 1.8s ease-out forwards;
	position: absolute;
	top: 220px;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
}
#index .mv-heading {
	animation-delay: 1.5s;
}
@keyframes fadeInSoft {
	0% {
		opacity: 0;
		transform: scale(0.99);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
/* フェードイン＆スケール */
@keyframes fadeInSoft {
	0% {
		opacity: 0;
		transform: scale(0.99);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
/* 上下ふわふわ */
@keyframes floatY {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(0);
	}
}
.btn.red a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80vw;
	height: 55px;
	font-size: 16px;
	font-weight: bold;
	background: #EA3525;
	border-radius: 999px;
	color: #fff;
	transition: background 0.3s;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
/* 白丸内の▶矢印 */
.btn.red a::before {
	content: "";
	position: absolute;
	right: 27px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 7px;
	height: 7px;
	border-top: 2px solid #EA3525 !important;
	border-right: 2px solid #EA3525 !important;
	z-index: 1;
}
.btn.red a::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 50%;
}
/* hover時 */
.btn.red a:hover {
	background: #c52b1f;
}
.btn.blk a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80vw;
	height: 55px;
	font-size: 16px;
	font-weight: bold;
	background: #191919;
	border-radius: 999px;
	color: #fff;
	transition: background 0.3s;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
/* 白丸内の▶矢印 */
.btn.blk a::before {
	content: "";
	position: absolute;
	right: 27px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 7px;
	height: 7px;
	border-top: 2px solid #191919 !important;
	border-right: 2px solid #191919 !important;
	z-index: 1;
}
.btn.blk a::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 50%;
}
/* hover時 */
.btn.blk a:hover {
	background: #000;
}
/*美味創造*/
#index #heading {
	background: url(https://cont-p.com/izuman/wp-content/themes/izuman-recruit/images/index/heading-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	padding: 50px 0;
	position: relative;
}
#index #heading .inner {}
#index #heading h2 {
	color: #fff;
	font-size: 35px;
	margin: 0 0 35px;
	text-align: center;
	
}
#index #heading p {
	color: #fff;
	font-size: 16px;
	line-height: 1.7;
	margin: 0 0 430px;
	text-align: center;
	
}
#index #heading .btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 0 20px;
	
}
#index #heading .img01 {
	display: none;
}
#index #heading .img02 {
	position: absolute;
	left: 0;
	bottom: 235px;
	width: 60vw;
	z-index: 9;
}
#index #heading .img03 {
	position: absolute;
	right: 0;
	bottom: 330px;
	width: 80vw;
}
/*news*/
#news-part {
	background: #EFF8F6;
	padding: 70px 0;
}
#news-part .inner {
	display: flex;
	flex-direction: column;
	padding: 0 40px;
}
#news-part .news-heading {
	
}
#news-part .news-heading h2 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 60px;
	color: #42A08A;
	text-align: center;
}
#news-part .news-heading span {
	display: block;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	text-align: center;
}

#news-part .news-list {
	margin: 0 0 60px;
}
#news-part .news-list li {
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #C6C6C6;
}
#news-part .news-list li:last-child {
	border-bottom: none;
}
#news-part .news-list li .date {
	font-size: 12px;
	margin:0 0 10px;
	font-weight: 600;
}
#news-part .news-list li .title a {
	font-size: 15px;
	font-weight: 600;
	display: block;
	position: relative;
	padding: 0 50px 0 0;
}
#news-part .news-list li .title a::before {
	content: "";
	position: absolute;
	right: 23px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff !important;
	border-right: 2px solid #fff !important;
	z-index: 1;
}
#news-part .news-list li .title a::after {
	content: "";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background: #EA3525;
	border-radius: 50%;
}
/*date*/
#index #date {
	padding: 60px 0;
}
#index #date h2 {
	font-size: 35px;
	font-weight: 700;
	color: #42A08A;
	margin: 0 0 50px;
	text-align: center;
}
#index #date h2 span {
	font-size: 16px;
	font-weight: 700;
	color: #191919;
	display: block;
	text-align: center;
}
#index #date .inner {
	position: relative;
}
#index #date ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 0 70px;
}
#index #date ul li {
	width: 300px;
	border: 1px solid #42A08A;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 35px;
}
#index #date ul li h3 {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 15px;
}
#index #date ul li .img {
	margin: 0 0 20px;
}
#index #date ul li p {
	font-size: 13px;
	margin-top: auto;
}
#index #date .btn {
	width: 300px;
	margin: 0 auto;
}
/*job*/
#job {
	padding: 60px 0 50px;
	background: url("https://izuman.jp/recruit-site/wp-content/themes/izuman-recruit/images/index/bg.jpg");
}
#job .ttl {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#job h2 {
	font-size: 35px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 20px;
	text-align: center;
}
#job h2 span {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	display: block;
}
#job .catch {
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	margin: 0 0 20px;
}
#job .work {
	position: relative;
	padding: 50px 0 0;
}
#job .work .img{
	display: none;
}




#job .work .txt {
	
}
#job .work .txt ul {
	
}
#job .work .txt ul li {
	margin: 0 0 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#job .work .txt ul li img{
	width: 50vw;
	margin: 0 auto 20px;
}


#job .work .txt h3 {
	color: #fff;
	font-size: 20px;
	margin: 0 0 20px;
	text-align: center;
}
#job .work .txt p {
	color: #fff;
	font-size: 14px;
}
#job .work .btn {
	display: flex;
	justify-content: center;
}
/*faq*/
#faq-part {
	background: #EFF8F6;
	padding: 50px 0;
}
#faq-part .inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	
}

#faq-part .news-heading h2 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 60px;
	color: #42A08A;
	text-align: center;
}
#faq-part .news-heading span {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #191919;
	text-align: center;
}

#faq-part .faq-list {
	background: #fff;
	padding: 30px 20px 0;
	margin: 0 0 50px;
}
#faq-part .faq-list li {
	padding: 0 0 30px;
	margin: 0 0 40px;
	border-bottom: 1px solid #C6C6C6;
}
#faq-part .faq-list li:last-child {
	border-bottom: none;
}
#faq-part .faq-list li .question {
	font-size: 17px;
	font-weight: 600;
	position: relative;
	margin: 0 0 30px;
	padding: 0 0 0 40px;
}
#faq-part .faq-list li .question::before {
	content: "Q";
	position: absolute;
	left: 0px;
	top: -10px;
	font-size: 30px;
	color: #55AC97;
}
#faq-part .faq-list li .answer {
	font-size: 15px;
	font-weight: 600;
	position: relative;
	padding: 0 0 0 40px;
	
	
}
#faq-part .faq-list li .answer::after {
	content: "A";
	position: absolute;
	left: 0px;
	top: -10px;
	font-size: 30px;
	color: #BFBFBF;
}


#faq-part .btn {
	
}



/*intarviews*/
#intarviews {
	padding: 60px 0 50px;
	background: url("https://izuman.jp/recruit-site/wp-content/themes/izuman-recruit/images/index/bg.jpg");
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

body.home #intarviews {
	border-top: 0px solid #fff;
}



#intarviews .ttl {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#intarviews h2 {
	font-size: 35px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 50px;
	text-align: center;
}
#intarviews h2 span {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	display: block;
	text-align: center;
}

#intarviews .catch {}
#intarviews .catch p {
	margin: 0 0 20px;
}
#intarviews .catch p span:nth-of-type(2) {
	margin: 10px 0 0 50px;
}
#intarviews .catch span {
	font-size: 18px;
	color: #42A08A;
	background: #fff;
	padding: 5px 10px;
	font-weight: 600;
	display:inline-block;
}
#intarviews ul.interview-list {
	position: relative;
	width: 100%;
	margin: 20px auto 40px;
}
#intarviews ul.interview-list li {
	background: #fff;
	width: 80vw !important;
	margin: 0 20px;
	border-radius: 20px 20px 0 0;
}
#intarviews ul.interview-list li img {
	width: 100%;
	height: auto;
	border-radius: 25px 25px 0 0;
}
/*#index #intarviews ul li:nth-child(2) {
	margin: -90px 0 0;
}
#index #intarviews ul li:nth-child(3) {
	margin: -140px 0 0;
}*/
#intarviews ul.interview-list li .img {}
#intarviews ul.interview-list li .txt {
	text-align: center;
	padding: 15px;
}
#intarviews ul.interview-list li .staff-name {
	text-align: center;
	padding: 0 0 10px;
	margin: 0 0 10px;
	border-bottom: 1px solid #000;
}
#intarviews ul.interview-list li .txt h3 {
	font-size: 18px;
	color: #55AC97;
	margin: 0 0 10px;
}
#intarviews ul.interview-list li .txt p {
	font-size: 13px;
	min-height: 5em;
}
#intarviews .btn {
	display: flex;
	justify-content: center;
	margin: 0;
}
/* slickのステージで中央寄せ */
.slick-track {
	display: flex !important;
	align-items: stretch;
}
/* ===== 矢印ボタン ===== */
#intarviews .slick-prev, #intarviews .slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: background 0.3s, transform 0.3s;
	text-indent: -9999px;
}
#intarviews .slick-prev:hover, #intarviews .slick-next:hover {
	background: #fff;
	transform: translateY(-50%) scale(1.1);
}
/* 左右位置 */
#intarviews .slick-prev {
	left: -2vw;
}
#intarviews .slick-next {
	right: -2vw;
}
/* 矢印アイコン（疑似要素で描画） */
#intarviews .slick-prev::before, #intarviews .slick-next::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-top: 2px solid #2b7b6a;
	border-right: 2px solid #2b7b6a;
	position: absolute;
	top: 50%;
	left: 50%;
	transform-origin: center;
}
#intarviews .slick-prev::before {
	transform: translate(-50%, -50%) rotate(-135deg);
}
#intarviews .slick-next::before {
	transform: translate(-50%, -50%) rotate(45deg);
}
/* ===== ドット（ページネーション） ===== */
#intarviews ul.slick-dots {
	display: flex !important;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
	padding: 0;
	list-style: none;
}
#intarviews ul.slick-dots li {
	width: 12px !important;
	height: 12px !important;
	background: none !important;
	margin: 0 !important;
}
#intarviews ul.slick-dots button {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	border: none;
	padding: 0;
	text-indent: -9999px;
	cursor: pointer;
	transition: background 0.3s;
}
#intarviews .slick-dots .slick-active button {
	background: #fff;
}
/*life*/
#index #life {
	background: #EFF8F6;
	padding: 7px 0 40px;
}
#index #life h2 {
	font-size: 35px;
	font-weight: 700;
	color: #42A08A;
	margin: 0 0 20px;
	text-align: center;
}
#index #life h2 span {
	font-size: 16px;
	font-weight: 700;
	color: #191919;
	display: block;
	text-align: center;
}
#index #life .life-inner {
	
}
#index #life ul li {
	padding: 0 0 20px;
	border-bottom: 4px dashed #AFCBC4;
	margin: 0 20px 20px 0;
}
#index #life ul li:last-child {
	border-bottom: 0px dashed #AFCBC4;
}
#index #life ul li h3 {
	font-size: 18px;
	margin: 0 0 15px;
	color: #42A08A;
}
#index #life ul li p {
	font-size: 14px;
	line-height: 1.8;
}
#index #life .img {
	text-align: center;
	display: flex!important;
	overflow-x: auto; /* ← scroll より auto が自然 */
	padding: 10px 0 42px;
	margin: 0 0 22px;
	border-bottom: 4px dashed #AFCBC4;
}
#index #life .img img {
	width: 650px;
	flex-shrink: 0;
	max-width: 650px;
	
}
/* gallery */
#gallery {
	padding: 60px 0;
}
#gallery .loop-strip {
	height: 200px;
	margin: 0 0 30px;
	background: url("https://cont-p.com/izuman/wp-content/themes/izuman-recruit/images/index/gallery-01.jpg") repeat-x center/auto 100%;
	animation: slide-x 60s linear infinite;
}
/* 横にスライドする */
@keyframes slide-x {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -2240px 0;
	}
}
#gallery .loop-strip-reverse {
	height: 200px;
	background: url("https://cont-p.com/izuman/wp-content/themes/izuman-recruit/images/index/gallery-02.jpg") repeat-x center/auto 100%;
	animation: slide-x2 60s linear infinite;
}
/* 横にスライドする */
@keyframes slide-x2 {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 2240px 0;
	}
}
/* contact */
#contact-part {
	background: #EFF8F6;
	padding: 60px 0;
}
#contact-part h2 {
	font-size: 35px;
	color: #55AC97;
	text-align: center;
	font-weight: 700;
}
#contact-part p {
	font-size: 16px;
	text-align: center;
	font-weight: 700;
	margin: 0 0 40px;
}
#contact-part ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	
}
#contact-part ul li {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #fff;
	border-radius: 25px;
	padding: 40px 0px;
	box-shadow:-1px 2px 8px 0px rgba(0, 0, 0, 0.3);
	margin: 0 0 30px;
}
#contact-part ul li .img {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 133px;
	margin: 0 0 30px;
}
/* sec-img */
#sec-img {
	position: relative;
}
#sec-img .img img {
	width: 100%;
	height: 490px;
	object-fit: cover;
}
#sec-img .txt {
	position: absolute;
	top: 0;
	right: 10vw;
	z-index: 99;
	width: 32vw;
}

/* map */
#map {
	padding: 60px 0;
}
#map h2 {
	font-size: 35px;
	font-weight: 700;
	color: #42A08A;
	margin: 0 0 40px;
	text-align: center;
}
#map h2 span {
	font-size: 16px;
	font-weight: 700;
	color: #191919;
	display: block;
	text-align: center;
	
}
#map .map-tab {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#map .map-tab .txt {
	
}
#map .map-tab .img {
	
}
#map .tab-list {
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
}
#map .tab-btn {
	cursor: pointer;
	font-size: 16px;
	color: #A3A3A3;
	position: relative;
	margin: 0 0 10px;
}
#map .tab-btn::before {
	content: "●";
	color: #A3A3A3;
}
.tab-btn + .tab-btn {}
#map .tab-btn.is-active {
	color: #1F1F1F;
}
#map .tab-btn.is-active::before {
	content: "●";
	color: #42A08A;
}
#map .tab-panels .tab-panel {
	display: none;
}
#map .tab-panels .tab-panel.is-active {
	display: block;
}
#map .txt .tab-panels {
	background: #fff;
	border-radius: 15px;
	box-shadow:-1px 2px 8px 0px rgba(0, 0, 0, 0.3);
	padding: 40px 20px;
	margin: 0 0 40px;
}
#map .txt .tab-panels .address {
	padding: 0 0 30px;
	margin: 0 0 30px;
	border-bottom: 1px solid #D1D1D1;
}
#map .txt .tab-panels .address h3 {
	font-size: 23px;
	color: #42A08A;
	font-weight: 600;
	margin: 0 0 15px;
}
#map .txt .tab-panels .address p {
	font-size: 14px;
	color: #1F1F1F;
}
#map .txt .tab-panels .address2 h4 {
	font-size: 16px;
	margin: 0 0 10px;
}
#map .txt .tab-panels .address2 p {
	font-size: 14px;
	margin: 0 0 10px;
}
#map .txt .tab-panels .company-img {
	margin: 20px 0 0;
}
#map .img .tab-panels iframe {
	width: 100%;
	height: 370px;
	object-fit: cover;
}
#map .img .map-common {
	margin: 0 0 20px;
}
#map .img .map-common img{
	box-shadow:-1px 2px 8px 0px rgba(0, 0, 0, 0.3);
	border-radius: 20px;
}


#map .img .tab-panels iframe {
	border-radius: 20px;
	;
}
/* btm-img */
#btm-img {
	display: none;
}
body.home #btm-img {
	display: block;
}
body.home #btm-img img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}
/* information */
#information {
	padding: 70px 0 140px;
	background: url("https://cont-p.com/izuman/wp-content/themes/izuman-recruit/images/common/info-img.jpg") right bottom no-repeat;
	background-size: cover;
}
#information h2 {
	font-size: 35px;
	font-weight: 700;
	color: #42A08A;
	margin: 0 0 50px;
	text-align: center;
}
#information h2 span {
	font-size: 16px;
	font-weight: 700;
	color: #191919;
	display: block;
	text-align: center;
}
#information ul {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#information ul li {
	margin: 0 0 40px;
}
/* --------------------------------------------------------------------------------
	faq
-------------------------------------------------------------------------------- */
#faq {
	margin: 0 0 100px;
}
#faq h2 {
	margin: 0 0 50px;
}
#faq .page-link ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
	
}
#faq .page-link li {
	cursor: pointer;
	
	border: 2px solid #56AC97;
	transition: all .2s;
	background: #D8EAE5;
	color: #56AC97;
	width: 47%;
	font-size: 14px;
}
#faq .page-link li a {
	color: #56AC97;
	padding: 8px 10px;
	display: block;
}
#faq .page-link li.active {
	background: #55AC97;
	color: #fff;
}
#faq .page-link li.active a {
	color: #fff;
}
/* ===== FAQブロック（ふわっと切り替え） ===== */
#faq .faq-block {
	
	margin: 0 auto;
	opacity: 0;
	visibility: hidden;
	height: 0;
	overflow: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease, height 0s linear 0.5s;
}
#faq .faq-block.active {
	opacity: 1;
	visibility: visible;
	height: auto;
	overflow: visible;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}
/* ===== 全体リスト ===== */
#faq .faq_item {
	border-bottom: 1px solid #C6C6C6;
	padding: 20px 0;
}
/* ===== 質問部分 ===== */
#faq .faq_item .question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	position: relative;
}
#faq .faq_item .question p {
	margin: 0;
	font-size: 16px;
	color: #333;
	font-weight: 600;
}
#faq .faq_item .question::after {
	content: "";
	background-image: url(https://izuman.jp/recruit-site/wp-content/themes/izuman-recruit/images/faq/i-faq-arr.svg);
	transform: rotate(-180deg);
	transition: transform 0.3s ease;
	width: 29px;
	height: 29px;
	flex-shrink: 0;
}
#faq .faq_item.open .question::after {
	transform: rotate(0deg);
}
/* ===== 回答部分 ===== */
#faq .faq_item .answer {
	margin-top: 20px;
	display: none;
	animation: fadeIn 0.4s ease;
}
#faq .faq_item.open .answer {
	display: block;
}
#faq .faq_item .answer-text {
	display: flex;
	font-size: 16px;
	color: #55AC97;
	margin-left: 1.5em;
	margin-bottom: 20px;
}
#faq .faq_item .answer-text a {
	font-size: 16px;
}
/* ===== フェードアニメーション ===== */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
/* --------------------------------------------------------------------------------
	news
-------------------------------------------------------------------------------- */
#news {
	margin: 0 0 100px;
}
#news h2 {
	margin: 0 0 50px;
}
#news .news-block {
	margin: 0 auto;
	transition: opacity 0.5s ease, visibility 0.5s ease, height 0s linear 0.5s;
}
#news .news-block ul li {
	border-bottom: 1px solid #C6C6C6;
	padding: 20px 0;
}
#news .news-block li {
	display: flex;
	flex-wrap: wrap;
	cursor: pointer;
	position: relative;
}
#news .news-block li p.date {
	flex-shrink: 0;
	margin: 0 0 10px;
	font-size: 13px;
	color: #1F1F1F;
	width: 80vw;
}
#news .news-block li p.title {
	margin: 0;
	font-size: 16px;
	color: #333;
	font-weight: 600;
}

#news .news-block li a {
	position: relative;
	display: flex;
	align-items: center;
}

#news .news-block li a::after {
	content: "";
	background-image: url(https://izuman.jp/recruit-site/wp-content/themes/izuman-recruit/images/faq/i-faq-arr.svg);
	transform: rotate(90deg);
	transition: transform 0.3s ease;
	width: 29px;
	height: 29px;
	flex-shrink: 0;
	margin-left: auto;
	margin: 0 0 0 10px;
}
/* --------------------------------------------------------------------------------
	privacypolicy
-------------------------------------------------------------------------------- */
#privacy-policy {
	margin: 0 0 100px;
}
#privacy-policy h2 {
	margin: 0 0 50px;
}
#privacy-policy .privacy-block {
	margin: 0 auto;
}
#privacy-policy .heading {
	font-size: 14px;
	margin: 0 0 40px;
}
#privacy-policy ul li {
	font-size: 14px;
	margin: 0 0 40px;
}
#privacy-policy ul li h3 {
	margin: 0 0 10px;
}
/* --------------------------------------------------------------------------------
	Contact
-------------------------------------------------------------------------------- */
#page-contact {
	margin: 0 0 100px;
}
#page-contact h2 {
	margin: 0 0 50px;
}
#page-contact p.txt {
	font-size: 14px;
	text-align: center;
	margin: 0 0 60px;
	line-height: 2;
}
#page-contact .contact-block {
	
}
#page-contact .contact-block dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#page-contact .contact-block dt.left {
	display: inline-block;
	width: 280px;
	margin: 0 0 20px;
}
#page-contact .contact-block dt.left.txt-top {
	vertical-align: top;
}
#page-contact .contact-block dd {
	margin-bottom: 45px;
}
#page-contact .contact-block dd.right {
	display: inline-block;
	width: 500px;
}
#page-contact .contact-block span.required {
	display: inline-block;
	background: #EA3525;
	text-align: center;
	color: #fff;
	font-size: 12px;
	padding: 2px 15px;
	border-radius: 999px;
	margin: 0 10px 0 0;
}
#page-contact .contact-block input {
	padding: 5px 10px;
	width: 100%;
}
#page-contact .contact-block textarea {
	min-height: 410px;
	width: 100%;
	padding: 5px 10px;
}
#page-contact .contact-block .btn.red {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 340px;
	height: 55px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: bold;
	background: #EA3525;
	border-radius: 999px;
	color: #fff;
	transition: background 0.3s;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	border: none;
	cursor: pointer;
}
#page-contact .contact-block .btn.red:disabled {
	background: #ccc; /* グレー背景 */
	color: #888; /* 文字も少し薄く */
	cursor: not-allowed; /* 押せない雰囲気 */
	box-shadow: none; /* 影を消す（任意） */
}
#page-contact .contact-block .btn.red:disabled:hover {
	background: #ccc; /* グレー背景 */
	color: #888; /* 文字も少し薄く */
	cursor: not-allowed; /* 押せない雰囲気 */
	box-shadow: none; /* 影を消す（任意） */
}
/* hover時 */
#page-contact .contact-block .btn.red:hover {
	background: #c52b1f;
}



#page-contact .contact-block .btn.blk {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 340px;
	height: 55px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: bold;
	background: #191919;
	border-radius: 999px;
	color: #fff;
	transition: background 0.3s;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	border: none;
	cursor: pointer;
}
#page-contact .contact-block .btn.blk:disabled {
	background: #ccc; /* グレー背景 */
	color: #888; /* 文字も少し薄く */
	cursor: not-allowed; /* 押せない雰囲気 */
	box-shadow: none; /* 影を消す（任意） */
}
#page-contact .contact-block .btn.blk:disabled:hover {
	background: #ccc; /* グレー背景 */
	color: #888; /* 文字も少し薄く */
	cursor: not-allowed; /* 押せない雰囲気 */
	box-shadow: none; /* 影を消す（任意） */
}
/* hover時 */
#page-contact .contact-block .btn.red:hover {
	background: #c52b1f;
}






#page-contact .contact-block .acceptance label {
	display: flex;
	align-items: center;
}
#page-contact .contact-block .acceptance label input {
	width: 24px;
	padding: 0;
}
.wpcf7-list-item {
	display: inline-block;
	margin: 0;
}

#page-contact .btn-list {
	margin: 100px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:20px;
}


#page-contact .thk-txt {
	text-align: center;
}
#page-contact .thk-txt h3 {
	font-size: 16px;
	margin: 0 0 20px;
}

#page-contact .thk-txt p {
	font-size: 14px;
	
}


/* --------------------------------------------------------------------------------
	recruit-info
-------------------------------------------------------------------------------- */
#recruit-info {
	margin: 0 0 100px;
}
#recruit-info h2 {
	margin: 0 0 50px;
}
#recruit-info .info-block {
	background: #EFF8F6;
	padding: 40px 20px;
	margin: 0 auto;
}
#recruit-info .info-block h3 {
	font-size: 30px;
	color: #55AC97;
	margin: 0 0 20px;
}
#recruit-info .info-block h3 span {
	display: flex;
	align-items: center;
	position: relative;
	font-size: 18px;
	color: #191919;
}
#recruit-info .info-block h3 span::before {
	content: '';
	border-bottom: 1px solid #191919;
	width: 75px;
	margin: 0 10px 0 0;
}
#recruit-info .info-block .date {
	text-align: right;
	color: #7B7B7B;
	font-size: 14px;
	margin: 0 0 50px;
}
#recruit-info .info-block h4 {
	position: relative;
	font-size: 20px;
	margin: 0 0 20px;
}
#recruit-info .info-block h4::before {
	content: '●';
	margin: 0 10px 0 0;
	color: #55AC97;
}
#recruit-info .info-block p {
	font-size: 16px;
	margin: 0 0 40px;
}
#recruit-info .info-block ul {
	display: flex;
	flex-wrap: wrap;
}
#recruit-info .info-block ul li {
	margin: 0 15px 30px 0;
}
#recruit-info .info-block ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80vw;
	background: #EA3525;
	color: #fff;
	font-size: 18px;
	padding: 15px 0;
	border-radius: 999px;
}


#recruit-info .recruitment-fin {
	margin: 60px 0 0;
	padding: 60px 0 0;
	border-top: 2px dashed #DBDBDB;
}

#recruit-info .recruitment-fin li{
	display: flex;
        justify-content: center;
        align-items: center;
        width: 80vw;
        background: #ADADAD;
        color: #fff;
        font-size: 18px;
        padding: 15px 0;
        border-radius: 999px;
}






/* --------------------------------------------------------------------------------
	benefits
-------------------------------------------------------------------------------- */
#benefits {
	margin: 0 0 100px;
}

#benefits .page-ttl p {
    font-size: 30px;
	letter-spacing: -0.05em;
       
    }

#benefits h2 {
	margin: 0 0 40px;
}

#benefits h3 {
	text-align: center;
	font-size: 18px;
	margin: 0 0 40px;
}

#benefits ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 0 70px;
}
#benefits ul li {
	width: 300px;
	border: 1px solid #42A08A;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 35px;
}

#benefits ul li.last {
	width: 300px;
	border: 0px solid #42A08A;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding:40px 10px 0;
}


/* トリガーの当たり判定を少し広げる */
.info-trigger { display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; cursor:help; }

/* 吹き出し本体：最初は非表示 */
.popup{
  position: absolute;
  left: 50%;
  top: calc(95% + 0px);       /* p の下に出す */
  transform: translate(-50%, -8px);
  min-width: 260px;
  max-width: min(82vw, 420px);
  padding: 16px 18px;
  background: #2BAA97;         /* サイトのグリーンに合わせる */
  color: #fff;
  line-height: 1.8;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index: 5;
}

/* 吹き出しの三角 */
.popup::before{
  content:"";
  position:absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right:10px solid transparent;
  border-bottom:10px solid #2BAA97;
}

/* ホバー/フォーカスで表示（:has を使用） */
p:has(.info-trigger:hover) ~ .popup,
p:has(.info-trigger:focus) ~ .popup {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}




#benefits ul li h3 {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 15px;
}
#benefits ul li .img {
	margin: 0 0 20px;
}
#benefits ul li p {
	font-size: 13px;
	margin-top: auto;
}
/* --------------------------------------------------------------------------------
	about
-------------------------------------------------------------------------------- */
#about {
	margin: 0 0 100px;
}
#about h2 {
	margin: 0 0 45px;
}
#about .mv {
	width: 100%;
	margin: 0 auto 30px;
}
#about .message {
	position: relative;
	margin: 0 0 60px;
}
#about .message h3 {
	font-size: 30px;
	color: #37964D;
	line-height: 1.2;
	margin: 0 0 30px;
	font-family: "Roboto", "Noto Sans JP", sans-serif;
	font-weight: 400!important;
}
#about .message h3 span {
	font-size: 16px;
	display: block;
	color: #37964D;
}
#about .message .message-inner {
	display: flex;
	flex-direction: column;
	
}
#about .message .message-inner .txt {
	width:100%;
	margin: 0 0 30px;
}
#about .message .message-inner .txt h4 {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 20px;
}
#about .message .message-inner .txt p {
	font-size: 14px;
	margin: 0 0 40px;
}
#about .message .message-inner .owner-name {
	text-align: right;
	margin: 30px 0 0;
}
#about .message .message-inner .owner-name p {
	margin: 0 20px 5px 0;
}
#about .message .message-inner .img {}


#about #company-profile {
	width: 100%;
	background: #42A08A;
	display: flex;
	flex-direction: column;
	padding: 90px 0 70px;
	
}
#about #company-profile .img {
	width: 80vw;
	margin: 0 0 30px;
	position: relative;
}
#about #company-profile .img img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}
#about #company-profile .img h3 {
	position: absolute;
	top: -7vw;
	left: 28%;
	transform: translateX(-25%);
	width: 75vw;
	font-size: 8vw;
	color: #fff;
	font-family: "Roboto", "Noto Sans JP", sans-serif;
	font-weight: 400!important;
	
}

#about #company-profile .txt{
	padding: 0 20px;
}

#about #company-profile .txt h3 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 14px;
	color: #fff;
}

#about .company-table {
	display: grid;
	grid-template-columns: 40vw 1fr;
	border: 1px solid #fff;
}
#about .company-table dt, #about .company-table dd {
	margin: 0;
	padding: 14px 16px;
	border-bottom: 1px solid #fff;
	font-size: 14px;
}
#about .company-table dt {
	background: #fff;
	color: #42A08A;
	font-weight: 700;
	border-bottom: 1px solid #37964D;
}
#about .company-table dd {
	color: #fff;
	line-height: 1.7;
}
#about .company-table dt:nth-last-child(2), #about .company-table dd:last-child {
	border-bottom: none;
}

#about #company-map {
	padding: 50px 20px;
}

#about #company-map .company-map-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

#about #company-map .img{
	margin: 0 0 40px;
	
	
}

#about #company-map .img img{
	/*width: 100%;
	height: 330px;
	object-fit: cover;*/
	
	
}
#about #company-map .txt {
	margin: 0 0 40px;
}
#about #company-map h3 {
	font-size: 35px;
	color: #42A08A;
	margin: 0 0 30px;
	text-align: center;
	font-family: "Roboto", "Noto Sans JP", sans-serif;
	font-weight: 400!important;
}
#about #company-map h3 span {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #191919;
	text-align: center;
}
#about #company-map ul li {
	font-size: 16px;
	position: relative;
	margin: 0 0 10px;
	display: flex;
}
#about #company-map ul li::before {
	content: "●";
	color: #42A08A;
	margin: 0 10px 0 0;
}
#about #company-map .philosophy {
	display: flex;
	justify-content: center;
	
}
/* --------------------------------------------------------------------------------
	history
-------------------------------------------------------------------------------- */
#history {
	background: #EFF8F6;
	padding: 90px 20px;
}
#history .history-inner {
	position: relative;
}
#history h3 {
	font-size: 35px;
	color: #55AC97;
	margin: 0 0 50px;
	font-family: "Roboto", "Noto Sans JP", sans-serif;
	font-weight: 400!important;
}
#history h3 span {
	font-size: 16px;
	color: #191919;
	display: block;
}
/* ---- timeline ---- */
#history .timeline {
	position: relative;
	margin: 0;
	
}
/* 中央の縦ライン */
#history .timeline::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #3aa18b;
}
/* 各項目 */
#history .timeline .item {
	position: relative;
	padding: 14px 0 14px 30px;
	display: flex;
	font-size: 14px;
}
/* ドット */
#history .timeline .item::before {
	content: "";
	position: absolute;
	left: -5px;
	top: 22px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #3aa18b;
}
/* 年 + 本文 */
#history .timeline time {
	display: inline-block;
	width: 72px;
	color: #3aa18b;
	font-weight: 700;
	margin-right: 8px;
	flex-shrink: 0;
	font-size: 16px;
}
#history .timeline .decade {
	position: relative;
	margin: 80px 0;
	background: #EFF8F6;
}
.timeline .decade .decade-label {
	content: attr(data-decade);
	position: absolute;
	left:25px;
	top: -70px;
	font-size: 40px;
	color: #DBDBDB;
	font-weight: 700;
	letter-spacing: .05em;
}
.timeline .decade .decade-label .year {
	font-size: 40px;
}
.timeline .decade .decade-label .suffix {
	font-size: 20px;
	margin-left: 4px;
}
/* --------------------------------------------------------------------------------
	history
-------------------------------------------------------------------------------- */
#service {
	padding: 50px 0 0;
}
#service h3 {
	text-align: center;
	font-size: 35px;
	color: #E5F0F5;
	margin: 0 0 50px;
}
#service h3 span {
	font-size: 20px;
	color: #191919;
	display: block;
	text-align: center;
}
#service .img {
	display: flex;
	justify-content: center;
}
/* --------------------------------------------------------------------------------
	Job Description
-------------------------------------------------------------------------------- */
#description {
	padding: 50px 0 0;
}
#description h3 {
	text-align: center;
	font-size: 35px;
	color: #E5F0F5;
	margin: 0 0 50px;
}
#description h3 span {
	font-size: 20px;
	color: #191919;
	display: block;
	text-align: center;
}
#description ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	margin: 0 0 50px;
}
#description ul li {
	
}
#description ul li .img {
	margin: 0 0 20px;
}
#description ul li p {
	font-size: 14px;
}
#description .img-list {
	display: flex;
	justify-content: center;
	padding: 0 20px;
}
/* --------------------------------------------------------------------------------
	welfare
-------------------------------------------------------------------------------- */
#welfare {
	padding: 50px 0 0;
}
#welfare h3 {
	text-align: center;
	font-size:35px;
	color: #E5F0F5;
	margin: 0 0 50px;
}
#welfare h3 span {
	font-size: 20px;
	color: #191919;
	display: block;
	text-align: center;
}
#welfare ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0 0 40px;
	padding: 0 10px;
}
#welfare ul li {
	border: 1px solid #42A08A;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 35px;
}
#welfare ul li h3 {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 15px;
	color: #191919;
}
#welfare ul li .img {
	margin: 0 0 20px;
}
#welfare ul li p {
	font-size: 13px;
	margin-top: auto;
}
#welfare .btn {
	display: flex;
	justify-content: center;
}
/* --------------------------------------------------------------------------------
	flow
-------------------------------------------------------------------------------- */
#flow {
	padding: 100px 0 0;
}
#flow h3 {
	text-align: center;
	font-size: 23px;
	color: #191919;
	margin: 0 0 20px;
}
#flow h4 {
	font-size: 18px;
	color: #55AC97;
	text-align: center;
	margin: 0 0 20px;
}
#flow p {
	font-size: 15px;
	color: #191919;
	text-align: center;
	margin: 0 0 70px;
	line-height: 2;
}
#flow .img {
	display: flex;
	justify-content: center;
}
/* --------------------------------------------------------------------------------
	voice
-------------------------------------------------------------------------------- */
#voice {
	margin: 0 0 100px;
}
body.single #voice {
	margin: 0;
}
#voice h2 {
	margin: 0 0 50px;
}
#voice #voice-area {
	
}
#voice .voice-block {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 0 0 500px;
	flex-direction: column-reverse;
	
}
#voice .voice-block .txt {
	
}
#voice .voice-block .txt h3 {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 0 0 20px;
	min-height: 13em;
}
#voice .voice-block .txt h3 span {
	background: #55AC97;
	color: #fff;
	font-size: 16px;
	padding: 5px 20px;
	margin: 0 0 15px;
}
#voice .voice-block .profile-box {
	position: absolute;
	background: #fff;
	padding: 30px 20px 40px;
	border-radius: 16px;
	display: flex;
	justify-content: space-between;
	width:80vw;
	top: 92vw;
	left: 0;
	right: 0;
	margin: 0 auto;
}
#voice .voice-block .staff-desc {
	flex-shrink: 0;
	padding: 0 1em 0 0;
}
#voice .voice-block .staff-dept {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 999px;
	background: #55AC97;
	color: #fff;
	font-size: 10px;
	text-align: center;
}
#voice .voice-block .staff-name {
	font-size: 33px;
	font-weight: bold;
}
#voice .voice-block .staff-join {
	font-size: 14px;
	font-weight: bold;
}
#voice .voice-block .staff-profile {
	
}
#voice .voice-block .staff-profile h4 {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 10px;
	color: #55AC97;
}
#voice .voice-block .staff-profile p {
	font-size: 13px;
	font-weight: bold;
	line-height: 2;
}
#voice .voice-block .img {
	position: absolute;
	z-index: -1;
	right: 0;
	top:32vw;
}
#voice .voice-block .btn {
	position: absolute;
	z-index: 99;
	bottom: -100vw;
	right: 0;
	left: 0;
	margin: 0 auto;
}
#voice .voice-block .btn a{
	
	margin: 0 auto;
}

/*社員の声詳細*/
body.single #voice .voice-block {
	margin: 0 0 60px;
}
#voice .interview-box {
	margin: 90vw 0 0;
	padding: 0 20px;
}
#voice .interview-box ul li {
	margin: 0 auto 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#voice .interview-box ul li .interview-img {
	margin: 0 0 40px;
}

#voice .interview-box ul li .interview-img img {
	border-radius: 20px;
}

#voice .interview-box ul li h3 {
	font-size: 18px;
	font-weight: bold;
	color: #55AC97;
	padding: 0 0 10px;
	margin: 0 0 20px;
	border-bottom: 4px dotted #AFCBC4;
	position: relative;
	display: flex;
	align-items: center;
}
#voice .interview-box ul li h3::before {
	content: "";
	background-image: url(https://izuman.jp/recruit-site/wp-content/themes/izuman-recruit/images/voice/i-q.svg) ;
	background-repeat: no-repeat;
	width: 35px;
	height: 47px;
	flex-shrink: 0;
	margin: 0 10px 0 0;
	
}
#voice .interview-box ul li p {
	font-size: 16px;
	font-weight: bold;
}
#voice .staff-img {
	text-align: center;
	margin: 0 0 40px;
}
#voice .staff-img img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}
#voice #time-schedule {
	margin: 0 0 100px;
}
#voice #time-schedule .inner {
	
	text-align: center;
}
#voice #messaag {
	margin: 0 0 60px;
}
#voice #messaag .msg-inner {
	display: flex;
	flex-direction: column;
}
#voice #messaag .msg-inner .txt {
	margin: 0 0 40px;
}
#voice #messaag .msg-inner .txt h3 {
	font-size: 40px;
	font-weight: bold;
	color: #55AC97;
	padding: 0 0 10px;
	margin: 0 0 20px;
	
	position: relative;
	
}
#voice #messaag .msg-inner .txt h3 span {
	font-size: 16px;
	font-weight: bold;
	color: #55AC97;
	display: block;
}
#voice #messaag .msg-inner .txt p {
	font-size: 16px;
	font-weight: bold;
	line-height: 2;
}
#voice #messaag .msg-inner .img {
	width: 100%;
}
#voice #cp-comment {
	margin: 160px 0 100px;
}
#voice #cp-comment .comment-inner {
	margin: 0 auto;
	background: #EFEFEF;
	border-radius: 20px;
	padding: 40px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}
#voice #cp-comment .comment-inner::before {
	position: absolute;
	content: "";
	background-image: url(https://izuman.jp/recruit-site/wp-content/themes/izuman-recruit/images/voice/i-comment.svg);
	width: 96px;
	height: 99px;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: -99px;
}
#voice #cp-comment .comment-inner h3 {
	font-size: 23px;
	color: #55AC97;
	margin: 0 0 20px;
}
#voice #cp-comment .comment-inner p {
	font-size: 15px;
	font-weight: bold;
	line-height: 2;
}
#voice #intarviews {
	padding: 90px 0 10px;
	background: #EFF8F6;
	border-top: 1px solid #fff;
	border-bottom: 0px solid #fff;
}
#voice #intarviews h2 {
	font-size: 35px;
	color: rgba(25, 25, 25, 0.1);
	text-align: center;
	font-weight: bold;
}
#voice #intarviews h2 span {
	font-size: 20px;
	font-weight: bold;
	color: #191919;
	display: block;
	text-align: center;
}
#voice #intarviews ul.interview-list li {
	background: #fff;
	width: 80vw !important;
	margin: 0 20px;
	border-radius: 20px 20px 0 0;
	border: 2px solid #54AC97;
}
#voice #intarviews ul.slick-dots li {
	width: 12px !important;
	height: 12px !important;
	background: none !important;
	margin: 0 !important;
	border: 0px solid #54AC97 !important;
}



/* --------------------------------------------------------------------------------
	single
-------------------------------------------------------------------------------- */
#page-single {
	margin: 0 0 100px;
}
#page-single h2 {
	margin: 0 0 50px;
}

#page-single .single-block {
	
}

#page-single .ttl {
	margin: 0 0 20px;
}


#page-single h3 {
	font-size: 16px;
	margin: 0 0 10px;
}


#page-single .single-block .date{
	font-size: 12px;
	text-align: right;
}


/* ページネーション（前後記事リンク） */
.single-block .pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 120px 0 0;
}

/* aタグの基本デザイン */
.single-block .pagination a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #42A08A; 
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* hover時 */
.single-block .pagination a:hover {
  background-color: #42A08A;
  transform: translateY(-2px);
}

/* 中央寄せにしたい場合 */
.single-block .pagination:only-child {
  justify-content: center;
}

/* 矢印が1つだけのとき中央に */
.single-block .pagination .page-numbers:only-child {
  margin: 0 auto;
}


