@charset "UTF-8";
/* CSS Document */

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)){
	all: unset;
	display: revert;
}
*,*::before,*::after{
	box-sizing: border-box;
}
a, button{
	cursor: revert;
}
ol, ul, menu{
	list-style: none;
}
img{
	vertical-align: top;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
input, textarea{
	-webkit-user-select: auto;
	user-select: auto;
}
textarea{
	white-space: revert;
}
meter{
	-webkit-appearance: revert;
	appearance: revert;
}
::placeholder{
	color: unset;
}
:where([hidden]){
	display: none;
}
:where([contenteditable]:not([contenteditable="false"])){
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
	-webkit-line-break: after-white-space;
	line-break: after-white-space;
	-webkit-user-select: auto;
	user-select: auto;
}
:where([draggable="true"]){
	-webkit-user-drag: element;
}


/*
	Setting CSS
-----------------------------------------------------------------------------------------------*/
html{
	font-size: 62.5%;
}
body{
	color: var(--clrBase);
	font-size: 1.5em;
	font-family: "Noto Sans JP", 'Yu Gothic', 'Meiryo', 'Hiragino Kaku Gothic ProN', sans-serif;
	font-weight: 500;
	letter-spacing: 0.1rem;
	font-feature-settings: "palt";
	overflow-wrap: break-word;
}
p{
	line-height: 170%;
}
a{
	text-decoration: none;
	transition: all 0.3s;
}
a:hover{
	opacity: 0.7;
}
@media (any-hover: hover){
	a:hover{
		text-decoration: none;
	}
}
@media print, screen and (min-width:813px){
	/* iPad背景切れ対策 */
	body{
		min-width: 1200px;
	}
	/* tel pcのみ無効 */
	a[href^="tel:"]{
		pointer-events: none;
	}
}

/* 表示切替 */
.switch{
	visibility: hidden;
}
.sp{
	display: none;
}

/*
	変数
-----------------------------------------------------------------------------------------------*/
:root{
	/* 幅 */
	--wBase: 1200px;
	--w900:  980px;
	/* カラー */
	--clrGreenM:#72c900;
	--clrGreenLt:#f0f6c0;
	--clrYellow:#ffff00;
	--clrBlueLt:#b7e4f9;
	--clrBlue:#10aaff;
	--clrPink:#f99393;
	--clrOrange:#f6b700;
	/*黒袋文字*/
	--txtShadow: 
	1px  1px 1px #000000,
	-1px  1px 1px #000000,
	1px -1px 1px #000000,
	-1px -1px 1px #000000,
	1px  0px 1px #000000,
	0px  1px 1px #000000,
	-1px  0px 1px #000000,
	0px -1px 1px #000000;
	/* フォント */
	--ftNo:    "Noto Sans JP", 'Hiragino Sans', 'Yu Gothic', 'Meiryo', 'Hiragino Kaku Gothic ProN', sans-serif;
	/* 画像 */
	--bgTexture: url("../images/bg_diagonal.png");
	/* 行間 */
	--lineHeightL: 200%;
	/* 黄色下線 */
	--txtUnderLine:linear-gradient(transparent 70%, #ffff00 70%);
	/* 背景右肩上がり */
	--tiltR:polygon(0 80px, 100% 0, 100% calc(100% - 80px), 0 100%);
	/* 背景右肩下がり */
	--tiltL:polygon(0 0, 100% 80px, 100% 100%, 0 calc(100% - 80px));
}

#wrapper{
	position: relative;
	margin-bottom:141px;
}

/*
	共通
-----------------------------------------------------------------------------------------------*/
.ctsArea{
	width: var(--wBase);
	position: relative;
	padding: 80px 40px 0 40px;
	margin: 0 auto;
}
/* item */
[class*="item"]{
	position: absolute;
}
[class*="titCommon"]{
	position: absolute;
}
/* もっとくわしく */
.detailBtnBox{
	padding-top: 50px;
	text-align: center;
}
.detailBtnBox .txtMore{
	font-size: 1.8rem;
	font-weight: 700;
	color: #000;
}
.detailBtnBox .txtMore::before,
.detailBtnBox .txtMore::after {
  content: "";
  position: relative;
  display: inline-block;
  background:#000;
  width: 1px;
  height: 20px;
  margin: 0 15px;
  vertical-align: middle;
}
.detailBtnBox .txtMore:before {
  transform: rotate(-45deg);
}
.detailBtnBox .txtMore:after {
  transform: rotate(45deg);
}
/* もっとくわしく ボタン*/
.detailBtnBox .btn{
	display: block;
	width: fit-content;
	padding: 5px 50px 5px 25px;
	background: #000;
	font-size: 2.8rem;
	font-weight: 700;
	color: #fff;
	margin: 0 auto;
	position: relative;
	cursor: pointer;
}
.detailBtnBox .btn:hover{
	transition: all 0.3s;
	opacity:0.7;
}
.detailBtnBox .btn::before{
	content: "";
	background: url(../images/icon_link.svg);
	width: 15px;
	height: 15px;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}
/* モーダル */
.modal{
  display: none; 
  position: fixed; 
  left: 0;
	top: 0;
  width: 100%; height: 100%; 
  overflow: auto;
  background-color: rgba(0 0 0 / 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 100; 
}
.modal.show{
  display: block;
  opacity: 1;
}
.modal-content{
  background-color: #fff;
  margin: 10% auto; 
  padding: 65px;
  width: 800px;
	text-align: left;
  border-radius: 5px;
  position: relative;
  transform: translateY(-10px);
  transition: transform 0.3s ease;
}
.modal.show .modal-content{
  transform: translateY(0);
}
.modal .txt{
	line-height: 200%;
	font-size: 1.6rem;
	margin-top:20px;
}
.close{
  position: absolute;
  top: -55px;
  right: 0px;
  cursor: pointer;
  font-size: 20px;
	color: #fff;
	font-size: 3.0rem;
}

/*
	上部snsエリア
-----------------------------------------------------------------------------------------------*/
#snsTopWrapper{
	border-radius: 5px;
	position: absolute;
	top: -5px;
	right: 0;
	z-index: 100;
}
.snsTopLi{
	display: flex;
	justify-content: space-between;
	gap: 0 10px;
}
.snsTopLi li{
	background-color: #fff;
	width: 75px;
	padding: 8px 5px;
	text-align: center;
	border: 4px solid var(--clrPink);
	border-top: 4px solid #fff	;
}
.snsTopLi li:nth-of-type(2){
	border-color: var(--clrBlue);
	border-top: 4px solid #fff	;
}
.snsTopLi .txtPi,
.snsTopLi .txtBl{
	margin-top:3px;
	font-size: 1.0rem;
	font-weight: 800;
	letter-spacing: 0.05em;
}
.snsTopLi .txtPi{
	color: var(--clrPink);
}
.snsTopLi .txtBl{
	color: var(--clrBlue);
}
.snsTopLi img{
	width: 40px;
}

/*
	キービジュアルKV
-----------------------------------------------------------------------------------------------*/
#kvWrapper{
	position: relative;
	background:url(../images/kv_bg_pc.png) no-repeat center top / cover;
	min-height: 1000px;
	width: 100%;
}
#kvWrapper .ctsArea{
	padding: 40px 40px 0 40px;
}
/*水色三角*/
#kvWrapper::before{
	content: "";
	width: 100%;
	min-height: 380px;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	clip-path: polygon(0 0%, 0 100%, 100% 100%);
	background: var(--clrBlueLt);
	z-index: 2;
}
/*緑三角*/
#kvWrapper::after,
#aboutWrapper::after{
	content: "";
	width: 100%;
	min-height:300px;
	position: relative;
	bottom:-219px;
	display: block;
	background: url(../images/bg_diagonal.png) repeat var(--clrGreenLt);
	clip-path: polygon(100% 0, 0 90%, 100% 90%);
	z-index: 4;
}
/* item */
.itemKv01{
	right: 80px;
	top: 50px;
}
.itemKv02{
	left: 20px;
	top: calc(100% - 65px);
	z-index: 1;
}
.itemKv03{
	left: 60px;
	top:526px;
	z-index: 3;
}
#kvWrapper .kvLogo{
	text-align: center;
}
#kvWrapper .titMain,
#kvWrapper .titSub{
	text-align: center;
	padding-block:30px ;
}
.jumpLi{
	position: absolute;
	right: 40px;
	padding-top: 40px;
	z-index: 5;
}
.jumpLi li:nth-child(2){
	margin-left: 20px;
}
.jumpLi li:nth-child(3){
	margin-left: 40px;
}
.jumpLi li a{
	display: block;
	width: fit-content;
	background: #000;
	color: #fff;
	font-size: 2.6rem;
	font-weight: 800;
	padding: 10px 30px 10px 10px;
	margin-top: 20px;
	position: relative;
}
.jumpLi li a:hover{
	opacity: 0.8;
}
.jumpLi li a::after{
	content: "";
	display: block;
	width: 64px;
	height: 22px;
	background: url(../images/icon_kv_list_arrow.svg) no-repeat right center;
	background-size: 64px 22px;
	position: absolute;
	right: -38px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.jumpLi li a:hover::after{
		right: -48px;
}
/*
	リードreadWrapper
-----------------------------------------------------------------------------------------------*/
#readWrapper,
#businessWrapper{
	background: url(../images/bg_diagonal.png) repeat var(--clrGreenLt);
	position: relative;
}
#readWrapper .ctsArea{
	width: var(--w900);
	padding: 80px 0 200px 0;
}
#readWrapper .readBox{
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 6;
}
.readBox .readPic{
	box-shadow: 10px 10px 0 #fff;
	height: 280px;
}
.readBox .txtRead{
	position: absolute;
	right: 0;
	top: -120px;
	text-shadow: var(--txtShadow);
	color: #fff;
	font-size: 2.0rem;
	font-weight: 700;
	line-height: var(--lineHeightL);
}
/* item */
.item04{
	right: 100px;
	top: -180px;
	z-index: 15;
}
.item05{
	left: 50%;
	top: -100px;
	z-index: 15;
}
.item06{
	left: 50px;
	bottom: 80px;
	z-index: 15;
}

/*
	H4ってどんな会社？aboutWrapper
-----------------------------------------------------------------------------------------------*/
#aboutWrapper{
	position: relative;
}
/*白三角*/
#aboutWrapper::before,
#scheduleWrapper::before{
	content: "";
	width: 100%;
	min-height:300px ;
	position: relative;
	top:-270px;
	display: block;
	background:#fff;
	clip-path: polygon(100% 0, 0 90%, 100% 90%);
	z-index: 7;
}
#aboutWrapper .ctsArea{
 padding: 0 40px 120px 40px;
 margin-top: -270px;
}
#aboutWrapper .titCommon{
	left: 0;
	top: -70px;
	z-index: 8;
}
.aboutBox{
	width: var(--w900);
	margin: 0 auto;
	padding-top: 100px;
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 0 150px;
}
.aboutLeft,
.aboutRight{
	margin: 0 auto;
	text-align: center;
	position: relative;
}
.aboutLeft::after{
	content: "";
	background-image: repeating-linear-gradient(180deg, #000, #000 2px, transparent 3px, transparent 5px);
	background-position: left top;
	background-repeat: repeat-y;
	background-size: 2px 100%;
	width: 2px;
	height:calc(100% - 190px);
	position: absolute;
	right: -75px;
	bottom:0px;
}
.aboutBox .tit{
	padding-bottom: 25px;
}
.aboutLeft .tit::after{
	content: "";
	background: url(../images/icon_about_arrow.svg) no-repeat;
	background-size:184px 104px;
	width: 184px;
	height: 104px;
	position: absolute;
	right: -165px;
	top:25px;
}
.aboutBox .titL{
	font-size: 2.4rem;
	font-weight: 800;
}
.aboutBox .titL span{
	background:var(--txtUnderLine);
}
.aboutBox .aboutPic{
	height: 272px;
	padding-top:30px;
}
.aboutBox .txt{
	text-align: left;
	text-align: justify;
	padding-top:30px;
}
/* item */
.item07{
	left: 0;
	top: 120px;
	z-index: 15;
}
.item08{
	right: 100px;
	top: -180px;
	z-index: 15;
}
.item09{
	right: 50px;
	top: 420px;
	z-index: 15;
}

/*
	H4なら、やりたいが形になる！businessWrapper
-----------------------------------------------------------------------------------------------*/
#businessWrapper{
	position: relative;
	top:-141px;
}
#businessWrapper .titCommon{
	position: absolute;
	right: 0;
	top: -162px;
	z-index: 9;
}
/* 緑三角 */
#aboutWrapper::after{
	bottom: 110px;
}
.txtBusiness{
	position: absolute;
	right: 120px;
	font-size: 2.0rem;
	font-weight:700;
	line-height: var(--lineHeightL);
}
/* 一覧 */
.businessArea{
	position: relative;
	height: 1120px;
}
/*各BOX*/
.businessBox{
	position: absolute;
}
.businessBox .btnArea{
	position: relative;
}
.businessBox .btnTxt::after{
	content: "";
	background: url(../images/ico_business_arrow.svg);
	width:48px;
	height:10px;
	position: absolute;
	right: 15px;
	bottom:15px;
	transition: all 0.3s;
}
.businessBox .btnTxt:hover::after{
	right: 5px;
}
.businessBox.colBl{
	left: 0;
	top:80px
}
.businessBox.colPi{
	left: 468px;
	top:300px;
}
.businessBox.colYe{
	left: 848px;
	top:500px;
}
.businessBox.colGr{
	left: 120px;
	bottom: 220px;
}
.businessArea .detailBtnBox{
	position: absolute;
	right: 300px;
	bottom:300px;
}
.businessBox .txtArea{
	position: absolute;
	top:-110px;
	left: -20px;
}

/* タイトル */
.businessBox .txtArea .titMain{
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	text-shadow: var(--txtShadow);
	padding-left: 30px;
	position: relative;
}
.businessBox .txtArea .titMain::before{
	content: "";
	display: block;
	background: url(../images/ico_business_tit.svg);
	width: 16px;
	height: 34px;
	position: absolute;
	left: 5px;
	top: -10px;
}
/*吹き出し*/
.businessBox .txtArea .titWords{
	position: relative;
	border-radius: 10px;
	background: #fff;
	padding: 15px;
	width: fit-content;
	z-index: 3;
	margin-top: 10px;
}
.businessBox .txtArea .titWords::before,
.businessBox .txtArea .titWords::after{
	content: " ";
	display: block;
	width: 50px;
	height: 30px;
	left: 45px;
	position: absolute;
}
.businessBox .txtArea .titWords::before{
	clip-path:polygon(0 0, 61% 0, 75% 66%);
	z-index: 1;
	bottom: -30px;
}
.businessBox .txtArea .titWords::after{
	clip-path: polygon(1px 0, calc(80% - 13px) 0, calc(100% - 16px) calc(100% - 12px));
	background-color: #fff;
	bottom: -28px;
	z-index: 2;
}
/* 各カラー */
.businessBox.colYe .txtArea{
	top:-150px;
	right: -20px;
}
.businessBox.colBl .txtArea .titWords{
	border: 2px solid var(--clrBlue);
}
.businessBox.colPi .txtArea .titWords{
	border: 2px solid var(--clrPink);
}
.businessBox.colYe .txtArea .titWords{
	border: 2px solid #f6b700;
}
.businessBox.colGr .txtArea .titWords{
	border: 2px solid var(--clrGreenM);
}
.businessBox.colBl .txtArea .titWords::before{
	background: var(--clrBlue);
}
.businessBox.colPi .txtArea .titWords::before{
	background: var(--clrPink);
}
.businessBox.colYe .txtArea .titWords::before{
	background: #f6b700;
}
.businessBox.colGr .txtArea .titWords::before{
	background: var(--clrGreenM);
}
.businessBox.colBl .titWords{
	color: var(--clrBlue);
}
.businessBox.colPi .titWords{
	color: var(--clrPink);
}.businessBox.colYe .titWords{
	color: #f6b700;
}.businessBox.colGr .titWords{
	color: var(--clrGreenM);
}
/* もっとくわしくリンク */
.businessBox .btnTxt{
	background: #fff;
	padding: 8px 8px 8px 12px;
	font-size: 1.4rem;
	position: relative;
}
#scheduleWrapper::before{
	top:-170px;
}
/* item */
.item10{
	left: 250px;
	top: -250px;
	z-index: 15;
}
.item11{
	left: 10px;
	top: -200px;
	z-index: 15;
}
.item12{
	right: 0px;
	top: 220px;
	z-index: 15;
}

/*
	H4なら、短期間で密度の濃い経験ができる！scheduleWrapper
-----------------------------------------------------------------------------------------------*/
#scheduleWrapper{
	position: relative;
	top:-240px;
}
#scheduleWrapper .ctsArea{
	padding-top:0;
}
#scheduleWrapper .titCommon{
	left: 16%;
	top:-280px;
	z-index: 12;
}
/* タブ */
#scheduleWrapper .tabBtn{
	display: flex;
	justify-content: center;
	gap: 20px;
	width: var(--w900);
	margin: 0 auto;
}
#scheduleWrapper .tabBtn li{
	padding: 15px 70px 10px 0;
	width: 100%;
	background: #e6e6e6;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: pointer;
}
#scheduleWrapper .tabBtn li::after{
	content: "";
	background: url(../images/ph_tab_01.png) no-repeat;
	width: 150px;
	height: 136px;
	position: absolute;
	right: -25px;
	bottom: 0;
}
#scheduleWrapper .tabBtn li:nth-child(2)::after{
	background: url(../images/ph_tab_02.png) no-repeat;
}
/*アクティブ時*/
#scheduleWrapper .tabBtn li.active{
	background: var(--clrGreenM);
}
#scheduleWrapper .tabBtn li[data-tab="tab2"].active{
	background: var(--clrBlue);
}
.tabPattern{
	background: #fff;
	display: none;
}
.tabPattern.active{
  display: block;
}
.tabPattern.clrGr.active{
	border: 4px solid var(--clrGreenM);
}
.tabPattern.clrBl.active{
	border: 4px solid var(--clrBlue);
}
.tabLi{
	width: var(--w900);
	margin: 0 auto;
}
.tabLi li{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top:80px;
}
.tabLi .num{
	position: relative;	
}
.tabLi .num::after{
	content: "";
	background: url(../images/icon_schedule_arrow.svg);
	width: 86px;
	height: 154px;
	position: absolute;
	top:100px;
	left: 30px;
}
.tabLi li:nth-child(4) .num::after {
  background-image: none ;
  content: "" ;
}
.tabLi .txtArea .tit{
	font-weight: 700;
	font-size: 2.4rem;
}
.tabLi .txtArea .tit span{
	background: var(--txtUnderLine);
}
.tabLi .txtArea .txt{
	width: 330px;
	font-size: 1.4rem;
	font-weight: 400;
	text-align: justify;
	margin-top: 10px;
}
.tabLi .photo{
	box-shadow: 10px 10px 0 var(--clrGreenLt);
}
/* スケジュール */
.scheduleArea{
	background: rgba(240 246 192 / 0.5);
	text-align: center;
	padding: 40px;
	margin-top: 80px;
}
.scheduleArea .tit{
	font-weight: 700;
	font-size: 2.4rem;
}
.scheduleArea .tit span{
	font-size: 4.0rem;
	color: var(--clrGreenM);
}
.scheduleArea .scheduleLi{
	display: flex;
	position: relative;
	gap: 0 25px;
	width: var(--w900);
	margin: 40px auto 0 auto;
	line-height: 140%;
}
.scheduleArea .scheduleLi::before{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: #000;
	position: absolute;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
}
.scheduleArea .scheduleLi li{
	flex: 1;
}
.scheduleArea .scheduleLi .time{
	font-size: 1.5rem;
	font-weight: 800;
	text-align: left;
	margin-bottom: 35px;
	position: relative;
}
.scheduleArea .scheduleLi .time::after{
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	border: 4px solid var(--clrGreenM);
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	bottom: -24px;
	left: 0;
	}
.scheduleArea .scheduleLi .txt{
	font-size: 1.2rem;
	font-weight: 400;
	text-align: left;
	text-align: justify;
}
/* フッター */
#footerWrapper{
	text-align: center;
	position: relative;
	margin-top: -220px;
}
.footerBo{
	background: var(--clrGreenM);
	color: #fff;
	font-size: 1.2rem;
	font-weight: 300;
	padding-block: 15px;
	margin-top: 80px;
}
/* item */
.item13{
	right: 320px;
	top: -140px;
	z-index: 15;
}
.item14{
	right: 0px;
	top: -100px;
	z-index: 15;
}
.item15{
	left: 30px;
	top: 350px;
	z-index: -1;
}
.item16{
	left: 0px;
	top: 680px;
	z-index: -1;
}
.item17{
	right: 0px;
	top: 900px;
	z-index: -1;
}
.item18{
	left: 0px;
	bottom: 250px;
	z-index: -1;
}
.item19{
	right: 20px;
	bottom: -80px;
	z-index: -1;
}

/*
	下部snsエリア
-----------------------------------------------------------------------------------------------*/
/* 飾り文字 */
#snsBottomWrapper{
	padding-top: 0;
	margin-top: 50px;
	position: relative;
	top: -220px;
}
.txtDecoration{
	width: fit-content;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 130%;
	padding-inline: 20px;
	margin-inline: auto;
	position: relative;
}
.txtDecoration::before,
.txtDecoration::after{
	content: " ";
	display: block;
	width: 1px;
	height: calc(100% + 10px);
	background-color: #000;
	position: absolute;
	top: calc(50% + 5px);
	translate: 0 -50%;
}
.txtDecoration::before{
	left: 0;
	rotate: -45deg;
}
.txtDecoration::after{
	right: 0;
	rotate: 45deg;
}
/* SNSリンク */
.snsBottomLi{
	display: flex;
	gap: 0 30px;
	margin-top: 20px;
}
.snsBottomLi li{
	width: calc((100% - 30px)/2);
}
.snsBottomLi a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: 80px;
	background-color: #fff;
	border: 4px solid;
	text-align: center;
	font-size: 4rem;
	font-weight: 700;
	padding: 15px 85px 15px 45px;
	position: relative;
}
.snsBottomLi a::after{
	content: " ";
	display: block;
	width: 40px;
	aspect-ratio: 1/1;
	background-size: 100% auto;
	background-position: top left;
	background-repeat: no-repeat;
	position: absolute;
	right: 30px;
}
.snsBottomLi .icoInstagram{
	border-color: var(--clrPink);
	color: var(--clrPink);
}
.snsBottomLi .icoInstagram::after{
	background-image: url("../images/ico_instagram_pc.png");
}
.snsBottomLi .icoTikTok{
	border-color: var(--clrBlue);
	color: var(--clrBlue);
}
.snsBottomLi .icoTikTok::after{
	background-image: url("../images/ico_tiktok.svg");
}

/*
	エントリーバナー
-----------------------------------------------------------------------------------------------*/
.fixedBtnArea{
	position: fixed;
	bottom: 0;
	z-index: 999;
	background:rgba(114 201 0 / 0.9);
	padding:20px 0 25px 0;
	text-align: center;
	width: 100%;
}
.fixedBtnLi{
	display: flex;
	justify-content: center;
	gap: 0 120px;
}
.fixedBtnArea .txt{
	position: relative;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	padding-bottom: 15px;
	letter-spacing: 0.1em;
	width: fit-content;
	margin: 0 auto;
}
.fixedBtnArea .txt::before,
.fixedBtnArea .txt::after{
	content: "";
	position: absolute;
	background: #fff;
	height: 22px;
	width: 2px;
	top:4px;
}
.fixedBtnArea .txt::before{
	transform: rotate(-35deg);
	left: -6%;
}
.fixedBtnArea .txt::after{
	transform: rotate(35deg);
	right: -6%;
}
.fixedBtnArea .reservation{
	display: block;
	margin: 0 auto;
	background: #fff;
	color: var(--clrGreenM);
	font-size: 2.4rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	padding: 10px;
	width: 300px;
	position: relative;
}
.fixedBtnArea .reservation::after{
	content: "";
	display: block;
	width: 58px;
	height: 16px;
	background: url(../images/icon_kv_list_arrow.svg) no-repeat right center;
	background-size: 58px 16px;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}
.fixedBtnArea .reservation:hover:after{
	right: 5px;
}

/* スマホ横向き用 */
@media screen and (orientation:landscape) and (max-height: 500px) and (max-width: 1100px){
	.ctsArea{
		width: 100%;
	}
}


	/*---------------------------------------------------------------------------------------------
			ここからスマホ
	-----------------------------------------------------------------------------------------------*/
	@media screen and (max-width:812px){
	body{
		-webkit-text-size-adjust:100%;
		font-size: 1.4rem;
	}
	img{
		width:100%;
	}
	p{
		line-height: 150%;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}
	:root{
		--wBase: 100%;
		--w900: 100%;
		--roundL: 15px;
		--lineHeightL: 180%;
 	}
	#wrapper{
	margin-bottom:196px;
	}

	/*
		共通
	-----------------------------------------------------------------------------------------------*/
	.ctsArea{
		width: 100%;
		max-width: 500px;
		padding: 0 15px;
	}
	/* もっとくわしく */
	.detailBtnBox{
		padding-top: 25px;
	}
	.detailBtnBox .txtMore{
		font-size: 1.6rem;
	}
	.detailBtnBox .txtMore::before,
	.detailBtnBox .txtMore::after {
		height: 18px;
	}
	/* もっとくわしく ボタン*/
	.detailBtnBox .btn{
		font-size: 2.0rem;
	}
	.detailBtnBox .btn:hover{
		opacity:1;
	}
	/* モーダル */
	.modal-content{
		margin: 20% auto; 
		padding: 20px;
		width: 90%;
	}
	.modal .txt{
		line-height: 150%;
		font-size: 1.4rem;
	}

	/*
		上部snsエリア
	-----------------------------------------------------------------------------------------------*/
	#snsTopWrapper{
		right: auto;
		left: 0;
	}
	.snsTopLi{
		gap: 0 5px;
	}
	.snsTopLi li{
		width: 68px;
		padding: 8px 3px 4px 3px;
		border-width: 2px;
	}
	.snsTopLi img{
		width: 24px;
	}


	/*
		キービジュアルKV
	-----------------------------------------------------------------------------------------------*/
	#kvWrapper{
		position: relative;
		background:url(../images/kv_bg_sp.png) no-repeat center top / cover;
		min-height: 500px;
		width: 100%;
	}
	#kvWrapper .ctsArea{
		padding: 40px 20px 0 20px;
	}
	/*水色三角*/
	#kvWrapper::before{
		min-height: 220px;
	}
	/*緑三角*/
	#kvWrapper::after,
	#aboutWrapper::after{
		min-height:140px;
		background: url(../images/bg_diagonal.png) repeat var(--clrGreenLt);
		background-size:178px 197px;
		bottom: -110px;
	}
	/* item */
	.itemKv01{
		right: 25px;
		top: 20px;
		width: 69px;
	}
	.itemKv02{
		width: 108px;
		top: calc(100% - 23px);
	}
	.itemKv03{
		left: 36%;
		top:321px;
		transform: translateX(-65%);
		width: 160px;
	}
	#kvWrapper .kvLogo{
		width: 30px;
		margin: 0 auto;
	}
	#kvWrapper .titMain,
	#kvWrapper .titSub{
		padding-top:20px ;
		margin: 0 auto;
	}
	#kvWrapper .titMain{
		width: 350px;
		padding-top:30px;
	}
	#kvWrapper .titSub{
		width: 224px;
	}
	.jumpLi{
		right: 20px;
		padding-top: 30px;
	}
	.jumpLi li:nth-child(2){
		margin-left: 0;
	}
	.jumpLi li:nth-child(3){
		margin-left: 0px;
	}
	.jumpLi li a{
		width: 100%;
		font-size: 1.3rem;
		margin-top: 10px;
	}
	.jumpLi li a:hover{
		opacity: 1;
	}
	.jumpLi li a::after{
		width: 32px;
		height: 11px;
		background-size: 32px 11px;
		right: -20px;
		transition: all 0.3s;
	}
	.jumpLi li a:hover::after{
			right: -20px;
	}
	/*
		リードreadWrapper
	-----------------------------------------------------------------------------------------------*/
	#readWrapper,
	#businessWrapper{
		background: url(../images/bg_diagonal.png) repeat var(--clrGreenLt);
		position: relative;
		background-size:178px 197px;
	}
	#readWrapper .ctsArea{
		padding: 0px 20px 60px 20px;
	}
	#readWrapper .readBox{
		flex-direction: column;
		width: 100%;
		padding: 20px 20px 0 20px;
		height: 440px;
	}
	.readBox .readPic{
		box-shadow: 10px 10px 0 #fff;
		width: 210px;
		height: 136px;
		margin: 0 auto;
	}
	.readBox .readPic img{
		width: 210px;
		height: 136px;
	}
	.readBox .txtRead{
		top: 180px;
		font-size: 1.4rem;
	}
	/* item */
	.item04{
		width: 70px;
		right: 0;
		top:0;
	}
	.item05{
		width: 50px;
		left: 5%;
    top: 0px;
	}
	.item06{
		width: 35px;
		left: 0;
		bottom: 90px;
	}

	/*
		H4ってどんな会社？aboutWrapper
	-----------------------------------------------------------------------------------------------*/
	/*白三角*/
	#aboutWrapper::before,
	#scheduleWrapper::before{
		min-height:140px ;
		top:-126px;
	}
	#aboutWrapper .ctsArea{
	padding: 0 20px 140px 20px;
	margin-top: -140px;
	}
	#aboutWrapper .titCommon{
		width: 340px;
		left: auto;
		top: -80px;
		z-index: 8;
	}
	.aboutBox{
		flex-direction: column;
		gap: 150px 0;
		padding-top: 20px;
		z-index: 20;
	}
	.aboutBox .tit{
		width: 180px;
		margin: 0 auto;
		padding-bottom: 15px;
	}
	.aboutLeft::after{
		content: "";
		background: url(../images/icon_about_arrow.svg) no-repeat;
		background-size:92px 52px;
		width: 92px;
		height: 52px;
		position: absolute;
		right: 38%;
		top:auto;
		bottom: -94px;
		transform: rotate(90deg);
	}
	.aboutLeft .tit::after{
		content: none;
	}
	.aboutBox .titL{
		font-size: 2.0rem;
	}
	.aboutBox .aboutPic{
		height: 272px;
		padding-top:30px;
	}
	.aboutBox .txt{
		padding-top:25px;
	}
	/* item */
	.item07{
		width: 80px;
		left: 0;
		top: 10px;
	}
	.item08{
		width: 40px;
		right: 0;
		top: -140px;
	}
	.item09{
		width: 40px;
		right: 0px;
		top: 620px;
	}

	/*
		H4なら、やりたいが形になる！businessWrapper
	-----------------------------------------------------------------------------------------------*/
	#businessWrapper{
		position: relative;
		top:-100px;
	}
	#businessWrapper .titCommon{
		width: 340px;
		right: auto;
		top: -130px;
	}
	/* 緑三角 */
	#aboutWrapper::after{
		bottom: 85px;
	}
	.txtBusiness{
		position: static;
		font-size: 1.5rem;
		margin: 0 auto;
	}
	/* 一覧 */
	.businessArea{
		position: relative;
		height: 1720px;
	}
	.businessBox .btnArea img{
		width: 320px;
	}
	/*各BOX*/
	.businessBox.colBl{
		left: 50%;
		transform: translateX(-50%);
		top:150px
	}
	.businessBox.colPi{
		left: 50%;
		transform: translateX(-50%);
		top:530px;
	}
	.businessBox.colYe{
		left: 50%;
		transform: translateX(-50%);
		top:940px;
	}
	.businessBox.colGr{
		left: 50%;
		transform: translateX(-50%);
		top:1320px;
	}
	.businessArea .detailBtnBox{
		right: auto;
		left: 20px;
		bottom: 150px;
	}
	.businessBox .txtArea{
		position: absolute;
		top:-110px;
		left: -20px;	
		}
	/* もっとくわしくリンク */
	.businessBox .btnTxt{
		font-size: 1.2rem;
	}
	.businessBox .btnTxt::after{
		width:42px;
		height:7px;
		background-size:42px 7px;
		right: 10px;
	}
	.businessBox .btnTxt:hover::after{
		right: 10px;
	}
	/* item */
	.item10{
		width: 50px;
		left: 0px;
		top: -250px;
		z-index: 15;
	}
	.item11{
		width: 50px;
		left: 10px;
		top: -200px;
		z-index: 15;
	}
	.item12{
		width: 80px;
		right: 0px;
		top: 110px;
		z-index: 15;
	}

	/*
		H4なら、短期間で密度の濃い経験ができる！scheduleWrapper
	-----------------------------------------------------------------------------------------------*/
	#scheduleWrapper{
		top:-170px;
	}
	#scheduleWrapper::before{
		top:-56px;
		min-height: 140px;
	}
	#scheduleWrapper .titCommon{
		left: auto;
		top:-170px;
	}
	/* タブ */
	#scheduleWrapper .tabBtn{
		gap: 10px;
		width: 90%;
	}
	#scheduleWrapper .tabBtn li{
		padding: 10px 50px 10px 10px;
		width: 100%;
	}
	#scheduleWrapper .tabBtn li::after{
		background: url(../images/ph_tab_01.png) no-repeat;
		background-size: 68px 75px;
		width: 75px;
		height: 68px;
		right: -25px;
	}
	#scheduleWrapper .tabBtn li:nth-child(2)::after{
		background: url(../images/ph_tab_02.png) no-repeat;
		background-size: 68px 75px;
	}
	.tabLi li{
		flex-direction: column;
		margin-top:80px;
		padding: 0 20px;
	}
	.tabLi li:first-child{
		margin-top:20px;
	}
	.tabLi .num{
		width: 90px;
		margin-bottom:20px;
	}
		.tabLi .num::after{
		content: none;
	}
	.tabLi .txtArea .tit{
		font-size: 1.8rem;
		margin-top:20px;
	}
	.tabLi .txtArea .txt{
		width: 100%;
		height: 100%;
		font-size: 1.2rem;
		position: relative;
	}
	.tabLi .txtArea .txt::after{
		content: "";
		background: url(../images/icon_schedule_arrow.svg) no-repeat;
		background-size: 30px 64px;
		width: 30px;
		height: 64px;
		position: absolute;
		top:auto;
		bottom:-75px;
		left: 44%;
	}
	.tabLi li:nth-child(4) .txtArea .txt::after{
		content: none;
	}
	.tabLi .photo{
		box-shadow: 5px 5px 0 var(--clrGreenLt);
	}
	/* スケジュール */
	.scheduleArea{
		padding: 20px 20px 20px 20px;
		margin-top: 50px;
	}
	.scheduleArea .tit{
		font-size: 1.8rem;
	}
	.scheduleArea .tit span{
		font-size: 2.6rem;
	}
	.scheduleArea .scheduleLi{
		flex-direction:column;
		gap: 25px 0;
		width: var(--w900);
		margin: 20px auto 0 auto;
		line-height: 140%;
	}
	.scheduleArea .scheduleLi::before{
		width: 1px;
		height: calc(100% - 20px);
		top: 10px;
		left: 7px;
		transform: translateX(0);
	}
	.scheduleArea .scheduleLi li{
		padding-left: 20px;
	}
	.scheduleArea .scheduleLi .time{
		font-size: 1.5rem;
		margin-bottom: 5px;
	}
	.scheduleArea .scheduleLi .time::after{
		width: 15px;
		height: 15px;
		border: 4px solid var(--clrGreenM);
		bottom: 4px;
		left: -20px;
	}
	.scheduleArea .scheduleLi .txt{
		font-size: 1.0rem;
	}
	/* フッター */
	#footerWrapper{
		margin-top: -170px;
	}
	.footerBo{
		padding-block: 15px;
		margin-top: 40px;
		font-size: 1.0rem;
	}
	/* item */
	.item13{
		display: none;
	}
	.item14{
		display: none;
	}
	.item15{
		display: none;
	}
	.item16{
		display: none;
	}
	.item17{
		display: none;
	}
	.item18{
		display: none;
	}
	.item19{
		width: 80px;
		right: 0;
		bottom: -40px;
		z-index: -1;
	}

	/*
		下部snsエリア
	-----------------------------------------------------------------------------------------------*/
	/* 飾り文字 */
	#snsBottomWrapper{
		margin-top: 30px;
		top: -170px;
	}
	.txtDecoration{
		font-size: 1.6rem;
		padding-inline: 15px;
	}
	.txtDecoration::before{
		rotate: -25deg;
	}
	.txtDecoration::after{
		rotate: 25deg;
	}
	/* SNSリンク */
	.snsBottomLi{
		flex-direction: column;
		gap: 15px 0;
		margin-top: 20px;
	}
	.snsBottomLi li{
		width: 100%;
	}
	.snsBottomLi a{
		height: 100%;
		min-height: initial;
		font-size: 2.2rem;
		padding: 15px 70px 15px 50px;
	}
	.snsBottomLi a::after{
		width: 30px;
		right: 20px;
	}
	.snsBottomLi .icoInstagram::after{
		background-image: url("../images/ico_instagram_sp.png");
	}

	/*
		エントリーバナー
	-----------------------------------------------------------------------------------------------*/
	.fixedBtnArea .txt{
		font-size: 1.2rem;
		font-weight: 700;
		letter-spacing: 0.1em;
		padding-bottom: 0;
	}
	.fixedBtnLi{
		flex-direction: column;
		gap: 12px 0;
	}
	.fixedBtnArea .txt::before,
	.fixedBtnArea .txt::after{
		height: 18px;
		width: 1px;
		top:2px;
	}
	.fixedBtnArea .reservation{
		font-size: 1.5rem;
		margin: 10px auto 0 auto;
	}
	.fixedBtnArea .reservation::after{
		width: 54px;
		height: 12px;
		background-size: 54px 12px;
	}
	.fixedBtnArea .reservation:hover:after{
		right: 10px;
	}
}