@charset "utf-8";

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

@import url("inview.css");
@import url("lightbox.min.css");

/*CSSカスタムプロパティ
---------------------------------------------------------------------------*/
:root {
	--base-color: #fff;
	--base-inverse-color: #323232;	

	--primary-color: #81e8ed;	
	--primary-inverse-color: #323232;
	--primary-sub-color:#09679f;

	--space-large: 8vw;	
	--space-small: 4vw;	
}


/*fadeInキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*fadeOutキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;visibility: hidden;}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: 13px;	
	height: 100%;
}

	@media screen and (min-width:1000px) {

	html, body {
		font-size: 14px;
		font-size: 16px;
	}

	}

	
	@media screen and (min-width:1600px) {

	html, body {
		font-size: 1vw;
	}

	}


body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Yu Gothic", "ヒラギノ角ゴ Pro", sans-serif;
	font-optical-sizing: auto;
	-webkit-text-size-adjust: none;
	background: var(--base-color);		
	color: var(--base-inverse-color);	
	line-height: 2;		
    letter-spacing: 0.02em;
}

figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

table {border-collapse:collapse;}

img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

video {max-width: 100%;}

iframe {width: 100%;}

input {font-size: 1rem;}

section {
	overflow-x: hidden;
	padding: var(--space-large);	
	padding-top: var(--space-small);	
}
section#company {
	padding: var(--space-large) 0;	
}

.inner-set{
	max-width: 1200px;
}


a {
	color: inherit;
	transition: 0.3s;	
}


a:hover {
	text-decoration: none;	
	opacity: 0.9;			
}


/*container
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}


/*header
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: absolute;z-index: 1;
	left: 0px;
	top: 0px;
	width: 100%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
}

@media screen and (min-width:700px) {

	header {
		height: 120px;
	}

}

#logo img {
	display: block;
	width: 150px;	
}
#logo {
	margin: 0;padding: 0;
	padding-left: 3vw;	
}

@media screen and (min-width:700px) {

	#logo img {
		width: 300px;	
	}

}


/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
header nav ul {display: none;}

@media screen and (max-width:1180px) {
	header > nav > ul {
        margin-left: -12vw;
    }
}

@media screen and (min-width:900px) {
		
	header > nav > ul {
		margin-right: 12vw;	
		display: flex;			
	}

	header nav li a {
		font-weight: 500;
		display: block;text-decoration: none;
		padding: 0.5rem 1rem;	
	}
	
	header nav i {
		padding-right: 0.5rem;	
	}


	ul.h-btn{
		position: absolute;
		top:-60px;
		right:0;

	}
	ul.h-btn li {
		padding:10px 0px;
		display: inline-flex !important;
		align-items: center;
	}

}

@media screen and (max-width:1122px) {

	header nav li a {
		font-size: 13px;
	}

}

ul.h-btn li {
	font-size: 1rem;	
	font-weight: 600;	
	margin-top: 3vw;	
	display: flex;
	gap: 1rem;	
}
ul.h-btn li a {
	display: block;text-decoration: none;
	padding: 0.8rem 2rem;	
	margin-bottom: 10px;	
}


ul.h-btn li a:hover {
	opacity: 1;
	transform: scale(1.05);	
}

@media screen and (min-width:420px) {
	
	ul.h-btn li {
		font-size: 1em;	
	}
	
	ul.h-btn li a {
		margin: 0;
		padding: 0.6rem 3rem;
	}

}


ul.h-btn li:nth-of-type(1) a {
	background: var(--primary-color);		
	color: var(--primary-inverse-color);	
}

ul.h-btn li:nth-of-type(2) a {
	background: var(--base-inverse-color);	
	color: var(--primary-color);			
	letter-spacing: 0.1em;					
}

ul.h-btn li i {
	transform: scale(1.4);	
	padding-right: 0.8rem;	
}

header nav ul ul,
.small-screen #menubar ul ul {
	animation: fadeIn 0.5s 0.1s both;	
}

.neon {
	animation: flash 3s ease-in-out infinite;
}

@keyframes flash {
	0%, 100% {
		text-shadow: 0 0 10px #fff,
		0 0 20px #fff,
		0 0 30px #fff, 
		0 0 40px #ff00de, 
		0 0 70px #ff00de, 
		0 0 80px #ff00de, 
		0 0 100px #ff00de, 
		0 0 150px #ff00de;
	}
	50% {
		text-shadow: 0 0 10px #fff, 
		0 0 20px #fcfcfc, 
		0 0 30px #fcfcfc, 
		0 0 40px #fc00de;
	}
}


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
header nav ul ul {
	position: absolute;z-index: 101;
	margin-left: 1rem;
}

header nav ul ul a {
	padding: 0.3em 1em;					
	margin-top: 4px;					
	background: var(--base-color);		
	color: var(--base-inverse-color);	
	border: 1px solid var(--base-inverse-color);	
	border-radius: 3px;					
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

#menubar_hdr.display-none {display: none;}

.ddmenu_parent ul {display: none;}

a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	content: "\f078";	
	font-weight: bold;		
	margin-right: 0.5em;	
}

#menubar .logo {
	width: 400px;
}

@media screen and (max-width:500px) {
	#menubar .logo {
		width: 100%;
	}
}



/*開閉メニュー
---------------------------------------------------------------------------*/
/*animation1のキーフレーム設定*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}

.small-screen #menubar .btn {
    margin-right: 0px;
}

.small-screen #menubar.display-block {
	background: #fff;	
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;	
	animation: animation1 0.2s both;		
}

.small-screen #menubar li {
	margin: 1rem 0;			
}
.small-screen #menubar a {
	border-radius: 5px;		
	padding: 1rem 2rem;		
	background: var(--base-inverse-color);		
	color: var(--base-color);	
}

.small-screen #menubar ul ul a {
	background: var(--base-color);		
	color: var(--base-inverse-color);	
	border: 1px solid var(--base-inverse-color);	
	margin-left: 2rem;	
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	animation: fadeIn 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 0px;				
	top: 0px;				
	padding: 20px 15px;		
	width: 60px;			
	height: 60px;			
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform-origin: right top;
	background: var(--base-inverse-color);	
	border-radius: 0px 0px 0px 10px;
}

@media screen and (min-width:700px) {

	#menubar_hdr {
		transform: scale(1.5);	
	}

}


#menubar_hdr span {
	display: block;
	transition: 0.3s;
	border-top: 1.5px solid var(--base-color);	
}

#menubar_hdr.ham {
	background: #ff0000;
}

#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	
}

#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(6px, 5.8px);	
}

#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(7px, -7px);	
}

#menubar_hdr.ham span:nth-of-type(2){
	display: none;
}


/*メイン画像
---------------------------------------------------------------------------*/
/*ブロック全体*/
#mainimg {
	background: var(--base-color) url("../images/mainimg_sh.png") no-repeat center center / cover;
	width: 100%;
	padding-top: 150%;
	position: relative;
	overflow: hidden;
}

@media screen and (min-width:600px) {

	#mainimg {
		background: var(--base-color) url("../images/mainimg.png") no-repeat center center / cover;
		padding-top: 56.25%;
		padding-top: 60%;
	}

}

#mainimg > div {
	position: absolute;
	top: 60px;
	top: 300px;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;	
}

@media screen and (min-width:420px) {

	#mainimg > div {
		left: var(--space-large);
		align-items: flex-start;
		justify-content: center;
	}

}

@media screen and (max-width:1180px) {
	#mainimg > div {
		left: 4vw;
		width: 70vw;
	}
}

@media screen and (max-width:980px) {
	#mainimg > div {
		top: 250px;
	}
}
@media screen and (max-width:900px) {
	#mainimg > div {
		top: 210px;
	}
}
@media screen and (max-width:780px) {
	#mainimg > div {
		top: 190px;
	}
}
@media screen and (max-width:700px) {
	#mainimg > div {
		top: 140px;
	}
}
@media screen and (max-width:661px) {
	#mainimg > div {
		top: 120px;	
		width: 90vw;
	}
}
@media screen and (max-width:540px) {
	#mainimg > div {
		top: 80px;	
	}
}
@media screen and (max-width:420px) {
	#mainimg > div {
		top: 70px;	
	}
}

#mainimg .text {
	width:40vw;
	margin-top: 60px;
	margin-top: 10px;
}
#mainimg .text h1 {
	margin: 0 0 30px;padding: 0;
	font-size: 4vw;	
	line-height: 1.5;
	font-weight: 500;
}

#mainimg .text p {
	font-size: 1.4vw;	
	font-size: 20px;	
	font-size: 1.4vw;;	
	padding-left: 0.5rem;
	margin: 0;
	font-weight:400;
	line-height: 1.8;
}

@media screen and (max-width:1180px) {
	#mainimg .text p {
		font-size: 1.6vw;	
	}
}

@media screen and (min-width:420px) {

	#mainimg .text {
		text-align: left;
		font-size: 3.6vw;
	}
}

@media screen and (max-width:660px) {
	#mainimg .text {
		width:50vw;
		margin-top:10vw;
	}
}

@media screen and (max-width:599px) {
	#mainimg .text {
		width:90vw;
	}
	#mainimg .text p {
		font-size: 2.4vw;	
		font-size: 3vw;	
	}
}

@media screen and (max-width:420px) {
	#mainimg .text p {
		font-size: 3.2vw;	
	}

}


/*稼働状況*/
.new-top {
    position: absolute;
    top: 160px;
	left: 50%;
	transform: translateX(-50%);
    width: 70vw;
    display: flex;
    align-items: center;
    padding: 0rem 1rem;
    background: rgb(255, 255, 255);
    border-radius: 5px;
	border: 2px solid var(--primary-color);
}
.new-top h2 {
    font-size: 1rem;
    font-weight: normal;
    color: rgb(255, 255, 255);
    margin-right: 1rem;
    margin: 0.5rem 1rem 0.5rem 0;
    background: rgb(85, 85, 85);
    border-radius: 3px;
    padding: 0px 1rem;
}
.new-top .text1 {
    min-width: 0px;
    text-overflow: ellipsis;
    flex: 1 1 0%;
    white-space: nowrap;
    overflow: hidden;
	margin:0;
	padding-left: 20px;
	position: relative;
}
.new-top .text1::before {
    content: "";
    display: block;    
    width: 12px;
    height: 12px;
    border-radius: 7px;
    background: linear-gradient(90deg, #08a87c 0, #bfff50 100%);
    margin-right: 10px;
	position: absolute;
	top:10px;
	left:0px;
}
.new-top .new-list {
    align-self: flex-end;
	margin:0;	
    margin: 0.5rem 0;
}

@media screen and (max-width:1180px) {

	.new-top {
		left: 20px;
		transform: translateX(0%);
	}

}
@media screen and (max-width:900px) {

	.new-top {
		top:110px;
	}

}
@media screen and (max-width:699px) {

	.new-top {
		top:80px;
		font-size:0.8rem !important;
		padding: 0rem 0.1rem;
	}
	.new-top h2 {
    	font-size:0.8rem !important;
		margin: 0.1rem 1rem 0.1rem 0;
	}
	.new-top .text1::before {
		top: 5px;
	}

}

@media screen and (max-width:600px) {

	.new-top {
		width: 90vw;
	}
}

@media screen and (max-width:496px) {

	.new-top {
		top:60px;
	}

}

#mainimg .btn {
	font-size: 1rem;
	font-weight: 600;
	margin-top: 3vw;
	display: flex;
	gap: 1rem;
}
#mainimg .btn a {
	display: block;text-decoration: none;
	padding: 0.8rem 2rem;
	margin-bottom: 10px;
}

#mainimg .btn a:hover {
	opacity: 1;
	transform: scale(1.05);
}

@media screen and (min-width:420px) {

	#mainimg .btn {
		font-size: 1.4vw;
	}
	
	#mainimg .btn a {
		margin: 0;
		padding: 0.6rem 3rem;
	}

}


#mainimg .btn p:nth-of-type(1) a {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}

#mainimg .btn p:nth-of-type(2) a {
	background: var(--base-inverse-color);	
	color: var(--primary-color);
	letter-spacing: 0.1em;					
}

#mainimg .btn i {
	transform: scale(1.4);
	padding-right: 0.8rem;
}

nav .btn {
	font-size: 1rem;
	font-weight: 600;
	margin: 14px 0;
	display: flex;
	gap: 1rem;	
    justify-content: right;
	margin-right: 100px;
}
nav .btn p{
	margin-top: 0;
}
nav .btn a {
	display: block;text-decoration: none;
	padding: 0.8rem 2rem;
	margin-bottom: 10px;
}

nav .btn a:hover {
	opacity: 1;
	transform: scale(1.05);
}

@media screen and (min-width:550px) {

	nav .btn {
		font-size: 0.9rem;
	}
	
	nav .btn a {
		margin: 0;
		padding: 0.6rem 1rem;
	}

}
@media screen and (max-width:550px) {
	nav .btn {
		font-size: 0.8em;
		margin-top:40px;
		margin-right: 65px;
	}
	nav .btn a {
		padding: 0.4rem 0.2rem 0.4rem 1rem;
	}
}
@media screen and (max-width:450px) {
	nav .btn i {
		padding-right: 0.5rem !important;
	}
	nav .btn span{
		display: none;
	}
}

nav .btn p:nth-of-type(1) a {
	background: var(--primary-color) !important;
	color: var(--primary-inverse-color) !important;	
	border-radius: 5px;
}

nav .btn p:nth-of-type(2) a {
	background: var(--base-inverse-color);	
	color: var(--primary-color) !important;	
	letter-spacing: 0.1em;
	border-radius: 5px;
}

nav .btn i {
	transform: scale(1.4);
	padding-right: 0.8rem;	
}



/*main
---------------------------------------------------------------------------*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
}
body:not(.home) main{
	margin-top: 150px;
}

main h2 {
	margin: 0;padding: 0;
	font-size: 1.4rem;		
	font-weight: 800;
	letter-spacing: 0.1em;	
	position: relative;
	justify-content: center;
    align-items: center;
}
main h2 span.normal{
	font-size: 1.4rem;
}

@media screen and (min-width:700px) {
	main h2 {
		font-size: 2.4rem;
	}
	main h2 span.normal{
		font-size: 2.4rem;
	}

}
@media screen and (max-width:700px) {
	body:not(.home) main{
		margin-top: 100px;
	}
}


main h2.c {
	align-items: center;
}

main h2 span {
	font-size: 0.85rem;	
	opacity: 0.5;
	font-weight: normal;
}
main h2 span.normal{
	opacity: 1;
	font-weight: bold;
}

.en {
    font-size: 0.85rem;
    opacity: 0.5;
    font-weight: normal;
}

h2 img {
	width: 100px;
	transform: rotate(-10deg);
	position: absolute;
	left: -10px;
	top: -40px;
}

@media screen and (min-width:700px) {

	h2 img {
		width: 200px;
		top: -60px;
		left: -2px;	
	}
	#amazing h2 img {
		top: 0px;	
	}

}

h3{
	font-size: 1.6em;
	margin-bottom:0px;
}

.fixed-video {
	z-index: 9999;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	border-radius: 8px;
	overflow: hidden;
	text-align: center;
    position: fixed;
    width: 280px;
    padding: 16px;
    bottom: 20px;
    right: 20px;
    border-radius: 12px;
    background: rgba(243, 243, 243, 0.9);
    --bg-currentcolor: rgba(243, 243, 243, 0.9);
    box-shadow: var(--chakra-shadows-2xl);
    cursor: pointer;
    transition: 0.2s ease-in-out;
}
.fixed-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*フッター
---------------------------------------------------------------------------*/
footer {
	font-weight: normal;
	background: var(--primary-color);
	background: var(--primary-color) url(../images/BandLogo_registerd.png) no-repeat right 5vw bottom 10vw;
	background-size:10%;
	color: var(--primary-inverse-color);
	padding: 2rem;
	display: flex;
	flex-direction: column-reverse;
}

footer .logo a {
	position: relative;
	padding-left: 15px;
	line-height: 2;
	font-size: 90%;
}
footer .logo a:before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 0;
    left: 0px;
    margin: auto;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 1px solid #033560;
    border-right: 1px solid #033560;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

footer div:nth-of-type(1) {
    text-align: center;
}

footer div:nth-of-type(2) {
    flex: 1;
    display: flex;
    gap: 2rem;
}


@media screen and (min-width:700px) {

	footer {
		flex-direction: row;
		gap: 4rem;
		padding: 4rem;
		border-bottom: 43px solid #000;
		opacity: 0.9;
	}

	footer div:nth-of-type(1) {
		text-align: left;
		width: 30%;	
	}

	footer div:nth-of-type(2) {
		justify-content: flex-end;
		gap: 2rem;
	}

}

footer ul {
	font-size: 90%;
	font-weight:normal;
	margin: 0;padding: 0;
	list-style: none;
	margin-bottom: 2rem;
}
footer ul li a{
	padding-left: 18px;
    position: relative;
    height: fit-content;
	text-decoration: none;
}
footer ul li a::before {
    content: "";
    width: 10px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    background: rgb(0, 0, 0);
}

footer ul li ul li a::before {
    width: 0px;
    height: 0px;
}
footer small {
	display: block;
	padding-top: 2rem;
}


/*フッター内　ソーシャルメディアアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	justify-content: center;
	gap: 1rem;	
	margin-bottom: 50px;
}

@media screen and (min-width:700px) {
	
	.icons {
		justify-content: flex-start;
	}

}
.icons li a::before {
    width: 0px;
    height: 0px;
} 

.icons i {
	font-size: 30px;
}

.icons {
	font-size: 29px;
}
.icons img{
	width: 65px;
}


/*c2（２カラムレイアウト用）
---------------------------------------------------------------------------*/

@media screen and (min-width:700px) {

	.c2 {
		display: flex;
		gap: 2rem;
	}

	.c2 .title {
		width: 30%;
	}

	.c2 .text {
		flex: 1;
	}

}

/*hayabusa
---------------------------------------------------------------------------*/
.sec-head-movie{
	width: 50%;
	padding: 20px;
}
.sec-head-movie:hover{
	opacity: 0.8;
}
.sec-head-movie .iframe-wrapper,
.sec-movie .iframe-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	vertical-align:top;
}
.sec-head-movie .iframe-wrapper iframe,
.sec-movie .iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 5px;
}

@media screen and (max-width: 900px) {
	.sec-head-movie{
		padding: 0px;
	}
}

/*アンケート
---------------------------------------------------------------------------*/
#quest .inner {
    display: flex;
    justify-content: center;
    gap: 60px;
	margin-top: 50px;
}
#quest .inner p{
	margin: 0 !important;
}
#quest .star-wrap {
    text-align: center;
	position: relative;
	padding: 0 40px;
	width: initial;
}

#quest .star-wrap::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 9px;
	left: 0;
	background: url("../images/star-brackets.svg") center/cover, no-repeat;
	width: 20px;
	height: initial;
	aspect-ratio: 17 / 120;
}
	
#quest .star-wrap::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 9px;
	right: 0;
	background: url("../images/star-brackets.svg") center/cover, no-repeat;
	width: 20px;
	height: initial;
	aspect-ratio: 17 / 120;
	transform: scale(-1,1);
}

.star-wrap .rep-name {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
}
.star-wrap .rep-num {
    font-size: 5.0rem;
    font-weight: 800;
    line-height: 1;
}


.star-wrap .rep-date {
	font-size: 0.8rem;
	line-height: 1.5;
	letter-spacing: 0;
	margin: 15px 0 0;
	display: inline-block;
}

.star-wrap .rep-wrap {
	display: flex;
	justify-content: center;
	align-content: center;
	width: 100%;
	position: relative;
	height: 23px;
	z-index: 2;
	margin: 10px 0 0;
}

.star-icon.full {
  background-image: url(../images/star-full.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.star-icon.half {
  background-image: url("../images/star-half.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.star-icon.not {
  background-image: url(../images/star-none.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.star-wrap .rep-wrap i {
  display: inline-block;
  width: 23px;
  height: 23px;
  margin: 0 3px 0 0;
  vertical-align: middle;
}
.star-wrap .rep-wrap i:last-of-type {
  margin: 0;
}

@media screen and (max-width: 768px) {
	.star-wrap {
		width: 180px;
		justify-content: center;
		align-items: center;
		align-content: center;
		flex-wrap: wrap;
		position: relative;
	}
	
	.star-wrap::before {
		content: "";
		display: inline-block;
		position: absolute;
		top: 9px;
		left: 0;
		background: url("../img/star-brackets.svg") center/cover, no-repeat;
		width: 17px;
		height: initial;
		aspect-ratio: 17 / 120;
	}
	
	.star-wrap::after {
		content: "";
		display: inline-block;
		position: absolute;
		top: 9px;
		right: 0;
		background: url("../img/star-brackets.svg") center/cover, no-repeat;
		width: 17px;
		height: initial;
		aspect-ratio: 17 / 120;
		transform: scale(-1,1);
	}
	
	.star-wrap .rep-name {
		font-size: 1.6rem;
	}
	
	.star-wrap .rep-num {
		font-size: 5.1rem;
		width: 100%;
	}
	
	.star-wrap .rep-wrap {
		width: 100%;
	}
	
	.star-wrap .rep-date {
		margin: 5px 0 0;
	}
  
}


@media screen and (min-width:700px) {
	.faq {
		font-size: 1.2rem;
	}

}

.faq dt {
	display: flex;
	align-items: flex-start;
	border-radius: 3px;		
	margin-bottom: 1rem;	
	background: var(--base-color);		
	color: var(--base-inverse-color);
	padding: 1rem;
}

.faq dt::before {
	font-family: "Font Awesome 6 Free";
	content: "\51";	
	margin-right: 0.5rem;	
	background: var(--primary-color);		
	color: var(--primary-inverse-color);	
	border-radius: 50%;	
	width: 30px;		
	line-height: 30px;	
	text-align: center;
	flex-shrink: 0;
	margin-top: 0.2em;	
}

.faq dd {
	padding: 0 1rem 1rem 3.7rem;	
}

.openclose {
	cursor: pointer;	
}


/*お知らせブロック
---------------------------------------------------------------------------*/
.new dd {
	padding-bottom: 1rem;
}

.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		
	border-radius: 2px;		
	padding: 0 1rem;		
	width: 8rem;		
	transform: scale(0.85);	
	border: 1px solid #777;	
}

.new .icon-bg1 {
	border-color: transparent;
	background: #cd0000;		
	color: #fff;				
}

.new .icon-bg2 {
	border-color: transparent;		
	background: var(--primary-color);		
	color: var(--primary-inverse-color);	
}

@media screen and (min-width:700px) {

	.new {
		display: grid;	
		grid-template-columns: auto 1fr;
	}

}


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
.slide-thumbnail1 .img {
	display: flex;
}

.slide-thumbnail1 .img img {
	padding: 5px;
}

.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
	0% {transform: translateX(0);}
	100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
	0% {transform: translateX(-50%);}
	100% {transform: translateX(0);}
}


/*テキストスライド
---------------------------------------------------------------------------*/
.text-slide-wrapper {
	overflow-x: hidden;
	margin-top: calc(-1 * (1.6 * var(--space-large)));
	margin-top: -50px;	
	}

.text-slide {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	display: flex;
	white-space: nowrap;
    font-size: 15vw;	
	opacity: 0.05;	
}

.text-slide span {
	padding: 0 20px;
}


/*btn1（ボタン）
---------------------------------------------------------------------------*/
.btn1 a {
	text-shadow: none;display: block;text-decoration: none;
	background: var(--primary-color);		
	color: var(--primary-inverse-color);	
	font-size: 1.4rem;		
	padding: 0.5rem 2rem !important;	
	border-radius: 100px;	
	text-align: center;		
}


.bg-primary-color .btn1 a {
	background: var(--primary-inverse-color);		
	color: var(--primary-color);	
}


.btn1 a:hover {
	opacity: 1;
	transform: scale(1.05);	
	background: var(--primary-inverse-color);	
	color: var(--primary-color);				
}


.bg-primary-color .btn1 a:hover {
	background: #fff;	
	color: #333;		
}

.btn1 a::after {
	font-family: "Font Awesome 6 Free";	
	content: "\f0a9";		
	font-weight: bold;		
	margin-left: 0.5em;		
}

.read {
    color: var(--base-color);
	padding:30px var(--space-large);
}
.read p{
	margin-top: 50px;
}


/*bg-primary-color
---------------------------------------------------------------------------*/
.bg-primary-color {
	background: var(--primary-color);		
	color: var(--primary-inverse-color);	
}


/*bg1
---------------------------------------------------------------------------*/
.bg1 {
	background-color: var(--base-inverse-color);	
	color: var(--base-color);	
}


/*bg2
---------------------------------------------------------------------------*/
.bg2 {
	background: #f3f3e9;	
}


/*bg3
---------------------------------------------------------------------------*/
.bg3 {
	background: #fff;	
}


/*パターン背景
---------------------------------------------------------------------------*/
/*bg-pattern1*/
.bg-pattern1 {
	background-image: url("../images/bg_pattern1.png");	
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;	
}

/*bg-pattern2*/
.bg-pattern2 {
	background-image: url("../images/bg_pattern2.png");	
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;	
}

/*bg-pattern3*/
.bg-pattern3 {
	background-image: url("../images/bg_pattern3.png");	
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;	
}


.arrow {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,95 L50,100 L0,95 Z' fill='%23000000'/%3E%3C/svg%3E");
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

	@media screen and (min-width:700px) {

		.arrow {
			mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,90 L50,100 L0,90 Z' fill='%23000000'/%3E%3C/svg%3E");
			padding-bottom: 150px;
		}	

	}


.arrow + section {
	padding-top: calc(var(--space-large) + 150px);
	margin-top: -150px;
}


/*list-grid-simple
---------------------------------------------------------------------------*/
.list-grid-simple .list * {margin: 0;padding: 0;}

.list-grid-simple {
    display: grid;
    grid-template-columns: repeat(2, 1fr);	
    gap: 3rem;	
}

.list-grid-simple .list {
    display: grid;
	position: relative;
}

.list-grid-simple .list h4 {
	margin-top: 0.5rem;		
	font-weight: normal;	
}

@media screen and (min-width:800px) {

	.list-grid-simple {
		grid-template-columns: repeat(3, 1fr);	
	}

}


/*list-grid1（３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * {margin: 0;padding: 0;}

	
@media screen and (min-width:800px) {

	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	
		gap: 3vw;	
	}

}


.list-grid1 .list {
    display: grid;
	margin-bottom: 3rem;	
	position: relative;
	border-radius: 5px;	
	background-color: #fff;	
	color: #333;		
	box-shadow: 2px 5px 5px rgba(0,0,0,0.1);	
	padding: 1rem;	
}

	
@media screen and (min-width:800px) {

	.list-grid1 .list {
		margin-bottom: 0;	
	}

}


.list-grid1 .list.bg-black {
	background: #111;
	color: #fff;	
}
.list-grid1 .list.bg-white {
	color: var(--base-inverse-color);
    padding: 2rem;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.list-grid1 .list .num {
	position: absolute;
	left: -20px;		
	top: -30px;			
	font-size: 60px;	
	line-height: 1;
	font-family: "MonteCarlo", cursive;	
	opacity: 0.2;	
}

.list-grid1 .list h4.kazari::before {
	content: "”";	
	position: absolute;
	left: -1rem;	
	top: -40px;		
	opacity: 0.2;	
	font-size: 60px;	
	line-height: 1;
}

.list-grid1 .list h4 {
	font-size: 1.4rem;	
	line-height: 1.6;	
	line-height: 1.4;	
	margin-top: 1rem;	
	margin-bottom: 1rem;	
	position: relative;
}
.func .list h4 {
	font-size: 1.8rem;
}

.list-grid1 .list h4 span.en {
    display: block;
    font-weight: normal;
    font-size: 0.7em;
}

.list-grid1 .list p {
	line-height: 1.6;	
	font-weight: normal;
	margin-bottom: 20px;
}

.list-grid1 .list.bg-black p {
	color: #999;	
}

.list-grid1 .list figure.icon {
	margin: 0 auto;
	width: 100px;		
	margin-top: -40px;
}

.bg1 .list-grid1 .list figure.icon {
	filter: grayscale(100%) brightness(90%);
	margin-bottom: 1rem;	
}

@media screen and (min-width:800px) {

	.list-grid1 .list figure.icon {
		width: 150px;		
		margin-top: -50px;	
	}

}



/*list-c2（お問い合わせ、資料請求）
---------------------------------------------------------------------------*/
.list-c2 > a {
    text-decoration: none;
    display: block;
}

@media screen and (min-width:600px) {
	
	.list-c2 {
		display: flex;	
		gap: 2vw;		
	}

}


.list-c2 .list {
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color: #fff;		
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
	padding: 5rem 2rem;	
	margin: 1rem 0;	
	border-radius: 30px;	
}

@media screen and (min-width:600px) {
	
	.list-c2 > * {
		flex: 1;
	}
	.list-c2 .list {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.list-c2 > a .list {
		height: 100%;
	}
	
	.list-c2 .list:nth-of-type(1) {
		border-radius: 0px 30px 30px 0px;	
	}
	
	.list-c2 .list:nth-of-type(2) {
		border-radius: 30px 0px 0px 30px;	
	}
	
}


.list-c2 .list.image1 {
	background: url("../images/bg_contact.jpg") no-repeat center center / cover;
}

.list-c2 .list.image2 {
	background: url("../images/bg_request.jpg") no-repeat center center / cover;
}

.list-c2 .list.image3 {
	background: url("../images/service-storage.png") no-repeat center center / cover;
	background-size: 30%;
}

.list-c2 .list.image4 {
	background: url("../images/service-issue.png") no-repeat center center / cover;
	background-size: 30%;
}

.list-c2 .list.image5 {
	background: url("../images/service-view.png") no-repeat center center / cover;
	background-size: 30%;
}

.list-c2 h4 {
	line-height: 1.2;	
	font-family: "Jost", sans-serif;	
	font-optical-sizing: auto;
	font-weight: 300;	
}

.list-c2 h4 .main-text {
	display: block;
	font-size: 3rem;		
	padding-top: 1.5rem;	
	padding-bottom: 3rem;	
}

@media screen and (min-width:600px) {

	.list-c2 h4 .main-text {
		font-size: 4rem;	
	}

}


.list-c2 .list .text {
	position: relative;z-index: 1;
	font-size: 0.85rem;	/
}
.list-c2 .list .text-func {
	position: relative;z-index: 1;
	font-size: 1.2rem;	/
}

.list-c2 .list::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);
	transition: transform 0.3s 0.1s;	
}
.list-c2 .list:hover::before {
	transform: translateY(100%);	
}


/*背景画像移動
---------------------------------------------------------------------------*/
/*ブロック全体*/
.bg-slideup {
	margin-left: calc(-1 * var(--space-large));
	margin-right: calc(-1 * var(--space-large));
}

section > .bg-slideup:first-child {
	margin-top: calc(-1 * var(--space-large));
}

/*画像ボックス*/
.bg-slideup .image {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	padding: 10vw 20px;	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3rem;		
	color: #fff;	
}

.en-text {
	writing-mode: horizontal-tb;
	font-size: 0.8rem;	
}

.jp-text {
	writing-mode: vertical-rl;
	text-orientation: upright;
}

#products .bg-slideup .image {
	background-image: url("../images/bg_works.jpg");	
}

#company .bg-slideup .image {
	background-image: url("../images/bg_company.jpg");	
}


/*list-normal1
---------------------------------------------------------------------------*/
.list-normal1 * {margin: 0;padding: 0;}

@media screen and (min-width:600px) {

	.list-normal1 .text {
		flex: 1;
	}
	
	.reverse {
		flex-direction: row-reverse;
		background-position: left bottom !important;
	}
	
}


.list-normal1 .list {
	/* background: var(--base-color) url("../images/bg-dot.png") no-repeat right bottom / 200px; */
	color: var(--base-inverse-color);	
	padding: 1rem;
	margin-bottom: 2rem;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
	position: relative;
}

@media screen and (min-width:600px) {

	.list-normal1 .list {
		display: flex;
		gap: 2rem;
	}
	
}

.list-normal1 figure {
	width: 10%;	
	margin-bottom: 1rem;	
}
.list-normal1 figure img{
	width: 100%;	
}

@media screen and (min-width:600px) {

	.list-normal1 figure {
		margin-bottom: 0;
	}

}


.list-normal1 h4 {
	font-size: 0.8rem;	
	line-height: 1.5;	
	margin-bottom: 1rem;	
}

@media screen and (min-width:600px) {

	.list-normal1 h4 {
		font-size: 1rem;	
		line-height: 1.8;	
	}

}

.list-normal1 p{
	font-size: 90%;
	line-height: 1.2;
}

.list-normal1.flow h4 i {
	margin-right: 1rem;	
}

.list-normal1 .name {
	text-align: right;
	margin-top: 1rem;	
}

.list-normal1.flow .list::after {
	/* content: "▼";	 */
	position: absolute;
	left: 50%;		
	bottom: -2rem;	
	transform: scaleX(1.5);	
	opacity: 0.5;			
}

.list-normal1.flow .list:last-child::after {
	content: none;
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
.ta1 caption {
	font-weight: bold;		
	padding: 0.5rem 1rem;	
	background: var(--base-inverse-color);	
	color: var(--base-color);				
	margin-bottom: 1rem;	
	border-radius: 5px;		
}

.ta1 {
	table-layout: fixed;
	width: 100%;				
	border-top: 1px solid #ccc;	
	margin-bottom: 2rem;
}
.ta1 tr {
	border-bottom: 1px solid #ccc;	
}

.ta1 td, .ta1 th {
	word-break: break-all;
	background: var(--base-color);		
	color: var(--base-inverse-color);	
	text-align: left;	
	padding: 0.5rem;	
}

.ta1 th {
	width: 25%;			
	text-align: center;	
}


/*テーブル（プラン）　
---------------------------------------------------------------------------*/
.ta1.plan, .ta1.plan td, .ta1.plan th {
	text-align: center;
	border: 2px solid var(--base-inverse-color);	
	padding: 0.5rem;
}

	/*画面幅801px以上の追加指定*/
	@media screen and (min-width:801px) {

	.ta1.plan, .ta1.plan td, .ta1.plan th {
		font-size: 1.2rem;
		padding: 2rem 1rem;
	}

	}


.ta1.plan th:first-child,
.ta1.plan td:first-child {
    width: 12rem;	
}

.ta1.plan th {
	width: auto;
	position: relative;
	overflow: hidden;
}

.ta1.plan th .osusume {
	position: absolute;
	left: 0px;
	top: 0px;
	background: #ff0000;	
	color: #fff;			
	font-size: 0.8rem;		
	width: 120px;
	text-align: center;
	padding-top: 43px;
	padding-bottom: 2px;
	transform: rotate(-45deg) translate(-18px, -60px);
}

.ta1.plan th i {
	display: block;
	font-size: 1.4rem;	
}

.ta1.plan th:nth-child(2) {
	background: #ecfbfc;
}

.ta1.plan td:nth-child(2) {
	background: #ecfbfc;
}

.ta1.plan th:nth-child(3) {
	background: var(--primary-color);		
	color: var(--primary-inverse-color);	
}
.ta1.plan td:nth-child(3) {
	background: var(--primary-color);		
	color: var(--primary-inverse-color);	
}

.ta1.plan th:nth-child(4) {
	background: #ecfbfc;
}

.ta1.plan td:nth-child(4) {
	background: #ecfbfc;
}

.plan th > span {
	display: block;
	font-size: 1.6rem;	
	font-family: "Oswald", sans-serif;	
	font-optical-sizing: auto;
	font-weight: 700;	
}

@media screen and (min-width:801px) {

	.plan th > span {
		font-size: 2.4rem;	
	}

}

@media screen and (max-width:800px) {

	.scroll .ta1.plan {width: 700px;}
	.scroll {overflow-x: auto;}

}


/*調整用スタイル
---------------------------------------------------------------------------*/
.padding0 {
	padding: 0 !important;
}
.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}


/*機能特長
---------------------------------------------------------------------------*/
.features a{color:var(--primary-sub-color);}

.features a.imgzoom {
    position: relative;
    padding-left: 15px;
    line-height: 2;
    font-size: 90%;
}
.features a.imgzoom:before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 0;
    left: 0px;
    margin: auto;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 1px solid #033560;
    border-right: 1px solid #033560;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.bgstorage{
	background: url(../images/bg_storage.png) no-repeat right top;
	background-size: 50%;
}

#manual #container {
	all: unset;
}
.manual {
	background: #fff;
	color: #333;
	padding: 5vw;
}
.manual .look {background: #eee;}
.manual h2 {
	margin-top: 2rem;
	font-size: 2rem;
	text-align: center;
}
.manual h3 {
	line-height: 3;
	margin-top: 2rem;
}
.manual h3 span {
	background: linear-gradient(transparent 60%, yellow);
}
.manual h3 + p {margin-top: -0.5rem;}
.manual.margin-left {padding-left: 300px;}

@media screen and (max-width:999px) {

	.manual.margin-left {padding-left: 4vw;}

}

.text-container {
    position: relative;
    padding: 20px 0;
    z-index: 0; 
}

.text-container::before {
    content: "";
    position: absolute;
    top: 27px;
    right: -510px;
    width: 100%;
    height: 100%;
	background:url(../images/serviceconcept_all.svg) no-repeat right bottom 50px;
	background-size: 85%;
    opacity: 0.4;
    z-index: -1;
}

#amazing h3.sub{
	color: #fff;
	font-size: 1.5em; 
	letter-spacing: 0.1em;
	text-align: center;
	margin-top: 0px !important;
	margin-bottom: 30px !important;
}
#amazing h3{
	color:var(--primary-sub-color);
}

.image-frame{
	margin: 30px 5px;
	display: block;
    align-items: center;
}
.image-frame figcaption{
	text-align: center;
}
.image-frame figure{
	border:15px solid #efefef;
}
.image-frame figure img{
	border-radius: 5px;	
}

#amazing .text p{
	margin-top:0px;
	margin-bottom:50px;
}

#amazing ul.point {
	display: flex;
	justify-content: center;
	list-style-type: none;
	margin: 0 0 30px;
	padding: 0;
	gap: 5px; 
	line-height: 1.1;
}

#amazing ul.point li {
	flex: 1 1 calc(33.333% - 20px); 
	max-width: calc(33.333% - 20px);
	text-align: center;
	padding: 10px 5px;
	margin-left: 0;
	border-radius: 20px;
	background-color: #eaf3ff;
	box-sizing: border-box;
}

#amazing ul.point h4 {
	display: inline-block;
	padding: 0;
	margin: 0 0 8px;
	border-bottom: 5px #b0d2ff solid;
}

#amazing ul.point p{
	margin-top:0px;
	margin-bottom:0px;
}

@media screen and (max-width: 768px) {
	#amazing ul.point li {
		flex: 1 1 calc(50% - 20px);
		max-width: calc(50% - 20px);
	}
}

@media screen and (max-width: 480px) {
	#amazing ul.point li {
		flex: 1 1 100%;
		max-width: 100%;
	}
}

/*クッキーポリシー
---------------------------------------------------------------------------*/
#cookie .text h3{
	margin-bottom:0px;
}
#cookie .text p{
	margin-top:0px;
	margin-bottom:50px;
}

.ta1.cookie, .ta1.cookie td, .ta1.cookie th {
	border: 1px solid #ccc;
	padding: 0.5rem;
}

@media screen and (min-width:801px) {

	.ta1.cookie, .ta1.cookie td, .ta1.cookie th {
		padding: 0.5rem 1rem;
	}

}

.ta1.cookie th:first-child,
.ta1.cookie td:first-child {
    width: 13rem;
}
.ta1.cookie th:nth-child(4) ,
.ta1.cookie td:nth-child(4) {
    text-align: center;
} 

.ta1.cookie th {
	width: auto;
	position: relative;
	overflow: hidden;
	background: #fffcda;
}

@media screen and (max-width:800px) {

	.scroll .ta1.cookie {width: 700px;}
	.scroll {overflow-x: auto;}

}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.color-prime{color:var(--primary-color);}
.color-prime-sub{color:var(--primary-sub-color);}
.orange{color: rgb(47, 22, 1);}
.green{color: green;}
.blue{color: blue;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mt0{margin-top: 0px;}
.mt1em{margin-top:1em;}
.pt20{padding-top: 20px;}
.ptb20{padding-top: 20px !important;padding-bottom: 20px !important;}
.ml20{margin-left: 20px;}
.mt50{margin-top: 50px;}
.m0 {margin-top:0;margin-bottom: 0px !important;}
.ml0 {margin-left: 1em !important;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb-space-large {margin-bottom: var(--space-large) !important;}
.look {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.85em;line-height:1.5;}
.small2 {font-size: 40%}
.large {font-size: 2em; letter-spacing: 0.1em;}
.fnt-1em {font-size: 1em}
.fnt-15em {font-size: 1.5em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.inline-block {display: inline-block !important;}
.relative {position: relative;}
.marker {background: linear-gradient(transparent 50%, yellow);}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}
.lh1{line-height: 1.4;}
.pos-rltv{position: relative;}
.img-c{display: flex;
    justify-content: center;
    align-items: center;
}
.ind{
	text-indent:-1em;
	padding-left:1em;
}
.notic{
	padding:10px 30px;
	margin-top: 100px;
    margin-bottom: 2rem;
	border: 1px dotted #efefef;
	border-radius: 10px;
	background-color: rgba(252, 250, 209, 0.6);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);

	display: flex;
	gap:5rem;	
}

.bg-cloud{
	background-image: url(../images/cloud.svg);
	background-repeat: no-repeat;
	background-size: 20%;
	background-position: left 5px top 5px;
}
.bg-document{
	background-image: url(../images/document.svg);
	background-repeat: no-repeat;
	background-size: 20%;
	background-position: left top;
}
.bg-folder{
	background-image: url(../images/folder.svg);
	background-repeat: no-repeat;
	background-size: 20%;
	background-position: left top;
}
.bg-search{
	background-image: url(../images/search.svg);
	background-repeat: no-repeat;
	background-size: 20%;
	background-position: left top;
}
.imp {
	font-size: 0.8em;
	vertical-align: top;
}

.orange-grad {
  background-image: linear-gradient(150deg, rgba(232, 90, 26, 0.2) 10%, rgba(251, 206, 15, 0.2) 90%);
}
.green-grad {
  background-image: linear-gradient(150deg, rgba(6, 143, 53, 0.2) 10%, rgba(149, 191, 31, 0.2) 90%);
}
.blue-grad {
  background-image: linear-gradient(150deg, rgba(5, 87, 163, 0.2) 10%, rgba(8, 166, 229, 0.2) 90%);
}

.arrow-row > .list:not(:last-child)::before {
    content:  '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 0 20px 32px;
    border-color: transparent transparent transparent #00BCD4;
    display:  inline-block;
    vertical-align:  middle;
    position: absolute;
    top: 0;
    bottom: 0;
    margin:  auto;
    right: -48px;
}
.arrow-row {
    list-style:  none;
    padding:  0;
}

.arrow-row .list:not(:last-child) {
    margin-right:  20px;
}

.flex{display:flex;}
.wd50{width:50%;height:50%}
.wd70{width:70%;}
.wd80{width:80%;}


@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

}

@media screen and (max-width:900px) {
	
	.flex{display:block;}
	.wd50{width:100%;height:100%}

}

@media screen and (max-width:480px) {

	.sh-block {
		display: grid !important;
    	grid-template-columns: repeat(2, 1fr);	
	}

	.sp-wd100{width:100%;}

}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
@keyframes scroll {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
body .nav-fix-pos-pagetop a {display: none;}

body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
	width: 50px;
	line-height: 50px;
	bottom: 50px;
	right: 3%;
	background: rgba(0,0,0,0.6);
	color: #fff;
	border: 1px solid #fff;
	border-radius: 50%;
	animation-name: scroll;
	animation-duration: 1S;
	animation-fill-mode: forwards;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;
}

/* Cookie利用 */
.cookie-banner {
	display: none;
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: rgba(51, 51, 51, 0.9);
	color: white;
	padding: 15px 4vw;
	font-size: 0.9em;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	flex-wrap: wrap;
  }

  .cookie-banner p {
	margin: 0 0 20px;
  }

  .cookie-buttons {
	display: flex;
	gap: 10px;
	/* margin-left: 10vw; */
  }

  .cookie-banner button {
	background-color: #d29536;
	border: none;
	color: white;
	padding: 8px 16px;
	font-size: 14px;
	cursor: pointer;
	border-radius: 4px;
  }

  .cookie-banner button:hover {
	color: #d29536;
	background-color: #fff;
  }

  #decline-cookies {
	background-color: #888;
  }

  #decline-cookies:hover {
	color: #888;
	background-color: #fff;
  }

  .cookie-banner a {
	text-decoration: underline;
  }

  #close-banner {
	position: absolute;
	top: 8px;
	right: 12px;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	width: 1em;
	height: 1em;
	border: 5px solid #5E5C5A;
	border-radius: 50%;
	background: #5E5C5A url(../images/modal_close_w.png) center center no-repeat;
	background-size: contain;
  }

  #close-banner:hover {
	border: 5px solid #d29536;
	background-color: #d29536;
  }

  @media screen and (max-width: 845px) {
	.cookie-banner {
	  display: block;
	  flex-direction: column;
	  align-items: flex-start;
	}
	.cookie-banner p {
	  padding-right: 5vw;
	  padding-left: 5vw;
	}
	.cookie-buttons {
	  margin-top: 10px;
	  margin-left: 0;
	}
  }

  @media screen and (max-width: 480px) {
	.cookie-banner p {
	  line-height: 1.5;
	  padding-right: 1vw;
	  padding-left: 1vw;
	}

	#close-banner {
	  right: 5px;
	}

	.cookie-buttons {
	  margin-top: 3vw;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	}

	.cookie-banner button {
	  padding: 4px 8px;
	  font-size: 12px;
	}
  }
  

