* { 
	margin: 0; 
	padding: 0; 
	list-style: none; 
	box-sizing: border-box; 
	text-decoration: none; 
	font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	line-height: 1.8; 
	scroll-behavior: smooth;
}

section,
form {
	width: 100%;
	max-width: 1920px;
	padding: 0 15px;
	margin: 0 auto;
}
h2 {
    font-family: "Noto Serif JP", serif;
	text-align: center;
	margin-bottom: 75px;
	position: relative;
	z-index: 1;
	width: 100%;
}
h2:before {
	font-family: "Noto Sans JP", serif;
	position: absolute;
	bottom: -10px;
	width: 100%;
	display: flex;
	justify-content: center;
	font-style: italic;
    font-size: 78px;
	color: rgba(227, 244, 255, 0.63);
	z-index: -1;
}
h2:after {
	content: "";
	display: block;
	height: 5px;
	width: 120px;
	margin: 0 auto;
	background: linear-gradient(
		135deg,
		#202f54 calc(100% / 3),
		#43a9d8 calc(100% / 3) calc(200% / 3),
		#00d4ff calc(200% / 3)
	);
	clip-path: polygon(5px 0%, 100% 0%, 115px 100%, 0% 100%);
	margin-top: 30px;
	transition: all 0.3s ease;
}
h2:hover:after {
	height: 5px;
	width: 145px;
	clip-path: polygon(5px 0%, 100% 0%, 140px 100%, 0% 100%);
}
.page main dl h2 {
	font-family: "Noto Sans JP", serif;
    font-size: 18px;
    margin-bottom: 0;
	text-align: left;
}
.page main dl h2:before,
.page main dl h2:after {
	display: none;	
}

@media screen and (max-width: 768px) {
	h2 { 
		font-size: 20px;
	}
	h2:before {
		font-size: 45px;
		bottom: 15px;
	}
}

@media screen and (max-width: 375px) {
	h2 { 
		font-size: 16px;
	}
    h2:before {
		font-size: 34px;
		bottom: 21px;
    }
	h2:after {
		width: 80px;
		clip-path: polygon(5px 0%, 100% 0%, 75px 100%, 0% 100%);
	}
}

h4 {
	margin-bottom: 40px;
}

img {
	max-width: 100%;
}
a {
	color: #43a9d8;
	text-decoration: underline;
	text-underline-offset: 5px;
}
a.tel {
	text-decoration: none;
	pointer-events: none;
}
a.tel:before {
	content: "\f095";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 0.15em;
}

@media screen and (max-width: 425px) {
	a.tel {
		pointer-events: auto;
	}
}

a.more {
	position: relative;
	overflow: hidden;
	color: #43a9d8;
}
a.more:hover {
	color: #fff;
	box-shadow: 0 18px 10px -10px rgba(0, 0, 0, 0.34);
}
a.more:after {
	content: "";
	background: #43a9d8;
	width: 100%;
    height: 100%;
    position: absolute;
	z-index: -1;
	transform: skewX(-10deg) translateX(120%) scaleX(1.2);
	transition: transform .38s cubic-bezier(0.56,0.46,0.12,1.4);
}
a.more:hover:after {
	transform: skewX(-10deg) translateX(0%) scaleX(1.2);
}

label input[type="checkbox"] {
	display: none;
}
label input[type="checkbox"] + span {
	display: flex; 
	align-items: center;
	margin-bottom: 5px;
	position: relative;
}
label input[type="checkbox"] + span::before {
	display: inline-block;
	content: "";
    margin-right: 3px;
    border: 2px solid rgba(170, 170, 170, 0.68);
    border-radius: 2px;
    width: 18px;
    height: 18px;
	background: rgba(170, 170, 170, 0.32);
	margin-top: 2.5px;
}
label input[type="checkbox"]:checked + span::before {
	background-color: #344b91;
}
label input[type="checkbox"]:checked + span::after {
	display: block;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f00c";
	color: #fff;
	position: absolute;
	top: 50%;
	left: 3.5px;
	transform: translateY(-50%);
	margin-top: 3px;
	font-size: 18px;
}

.page main dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border: 1px solid #aaaaaa;
	border-bottom: none;
	margin-bottom: 50px;
}
.page main dt, 
.page main dd {
	border-bottom: 1px solid #aaaaaa;	
}
.page main dt {
	width: 300px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #efefef;
	border-right: 1px solid #aaaaaa;
	font-size: 18px;
	padding: 14px;
}
.page main dd {
	width: calc(100% - 300px);
	padding: 1em;
}
.page main dd ul {
	margin: 15px 0;
}
.page main dd ul li {
	display: flex;
	align-items: baseline;
}
.page main dd ul li:before {
	content: "";
	background: #000;
	width: 8px;
	height: 8px;
	margin: 3px 10px 0 0;
	border: 3px solid #ccc;
	border-radius: 50%;
	flex-shrink: 0;
	position: relative;
	top: 2px;
}
.page main dd a {
	text-decoration: underline;
}
.page main dd a.tel {
	color: #000;
	text-decoration: none;
}
.page main dd a.tel:before {
	display: none;
}
.page main dd a.mail {
	color: #000;
}
.page main p {
	margin-bottom: 50px;
}
.page main p.error_messe {
	margin-bottom: 0px;
}
.page main ul {
	margin-bottom: 50px;
}
.page main ul li {
	list-style: disc;
	margin-inline: 2em;
}

@media screen and (max-width: 768px) {
	.page main dl,
	.page main p,
	.page main h3,
	.page main ul {
		max-width: 550px;
		margin-inline: auto;
	}
	.page main dt {
		width: 100%;
		border-right: none;
		padding: 0.5em 1em;
	}
	.page main dd {
		width: 100%;
	}
}

@media screen and (max-width: 425px) {
	.page main dt,
	.page main dl h2,
	.page main h3 {
		font-size: 16px;
	}
	.page main dt {
		justify-content: flex-start;
	}
	.page main p,
	.page main dd,
	.page main ul li {
		font-size: 14px;
	}
}

.page main p + ul {
	margin-top: -25px;
}

.page#privacy main dl dt {
	width: 100%;
	padding: 0.5em 1em;
	border-right: none;
}
.page#privacy main dl dd {
	width: 100%;
}

header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
	border-bottom: 2px solid #fff;
	z-index: 100;
}
header:hover {
	background: #fff;
}
header section { 
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
header .logo {
	margin: 0 auto 0 0;
	line-height: 0;
}
header .logo a {
	display: flex;
	align-items: center;
}
header .logo img {
	width: 175px;
}
@media screen and (max-width: 425px) {
	header .logo img {
		width: auto;
		height: 35px;
	}
}
header menu ul {
	display: flex;
	padding: 15px 0;
}
header menu ul li a {
	color: #273349;
	text-decoration: none;
    font-size: 14px;
	letter-spacing: .03em;
	padding: 0 15px;
	height: 45px;
	border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
	position: relative;
	overflow: hidden;
}
header menu ul li a span.eng {
	display: none;
	position: absolute;
	font-size: 12px;
	white-space: nowrap;
	left: 50%;
	transform: translateX(-50%);
	height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}
header menu ul li a span br {
	display: none;
}
header menu ul li a:hover span {
	color: transparent;
}
header menu ul li a:hover span.eng {
	display: flex;
	color: #273349;
}
header menu ul li a:hover span.eng:before {
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	background: #fff;
	position: absolute;
	animation: header-menu 0.2s ease-in forwards;
}
@keyframes header-menu{ 
	0% {
		left: 0%;
	} 
	100% {
		left: -101%;
	}
}

header .tel {
	color: #273349;
	padding: 0 15px 3px;
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-style: italic;
}

@media screen and (max-width: 1440px) {
	header menu ul li a { 
		font-size: 12px;
		padding-inline: 10px;
	}
	header .logo {
		flex-shrink: 0;
	}
	header .tel { 
		font-size: 20px;
		padding-inline: 10px;
		flex-shrink: 0;
	}
}

@media screen and (max-width: 1024px) {
	header {
		border-bottom: none;
	}
	header section {
		position: absolute;
		height: 75px;
		border-bottom: 2px solid #fff;
		z-index: 1000000;
		width: calc(100% - 75px);
		padding-right: 0;
	}
	header menu ul li {
		width: calc(100% / 6);
	}
	header menu ul li a span br {
		display: block;
	}
	header .tel {
		padding: 0 0px 0px 0;
	}
}

@media screen and (max-width: 768px) {
	header .tel { font-size: 18px;}
}

@media screen and (max-width: 425px) {
	header section {
		height: 50px;
		border-bottom: none;
        background: #fff;
        position: relative;
		width: 100%;
		padding-right: 15px;
	}
	header section:before {
		content: "";
		display: block;
		width: 100vw;
		height: 2px;
		position: absolute;
		top: 0;
		left: 0;
		background: linear-gradient(135deg, #202f54 0%, #00d4ff 100%);
	}
	header .logo {
        position: relative;
		left: 50%;
        transform: translateX(-50%);
	}
	header .tel {
		display: none;
	}
}

main section {
	padding: 150px 15px 75px;
	margin-top: -75px;
	overflow: hidden;
}

@media screen and (max-width: 1024px) {
	main section {
		padding-top: 260px;
		margin-top: -185px;
	}
}

@media screen and (max-width: 768px) {
	main section {
		padding-top: 370px;
		margin-top: -295px;
	}
}
@media screen and (max-width: 425px) {
    main section {
        padding-top: 150px;
        margin-top: -100px;
    }
}

.page main section,
#contact main form { 
	max-width: 1200px;
	padding: 0px 15px 150px;
	margin-top: 0;
}

#contact main .last-check form {
	padding: 0;
}

main #mv {
	height: 100vh;
	position: relative;
    max-width: 100%;
    padding: 0;
	margin-top: 0;
	margin-bottom: 100px;
}

@media screen and (max-width: 425px) {
	main #mv {
		height: calc(100vh - 50px);
	}
}

.page main #mv {
	margin-top: 180px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.page main #mv h1 {
	font-family: "Noto Serif JP", serif;
	font-size: 42px;
	margin-top: 10px;
}
.page main #mv h1 span {
	font-family: "Noto Sans JP", serif;
	color: #ebf0f5;
	font-size: 92px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	width: 100%;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.page main #mv {
		margin-top: 125px;
	    height: 150px;
		margin-bottom: 50px;
	}
	.page main #mv h1 {
		font-size: 34px;
		margin-top: -2em;
	}
	.page main #mv h1 span {
		font-size: 50px;
		margin-top: 0.5em;
	}
}

@media screen and (max-width: 425px) {
	.page main #mv h1 {
		font-size: 28px;
	}
	.page main #mv h1 span {
		font-size: 45px;
	}
}

@media screen and (max-width: 375px) {
	.page main #mv h1 {
        font-size: 24px;
    }
	.page main #mv h1 span {
        font-size: 38px;
    }
}

main #mv > img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.8;
	width: 300px;
	z-index: 2;
}
main #mv span.mv-logo {
	position: absolute;
    left: 50%;
    top: calc(50% + 150px + 50px);
    transform: translate(-50%, -50%);
	color: #fff;	
	width: 100%;
	text-align: center;
	z-index: 2;
}
main #mv .scroll {
	position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
	color: #fff;
	font-size: 14px;
	z-index: 2;
}
main #mv .scroll:before {
	content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    animation: circlemove 2.6s ease-in-out infinite, cirlemovehide 2.6s ease-out infinite;
}
@keyframes circlemove { 
	0% {
		bottom: -30px;
	} 
	100% {
		bottom: -110px;
	}
}
@keyframes cirlemovehide {
	0% {
		opacity: 0;
	} 
	50% {
		opacity: 1;
	} 
	80% {
		opacity: 0.9;
	} 
	100% {
		opacity: 0;
	}
}
main #mv .scroll:after {
	content: "";
    position: absolute;
    bottom: -115px;
    left: 50%;
    width: 3px;
    height: 100px;
    background: #fff;
    transform: translateX(-50%);
}

@media screen and (max-width:1440px) {
	main #mv > img {
		width: 240px;
	}
	main #mv span.mv-logo {
		top: calc(50% + 120px + 40px);
	}
	main #mv .scroll {
    	bottom: 120px;
	}
	@keyframes circlemove {
		0% {
			bottom: -25px;
		} 
		100% {
			bottom: -85px;
		}
	}
	main #mv .scroll:after {
		bottom: -90px;
		height: 80px;
	}
}

@media screen and (max-height: 768px) {
	main #mv > img { 
		height: 40vh;
        width: auto;
        max-height: 240px;
		top: 47.5%;
	}
	main #mv span.mv-logo {
        top: calc(50% + 20vh + 5px);
		font-size: 12px;
    }
	main #mv .scroll {
        bottom: 11vh;
		font-size: 12px;
		left: 50.4%;
    }
	main #mv .scroll:before {
	    width: 2vh;
	    height: 2vh;
	    max-width: 12px;
	    max-height: 12px;
	}
	main #mv .scroll:after {
        bottom: -9.5vh;
        height: 9.5vh;
		width: 0.5vh;
		max-width: 3px;
    }
	@keyframes circlemove {
		0% {
			bottom: -2.5vh;
		} 
		100% {
			bottom: -8vh;
		}
	}
}

main #news h2:before {
	content: "NEWS"
}

main #about-us h2:before {
	content: "ABOUT US"
}
main #about-us > p {
	text-align: center;
	margin-bottom: 75px;
	padding-inline: 15px;
}
main #about-us div {
	display: flex;
	background: #f4fbff;
}
main #about-us .listing {
	flex-direction: row-reverse;
	background: #314c84;
}
main #about-us div dl {
	width: 50%;
    color: #666666;
	line-height: 1.8;
	padding: 85px;
}

main #about-us .listing dl {
	color: #fff;
}
main #about-us div dl dt h3 {
    font-size: 36px;
	line-height: 1.4;
 	font-style: italic;
	margin-bottom: 60px;
	opacity: 0;
}
main #about-us div.is-active dl dt h3 {
	opacity: 1;
	animation: about-us-h3 1s ease forwards;
}
@keyframes about-us-h3 { 
	0% { 
		transform: translateY(-2em);
	} 
	100% { 
		transform: translateY(0em);
	}
}

main #about-us .listing.is-active dl dt h3 {
	animation: about-us-h3-listing 1s ease forwards;
	width: fit-content;
}
@keyframes about-us-h3-listing {
	0% { 
		transform: scale(0, 0);
	}
	100% { 
		transform: scale(1, 1);
	}
}

main #about-us div dl dd p {
	margin-bottom: 75px;
	opacity: 0;
}
main #about-us div dl dd p.is-active {
	animation: about-us-p .5s ease forwards;
	animation-delay: 0.5s;
}
@keyframes about-us-p { 
	0% { 
		opacity: 0;
		transform: translateY(1em);
	} 
	100% { 
		opacity: 1; 
		transform: translateY(0em);
	}
}

main #about-us div dl dd a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	font-size: 20px;
	border: 2px solid #43a9d8;
	padding: 30px 0px;
	line-height: 1;
	letter-spacing: 2px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	opacity: 0;
}
main #about-us div dl dd a.is-active {
	animation: about-us-a 0.5s ease forwards;
}
@keyframes about-us-a { 
	0% { 
		opacity: 0;
	} 
	100% { 
		opacity: 1;
	}
}

main #about-us .listing dl dd a {
	color: #fff;
	border-color: #fff; 
}

main #about-us div dl dd a:before {
	content: "→";
	font-size: 36px;
	font-weight: 100;
	margin: -5px 10px 0 0;
}
main #about-us .listing dl dd a.more:hover {
	color: #314c84;
}
main #about-us .listing dl dd a.more:after {
	background: #fff;
}
main #about-us div img {
	width: 50%;
	object-fit: cover;
	opacity: 0;
	min-height: 700px;
}
main #about-us div img.is-active {
	animation: about-us-img 1s ease forwards;
	animation-delay: 0.5s;
}
@keyframes about-us-img { 
	0% { 
		transform: scale(0.9); 
		opacity: 0;
	} 
	100% { 
		transform: scale(1); 
		opacity: 1;
	}
}

@media screen and (max-width:1920px) {
	main #about-us { 
		padding-inline: 0;
	}
}

@media screen and (max-width: 1440px) {
	main #about-us div dl dt h3 {
		font-size: 24px;
	}
	main #about-us div dl dd p {
		font-size: 14px;
	}
	main #about-us div img {
		min-height: 500px;
	}
}

@media screen and (max-width: 1024px) {
	main #about-us div {
   		overflow: hidden;		
	}
	main #about-us div dl {
		padding: 45px;
	}
	main #about-us div dl dt h3 {
		font-size: 20px;
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 768px) {
	main #about-us > p {
		font-size: 14px;
	}
	main #about-us div {
		flex-wrap: wrap;
		height: auto;
	}
	main #about-us div dl,
	main #about-us div img {
		width: 100%;
	}
	main #about-us div img {
		min-height: 350px;
		height: 350px;
	}
	main #about-us div dl dd p {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 375px) {
	main #about-us div dl {
		padding: 35px;
	}
	main #about-us div dl dt h3 {
        font-size: 16px;
		margin-bottom: 20px;
	}
	main #about-us div dl dd p {
        font-size: 12px;
    }
}

main #service {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	padding-bottom: 125px;
}
main #service h2:before {
	content: "SERVICE"
}
main #service dl {
	width: calc((100% - 40px) / 3);
	max-width: 370px;
	overflow: hidden;
	box-shadow: 0px 6px 10px #9c9c9c;
}
main #service dl dt {
	height: 260px;
	position: relative;
}
main #service dl.e-commerce dt { 
	background: #a4c13d;
}
main #service dl.sales dt { 
	background: #ffc359;
}
main #service dl.creative dt { 
	background: #3cb1e9;
}
main #service dl dt:before {
	color: #fff;
	font-size: 70px;
	font-weight: bold;
	position: absolute;
	right: -12px;
	top: -28px;
	text-shadow: 0 0 20px #020202;
	z-index: 1;
}
main #service dl.e-commerce dt:before {
	content: "EC";
	font-size: 88px;
	top: -45px;
}
main #service dl.sales dt:before { 
	content: "小売";
}
main #service dl.creative dt:before { 
	content: "制作";
}
main #service dl dt:after {
	color: #fff;
	font-size: 14px;
	line-height: 26px;
	font-weight: bold;
	position: absolute;
	left: 0px;
	bottom: -18px;	
    padding: 5px 10px;
}
main #service dl.e-commerce dt:after {
	content: "E-COMMERCE";
	background: #18a90a;
}
main #service dl.sales dt:after { 
	content: "SALES";
	background: #ff9324;
}
main #service dl.creative dt:after { 
	content: "CREATIVE";
	background: #004eff;
}
main #service dl dt img {
	width: 300px;
	height: 200px;
	object-fit: cover;
	position: absolute;
	bottom: 30px;
	left: 0;
	transform: rotate(-10deg);
	box-shadow: 0 6px 24px -16px #000;
	filter: grayscale(.6);
	transition: all .3s ease;
	cursor: auto;
}
main #service dl dt:hover img {
	transform: scale(1.1, 1.1);
	filter: blur(0px);
}
main #service dl dd {
	padding: 30px 15px !important;
    min-height: 140px;
	font-size: 14px;
	line-height: 1.8;
}
main #service dl dd a {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	color: #2196F3;
	border: 1px solid #2196F3;
	width: 200px;
	margin: 15px auto;
	padding: 0 5px 0 25px;
}
main #service dl dd a:before {
	content: "→";
	font-size: 16px;
	font-weight: 100;
}
main #service dl dd a:hover {
	color: #fff;
}
main #service dl dd a:after {
	background: #2196F3;
}

@media screen and (max-width: 1440px) {
	main #service dl {
		max-width: 310px;
	}
}

@media screen and (max-width: 1024px) {
	main #service dl dt {
		height: 210px;
	}
	main #service dl dt:before {
		font-size: 56px;
	}
	main #service dl.e-commerce dt:before {
		font-size: 74px;
		top: -50px;
	}
	main #service dl dt img {
		width: 240px;
		height: 160px;
	}
	main #service dl dd {
		font-size: 12px;
	}
}

@media screen and (max-width: 768px) {
	main #service dl {
    	width: 100%;
	}
}

main #achievements {
	padding: 75px 0 0 0;
	margin: -75px auto 0;
}

@media screen and (max-width: 1024px) {
	main #achievements {
		padding: 185px 0 0 0;
		margin: -185px auto 0;
	}
}

@media screen and (max-width: 768px) {
	main #achievements {
		padding: 295px 0 0 0;
		margin: -295px auto 0;
	}
}

@media screen and (max-width: 425px) {
	main #achievements {
		padding: 50px 0 0 0;
		margin: -50px auto 0;
	}
}

main #achievements .container {
	background: linear-gradient(rgba(0,33,142,0.46), rgba(0,33,142,0.46)), url("../images/top_achievements-bg.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #fff;
	padding: 125px 15px 85px;
    margin-top: 0px;
}
main #achievements .container h2 {
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	margin-bottom: 100px;
}
main #achievements .container h2:before {
	content: "ACHIEVEMENTS";
	opacity: 0.65;
}
main #achievements .container p {
	width: 100%;
	text-align: center;
	font-size: 14px;
	margin-bottom: 100px;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}


@media screen and (max-width: 425px) {
	main #achievements .container h2 { 
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 375px) {
	main #achievements .container p {
		font-size: 12px;
	}
}

main #achievements .container .graph-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	gap: 15px 20px;
}
main #achievements .container .graph-wrap > div {
	position: relative;
}
main #achievements .container .graph-wrap .item-number .item-box {
	position: relative;
	height: 200px;
	width: 200px;
	overflow: hidden;
}
main #achievements .container .graph-wrap .item-number .item-box .box {
	width: 200px;
}
main #achievements .container .graph-wrap .item-number .item-box .box.treasure01 {
	background: url("../images/top_achievements-01.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	height: 44px;	
}
main #achievements.is-active .container .graph-wrap .item-number .item-box .box.treasure01 {
	animation: anime-item-number1 5s forwards 1;
}
@keyframes anime-item-number1 {
  0%, 20% {
    bottom: -255px;
  }
  100% {
    bottom: 32%;
  }
}
main #achievements .container .graph-wrap .item-number .item-box .box.treasure02 {
	background: url("../images/top_achievements-02.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	height: 54px;
}
main #achievements.is-active .container .graph-wrap .item-number .item-box .box.treasure02 {
	animation: anime-item-number2 5s forwards 1;
}
@keyframes anime-item-number2 {
  0%, 20% {
    bottom: -211px;
  }
  100% {
    bottom: 22%;
  }
}
main #achievements .container .graph-wrap .item-number .item-box .box.treasure03 {
	background: url("../images/top_achievements-03.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	height: 49px;
}
main #achievements.is-active .container .graph-wrap .item-number .item-box .box.treasure03 {
	animation: anime-item-number3 5s forwards 1;
}
@keyframes anime-item-number3 {
  0%, 20% {
    bottom: -152px;
  }
  100% {
    bottom: 13%;
  }
}
main #achievements .container .graph-wrap .item-number .item-box .box.treasure04 {
	background: url("../images/top_achievements-04.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	height: 49px;
}
main #achievements.is-active .container .graph-wrap .item-number .item-box .box.treasure04 {
	animation: anime-item-number4 5s forwards 1;
}
@keyframes anime-item-number4 {
  0%, 20% {
    bottom: -103px;
  }
  100% {
    bottom: 8%;
  }
}
main #achievements .container .graph-wrap .item-number .item-box .box.treasure05 {
	background: url("../images/top_achievements-05.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	height: 59px;
}
main #achievements.is-active .container .graph-wrap .item-number .item-box .box.treasure05 {
	animation: anime-item-number5 5s forwards 1;
}
@keyframes anime-item-number5 {
  0%, 20% {
    bottom: -49px;
  }
  100% {
    bottom: 0;
  }
}

main #achievements .container .graph-wrap .trade-record .bar-graph {
	position: relative;
	height: 200px;
	width: 200px;
	overflow: hidden;
}

main #achievements .container .graph-wrap .trade-record .bar-graph .graph {
	width: calc(100% / 3);
    bottom: 0;
    flex-direction: column-reverse;
	margin: auto;
	position: absolute;
}

main #achievements.is-active .container .graph-wrap .trade-record .bar-graph .graph {
	animation: anime-trade-record 5s forwards 1;
}
@keyframes anime-trade-record {
  0%, 20% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

main #achievements .container .graph-wrap .trade-record .bar-graph .graph.bar01 {
	left: 0%;
    height: 20%;
    top: auto;
	background: #947416;
}
main #achievements .container .graph-wrap .trade-record .bar-graph .graph.bar02 {
	left: 0;
    right: 0;
    top: auto;
    height: 50%;
	background: #bf961d;
}
main #achievements .container .graph-wrap .trade-record .bar-graph .graph.bar03 {
	right: 0%;
    left: auto;
    height: 100%;
	background: #e6b422;
}

main #achievements .container .graph-wrap .satisfaction .circle {
	transform:rotate(-180deg);
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
}
main #achievements .container .graph-wrap .satisfaction .circle circle {
	fill: none;
	stroke-width: 32px;
	stroke: #e6b422;
	stroke-dashoffset: 0;
}
main #achievements.is-active .container .graph-wrap .satisfaction .circle circle {
	stroke-dasharray: 93,100;
	animation: anime-satisfaction 10s 0s forwards ease-in-out;
}
@keyframes anime-satisfaction {
	0% { 
		stroke-dasharray: 0,100;
	}
	50%, 100% { 
		stroke-dasharray: 93,100;
	}
}	
@property --count {
	syntax: "<integer>";
	inherits: false;
	initial-value: 0;
}

main #achievements .container .graph-wrap div .counter {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
main #achievements .container .graph-wrap div .counter:after {
	color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 20px white;
    width: 100%;
	text-align: center;
	display: block;
    margin-left: -7px;
	white-space: nowrap;
}
main #achievements .container .graph-wrap .item-number .counter:after {
	content: "アイテム数"
}
main #achievements .container .graph-wrap .trade-record .counter:after {
	content: "販売実績"
}
main #achievements .container .graph-wrap .satisfaction .counter:after {
	content: "顧客満足度"
}
main #achievements .container .graph-wrap div .counter .countUp {
	font-variant-numeric: tabular-nums;
	color: #000;
	font-weight: 900;
	font-size: 75px;
	text-shadow: 0 0 20px white;
	line-height: 1;
	display: flex;
	justify-content: center;
    align-items: baseline;
}
main #achievements.is-active .container .graph-wrap .item-number .counter .countUp::before {
	animation: countUp1 5s 1;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.2, 0.1, 0.2, 1);
	counter-set: countUp1 var(--count);
	content: counter(countUp1);
}
@keyframes countUp1 {
	100% {--count: 30000;}
}

main #achievements.is-active .container .graph-wrap .trade-record .counter .countUp::before {
	animation: countUp2 5s 1;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.2, 0.1, 0.2, 1);
	counter-set: countUp2 var(--count);
	content: counter(countUp2);
}
@keyframes countUp2 {
	100% {--count: 100;}
}

main #achievements.is-active .container .graph-wrap .satisfaction .counter .countUp::before {
	animation: countUp3 5s 1;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.2, 0.1, 0.2, 1);
	counter-set: countUp3 var(--count);
	content: counter(countUp3);
}
@keyframes countUp3 {
	100% {--count: 93;}
}

main #achievements .container .graph-wrap div .counter .countUp::after {
	font-size: 24px;
	padding-left: 6px;
	flex-shrink: 0;
}

main #achievements .container .graph-wrap .item-number .counter .countUp::after {
	content: "点以上";
}

main #achievements .container .graph-wrap .trade-record .counter .countUp::after {
	content: "万件突破";
}

main #achievements .container .graph-wrap .satisfaction .counter .countUp::after {
	content: "%";
}

main #manufacturers { 
	position: relative;
	max-width: 900px;
	padding: 200px 15px 125px;
	margin: -75px auto 30px;
}

@media screen and (max-width: 1024px) {
	main #manufacturers {
		padding: 310px 15px 125px;
		margin: -185px auto 30px;
	}
	
	main #achievements .container .graph-wrap div .counter .countUp {
		font-size: 58px;
	}
}

@media screen and (max-width: 768px) {
    main #manufacturers {
        padding: 420px 15px 125px;
        margin: -295px auto 30px;
    }
}

@media screen and (max-width: 425px) {
    main #manufacturers {
        padding-top: 135px;
        margin-top: 0px;
    }
}

main #manufacturers:before {
    content: "";
    display: block;
	position: absolute;
    background: rgba(167, 202, 255, 0.9);
    border-radius: 50% 50% 50% 70% / 50% 50% 70% 60%;
    animation: border-animation 20s infinite linear;
    z-index: -1;
    width: 73%;
    height: 75%;
    top: 18%;
    left: 14%;
}
main #manufacturers:after {
    content: "";
    display: block;
    position: absolute;
	background: rgba(208, 255, 124, 0.7);
    border-radius: 80% 30% 50% 50%/50%;
    animation: border-animation 17s infinite linear;
    z-index: -2;
    width: 73%;
    height: 75%;
    top: 18%;
    left: 14%;
}

main #manufacturers h2:before {
	content: "MANUFACTURERS";
}
main #manufacturers .banners {
	background: rgba(255, 255, 255, 0.36);
    padding: 20px;
    max-width: 900px;
    margin: auto;
}
main #manufacturers .banners:before {
	content: "";
    display: block;
    position: absolute;
	background: rgba(255, 224, 122, 0.7);
    border-radius: 40% 40% 50% 40% / 30% 50% 50% 50%;
    animation: border-animation 14s infinite linear;
    z-index: -3;
    width: 73%;
    height: 75%;
    top: 18%;
    left: 14%;
}
@keyframes border-animation {
    to {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 1024px) {
	main #manufacturers:before,
	main #manufacturers:after,
	main #manufacturers .banners:before {
		height: 65%;
    	top: 32%;
	}
}

main #manufacturers .banners > div {
	justify-content: center;
}
main #manufacturers .banners .large {
	display: grid;
	grid-template-columns: 350px 350px;
	grid-template-rows: auto auto;
	gap: 20px;
}
main #manufacturers .banners .small {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 820px;
    margin: auto;
}
main #manufacturers .banners .large img {
	margin: auto;
	max-width: 100%;
}
main #manufacturers .banners .small img {
	margin: 0;
	max-width: 150px;
}

@media screen and (max-width: 768px) {
	main #manufacturers .banners .large {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 20px;
	}
	main #manufacturers .banners .large img {
		min-height: 185px;
	    object-fit: scale-down;
	}
}
footer {
	position: relative;
	background: linear-gradient(rgba(16, 16, 16, 0.9), rgba(16, 16, 16, 0.9)), url("../images/footer_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-attachment: fixed;
	color: #fff;
	font-size: 14px;
	padding: 160px 0 0;
}
footer a {
	color: #fff;
}
footer:before {
    content: "";
    background: #202f54;
    color: #fff;
    transform: skewY(-1.4deg) translateY(-1.4vw);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    z-index: 0;
}
footer section .inner-box {
	width: 90%;
	margin: auto;
}
footer section.corp-info .inner-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 3.5%;
	margin-bottom: 50px;
}
footer h2 {
	font-size: 17px;
	font-style: italic;
}
footer h2:after {
	background: linear-gradient(135deg, #bbb calc(100% / 3), #eee calc(100% / 3) calc(200% / 3), #bbb calc(200% / 3));
}
footer .corp-info .inner-box > div {
	width: calc((100% - 7%) / 3);
}
footer .corp-info .inner-box .service-list ul li {
	font-size: 16px;
	line-height: 2;
}
footer .corp-info .inner-box .service-list ul li:before {
	content: "≫";
	font-weight: 900;
}
footer .corp-info .inner-box .service-list ul li ul {
	margin-bottom: 1em;
}
footer .corp-info .inner-box .service-list ul li ul li {
	display: flex;
	align-items: center;
	font-size: 14px;
	line-height: 1.8;
}
footer .corp-info .inner-box .service-list ul li ul li:before {
	content: "▶";
	font-size: 10px;
	margin: 0 5px;
}
footer .corp-info .inner-box .company div {
	background: #202f54;
	color: #fff;
}
footer .corp-info .inner-box .company div img {
	height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}
footer .corp-info .inner-box .company div dl dt {
	font-size: 18px;
	position: relative;
	padding: 85px 0 25px;
    text-align: center;
    font-weight: bold;
}
footer .corp-info .inner-box .company div dl dt:before {
	content: "";
	position: absolute;
	top: -85px;
	left: 50%;
	width: 130px;
	height: 130px;
	background: url( "../images/iholdings_icon.png");
	background-color: #fff;
	background-size: 75%;
	background-position: center center;
	background-repeat: no-repeat;
	transform: translateX(-50%);
	border: 12px solid #202f54;
	border-radius: 50%;
}
footer .corp-info .inner-box .company div dl dd {
	font-size: 12px;
	padding: 0 15px 40px;
	text-align: center;
}
footer .corp-info .inner-box .company div dl dd span {
	text-decoration: none;
	display: flex;
	align-items: center;
	width: fit-content;
    margin: auto;
}
footer .corp-info .inner-box .company div dl dd span:before {
	content: "➡";
	font-size: 18px;
	margin-right: 0.5em;
}
footer .corp-info .inner-box .company div dl dd span a {
	text-decoration: none;
}
footer .corp-info .inner-box .company div dl dd span a:hover {
	text-decoration: underline;
}
footer .corp-info .inner-box .company div dl dd .sns {
	display: flex;
	gap: 0 15px;
	justify-content: center;
	margin: 15px 0 -15px;
}
footer .corp-info .company div dl dd .sns a {
	background: #fff;
	color: #202f54;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	justify-content: center;
}
footer .corp-info .company div dl dd .sns a:hover {
	text-decoration: none;
}
footer .corp-info .inner-box .company div dl dd .sns .Twitter a,
footer .corp-info .inner-box .company div dl dd .sns .YouTube a {
	font-size: 18px;
}
footer .corp-info .inner-box .company div dl dd .sns .facebook a,
footer .corp-info .inner-box .company div dl dd .sns .Pinterest a {
	background: #202f54;
	color: #fff;
	font-size: 30px;
	line-height: 1;
}
footer .corp-info .inner-box .company div dl dd .sns a:before {
	display: none;
}
footer .imp-links {
	background: rgba(255,255,255,0.08);
	border-top: 1px solid rgba(170, 170, 170, 0.48);
	max-width: 100%;
}
footer .imp-links .inner-box {
	max-width: 875px;
	padding: 15px 0;
}
footer .imp-links .inner-box ul {
	display: flex;
	justify-content: center;
	gap: 0 5px;
	padding-bottom: 5px;
}
footer .imp-links .inner-box ul li {
    padding-right: 15px;
}
footer .imp-links .inner-box ul li:after {
	content: "\2056";
    font-size: 14px;
    opacity: .72;
	padding-left: 20px;
}
footer .imp-links .inner-box ul li:last-child:after {
	display: none;
}
footer .imp-links .inner-box ul li a {
	text-decoration: none;
	font-size: 12px;
}
footer .imp-links .inner-box ul li a:hover {
	text-decoration: underline;
}
footer .imp-links .inner-box .japan {
	display: flex;
	align-items: center
}
footer .imp-links .inner-box .japan .japan-map {
	position: relative;
	width: 300px;
	flex-shrink: 0;
}
footer .imp-links .inner-box .japan .japan-map img {
	max-height: 140px;
    display: block;
    margin: auto;
}
footer .imp-links .inner-box .japan .japan-map span {
	display: block;
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}
footer .imp-links .inner-box .japan p {
	font-size: 12px;
    word-break: keep-all;
	color: #7dccde;
}

footer .contact-info {
	background: rgba(255, 255, 255, 0.16);
	border-top: 1px solid rgba(170, 170, 170, 0.48);
	padding: 30px 0;
    max-width: 100%;
}
footer .contact-info .inner-box {
	display: flex;
	max-width: 1200px;
}
footer .contact-info .inner-box > div {
	width: 50%;
	padding: 0 35px;
	text-align: center;
	align-self: center;
}
footer .contact-info .inner-box .address img {
	max-width: 140px;
	margin-bottom: 20px;
}
footer .contact-info .inner-box div p {
	font-size: 12px;
}
footer .contact-info .inner-box .contact {
	border-left: 1px solid rgba(170, 170, 170, 0.48);
}
footer .contact-info .inner-box .contact .tel {
	display: block;
	font-size: 18px;
	font-weight: bold;
	margin: 20px 0;
}

footer copyright {
	display: block;
	width: 100%;
	padding: 20px 0;
    font-size: 10px;
	line-height: 15px;
	text-align: center;
	background: rgba(255, 255, 255, 0.24);
}

@media screen and (max-width: 1440px) {
	footer section.corp-info .inner-box {
		gap: 100px 3.5%;
		justify-content: space-between;
	}
	footer .corp-info .inner-box > div {
		width: calc((100% - 7%) / 2);
	}
	footer .corp-info .inner-box .map {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	footer section.corp-info {
		padding: 0;
	}
	footer .corp-info .inner-box {
		width: 100%;
	}
	footer .corp-info .inner-box > div {
        width: 100%;
    }
	footer .corp-info .inner-box .service-list ul {
        text-align: center;
    }
	footer .corp-info .inner-box .service-list ul li {
		font-size: 14px;
	}
	footer .corp-info .inner-box .service-list ul li ul li {
		justify-content: center;
		font-size: 12px;
	}
	footer .corp-info .inner-box .company div img {
		height: 350px;
	}
	footer .imp-links .inner-box {
		width: 100%;
	}
	footer .imp-links .inner-box ul li {
    	padding-right: 10px;
	}
	footer .imp-links .inner-box ul li:after {
		padding-left: 10px;
	}
	footer .imp-links .inner-box .japan {
		position: relative;
		min-height: 140px;
		display: flex;
		flex-direction: column;
	}
	footer .imp-links .inner-box .japan p {
		margin-top: 35px;
		position: absolute;
		text-align: center;
	}
	footer .imp-links .inner-box .japan .japan-map {
		position: static;
	}
	footer .imp-links .inner-box .japan .japan-map img {
		width: 80%;
		height: 80%;
        opacity: 0.2;
	}
	footer .imp-links .inner-box .japan .japan-map span {
		top: 16px;
        font-size: 18px;
	}
	footer .contact-info .inner-box {
		flex-wrap: wrap;
		gap: 15px;
	}
	footer .contact-info .inner-box > div {
		width: 100%;
	}
	footer .contact-info .inner-box .contact {
    	border-left: none;
	}
}

@media screen and (max-width: 425px) {
	footer .imp-links {
		padding: 0;
	}
	footer .imp-links .inner-box {
		padding: 0;
	}
	footer .imp-links .inner-box ul {
		flex-wrap: wrap;
		padding-bottom: 0;
	}
	footer .imp-links .inner-box ul li {
        padding: 0px;
		width: 100%;
		border-bottom: 1px solid rgba(170, 170, 170, 0.48);
	}
	footer .imp-links .inner-box ul li a {
        padding: 12px 15px;
		display: block;
		text-align: center;
	}
	footer .imp-links .inner-box ul li a:hover {
		text-decoration: none;
	}
	footer .imp-links .inner-box ul li:after {
		display: none;
	}
	footer .imp-links .inner-box .japan .japan-map {
		position: static;
	}
	footer .imp-links .inner-box .japan .japan-map img {
		position: absolute;
		max-height: none;
		top: 50%;
        transform: translateY(-50%);
	}
	footer .imp-links .inner-box .japan .japan-map span {
		padding-top: 15px;
	}
	footer .imp-links .inner-box .japan p {
		position: static;
		padding: 5px 15px 15px;
	}
	footer .contact-info .inner-box > div {
		padding: 0;
	}
}

.page-top {
	position: fixed;
    right: 8px;
    width: 55px;
    height: 55px;
    text-align: center;
	background-color: #202f54;
    opacity: .48;
    z-index: 50;
    transform: skewX(-15deg);
}
.page-top:hover {
	opacity: 1;
}
.page-top a {
	display: block;
	height: 100%;
	position: relative;
	transform: skewX(15deg);
}
.page-top a:before,
.page-top a:after {
	content: "";
	display: block;
	width: 40%;
    height: 1px;
	position: absolute;
	top: 50%;
	background: #fff;
	transition: all .3s ease;
}
.page-top:hover a:before,
.page-top:hover a:after {
	top: 30%;
}
.page-top a:before {
	transform: rotate(-45deg);
	left: 13%
}
.page-top a:after {
	transform: rotate(45deg);
	right: 19%;
}
.page-top a span {
	font-size: 0;
}

@media screen and (max-width: 425px) {
	body > .page-top {
		display: none;
	}
	.page-top a:before {
	left: 19%
	}
	.page-top a:before,
	.page-top a:after {
	    height: 2px;
	}
	.page-top a:after {
		right: 14%;
	}
}

.float {
	display: none;
}

@media screen and (max-width: 425px) {
	.float {
		display: block;
		position: fixed;
		bottom: 0 !important;
		background: linear-gradient(135deg, #202f54 0%, #00d4ff 100%);
		width: 100%;
		z-index: 10;
		height: 50px;
	}
	.float input { 
		display: none;
	}
	.float label .menu-button {
		width: 45px;
        height: 35px;
        margin: 9px 10px 6px;
        cursor: pointer;
        padding: 5px 5px 0px;
	}
	.float label .menu-button span {
		display: block;
		width: 35px;
		height: 2px;
		background: #fff;
        margin-bottom: 8px;
		transition: all ease 0.2s;
	}
	.float input:checked ~ label .menu-button span:nth-child(1) {
		position: relative;
        top: 10px;
		transform: rotate(45deg);
	}
	.float input:checked ~ label .menu-button span:nth-child(2) {
		display: none;
	}
	.float input:checked ~ label .menu-button span:nth-child(3) {
		transform: rotate(-45deg);
	}
	.float label .page-top {
		display: block;
        bottom: 0 !important;
        right: 0;
        left: 50%;
        transform: translateX(-50%) skewX(-15deg);
        width: 50px;
        height: 50px;
        opacity: 1;
        background: transparent;
	}
	.float label .page-top a {
		font-size: 0;
	}
	.float label .page-top:hover a:before,
	.float label .page-top:hover a:after {
		top: 50%;
	}
	.float .float-menu {
		visibility: hidden;
		position: relative;
        top: calc(-100vh + 50px);
        height: calc(100vh - 100px);
		width: 100%;
        background: linear-gradient(90deg, #fff 80%, transparent 80%, transparent 100%);
		transition: visibility 0.2s ease;
		padding-top: 100px;
	}
	.float input:checked ~ .float-menu {
		visibility: visible;
	}
	.float .float-menu:after {
		opacity: 0;
		content: "";
		display: block;
		height: calc(100vh - 100px);
		width: 100%;
		background: rgba(0, 0, 0, 0.68);
		position: absolute;
		top: 0;
		z-index: -1;
		transition: opacity 0.2s ease;
	}
	.float input:checked ~ .float-menu:after {
		opacity: 1;
	}
	.float .float-menu ul.menu,
	.float .float-menu a.tel {
		width: 80%;
		margin-left: -80%;
		transition: margin-left 0.2s ease;
	}
	.float input:checked ~ .float-menu ul.menu,
	.float input:checked ~ .float-menu a.tel {
		margin-left: 0%;
	}
	.float .float-menu ul.menu {
		border-top: 3px double #ccc;
	}
	.float .float-menu ul.menu li {
		border-bottom: 1px solid #ccc;
	}
	.float .float-menu ul.menu li a {
		display: block;
		width: 100%;
		text-decoration: none;
		color: #333;
		font-size: 12px;
		padding: 1em;
	}
	.float .float-menu ul.menu li a span.eng {
		font-size: 10px;
	}
	.float .float-menu ul.menu li a span.eng:before {
		content: "/";
		margin: 0 0.75em 0 0.5em;
        display: inline-block;
	}
	.float .float-menu a.tel {
		display: block;
		width: 80%;
		text-align: center;
		margin-top: 30px;
		font-family: "Noto Serif JP", serif;
		font-size: 24px;
		font-weight: bold;
	    font-style: italic;
    	letter-spacing: .03em;
		color: #333;
		position: relative;
		left: -5px;
	}
}

@media screen and (max-width: 375px) {
	.float .float-menu ul.menu li a { padding: 1em 0.5em;}
}

@media screen and (max-height: 768px) {
	.float .float-menu {
		padding-top: 10vh;
	}
	.float .float-menu ul.menu li a {
        padding: 0.25em 0.5em;
    }
    .float .float-menu a.tel {
		margin-top: 1.5vh;
		font-size: 18px;
	}
}

.mailform-head {
	padding-bottom: 0 !important;
	text-align: center;
}
.mailform-head .banner {
	background: url("../images/mailform-head-mv.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 30px 0 55px;
	min-height: 265px;
	margin-bottom: 80px;
}
.mailform-head .banner p,
.mailform-head .banner a {
	margin-bottom: 0;
	color: #fff;
}
.mailform-head div .ask {
	font-size: 32px;
    font-weight: 700;
}
.mailform-head div .tel {
	font-size: 64px;
    line-height: 1.35;
    font-weight: 900;
}
.mailform-head div .tel:before {
	display: none;
}
.mailform-head div .hour {
	font-size: 24px;
    line-height: 1.35;
}
.mailform-head div .notice {
	font-size: 14px;
}

@media screen and (max-width: 768px) {
	.mailform-head .banner {
		padding-inline: 15px;
	}
	.mailform-head div .ask { 
		font-size: 26px;
	}
	.mailform-head div .tel {
		font-size: 50px;
	}
}

@media screen and (max-width: 425px) {
    .mailform-head div .ask {
		font-size: 22px;
	}
	.mailform-head div .tel {
        font-size: 42px;
    }
	.mailform-head div .notice {
	    font-size: 12px;
	}
}

@media screen and (max-width: 375px) {
	.mailform-head .banner {
        padding: 45px 10px;
    }
    .mailform-head div .ask {
		font-size: 18px;
	}
	.mailform-head div .tel {
        font-size: 34px;
    }
	.mailform-head div .notice {
	    font-size: 11px;
	}
}

#mailform { 
	border: none !important;
	max-width: 800px !important;
	margin-inline: auto;
	padding-top: 100px;
	margin-top: -100px;
}
#mailform dt,
#mailform dd { 
	width: 100% !important;
	background: #ebf0f5 !important;
	border: none !important;
	font-weight: normal !important;
}
#mailform dt {
	padding: 10px 20px 7.5px !important;
	justify-content: left !important;
}
#mailform dt .require {
	background: #ee0000;
	color: #fff;
	font-size: 12px;
	padding: 0px 5px 2px;
	border-radius: 5px;
	margin-left: 1em
}
#mailform dd {
	margin-bottom: 2px;
	padding: 0px 20px 15px !important;
}
#mailform dd input,
#mailform dd textarea {
	background-color: #fff;
    color: #333;
    width: 100%;
    border: 1px solid #ddd;
    font-size: 100%;
    padding: 0.5em;
    border-radius: 4px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .1) inset;
}
#mailform dd.checkbox input {
	width: auto;
	box-shadow: none;
}
#mailform dd input:focus,
#mailform dd textarea:focus {
	background: #ffebed !important;
}

@media screen and (max-width: 425px) {
	#mailform dt, 
	#mailform dd {
		font-size: 14px;
	}
	#mailform dt {
		padding: 5px 10px 3.5px !important;
	}
}

@media screen and (max-width: 375px) {
    #mailform dd {
		padding: 0px 15px 10px !important;
	}
}

.mailform_buttons {
	display: flex;
	justify-content: center;
	align-items: center;
}
.last-check .mailform_buttons {
	flex-wrap: wrap;
	gap: 30px 15px;
}
.mailform_buttons input {
    font-size: 16px;
    font-weight: bold;
    width: 200px;
	max-width: 200px;
    border-radius: 5px;
    box-shadow: 0px 6px #333;
    padding: 10px 0;
    line-height: 2;
    cursor: pointer;
    border: 0;
	color: #fff;
	margin-bottom: 0px;
    background: #666;
	height: fit-content;
	position: relative;
}
.mailform_buttons input:hover {
	top: 4px;	
    box-shadow: 0px 2px #333;
}
.mailform_buttons input.submit {
    width: 300px;
	max-width: 300px;
    background: #084695;
	box-shadow: 0px 6px #212f54;
    font-size: 28px;
}
.mailform_buttons input.submit:hover {
	background: #157aa9 !important;
	box-shadow: 0px 2px #212f54;
}

.mailform_confirm {
	padding-top: 200px !important;
}



.slick-slider {
	position: relative;
}

.slick-slider:before {
	position: absolute;
	content: "";
	display: block;
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100vh;
	z-index: 1;
}

.slick-slide img {
	height: 100vh;
    object-fit: cover;
    width: 100%;
}

