@charset "utf-8";


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


/*Google Fonts*/
@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');


/*temp css*/
@import url("slide.css");
@import url("inview.css");


/*CSS color setup*/
:root {
	--base-color: #2aa1f0;				/*背景*/
	--base-inverse-color: #ffffff;		/*↑のテキストカラー*/

	--primary-color: #2aa1f0;			/*強調*/
	--primary-inverse-color: #ffffff;	/*↑のテキストカラー*/

	--space-large: 8vw;
}


/*fadeIn*/
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*fadeOut*/
@keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;visibility: hidden;}
}


/*all settings*/
body * {box-sizing: border-box;}

html,body {
	font-size: 13px;
	height: 100%;
}
	@media screen and (min-width:1000px) {

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

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

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

	}


body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-optical-sizing: auto;
	font-weight: 500;
	-webkit-text-size-adjust: none;
	background: var(--base-color);
	color: var(--base-inverse-color);
	line-height: 2;
}

/*reset*/
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*/
table {border-collapse:collapse;}

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

/*video*/
video {max-width: 100%;}

/*iframe*/
iframe {width: 100%;}

/*input*/
input {font-size: 1rem;}

/*section*/
section {
	overflow-x: hidden;
	padding: var(--space-large);	
}


/*link text */
a {
	color: inherit;
	transition: 0.3s;
}

/*mouse on*/
a:hover {
	text-decoration: none;
	opacity: 0.9;
}

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


/*header */
/*block*/
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: 90px;
	}

	}

/*logo*/
#logo img {
	display: block;
	width: 150px;
}
#logo {
	margin: 0;padding: 0;
	padding-left: 3vw;
}
	@media screen and (min-width:700px) {
	#logo img {
		width: 250px;
	}

	}
/*header in menu*/
header nav ul {display: none;}
	@media screen and (min-width:900px) {
	header > nav > ul {
		margin-right: 100px;
		display: flex;
	}
	header nav li a {
		display: block;text-decoration: none;
		font-size: 1.1rem;
		padding: 0.5rem 1rem;
	}

	header nav i {
		padding-right: 0.5rem;
	}

	}

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

header nav ul ul {
	position: absolute;z-index: 100;
	margin-left: 1rem;
}

header nav ul ul a {
	padding: 0.3em 1em;
	margin-top: 4px;
	background: #fff;
	color: #2268ff;
	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: 200px;
}

@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}

.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	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;
}

#mainbg {
    background:
		url("../images/bg2.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto;
	width: 100%;
	height: 100vh;
	padding-top: 70%;
    position: fixed;
    overflow: hidden;
	z-index: -1;
}

	@media screen and (min-width: 719px) {
    #mainbg {
        background: url("../images/bg2.png"); /* 背景画像を指定 */
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-size: auto;
		padding-top: 70%;
    	width: 100%;
    	height: 100%;
		position: fixed;
    	overflow: hidden;
    	z-index: -1;
    }
}
	@media screen and (min-width:720px) and (min-height:700px) {
	#mainbg {
	padding-top: 90%;
	background-size: auto;
	}
}
	@media screen and (max-height:450px) {
	#mainbg {
	padding-top: 50%;
	background-size: auto;
	}
}

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

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

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

	}

/*ブロック全体*/
#mainimg {
    background:
        	url("../images/none.png");
	background-attachment: fixed;
	padding-top: 150%;
	height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
	z-index: 0;
}

	@media screen and (min-width:719px) {
	#mainimg {
		background:
        	url("../images/none.png");
		background-attachment: fixed;
		padding-top: 70%;
    	width: 100%;
    	height: 100%;
		position: relative;
    	overflow: hidden;
    	z-index: 0;
	}
}

	
		@media screen and (min-width:720px) and (min-height:700px) {
			#mainimg {
			padding-top: 90%;
		}
	}
		@media screen and (max-height:450px) {
		#mainimg {
		padding-top: 50%;
	}
}


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

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

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

	}



#mainimg p {margin: 0;}

#mainimg .text {
	text-align: left;
	font-size: 3rem;
	margin: 0;
	font-family: 'Noto Serif JP', serif;
	display: flex;
	height: 2rem;
	color: #ffffff;
	padding-left: 4rem;	
	margin-top: 60vw;
}
.highlight {
	font-weight: 700;
	text-shadow: 0 0 5px rgba(255, 242, 242, 0.95),
				 0 0 15px rgba(255, 255, 255, 0.75),
				 0 0 30px rgba(255, 255, 255, 0.44);
  }
  @media screen and (max-width: 360px) {
	.highlight {
		font-size: 2.5rem;
	}
}

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

	#mainimg .text {
		text-align: left;
		font-size: 3.6vw;
		margin: 0;
      	font-family: 'Noto Serif JP', serif;
      	display: flex;
      	height: 70vh;
      	color: #ffffff;
      	padding-left: 4rem;
    }
    .highlight {
      font-size: 5rem;
      font-weight: 700;
      text-transform: uppercase;
      text-shadow: 0 0 5px rgba(255, 242, 242, 0.95),
                   0 0 15px rgba(255, 255, 255, 0.75),
                   0 0 30px rgba(255, 255, 255, 0.44);
    }

	}

#mainimg .btn {
	font-size: 1.4rem;
	font-weight: 600;
	margin-top: 85vw;
	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:450px) {

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

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

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

	}
	@media screen and (max-height:450px) {
		#mainimg .btn {
			font-size: 1rem;
			margin-top: 2vw;
		}
		
		#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;
}

/*main
---------------------------------------------------------------------------*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
}
main h2 {
	margin: 0;padding: 0;
	font-size: 1.4rem;
	font-weight: 800;
	margin-bottom: 5vw;
	display: flex;
	flex-direction: column-reverse;
	letter-spacing: 0.1em;
	position: relative;
}
	@media screen and (min-width:700px) {

	main h2 {
		font-size: 2.4rem;
	}

	}

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

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

footer {
    background:
        	url("../images/none.png");
    background-attachment: fixed;
	position: relative;
	color: var(--primary-inverse-color);
	padding: 2rem;
	display: flex;
	flex-direction: column-reverse;
}

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;
	}
	footer div:nth-of-type(1) {
		text-align: left;
		width: 30%;
	}
	footer div:nth-of-type(2) {
		gap: 4rem;
	}

	}


footer ul {
	margin: 0;padding: 0;list-style: none;
	margin-bottom: 4rem;
}

footer small {
	display: block;
	padding-top: 2rem;
}

.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	justify-content: center;
	gap: 1rem;
}
	@media screen and (min-width:700px) {
	
	.icons {
		justify-content: flex-start;
	}

	}

.icons i {
	font-size: 30px;
}
	@media screen and (min-width:700px) {

	.c2 {
		display: flex;
		gap: 2rem;
	}
	.c2 .title {
		width: 30%;
	}
	.c2 .text {
		flex: 1;
	}

	}


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

	.faq {
		font-size: 1.2rem;
	}

	}

/*q*/
.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;
	z-index:0;
}

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

/*a*/
.faq dd {
	padding: 0 1rem 1rem 2rem;
}
.openclose {
	cursor: pointer;
}


/*announcement*/
.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;
}

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

/*icon-bg2*/
.new .icon-bg2 {
	border-color: transparent;
	background: #2268ff;
	color: var(--primary-inverse-color);
}
/*icon-bg3*/
.new .icon-bg3 {
	border-color: transparent;
	background: #afa22a;
	color: var(--primary-inverse-color);
}
	@media screen and (min-width:700px) {
	.new {
		display: grid;
		grid-template-columns: auto 1fr;
	}

	}

/*text slide*/
.text-slide-wrapper {
	overflow-x: hidden;
	margin-top: calc(-1 * (1.6 * var(--space-large)));
}

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

.text-slide span {
	padding: 0 20px;
}
.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;
	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;
}

.bg-primary-color {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0) 0%, var(--primary-color) 30%);
	color: var(--primary-inverse-color);
	z-index:0;
}
.bg-primary-color2 {
    background:
        	url("../images/none.png");
    background-attachment: fixed;
    width: 100%;
    height: 100vh;	
    position: relative;
    overflow: hidden;
	z-index: 0;
}
	@media screen and (min-width:420px) {
	.bg-primary-color2 {
		background:
        	url("../images/none.png");
		background-attachment: fixed;
		position: relative;
    	overflow: hidden;
    	z-index:0;
	}
}

.bg1 {
		background:
		url("../images/none.png");
		background-attachment: fixed;
		/*position: relative;
		overflow: hidden;*/
		color: var(--base-color);
		z-index: -1;
}	

.bg2 {
	background: #fff;
}


.bg3 {
	background: #fff;
}

.bg4 {
	background-color: var(--base-color);
}


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

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

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

.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, 3fr);
	}

	}

.list-grid-simple a:hover {
	opacity: 1;
	transform: scale(1.05);
	/*background: var(--primary-inverse-color);
	color: var(--primary-color);*/
}


.list-grid1 .list * {margin: 0;padding: 0;}
	@media screen and (min-width:800px) {
	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 1vw;
	}

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

	}

.list-grid1 .list.bg-black {
	background: #333333;
	color: #fff;
}
.list-grid1 .list .hatena {
	position: absolute;
	left: -20px;
	top: -30px;			
	font-size: 60px;	
	line-height: 1;
	width: 250px;
	font-family: "MonteCarlo", cursive;
	opacity: 0.7;
	color: #777;
}
@media screen and (max-width:900px) {
	.list-grid1 .list .hatena {
		width: 150px;
    	height: auto;
	}

	}
.list-grid1 .list .hint {
	position: absolute;
	left: -20px;
	top: -30px;			
	font-size: 60px;	
	line-height: 1;
	width: 250px;
	font-family: "MonteCarlo", cursive;
	opacity: 0.8;
	color: #fff56f;
}
@media screen and (max-width:900px) {
	.list-grid1 .list .hint {
		width: 150px;
    	height: auto;
	}

	}
.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;
	margin-bottom: 1rem;
	position: relative;
}

.list-grid1 .list p {
	font-size: 1rem;
	line-height: 1.6;
	font-weight: normal;
}

.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;
	}
	}

.bg1 .highlight2 {
		font-size: 1.5rem;
		text-shadow: 0 0 20px rgba(37, 37, 37, 0.808),
                   0 0 30px rgba(37, 37, 37, 0.986),
                   0 0 50px rgba(0, 0, 0, 0.979);
	  }
	  @media screen and (min-width:600px) {
		.bg1 .highlight2 {
			font-size: 3rem;
			text-shadow: 0 0 20px rgba(37, 37, 37, 0.808),
					   0 0 30px rgba(37, 37, 37, 0.986),
					   0 0 50px rgba(0, 0, 0, 0.979);
		  }
	
		}


.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 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::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-slideup1 {
	margin-left: calc(-1 * var(--space-large));
	margin-right: calc(-1 * var(--space-large));
}

section > .bg-slideup1: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: 2rem;
	color: #fff;
}
.bg-slideup1 .image {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	padding: 5vw 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	color: #fff;
}

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

.jp-text {
	writing-mode: horizontal-tb;
	text-orientation: upright;
}

.en-text1 {
	writing-mode: horizontal-tb;
	font-size: 1rem;
}

.jp-text1 {
	writing-mode: horizontal-tb;
	text-orientation: upright;
	font-size: 2.5rem;
}

@media screen and (max-width:700px) {
	.en-text1 {
		font-size: 0.8rem;
	}	
	.jp-text1 {
		font-size: 1.2rem;
	}
}

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

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

 #eapage .bg-slideup1 .image {
	background-image: url("../images/bg_works.png");

}

.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: 3rem;
	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: 30%;
	margin-bottom: 1rem;
}
	@media screen and (min-width:600px) {
	.list-normal1 figure {
		margin-bottom: 0;
	}

	}

.list-normal1 h4 {
	font-size: 1.2rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}
	@media screen and (min-width:600px) {

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

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

.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;
}

.ta2 caption {
	font-weight: bold;
	padding: 0.5rem 1rem;
	background: #44679c;
	color: var(--base-color);
	margin-bottom: 1rem;
	border-radius: 5px;
}

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

.ta2 td, .ta2 th {
	word-break: break-all;
	background: #44679c;
	color: var(--base-inverse-color);
	text-align: left;
	padding: 0.5rem;
}
.ta2 th {
	width: 25%;
	text-align: center;
}

.product {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 150px;
    height: auto;
    margin-right: 20px;
    border-radius: 8px;
}

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

	.product-image {
		width: 300px;
	}
}

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

	.product-image {
		display:none;
	}
}

.product-details {
    flex: 1;
	position: relative; 
}

.product-summary .full-summary {
    display: block;
    margin-left: 20px;
    padding: 5px 10px;
    color: #232258;
    font-size: 1.1rem;
}

.product-summary .short-summary {
    display: none;
    margin-left: 20px;
    padding: 5px 10px;
    color: #232258;
    font-size: 1.1rem;
}

.product-summary .short-image {
    display: none;
}

@media screen and (max-width: 500px) {
    .product-summary .short-summary {
        display: block;
    }

    .product-summary .full-summary {
        display: none;
    }

    .product-summary .short-image {
        display: block;
        position: center;
    }
}

.product-summary.open .short-summary {
    display: none;
}

.product-summary.open .full-summary {
    display: block;
}



.product-name {
	color: var(--base-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.product-tags {
    margin-bottom: 10px;	
    line-height: 1.8; /* 行間を広げる */
}

.tag {
    display: inline-block;
    /* background:var(--base-color); */
    color:var(--base-inverse-color);
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 10px;
    font-size: 1rem;
}

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

.tagpurple{
	background:#ee82ee;
  }

.tagcoral{
  background:#ee8290;
}

.tagblue{
	background:#000080;
}

.taggreen{
	background:#008000;
}

.toggle-details {
    background: #00627a;
	color:var(--base-inverse-color);
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.toggle-details:hover {
    background-color: #0083a3;
	color:var(--base-inverse-color);
}

.product-description {
    display: block;
    margin-top: 10px;
}

.buy-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.buy-link:hover {
    background-color: #218838;
}

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

.producttable caption {
    font-weight: bold;
    padding: 0.5rem 1rem;
    background: var(--base-inverse-color);
    color: var(--base-color);
    margin-bottom: 1rem;
    border-radius: 5px;
}

.producttable th, .producttable td {
    word-break: break-word;
    text-align: left;
    padding: 0.5rem;
    color: var(--base-inverse-color);
    border: 1px solid #ccc;
}

.producttable th {
    text-align: center;
	background: #02023f;
    width: 25%;
}

.producttable td {
	background: #000080;
}

.descriptiontext1 {
    font-weight: bold;
    margin-left: 20px;
    padding: 5px 10px;
    color: #232258;
    font-size: 1.1rem;
}

.section-title {
    position: relative;
    font-size: 1.2rem;
    color: black;
    background: linear-gradient(to right, rgba(15, 155, 248, 0.3), rgba(8, 143, 233, 0)); /* 右側に行くほど薄く */
    border-bottom: 2px solid #949494; /* 薄い灰色の下線 */
    border-radius: 10px; /* 角を丸く */
    padding: 5px 10px;
    /* display: inline-block; */
}


.product-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.product-description.open {
    max-height: 10000px;
}

/* スライダーコンテナのスタイル */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
}

/* スライダーの内容 */
.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

/* 各スライド */
.slider-item {
    flex: 0 0 100%; /* 1スライドの幅 */
    box-sizing: border-box;
    padding: 0px;
}

/* 矢印のスタイル */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.slider-arrow.left {
    left: 10px;
}

.slider-arrow.right {
    right: 10px;
}

.padding0 {
	padding: 0 !important;
}
.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}


.search-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 250px;
    overflow: hidden;
    border-radius: 3px;
    background-color: #f2f2f2;
}

.search-form input {
    height: 45px;
    padding: 5px 15px;
    border: none;
    box-sizing: border-box;
    background-color: #f2f2f2;
    font-size: 1em;
    outline: none;
}

.search-form input::placeholder {
    color: #777777;
}

.search-form button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 45px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.search-form button::after {
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    content: '';
}


/*etc*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.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;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !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.75em;}
.large {font-size: 2em; 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;}
	@media screen and (min-width:900px) {

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

	}




	/*追加分*/
/* 背景動画（必要な場合） */
#background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
  }
  
  /* 縦棒グラフ全体のコンテナ（相対配置にして中に重ねる要素の基準に） */
  .vertical-bar-container {
	position: relative; /* SVG を重ねるため */
	display: flex;
	gap: 20px;
	align-items: flex-end;
	justify-content: center;
	height: 200px;       /* グラフ全体の高さ */
	width: 80%;
	box-sizing: border-box;
	margin: 50px auto;
	padding-bottom: 30px;
  }
  
  /* 各縦棒自体（セグメントの入れ物） */
  .vertical-bar {
	position: relative;
	width: 60px;
	/* 下詰めにするために flex コンテナとして利用 */
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden; /* アニメーション時にはみ出さないように */
  }
  
  /* 各積み重ねセグメント */
  /* HTML で inline style により --segment-height（例："40%"）と background-color を指定 */
  .bar-segment {
	height: 0; /* 初期状態は 0 から */
	/* キーフレームアニメーションで指定した高さまで伸ばす */
	animation: growSegment 1s forwards;
  }
  
  /* セグメントが下から上に伸びるアニメーション */
  @keyframes growSegment {
	from {
	  height: 0;
	}
	to {
	  height: var(--segment-height);
	}
  }
  
  /* 棒の下部に表示するラベル */
  .vertical-label {
	position: absolute;
	bottom: -40px;
	width: 100%;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
  }
  
  /* 棒の中央に表示する数値（例：合計％） */
  .vertical-percentage {
	position: absolute;
	top: 50%;
	width: 100%;
	text-align: center;
	font-size: 16px;
	color: white;
	transform: translateY(-50%);
  }
  
  /* SVG（線グラフ）をバーグラフ上に重ねる */
  .line-graph {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none; /* マウス操作を邪魔しない */
  }
  
  /* 線グラフ内のポリラインのスタイル */
  /* stroke-dasharray/dashoffset を使って「左から右へ描かれる」アニメーション */
  .line-graph polyline {
	fill: none;
	stroke: #FF0;      /* 線の色（お好みで変更） */
	stroke-width: 2;
	stroke-dasharray: 300;  /* ポリラインの全長（※大体の数値） */
	stroke-dashoffset: 300;
	animation: drawLine 2s forwards;
  }
  
  @keyframes drawLine {
	to {
	  stroke-dashoffset: 0;
	}
  }
  
/* ===================================================
course
=================================================== */
.course {
	background-color: #ffffff;
  }

  .course-item {
	width: 100%;
  }
  
  .course-item img {
	cursor: pointer;
  }
  
  /* =====================================================
  コース画像拡大モーダル （ここから本PEN のコア）
  ===================================================== */
  #grayDisplay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 100% !important;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
  }
  
  #grayDisplay img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 90%;
	max-height: 90%;
	height: 90%;
	object-fit: contain;
  }