/*--------------------------------------------
 	style.css	2025-09-01
---------------------------------------------*/
/*@acab/reset.css*/
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:where([hidden]:not([hidden='until-found'])) {
	display: none !important;
}

:where(html) {
	-webkit-text-size-adjust: none;
	/*color-scheme: dark light;*/
	tab-size: 2;
	scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
	overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
	:where(html:focus-within) {
		scroll-behavior: smooth;
	}
}

:where(body) {
	line-height: 1.5;
	font-family: system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

:where(button) {
	all: unset;
}

:where(input, button, textarea, select) {
	font: inherit;
	color: inherit;
}

:where(textarea) {
	resize: vertical;
	resize: block;
}

:where(button, label, select, summary, [role='button'], [role='option']) {
	cursor: pointer;
}

:where(:disabled) {
	cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
	cursor: not-allowed;
}

:where(a) {
	color: inherit;
	text-underline-offset: 0.2ex;
}

:where(ul, ol) {
	list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}

:where(img, picture, svg, video) {
	max-inline-size: 100%;
	block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: break-word;
}

:where(h1, h2, h3) {
	line-height: calc(1em + 0.5rem);
	/*text-wrap: balance;*/
	text-wrap: wrap;
}

:where(hr) {
	border: none;
	border-block-start: 1px solid;
	color: inherit;
	block-size: 0;
	overflow: visible;
}

:where(dialog, [popover]) {
	border: none;
	background: none;
	color: inherit;
	inset: unset;
	max-width: unset;
	max-height: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
	display: none !important;
}

:where(:focus-visible) {
	outline: 3px solid CanvasText;
	box-shadow: 0 0 0 5px Canvas;
	outline-offset: 1px;
}

:where(:focus-visible, :target) {
	scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
	clip-path: inset(50%) !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	white-space: nowrap !important;
	border: 0 !important;
	user-select: none !important;
}

/*basement*/
:root {
	--blue:#0A50A1;
	--pale-blue:#019ED7;
	--yellow:#E7C473;
	--green:#78a61b;
}

html,
body {
    font-size: 10px;
    color: #000;
	height: 100%;
  }
body{
	margin: 0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.bold{
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
p {
	line-height: 1.8;
}

a,a:link {
	color: #000;
	text-decoration: none;
}
a:hover{
	color: #000;
	text-decoration: none;
}

.img-fluid {
    max-width: 100%;
    width: 100%;
    height: auto;
}

#contents_area {
	font-size: 1.6rem;
}

.container {
	margin: 0 auto;
	width: 100%;
}
@media screen and (min-width: 1100px) {
  .container {
      max-width: 1100px;
  }
}

.container_full {
	width: 100%;
}

a.link_button {
	padding: 12px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
	border: solid 3px var(--blue);
	background-color: var(--blue);
	cursor: pointer;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
a.link_button:hover {
	color: var(--blue);
	border: solid 3px var(--blue);
	background-color: #fff;
	text-decoration: none;
}

/*--------------------------------------------
 	header
---------------------------------------------*/
.head_container {
	position:relative;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	aspect-ratio: 1 / 1.2;
	background-image:url("../images/head_back.jpg");
	background-position: center;
	background-size: cover;
}


#title_back_area {
	position: absolute;
	display: flex;
	align-items: center;
	/*top: 50%;
	transform: translateY(-50%);*/
	width: 100%;
	height:auto;
	z-index: 1100;
}
#title_back_area .head_back_item{
	width: 100%;
	object-fit: cover;
	animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
	animation-delay: 0s;
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#title_area {
	position: absolute;
	display: flex;
	align-items: center;
	width: 100%;
	height:auto;
	z-index: 1200;
}
#title_area .head_title {
	width: 100%;
	object-fit: cover;
}
#title_area img {
    opacity: 0;
	animation: poyoyon 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
	animation-delay: 0.5s;
}
@keyframes poyoyon {
  0% {
    transform: translateY(140px);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
  }
  65% {
    transform: translateY(30px);
  }
  80% {
    transform: translateY(0);
  }
  95% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
  20%,100% {
    opacity: 1;
  }
}

#title_item_area {
	position: absolute;
	width: 20%;
	height:auto;
	bottom: 19px;
	right: 22px;
	z-index: 2000;
}
#title_item_area img {
	width: 100%;
    opacity: 0;
	animation: poyoyon 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
	animation-delay: 1s;
}
@keyframes poyoyon {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  50% {
    transform: translateX(0);
  }
  65% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
  20%,100% {
    opacity: 1;
  }
}


@media screen and  (min-width: 1100px) {
    .head_container {
        position:relative;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        aspect-ratio: 1.8 / 1;
        background-image:url("../images/head_back.jpg");
        background-position: center;
        background-size: cover;
    }	
	#title_back_area {
        position: absolute;
        display: flex;
        justify-content: center;
		align-items: center;
		width: 100%;
		height:auto;
		z-index: 1100;
}
	#title_back_area .head_back_item{
        width: 50%;
        object-fit: cover;
        animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: 0s;
	}
	#title_area {
        position: absolute;
        display: flex;
        align-items: center;
        width: 50%;
        height:auto;
        z-index: 1200;
    }
    #title_area .head_title {
        width: 100%;
        object-fit: cover;
    }
	#title_item_area {
        position: absolute;
        width: 10%;
        height:auto;
        bottom: 10%;
        right: 16%;
        z-index: 2000;
    }
    #title_item_area img {
        width: 100%;
        opacity: 0;
        animation: poyoyon 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
        animation-delay: 1s;
    }
}



header {
	width: 100%;
	position: absolute;
	top:0;
	justify-content: space-between;	
	z-index: 10000;
}
@media screen and  (min-width: 1100px) {
	header {
	width: 1100px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;	
}
}

/*ロゴ*/
#logo_area {
	margin-left: 11px;
	height: 65px;
	display: flex;
	align-items: center;
}
#logo_area img {
	width: 270px;
	height: auto;
}
@media screen and (max-width: 576px) {
#logo_area img {
	width: calc(100% - 6rem);
	height: auto;
	}
}

/*ナビゲーション*/
#nav_area{
          display: none;
      }
@media screen and  (min-width: 1100px) {
    #nav_area {
        display: block;
        width: 800px;
      }
	}
  #nav_area > ul {
        display: flex;
        justify-content:space-around;
        margin-bottom: 0;
  }
	#nav_area li {
        list-style:none;
        display:block;
        font-size: 1.6rem;
        font-weight: bold;
	}
	#nav_area li a {
		padding: 8px 15px;
        color: #000;
		display: block;
		border-radius: 20px;
	    border: solid 2px #000;
		background-color: #fff;
	}
	#nav_area li:hover > a {
		color: #fff;
		text-decoration: none;
		background-color: var(--blue);
  }
	

/*ドロワー*/
@media screen and  (min-width: 1100px) {
  .drawer-toggle {
          display: none;
      }
}

button:focus {
	outline: none;
}
/*位置調整*/
.drawer-hamburger {
	width: 2.6rem;
	margin: 15px;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 25px;
	padding-left: 15px;
	border-radius: 7px;
	border: solid 2px #000;
}
.drawer-hamburger,
.drawer-hamburger:hover {
	background-color: #fff;
}
.drawer--right .drawer-nav {
    right: -400px;
}
.drawer-nav {
  overflow: visible;
  width: 400px;
}
@media screen and (max-width: 380px) {
    .drawer-nav {
      width: 100%;
    }	
}


.drawer-nav {
	background-color: var(--blue);
}
.drawer-menu {
	margin: 80px 26px 0px 26px;
	display: flex;
	flex-direction: column;
}
.drawer-menu li {
	display: block;
	margin-bottom: 30px;
	padding: 5px 20px;
	background-color: #fff;	
	color: #000;
	border: solid 2px #000;
	border-radius: 30px;
}
.drawer-menu li:hover {
	background-color: var(--blue);
	color: #fff;
	border: solid 2px #fff;
}
.drawer-menu a{
	display: block;
	font-size: 1.8rem;
	font-weight:bold;
}
.drawer-menu a:hover {
	color: #fff;
	text-decoration: none;
}


.btn:focus, .btn.focus {
  box-shadow:none;
}


/*--------------------------------------------
 	contents
---------------------------------------------*/
.box_blue {
	position: relative;
	background-color: var(--blue);
	border: solid 7px #000;
}

/*--------------------------------------------
 	スクロールアニメーション
---------------------------------------------*/
.animate {
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; 
}
.fade-in {
    transform: translateY(120px);
}
.zoom-in {
    transform: scale(0.8); 
}
.slide-in {
    transform: translateY(-80px); 
}
.slide-in-L {
    transform: translateY(-100px);
}
.slide-in-under {
    transform: translateY(50px); 
}
.slide-in-under-L {
    transform: translateY(100px); 
}
.rotate {
    transform: rotate(-30deg);
}
/* --------------------------
 【最終状態】要素が画面内に入ったとき（アニメーション完了時）
 -------------------------- */
.show {
    opacity: 1; 
    transform: translateY(0) scale(1) translateX(0) rotateY(0); /* 元の位置・サイズ・回転に戻す */
}

/*--------------------------------------------
 	リード
---------------------------------------------*/
.lead_area .box_blue {
	margin: 0;
}
.lead_area p {
	margin-bottom: 20px;
	color: #fff;
	font-weight: bold;
}
.lead_area p.center {
	text-align: center;
}

.lead_area .box_blue > div:first-child {
	margin: -20px auto 0;	
}
.lead_area .box_blue > div:nth-child(2) {
	margin: 0 27px;	
}

.lead_area .hukidashi {
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("../images/item-hukidashi-01.svg") no-repeat center center / cover;
	width: 100%;
	aspect-ratio: 1 / 0.46;
}
.lead_area .hukidashi p {
	margin-top: -20px;
	color: #000;
	font-size: 2.2rem;
	line-height: 1.3;
}

.lead01 p {
	color: var(--blue);
	font-weight: bold;
	margin-bottom: 16px;
}
.lead01 p:last-child {
	margin-bottom: 30px;
}
@media screen and  (min-width: 451px) {
    .lead_area .box_blue {
		display: flex;
		flex-direction: column;
		justify-content: center;
    }
    .lead_area .box_blue > div:nth-child(1){
		width: 440px;
	}
	 .lead_area .box_blue > div:nth-child(2){
		display: inline-block;
	}
}
@media screen and  (min-width: 1100px) {
    .lead_area .box_blue {
        padding-top: 20px;
        display: flex;
		justify-content: space-around;
		align-items: center;
    }
    .lead_area .box_blue > div {
		margin: 0 20px;
        width: 50%;
    }
	.lead_area .hukidashi {
        margin: 0;
        display: flex;
        justify-content: center;
        width: 480px;
        aspect-ratio: 1 / 0.46;
	}
	.lead_area .hukidashi p {
	font-size: 2.8rem;
	}
	.lead_area .box_blue > div:nth-child(2) p {
		font-size: 1.9rem;
	}
}

/*--------------------------------------------
 	ページ内ナビ
---------------------------------------------*/
#page_nav {
	margin: 33px 0 26px;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	list-style-type: none;
}
#page_nav li {
	margin-bottom: 0;
	padding-left: 5px;
	width: 50%;
	height: 110px;
	border: solid 5px #000;
	font-weight: bold;
	background-size: cover;
	-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	paint-order: stroke;
}
#page_nav li a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}
#page_nav li div:nth-child(1) {
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url("../images/item-hukidashi-point.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	width: 20%;
	aspect-ratio: 1 / 0.93;
}
#page_nav li div:nth-child(2) {
	margin-left: 8px;
	display: inline-block;
	vertical-align: middle;
}
#page_nav li div:nth-child(2) span {
	display: block;
}

#page_nav li:nth-child(odd) {
	border-right: none;
}
#page_nav li:nth-child(-n + 2) {
	border-bottom: none;
}

@media screen and  (min-width: 1100px) {
    #page_nav {
		margin-top: 50px;
        display: flex;
        flex-wrap: nowrap;
    }
	#page_nav li {
	width: 25%;
	height: 80px;
	border: solid 5px #000;
		font-size: 1.7rem;
	}
	#page_nav li:nth-child(2) {
	border-right: none;	
	}
	#page_nav li:nth-child(-n + 2) {
	border-bottom: solid 5px #000;
	}
}


@media screen and (max-width: 299px) {
#page_nav li {
	width: 100%;
	height: 50px;
	border-bottom: none;
	font-size: 1.7rem;
	}
#page_nav li div:nth-child(1) {
	width: 10%;
	aspect-ratio: 1 / 0.93;
	}
#page_nav li:nth-child(odd) {
	border-right: solid 5px #000;
}
#page_nav li:last-child {
	border-bottom: solid 5px #000;
}
#page_nav li div:nth-child(2) span {
	display: inline-block;
}
}

#page_nav li:first-child {
	background-image: url("../images/back_orange.svg");
}
#page_nav li:nth-child(2) {
	background-image: url("../images/back_blue.svg");
}
#page_nav li:nth-child(3) {
	background-image: url("../images/back_paleblue.svg");
}
#page_nav li:nth-child(4) {
	background-image: url("../images/back_green.svg");
}

/*--------------------------------------------
 	ポイント
---------------------------------------------*/
.point_area {
	margin-bottom: 26px;
	display: flex;
	flex-direction: column;
    justify-content: center;
}
@media screen and  (min-width: 1100px) {
	.point_area {
	flex-direction: row;
    justify-content: center;
	}	
}
.point_area.main_box {
	margin: 15px;	
}
.point_area > div{
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.point_area .point {
	position: relative;
	display: flex;
    justify-content: center;
    align-items:flex-start;
}
.point_area .point img {
	width: 124px;
	height: auto;
	align-self: flex-start;
	max-inline-size: none;
}
.point_area .point h5 {
	margin-top: 8px;
	position: absolute;
    display: flex;
    justify-content: center;
    align-items:flex-end;
	font-size: 1.3rem;
	line-height: 1;
	color: #000;
	text-align: center;
}
.point_area .point h5::before,
.point_area .point h5::after {
    width: 2px;
    height: 16px;
    background-color: #000;
    content: '';
}
.point_area .point h5::before {
    transform: rotate(-35deg);
    margin-right: 12px;
}
.point_area .point h5::after {
    transform: rotate(35deg);
    margin-left: 12px;
}

.point_area h3 {
	margin-left: 10px;
	font-size: 2.6rem;
	font-weight: bold;
	color: var(--blue);
	line-height: 1.2;
	margin-block-start: 0;
    margin-block-end: 0;
}
.point_area ul {
	margin-top: 16px;
	color: var(--blue);
	list-style-type: none;
}
.point_area ul li:first-child {
	font-weight: bold;
}
@media screen and  (min-width: 451px) {
	.point_area ul {
		margin: 10px auto 0;
	}
}
@media screen and  (min-width: 1100px) {
	.point_area > div{
	margin: 0;
	display: flex;
	align-items: center;
	}
	.point_area h3 {
	margin-right: 20px;
	font-size: 2.8rem;
	line-height: 1.5;
	}
	.point_area ul {
	color: var(--blue);
	list-style-type: none;
		font-size: 1.7rem;
	font-weight: bold;
}
.point_area ul li:first-child {
	font-weight: bold;
	font-size: 1.8rem;
}
}


/*--------------------------------------------
 	メインエリア
---------------------------------------------*/
.main_box {
	margin: 15px;
}
.main_box h2 {
	font-size: 2.4rem;
	line-height: 1.4;
	color: var(--blue);
}
.main_box h2 span {
	color: #000;
}
.text_blue {
	color: var(--blue);
	font-weight: bold;
}
@media screen and  (min-width: 768px) {
	.main_box.lead_title {
		display: flex;
	}
	.main_box h2 {
		margin: 0 auto;
	}
}
@media screen and  (min-width: 1100px) {
	.main_box.lead_title {
		display: flex;
	}
	.main_box h2 {
		margin: 0 auto;
	font-size: 3.2rem;
	line-height: 1.4;
	color: var(--blue);
	}
    .main_box.lead01 {
        margin: 30px 15px 50px;
    }
    .main_box.lead01 p {
       font-size: 1.8rem;
    }
}

.box_blue.lead02 p {
	margin: 20px 27px;
	font-size: 1.7rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
}

.box_blue.lead02 .hukidashi {
	margin: -20px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("../images/item-hukidashi-02.svg") no-repeat center center / cover;
	width: 100%;
	aspect-ratio: 1 / 0.45;
}
.box_blue.lead02 .hukidashi p {
	margin: 0;
	color: #fff;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.2;
}
.box_blue.lead02 .hukidashi p span {
	color: #000;
	font-size: 2.2rem;
	line-height: 1.3;
}
@media screen and  (min-width: 451px) {
.box_blue.lead02 .hukidashi {
	margin: -20px auto 0;
	width: 450px;
}
	.box_blue.lead02 .hukidashi p,
	.box_blue.lead02 .hukidashi p span {
	font-size: 2.6rem;
	}
	.box_blue.lead02 > div:nth-child(2) p {
		text-align: center;
	}
		
}
@media screen and  (min-width: 1100px) {
	.box_blue.lead02 .hukidashi {
	width: 40%;
	}
	.box_blue.lead02 .hukidashi p, 
	.box_blue.lead02 .hukidashi p span{
	font-size: 2.8rem;
	}
	.box_blue.lead02 > div:nth-child(2) p {
		text-align: center;
		font-size: 1.8rem
	}
}


/*所長*/
.box_blue.lead03 {
	display: flex;
	flex-direction: column;
}
.box_blue.lead03 p {
	margin: 20px 14px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.7;
}

.box_blue.lead03 .hukidashi {
	margin: -20px auto 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("../images/item-hukidashi-03.svg") no-repeat center center / cover;
	width: 100%;
	aspect-ratio: 1 / 0.29;
}
.box_blue.lead03 .hukidashi p {
	margin: 0;
	font-size: 3rem;
	font-weight: bold;
	color: #000;
	text-align: center;
	line-height: normal;
}
@media screen and  (min-width: 451px) {
.box_blue.lead03 .hukidashi {
	width: 350px;
	}
}

.aisatsu_area {
	position: relative;
	margin: -20px auto 0;
	width: 250px;
	text-align: center;
	z-index: 6000;
}
.aisatsu_area h4 {
	padding: 5px auto;
	font-size: 1.6rem;
	border: solid 5px #000;
	border-radius: 18px;
	background-color: #fff;
}
.aisatsu_area img {
	margin: 0 auto;
	width: calc( 100% - 26px );
}

@media screen and  (min-width: 1100px) {
    .box_blue.lead03 {
		margin-top: 50px;
        display: flex;
        flex-direction: row;
		justify-content:space-between;
    }	
	.box_blue.lead03 > div:first-child {
		order: 2;
		margin-right: 50px;
		width: 250px;
        display: flex;
		flex-direction: column;
	}
	.box_blue.lead03 .hukidashi {
	margin: -50px auto 0;
		width: 250px;
	}
	.box_blue.lead03 .hukidashi p {
	font-size: 2.4rem;
	}
	.aisatsu_area {
	margin: -20px auto 0;
	width: 200px;
}
	.aisatsu_area img {
		width: 160px;
	}
	.box_blue.lead03 > div:nth-child(2) {
		padding-left: 70px;
		display: flex;
		align-items: center;
	}
	.box_blue.lead03 p {
	margin:0;
		font-size: 1.7rem;
	}
	.box_blue.lead03 p span {
		display: block;
	}
}

/*--------------------------------------------
 	リクルートエリア
---------------------------------------------*/
.recruit_area {
	margin: 40px 0 0;
}

.recruit_area h2 {
	width: 100%;
	font-size: 2rem;
	padding: 6px 10px 6px 20px;
	border: solid 7px #000;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-text-stroke: 3px #fff;
	text-stroke: 3px #fff;
	paint-order: stroke;
}
.recruit_area h2 span {
	padding-top: 6px;
	padding-left: 12px;
	margin-right: 20px;
	display: inline-block;
	background-image: url("../images/item-hukidashi-point.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: top;
	width: 43px;
	height: 40px;
}

.recruit_area.recruit01 h2 {
	background-image: url("../images/back_orange.svg");
}
.recruit_area.recruit02 h2 {
	background-image: url("../images/back_blue.svg");
}
.recruit_area.recruit03 h2 {
	background-image: url("../images/back_paleblue.svg");
}
.recruit_area.recruit04 h2 {
	background-image: url("../images/back_green.svg");
}

.recruit_area .main_box p.lead {
	font-weight: bold;
}
.recruit_area .main_box h3 {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1.5;
	color: var(--blue);
}
.recruit_area .main_box h3 span {
	display: block;
}
.recruit_area img.recruit_img {
	margin-bottom: 20px;
}
@media screen and  (min-width: 1100px) {
	.recruit_area .main_box p.lead {
		margin-top: 20px;
	}
	.recruit_area .main_box h3 {
	font-size: 2.4rem;
	text-align: center;
	}
    .recruit_area .main_box h3 span {
        display: inline;
    }	
	.photo_area {
		display: flex;
		justify-content: space-around;
	}
	.photo_area > div {
		width: calc(50% - 30px);
	}
	.photo_area .main_box {
		margin: 0;
	}
	.recruit_area img.recruit_img  {
		margin-bottom: 40px;
	}
}


h5.list_title {
	display: inline-block;
	margin-bottom: 10px;
	padding: 1px 10px;
	font-size: 1.6rem;
	border: solid 1px #000;
}
ul {
	list-style-type: disc;
	margin-bottom: 20px;
	padding-left: 1em;
	line-height: 1.4;
}
ul li {
	margin-bottom: 8px;
}

/*ここがヤリガイ*/
.yarigai_area {
	margin-top: 80px;
	padding: 0 16px 20px;
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	background-color: var(--blue);
}
.yarigai_area .point {
	margin-top: -62px;
	position: relative;
	display: flex;
    justify-content: center;
    align-items:flex-start;
	/*width: 124px;*/
}
.yarigai_area .point h5 {
	margin-top: 12px;
	position: absolute;
    display: flex;
    justify-content: center;
    align-items:flex-end;
	font-size: 1.3rem;
	line-height: 1;
	color: #fff;
	text-align: center;
}
.yarigai_area .point h5::before,
.yarigai_area .point h5::after {
    width: 2px;
    height: 16px;
    background-color: #fff;
    content: '';
}
.yarigai_area .point h5::before {
    transform: rotate(-35deg);
    margin-right: 12px;
}
.yarigai_area .point h5::after {
    transform: rotate(35deg);
    margin-left: 12px;
}

/*コメント*/
@media screen and  (min-width: 1000px) {
	.comment_box {
		display: flex;
		justify-content: space-around;

	}
	.comment_area {
		/*width: calc(50% - 40px);*/
		width: 46%;
		align-self: flex-end;
	}
	#recruit02 .comment_area,
	#recruit03 .comment_area {
		width: 30%;
		align-self: flex-end;
	}
}

.comment_area {
	margin-top: 20px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.comment_area .comment {
    position: relative;
    padding: 16px;
    border: 2px solid #000;
	background-color: #fff;
}
.comment_area .comment::before,
.comment_area .comment::after {
    position: absolute;
    left: 30px;
    bottom: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
.comment_area .comment::before {
    background-color: #000;
}
.comment_area .comment::after {
    bottom: -12px;
    background-color: #fff;
}

.comment_area img {
	margin: 16px auto 0;
	width: 220px;
	height: auto;
}

/*募集要項*/
.bosyu_area {
	margin-top: 12px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.bosyu_area .hukidashi {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url("../images/item-hukidashi-yellow.svg") no-repeat center center / cover;
	width: 200px;
	height: 69px;
}
.bosyu_area.appeal .hukidashi {
	width: 250px;
	height: 87px;
}
.bosyu_area .hukidashi p {
	font-size: 2rem;
	font-weight: bold;
	color: #000;
	text-align: center;
	line-height: normal;
}

.bosyu_area a.link_button {
	margin: 0 auto;
	padding: 12px 67px;
	letter-spacing: 6px;
}

/*アピール*/
.appeal_area {
	margin-top: 15px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.appeal_image {
	display: flex;
	justify-content: center;
	flex-direction: column;
	z-index: -500;
}
.appeal_image h5 {
	margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items:flex-end;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1;
	color: #000;
	text-align: center;
}
.appeal_image h5::before,
.appeal_image h5::after {
    width: 3px;
    height: 22px;
    background-color: #000;
    content: '';
}
.appeal_image h5::before {
    transform: rotate(-35deg);
    margin-right: 12px;
}
.appeal_image h5::after {
    transform: rotate(35deg);
    margin-left: 12px;
}

.appeal_image img {
	margin:  0 auto;
	width: 250px;
}

.appeal_box {
	padding: 20px 20px 29px;
	width: 100%;
	border: solid 7px #000;
	background-color: #fff;
}
.appeal_box h3 {
	margin-bottom: 5px;
	font-size: 2.1rem;
	font-weight: bold;
	color: var(--blue);
	line-height: 1.5;
}
.appeal_box h3 span {
	display: block;
}
.appeal_box h5.list_title {
	margin-top: 16px;
}
.bosyu_area.appeal .hukidashi img{
	width: 250px;
	height: auto;
}
.bosyu_area.appeal p {
	top: 21px;
	left:18px;
}
@media screen and  (min-width: 768px) {
	.appeal_box > div{
		text-align: center;
	}
	.appeal_box h3 {
		font-size: 2.4rem;
		margin-bottom: 10px;
	}
    .appeal_box h3 span {
		margin: 0 auto;
        display: inline;
    }	
}


/*--------------------------------------------
 	footer
---------------------------------------------*/
#footer {
	margin-top: 38px;
	width: 100%;
	text-align: center;
}
@media screen and  (min-width: 1100px) {
  #footer {
	margin-top: 80px;
  }
}

#foot_area {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#foot_area img {
	margin: 0 auto;
}
#foot_area h5 {
	margin-top: 12px;
	margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items:flex-end;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1;
	color: #000;
	text-align: center;
}
#foot_area h5::before,
#foot_area h5::after {
    width: 3px;
    height: 22px;
    background-color: #000;
    content: '';
}
#foot_area h5::before {
    transform: rotate(-35deg);
    margin-right: 12px;
}
#foot_area h5::after {
    transform: rotate(35deg);
    margin-left: 12px;
}

#foot_area .item_boy {
	width: 80px;
	height: auto;
}
@media screen and  (min-width: 1100px) {
    #foot_area h5 {
        font-size: 2.2rem;
    }
    #foot_area h5::before,
    #foot_area h5::after {
        width: 3px;
        height: 26px;
    }
    #foot_area .item_boy {
        width: 100px;
        height: auto;
    }	
}

/*リンク*/
#banner_area {
	width: 92%;
	margin: 30px auto;
	list-style-type: none;
}
#banner_area li {
	margin-bottom: 15px; 
	padding: 8px auto;
    line-height: 1;
}
#banner_area a.link_button {
	display: block;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	letter-spacing: 1px;
	border: solid 3px var(--pale-blue);
	background-color: var(--pale-blue);
	cursor: pointer;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
#banner_area a.link_button:hover {
	color: var(--pale-blue);
	border: solid 3px var(--pale-blue);
	background-color: #fff;
	text-decoration: none;
}

@media screen and  (min-width: 1100px) {
#banner_area {
	width: 80%;
	margin: 30px auto;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
#banner_area li {
	margin-bottom: 15px; 
	padding: 8px auto;
	width: calc(50% - 30px);
}	
}

/*コピーライトエリア*/
#copy_area {
	position: relative;
	margin-top: 80px;
	padding: 25px 0 15px;
	text-align: center;
	font-size: 1.4rem;
	background-color: var(--blue);
	color: #fff;
}
#copy_area span {
	font-size: 1.1rem;
}
#copy_area ul{
    list-style-type: none;
    margin-bottom: 37px;
    padding-left: 0;
    line-height: 1;
}
#copy_area ul li {
	margin-bottom: 17px;
}
#copy_area ul span {
	font-size: 1.4rem;	
}
#copy_area ul li a {
	color: #fff;
}
#copy_area ul span::after {
	content: "｜"
}
#copy_area img {
	margin: 0 auto 8px;
}
@media screen and (max-width: 767px) {

}

/*gotop*/
#page-top {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
    right: 20px;
    top: -56px;
    height: 50px;
}
@media screen and  (min-width: 1100px) {
	#page-top {
    right: 100px;	
	}
}
#page-top h5 {
    text-decoration: none;
	margin-bottom: 4px;
    display: flex;
    justify-content: center;
    align-items:center;
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1;
	color: #000;
	text-align: center;
}
#page-top h5::before,
#page-top h5::after {
    width: 2px;
    height: 12px;
    background-color: #000;
    content: '';
}
#page-top h5::before {
    transform: rotate(-35deg);
    margin-right: 10px;
}
#page-top h5::after {
    transform: rotate(35deg);
    margin-left: 10px;
}
/*
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}
@media screen and (max-width: 767px) {
#page-top {
    right: 10px;
	}
}


