﻿@charset "UTF-8";
/*==========================================
 全デバイス共通［common］
===========================================*/
html {
  font-size: 62.5%;
}
:root {
  --main-color: #e4838c;
  --sub-color: #81a26e;
  --text-color: #444;
  --bg-color-green: #dcead4;
  --bg-color-pink: #F9E6E5;
  --line-color: #EBEBEB;
}
body {
  width: 100%;
  color: var(--text-color);
  line-height: 1.7;
  font-size: clamp(1.4rem,4vw,1.8rem);
  font-family: 'ZenMaruGothic';
  background-image: url("../images/bg-img.png");
}
*, *:before, *:after {
  box-sizing: border-box;
}
a:link {
  color: var(--text-color);
  transition-duration: .3s;
  text-decoration: none;
}
a:hover {
  color: var(--main-color);
}
a:visited {
  color: #74325c;
}
@font-face {
  font-family: 'ZenMaruGothic';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/ZenMaruGothic-Light.woff') format('woff');
}
@font-face {
  font-family: 'ZenMaruGothic';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ZenMaruGothic-Regular.woff') format('woff');
}
@font-face {
  font-family: 'ZenMaruGothic';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/ZenMaruGothic-Bold.woff') format('woff');
}
/*------------
 hoverスタイル
------------*/
.hover_opacity {
  transition-duration: .3s;
}
.hover_opacity:hover {
  opacity: .7;
}
/*------------
ボタンのスタイル
------------*/
a .btm, 
a.btm{
	margin: 1em auto;
	padding: .75em 1em;
	width: min(90%,220px);
    display: block;
    color: #fff;
	background-color: var(--main-color);
    vertical-align: middle;
    text-decoration: none;
	text-align: center;
	border-radius: 30px;
	font-weight: bold;
}
a:hover .btm,
a.btm:hover{
	background-color: var(--sub-color);
}
/*================
　リンクのアイコン
================ */
main a[href$=".pptx"]:after,
main a[href$=".ppt"]:after,
main a[href$=".pdf"]:after,
main a[href$=".doc"]:after,
main a[href$=".docx"]:after,
main a[href$=".xls"]:after,
main a[href$=".xlsm"]:after,
main a[href$=".xlsx"]:after,
main a[href^="https://"][target="_blank"]:after,
main a[href^="http://"][target="_blank"]:after{
display: inline-block;
width: 25px;
height: 25px;
padding:0 5px;
}
main a[href$=".pdf"]:after{
content: url("../images/icon-pdf.svg");
}
main a[href$=".doc"]:after,
main a[href$=".docx"]:after{
content: url("../images/icon-word.svg");
}
main a[href$=".xls"]:after,
main a[href$=".xlsm"]:after,
main a[href$=".xlsx"]:after{
content: url("../images/icon-excel.svg");
}
main a[href$=".pptx"]:after,
main a[href$=".ppt"]:after{
content: url("../images/icon-ppt.svg");
}
main a[href^="https://"][target="_blank"]:after,
main a[href^="http://"][target="_blank"]:after{
content: url("../images/icon-blank.svg");
width: 25px;
height: 25px;
}
/*==========================================
 PC［1001px~］
===========================================*/
.sp_on, .tb_on {
  display: none;
}
/*------------
 全体　レイアウト
------------*/
.containerWrap{
	display: grid;
	grid-template-columns: min(30%,355px) 1fr;
	grid-template-rows: auto;
	height: 100vh;
	grid-template-rows: 1fr auto;
}
header{
	grid-row: 1 / 3;
    grid-column: 1 / 1;
	background-color: #fff;
}
main,footer{
    grid-column: 2 / 3;
}
/*------------
 header
------------*/
.headerWrap{
	position: fixed;
	width: min(30%,355px);
	top: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	height: 100%;
}
.logoArea {
	margin-bottom: clamp(1em, 3vw, 3em) ;
	padding: clamp(1em, 4vw, 3em) clamp(1em, 4vw, 2em);
	width:100%;
	border-bottom: solid 1px var(--line-color);
	text-align: center;
}
.logoArea a {
  width: 100%;
  height: 100%;
}
.logoArea img {
  width: min(100%, 240px);
  height: auto;
  pointer-events: auto;
  z-index: 1;
}
/*===global-nav===*/
.global-nav {
	margin: 0 auto;
	width: min(90%, 280px);
	transition: 1s;
}
.global-nav .nav-list {
  margin: 0;
  padding: 0;
  position: relative;
}
.global-nav .nav-list a {
  display: block;
	padding-left: clamp(35px, 5vw, 55px);
  text-decoration: none;
  font-weight: bold;
  font-size: clamp(1.8rem, 2vw, 2rem);
  line-height: 1.5;
  color: var(--text-color);
}
.global-nav .nav-list li{
	padding: .75em 0;
	position: relative;	
}
.global-nav .nav-list li:before {
	margin: auto;
	content: '';
	width: clamp(15px, 4vw, 35px);
	height: clamp(15px, 4vw, 35px);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: left;
	background-size: contain;
}
.global-nav .nav-list li:nth-child(1):before {
	background-image: url("../images/menu-icon1.svg");
}
.global-nav .nav-list li:nth-child(2):before {
	background-image: url("../images/menu-icon2.svg");
}
.global-nav .nav-list li:nth-child(3):before {
	background-image: url("../images/menu-icon3.svg");
}
.global-nav .nav-list li:nth-child(9):before {
	background-image: url("../images/menu-icon8.png");
}
.global-nav .nav-list li:nth-child(4):before {
	background-image: url("../images/menu-icon9.png");
}
.global-nav .nav-list li:nth-child(5):before {
	background-image: url("../images/menu-icon4.svg");
}
.global-nav .nav-list li:nth-child(6):before {
	background-image: url("../images/menu-icon5.svg");
}
.global-nav .nav-list li:nth-child(7):before {
	background-image: url("../images/menu-icon6.svg");
}
.global-nav .nav-list li:nth-child(8):before {
	background-image: url("../images/menu-icon7.png");
}

.global-nav .nav-list li a.current:hover,
.global-nav .nav-list a:hover {
    color: var(--sub-color);
    position: relative;
  }
/*カレント*/
.global-nav .nav-list li a.current{
	color: var(--main-color);
}
/* SP */
#nav-toggle {
  display: none;
}
/* END SP */
header adress {
margin: clamp(1em, 4vw, 3em) auto 3em;
padding: 2em .5em 1em;
width: min(100%, 240px);
display: block;
border-top: solid 1px var(--line-color);
border-bottom: solid 1px var(--line-color);
}
header adress p {
	font-size: clamp(1.4rem, 2vw, 1.6rem);
	margin-bottom: .5em;
	line-height: 1.75;
}
header adress .btm {
	margin: 0 0 1em;
	width: min(100%, 185px);
	padding: .5em;
	padding-left: 2.5em;
	position: relative;
	font-size: clamp(1.4rem, 2vw, 1.6rem);
	font-weight: bold;
}
header adress .btm:before {
	margin: auto;
	width: 40px;
	height: 40px;
	content: url("../images/icon-mail-wh.svg");
	display: inline-block;
	vertical-align: middle;
	transform: scale(0.5);
	position: absolute;
	top: 0;
	bottom: 0;
	left: 1em;
}

header .headerbnr,
header .headerbnr img{
	margin-bottom: 2em;
	width: 100%;
	height: auto;
	display: block;
}
/*------------
 コンテンツ
------------*/
section {
  padding: min(10%, 150px) 1.5em min(10%, 100px);
	background-repeat: no-repeat;
	background-size: min(50%, 380px);
	background-attachment: fixed;
}
section:nth-child(odd) {
	background-position: top right;
	background-image: url("../images/bk-img-hanamizuki02.png");
}
section:nth-child(even) {
	background-image: url("../images/bk-img-hanamizuki.png");
	background-position: top left 25%;
	position: relative;
	background-color:rgba(255,255,255,0.5);
	background-blend-mode:lighten;
}
section .inner{
	margin: 0 auto;
	width: min(100%, 780px);
    align-items: flex-start;
}
/*--見出し--*/
main h2{
	font-weight: bold;
	line-height: 1.25;
	font-size: clamp(3rem, 4vw, 3.5rem);
}
main h3{
	font-size: clamp(2.5rem, 4vw, 3rem);
	line-height: 1.25;
}
main h4{
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	line-height: 1.25;
}
/*--カラム--*/
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.col_2 > :is(div,li){
	margin-bottom: 1em;
	width: 48%;
}
.col_3 > :is(div,li){
	margin-bottom: 1em;
	width: 32%;
}
.col_3:after{
	content: '';
	width: 32%;
	display: block;
}
/*------------
	 画像類
------------*/
.img100{
	width: 100%;
	height: auto;
}
/*------------
	 テキスト関連
------------*/
main p{
	margin-bottom: .5em;
	letter-spacing: .05em;
	text-align: justify;
}
.indent {
	padding-left:1em;
	text-indent:-1em;
}
.text_small {
	font-size:1.2rem;
	line-height: 1.25;
}
.text_large {
	font-size:2rem;
	line-height: 1.25;
}
.text_lead{
	font-size:clamp(1.8rem,5vw,2rem);
	font-weight: bold;
}
.text_bold {
  font-weight: bold;
}
.text_wh {
  color: #fff;
}
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}
.text_under_line{
	background: linear-gradient(transparent 70%, rgba(248,191,191,.3) 0%);
}
/*------------
	 ol
------------*/
main ol {
	margin: 1em 0 2em;
  counter-reset: count 0;
	letter-spacing: .05em;
}
main ol li {
  margin-bottom: .5em;
  padding-left: 2em;
  position: relative;
list-style-type: none;
}
main ol li:last-child {
  margin-bottom: 0;
}
main ol > li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
  font-weight: bold;
  color: var(--main-color);
  position: absolute;
  left: 5px;
}
/*------------
	 ul
------------*/
main ul{
	margin: 1em 0 2em;
	letter-spacing: .05em;
}
main ul:not(.checkList) li {
	margin: 0 0 .25em 1.5em;
	position: relative;
	list-style: none;
}
main ul:not(.checkList) li::after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: -1.5em;
	width: 15px;
	height: 15px;
	background-color:var(--main-color);
	border-radius: 100%;
}
/*------------
	 テーブル
------------*/
/*ノーマル*/
.tableWrap{
	margin: 1em auto 2em;
	padding: .5em ;
	background: #fff;
	border-radius: 10px;
}
main table {
	margin:  0 1em 1em;
	line-height: 1.8;
	letter-spacing: .05em;
}
main th {
	padding: 1em;
	vertical-align: middle;
	border-bottom: solid 2px var(--line-color);
	color: var(--sub-color);
}
main td {
  padding: 15px;
	border-bottom: solid 2px var(--line-color);
	vertical-align: middle;
	text-align: justify;
}
main table p:last-child{
	margin-bottom: 0;
}
/*SP時、th td 100%*/
main table.sp-th100 th{
		width: 30%;
}
/*データラベルでレスポンシブ対応テーブル*/
.dataLabelTable{
	margin-top: 1em;
}
.dataLabelTable thead th {
	color: var(--text-color);
	background: var(--bg-color-green);
	border-bottom: none;
}
.dataLabelTable thead th:first-child {
	border-radius: 10px 0 0 10px;
}
.dataLabelTable thead th:last-child {
	border-radius: 0 10px 10px 0;
}
.dataLabelTable tbody th{
	text-align: left;
}
/*------------
	お問い合わせ
------------*/
.contactArea{
	margin: 3em 0 0;
	padding: 2em;
	background: #fff;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, .1);
	border-radius: 10px;
}
.contactArea .col_2 > div{
	padding: 1em;
	margin: 1em 0 0;
}
.contactArea .col_2 > div:not(:last-child){
	border-right:solid 1px var(--line-color);
}
.contactArea h3{
	margin-bottom: 1em;
}
.contactArea h3,
.contactArea .lead{
	margin-right: 1em;
	display: inline-block;
	line-height: 1em;
}
.contactArea img{
	margin: 0 auto 1em;
	width: 40px;
	height: 40px;
	display: block;
}
.telArea {
	text-align: center;
}
.telArea a{
	color: var(--main-color);
	font-size: clamp(3.5rem, 5vw,5rem);
	font-weight: bold;
	line-height: 1;
}
footer .telArea a{
	font-size: clamp(3.5rem, 5vw,4rem);
}
.contactArea .btm{
	padding: .5em;
	width: 100%;
	font-size: clamp(1.5rem, 5vw,2rem);
}
/*------------
	footer
------------*/
footer{
	position: relative;
	background-image: url("../images/bk-img-hanamizuki.png");
	background-repeat: no-repeat;
	background-position: top left;
	background-size: min(50%, 380px);
	background-color:rgba(255,255,255,0.5);
	background-blend-mode:lighten;
}
#footer{
	margin: 0 auto;
	padding: min(10%, 150px) 1em min(10%, 100px);
	width: min(90%, 680px);
}
#footer .siteLogo{
	margin: 0 auto 3em;
	width: min(90%, 240px);
	display: block;
}
.footerbnr a,
.footerbnr img{
		margin: clamp(3em, 5vw, 6em) auto 0;
		width: 100%;
		height: auto;
		display: block;
	}

/*求人情報*/
.recBtm{
	height: 220px;
	width: 60px;
	position: fixed;
	right: 0;
	top: 20%;
	z-index: 999;
}
.recBtm a{
	width: 100%;
	height: 100%;
	padding: 2em .5em .25em;
	background: var(--sub-color);
	color: #fff;
	 -ms-writing-mode: tb-rl;
	 writing-mode: vertical-rl;
	display: block;
	font-weight: bold;
	font-size: 2.5rem;
	letter-spacing: 0;
	border-radius: 10px 0 0 10px; 
}
@-moz-document url-prefix() {
	.recBtm {
	height: 200px;
	}
  .recBtm a{
	letter-spacing: .25em;
	 padding: 2.5em 2em .25em;
	}
}
.recBtm a:before{
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	width: 50px;
	height: 50px;
	background-image: url("../images/icon_rec.svg");
	background-position: center;
	background-repeat: no-repeat;
}
.recBtm a:hover{
	background: var(--main-color);
}
/*END*/
small{
	margin: clamp(3em, 5vw, 6em) auto 0;
	text-align: center;
	display: block;
}
/*-------
 page top
-------*/
#pagetop{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--main-color);
    position: fixed;
	right: 5%;
    bottom: 5%;
	z-index: 900;
}
#pagetop a{
	width: 100%;
	height: 100%;
	display: block;
	text-align: center;
	position: relative;
}
#pagetop a:after{
	content: '';
	margin: 0 auto;
	position: absolute;
	top:22px;
	right: 0;
	left: 0;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
	transition-duration: .3s;
}
/*==========================================
 tb［769px-1024px以下］
===========================================*/
@media screen and (max-width: 1024px) {
  .tb_on {
    display: block;
  }
  .tb_none {
    display: none;
  }
	/*------------
		 コンテンツ
	------------*/
	.col_2 > :is(div,li){
		width: 100%;
	}
	.col_3 > :is(div,li){
		width: 48%;
	}
	/*------------
		お問い合わせ
	------------*/
	.contactArea .col_2 > div:not(:last-child){
		border-right: none;
		border-bottom:solid 1px var(--line-color);
	}
	/*------------
	テーブル
	------------*/
	/*ノーマル*/
	.tableWrap{
		padding: .5em 1em;
	}
	main table {
		margin: 0 0 1em;
		width: 100%;
	}
	/*th td 100%*/
	main table.sp-th100 :is(th,td){
		display: block;
		width: 100%;
	}
	main table.sp-th100 th{
		margin: 1.5em 0 .5em;
		padding: .25em .5em;
		border: none;
		color: #fff;
		background: var(--sub-color);
		border-radius: 10px;
		font-size: 1.5rem;
	}
	main table.sp-th100 td{
		padding: .25em;
	}
	/*データラベルでレスポンシブ対応テーブル*/
	.dataLabelTable thead{
		display: none;
	}
	.dataLabelTable tbody th{
	text-align: center;
	}
	.dataLabelTable td{
	 position: relative;
	}
	.dataLabelTable td:before{
        content: attr(data-label);
		display: block;
		text-align: center;
		color: var(--sub-color);
		font-weight: bold;
	}
	.dataLabelTable td[data-label="受入対応"]{
		text-align: center;
	}
	/*------------
		footer
	------------*/
	#footer_nav >div{
		width: 50%;
	}
	
}
/*==========================================
 sp［540px以下］
===========================================*/
@media screen and (max-width: 540px) {
  .sp_on {
    display: block;
  }
  .pc_on {
    display: none;
  }
  a.btm, a.bnr-btm {
    margin: 1em auto;
    font-size: 1.4rem;
  }
	/*------------
	 全体　レイアウト
	------------*/
	.containerWrap{
		grid-template-rows: 70px auto auto;
	}
	header{
		grid-column: 1 / 3;
		grid-row: initial;
	}
	main,footer{
		grid-column: 1 / 3;
	}
	footer{
		margin-top: auto;
	}
	 /*------------
			 header
	------------*/
	.headerWrap{
		position: static;
		width: 100%;
		overflow: inherit;
	}
	.logoArea{
		padding: .5em 1em;
		text-align: left;
		border-bottom: none;
	}
  /* nav-toggle */
  #nav-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    height: 50px;
    width: 50px;
	  border-radius: 50%;
    background: var(--sub-color);
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-size: 28px;
    z-index: 9999;
    pointer-events: auto;
  }
  #nav-toggle > div {
    position: relative;
    width: 20px;
  }
  #nav-toggle > div:after {
    content: 'MENU';
    font-size: 1rem;
    position: absolute;
    bottom: -45px;
    right: -20px;
	  color: #fff;
  }
  #nav-toggle span {
    margin: 0 auto;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 15px;
    display: block;
    background: #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 15px;
  }
  #nav-toggle span:nth-child(2) {
    top: 20px;
  }
  #nav-toggle span:nth-child(3) {
    top: 25px;
  }
  /* #nav-toggle close */
  .open #nav-toggle span:nth-child(1) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .global-nav {
    margin: 0;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    pointer-events: none;
    z-index: 999;
  }
	.sp_nav_wrap{
	width: 100%;
	height: 100%;
	background: rgba(245, 245, 245, .9);
    display: none;
	left: 50%;
	padding: 60px 1em 10px;
	position: absolute;
	transform: translate(-50%, 0%);
	pointer-events: auto;
	backdrop-filter: blur(5px);
	overflow: auto;
    -webkit-overflow-scrolling: touch;
	}
  .global-nav .nav-list .nav-item a {
    color: #fff;
    padding: .75em 1em;
    text-align: left;
    position: relative;
  }
.global-nav .nav-list li::before {
  width: 25px;
	height: 25px;
	}

	header adress{
		margin: 1em 0 0;
		width: 100%;
	background: rgba(255,255,255,.7);
	border-radius: 10px;
	text-align: center;
	}
	header adress p {
		font-size: 1.4rem;
	}
	header adress .btm {
		margin: 1em auto;
	}
	header .headerbnr{
		margin: 2em 0 4em;
	}
	/*------------
		お問い合わせ
	------------*/
	.contactArea{
		margin: 1em 0 0;
	}
	.contactArea .col_2 > div {
	  padding: 1em 0;
	}
	
	/*------------
		footer
	------------*/
	.recBtm{
	height: 50px;
	width: 100%;
	position: fixed;
	right: 0;
	top: inherit;
	bottom: 0;
	}
	.recBtm a{
		width: 100%;
		height: 100%;
		padding: 1em .25em;
		 -ms-writing-mode: lr-tb;
		 writing-mode: horizontal-tb;
		font-size: 2rem;
		border-radius: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		}
		@-moz-document url-prefix() {
			.recBtm {
				height: 50px;
			}
		}
		.recBtm a:before{
			content:url("../images/icon_rec.svg");
			background-image: none;
			position: static;	
		  transform: scale(0.8);
		}
	small {
		margin-bottom: 6em;
	}

}
.container{
	p{
		text-align: center;
	}
	h3{
		text-align: center;
	}
	ol{
		text-align: center;
	}
	
