@charset "utf-8";
/**************************************************
** [ブレイクポイント]
** 640pxまで：スマホ横位置(小)・スマホ縦位置
** 641px～968pxまではタブレット
** 969px～1280pxまではデスクトップ
** 1281px以上：PC・大型端末
**************************************************/

/* Large desktop 2*/
@media all and (min-width: 1681px) {
}
/* Large desktop 1 */
@media all and (min-width: 1281px) and (max-width: 1680px) {
}
/* tablet & PC */
@media all and (min-width: 969px) and (max-width: 1280px) {
}
/* tablet */
@media all and (min-width: 641px) and (max-width: 968px) {
}
/* mobile */
@media all and (max-width: 640px) {
}

/* ===================================================================
   common layout
=================================================================== */
html,body{
    height:100%;
}

body {
	font-size: 100%;
    line-height: 160%;
    font-family: 'Noto Sans JP', sans-serif;
    font-display: swap;
    color: #000;  
}

#container {
	width:auto;	
	position: relative;
    min-height: 100%;
    height: auto !important;
    height: 100%;
    overflow: hidden;
    background: #fff;
}

#container:after {
    content: "";
    display: block;
    height: 0; 
}
    
body > #container {
    height: auto;
}

#container a {
	text-decoration: none;
}
#container a:hover {
	text-decoration: underline;
}
#container a.underline {
	text-decoration: underline!important;
}

/*----------------------------------- 
  only PC / only SP
------------------------------------*/
@media all and (min-width: 969px) {
.pc { display: block; }
.pc-inlineblock { display: inline-block; }
.sp { display: none; }
}
@media all and (max-width: 968px) {
.pc { display: none!important; }
.pc-inlineblock { display: none!important; }
.sp { display: block!important; }
}


/*----------------------------------- 
  pagetop
------------------------------------*/
.pagetop{
  position: fixed;
  right: 0;
  bottom: 0;
  font-size: 50px;
  color: #fff;
  background: #000;
  padding: 30px;
  cursor: pointer;
  transition: .3s;
  z-index: 1;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}


/*装飾*/
.pagetop::before {
    content: "";
    position: absolute;
    top: 40%;
    left: 50%;
    width: 23px;
    height: 1px;
    background-color: #FFFFFF;
    transform: translateX(-50%)
}

.pagetop::after {
    content: "";
    position: absolute;
    top: 60%;
    left: 50%;
    width: 16px;
    height: 16px;
    border-bottom: solid 1px #FFFFFF;
    border-right: solid 1px #FFFFFF;
    transform: translateX(-50%) rotate(225deg)
}
.pagetop span {
	display: none;
}



/*----------------------------------- 
  下層 common background
------------------------------------*/
/*ページ背景*/
.bg-grn {
	background-color: #B3C79C!important;
	position: relative;
}
.bg-beige {
	background-color: #F2EDE2!important;
	position: relative;
}
.bg-photo {
	background-image: url("../images/culture/bg_photo_pc.jpg")!important;
	background-position: top;
	background-repeat: repeat-y;
	background-size: cover;
	position: relative;
}
.bg-pale-beige {
	background-color: #FAF9F2!important;
	position: relative;
}

.contents-box-normal {
	background-color: #fff;
	width: 1000px;
	margin: 120px auto 0;
	padding: 0;
	position: relative;
}
.contents-box-frame {
	width: 1030px;
	margin: 200px auto 0;
	padding: 60px 0;
	position: relative;
	background: #fff;
	outline: 15px solid #F2EDE2;
    outline-offset: -15px;
}
.contents-box-irregular {
	background-image: url("../images/common/bg_white.svg")!important;
	background-size: 1000px;
	background-repeat: repeat-y;
	background-position: top center;
	margin: 0;
	padding: 0;
	position: relative;
}
.contents-box-transparent {
	background-color: none;
	width: 1000px;
	margin: 120px auto 0;
	padding: 0;
	position: relative;
}

@media all and (min-width: 969px) and (max-width: 1100px) {
	.contents-box-normal {
	width: 94%;
	}
	.contents-box-frame {
	width: 96%;
	}
	.contents-box-irregular {
	background-size: 94%;
	}
	.contents-box-transparent {
	width: 94%;
	}
}



/*----------------------------------- 
  header
------------------------------------*/
header {
	width: 100%;
	height: 62px;
	margin: 0 auto;
	padding: 15px 0 5px 0;
	color: #fff;
	position: fixed;
	z-index: 10;
	transition: 0.5s;
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	background-image: url("../images/common/navbg.svg");
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
}

header .head-inner {
	max-width: 96%;
	margin: 0 auto;
	position: relative;
	display: flex;
	text-align: center;
	justify-content: center;
}

header .head-inner h1.logo {
	margin: 0 10px;
	width: 120px;
	height: auto;
	text-align: center;
	line-height: 1.5rem;
}

header .head-inner h1.logo img {
	max-width: 100%;
	transition: 0.2s;
}
header .head-inner h1.logo span {
	display: block;
	font-size: 18px;
	line-height: 1.5rem;
	color: #fff;
	font-weight: bold;
	padding: 3px 0;
	letter-spacing: 0.1rem;
}
header .head-inner h1.logo a {
	display: block;
}
header .head-inner h1.logo a:hover {
	opacity: 0.8;
}
header .head-inner h1.logo a:hover img {
	opacity: 0.95;
}
header .head-inner .globalNavi {
	display: flex;
	color: #fff;	
	text-align: center;
	margin: 0 10px;
}
header .head-inner .globalNavi li {
	margin: 0 12px;	
	list-style: none!important;
}
header .head-inner .globalNavi li a {
	font-size: 17px;
	line-height: 1.2rem;
	list-style: none!important;
	text-align: center;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0.1rem;
}
header .head-inner .globalNavi li.current a {
	color: #3A571A;
}/*current*/
.post-careers header .head-inner .globalNavi li.careers a,
.post-staff header .head-inner .globalNavi li.staff a {
	color: #3A571A;
}/*current*/

header .head-inner .globalNavi li a:hover {
	opacity: 0.8;
}
header .head-inner .globalNavi li span {
	display: block;
	font-size: 72%;
	font-weight: 300;
	letter-spacing: 0rem;
}
header .head-inner .globalNavi li.btn-entry {
	padding: 10px 0;
}
header .head-inner .globalNavi li.btn-entry a {
	display: block;
	background-color: #fff;
	color: #809B66;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1rem;
	border-radius: 20px;
	padding: 5px 15px;
}
header .head-inner .globalNavi li.btn-entry a:hover {
	opacity: 0.8;
}


/*2024 追加*/
/*募集要項*/
header .head-inner .globalNavi li.btn-requirements {
	padding: 5px 0;
	margin: 0 5px;
}
header .head-inner .globalNavi li.btn-requirements a {
	display: block;
	background-color: #426917;
	color: #fff;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.1rem;
	border-radius: 20px;
	padding: 10px 15px;
	letter-spacing: 0;
}
header .head-inner .globalNavi li.btn-requirements a:hover {
	opacity: 0.8;
}
/*応募フォーム*/
header .head-inner .globalNavi li.btn-entryform {
	padding: 5px 0;
	margin: 0 5px;
}
header .head-inner .globalNavi li.btn-entryform a {
	display: block;
	background-color: #FFEB00;
	color: #000;
	font-weight: 400;
	font-size: 15px;
	letter-spacing: 0.1rem;
	border-radius: 20px;
	padding: 10px 15px;
	letter-spacing: 0;
}
header .head-inner .globalNavi li.btn-entryform a:hover {
	opacity: 0.8;
}
/*スマホ用ボタン PCでは非表示*/
header .head-inner .gnavi__btns {
	display: none;
}
/*2024 追加*/

@media all and (min-width: 1281px) and (max-width: 1340px) {
	header .head-inner .globalNavi li {
	margin: 0 10px;
	}
	header .head-inner .globalNavi li a {
	font-size: 16px;
	letter-spacing: 0.05rem;
	}
}

@media all and (min-width: 1161px) and (max-width: 1280px) {
	header .head-inner h1.logo {
	margin: 0 15px 0 0;
	width: 110px;
	height: auto;
	}
	header .head-inner .globalNavi li {
	margin: 0 8px;
	}
	header .head-inner .globalNavi li a {
	font-size: 16px;
	letter-spacing: 0.05rem;
	}
	/*2024 追加*/
	header .head-inner .globalNavi li.btn-requirements,
	header .head-inner .globalNavi li.btn-entryform {
	padding: 8px 0;
	}
	header .head-inner .globalNavi li.btn-requirements a,
	header .head-inner .globalNavi li.btn-entryform a {
	font-size: 14px;
	border-radius: 15px;
	padding: 6px 8px;
	letter-spacing: 0;
	}
}

@media all and (min-width: 969px) and (max-width: 1160px) {
	header .head-inner h1.logo {
	margin: 0 5px 0 0;
	width: 110px;
	height: auto;
	}
	header .head-inner .globalNavi {
	margin: 0 5px;
	}
	header .head-inner .globalNavi li {
	margin: 0 5px;
	}
	header .head-inner h1.logo span {
	font-size: 16px;
	}
	header .head-inner .globalNavi li a {
	font-size: 16px;
	letter-spacing: 0rem;
	}
	header .head-inner .globalNavi li span {
	font-size: 68%;
	}
	header .head-inner .globalNavi li.btn-entry {
	padding: 10px 0;
	}
	header .head-inner .globalNavi li.btn-entry a {
	font-size: 15px;
	border-radius: 20px;
	padding: 4px 8px;
	}
	/*2024 追加*/
	header .head-inner .globalNavi li.btn-requirements,
	header .head-inner .globalNavi li.btn-entryform {
	padding: 8px 0;
	}
	header .head-inner .globalNavi li.btn-requirements a,
	header .head-inner .globalNavi li.btn-entryform a {
	font-size: 14px;
	border-radius: 15px;
	padding: 6px 8px;
	letter-spacing: 0;
	}	
}

/*----------------------------------- 
  navi dropdown(PC)
------------------------------------*/
.gnavi__lists {
}
.gnavi__list {
    position: relative;
    transition: all .3s;
}
.dropdown__lists {
    visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
    opacity: 0;/*不透明度0*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
}
.dropdown__lists li {
	margin: 0!important;
}
.gnavi__list:hover .dropdown__lists {
    visibility: visible;/*Gナビメニューにホバーしたら表示*/
    opacity: 1;/*不透明度1*/
}
.dropdown__list {
	width: 150px;
    background-color: #99af80;
    height: 32px;
    transition: all .3s;
    position: relative;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    background-color: #697C52;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
    line-height: 1.4rem!important;
    padding: 5px 0 0 0;
    font-size: 13px!important;
}
/*
.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 0px);
}
*/

/*----------------------------------- 
  navi drawer
------------------------------------*/

@media (min-width: 969px) { /*969pxまでスマホナビ非表示・968px以下から表示*/
    .drawer-hamburger {
        display: none!important;
    }
}

.drawer-nav {
	background-color: #99AF80!important;
	color: #fff!important;
	height: 100%!important;
}
.drawer-nav .drawer-menu {
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center!important;
}
.drawer-brand {
	font-weight: normal!important;
}
.drawer-nav .drawer-menu li {
	display: block!important;
	margin: 0px;
	list-style: none!important;
}
.drawer-nav .drawer-menu li.icon-sns img {
	width: 35px;
	height: auto;
}
.drawer-nav .address {
	font-size: 15px;
}
.drawer-open .drawer-hamburger-icon:before {
    -webkit-transform: rotate(30deg)!important;
    transform: rotate(30deg)!important;
}
.drawer-open .drawer-hamburger-icon:after {
    -webkit-transform: rotate(-30deg)!important;
    transform: rotate(-30deg)!important;
}
.drawer-brand {
	font-size: 1.2rem!important;
	line-height: 3rem!important;
}



/*----------------------------------- 
  footer
------------------------------------*/
footer { 
    width: 100%;
    color: #fff;
	margin: 0 auto;
	overflow: hidden;
	background: #99AF80;
}

footer a {
	color: #fff!important;
}
footer a:hover {
	text-decoration: underline;
}

.finner {
	display: flex;
	width: 1120px;
	margin: 50px auto;	
}
.finner .inner01 {
	width: 20%;
}
.finner .inner02 {
	width: 36%;
}
.finner .inner03 {
	width: 36%;
}

.finner .inner01 .flogo {
	width: 157px;
}

.finner .inner02 .fmenu {
	border-right: 1px solid #fff;
}
.finner .inner02 .fmenu ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
.finner .inner02 .fmenu li.top {
	width: 100%;
	margin-bottom: 8px;
	margin-left: 0;
	list-style: none!important;
}
.finner .inner02 .fmenu li {
	width: 48%;
	margin-right: 2%;
	margin-bottom: 8px;
	margin-left: 0;
	list-style: none!important;
}

.finner .inner03 {
	margin-left: 50px;
}

.finner .inner03 .flinks {
	display: flex;
	flex-wrap: wrap;
	line-height: 2.0rem;
}
.finner .inner03 .flinks p {
	width: 44%;
	margin-bottom: 10px;
}

.finner .inner03 .ftext h1 {
	font-size: 16px;
	font-weight: normal;
	margin: 0;
}
.finner .inner03 .ftext address {
	font-size: 16px;
	margin: 0;
	line-height: 2.0rem;
}

.finner .inner03 .fcopy {
	margin: 10px 0 0 0;		
}
.finner .inner03 .fcopy .copyright {
	font-size: 14px;
	margin: 0;
	line-height: 2.0rem;
}



/*----------------------------------- 
  table
------------------------------------*/
table {
	width: 100%;
}
table th {
	background-color: #F2EDE2;
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px solid #B1B1B1;
	font-weight: normal;
}
table td {
	border-bottom: 1px solid #B1B1B1;
	background-color: #fff;
	font-weight: normal;
	padding: 10px 20px;
}
table tr:first-child th,
table tr:first-child td {
	border-top: 1px solid #B1B1B1;
}

/*----------------------------------- 
  List
------------------------------------*/
.disc-list {
	margin: 15px 0;
}
.disc-list li {
	list-style-type: disc;
	margin-left: 25px;
}


/*----------------------------------- 
  h1,h2,h3,h4,h5 title
------------------------------------*/
h2.title02 {
	font-family: 'Noto Serif JP', serif;
	font-display: swap;
	font-size: 50px;
	text-align: center;
	line-height: 3.0rem;
	letter-spacing: 0.4rem;
	font-weight: 500;
}
h2.title02 span {
	font-size: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	display: block;
	font-weight: 500;
}

h3.title03 {
	font-size: 24px;
	line-height: 2.6rem;
	font-weight: 500;
}

h4.title04 {
	font-size: 20px;
	line-height: 2.6rem;
	font-weight: 500;	
}

h5.title05 {
	font-size: 18px;
	line-height: 2.6rem;
	font-weight: 500;	
}

/*装飾（鹿・緑）*/
.title-deer-grn {
	text-align: center;
	width: 83px;
	height: 90px;
	margin: 0 auto;
	padding-left: 20px;
}
.title-deer-grn img {
	width: 100%;
	height: auto;
}

/*装飾（鹿・黒）*/
.title-deer-blk {
	text-align: center;
	width: 97px;
	height: 110px;
	margin: 0 auto;
	padding-right: 20px;
	padding-bottom: 0;
}
.title-deer-blk img {
	width: 100%;
	height: auto;
}

.title-deer-message {
	width: 83px;
	height: 93px;
	text-align: left;
	padding: 0 0 0 20px;
}
.title-deer-message img { 
	width: 100%;
	height: auto;
}

.title-deer-internship {
	width: 57px;
	height: 64px;
	text-align: left;
	padding: 0 0 0 10px;
}
.title-deer-internship img { 
	width: 100%;
	height: auto;
}

p {
	line-height: 2.6rem;
	margin-bottom: 20px;
}
.note {
	font-size: 14px!important;
	line-height: 1.8rem!important;
	font-weight: normal;
}

/*----------------------------------- 
  mainvisual
------------------------------------*/
.mainvisual {
	width: 90%;
	max-width: 1200px;
	height: 94vh;
	margin: 70px auto 40px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.catchcopy {
	width: 35%;
	margin-left: 5%;
	letter-spacing: 0.2rem;
}
.visual {
	width: 55%;
}
.visual img {
	width: 100%;
	max-width: 700px;
}
/*home&mission page*/
.catchcopy-text {
	font-weight: 600;
	line-height: 4.5rem;
	letter-spacing: 0.1rem;
}
.catchcopy-text .catch-font-small {
	font-size: 26px;
}
.catchcopy-text .catch-font-big {
	font-size: 50px;
}
.catchcopy-text .catch-font-mid {
	font-size: 40px;
}
.catchcopy-text .indent {
	margin-left: -30px;
}
/*home&mission page*/

@media all and (min-width: 1161px) and (max-width: 1200px) {
	.mainvisual {
	width: 90%;
	height: auto;
	margin-bottom: 40px;
	}
	.catchcopy {
	width: 33%;
	margin-left: 0;
	}
	.visual {
	width: 55%;
	padding-top: 30px;
	}
	.visual img {
	max-width: 100%;
	}
	.catchcopy-text {
	line-height: 4.0rem;
	}
	.catchcopy-text .catch-font-small {
	font-size: 24px;
	}
	.catchcopy-text .catch-font-big {
	font-size: 45px;
	}
	.catchcopy-text .catch-font-mid {
	font-size: 35px;
	}
	

}
@media all and (min-width: 969px) and (max-width: 1160px) {
	.mainvisual {
	width: 90%;
	height: auto;
	margin-bottom: 40px;
	}
	.catchcopy {
	width: 33%;
	margin-left: 0;
	}
	.visual {
	width: 55%;
	padding-top: 30px;
	}
	.visual img {
	max-width: 100%;
	}
	.catchcopy-text {
	line-height: 3.6rem;
	}
	.catchcopy-text .catch-font-small {
	font-size: 23px;
	}
	.catchcopy-text .catch-font-big {
	font-size: 42px;
	}
	.catchcopy-text .catch-font-mid {
	font-size: 30px;
	}
}


/*----------------------------------- 
  buttun link
------------------------------------*/
button {
  border: 0;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-display: swap;
}
button a:hover {
	text-decoration: none!important;
	color: #fff!important;
}

/*green*/
button .btn-round-grn {
	position: relative;
	display: block;
	background-color: #99AF80;
	color: #fff;
	font-weight: 500;
	font-size: 20px;
	border-radius: 20px;
	padding: 8px 30px;
	text-align: center;
	letter-spacing: 0.1rem;
	overflow: hidden;
}
button .btn-round-grn:hover {
	text-decoration: none;
}
button .btn-round-grn span {
  position: relative;
  z-index: 1;
  transition: .3s;
  padding: 0 10px;
}

button .btn-round-grn:hover span {
  color: #fff;
}

/* 疑似要素 */
button .btn-round-grn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #788D60;
  transform: translate3d(-100%, 0, 0);
  transition: .3s;
}

/* 疑似要素(hover) */
button .btn-round-grn:hover:before {
  transform: translate3d(0, 0, 0);
}



/*yellow*/
button .btn-round-yel {
	position: relative;
	display: block;
	background-color: #EFEF93;
	color: #61794A;
	font-weight: 500;
	font-size: 20px;
	border-radius: 20px;
	padding: 8px 20px;
	text-align: center;
	letter-spacing: 0.1rem;
	overflow: hidden;
}
button .btn-round-yel:hover {
	text-decoration: none;
}
button .btn-round-yel span {
  position: relative;
  z-index: 1;
  transition: .3s;
  padding: 0 10px;
}

button .btn-round-yel:hover span {
  /*color: #99AF80;*/
  color: #61794A;
}

/* 疑似要素 */
button .btn-round-yel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #E5E56E;
  transform: translate3d(-100%, 0, 0);
  transition: .3s;
}
/* 疑似要素(hover) */
button .btn-round-yel:hover:before {
  transform: translate3d(0, 0, 0);
}


/*bright yellow*/
button .btn-round-br-yel {
	position: relative;
	display: block;
	background-color: #FFEB00;
	color: #000;
	font-weight: 500;
	font-size: 20px;
	border-radius: 20px;
	padding: 8px 20px;
	text-align: center;
	letter-spacing: 0.1rem;
	overflow: hidden;
}
button .btn-round-br-yel:hover {
	text-decoration: none;
}
button .btn-round-br-yel span {
  position: relative;
  z-index: 1;
  transition: .3s;
  padding: 0 10px;
}

button .btn-round-br-yel:hover span {
  color: #000;
}

/* 疑似要素 */
button .btn-round-br-yel:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #fff352;
  transform: translate3d(-100%, 0, 0);
  transition: .3s;
}
/* 疑似要素(hover) */
button .btn-round-br-yel:hover:before {
  transform: translate3d(0, 0, 0);
}



/*deep green*/
button .btn-round-dpgrn {
	position: relative;
	display: block;
	background-color: #809B66;
	color: #fff;
	font-weight: 500;
	font-size: 20px;
	border-radius: 20px;
	padding: 8px 30px;
	text-align: center;
	letter-spacing: 0.1rem;
	overflow: hidden;
}
button .btn-round-dpgrn:hover {
	text-decoration: none;
}
button .btn-round-dpgrn span {
  position: relative;
  z-index: 1;
  transition: .3s;
  padding: 0 10px;
}

button .btn-round-dpgrn:hover span {
  color: #fff;
}

/* 疑似要素 */
button .btn-round-dpgrn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #697C52;
  transform: translate3d(-100%, 0, 0);
  transition: .3s;
}

/* 疑似要素(hover) */
button .btn-round-dpgrn:hover:before {
  transform: translate3d(0, 0, 0);
}


/*dark green*/
button .btn-round-dkgrn {
	position: relative;
	display: block;
	background-color: #426917;
	color: #fff;
	font-weight: 500;
	font-size: 20px;
	border-radius: 20px;
	padding: 8px 30px;
	text-align: center;
	letter-spacing: 0.1rem;
	overflow: hidden;
}
button .btn-round-dkgrn:hover {
	text-decoration: none;
}
button .btn-round-dkgrn span {
  position: relative;
  z-index: 1;
  transition: .3s;
  padding: 0 10px;
}

button .btn-round-dkgrn:hover span {
  color: #fff;
}

/* 疑似要素 */
button .btn-round-dkgrn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #30500D;
  transform: translate3d(-100%, 0, 0);
  transition: .3s;
}

/* 疑似要素(hover) */
button .btn-round-dkgrn:hover:before {
  transform: translate3d(0, 0, 0);
}


/*orange*/
button .btn-round-orange {
	position: relative;
	display: block;
	background-color: #FDAB0F;
	color: #fff;
	font-weight: 500;
	font-size: 20px;
	border-radius: 20px;
	padding: 8px 30px;
	text-align: center;
	letter-spacing: 0.1rem;
	overflow: hidden;
}
button .btn-round-orange:hover {
	text-decoration: none;
}
button .btn-round-orange span {
  position: relative;
  z-index: 1;
  transition: .3s;
  padding: 0 10px;
}

button .btn-round-orange:hover span {
  color: #fff;
}

/* 疑似要素 */
button .btn-round-orange:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #EF9300;
  transform: translate3d(-100%, 0, 0);
  transition: .3s;
}

/* 疑似要素(hover) */
button .btn-round-orange:hover:before {
  transform: translate3d(0, 0, 0);
}



/*四角*/
button .btn-square {
  position: relative;
  display:inline-block;
  padding: 12px 15px;
  margin: 10px 0;
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-display: swap;
  font-size: 16px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #000;
}

button .btn-square span {
  position: relative;
  z-index: 1;
  transition: .3s;
  padding: 0 5px;
  letter-spacing: 0.1rem;
}

button .btn-square:hover span {
  color: #fff;
}


/* 疑似要素 */
button .btn-square:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #99AF80;
  transform: translate3d(-100%, 0, 0);
  transition: .3s;
}

/* 疑似要素(hover) */
button .btn-square:hover:before {
  transform: translate3d(0, 0, 0);
}

/* 疑似要素（装飾） */
button .btn-square::after{
   content:"";
   display:inline-block;
   width:28px;
   height:1px;
   background-color:#000;
   position:absolute;
   top: 50%;
   right:-14px;
}
button::after{
   content:"";
   display:inline-block;
   width:14px;
   height:1px;
   background-color:#000;
   position:absolute;
   top: 50%;
   right:0;
}
header button::after{
	display: none;
}

/*ボタン 微調整*/
.pr14-white {
  background-color: #fff;
  padding: 0 14px 0 0;	
}
.pr14-beige {
  background-color: #F2EDE2;
  padding: 0 14px 0 0;	
}
.pr14pl14-white {
  background-color: #fff;
  padding: 0 14px;	
}
.btn-circle,
button.btn-circle::after {
  background: none;
}

.w160 {width: 160px;}
.w170 {width: 170px;}
.w180 {width: 180px;}
.w190 {width: 190px;}
.w200 {width: 200px;}
.w210 {width: 210px;}
.w220 {width: 220px;}
.w230 {width: 230px;}
.w240 {width: 240px;}
.w250 {width: 250px;}
/*ボタン 微調整*/




/*----------------------------------- 
  top contents
------------------------------------*/
/*home mainvisual*/
.mainvisual .btn-round-grn {
	margin: 80px 0 0 0;
}
.mainvisual .btn-round-dkgrn {
	margin: 10px 0 0 0;
	padding: 10px 15px!important;
}
.mainvisual .btn-round-orange {
	margin: 10px 0 0 0;
	padding: 10px 15px!important;
}
@media all and (min-width: 969px) and (max-width: 1160px) {
	.mainvisual .btn-round-grn {
	margin: 40px 0 0 0;
	}
}

/*home news*/
.news {
	width: 1000px;
	margin: 0 auto 60px;
	display: flex;
	justify-content: space-between;
}
.news h2 {
	margin: 0 0 50px 0;
}
.news h2 img {
	width: 260px;
	height: auto;
}
.news .news-box01 {
	width: 28%;
	margin-left: 50px;
}
.news .news-box02 {
	width: 64%;
}

.recently-news {
	border-top: 1px solid #707070;
}
.recently-news li {
	border-bottom: 1px solid #707070;
	padding: 15px 0;
	list-style: none!important;
}
.recently-news li p {
	margin-bottom: 5px!important;
	line-height: 2.0rem;
}
.icon-new {
	color: #F80000;
	padding-right: 10px;
}

@media all and (min-width: 969px) and (max-width: 1160px) {
	.news {
	width: 96%;
	}
	.news .news-box02 {
	width: 60%;
	}
}

/*home banner*/
.home-banner {
	width: 960px;
	margin: 0 auto 40px;
}
/*home movie*/
.home-movie {
	width: 960px;
	margin: 0 auto 60px;
	display: flex;
	justify-content: space-around;
	flex-wrap: nowrap;
}
.home-movie .movie-wrap-box,
.home-movie .movie-message {
	width: 50%;
}
.movie-wrap {
    position: relative;
    padding-bottom: 56.25%;
	width: 100%;
    height: 0;
    overflow: hidden;
}
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}
.movie-message p {
	margin: 10px 0 0 30px;
	text-align: left;
	line-height: 2.2rem;
}
/*home message*/
.home-message {
	width: 1000px;
	margin: 60px auto 60px;
	padding: 0 15px 15px 15px;
	position: relative;
}
.home-message-deer {
	margin: 0 0 0 110px;
}
.home-message-deer img {
	width: 123px;
	height: 137px;
}
.home-message-bg {
	background-color: #F2EDE2;
}

.home-message h2 {
	position: absolute;
	top: 110px;
	left: 30%;
	right: 30%;
}
.home-message-box {
	display: flex;
	justify-content: space-between;
	padding: 90px 0 0 0;
}
.home-message-box .text {
	margin: 10px 0 30px 68px; 
}
.home-message-box figure {
	width: 500px;
	position: absolute;
	right: 0;
	bottom: 0;
}

.home-message-box .text .lead {
	font-size: 24px;
	font-weight: 500;
	line-height: 3.0rem;
	margin: 0 0 100px 0;
}
@media all and (min-width: 969px) and (max-width: 1160px) {
	.home-message {
	width: 94%;
	}
}
.home-chef-message-box {
	padding: 50px 0 0 0!important;
}

/*home button*/
.home-button {
	margin: 40px auto 60px;
	text-align: center;
}
.home-button button .btn-round-dkgrn {
	width: 460px;
	padding: 20px 0;
	border-radius: 35px;
	margin: 0 auto;
}

/*home voice*/
.home-voice {
	background-color: #F2EDE2;	
	margin: 0 auto;
	padding: 80px 0;
	position: relative;
}
.home-voice-inner {
	width: 1030px;
	margin: 0 auto;
	padding: 60px 0;
	position: relative;
	background: #fff;
	outline: 15px solid #F2EDE2;
    outline-offset: -15px;
}

.home-voice .intro,
.page-voice .intro {
	text-align: center;
	margin: 70px auto;
}
.home-voice .intro p,
.page-voice .intro p {
	font-size: 20px;
	line-height: 2.6rem;
}

.home-voice h2 {
	position: absolute;
	top: -20px;
	left: 30%;
	right: 30%;
}
.home-voice h3 {
	margin: 30px auto;	
}


.voice-article {
	display: flex;
	position: relative;
	justify-content: space-between;
	margin-bottom: 100px;
}
.voice-article h3.title03-voice {
	font-size: 22px;
	letter-spacing: 0.2rem;
    line-height: 2.4rem;
    font-weight: 500;
}
.voice-article h3.title03-voice-irregular {
	font-size: 22px;
	letter-spacing: 0.2rem;
    line-height: 2.0rem;
    font-weight: 500;
    margin: 10px auto 30px;
}

.voice-article figure {
	width: 500px;
}
.voice-article figure img {
	width: 100%;
}

.voice-article .text {
	width: 38%;
	padding-right: 50px;
}

.voice-article-title dt {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.voice-article-title dt .num img {
	height: 60px;
	width: auto;
}
.voice-article-title dt .voice img {
	height: auto;
	width:120px;
}
.voice-article-title dt .num {
	padding-right: 25px;
}
.voice-article-title dt .voice {
	padding-top: 32px;
}
.voice-article-title dd p {
	line-height: 2.0rem;
}
.voice-article-title h3 {
	margin: 20px auto 60px;
}
.voice-article-title .left-center {
	margin: 0 auto 0 0;
	text-align: left;
}/*PCでは左寄せ*/

@media all and (min-width: 969px) and (max-width: 1160px) {
	.home-voice-inner {
	width: 96%;
	}
}


/*home careers*/
.home-careers {
	background-image: url("../images/home/bg_home_pc1.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	margin: 0 auto;
	padding: 80px 0;
}
.home-careers-inner {
	width: 1000px;
	margin: 0 auto;
	padding: 60px 0;
	position: relative;
	background: #fff;
}

.home-careers-inner .lead {
	font-size: 20px;
	line-height: 2.6rem;
	margin: 60px auto;
	font-weight: 500;
}
@media all and (min-width: 969px) and (max-width: 1160px) {
	.home-careers-inner {
	width: 96%;
	}
}


/*home culture*/
.home-culture {
	background-image: url("../images/home/bg_home_pc2.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	margin: 0 auto;
	padding: 80px 0;
}
.home-culture-inner {
	width: 1000px;
	margin: 0 auto;
	padding: 60px 0 0 0;
	position: relative;
	background: #fff;
}

.home-culture h3 {
	margin: 30px auto;
	font-size: 28px!important;
	line-height: 2.8rem!important;
}
.home-culture .description {
	width: 640px;
	margin: 40px auto;
}

.home-culture p {
	font-size: 18px;
	line-height: 2.6rem;
}

.home-culture-inner figure {
	margin-top: 60px;
	width: 100%;
	height: auto;
}
@media all and (min-width: 969px) and (max-width: 1160px) {
	.home-culture-inner {
	width: 96%;
	}
}

/*----------------------------------- 
  下層
------------------------------------*/

/*----------------------------------- 
  詳しくはこちら - 戻る パネル
------------------------------------*/
.grad-wrap {
  position: relative;
  padding-bottom: 50px;
}
.grad-wrap + .grad-wrap {
  margin-top: 40px;
}
.grad-trigger {
	z-index: 2;
    position: absolute;
    left: 35%;
    right: 35%;
	text-align: center;
	text-decoration: underline;
	display: block;
	cursor: pointer;
}
.grad-trigger::after {
  content: "詳しくはこちら" /*クリック前のボタンのラベル*/
}
.grad-trigger .fa {
  margin-right: .5em;
}
.grad-item {
  position: relative;
  overflow: hidden;
}
.grad-item.is-hide {
  height: 10px; /*隠した後の高さ*/
}
.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 40px; /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
}
.grad-trigger.is-show {
  bottom: 0em;
}
.grad-trigger.is-show::after {
  content: "戻る" /*クリック後にボタンのラベルを変える*/
}
.grad-trigger.is-show + .grad-item::before {
  display: none;
}


/*----------------------------------- 
  Cultureのfaq accodion パネル
------------------------------------*/
.accordion_area {}
.accordion_area .accordion_one .ac_header {
  background-color: #ffffff;
  border-bottom: 1px solid #707070;
  padding: 1.5rem 4rem 1.5rem 2rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
}
.accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.accordion_area .accordion_one .ac_header .i_box:before, .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 2px solid #707070;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 2px solid #707070;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}
.accordion_area .accordion_one .ac_header.open {
	border-bottom: none;
}
.accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}
.accordion_area .accordion_one .ac_inner {
  display: none;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-bottom: 1px solid #707070;
  box-sizing: border-box;
  background: #fff;
}
 
/*=========
faq
=========*/
 
.p-faq__headinner {
  display: block;
  position: relative;
  line-height: 1.5;
}
.p-faq__headinner p.p-faq__q-txt {
  font-size: 20px;
  margin-bottom: 0;
}
.p-faq__bodyinner {
  display: block;
  position: relative;
  line-height: 1.5;
}
.p-faq__bodyinner p.p-faq__a-txt {
  font-size: 18px;
}



/*----------------------------------- 
  Internship accodion パネル
------------------------------------*/
.accordion_comments {}
.accordion_comments .accordion_com .ac_header {
  background-color: #ffffff;
  border-bottom: 1px solid #707070;
  padding: 1.5rem 0rem 1.5rem 0.5rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: .2s;
}
.accordion_comments .accordion_com .border_top {
  border-top: 1px solid #707070;
}

.accordion_comments .accordion_com .ac_header .i_box {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.accordion_comments .accordion_com .ac_header .i_box:before, 
.accordion_comments .accordion_com .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.accordion_comments .accordion_com .ac_header .i_box:before {
  border-top: 2px solid #707070;
  width: 20px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.accordion_comments .accordion_com .ac_header .i_box:after {
  border-left: 2px solid #707070;
  width: 0;
  height: 20px;
  top: 0;
  bottom: 0;
  right: 9px;
  transition: .3s;
}
.accordion_comments .accordion_com .ac_header.open {
	border-bottom: none;
}
.accordion_comments .accordion_com .ac_header.open .i_box:after {
  height: 0;
}
.accordion_comments .accordion_com .ac_inner {
  display: none;
  padding: 1.5rem 0rem 1.5rem 0.5rem;
  border-bottom: 1px solid #707070;
  box-sizing: border-box;
  background: #fff;
}
 

 
/*=========
enquete
=========*/
 
.p-enq__headinner {
  display: block;
  position: relative;
  line-height: 1.5;
}
.p-enq__headinner p.p-enq__q-txt {
  font-size: 20px;
  margin-bottom: 0;
}
.p-enq__bodyinner {
  display: block;
  position: relative;
  line-height: 1.5;
}
.p-enq__bodyinner p.p-enq__a-txt {
  line-height: 2.0rem;
  margin-bottom: 30px;
}
.p-enq__bodyinner h4 {
  line-height: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}


/*----------------------------------- 
  Mission
------------------------------------*/
.page-mission {
	margin-bottom: 100px;
}
.page-mission h2 {
	padding: 60px 0 0 0;
}
.page-mission-inner {
	width: 680px;
	margin: 60px auto;
}
/*Mission*/
.mission-text {
	width: 60%;
	margin: 40px auto;
}
.mission-text p {
	font-size: 20px;
	margin-bottom: 20px;
	line-height: 2.6rem;	
}
.mission-image {
	width: 80%;
	margin: 0 auto 40px auto;
}
.mission-image img {
	width: 100%;
	height: auto;
}

@media all and (min-width: 969px) and (max-width: 1100px) {
	.page-mission-inner {
	width: 94%;
	}
}

/*Vision*/
.page-vision {
	position: relative;	
}
.page-vision h3.title03-vision {
	font-size: 36px;
	line-height: 2.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	font-weight: 600;
	text-align: center;
	margin: 60px auto;
}
.page-vision-inner {
	width: 680px;
	margin: 60px auto;	
}
.page-vision-inner figure {
	width: 86%;
	margin: 60px auto 80px auto;
}
.page-vision-inner figure img {
	width: 100%;
	height: auto;
}

@media all and (min-width: 969px) and (max-width: 1100px) {
	.page-vision-inner {
	width: 94%;
	}
}

/*irregular parts*/
.vision-three {
	width: 980px;
}	

.page-vision:nth-child(odd) .vision-three {
	margin-left: 0;
	margin-right: auto;
	margin-bottom: 60px;
}/*奇数行 (1、3、5、など)は左寄り*/

.page-vision:nth-child(even) .vision-three {
	margin-right: 0;
	margin-left: auto;
	margin-bottom: 60px;
}/*偶数行 (2、4、6、など)は右寄り*/


.label {
	display: flex;
	align-items: baseline;
	background-color: #F2EDE2;
	padding: 30px 50px;
	position: absolute;
	bottom: 0;
	min-width: 50%;
}
.page-vision:nth-child(odd) .label {
	left: 0;
	padding-left: 15%;
}
.page-vision:nth-child(even)  .label {
	right: 0;
}
.label dt {
	font-size: 34px;
	font-family: 'Noto Serif JP', serif;
	font-display: swap;
	padding-right: 20px;
}
.label dd{
	font-size: 18px;
}

.page-vision-inner:last-child {
	width: 680px;
	margin: 0 auto;
}
.page-vision-inner:last-child p {
	margin-bottom: 0!important;
	padding: 60px 0;
}

/*irregular parts*/

@media all and (min-width: 969px) and (max-width: 1100px) {
	.vision-three-left,
	.vision-three-right {
	width: 86%;
	}
	.page-vision-inner:last-child {
	width: 68%;
	margin: 0 auto;
	}
	.label {
	display: flex;
	align-items: baseline;
	background-color: #F2EDE2;
	padding: 30px 50px;
	position: absolute;
	bottom: 0;
	min-width: 50%;
	}
}

/*----------------------------------- 
  About
------------------------------------*/
.page-about {}
.page-about h2 {
	padding: 60px 0;
}
.page-about h2.title02-philosophy {
	padding: 0;
	font-family: 'Noto Serif JP', serif;
	font-display: swap;
	font-size: 50px;
	text-align: center;
	line-height: 3.0rem;
	letter-spacing: 0.2rem;
}
.page-about h2.title02-philosophy span {
	font-size: 20px;
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	display: block;
}


.page-about table {
	width: 86%;
	margin: 0 auto 60px auto;
}
.page-about table th {
	width: 15%;
}

.page-about h3.title03-philosophy {
	font-size: 40px;
	line-height: 2.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	font-weight: 600;
	text-align: center;
	margin: 60px auto;
}
.page-about .lead {
	width: 640px;
	margin: 30px auto 0 auto;
	padding-bottom: 100px;
}
.page-about .lead p {
	margin-bottom: 20px;
	line-height: 2.0rem;
}

/*about&mission*/
.page-about-foot,
.page-vision-foot {
	width: 100%;
}

@media all and (min-width: 969px) and (max-width: 1100px) {
	.page-about .lead {
	width: 94%;
	}
}

/*----------------------------------- 
  Message
------------------------------------*/
.page-message h2 {
	position: absolute;
	top: -20px;
	left: 30%;
	right: 30%;
}
.page-message h2.chef {
	position: absolute;
	top: -20px;
	left: 20%;
	right: 20%;
}
.page-message h3.title03-message {
	font-size: 26px;
	font-family: 'Noto Serif JP', serif;
	font-display: swap;
	font-weight: 600;	
	line-height: 2.6rem;
	/*letter-spacing: 0.2rem;*/
	letter-spacing: 0.19rem;/*2023 調整*/
	margin-bottom: 30px;
}

.message-article {
	display: flex;
	position: relative;
	justify-content: space-between;
	align-items: center;
	margin: 60px auto;
}

.message-article .photo-message {
	width: 500px;
}
.message-article .photo-messag img {
	width: 100%;
}

.message-article .text {
	width: 35%;
	padding-left: 100px;
}

.message-article .main-massage dt {
	border-top: 1px solid #707070;
	padding: 20px 0;
	font-size: 22px;
	line-height: 2.4rem;
	font-weight: 500;
}
.message-article .main-massage dd {
	border-top: 1px solid #707070;
	padding: 20px 0;
	font-size: 18px;
	line-height: 2.4rem;
	font-weight: 500;
}

.message-article-continuation {
	width: 680px;
	margin: 60px auto;
}
.message-article-continuation p {
	margin-bottom: 20px;
	line-height: 2.0rem;
}
.message-article-continuation .message-section {
	margin-bottom: 60px;
}
.message-article-continuation .profile {
	display: flex;
	justify-content: space-between;
	margin: 30px auto;
}
.message-article-continuation .profile figure {
	width: 50%;
}
.message-article-continuation .profile figure img {
	width: 100%;
	height: auto;
}
.message-article-continuation .profile .profile-text {
	width: 45%;
}
.message-section figure,
.message-section figure.double {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.message-section figure.double img {
	width: 48%;
}

/*----------------------------------- 
  Voice
------------------------------------*/
.page-voice {}
.page-voice h2 {
	position: absolute;
	top: -20px;
	left: 30%;
	right: 30%;
}
.page-voice-inner {
	width: 680px;
	margin: 0 auto 60px auto;
	padding-bottom: 60px;
}
.page-voice-inner dl {
}
.page-voice-inner dl dt {
	font-size: 22px;
	margin-bottom: 20px;
	line-height: 2.5rem;
	font-weight: 500;
}
.page-voice-inner dl dd {
	line-height: 2.5rem;
	margin-bottom: 40px;	
}
.voice-single {
	margin-top: 60px;
}

/*----------------------------------- 
  call to action (voice,entry-button)
------------------------------------*/
.cta-voice {
	margin: 0 auto 80px auto;
	text-align: center;
}
.cta-voice figure {
	display: flex;
	width: 550px;
	margin: 20px auto;
}
.cta-voice figure img {
	width: 25%;
}
.cta-voice .cta-entry-button {
	width: 410px;
	margin: 50px auto 50px auto;
	/*margin: 50px auto 0 auto;*/
	display: block;		
}

.cta-entry-button {
	margin: 50px auto 50px auto;	
	text-align: center;	
}
.cta-entry-button button {
	width: 410px;
}

/*----------------------------------- 
  requirements button (message&chef message)
------------------------------------*/
.cta-voice .requirements-button {
	display: block;
	width: 410px;
	margin: 50px auto 50px auto;		
}
.requirements-button {
	margin: 50px auto 50px auto;	
	text-align: center;	
}
.requirements-button button {
	width: 410px;
}


/*----------------------------------- 
  Culture
------------------------------------*/
.page-culture {}
.page-culture h2 {
	padding: 60px 0;
}
.page-culture h3 {
	padding: 0 0 60px 0;
	text-align: center;
}
.page-culture .intro {
	display: flex;
	justify-content: space-between;
	width: 680px;
	margin: 0 auto 60px auto;
}
.page-culture .intro .text {
	width: 53%;
	margin-left: 5%;
}
.page-culture .intro figure {
	width: 35%;
	margin-right: 5%;
}
.page-culture .intro figure img {
	width: 100%;
	height: auto;
}
.page-culture .intro .text-catch {
	font-size: 30px;
	font-weight: 500;
	line-height: 3.0rem;
}

.page-culture .intro .text-sub {
	font-size: 22px;
	font-weight: 500;
	line-height: 2.6rem;
}

.page-culture .accordion_area {
	width: 680px;
	margin: 0 auto 60px auto;
	padding-bottom: 60px;
}



/*----------------------------------- 
  Our Works
------------------------------------*/
.page-our-works {}
.page-our-works h2 {
	padding: 60px 0;
}
.page-our-works .main-image {
	width: 500px;
	margin: 0 auto 40px auto;
}
.page-our-works .main-image img {
	width: 100%;
	height: auto;
}
.page-our-works .lead {
	font-size: 24px;
	text-align: center;
	line-height: 2.8rem;
	letter-spacing: 0.1rem;
	margin-bottom: 80px;
}
.page-our-works .lead p {
	margin-bottom: 30px;
}

.page-our-works h3.title03-our-works {
	font-size: 32px;
	font-family: 'Noto Serif JP', serif;
	font-display: swap;
	line-height: 2.6rem;
	letter-spacing: 0.2rem;
	text-align: center;
	margin: 0 auto;
	padding-bottom: 30px;
}
.page-our-works h3.title03-our-works span {
	font-size: 24px;
	font-family: 'Noto Serif JP', serif;
	font-display: swap;
	display: block;
	
}
.page-our-works h4.title04-our-works {
	font-size: 24px;
	line-height: 2.6rem;
	font-weight: 500;
	margin-bottom: 20px;	
}

.page-our-works .works {
	width: 500px;
	margin: 40px auto;
	padding-bottom: 40px;
}
.page-our-works .works p {
	margin-bottom: 20px;
	line-height: 2.0rem;
}

.page-our-works .disc-list {
	margin: 15px 0 30px 0!important;
}
.page-our-works .disc-list li {
	list-style-type: disc;
}

/*----------------------------------- 
  News & Blog (article) (WP) (common)
------------------------------------*/
.blogs {}
.blogs  h2 {
	padding: 60px 0 30px 0;
}
.blogs h3,
.blogs h4 {
	border-bottom: 1px solid #707070;
	padding-bottom: 10px;
	margin-bottom: 15px;
	margin-top: 0;
	margin-left: 0;
	margin-right: 0;
}
.blog_navi h4 {
	line-height: 2.0rem;
}

.blog-frame {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.blog_main {
	width: 68%;
}
.blog_navi {
	width: 24%;
}
.pagenation {
	width: 100%;
}
.blog_main_full {
	width: 100%;
}
.blog_navi ul {
	margin: 0;
}
.blog_navi ul li {
	display: block;
	margin-bottom: 8px;
	margin-top: 0;
	margin-left: 0;
	margin-right: ;
	list-style: none!important;
}

/*一覧*/
.post-box {
	border-bottom: 1px solid #707070;
	padding-bottom: 30px;
	letter-spacing: normal;	
	margin: 30px auto;		
}
.post-box-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.post-box h4 {
	border-bottom: none;
	margin-top: 0;
	margin-bottom: 10px;
	margin-right: 0;
	margin-left: ;
	line-height: 2.0rem;	
}
.post-box .metadata {
	width: 100%;
	margin-bottom: 0;
}
.post-box-inner .description {
	width: 70%;

}
.post-box-inner .description p {
	line-height: 2.0rem;
}
.post-box-inner figure {
	width: 24%;
}

/*個別記事*/
.post-contents {
	font-family: 'Noto Sans JP', sans-serif;	
	font-display: swap;
}
.post-contents h2 {
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	font-size: 24px;
	line-height: 2.6rem;
	padding: 0;
	margin: 0 0 20px 0;
}
.post-contents h3 {
	border-bottom: none;
	font-size: 20px;
	line-height: 2.6rem;
	padding: 0;
	margin: 0 0 15px 0;
}
.post-contents h4 {
	border-bottom: none;
	font-size: 18px;
	line-height: 2.2rem;
	padding: 0;
	margin: 0 0 10px 0;
}
.post-contents p {
	margin-bottom: 5px;
	line-height: 2.0rem;
}
.post-contents .metadata {
	margin-bottom: 20px;
}

.post-contents figure,
.post-contents img {
	margin-bottom: 20px;
}

/*----------------------------------- 
  Careers
------------------------------------*/
.bnr-careers {
	margin: 30px auto;
	padding: 0 0 30px 0;
	text-align: center;
	width: 55%;
}
.bnr-careers button {
	display: block;
	margin: 15px auto;
	text-align: center;
	width: 100%;
}

/*----------------------------------- 
  Staff blog
------------------------------------*/


/*----------------------------------- 
  404
------------------------------------*/
.notfound-title {}
.no-post-message {}
/*----------------------------------- 
  category / tag (WP)
------------------------------------*/
.category-list {
	margin: 0 10%;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.category-list li {
	margin: 0 20px;
	font-size: 21px;
	line-height: 2.2em;
	list-style: none!important;
}
.category-list li a {
	text-decoration: none!important;
	color: #A8A4A4;	
}
.category-list li a:hover {
	text-decoration: underline!important;
	color: #000000!important;
}
.category-list li.current a {
	text-decoration: underline!important;
	color: #000000!important;
}

.tag-list-box {
	width: 680px;
	margin: 30px auto;
	border-top: 1px solid #707070;
	padding: 30px 0 0 0;
	text-align: left;
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	letter-spacing: normal;
}
.tag-list-box h3 {
	font-size: 18px;
	line-height: 2.2em;
	margin: 0 0 10px 0;
}
.tag-list {	
	display: flex;
	display: flex;
	justify-content: row;
	flex-wrap: wrap;
}
.tag-list li {
	font-size: 18px;
	line-height: 2.2em;
	margin: 0 30px 0 0;
	list-style: none!important;
}
.tag-list li a {
	text-decoration: none!important;
}
.tag-list li a:hover {
	text-decoration: underline!important;
	color: #8D8D8D;
}

/*----------------------------------- 
  Pagenation (WP)
------------------------------------*/
.pagenation {
	margin: 60px 30% 0;
	text-align: center;
}
.page-numbers {
	display: flex;
	justify-content: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	letter-spacing: normal;
}
.page-numbers li {
	list-style: none!important;	
	margin: 0;
}
.page-numbers li a {
	font-size: 18px;
	padding: 5px 15px;
	margin: 0 10px;
	text-decoration: none!important;
}
.page-numbers li .current {
	border: 1px solid #707070;
	border-radius: 50px;
	font-size: 18px;
	padding: 5px 15px;
	margin: 0 10px;
}
.page-numbers li .dots {
	font-size: 18px;
	padding: 8px 15px;
	margin: 0;
}
.prev,
.next {
	width: 78px;
	height: auto;
	margin-top: 5px!important;
}
.prev img,
.next img {
	max-width: 100%;
	height: auto;
}


/*----------------------------------- 
  Privacy Policy
------------------------------------*/
.page-privacy-policy {
	width: 680px;
	margin: 160px auto;
}
.page-privacy-policy .title02 {
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	font-size: 36px;
	text-align: center;
	line-height: 3.0rem;
	letter-spacing: 0.4rem;
	font-weight: 500;
	margin-bottom: 40px;
}
.page-privacy-policy p {
    margin-bottom: 40px;
}
.page-privacy-policy .privacy-policy-list {
	margin-bottom: 40px;
	line-height: 2.2rem;
}

/*----------------------------------- 
  Form
------------------------------------*/
.page-form,
.page-form-confirm,
.page-form-thanks {
	width: 640px;
	margin: 160px auto;
}
/*応募フォームページタイトル（共通）*/
.page-form .title02,
.page-form-confirm .title02,
.page-form-thanks .title02 {
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	font-size: 36px;
	text-align: center;
	line-height: 3.0rem;
	letter-spacing: 0.4rem;
	font-weight: 500;
	margin-bottom: 40px;
	position: relative;
    display: block;
}
.page-form .title02:before,
.page-form .title02:after,
.page-form-confirm .title02:before,
.page-form-confirm .title02:after,
.page-form-thanks .title02:before,
.page-form-thanks .title02:after {
	content: '';
    position: absolute;
    display: inline-block;
    width: 15px;
    height: 56px;
    background-color: #FFEB00;
}

/*応募内容　入力ページタイトル*/
.page-form .title02:before {
    left: 25%;
}
.page-form .title02:after {
    right: 25%;
}


/*応募内容　入力確認ページタイトル*/
.page-form-thanks .title02 {
	letter-spacing: 0!important;
}
.page-form-confirm .title02:before {
    left: 18%;
}
.page-form-confirm .title02:after {
    right: 18%;
}


/*応募内容　サンクスページタイトル*/
.page-form-thanks .title02:before {
    left: 5%;
}
.page-form-thanks .title02:after {
    right: 5%;
}


.page-form .text,
.page-form-confirm .text,
.page-form-thanks .text {
	line-height: 2.0rem;
}

.require {
	background-color: #5A842A;
	border-radius: 25px;
	color: #fff;
	text-align: center;
	font-size: 12px;
	padding: 1px 12px 2px;
	line-height: 0;
	margin: 0 0 0 10px;
}
.form-contents {
	width: 100%;
	margin: 40px auto;
}
.form-contents dt {
	margin-bottom: 8px;
	font-weight: 500;
}
.form-contents dd {
	margin-bottom: 30px;
}
.form-contents dt p,
.form-contents dd p {
	margin: 0;
	line-height: 1.8rem;
}

/*送信ボタン*/
.btn-form-submit input{
	display: inline-block;
	width: 100%;
	background-color: #FFEB00;
	border-radius: 50px;
	text-align: center;
	font-size: 24px;
	padding: 20px 0;
	cursor: pointer;
	transition: .3s;
	border: none;
}
.btn-form-submit input:hover {
	background-color: #FFEF31;	
}
/*戻るボタン*/
.btn-form-previous {
	margin: 0 auto;
}
.btn-form-previous input {
	display: block;
	width: 60%;
	background-color: #bababa;
	border-radius: 50px;
	text-align: center;
	font-size: 20px;
	padding: 10px 0;
	cursor: pointer;
	transition: .3s;
	border: none;
	margin: 0 auto;
}
.btn-form-previous input:hover {
	background-color: #b3b3b3;	
}


/*Contact Form 7*/
.wpcf7-form-control-wrap {
    position: inherit;
}
.wpcf7-list-item {
	margin: 0!important;
}

/*テキスト*/
.page-form input[type="text"],
.wpcf7 input[type="url"], 
.wpcf7 input[type="email"], 
.wpcf7 input[type="tel"] {
    width: 96%;
    height: 30px;
    padding: 5px;
    border: 1px solid #333;
}
/*ファイルアップロード*/
.page-form input[type="file"],
.wpcf7 input[type="file"] {
    width: 96%;
}

.wpcf7-file {
  display: inline-block;
  color: #000; 
  height: 100%;
  padding-left: 0;
  border: none;
  margin-left: 0; 
}

input[type=file]::file-selector-button {
    background-color: #fff;
    padding: 0.5em 1em;
    margin-right: 1em;
    border: 1px solid #333;
    color: #000;
    height: 100%;
    cursor: pointer;
}

/*テキストエリア*/
.page-form textarea,
.wpcf7-textarea textarea {
	width: 96%;
    padding: 5px;
    height: 120px;
    font-size: 100%;
    line-height: 1.8rem;
    border: 1px solid #333;
    color: #000;
 }
 
/*ラジオボタン*/
.page-form .radio-wrap {
  display: flex;
  flex-wrap: wrap;
}
 
.page-form .radio-wrap label {
	margin-right: 20px;
}
 
.page-form .radio-wrap label input[type="radio"] {
  opacity:0;
  appearance: none;
  position: absolute;
}
 
.page-form .radio-wrap .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 26px;
  line-height: 2.2;
}
 
.page-form .radio-wrap label .wpcf7-list-item-label::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #9AAE83;
  background: #fff;
  content: "";
  border-radius: 50%;
}
 
.page-form .radio-wrap label .wpcf7-list-item-label::after {
  position: absolute;
  top: 12px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #9AAE83;
  content: "";
  opacity: 0;
  transition: all 0.3s;
}
 
.page-form .radio-wrap label input:focus + span::before {
  box-shadow: 0 0 4px #9AAE83;
}
 
.page-form .radio-wrap label input:checked + span::after {
  opacity: 1;
}

/*チェックボックス*/
.page-form .checkbox {
	display: flex;
	flex-wrap: wrap;
}
.page-form .checkbox label {
	margin-right: 20px;
}
.page-form .checkbox input[type="checkbox"] {
	opacity:0;
	appearance: none;
	position: absolute;
}
.page-form .checkbox .wpcf7-list-item-label {
	display: inline-block;
	position: relative;
	padding-left: 26px;
	line-height: 2.2;
}
.page-form .checkbox .wpcf7-list-item-label::before {
	position: absolute;
	top: 8px;
	left: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #9AAE83;
	background: #fff;
	content: "";
	transition: all 0.3s;
}
 
.page-form .checkbox .wpcf7-list-item-label::after {
	position: absolute;
	top: 8px;
	left: 0;
	width: 18px;
	height: 18px;
	color: #9AAE83;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	content: "✔";
	opacity: 0;
	transition: all 0.3s;
}
 
.page-form .checkbox input:focus + span::before {
	box-shadow: 0 0 4px #9AAE83;
}
 
.page-form .checkbox input:checked + span::after {
	 opacity: 1;
}

/*セレクトボックス*/
.page-form .select {
	width: 98%;
	display: inline-block;
	position: relative;
	vertical-align: middle;
}
.page-form .select::before {
	position: absolute;
	top: 18px;
	right: 16px;
	width: 0;
	height: 0;
	border-width: 10px 5px 0 5px;
	border-style: solid;
	border-color: #333 transparent transparent transparent;
	content: "";
	pointer-events: none;
	z-index: 1;
}
.page-form .select select {
	width: 100%;
	height: 45px;
    padding: 10px;
    appearance: none;
    outline: 0;
    background-image: none;
    box-shadow: none;
    cursor: pointer;
    color: #000;
 }

/*----------------------------------- 
  requirements (Top)
------------------------------------*/
.home-requirements {
	background-color: #99AF80;	
	margin: 0 auto;
	padding: 80px 0;
	position: relative;
}
.home-requirements-inner {
	width: 1000px;
	margin: 0 auto;
	padding: 60px 0;
	position: relative;
	background: #fff;
}
.requirements-inner {
	width: 100%;
}
.home-requirements-inner .title02,
.requirements-inner .title02 {
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	font-size: 46px;
	color: #426917;
	text-align: center;
	line-height: 3.0rem;
	letter-spacing: 0.4rem;
	font-weight: 500;
	margin-bottom: 20px;
	position: relative;
    display: block;
}

.home-requirements-inner .title02:before,
.home-requirements-inner .title02:after,
.requirements-inner .title02:before,
.requirements-inner .title02:after {
	content: '';
    position: absolute;
    display: inline-block;
    width: 15px;
    height: 56px;
    background-color: #426917;
}
.home-requirements-inner .title02:before,
.requirements-inner .title02:before {
    left: 35%;
}
.home-requirements-inner .title02:after,
.requirements-inner .title02:after {
    right: 35%;
}
.home-requirements-inner p,
.requirements-inner p {
	font-size: 18px;
	line-height: 2.6rem;
}

@media all and (min-width: 969px) and (max-width: 1160px) {
	.home-requirements {
	width: 96%;
	}
}
.home-requirements-inner .term-name,
.requirements-inner .term-name {
	font-size: 24px;
	margin-bottom: 20px;
}

/*アコーディオン*/
.requirements-accrodion {
	width: 640px;
	margin: 0 auto 60px;
}


.accordion {
    max-width: 100%;
    margin-bottom: 7px;
    border: 1px solid #333;
}

.accordion summary {
    position: relative;
    padding: 1em 2em;
    color: #000;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

/*summaryのアイコン非表示*/
/* Chrome、Safari以外 */
summary,
.accordion summary {
  display: block;
}
/* Chrome、Safari */
summary::-webkit-details-marker,
.accordion summary::-webkit-details-marker {
  display: none;
}

/*アコーディオン開閉アイコン*/
.accordion summary::after {
	background: #fff;
    box-sizing: border-box;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-top: 16px solid #000;
    border-bottom: 0;
    display: block;
    position: absolute;
    right: 15px;
    top: 15%;
    transform: translateY(100%) rotate(0);
    transition: transform .5s;
}
.accordion[open] summary::after {
	transform: translateY(100%) rotate(180deg);
}

.accordion .details-content {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 1em 1em;
    color: #000;
    transition: transform .5s, opacity .5s;
    text-align: left;
}
.accordion[open] .details-content {
    transform: none;
    opacity: 1;
}

/*アコーディオン内部*/
.details-content-inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	text-align: left;
	font-size: 18px;
	line-height: 1.8rem;
	margin: 0;
}
.details-content-inner dt {
	width: 16%;
	margin-right: 1%;
	margin-bottom: 25px;
}
.details-content-inner dd {
	width: 83%;
	margin-bottom: 25px;
}
.details-content-inner dd p {
	margin-bottom: 20px;
	font-size: 18px;
	line-height: 2.0rem;
}
.details-content-inner dd img,
.details-content-inner dd iframe {
	width: 100%;
}
/*.details-content-inner dd br:last-child {
	display: none;
}*/

/*黄色ボタン*/
.btn-for-form {
	max-width: 640px;
	margin: 20px auto;
}
.btn-for-form button {
	width: 100%;	
}
.btn-for-form a {
	width: 100%;
	display: inline-block;
	border-radius: 50px;
	text-align: center;
	font-size: 24px;
	padding: 30px 0;
	cursor: pointer;
	transition: .3s;
	border: none;
}
.btn-for-form a:hover {
	text-decoration: none!important;
}

/*----------------------------------- 
  common parts - contact info(top&form)
------------------------------------*/
.contact-info-box {
	background-color: #fff;
	width: 640px;
	margin: 60px auto 40px;
	padding: 25px 0 10px;
	text-align: center;
}
.contact-info-box .comments-top {
	font-size: 24px;
	line-height: 2.0rem;
	margin-bottom: 8px;		
}
.contact-info-box .phone-number {
	font-size: 45px;
	font-weight: bold;
	letter-spacing: 0.3rem;
	margin-bottom: 8px;	
}
.contact-info-box .text {
	font-size: 20px;
	margin-bottom: 20px;
	line-height: 2.0rem;
}
	
/*----------------------------------- 
  Internship
------------------------------------*/	

.page-internship {
	width: 640px;
	margin: 140px auto;
}

.page-internship .title02 {
	font-family: 'Noto Sans JP', sans-serif;
	font-display: swap;
	font-size: 36px;
	text-align: center;
	line-height: 3.0rem;
	letter-spacing: 0.4rem;
	font-weight: 500;
	margin-bottom: 40px;
	position: relative;
    display: block;
}

.page-internship p {
	line-height: 2.0rem;
    margin-bottom: 20px;
}
.page-internship section {
	margin-bottom: 80px;
}
.page-internship .intro {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}
.page-internship .intro .intro-text {
	flex: 1;
}
.page-internship .intro .intro-image {
	flex: 0.8;
	margin: 20px 0 0 20px;
}
.page-internship .intro .intro-image img {
	width: 100%;
	height: auto;
}

.page-internship h3 {
	border-top: 1px solid #707070;
	padding: 15px 0 20px;
	font-size: 22px;
	line-height: 2.4rem;
	font-weight: 500;
}
.page-internship h4 {
	font-size: 18px;
	line-height: 2.2rem;
	font-weight: 700;
}

.enquete {
	text-align: center;
	width: 310px;
	margin: 20px auto;
}
.enquete img {
	width: 100%;
	height: auto;
}

.page-internship-wide {
	width: 890px;
	margin: 140px auto;
}
.intern-report {
	border-top: 1px solid #707070;
	padding: 20px 0 0 0;
	width: 640px;
	margin: 0 auto;
}
.intern-report p {
	line-height: 2.0rem;
	margin-bottom: 0;
}
.sample-report {
	width: 100%;
	height: auto;
}

/*=========
レポート アコーディオン
=========*/
/* Chrome、Safari以外 */
.page-internship-wide summary {
  display: block; 
}

/* Chrome、Safari */
.page-internship-wide summary::-webkit-details-marker {
  display: none;
}

.page-internship-wide summary {
  cursor: pointer;
  text-decoration: underline;
  color: #0081B9;
  margin: 0 0 0 125px;
}