@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
@media all and (max-width: 374px) {
	html {
		font-size: calc(1000vw / 375);
	}
}
@media all and (min-width: 897px)and (max-width: 1279px) {
	html {
		font-size: calc(1000vw / 1280);
	}
}
body, table, input, textarea, select, option {
	font-family: "Noto Sans JP", sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
chrome_annotation {
	border: none !important;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
address {
	font-style: normal;
}
a,
a:link {
	color: #000;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: #000;
}
a:hover {
	color: #000;
}
a:active {
	color: #000;
}
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-LMX */
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #000;
	font-size: 2.6rem;
	font-weight: 400;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	text-align: left;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		font-size: 1.4rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	position: fixed;
	left: 0;
	top: 0;
	padding: 2.9rem 4.1rem;
	width: 100%;
	box-sizing: border-box;
	z-index: 99;
}
#gHeader h1 {
	width: 18.1rem;
}
#gHeader h1 a {
	display: block;
	position: relative;
}
#gHeader h1 img {
	transition: all 0.3s;
}
#gHeader h1 .yellow {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: -1;
	opacity: 0;
}
#gHeader h1.change .yellow {
	opacity: 1;
}
#gHeader h1.change .white {
	opacity: 0;
}
#gHeader .sns {
	width: 8.1rem;
	position: absolute;
	right: 3.8rem;
	top: 3rem;
}
#gHeader .sns a:hover {
	opacity: 0.7;
}
.fixLink {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 22.8rem;
}
.fixLink a {
	display: block;
}
.fixLink.ab {
	position: absolute;
	bottom: 5rem;
}
.fixLink a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	#gHeader {
		padding: 1.9rem 2rem;
	}
	#gHeader h1 {
		width: 10.8rem;
	}
	#gHeader .sns {
		width: 4.9rem;
		right: 2rem;
		top: 1.9rem;
	}
	.fixLink {
		width: 13.6rem;
	}
	.fixLink.ab {
		bottom: 4rem;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	position: relative;
	z-index: 100;
}
#gFooter .fBox {
	padding: 2rem 3rem 1.2rem;
	display: flex;
	font-weight: 500;
	font-size: 1.3rem;
	letter-spacing: 0.05em;
	justify-content: space-between;
	background-color: #FCEE21;
	position: relative;
	z-index: 1;
}
#gFooter .pageTop {
	position: absolute;
	left: 50%;
	top: -3.4rem;
	width: 11.2rem;
	transform: translateX(-50%);
}
#gFooter .pageTop a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	#gFooter .fBox {
		padding: 1.5rem 1rem 1.3rem;
		font-size: 0.8rem;
		letter-spacing: 0.03em;
	}
	#gFooter .pageTop {
		top: -3.2rem;
		width: 8rem;
		transform: translateX(-46%);
	}
	#gFooter p {
		font-feature-settings: "palt";
	}
}
/*------------------------------------------------------------
	fadeInUp
------------------------------------------------------------*/
.fadeInUp,
.fadeUp {
	opacity: 0;
	transform: translateY(3rem);
	transition: all 1s;
	visibility: hidden;
}
.fadeInUp.active,
.fadeUp.on {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}
/*------------------------------------------------------------
	index
------------------------------------------------------------*/
.scroll {
	position: fixed;
	left: 3.5rem;
	bottom: 10.7rem;
	width: 1.4rem;
	z-index: 99;
	transition: all 0.3s;
}
.scroll.hide {
	opacity: 0;
	visibility: hidden;
}
.scroll .line {
	position: absolute;
	left: 0.6rem;
	top: calc(100% + 1.3rem);
	width: 1px;
	height: 5.4rem;
}
.scroll .line::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	content: "";
	animation: scroll 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes scroll {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}
#main .fullH {
	height: 100vh;
}
#main .fullH02 {
	height: calc(100vh - 5.2rem);
}
#main .mainVisual {
	height: 300vh;
	margin-bottom: 200px;
	background-color: #FCEE21;
	transition: all 0.5s ease-in-out;
}
#main .mainVisual.active {
	opacity: 0;
	visibility: hidden;
}
#main .mainVisual .maskBox {
	position: sticky;
	top: 0;
	height: 100vh;
	mask-image: url("../img/circle_yellow.png");
	-webkit-mask-image: url("../img/circle_yellow.png");
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: 116rem auto;
	-webkit-mask-size: 116rem auto;
}
#main .mainVisual .imgList {
	margin: 0 auto;
	max-width: 128rem;
}
#main .mainVisual .imgList,
#main .mainVisual .imgList li {
	height: 100%;
	overflow: hidden;
}
#main .mainVisual .imgList .slick-list,
#main .mainVisual .imgList .slick-track,
#main .mainVisual .imgList .slick-slide,
#main .mainVisual .imgList .slick-slide > div {
	height: 100%;
}
#main .mainVisual .imgList li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	max-width: inherit;
}
#main .mainVisual .imgList li.slide01 img {
	object-position: left top;
}
#main .logoTxt {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
}
#main .logoTxt.active {
	opacity: 1;
	visibility: visible;
}
#main .logoTxt .circleY {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 50.8rem;
	transform: translate(-50%,-50%);
}
#main .logoTxt .circleY img {
	width: 100%;
	max-width: inherit;
}
#main .logoTxt .text {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 66.1rem;
	transform: translate(-50%,-43%);
}
#main .imgTxt {
	margin: 0 auto;
	width: 72.8rem;
	position: relative;
	z-index: 5;
}
#main .imgTxt p {
	margin-bottom: 10.5rem;
}
#main .imgTxt p:last-child {
	margin-bottom: 0;
}
#main .imgTxt p span {
	margin-bottom: 3.3rem;
	display: block;
	width: fit-content;
}
#main .imgTxt p span img {
	height: 2.7rem;
	max-width: inherit;
}
#main .imgTxt p span:last-child {
	margin-bottom: 0 !important;
}
#main .jsTxt {
	transition: all 0.5s ease-in-out;
}
#main .jsTxt.active {
	opacity: 0;
	filter: blur(0);
}
#main .news {
	padding: 4rem 0;
	display: flex;
	align-items: center;
}
#main .news > div {
	width: 100%;
}
#main .news h2 {
	width: 43.3rem;
	margin: 0 auto 5.6rem;
}
#main .news .slideList {
	margin-bottom: 3rem;
}
#main .news .slideList .slick-slide > div {
	width: 70.7rem;
	margin: 0 1rem;
}
#main .news .slideList .slide {
	vertical-align: top;
}
#main .news .arrow li {
	margin: 0 1.1rem;
	width: 5.5rem;
	cursor: pointer;
	transition: .3s;
}
#main .company {
	padding: 4rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 13;
}
#main .company h2 {
	width: 47.2rem;
	margin: 0 auto 9.8rem;
}
#main .company ul {
	width: 126rem;
	margin: -9rem auto 0;
}
#main .company li {
	width: 28rem;
	margin: 9rem 6rem 0;
}
#main .company .pho {
	margin-bottom: 0.4rem;
}
#main .company .pho a {
	height: 17rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#main .company .ttl {
	margin-bottom: 2.8rem;
	text-align: center;
	font-size: 1.8rem;
	letter-spacing: 0.15em;
}
#main .company .textImg {
	margin: 0 auto 1.1rem;
	width: 27.3rem;
}
#main .company .text {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.8;
}
#main .company .link {
	width: 27.4rem;
	margin: 2.8rem auto 0;
}
#main .btmBox {
	padding: 4rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#main .btmLogo {
	width: 60.4rem;
	margin: 0 auto;
	position: relative;
	z-index: 14;
}
#main .circleW {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 12;
	height: 100vh;
	width: 100%;
}
#main .circleW img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
}
#main .innerBox {
	position: relative;
	z-index: 13;
	height: calc(200vh + 300px);
}
#main .innerBox .circleY {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow-x: clip;
}
#main .innerBox .circleY img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
}
#main .newsBox {
	margin-top: 0;
	position: sticky;
	top: 0;
	z-index: 1;
}
@media all and (min-width: 897px) {
	#main .news .slide a:hover {
		opacity: 0.7;
	}
	#main .news .arrow li:hover {
		opacity: 0.7;
	}
	#main .company li a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	.scroll {
		left: 1.7rem;
		bottom: 6.2rem;
		width: 0.85rem;
	}
	.scroll .line {
		left: 0.3rem;
		top: calc(100% + 0.9rem);
		height: 3.4rem;
	}
	#main .fullH02 {
		height: calc(100vh - 3.6rem);
	}
	#main .mainVisual .maskBox {
		mask-size: 55.7rem auto;
	}
	#main .mainVisual .imgList li:not(.slide01) img {
		object-position: left 50% top 20%;
	}
	#main .logoTxt .circleY {
		width: 23.9rem;
	}
	#main .logoTxt .text {
		width: 31.1rem;
	}
	#main .imgTxt {
		width: auto;
		margin: 0 4rem;
	}
	#main .imgTxt p {
		margin-bottom: 5.7rem;
	}
	#main .imgTxt p span {
		margin-bottom: 1.8rem;
	}
	#main .imgTxt p span img {
		height: 1.4rem;
	}
	#main .news h2 {
		width: 26.6rem;
		margin: 0 auto 4.8rem;
	}
	#main .news .slideList {
		margin-bottom: 2.1rem;
	}
	#main .news .arrow li {
		margin: 0 1rem;
		width: 4rem;
	}
	#main .news .slideList .slick-slide > div {
		width: 33.5rem;
		margin: 0 0.5rem;
	}
	#main .company h2 {
		width: 29rem;
		margin: 0 auto 3.2rem;
	}
	#main .company ul {
		width: auto;
		margin: -2rem 3rem 0;
		justify-content: space-between;
	}
	#main .company li {
		width: calc(50% - 1rem);
		margin: 2rem 0 0;
	}
	#main .company .pho {
		margin-bottom: -0.6rem;
	}
	#main .company .pho a {
		height: 11rem;
	}
	#main .company .ttl {
		margin-bottom: 2rem;
		font-size: 1.05rem;
	}
	#main .company .textImg {
		margin-bottom: 0.5rem;
		width: 13.7rem;
	}
	#main .company .text {
		font-size: 0.95rem;
		line-height: 1.73;
		letter-spacing: 0.06em;
	}
	#main .company .link {
		width: 13.7rem;
		margin: 1.6rem auto 0;
	}
	#main .btmLogo {
		width: 30.2rem;
	}
}