@charset "utf-8";

:root{
	--main-color: #4380DF;
	--bg-color: #B4CCF2;
	--accent-color: #EBCA73;
	--base-color: rgba(230, 235, 245, 1);
	--base-hover: #E0AF2C;
	--text-color: #333333;
}
html, body{
	font-size: 62.5%;
	font-family: 'YakuHanJP_Noto', 'Noto Sans JP', sans-serif;
	line-height: 1.8;
	letter-spacing: 0.06em;
	color: var(--text-color);
	word-break: break-all;
}
img{
	width: 100%;
	object-fit: cover;
}
ul, li{
	list-style: none;
	padding: 0;
	margin: 0;
}
a{
	text-decoration: none;
}
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}
p{
	line-height: 2.6rem;
	text-align: 2.6rem;
}
/* ---------------------------
全共通
--------------------------- */
.reverse{
	flex-direction: row-reverse;
}
.btn{
	display: inline-flex;
	min-width: 240px;
	justify-content: center;
	align-items: center;
	font-size: 2.4rem;
	padding: 8px 16px;
	background-color: var(--accent-color);
	color: #ffffff;
	border: 2px solid var(--accent-color);
	border-radius: 9999px;
	margin: 0 auto;
	transition: all .5s;
}
.btn:hover{
	background-color: #ffffff;
	color: var(--accent-color);
}
.el_sectionTtl{
	font-size: 2.4rem;
	font-weight: 900;
	text-align: left;
	margin-bottom: 24px;
}
.ly_cont_inner{
	width: 100%;
	max-width: 940px;
	padding: 0 20px;
	margin: 0 auto 120px;
}
/* ---------------------------
ヒーローヘッダー
--------------------------- */
.bl_hero_imgWrapper img{
	height: 500px;
}
.bl_hero_ttl{
	color: var(--text-color);
	background-color: var(--base-color);
	text-align: center;
	padding-top: 34px;
	padding-bottom: 34px;
	font-size: 4rem;
	line-height: 4.6rem;
}
.ly_heroCont{
	margin-bottom: 120px;
}
/* ---------------------------
概要
--------------------------- */
.bl_overview_mv video{
	width: 100%;
	max-width: 600px;
	height: auto;
	margin: 0 auto;
}
.bl_overview_imgWrapper{
	display: grid;
	column-gap: 20px;
	row-gap: 80px;
	justify-content: space-between;
	align-items: start;
	grid-template-areas: "areaA areaB";
	margin-bottom: 40px;
}
.bl_overview_img img{
	max-width: 430px;
}
.bl_overview_img-01{
	grid-area: areaA;
}
.bl_overview_img-02{
	grid-area: areaB;
}
.bl_overviewList-item img{
	max-width: 230px;
}
.bl_overviewList{
	display: grid;
	column-gap: 20px;
	row-gap: 80px;
	justify-content: space-between;
	align-items: start;
	grid-template-areas:
		"areaA areaB areaC";
	margin-bottom: 40px;
}
.el_overview_itemA{
	grid-area: areaA;
}
.el_overview_itemA img{
	max-width: 280px;
}
.el_overview_itemB{
	grid-area: areaB;
}
.el_overview_itemB img{
	max-width: 280px;
}
.el_overview_itemC{
	grid-area: areaC;
}
.el_overview_itemC img{
	max-width: 280px;
}
.el_overview_itemD{
	grid-area: areaD;
}
.el_overview_itemD img{
	max-width: 920px;
}
/* ---------------------------
アバウト
--------------------------- */
.bl_about_imgWrapper{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.bl_about_img-01 img{
	max-width: 420px;
}
.bl_about_img-02 img{
	max-width: 420px;
}
.bl_aboutCol{
	margin-bottom: 56px;
}
.bl_about_des-text{
	font-size: 1.6rem;
}
.bl_about_des-ttl::before{
	position: absolute;
	top: 25%;
	left: 0;
	content: '';
	width: 14px;
	height: 14px;
	background-color: var(--accent-color);
}
.bl_about_des-ttl{
	position: relative;
	font-size: 1.6rem;
	font-weight: 600;
	padding-left: 20px;
	margin-bottom: 4px;
}
.bl_about_desWrapper{
	margin-bottom: 8px;
}
.bl_about_desWrapper:last-child{
	margin-bottom: 0;
}
.bl_about_des{
	width: 100%;
	max-width: 768px;
	background-color: var(--base-color);
	padding: 32px 34px;
}
.bl_about_sabTtl{
	font-size: 2rem;
	font-weight: 600;
	padding-bottom: 8px;
	border-bottom: solid 2px var(--text-color);
	margin-bottom: 32px;
}
.bl_about_textBox{
	width: 100%;
	max-width: 768px;
	padding: 0 46px;
	margin: 0 auto;
}
/* ---------------------------
特徴
--------------------------- */
.bl_features_des{
	font-size: 1.6rem;
	line-height: 2.4rem;
}
.bl_features_ttl{
	text-align: center;
	font-size: 2rem;
	margin-bottom: 12px;
}
.bl_features-image img{
	max-width: 100px;
	margin-bottom: 20px;
}
.bl_features-image-03{
	background: url("./images/features_icon_03.png") center center / cover no-repeat,
	var(--bg-color);
	border-radius: 9999px;
}
.bl_features-image-02{
	background: url("./images/features_icon_02.png") center center / cover no-repeat,
	var(--bg-color);
	border-radius: 9999px;
}
.bl_features-image-01{
	background: url("./images/features_icon_01.png") center center / cover no-repeat,
	var(--bg-color);
	border-radius: 9999px;
}
.bl_features-image{
	max-width: 150px;
	height: 150px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.bl_featuresList-item{
	width: 100%;
	max-width: 280px;
	text-align: justify;
	margin: 0 auto;
	background-color: var(--base-color);
	padding: 30px 36px;
}
.bl_featuresList{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 30px;
	justify-content: center;
	align-items: center;
}
.bl_features_heading{
	width: 100%;
	height: 320px;
	background-image: url("./images/features_header.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 120px;
}
/* ---------------------------
利点
--------------------------- */
.bl_available_text{
	font-size: 1.8rem;
}
.bl_available_ttl{
	font-size: 2rem;
	line-height: 1;
	padding-top: 48px;
	margin-bottom: 20px;
}
.bl_available_imgWrapper{
	max-width: 480px;
}
.bl_available_textBody{
	max-width: 340px;
}
.bl_availableCol:nth-of-type(1){
	margin-bottom: 40px;
}
.bl_availableCol{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: start;
	gap: 80px;
}
/* ---------------------------
スライド
--------------------------- */
.slide_inner{
	position: relative;
	overflow: hidden;
}
/* ---------------------------
アロー
--------------------------- */
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
	color: #ffffff;
	background-color: var(--accent-color);
	display: block;
	padding: 24px;
	border-radius: 50%;
	transition: all .5s;
}
.material-symbols-outlined:hover{
	color: #ffffff;
	background-color: var(--base-hover);
}
/* ---------------------------
カルーセル
--------------------------- */
.slider_inner{
	position: relative;
}
.bl_slideWrapper {
  width: 100%;
	max-width: 680px;
  height: 500px;
  overflow: hidden;
  position: relative;
	margin: 0 auto;
}
.bl_sliderLists {
  width: 100%;
  height: 500px;
  left: 0%;
  transition: 0.5s all ease-out;
  position: absolute;
  z-index: 10;
	cursor: pointer;
}
.bl_sliderItem {
  position: absolute;
  top: 0%;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-color: var(--base-color);
  background-position: center center;
  background-repeat: no-repeat;
  padding: 16px;
  border-radius: 0px;
  z-index: 10;
  transition: 0.5s all ease-out;
}
.bl_sliderItem.active-slide {
  left: 0%;
}
.bl_sliderCursor-left {
	position: absolute;
	z-index: 2;
	top: 40%;
	left: 2%;
  z-index: 30;
  cursor: pointer;
}
.bl_sliderCursor-right {
	position: absolute;
	z-index: 2;
	top: 40%;
	right: 2%;
  z-index: 30;
  cursor: pointer;
}
.cursor-02 .material-symbols-outlined{
	font-size: 1.6rem;
	padding: 10px;
}
.cursor-02 > .bl_sliderCursor-left{
	top: -10px;
	left: 10%;
}
.cursor-02 > .bl_sliderCursor-right{
	top: -10px;
	right: 10%;
}
div.bl_slide_indicators {
  width: 100%;
  height: 160px;
  max-width: 600px;
  padding: 0 40px;
  margin: 32px auto;
  position: relative;
  top: 0;
  overflow: hidden;
  background-color: #1122;
}
ul.bl_slide_indicatorsLists {
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-40px);
  list-style: none;
  padding: 0px;
  margin-bottom: 32px;
  z-index: 20;
}
.bl_slide_indicatorsLists li{
  position: absolute;
  top: 0;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all .5s;
}
.bl_slide_indicatorsLists li:hover{
  transform: scale(1.2);
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, .3);
}
li.bl_slide_indicator0 {
  background: linear-gradient(to bottom , rgba(0,0,0,.5), rgba(0,0,0,.1))
    ,url("./images/slide_01.jpg") center center / cover no-repeat;
}
li.bl_slide_indicator0.active-indicator {
  transform: scale(1.2);
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, .3);
  background: linear-gradient(to bottom , rgba(0,0,0,0), rgba(0,0,0,0))
    ,url("./images/slide_01.jpg") center center / cover no-repeat;
}
li.bl_slide_indicator1 {
  background: linear-gradient(to bottom , rgba(0,0,0,.5), rgba(0,0,0,.1))
    ,url("./images/slide_02.jpg") center center / cover no-repeat;
}
li.bl_slide_indicator1.active-indicator {
  transform: scale(1.2);
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, .3);
  background: linear-gradient(to bottom , rgba(0,0,0,0), rgba(0,0,0,0))
    ,url("./images/slide_02.jpg") center center / cover no-repeat;
}
li.bl_slide_indicator2 {
  background: linear-gradient(to bottom , rgba(0,0,0,.5), rgba(0,0,0,.1))
    ,url("./images/slide_03.jpg") center center / cover no-repeat;
}
li.bl_slide_indicator2.active-indicator {
  transform: scale(1.2);
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, .3);
  background: linear-gradient(to bottom , rgba(0,0,0,0), rgba(0,0,0,0))
    ,url("./images/slide_03.jpg") center center / cover no-repeat;
}
li.bl_slide_indicator3 {
  background: linear-gradient(to bottom , rgba(0,0,0,.5), rgba(0,0,0,.1))
    ,url("./images/slide_04.jpg") center center / cover no-repeat;
}
li.bl_slide_indicator3.active-indicator {
  transform: scale(1.2);
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, .3);
  background: linear-gradient(to bottom , rgba(0,0,0,0), rgba(0,0,0,0))
    ,url("./images/slide_04.jpg") center center / cover no-repeat;
}
li.bl_slide_indicator4 {
  background: linear-gradient(to bottom , rgba(0,0,0,.5), rgba(0,0,0,.1))
    ,url("./images/slide_05.jpg") center center / cover no-repeat;
}
li.bl_slide_indicator4.active-indicator {
  transform: scale(1.2);
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, .3);
  background: linear-gradient(to bottom , rgba(0,0,0,0), rgba(0,0,0,0))
    ,url("./images/slide_05.jpg") center center / cover no-repeat;
}
li.bl_slide_indicator5 {
  background: linear-gradient(to bottom , rgba(0,0,0,.5), rgba(0,0,0,.1))
    ,url("./images/slide_06.jpg") center center / cover no-repeat;
}
li.bl_slide_indicator5.active-indicator {
  transform: scale(1.2);
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, .3);
  background: linear-gradient(to bottom , rgba(0,0,0,0), rgba(0,0,0,0))
    ,url("./images/slide_06.jpg") center center / cover no-repeat;
}
/* インジケーター改良 */
.bl_slide_indicator.active{
  left: 0%;
}
/* 追加要素 */
.bl_sliderCursors.cursor-02{
  position: relative;
	top: -120px;
}
/* ---------------------------
モーダル
--------------------------- */
.ly_modal_inner p{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.6rem;
	line-height: 2.4rem;
	text-align: justify;
}
.ly_modal_inner h3{
	text-align: left;
	font-size: 2rem;
}
.bl_modal_imageWrapper img{
	max-width: 800px;
	margin: 24px auto;
}
.ly_modalCont {
	display: none;
	position: fixed;
	z-index: 40;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background-color: rgba(0,0,0,0);
}
.ly_modal_inner{
	position: relative;
	top: 5%;
	left: 50%;
	transform: translateX(-50%);
	width: 50%;
	max-width: 811px;
	background-color: #ffffff;
	padding: 64px 72px;
	box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, .3);
}
/* ---------------------------
モーダル開閉
--------------------------- */
.el_modal_close{
	position: absolute;
	top: -40px;
	left: -40px;
	font-size: 7.2rem;
	background-color: var(--accent-color);
	padding: 3px 3px;
	border-radius: 50%;
	cursor: pointer;
	transition: all .5s;
}
.el_modal_close:hover{
	background-color: var(--base-hover);
}
.ly_modalCont.active{
	display: block;
}
/* ---------------------------
情報
--------------------------- */
.bl_info_unit:nth-child(1) .bl_infoList:nth-of-type(2n) dt{
	border-left: none;
}
.bl_info_text{
	width: calc(100% - 200px);
	padding: 16px;
	background-color: #ffffff;
	border-top: 1px solid var(--main-color);
	border-left: 1px solid var(--main-color);
	border-right: 1px solid var(--main-color);
}
.bl_info_unit:nth-child(1) .bl_infoList{
	width: 50%;
}
.bl_info_ttl{
	width: 200px;
	padding: 16px;
	background-color: var(--base-color);
	border-top: 1px solid var(--main-color);
	border-left: 1px solid var(--main-color);
}
.bl_infoList{
	display: flex;
	flex-wrap: wrap;
}
.bl_info_unit:nth-child(2) .bl_infoList:nth-child(3) dd:last-of-type{
	border-bottom: 1px solid var(--main-color);
}
.bl_info_unit:nth-child(2) .bl_infoList:nth-child(3) dt:last-of-type{
	border-bottom: 1px solid var(--main-color);
}
.bl_info_unit:nth-child(2){
	display: block;
}
.bl_info_unit{
	display: flex;
	flex-wrap: wrap;
}
/* ---------------------------
CTA
--------------------------- */
.ly_ctaCont{
	display: flex;
	width: 100%;
	background-color: var(--base-color);
	padding: 80px 20px;
}
/* --------------------------
ブレイクポイント
-------------------------- */
@media screen and (max-width: 940px) {
	/* 特徴 */
	.bl_featuresList{
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	/* 利点 */
	.bl_available_ttl{
		padding-top: 0;
	}
	.bl_availableCol{
		gap: 40px;
	}
}
@media screen and (max-width: 640px){
	/* 全共通 */
	.el_sectionTtl{
		font-size: 2rem;
	}
	.ly_cont_inner{
		margin-bottom: 72px;
	}
	/* ヒーローヘッダー */
	.bl_hero_ttl{
		font-size: 2.4rem;
		padding-top: 14px;
		padding-bottom: 14px;
	}
	.ly_heroCont{
		margin-bottom: 72px;
	}
	/* 概要 */
	.bl_overview_img img{
		width: 100%;
		max-width: fit-content;
	}
	.bl_overviewList img{
		width: 100%;
		max-width: fit-content;
	}
	.bl_overview_imgWrapper{
		display: flex;
		flex-direction: column;
		row-gap: 12px;
		margin-bottom: 12px;
	}
	.bl_overviewList{
		display: flex;
		flex-direction: column;
		row-gap: 12px;
		margin-bottom: 24px;
	}
	/* アバウト */
	.bl_about_textBox{
		padding-left: 0;
		padding-right: 0;
	}
	/* 特徴 */
	.bl_featuresList{
		gap: 16px;
	}
	/* 利点 */
	.bl_available_textBody{
		max-width: fit-content;
		width: 100%;
	}
	.bl_features_heading{
		margin-bottom: 72px;
	}
	/* 情報 */
	.bl_info_unit:nth-child(1) .bl_infoList:nth-of-type(2n) dt {
    border-left: solid 1px var(--main-color);
	}
	.bl_info_unit:nth-child(1) .bl_infoList dt{
		border-left: solid 1px var(--main-color);
		border-right: solid 1px var(--main-color);
	}
	.bl_info_unit:nth-child(1) dt, .bl_info_unit:nth-child(1) dd{
		width: 100%;
	}
	.bl_info_unit:nth-child(1) .bl_infoList{
		width: 100%;
	}
	/* 詳細-アロー */
	.el_detail_arrow{
		display: block;
	}
	/* カルーセル */
	.bl_sliderItem{
		height: 212px;
	}
	.bl_slideWrapper{
		max-width: 280px;
		height: 212px;
	}
	/* モーダル */
	.cursor-02 > .bl_sliderCursor-left{
		left: 2%;
	}
	.cursor-02 > .bl_sliderCursor-right{
		right: 2%;
	}
	.bl_sliderCursor-left{
		top: 33%;
	}
	.bl_sliderCursor-right{
		top: 33%;
	}
	.ly_modal_inner p{
		font-size: 1.4rem;
		line-height: 2.3rem;
	}
	.bl_modal_imageWrapper img{
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.ly_modal_inner{
		width: 80%;
		padding: 20px 24px;
	}
	/* アロー */
	.material-symbols-outlined{
		font-size: 2rem;
		padding: 12px;
	}
	.el_modal_close{
		font-size: 4rem;
		padding: 4px;
		/* font-size: 2.4rem;
		padding: 16px 17px; */
		top: -24px;
		left: -24px;
	}
}
@media screen and (max-width: 430px){
	.bl_overview_img img{
		max-width: 320px;
	}
	.bl_overviewList img{
		max-width: 320px;
	}
	.bl_overview_imgWrapper, .bl_overviewList{
		justify-content: center;
		align-items: center;
	}
}
@media screen and (max-width: 375px){
	.bl_overview_img img{
		max-width: 280px;
	}
	.bl_overviewList img{
		max-width: 280px;
	}
}