﻿@charset "UTF-8";


/* 基本レイアウト ここから↓ */
* {
	margin: 0;
	padding: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body{
	font-size: 1.6rem;/* 16px*/
	line-height: 2;
	width: 100%;
	color: #231815;
	background-color: #fff;
	/* フォントの種類を指定 */
	font-family: -apple-system, BlinkMacSystemFont, 游ゴシック, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	/* 字間(プロポーショナルメトリクス)を指定 */
	font-feature-settings: "palt";
	display: inline;
}
li {
	list-style:none;
}
ul, ol {
	padding:0;
	margin:0;
}
a {	
	color: #000;
	text-decoration: none;
}
a:hover {
	/* filter: saturate(180%) opacity(70%);
	transition-duration: 0.5s; */
}
a img:hover {
	filter: opacity(80%);
}
a[href*="tel"] {
	pointer-events: auto;
}
.font {
	font-family: 'Stoke', serif;
	font-style: italic;
}
img {
	max-width: 100%;
    height: auto;
	vertical-align: middle;
	display: block;
	margin: auto;
}
img.widthmax {
	/* width: 100%; */
}
.hidden {
	position: absolute;
	top: -9999px;
	left: -9999px;
  }
.sp_only {
	display: block;
}
.pc_only {
	display: none;
}


@media screen and (min-width: 960px) {
	.sp_only {
		display: none;
	}
	.pc_only {
		display: block;
	}
	a[href*="tel"] {
		pointer-events: none;
	}
}

.bold {
	font-weight: bold;
}
/* webfont */
.wf-rodin-m {
	font-family: "FOT-ロダン Pro M";
}
.wf-rodin-db {
	font-family: "FOT-ロダン Pro DB";
}
.wf-rodin-b {
	font-family: "FOT-ロダン Pro B";
}
.wf-rodin-ntlg {
	font-family: "FOT-ロダンNTLG Pro B";
}

/* 文字色 */
.white {
	color: #fff;
}
.red {
	color: #e70012;
}
.yellow {
	color: #fdf100;
}
.orange {
	color: #ed722e;
}

/* 基本レイアウト ここまで↑ */



/*------------------------------

	ヘッダーここから

------------------------------*/
header {
	background: #fff;
	width: 100%;
	position: fixed;
	z-index: 10;
}
header a {
	/* color: #fff; */
}
#header_box {
	padding: 0 3%;
	display: flex;
	align-items: center; /* 垂直中央寄せ */
	justify-content: space-between;
	
}

#header_box h1 {
	/* width: 300px; */
	/* width: 80%; */
	/* max-width: 150px; */
	width: 200px;
}
#header_box nav{
	font-weight: bold;
}
  /*------------------------------
  
	ここから下がハンバーガーメニュー
	に関するCSS
  
  ------------------------------*/
	
  /* チェックボックスは非表示に */
  .drawer-hidden {
	display: none;
  }

  .drawer {
	align-self: center; /* 垂直方向中央寄せ */
	position: relative; /* 親要素？ */
	
  }

  /* ハンバーガーアイコンの設置スペース */
  .drawer-open {
	display: flex;
	height: 35px;
	width: 35px;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 100;/* 重なり順を一番上に */
	cursor: pointer;
	/* background: #dcdddd; */
	border-radius: 5px;
  }
  
  /* ハンバーガーメニューのアイコン */
  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 20px;
	border-radius: 3px;
	/* background: #231815; */
	background: #555;
	/* transition: 0.5s; */
	transition-duration: 0.5s !important; /* ★スマホで動かない */
	position: absolute;
  }
  
  /* 三本線のうち一番上の棒の位置調整 */
  .drawer-open span:before {
	bottom: 8px;
  }
  
  /* 三本線のうち一番下の棒の位置調整 */
  .drawer-open span:after {
	top: 8px;
  }
  
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer-check:checked ~ .drawer-open span {
	background: rgba(255, 255, 255, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer-check:checked ~ .drawer-open span::before {
	bottom: 0;
	transform: rotate(45deg);
  }
  
  #drawer-check:checked ~ .drawer-open span::after {
	top: 0;
	transform: rotate(-45deg);
  }
	
  /* メニューのデザイン*/
  .drawer-content {
	width: 100%;
	/* width: 50%; */
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%; /* メニューを画面の外に飛ばす */
	z-index: 99;
	background: #fff;
	/* opacity:0.8; */
	transition-duration: 0.5s !important; /* ★スマホで動かない */


	/* position: absolute;
    z-index: 100; 
    top: 68px;
	height: calc( 100vh - 52px);
	*/

	
  }
  
  /* アイコンがクリックされたらメニューを表示 */
  #drawer-check:checked ~ .drawer-content {
	left: 0;/* メニューを画面に入れる */
	/* left: 50%; *//* メニューを画面に入れる */
  }


ul.drawer-list li {
	/* margin: 10px 0; */
}
ul.drawer-list li a {
	display: block;
	padding: 1em 3%;
	/* color: #fff; */
	color: #e70034;
}

#pcnav {
	display: none; /* PC用メニューを非表示に */
}

	/*------------------------------

		PC用メニューここから

	------------------------------*/
	@media screen and (min-width: 960px) {
	
		#header_box {
			/* display: block; 横並び解除　*/
			max-width: 1000px;
			margin: auto;
			padding-top: 10px;
			padding-bottom: 10px;
		}
		#header_box h1 {
			width: 300px;
			/* width: 40%; */
		}
		nav#pcnav {
			/* display: block;	メニューはロゴの下の段に */
			display: inline-block;
			width: 100%;
			margin: auto;
			align-self: center;/*  垂直方向中央寄せ */
			font-size: 0.9em;
			background-color: #e70034;
			padding-top: 0.5em;
			padding-bottom: 0.5em;
		}
		ul#pcnavul {
			display: flex;
			/* justify-content: space-around; */
			justify-content: flex-end; /* PC用メニュー右寄せ */
			
			max-width: 1000px;
			padding: 0 3%;
			margin: auto;
		}
		ul#pcnavul li {
			margin-left: 3em;
		}
		ul#pcnavul a {
			color: #fff;
		}
		ul#pcnavul a:hover {
			border-bottom: 2px solid #fff;
		}
		div.drawer {
			display: none; /* スマホ用メニューを非表示に */
		}
	}
	/*------------------------------

		PC用メニューここまで

	------------------------------*/


/* ヘッダーTELここから */
#logo-tel {
	display: flex;
	align-items: center; /* 垂直中央寄せ */
}

.tel {
	padding-left: 2%;
	margin-left: 2%;
	/* padding-right: 1%; */
	padding-top: 1%;
	padding-bottom: 1%;
	/* border-left: 1px solid #fff; */
	width: 250px;
}
/* ヘッダーTELここまで */

/*------------------------------

	ヘッダーここまで

------------------------------*/
/*------------------------------

	メイン部分ここから

------------------------------*/
main {

}
main video {
	width: 100%;
	display: block;
}
main > section {
	max-width: 1000px;
	padding: 0 3%;
	margin: auto;
	margin-top: 30px;
}
@media screen and (min-width: 960px) {
	main > section {
		margin-top: 70px;
	}
}

/* メインイメージ部分 ここから */
#main-img {
	width: 100%;
	margin-top: 0;
	background-color:#e70034;
}
#main-img img {
	/* max-height: 100vh; */
	width: 100%;
	max-width: 1500px;
}
/* メインイメージ部分 ここまで */

/* キャッチコピー部分 ここから */
main > section#catch {
	margin-top: 0;
}
#catch p {
	margin-top: 1em;
	line-height: 1.7em;
}
@media screen and (min-width: 960px) {
	#catch p {
		font-size: 1.3em;
	}
}
/* キャッチコピー部分 ここまで */
/* サービス部分 ここから */
#service-title {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	font-size: 1em;
}
#service-title h3 {
	font-size: 1em;
}
#service-title img {
	width: 60%;
	margin-right: 0;
}
#service > section {
	margin-bottom: 4em;
	text-align: center;
}
#service h4 {
	background-color: #e70034;
	color: #fff;
	text-align: center;
	font-size: 1.3em;
	padding: 0.3em;
	margin-top: 0.5em;
}
#service img {
	margin-top: 2em;
}
.service-icon {
	width: 25%;
	max-width: 130px;
}
#service ul {
	margin-top: 1.5em;
	font-weight: bold;
}
.reform-btn {
	font-size: 1.3em;
	color: #e70034;
	border: 4px solid #e70034;
	width: 85%;
	max-width: 400px;
	border-radius: 5px;
	margin-top: 1em;
	display: inline-block;
}
/* サービス部分 ここまで */
/* アバウト部分 ここから */
#about-sp, #about-pc {
	background-color: #e70034;
	color: #fff;
}
#about-sp-title h3 {
	position: absolute;
	padding-top: 7%;
	padding-left: 5%;
}
#about-sp-title img {
	position: relative;
	width: 75%;
	padding: 1em 0;
	margin-right: 0;
}
#about-sp-imgtext {
	padding: 0 5% 7% 5%;
}
#about-sp-imgtext p {
	margin-top: 0.5em;
	font-size: 1.4rem;
}
#about-pc {
	position: relative;
}
#about-pc img {
	padding-top: 2%;
	padding-bottom: 5%;
}
#about-pc-text {
	position: absolute;
	right: 5%;
    top: 15%;   
	width: 30%;
}
#about-pc-text p {
	font-size: 1.5rem;
	margin-top: 1rem;
}
/* アバウト部分 ここまで */

/* 代表挨拶 ここから */
#greeting {
	position: relative;
}
@media screen and (min-width: 960px) {
	#greeting {
		width: 90%;
	}
}
#greeting-text {
	position: absolute;
	top: 25px;
	left: 5%;
	padding-right: 5%;
}
@media screen and (min-width: 960px) {
	#greeting-text {
		width: 50%;
	}
}

#greeting-text h4 {
	width: 70%;
	margin-top: 0.7rem;
}
#greeting-text p {
	margin-top: 1.5rem;
}
#greeting-name {
	text-align: right;
}
#greeting-name span {
	margin-right: 1em;
}
#greeting-img .sp_only {
	padding-top: 32rem;
	width: 80%;
}
@media screen and (min-width: 960px) {
	#greeting-text h4 {
		width: 100%;
	}
	#greeting-text p {
		width: 80%;
	}
	#greeting-img .pc_only {
		width: 60%;
		margin-right: 5%;
	}
}
/* 代表挨拶 ここまで */
/* 運営規定 ここから */
#philosophy {
	margin-top: 0;
	padding: 0;
	/* max-width: 100%; */
}
#philosophy h3 {
	color: #fff;
	background-image: url(../img/ph-title.png);
	background-repeat: no-repeat;
	background-size: 100%;
	padding: 10% 3% 3% 3%;
}
#ph-box {
	padding: 3%;
	/* max-width: 1000px;
	margin: auto; */
}
#ph-box h4 {
	font-size: 1.8rem;
}
@media screen and (min-width: 960px) {
	#ph-box {
		display: flex;
	}
	#ph-text {
		width: 60%;
	}
	#ph-img {
		width: 35%;
		margin-left: 5%;
		margin-top: 5%;
	}
	#ph-box h4 {
		font-size: 2.5rem;
	}
}

#ph-box h5 {
	font-size: 1.6rem;
	/* margin: 0; */
	line-height: 1rem;
	margin: 1.7em 0 1em 0;
}
#ph-box h5 span {
	width: 2.5rem;
	height: 2.5rem;
	/* margin-right: 15px;
	margin-bottom: 5px;
	padding-top: 13px; */
	padding-top: 0.5em;
	margin-right: 0.5em;
	background-color: #e70034;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	box-sizing: border-box;
	font-weight: bold;
	display: inline-block;
}
#ph-text p{
	padding: 0 3%;
}
#ph-text ul {
	/* width: 91%;
	margin: auto;
	padding-left: 3%; */
	padding: 0 3% 0 2em;
}
#ph-text ul li {
	list-style-type: decimal;
	margin-bottom: 1em;
}
#ph-text ul li p {
	padding: 0;
}
#ph-img figure {
	margin-top: 1em;
	padding: 0 3%;
}
#ph-img figcaption {
	font-size: 1.4rem;
}
/* 運営規定 ここまで */
/* 採用情報 ここから */
#recruit {
	padding: 0;
	margin-bottom: 3em;
}
#recruit h3 {
	color: #fff;
	background-image: url(../img/recruit-title.png);
	background-repeat: no-repeat;
	background-size: 100%;
	padding: 10% 3% 3% 3%;
}
#recruit-box {
	padding: 3%;
}
@media screen and (min-width: 960px) {
	#recruit-box {
		display: flex;
		justify-content: space-between;
	}
	#recruit-box div {
		width: 45%;
	}
	#recruit-box img {
		width: 45%;
	}
}
#recruit-box p {
	margin-top: 1em;
	margin-bottom: 1em;	
}
#recruit-box a {
	margin-top: 1em;
	background-color: #e70034;
	color: #fff;
	font-size: 2rem;
	display: block;
	padding: 0.5em;
	text-align: center;
}
#recruit-box a.sp_only {
	font-size: 2.8rem;
	padding: 0.2em;
}
#recruit-box a.sp_only img {
	display: inline;
	width: 1.5em;
	margin-right: 0.5em;
	padding-bottom: 0.3em;
}
/* 採用情報 ここまで */
#company-img {
	width: 100%;
	max-width: 1000px;
	margin: auto;
}
/* 会社情報 ここから */
#company  {

}
#company iframe {
	height: 15em;
}
#company div {
	margin-top: 1em;
}
@media screen and (min-width: 960px) {
	#company {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}
	#company iframe {
		width: 47%;
	}
	#company div {
		width: 47%;
	}
}
#company div p {
	margin-left: 27%;
	font-size: 1.4rem;
}
#company div p a img {
	display: inline;
	width: 1em;
	margin-right: 0.3em;
}
/* 会社情報 ここまで */

/*------------------------------

	メイン部分ここまで

------------------------------*/

/* ページ上部へ戻るボタン ここから */
.pagetop {
	height: 40px;
	width: 40px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: #fff;
	/* border: solid 2px #000; */
	border-radius: 50%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 2;
	cursor: pointer;
}
/* ページ上部へ戻るボタン ここまで */

/*------------------------------

	フッター部分ここから

------------------------------*/

footer {
	background-color: #e70034;
	color: #fff;
	text-align: center;
	padding: 0.3em;
	margin-top: 3em;
	font-size: 1.3rem;
}
@media screen and (min-width: 960px) {
	footer {
		margin-top: 5em;
	}
}
/* body {
	display: flex;
	flex-flow: column;
	min-height: 100vh;
}
main {
	flex: 1;
}

footer {
	
}

footer > div {
	max-width: 1000px;
	margin: auto;
	padding: 3%;
} */

/*------------------------------

	フッター部分ここまで

------------------------------*/


/* *************************************************** */
/*------------------------------

	PC用ここから

------------------------------*/
@media screen and (min-width: 960px) {
	
	
}
/*------------------------------

	PC用ここまで

------------------------------*/








