/*   フォントの基本設定   */
html, body {
	color: #282828;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	text-align: center;
}
h2 {
	display: inline-block;
	font-size:  clamp(2.5rem, 2.234rem + 1.13vw, 3rem); /* 40px〜48px */
	border-bottom: 2px solid #c11920;
	padding: 0px 32px 2px;
	margin: 0;
}
h3 { font-size: clamp(2rem, 1.734rem + 1.13vw, 2.5rem); /* 30px〜40px */}
h4 { font-size:  clamp(1.5rem, 1.367rem + 0.57vw, 1.75rem); /* 24px〜28px */}
h5 { font-size:  clamp(1.125rem, 0.992rem + 0.57vw, 1.375rem); /* 18px〜22px */}
h6 { font-size: clamp(0.75rem, 0.617rem + 0.57vw, 1rem) /* 12px〜16px */}
p, a, li, dt, dd {	font-size: 1rem; /* 16px */}
.description {
	font-size:  clamp(0.75rem, 0.571rem + 0.89vw, 1rem); /* 12px〜16px */	
}
.tiny {
	font-size: clamp(0.688rem, 0.553rem + 0.67vw, 0.875rem);
}

body {
	width: 100%;
}
.headingTitle {
	display: inline-block;
	margin-top: 100px;
}

/* ヘッダー表示 */
#header {
	position: fixed;
	width: 100vw;
	height: 100px;
	background: linear-gradient(0deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.2) 20%, rgba(0,0,0,.6) 34%, rgba(0,0,0,.9) 50%, rgba(0,0,0) 100% );
	padding: 10px 0;
	overflow: hidden;
	z-index: 9999;
	top: 0;
	left: 0;
}	
#header .headerFlex h1 {
	width: 110px;
	margin-left: 20px;
	margin-top: -3px;
}	
#header .headerFlex .nav {
	position: fixed;
	top: 0;
	right: -100%;/* 初期状態では画面の外に隠れている */
	width: 100%;
	height: 100%;
	background-color: #000;
	transition: right 0.3s ease; /* スライドインのアニメーション */
	padding: 20px;
	z-index: 9999;
}
#header .headerFlex .nav.open {
	right: 0;
}
	/* ボタンのスタイル */
#header .headerFlex .nav .hamburger {
	position: fixed;
	top: 15px;
	right: 20px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 20;
	background: #fff;
}
#header .headerFlex .nav .hamburger span {
	position: relative;
	display: block;
	height: 3px;
	width: 30px;
	background-color: #333;
	margin: 5px 0;
	transition: .4s;
	top: calc(50% - 15px);
	left: calc(50% - 15px);
}	
	/* バツ印に変化するスタイル */

#header .headerFlex .nav .hamburger.active {
	background: 000;
}

#header .headerFlex .nav .hamburger.active span:nth-child(1) {
	background-color: #aa2939;
	transform: rotate(45deg) translate(5px, 5px);
}
#header .headerFlex .nav .hamburger.active span:nth-child(2) {
	opacity: 0;
}

#header .headerFlex .nav .hamburger.active span:nth-child(3) {
	background-color: #aa2939;
  	transform: rotate(-45deg) translate(6px, -6px);
}	
	/* メニューリストのスタイル */
#header .headerFlex .nav .gnav {
	list-style-type: none;
	padding: 0;
	margin-top: 80px;
}
#header .headerFlex .nav .gnav li {
	padding: 20px 0;
	border-bottom: 1px solid #444;
}
#header .headerFlex .nav .gnav li a {
	color: #fff;
	text-decoration: none;
	display: block;
}
#header .headerFlex .nav .gnav li a:hover {
	color: #82ae46;
}
@media screen and (min-width: 768px) and (max-width: 1079px) {
	#header {
		position: fixed;
		z-index: 9998;
	}
	#header .headerFlex {
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	#header .headerFlex > div {
		display: flex;
		justify-content: space-between;
		width: 90%;
		margin: 0 auto;
	}
	#header .headerFlex h1 {
		min-width: 110px;
	}
	#header .headerFlex .nav {
		position: relative;
		display: inline-block;
		background: none;
		color: #fff;
		top: -110px;
		right: -30px;
		width: 78%;
		padding: 0;
		padding-top: 20px;
	}
	#header .headerFlex .nav .hamburger {
		display: none;
	}
	#header .headerFlex .nav .gnav {
		display: inline-flex;
		z-index: 9999;
/*		transform: translateX(30px);*/
		justify-content: flex-end;
		width: 100%;
	}
	#header .headerFlex .nav .gnav .gnavItem {
		font-weight: 500;
		color: #fff;
		border: none;
		font-size: clamp(0.875rem, 0.26rem + 1.28vw, 1.125rem);
	}
	#header .headerFlex .nav .gnav .gnavItem a {
		margin-left: 12px;
		padding-bottom: 3px;
		transition: all 0.1s 0s linear;
	}
	#header .headerFlex .nav .gnav .gnavItem a:hover {
		border-bottom: 1.5px solid  #269e2f;
		color:  #269e2f;
	}
}
@media screen and (min-width: 1080px) {
	#header {
		position: fixed;
		z-index: 9998;
	}
	#header .headerFlex {
		width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	#header .headerFlex > div {
		display: flex;
		justify-content: space-between;
		width: 90%;
		margin: 0 auto;
	}
	#header .headerFlex h1 {
		min-width: 110px;
	}
	#header .headerFlex .nav {
		position: relative;
		display: inline-block;
		background: none;
		color: #fff;
		top: -110px;
		right: -30px;
		width: 50%;
		padding: 0;
		padding-top: 20px;
	}
	#header .headerFlex .nav .hamburger {
		display: none;
	}
	#header .headerFlex .nav .gnav {
		display: inline-flex;
		z-index: 9999;
		justify-content: flex-end;
		width: 100%;
	}
	#header .headerFlex .nav .gnav .gnavItem {
		font-weight: 500;
		color: #fff;
		border: none;
		font-size: clamp(0.875rem, 0.26rem + 1.28vw, 1.125rem);
	}
	#header .headerFlex .nav .gnav .gnavItem a {
		margin-left: 32px;
		padding-bottom: 3px;
		transition: all 0.1s 0s linear;
	}
	#header .headerFlex .nav .gnav .gnavItem a:hover {
		border-bottom: 1.5px solid  #269e2f;
		color:  #269e2f;
	}
}
/* --- header表示ここまで*/

/* footer表示ここから */
#footer {
	background: #222;
	color: #fff;
}
#footer .communicateArea {
	color: #fff;
	display: flex;
	flex-wrap: wrap;
}
#footer .communicateArea .recruitContent {
	width: 100%;
	background: #222;
	padding: 32px 0;
}
#footer .communicateArea .contactContent  {
	width: 100%;
	background: #3b3d3b;
	padding: 32px 0;
}
#footer .communicateArea .recruitContent .description,
#footer .communicateArea .contactContent .description {
	width: 66%;
	margin: 0 auto;
	margin-top: 16px;
	color: #eee;
	text-align: left;
}
#footer .communicateArea .recruitFormLink {
	background: #3b3b3b;
	color: #fff;
	width: 100%;
	padding-top: 32px;
	padding-bottom: 32px;
}
#footer .communicateArea .recruitFormLink h2 {
	border: none;
	margin: 0;
	padding: 0;
}
#footer .communicateArea .recruitFormLink .description {
	display: inline-block;
	width: 90%;
	margin: 0 auto;
	margin-top: 16px;
	text-align: center;
}
#footer .communicateArea .recruitFormLink .btn00 {
	color: #c11920;
	border-color: #c11920;
}
#footer .footerContent {
	background: #222;
}
#footer .footerContent h4 {
	display: inline-block;
	width: 130px;
	margin-top: 32px;
}
#footer .footerContent .address {
	display: inline-block;
	font-size: 12px;
	text-align: left;
	margin-top: 16px;
	margin-left: 16px;
	transform: translateY(-8px);
}
#footer .footerContent .address > a {
	color: #fff;
	font-size: 12px;
	text-decoration: underline;
}
#footer .footerContent .footerNav {
	width: 100%;
	margin-top: 16px;
	margin:  0 auto;
}
#footer .footerContent .footerNav ul {
	display: flex;
	width: 80%;
	margin: 0 auto;
	justify-content: center;
	flex-wrap: wrap;
	left: 50%;
}
#footer .footerContent .footerNav ul li {
	display: inline-block;
	width: 140px;
	font-size: clamp(0.75rem, 0.482rem + 1.34vw, 1.125rem);
	margin: 0;
	margin-top: 16px;
	font-weight: 400;
}
#footer .footerContent .footerNav ul li a {
	color: #fff;
	transition: all 0.2s 0s ease;
}
#footer .footerContent .footerNav ul li a:hover {
	opacity: 0.5;
	text-decoration: underline;
}
#footer .copyright {
	background: #161616;
	padding: 8px 0;
	margin-top: 16px;
}
#footer .copyright div {
	display: flex;
	width: 70%;
	margin: 0 auto;
	flex-direction: column-reverse;
}
#footer .copyright div p {
	font-size: clamp(0.5rem, 0.232rem + 1.34vw, 0.875rem);
}
#footer .copyright div a {
	color: #fff;
	transition: all 0.16s 0s linear;
	text-decoration: underline;
}
#footer .copyright div a:hover {
	opacity: .5;
}
#footer .copyright > div a span {
	display: inline-block;
	font-size: 72%;
	margin-left: 2px;
	transform: translateY(-1px);
}
@media screen and (min-width: 768px) {
	#footer .communicateArea {
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-wrap: nowrap;
	}
	#footer .communicateArea .recruitContent,
	#footer .communicateArea .contactContent {
		width: 50%;
	}
	#footer .communicateArea .recruitContent > div,
	#footer .communicateArea .contactContent > div {
		width: 88%;
		margin: 0 auto;
	}
	#footer .communicateArea .recruitFormLink .btn00 {
	width: 240px;
	height: 48px;
	margin-top: 32px;
	font-weight: 600;
	margin-bottom: 32px;
	line-height: 48px;
	}
	#footer .communicateArea .recruitFormLink .btn00:hover {
		color: #fff;
		border-color: #269e2f;
		background: #269e2f;
	}
	#footer .footerContent {
		position: relative;
		box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, .5);
		z-index: 9998;
		width: 100%;
	}
	#footer .footerContent .address {
		margin-top: 32px;
		transform: translateY(-8px);
		margin-left: 16px;
	}
	#footer .footerContent > div {
		position: relative;
		width: 90%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	#footer .footerContent > div .footerNav {
		position: absolute;
		width: 70%; 
		top: 48%;
		right: 0;
		transform: translateY(-50%);
	}
	#footer .footerContent > div .footerNav ul {
		width: 100%;
		display: flex;
		margin: 0 auto;
		justify-content: flex-end;
		flex-wrap: wrap;
	}
	#footer .footerContent > div .footerNav ul li {
		display: inline-block;
		margin: 0;
		width: auto;
		transform: translateX(30px);
		width: 85px;
/*		border: 1px solid;*/
	}
	#footer .footerContent > div .footerNav ul li a {
		transition: all 0.1s 0s linear;
		font-size: 14px;
	}
	#footer .footerContent > div .footerNav ul li a:hover{
		opacity: .5;
	}
	#footer .footerContent .copyright > div {
		display: flex;
		width: 90%;
		flex-direction: row;
		justify-content: space-between;
		margin: 0 auto;
	}
	#footer .footerContent .copyright > div a {
		display: inline-block;
		color: #fff;
/*		margin-left: 55px;*/
	}
	#footer .copyright > div {
		display: flex;
		width: 90%;
		flex-direction: row;
		justify-content: space-between;
		margin: 0 auto;
	}
	#footer .copyright > div a {
		display: inline-block;
		color: #fff;
		transform: translateX(-60px);
/*		margin-left: 55	px;*/
	}
}
@media screen and (min-width:768px) and (max-width: 1079px) {
	#footer .footerContent > div .footerNav {
		width: 55%;
		top: 57%;
		right: 0;
		transform: translateY(-50%);
	}
	#footer .footerContent > div .footerNav ul li:nth-child(8) {
		display: none;
	}
	#footer .footerContent > div .footerNav ul li:last-child {
		display: none;
	}
}
@media screen and (min-width: 1080px) {
	#footer .footerContent > div .footerNav ul li:nth-child(8) {
		display: none;
	}
	#footer .footerContent > div .footerNav ul li:last-child {
		display: none;
	}
}
/* ---footerここまで */

/*   メディアによって表示するしないを
　　　　  スイッチさせる要素   */

.pcOnly {
	  display: none;
}
.spOnly {                 
	  display: block;
}
@media screen and (min-width: 768px) {
	.pcOnly {
	  display: block;
	}
	.spOnly {                 
	  display: none;
	}
}
.wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	text-align: center;
}
/* ---表示スイッチここまで */
/* Learnmore */
.btn00 {
	position: relative;
	display: inline-block;
	color: #262626;
	background: #fff;
	border: 1px solid #262626;
	border-radius: 50px;
	margin: 0 auto;
	padding: 8px 32px 8px 32px;
	transition: all 0.2s 0s ease;
	margin-top: 16px;
}
.btn00::after {
	position: absolute;
	display: inline-block;
	content: '▶︎';
	font-size: 12px;
	right: 12px;
	top: 50%;
	transform: translateY(-48%);
}
.btn00:hover {
	color: #fff;
	background: #c11920;
	border-color: #c11920;
}
.btn {
	display: inline-block;
	color: #fff;
	background: #c11920;
	border: 1px solid #c11920;
	border-radius: .5rem;
	padding: 8px 32px;
	margin: 16px auto;
	transition: all 0.2s 0s ease;
}
.btn:hover {
	color: #c11920;
	background: #fff;
	border: 1px solid #c11920;
}
.btn01 {
	display: table;
	width: 196px;
	height: 55px;
	color: #fff;
	background: #c11920;
	border: 1px solid #c11920;
	border-radius: 6px;
	margin: 0 auto;
	margin-top: 55px;
	margin-bottom: 35px;
	transition: all 0.2s 0s ease;
	position: relative;
	z-index: 2;
	padding-top: 13px;
}
.btn01:hover {
	background: #fff;
	color: #c11920;
	border-color: #c11920;
}
.contactBtn {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
	background:  #c11920;
	border: 1px solid  #c11920;
	border-radius: 100%;
	margin: 32px auto;
	transition: all 0.2s 0s ease;
}
.contactBtn::before {
	position: absolute;
	content: '→';
	color: #fff;
	font-weight: 600;
	font-size: 28px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.contactBtn:hover {
	background: #fff;
	border-color: #c11920;
}
.contactBtn:hover::before {
	color: #c11920;
}
.link {
	transition: all 0.2s 0s ease;
}
.link:hover {
	opacity: 0.7;
}
.linkTxt {
	transition: all 0.2s 0s ease;
}
.linkTxt:hover {
	color: #269e2f;
}

.ml8 {
	margin-left: 8px;
}
.ml16 {
	margin-left: 16px;
}
.ml32 {
	margin-left: 32px;
}
.ml64 {
	margin-left: 64px;
}
.mt8 {
	margin-top: 8px;
}
.mt16 {
	margin-top: 16px;
}
.mt32 {
	margin-top: 32px;
}
.mt64 {
	margin-top: 64px;
}
.mt128 {
	margin-top: 128px;
}
.ancTarget{
	display: inline-block;
	padding-top: 85px;
	margin-top: -85px;
}
.bold {
	font-weight: 700;
}
.italic {
	display: inline-block;
	font-style: italic;
	margin: 0 5px;
}


/* 色の指定 */
.red {color: #c11920;}
.green {color: #269e2f;}
.blue {color: #1d38c2;}

.midium {width: 81.8%;}
.mini {width: 46.5%;}
.inFlex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.inFlex .inFlex_Item {margin: 4px 8px;}

/* textのリンク */
.link2 {
	display: inline-block;
	color: #3d3dea;
	padding-bottom: 1px;
	font-weight: 400;
	transition: all 0.16s 0s linear;
}

/* icomoon アイコンフォント */
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?q50c3l');
  src:  url('../fonts/icomoon.eot?q50c3l#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?q50c3l') format('truetype'),
    url('../fonts/icomoon.woff?q50c3l') format('woff'),
    url('../fonts/icomoon.svg?q50c3l#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-keyboard_arrow_up:after {
  content: "\e901";
	margin-left: 8px;
}
.icon-x:after {
  content: "\e903";
	margin-left: 8px;
}
.icon-arrow-right:after {
  content: "\e902";
	margin-left: 8px;
}
.icon-golf:after {
  content: "\e900";
	margin-left: 8px;
}
.icon-new-tab:after {
  content: "\ea7e";
	margin-left: 8px;
}
.icon-facebook2:after {
  content: "\ea91";
	margin-left: 8px;
}
.icon-instagram:after {
  content: "\ea92";
	margin-left: 8px;
}
.icon-youtube:after {
  content: "\ea9d";
	margin-left: 8px;
}


/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/* ページのトップへ戻る */
#pageTop {
  position: fixed;
  bottom: 10px;
  right: 20px;
  font-size: 16px;
  line-height: 1;
  z-index: 9999;
}
#pageTop a {
	position: relative;
 	background: #c11920;
 	text-decoration: none;
 	color: #fff;
 	width: 60px;
 	height: 60px;
 	text-align: center;
 	line-height: 70px;
 	display: block;
 	border-radius: 50%;
 	opacity: 1;
 	transition: all .3s ease;
}
#pageTop .icon-keyboard_arrow_up::after {
	position: absolute;
	top: -50%;
	left: 30%;
	font-size: 1.5rem;
	transform: translate(-30%, 15%);
}
#pageTop a:hover {
  text-decoration: none;
  opacity: .5;
}
@media screen and (min-width:768px) {
	#pageTop {
		bottom: 10px;
		right: 3.2%;
	}
	#pageTop a {
		width: 50px;
 		height: 50px;
		line-height: 60px;
	}
	#pageTop .icon-keyboard_arrow_up::after {
		top: -50%;
		left: 25%;
		font-size: 1.5rem;
		transform: translate(-30%, 12%);
	}
}

.sorcial {
	margin-top: 64px;
}
.sorcial .icons {
	display: inline-block;
	margin-top: 32px;
}
.sorcial .icons a {
	display: inline-block;
	width: 60px;
	height: 60px;
	color: #222;
	background: #fff;
	border-radius: 50%;
	line-height: 60px;
	font-size: 1.4rem;
	margin: 0px 16px;
	transition: all 0.2s 0s ease;
}
.sorcial .icons a:hover {
	background: #c11920;
	color: #fff;
}
