@charset "utf-8";
/*
Theme Name: 3eee-Renewal-202601
Author: 3eee
Author URI: https://3eee.co.jp/
Description: Template build.
Version: 1.0
*/


/**
 * カスタムプロパティ（共通CSS 変数設定）
**/
:root {
	/*幅設定（縦横使用可能）*/
	--margin_xl: 15vw; /*使用するときはvar(--margin_xl);です。 */
	--margin_l: 10vw;   /*使用するときはvar(--margin_l);です。  */
	--margin_m: 8vw;   /*使用するときはvar(--margin_m);です。  */
	--margin_s: 4vw;   /*使用するときはvar(--margin_s);です。  */
	--margin_xs: 2vw;  /*使用するときはvar(--margin_xs);です。 */
	--margin_xxs: 1vw;  /*使用するときはvar(--margin_xs);です。 */

	/*フォントサイズ設定*/
	--fs_h1: 60pt; /*使用するときはvar(--fs_h1);です。 */
	--fs_h2: 45pt; /*使用するときはvar(--fs_h2);です。 */
	--fs_h3: 25pt; /*使用するときはvar(--fs_h3);です。 */
	--fs_h4: 20pt; /*使用するときはvar(--fs_h4);です。 */
	--fs_h5: 15pt; /*使用するときはvar(--fs_h5);です。 */
	
	/*フォントサイズ設定2*/
	--fs_xl: 60pt; /*使用するときはvar(--margin_xl);です。 */
	--fs_l: 45pt;   /*使用するときはvar(--margin_l);です。  */
	--fs_m: 18pt;   /*使用するときはvar(--margin_m);です。  */
	--fs_s: 12pt;   /*使用するときはvar(--margin_s);です。  */
	--fs_xs: 10pt;  /*使用するときはvar(--margin_xs);です。 */
	--fs_xxs: 8pt;  /*使用するときはvar(--margin_xs);です。 */
}


	@media screen and (max-width:768px) {
		
		:root{
		--fs_h1: 18pt; /*使用するときはvar(--fs_h1);です。 */
		--fs_h2: 16pt; /*使用するときはvar(--fs_h2);です。 */
		--fs_h3: 14pt; /*使用するときはvar(--fs_h3);です。 */
		--fs_h4: 13pt; /*使用するときはvar(--fs_h4);です。 */
		--fs_h5: 12pt; /*使用するときはvar(--fs_h5);です。 */
		--fs_xl: 18pt; /*使用するときはvar(--fs_h1);です。 */
		--fs_l: 17pt; /*使用するときはvar(--fs_h2);です。 */
		--fs_m: 16pt; /*使用するときはvar(--fs_h3);です。 */
		--fs_s: 15pt; /*使用するときはvar(--fs_h4);です。 */
		--fs_xs: 12pt; /*使用するときはvar(--fs_h5);です。 */
		--fs_xss: 8pt; /*使用するときはvar(--fs_h5);です。 */	
		--margin_xxl: 30vw; /*使用するときはvar(--margin_xl);です。 */
		--margin_xl: 25vw; /*使用するときはvar(--margin_xl);です。 */
		--margin_l: 20vw;   /*使用するときはvar(--margin_l);です。  */
		--margin_m: 10vw;   /*使用するときはvar(--margin_m);です。  */
		--margin_s: 6vw;   /*使用するときはvar(--margin_s);です。  */
		--margin_xs: 2vw;  /*使用するときはvar(--margin_xs);です。 */
		--margin_xxs: 1vw;  /*使用するときはvar(--margin_xs);です。 */	
		}
	}
	
	@media screen and (min-width: 768px) and (max-width: 1280px) {	
		
		:root{
		--fs_h1: 22pt; /*使用するときはvar(--fs_h1);です。 */
		--fs_h2: 20pt; /*使用するときはvar(--fs_h2);です。 */
		--fs_h3: 18pt; /*使用するときはvar(--fs_h3);です。 */
		--fs_h4: 16pt; /*使用するときはvar(--fs_h4);です。 */
		--fs_h5: 14pt; /*使用するときはvar(--fs_h5);です。 */
		--fs_xl: 20pt; /*使用するときはvar(--fs_h1);です。 */
		--fs_l: 18pt; /*使用するときはvar(--fs_h2);です。 */
		--fs_m: 16pt; /*使用するときはvar(--fs_h3);です。 */
		--fs_s: 14pt; /*使用するときはvar(--fs_h4);です。 */
		--fs_xs: 12pt; /*使用するときはvar(--fs_h5);です。 */
		--fs_xss: 8pt; /*使用するときはvar(--fs_h5);です。 */	
		--margin_xxl: 30vw; /*使用するときはvar(--margin_xl);です。 */
		--margin_xl: 25vw; /*使用するときはvar(--margin_xl);です。 */
		--margin_l: 20vw;   /*使用するときはvar(--margin_l);です。  */
		--margin_m: 10vw;   /*使用するときはvar(--margin_m);です。  */
		--margin_s: 6vw;   /*使用するときはvar(--margin_s);です。  */
		--margin_xs: 2vw;  /*使用するときはvar(--margin_xs);です。 */
		--margin_xxs: 1vw;  /*使用するときはvar(--margin_xs);です。 */	
		}
	}

* {
	border: solid 0px #f0f;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
}

body {
    transition: background-color 0.5s ease; /* 背景色の変更を滑らかにする */
    margin: 0; /* 余白をリセット */
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 2px;
	font-size: var(--fs_xs);
	font-weight: 500;
	-webkit-text-size-adjust: 100%;
}
	
h1,h2,h3,h4,h5 {
	font-weight: 600;
	margin: 0; 
	-webkit-text-size-adjust: 100%;
}

a{
	text-decoration: none;
    color: #236ac5;
	word-break: break-all;
}

a:hover{
    color: #ff7473;
}

h1 {
	font-size: var(--fs_h1);
	font-weight: 800;
    line-height: 130%;
	-webkit-text-size-adjust: 100%;
}

h2 {
	font-size: var(--fs_h2);
	margin: 0 0 var(--margin_l) 0;
	font-weight: 800;
    line-height: 130%;
	-webkit-text-size-adjust: 100%;
}

h3 {
	font-size: var(--fs_h3);
	font-weight: 700;
	line-height: 130%;
	-webkit-text-size-adjust: 100%;
}

h4 {
	font-size: var(--fs_h4);
	font-weight: 600;
	line-height: 130%;
	-webkit-text-size-adjust: 100%;
}

h5 {
	font-size: var(--fs_h5);
	font-weight: 500;
	line-height: 130%;
	-webkit-text-size-adjust: 100%;
}

li{
	list-style:none;
}

section {
	width: 100%;
}

.section_wra {
	width: 100%;
	padding: var(--margin_xl) 0;
}

header {
	display: flex;
    gap: 0 5%;
    align-items: center;
    padding: var(--margin_s) 5%;
    width: 90%;
}

header div.logo {
	margin: 0;
	padding: 0;
	width: 30%;
}

header div.logo img {
	display: block;
	height: 35px;
}

header nav.menu_pc {
	font-weight: 600;
	width: 65%;
}

header nav.menu_pc ul {
	display: flex;
	gap: 0 3%;
	justify-content: flex-end;
	list-style: none;
	font-size:var(--fs_xs);
	letter-spacing: 1px;
}

header nav.menu_pc ul li a {
	color:#000;
	display: inline-block;
	color:#000;
	text-decoration:none;
	transition: 0.2s;
}

header nav.menu_pc ul li a:hover {
	color: transparent;
	text-shadow: 0 0 4px #333;
}

.page_cont {
    width: 100%;
    margin: 0 auto;
	padding:0;
}

.page_cont h1 {
    width: 90%;
    margin: 0 0 var(--margin_xxs) 0!important;
}

.page_cont {
    display: block;
    padding: 0 0 var(--margin_l) 0;
    background: #e9e9e9;
    font-weight: 700;
}

.page_cont_title {
	width:90%;
	margin:0 auto;
	padding: var(--margin_s) 0;
}

.page_cont_title h1,.page_cont_title h3 {
	color: #000;
    line-height: 130%;
}

.single_wra .page_cont_title span {
    margin-bottom: var(--margin_xs);
    display: block;
}

.single_wra .entry-content {
	padding: var(--margin_s) 0;
    line-height: 180%;
    border-top: 1px solid #000;
	width: 90%;
    margin: 0 auto;
}


.single_wra .entry-content iframe {
	max-width:100%;
}

.single_wra .entry-content p img {
    margin: var(--margin_xs) auto;
	max-width: 100%;
    height: auto;
}

.addtoany_content {
	margin: var(--margin_s) 0 0 auto;
    text-align: right;
}
/*
.page_contents {
	width: 90%;
    margin: 0 auto;
    padding: padding: var(--margin_s) 0;
	line-height: 200%;
}*/

.section_wra {
	position: relative;
}

.more {
	font-size: var(--fs_s);
	font-weight: 600;
}
/*
.more a {
	font-size: var(--fs_s);
	font-weight: 600;
    border: 1px solid #666;
    border-radius: 5em;
    padding: var(--margin_xxs) var(--margin_s);
    text-align: center;
	color: #666;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	display: block;
    width: fit-content;
}
.more a:hover {
	background:#666;
	color:#fff;
}
*/


.more a {
	margin: var(--margin_xs) 0 0 0 !important;
    width: calc(100% - 5%)!important;
    padding: var(--margin_xxs) 0 !important;
	text-align: right;
	display:flex;
	border:0!important;
	justify-content: end;
	color:#000;
	line-height: 170%;
}

.more a:hover {
	background:none!important;
	color:#bbbbbb!important;
}

.more a::after {
	content: '';
	width: 60px;
	height: 15px;
	border-bottom: solid 1px;
	border-right: solid 1px;
	transform: skew(45deg);
}

.tx p {
	margin:var(--margin_xs) 0;
    line-height: 180%;
}

.tx a {
	margin: 0 auto;
}


.page_block_wra {
    margin: 0 auto var(--margin_xl) auto;
    display: flex;
    justify-content: space-between;
    gap: 1.5em;
	width: 90%;
    padding:var(--margin_s) 0;
	line-height: 200%;
}

.page_block_wra:last-child {
    margin: 0 auto;
}

.page_block_title {
    background: #e9e9e9;
    width: 30%;
    position: sticky;
    align-self: flex-start;
    top: 2vh;
    padding: var(--margin_s) 0;
    font-size: var(--fs_h3);
    text-align: left;
	color:#666;
	line-height:110%;
}

.page_block_title span{
    font-size: 60%;
    display: block;
	color:#000;
    font-weight: 700;
}

.page_block {
    width: 70%;
    font-size: var(--fs_s);
    line-height: 200%;
}

.more a {
	margin: 0 0 var(--margin_s) auto;
    text-align: right;
}

.m_list2 {
	padding: var(--margin_xxs) 5%;
    display: flex;
    gap: var(--margin_xs);
    justify-content: space-between;
    margin: var(--margin_xl) 0 0 0;
	align-items: stretch;
}

.m_list2 li {
    width: 100%;
    background: #fff;
    padding-bottom: calc(4em + var(--margin_xxs));
    position: relative;
}


.m_list2 li img {
    width: 100%;
}

.m_list2 li dl {
	padding: var(--margin_xxs) var(--margin_xs);
}

.m_list2 li dl dt {
	font-size: var(--margin_xs);
    text-align: left;
    color: #666;
}

.m_list2 li dl dt span {
    font-size: var(--margin_xs);
    text-align: left;
	font-size: 60%;
    display: block;
    color: #000;
}

.m_list2 li dl dd {
	margin: var(--margin_xxs) 0;
    font-weight: 400;
    line-height: 180%;
}

.m_list2 .more {
    font-size: var(--fs_s);
    font-weight: 600;
    position: absolute;
    bottom: var(--margin_xs);
    left: var(--margin_xs);
    width: calc(100% - var(--margin_xs) - var(--margin_xs));
}

.m_list2 span.more a {
	margin: var(--margin_xs) 0 0 0 !important;
    width: 100% !important;
    padding: var(--margin_xxs) 0 !important;
	text-align: right;
	display:flex;
	border:0!important;
	justify-content: end;
}

.m_list2 span.more a:hover {
	background:none!important;
	color:#bbbbbb!important;
}

.m_list2 span.more a::after {
	content: '';
	width: 60px;
	height: 15px;
	border-bottom: solid 1px;
	border-right: solid 1px;
	transform: skew(45deg);
}



/*スライダー設定*/
div.viewer {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius:20px;
}

div.viewer ul {
	width: 100%;
	overflow: hidden;
	position: relative;
	display: inline-block;
	overflow: hidden;
}

div.viewer ul:after {
	content: ".";
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}

div.viewer ul li {
	top: 0;
	left: 0;
	width: 100%;
	position: absolute;
}

div.viewer ul li img {
	aspect-ratio: 16 / 9;
	width: 100%;
}

/*Swiper設定*/
section.lsd {
	width: 90%;
	margin: 0 auto;
	flex-direction: column;
}

section.lsd div.loopSlide {
	position: relative;
	width: 100%;
	height: 336px;
	overflow: hidden;
	margin: 0 auto;
}

/*
section.lsd div.loopSlide div.swiper-wrapper a h4,
section.lsd div.loopSlide div.swiper-wrapper a p {
	color: #000;
	display: inline-block;
	text-decoration: none;
}*/

section.lsd .swiper-slide {
	width: 75%;
	margin: 0 var(--margin_m) 0 0;
	text-align: left;
}

section.lsd .swiper-slide:hover {
	opacity: 0.8;
	transition: opacity .3s;
}

section.lsd div.loopSlide div.swiper-wrapper div.swiper-slide img {
	width: 100%;
}

section.lsd .swiper-button-prev:hover,
section.lsd .swiper-button-next:hover {
	opacity: 0.5;
	transition: opacity .3s;
}

section.lsd div.gls {
	width: 90%;
	overflow: hidden;
	margin: 0 auto;
}

/*Content1設定*/
div.content1 {
	width: 90%;
	margin: 0 auto;
}

div.content1 .bl {
	display: flex;
	align-items: flex-start;
	gap: var(--margin_s);
}

.bl_img {
	width: 50%;
}

.bl_img img {
	aspect-ratio: 4 / 3;
	width: 100%;
	height: 100%;/**/
}

div.content1 .more {
	margin: 0;
	padding: 0;
	display: block;
	text-align: right;
}

/*Content2設定*/
div.content2 {
	width: 100%;
	margin: 0 auto;
}

div.content2 h2 {
	text-align: center;
}

div.content2 .bl {
	display: flex;
	align-items: flex-start;
	gap: var(--margin_s);
	margin: 0 0 var(--margin_m) 0;
}

div.content2 .bl:last-child {
	margin: 0!important;
}

div.content2 .tx {
	width: 50%;
}

.bl_img img {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: 100%;/**/
}

div.content2 .more {
	margin: 0;
	padding: 0;
	display: block;
	text-align: right;
}


/*流れる文字設定*/

div.sample01 {
	margin : 0 auto 40px;
	width : 100%;
	font-size : 28px;
	text-align : center;
	overflow : hidden;
}

div.sample01 p{
	margin:0;
	display : inline-block;
	padding-left: 100%;
	white-space : nowrap;
	line-height : 1em;
	animation : scrollSample01 20s linear infinite;
}

@keyframes scrollSample01{
	0% { transform: translateX(0)}
	100% { transform: translateX(-100%)}
}


/*NEWS設定*/

div.news {
	margin: 0 auto 0 0;
    display: flex;
    justify-content: space-between;
    gap: 3%;
    border-radius: 0 20px 20px 0;
    background: #fff;
    width: 92%;
}

div.news h2 {
	padding: var(--margin_m) 0 var(--margin_m) 5%;
}

div.list {
    margin: 0;
	font-size: var(--fs_xs);
    width: 100%;
	padding: var(--margin_m) 5% var(--margin_m) 0;
}

div.list a:hover {
	background: #f9f8f5;
    display: block;
}

div.list dl {
    border-bottom: 1px solid #e9e9e9;
    margin: 0;
    padding: var(--margin_xs);
}

div.list dl dt {
	margin:0;
	line-height : 1em;
	flex-grow: 1;
    color: #666;
    font-size: var(--fs_xxs);
    margin: 0 0 var(--margin_xs) 0;
}

div.list dl dt span {
    color: #000;
    margin: 0 0 0 1em;
    font-size: var(--fs_xs);
}

div.list dl dd {
    font-size: 105%;
	color:#000;
}


/*CONTACT設定*/
div.contact {
	width: 90%;
	margin: 0 auto;
}

div.form {
	width: 100%;
	letter-spacing: 2px;
}
	
div.form span {
	display: block;
	font-weight: 600;
	margin: 0;
}

div.form input,
div.form textarea {
	width: 450px;
	border: 2px solid #e3e3e3;
	font-weight: 600;
	padding: var(--margin_xs);
}

div.form textarea {
	margin: 1em 0;
}

textarea {
	resize: none;
}

textarea::-webkit-input-placeholder {
	font-weight: normal;
}
textarea:-moz-placeholder {
	font-weight: normal;
}
textarea::-moz-placeholder {
	font-weight: normal;
}
textarea:-ms-input-placeholder {
	font-weight: normal;
}

div.form dl {
	display: flex;
	flex-wrap: wrap;
	letter-spacing: 1px;
	align-items: center;
	border-bottom: 1px solid #e3e3e3;
}
	
div.form dl dt {
	width: 300px;
	padding: 2em 1em 2em 4em;
	text-align: left;
	position: relative;
	letter-spacing: 2px;
	display: flex;
	gap: 10px;
}

/*確認画面での設定*/
.mw_wp_form_confirm dl dt {
	padding: 1em 0;
}

.mw_wp_form_confirm dl dd {
	margin: 0;
	font-weight: bold;
}
/*---------------*/

div.form dl dt::before {
	content: "";
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	position: absolute;
	left: 2em;
	top: calc(2em - 1px);
}

div.form span.req {
	text-align: center;
	font-size: 10pt;
	height: 20px;
	padding: 0 2px;
}

div.form dd span.error {
	font-size:10pt !important;
}

p#submit {
	text-align: center;
	margin: 0 auto;
	width: 80%;
}

/*確認画面へ進むボタン用*/
.btn-confirm{
	display: block;
	background:url(img/input_btn.png) no-repeat center #000;
	background-size: 64%;
	color: #fff;
	margin: var(--margin_s) auto 0;
	width: 260px;
	height:60px;
	text-indent:-9999px;
	overflow:hidden;
	border:none;
	cursor:pointer;
	transition: all .8s;
}

.btn-back {
/*戻るボタン用*/
/*	display: block;*/
	background:url(img/form_back_btn.png) no-repeat center #666;
	margin: 40px auto 0;
	background-size: 46%;
	width: 260px;
	height:60px;
	text-indent:-9999px;
	overflow:hidden;
	border:none;
	cursor:pointer;
	transition: all .8s;
}

.btn-submit {
/*送信ボタン用*/
/*	display: block;*/
	background:url(img/confirm_btn.png) no-repeat center #000;
	margin: 40px auto 0;
	background-size: 46%;
	width: 260px;
	height:60px;
	text-indent:-9999px;
	overflow:hidden;
	border:none;
	cursor:pointer;
	transition: all .8s;
}

.btn-confirm:hover,
.btn-back:hover,
.btn-submit:hover {
transition: all .8s;
	opacity: 0.5;
}

/*  footer設定  */
.footer {
    padding: var(--margin_s) 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
	width:90%;
}

.footer div.other a {
	text-align: center;
	line-height:60px;
	display: block;
	background: #000;
	color: #fff;
	margin: 0 auto var(--margin_xs);
	width: 260px;
	height:60px;
	overflow: hidden;
	position: relative;
	transition-duration: .4s;
	z-index: 2;
	border:none;
	cursor:pointer;
}

/* マウスオーバー 設定 */
/*  バナー部分  */
.footer div.other a::after {
	background: #fff;
	border-radius: 50%;
	content: "";
	display: block;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;/**/
	width: 100%;
	padding-top: 100%;
	height: 0;
	z-index: -1;
	transform: translateY(-50%) scale(0.1);
	transition: opacity .5s, transform 0s;
	transition-delay: 0s, .4s;
}

.footer div.other a:hover {
	color: #000;
}

.footer div.other a:hover::after {
	opacity: 1;
	transform: translateY(-50%) scale(1.1);
	transition-delay: 0s;
	transition: opacity .8s, transform .6s ease-in-out;
}

.com {
	color:#fff;
}

.com ul li {
	margin-bottom: var(--margin_s);
    font-weight: 300;
}

.com ul li:last-child {
	margin-bottom: 0;
}

.com ul li span{
	display: block;
    font-size: var(--fs_h5);
    font-weight: 900;
	line-height: 190%;
}

.menu {
    font-size: var(--fs_s);
    display: flex;
    flex-flow: wrap;
    gap: var(--margin_xs);
    justify-content: right;
	line-height: 150%;
}

.menu dl {
	border-top: 3px solid #ffffff6b;
    width: calc(100% / 3);
    padding: var(--margin_xxs);
}

.menu dl a {
    color:#fff;
}

.menu dl a:hover {
    opacity: 0.7;
}

.menu dl dt {
	color:#fff;
}

.menu dl dd {
	font-weight: 400;
    font-size: 80%;
	margin:0 0 0 var(--margin_xxs);
}

.footer .com img {
	width:300px;
}

/*-----------------------------*/
.copy {
	text-align: center;
	color:#fff;
}

.wrapper.active nav {
	z-index:9997;
}



/*　スマホ
----------------------------------------*/
@media screen and (max-width: 768px) {
	.menu-icon-container,
	#main-wrapper,
	.nmo {
		display: block;
	}

	nav.menu_pc,
	.npc {
		display:none;
	}


	/*  header menu */
	header div#main-wrapper img {
		height: 60px;
		margin: 0 auto;
	}

	header div#main-wrapper nav ul {
		width: 95%;
		margin: var(--margin_l) auto var(--margin_xl);
	}

	header div#main-wrapper nav ul li {
		width: 100%;
		border-bottom: 1px solid #eee;
		text-align: left;
		font-size: var(--fs_h5);
	}

	header div#main-wrapper nav ul li a {
		display:block;
		padding: var(--margin_s) var(--margin_xs);
		color: #000;
	}

	header div#main-wrapper nav ul li:nth-child(1) {
		text-align: center;
	}


	/*Swiper設定*/
	section.lsd {
		width: 97%;
	}

	/*Content1 & Content2 共通設定*/
	div.content1 .tx,
	div.content2 .tx {
		margin: 0 auto;
		width: 90% !important;
	}

	div.content1 .bl_img,
	div.content2 .bl_img {
		width: 100% !important;
	}


	/*Content1設定*/
	div.content1 {
		width: 100% !important;
	}

	div.content1 h2 {
		text-align: center;
	}

	div.content1 .bl {
		flex-direction: column-reverse;
		
	}

	/*Content2設定*/
	div.content2 .bl {
		flex-direction: column;
		
	}

	/*NEWS設定*/
	
	div.news{
		display:block!important;
	    width: 90%;
		margin: 0 auto;
		border-radius: 20px;
	}
	
	div.news h2 {
		padding: var(--margin_s) 0 var(--margin_xxs) 5%!important;
		margin:0!important;
	}
	
	div.list {
		padding:0!important;
	}
	
	div.list dl {
		width: initial!important;
		padding: var(--margin_xxs) 5%!important;
	}

	div.list dl dt,
	div.list dl dd {
		line-height : 1.8em !important;
		margin: var(--margin_xs);
	}

	div.list dl dd.day {
		text-align: right;
	}

	/*CONTACT設定*/
	div.form input,
	div.form textarea {
		width: 100%;
		margin: var(--margin_xs) 0 var(--margin_s);
	}

	div.form dl dt {
		width: 100vw;
		padding: var(--margin_s)  var(--margin_l) 0 0;
		text-align: left;
		position: relative;
		letter-spacing: 2px;
		display: flex;
		gap: 10px;
	}

	/*確認画面での設定*/
	.mw_wp_form_confirm dl dt {
		padding: 1em 0;
	}

	.mw_wp_form_confirm dl dd {
		margin: 0;
		font-weight: bold;
	}
	/*---------------*/

	div.form dl dt::before {
		content: "";
		display: inline-block;
		width: 1.5em;
		height: 1.5em;
		position: absolute;
		left: 2em;
		top: calc(2em - 1px);
	}

	/*確認画面へ進むボタン用*/
	.btn-confirm{
		background-size: 64%;
		width: 200px;
}

	.btn-back {
	/*戻るボタン用*/
		background-size: 46%;
		width: 200px;
	}

	.btn-submit {
	/*送信ボタン用*/
		background-size: 46%;
		width: 200px;
	}

	/*  footer設定  */
	.footer {
		display: block; /*flex
		flex-direction: column;*/
		text-align: center;
		overflow: hidden;
	}

	.footer div.logo img {
		height: 130px;
		margin: 0 auto;
		width: fit-content;
	}
	
	.main_visual_img_wra {
		flex-wrap: wrap;
	    padding: var(--margin_l) 0 0 0;
	}
	
	.main_visual_left {
		width:45%!important;
	}
	
	.main_visual_right {
		width:50%!important;
	}
	
	.main_visual_center {
		display: none;
	}
	
	.main_visual_center img {
		border-radius: 15px 0 0 15px;
	}
	
	#section2 .tx {
		width:90%!important;
	}
	
	#section3 .tx {
		width:90%!important;
	}
	
	.contents{
		position: relative;
		width: max-content!important;
		z-index: 1!important;
		background: #5b412fcf;
	}
	
   .images img {
        height: 100vh !important;
        width: 100vw;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        margin: 0 !important;
        border-radius: 0!important;
    }
	#section3 {
		width: 100%!important;
		margin: 0%!important;
	}
	
	.contents div{
		width:100vw;
	}
	#section3 .wrapper p,#section3 .wrapper h1, #section3 .wrapper h4 ,#section3 .wrapper span {
		padding:0 5%!important;
	}
	#section3 .wrapper h1 {
		font-weight: 800;
		color: #5b412f;
		padding: 0 5%;
		background: #fff;
		width: fit-content;
		margin: 0 0 1em 0;
	}

	.bs_img img {
		width: 100%;
		height: 45vh;
		object-fit: cover;
		margin: var(--margin_l) 0 0 0;
	}
	
	.sp,.spc {
		display:block!important;
	}
	
	.pc{
		display:none!important;
	}
	
	.contents div {
		padding-top: 30vh!important;
	}
	
	.section_wra {
		margin: var(--margin_l) auto!important;
		padding:0;
		overflow: hidden;
	}
	
	.tx p {
		text-align: left;
	}
	
	#section3 {
		margin: var(--margin_xl) 0 !important;
	}
	
	#section3 .more a {
		margin: var(--margin_xs) 5% 0 5%!important;
		width: 90% !important;
	}
	
	.contents div {
		padding-top: 16vh !important;
	}
	
	#section3 .tx {
	    margin: var(--margin_xl) 5%!important;
	}
	
	div.content2 .bl {
		margin: 0 0 var(--margin_xl) 0;!important
	}
	
	.news_sp_link {
	    display: block;
		padding: var(--margin_s) 0 var(--margin_m) 0 !important;
		text-align: center;
		color: #000;
	}
	
	div.list dl dt, div.list dl dd {
		line-height: 1.2em !important;
	}
	
	.section_wra {
		margin: var(--margin_m) auto !important;
	}
	
	#section8 {
		padding: var(--margin_xxl) 0!important;
	}
	
	div.list dl dt span {
		font-size: var(--fs_xxs)!important;
		color: #666!important;
	}

	.page_block_wra{
		display: block!important;
		width: 100%!important;
	}
	
	.page_block_title {
		font-size: var(--fs_h3)!important;
		width: 90%!important;
		margin: 0 auto;
	}
	
	.page_block{
	    width: 90%;
		font-size: var(--fs_xs);
		font-weight: 400;
		margin: 0 auto;
		line-height: 180%;
	} 
	
	.page_block_title span {
		display: contents;
	}
	
	.page_block_title{
		font-size: var(--fs_h2)!important;
		width: 90%!important;
		margin: 0 auto;
		position: static!important;
	}	

	.m_list2{
		display: block!important;
	}
	
	.m_list2 li{
		margin-bottom: var(--margin_m)!important;
	}
	
	.m_list2 li dl dt {
		font-size: var(--fs_h3)!important;
	}
	
	.m_list2 li dl dt span{
		display: contents!important;
	}
	
	.m_list2 li dl {
		padding: var(--margin_s) var(--margin_s) var(--margin_xxs) var(--margin_s)!important;
	}
	
	.m_list2 span.more a {
		font-size: var(--fs_xs);
	}

	.m_list2 .more {
		bottom: var(--margin_s)!important;
		right: var(--margin_m)!important;
		left: auto!important;
		width: fit-content!important;
	}
	
	.footer {
	    padding: var(--margin_l) 5%;
	}
	
	.menu{
	    width: 100%;
		justify-content: space-between!important;
		margin-top: var(--margin_m);
	}
	
	.menu dl {
		width: calc(90% / 2)!important;
		padding: var(--margin_xs) 0 var(--margin_s) var(--margin_xs)!important;
		text-align: left!important;
	}
	
	.swiper-slide img {
		width:100%!important;
		max-width:100%!important;
	}
	
	.tx p {
		margin: var(--margin_s) 0!important;
	}
	
	#index_main #index_main_copy{
		font-size: var(--fs_h2);
	}
		
	
	.swiper-slide a {
		border: 0!important;
	}

}

/*　タブレット
----------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1280px) {
	.menu-icon-container,
	#main-wrapper,
	.npc {
		display: none;
	}

	nav.menu_pc,
	.nmo  {
		display: block;
	}

	div.form dl dt {
		width: 300px;
		padding: 2em 1em;
		text-align: left;
		position: relative;
		letter-spacing: 2px;
		display: flex;
		gap: 10px;
	}

	/* マウスオーバー 設定 */
	/*  リンクリスト  */
	.footer div.menu ul li a {
		text-decoration: none;
		padding-bottom: 5px;
		position: relative;
		display: block;
	}
/*
	.footer div.menu ul li a::before {
		background: #ff701e;
		content: '';
		width: 100%;
		height: 2px;
		position: absolute;
		left: 0;
		bottom: 0;
		margin: auto;
		transform-origin: right top;
		transform: scale(0, 1);
		transition: transform .3s;
	}

	.footer div.menu ul li a:hover::before {
		transform-origin: left top;
		transform: scale(1, 1);
	}
	*/
	.main_visual_img_wra {
		flex-wrap: wrap;
	}
	
	.main_visual_left {
		width:40%!important;
	}
	
	.main_visual_center {
		width:55%!important;
	}
	
	.main_visual_right {
		display: none;
	}
	
	.main_visual_center img {
		border-radius: 15px 0 0 15px;
	}
	
	
	.m_list2{
		display: block!important;
	}
	
	.m_list2 li{
		margin-bottom: var(--margin_m)!important;
	}
	
	.m_list2 li dl dt {
		font-size: var(--fs_h3)!important;
	}
	
	.m_list2 li dl dt span{
		display: contents!important;
	}
	
	.m_list2 li dl {
		padding: var(--margin_s) var(--margin_s) var(--margin_xxs) var(--margin_s)!important;
	}
	
	.m_list2 span.more a {
		font-size: var(--fs_xs);
	}

	.m_list2 .more {
		bottom: var(--margin_s)!important;
		right: var(--margin_m)!important;
		left: auto!important;
		width: fit-content!important;
	}
	
	.swiper-slide {
		width:25vw;
	}
	
}

@media screen and (min-width: 768px) and (max-width: 900px) {
	.images img {
		height: 60vh;
		margin: 20vh 0 0 0;
	}
	
	.contents {
		width: calc(97% - (37.5vh + 0%));
	}
	
	header nav.menu_pc ul {
		font-size: 10pt;
		gap:4%;
	}
	
		
	#section3 .tx,#section2 .tx {
		width: 90%!important;
	}
}


/*　PC
----------------------------------------*/
@media screen and (min-width: 1280px) {
	.menu-icon-container,
	#main-wrapper,
	.nmo {
		display: none;
	}

	nav.menu_pc,
	.npc {
		display: block;
	}


	/* マウスオーバー 設定 */
	/*  リンクリスト  */
	.footer div.menu ul li a {
		text-decoration: none;
		padding-bottom: 5px;
		position: relative;
	}

	.footer div.menu ul li a::before {
		background: #fff;
		content: '';
		width: 100%;
		height: 2px;
		position: absolute;
		left: 0;
		bottom: 0;
		margin: auto;
		transform-origin: right top;
		transform: scale(0, 1);
		transition: transform .3s;
	}

	.footer div.menu ul li a:hover::before {
		transform-origin: left top;
		transform: scale(1, 1);
	}
}

/**index**/

#index_main{
	position: relative;
	width: 100%;
	margin:0 auto;
}

#index_main #index_main_copy{
	font-size: var(--fs_h3);
	/*width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	text-align: center;*/
    font-weight: 800;
    position: absolute;
    left: 5%;
    top: 0;
    z-index: 1000;
}

#index_main .col{
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	bottom: 5%;
	right: 5%;
}

.scroll-down-box{
	display:block;
	position:relative;
	text-decoration:none;
}

.scroll-down-box svg{
	fill:#111;
}

.scroll-down-box.alt svg{
	fill:#fff;
}

.scroll-down-box .scroll-text{
	width:110px;
	height:auto;
	-webkit-animation: rotation 10s infinite linear;
	animation: rotation 10s infinite linear;
}

.scroll-down-box.alt .scroll-text{
	-webkit-animation: none;
	animation: none;
}

.scroll-down-box.alt:hover .scroll-text{
	-webkit-animation: rotation 10s infinite linear;
	animation: rotation 10s infinite linear;
}

.scroll-down-box .scroll-icon{
	width:25px;
	height:auto;
	position:absolute;
	top:50%;
	left:50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	-webkit-transition:all 0.2s ease-in;
	transition:all 0.2s ease-in;
}

.scroll-down-box.alt .scroll-icon{
	width:35px;
}

.scroll-down-box:hover .scroll-icon{
	-webkit-animation: move 1s infinite linear;
	animation: move 1s infinite linear;
}

.scroll-down-box.alt:hover .scroll-icon{
	-webkit-animation: none;
	animation: none;
}

@keyframes rotation {
    from {-webkit-transform: rotate(0deg); transform: rotate(0deg);}
    to {-webkit-transform: rotate(359deg); transform: rotate(359deg);}
}
@-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg); transform: rotate(0deg);}
    to {-webkit-transform: rotate(359deg); transform: rotate(359deg);}
}

@keyframes move {
    0% {-ms-transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
    25% {-ms-transform: translate(-50%,-35%); -webkit-transform: translate(-50%,-35%); transform: translate(-50%,-35%);}
    50% {-ms-transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
    75% {-ms-transform: translate(-50%,-65%); -webkit-transform: translate(-50%,-65%); transform: translate(-50%,-65%);}
    100% {-ms-transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
}
@-webkit-keyframes move {
    0% {-ms-transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
    25% {-ms-transform: translate(-50%,-40%); -webkit-transform: translate(-50%,-40%); transform: translate(-50%,-40%);}
    50% {-ms-transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
    75% {-ms-transform: translate(-50%,-60%); -webkit-transform: translate(-50%,-60%); transform: translate(-50%,-60%);}
    100% {-ms-transform: translate(-50%,-50%); -webkit-transform: translate(-50%,-50%); transform: translate(-50%,-50%);}
}

#index_message {
	position: relative!important;
	overflow: hidden;
}

#index_message_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    text-align: center;
    font-weight: 800;
    width: 100%;
	z-index: -1;
	position: fixed;
}

#index_message .tx {
	width: 40%;
    margin: 0 5% 0 auto;
}

.c-text {
  overflow: hidden;
  display: flex;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.c-text__item {
	flex-shrink: 0;
	white-space: nowrap;
	font-size: var(--fs_h1);
	font-weight: bold;
    letter-spacing: 0.25em;
}

.js-1 .c-text__item {
	color: #c4b29229;
}

.js-2 .c-text__item {
	color: #9e886329;
}

.js-3 .c-text__item {
	color: #6a563429;
}

.js-1 .c-text__item,.js-3 .c-text__item {

  &:nth-child(odd) {
    .c-text:not(.no-tick) & {
      animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
    }
  }

  &:nth-child(even) {
    .c-text:not(.no-tick) & {
      animation: MoveLeft2 var(--tick-duration, 24s) infinite linear;
    }
  }
}

.js-2 .c-text__item {

  &:nth-child(odd) {
    .c-text:not(.no-tick) & {
      animation: MoveRight var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
    }
  }

  &:nth-child(even) {
    .c-text:not(.no-tick) & {
      animation: MoveRight2 var(--tick-duration, 24s) infinite linear;
    }
  }
}


@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}


@keyframes MoveRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes MoveRight2 {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0%);
  }
}

.box_wra {
    width: 100%;
    position: relative;
    overflow: hidden;
	padding:0!important;
}

.box_wra::before {
    content: '';
    position: absolute;
    /*top: 0;*/
    left: var(--box-bg-left, -100%);
    width: 100%;
    height: 100%;
    /* Gradient with 3 colors covering the full element */
    background: linear-gradient(to right, #353535, #515151, #000000);
    transition: left 0.5s ease-out;
}

.box_cont {
    display: flex;
    align-items: center;
    justify-content: center;
	gap: var(--margin_m);
	/*
    position: relative;
    z-index: 2; 
    color: white; 
    padding: 5%; */
}
/*
.b1,.b2 {
	display: flex;
    justify-content: space-between;
    gap: var(--margin_l);
    align-items: start;
}

.b1{
    padding: var(--margin_xl);
}

.b2{
	flex-direction: row-reverse; 
    padding: 0 var(--margin_xl) var(--margin_xl) var(--margin_xl);
}

.b1 .bl_img,.b2 .bl_img{
	width:100%;
}

*/

.bg-color-1 {
    background-color: lightcoral; /* スクロール時に変更する色 */
}

.bg-color-2 {
    background-color: lightgreen; /* スクロール時に変更する色 */
}

#b2 {
	margin: var(--margin_xl) 0 0 0;
}



/*ラッパー要素*/
.wrapper{
	display: flex;
	justify-content: space-between;
	position: relative;
}

/*コンテンツのブロック*/
.contents{width: calc(97% - (37.5vh + 15%));}
.contents div{ padding-top: 50vh; }
.contents div:last-child{ padding-bottom: 50vh; }
/*画像のブロック*/
.images{
	width: 40vw;
	height: 100vh;
	display: flex;
	align-items: center;
	position: sticky;
	position: -webkit-sticky;
	top:0;
	
}

.images p {
	/*height: 400px;*/
	margin: auto;
	display: block;
	visibility: hidden;
	/* 画像が透過pngの時は背景色が必要です */
	/*background: #5b412f;*/
	transition: background 3s ease-in-out; /* 背景色の遅延アニメーション */
	position: absolute;
	top: 0;
	bottom: 0;
	right:0;
	/* フェード速度 */
	transition: .8s;
	opacity: 0;
	filter: saturate(70%);
}

.images img {
	height: 80vh;
    margin: 10vh 0 0 0;
    border-radius: 20px 0 20px 0;
}

.images p:first-child,
.images p.active {
	visibility: visible;
	opacity: 1;
}

.main_visual_wra {
	position:relative;
    z-index: 10;
}

.u-center_wra span {
    writing-mode: vertical-rl;
    font-weight: 700;
    font-size: 10vh;
    color: #efefef;
    line-height: 100%;
    position: absolute;
    top: 0;
    right: 15px;
    z-index: 10;
}

.main_visual_img_wra {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3%;
    margin: 0 auto;
}

.main_visual_img_wra img {
    margin: 0 0 3vw 0;
	overflow:hidden;
	width:100%;
}

.main_visual_left {
	width:28%;
	margin-top: 9vw;
}

.main_visual_left img {
    border-radius: 0 15px 15px 0;
}

.main_visual_center {
	width:33%;
	margin-top: 5vw;
}

.main_visual_center img {
    border-radius: 15px;
}

.main_visual_right {
	width:33%;
}

.main_visual_right img {
    border-radius: 15px 0 0 15px;
}

.u-center {
	/*text-align: center;*/
    text-align: left;
    font-size: 40pt;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
    padding: 0 30px;
	margin: 1em 0 0 0;
	position: relative;
    z-index: 11;
}


#section1,#section2 {
	overflow:hidden;
}

#section1 {
	padding:0!important;
}

#section1 tx {
	width: 50%;
    margin: 0 auto;
    text-align: center;
}

#section2 {
	color:#000;
}

#section2 .tx {
	color:#000;
	margin:0 auto;
	width:50%;
	text-align:center;
}

#section3  {
	color:#fff;
    width: 90%;
    margin: 0 auto;
}

#section3 .tx {
	margin: 0 auto;
    width: 50%;
    text-align: center;
}

#section3 .wrapper h1 {
	font-weight:800;
	color:#000000a3;
}

#section3 h2 {
	margin: 0;
    text-align: center;
}

#section3 h4 {
    margin: 0 0 var(--margin_s) 0;
}

#section3 p {
    line-height:200%;
}
/*
#section3 .more a {
	border: 1px solid #fff;
    color: #fff;
    display: block;
    width: fit-content;
    margin: var(--margin_xs) 0 0 0;
}

#section3 .more a:hover {
	background:#fff;
	color:#666;
}*/

#section3 .more a {
    color: #fff;
}


#section5 {
	width: 90%;
    margin: 0 auto;
}

.sp , .spc {
	display:none;	
}

.swiper-slide img {
    display: block;
	margin*bottom:var(--margin_xxs);
    max-width: calc(100vw / 3);
    aspect-ratio: 5 / 3;
	object-fit:cover;
	width:100%;
}

#section9 h2 {
    text-align:center;
}

#swiper-btn_wra {
    display: flex;
    width: calc(100% - 2em);
    justify-content: space-between;
	margin: 2em 0 0 0;
}

#swiper-btn_wra .more {
	width: 20em;
    max-width: 70%;
}

#swiper-btn_wra .more a {
	margin: 0 !important;
	padding: 0 !important;
}

.swiper-button-next, .swiper-button-prev {
	position:relative;
	background-image: none !important;
}
	
.swiper-button-next:hover, .swiper-button-prev:hover {
	opacity:0.5;
}
	
.swiper-button-next::before{
	content: '';
	width: 0.7em;
	height: 0.7em;
	border: 0;
	border-top: solid 2px #333;
	border-right: solid 2px #333;
	transform: rotate(45deg);
	position: absolute;
	top: 0.8em;
	left: 0;
	margin: auto;
}
	
.swiper-button-prev::before{
	content: '';
	width: 0.7em;
	height: 0.7em;
	border: 0;
	border-bottom: solid 2px #333;
	border-left: solid 2px #333;
	transform: rotate(45deg);
	position: absolute;
	top: 0.8em;
	left: 0;
	margin: auto;
}

.swiper-button-prev{
	left:2em!important;
}

.swiper-button-next{
	left:15px!important;
}

.swiper-slide a {
    color: #000;
    background: #fff;
    display: block;
    border: 2px solid #f7f1e1;
}

.swiper-slide a:hover p {
    color: #bbb;
}

.swiper-slide a:hover img {
    opacity: 0.8;
}

.common_title {
	text-align: center;
    padding: 1em 0;
    margin: 0 1px;
}

.company .page_block_wra img {
	max-width:100%;
}



/*--処遇改善加算--*/

	.syogukaizen {
		margin: 0 auto !important;
	}
	
	.syogukaizen div {
		background: #fff;
		padding: var(--margin_xxs) var(--margin_xs);
	}
	
	.syogukaizen dl {
		font-weight:400;
	}
	
	.syogukaizen dl dt {
		font-weight:700;
		margin: var(--margin_xs) 0 0 0;
	}
	
	.syogukaizen dl dd {
		padding: var(--margin_xxs) var(--margin_xs);
		background: #ffffff61;
		margin: var(--margin_xxs) 0;
	    word-break: break-word;
	}

	.syogukaizen dl dd span {
	    font-weight: 700;
		display: block;
	    margin-bottom: var(--margin_xxs);
	}
	
	.syogukaizen dl dd li {
		position: relative;
		display: inline-block;
		margin-right: 1.5em;
		padding: 0 0 var(--margin_xxs) 1em;
	}
	
	.syogukaizen dl dd li:before {
		content: '';
		width: 0.3em;
		height: 0.3em;
		border: 0;
		border-top: solid 2px #333;
		border-right: solid 2px #333;
		transform: rotate(45deg);
		position: absolute;
		top: 0.5em;
		left: 0;
		margin: auto;
	}
	

/*　スマホ
----------------------------------------*/
@media screen and (max-width: 768px) {
	.syogukaizen dl dt {
		margin: var(--margin_m) 0 0 0!important;
	}
	
	.syogukaizen dl dd {
		padding: var(--margin_s) var(--margin_s);
	}
}


/*--法令遵守--*/

	.compliance {
		margin: 0 auto !important;
	}
	
	.compliance div {
		background: #fff;
		padding: var(--margin_xxs) var(--margin_xs);
	}
	
	.compliance dl {
		font-weight:400;
	}
	
	.compliance dl dt {
		font-weight:700;
		margin: var(--margin_xs) 0 0 0;
	}
	
	.compliance dl dd {
		padding: var(--margin_xxs) var(--margin_xs);
		background: #ffffff61;
		margin: var(--margin_xxs) 0;
	    word-break: break-word;
	}

	.compliance dl dd span {
	    font-weight: 700;
		display: block;
	    margin-bottom: var(--margin_xxs);
		float: left;
	}
	
	

/*　スマホ
----------------------------------------*/
@media screen and (max-width: 768px) {
	.compliance dl dt {
		margin: var(--margin_m) 0 0 0!important;
	}
	
	.compliance dl dd {
		padding: var(--margin_s) var(--margin_s);
	}
}

