@charset "utf-8";

/*=======================================
body
=========================================*/
body{
	margin: 0 0 0;
}


/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
	/*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #8edef2;
	text-align: center;
	color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
	width: 300px;
}

/* fadeUpをするアイコンの動き */

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*========= ヘッダー ===============*/

#header {
	/*fixedで上部固定*/
	position: fixed;
	height: 70px;
	width: 100%;
	z-index: 500;
	/*最前面へ*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #d6f7ff;
	color: #000;
	text-align: center;
	padding: 20px;
}

/*　上に上がる動き　*/

#header.UpMove {
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
	from {
		opacity: 1;
		transform: translateY(0);
	}

	to {
		opacity: 0;
		transform: translateY(-100px);
	}
}

/*　下に下がる動き　*/

#header.DownMove {
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
	from {
		opacity: 0;
		transform: translateY(-100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position: fixed;
	z-index: 999;
	/*ナビのスタート位置と形状*/
	top: -120%;
	left: 0;
	width: 100%;
	height: 100vh;
	/*ナビの高さ*/
	background: #8edef2;
	/*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
	top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
	/*ナビの数が増えた場合縦スクロール*/
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	/*表示する高さ*/
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
	/*ナビゲーション天地中央揃え*/
	position: absolute;
	z-index: 999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/

#g-nav li {
	list-style: none;
	text-align: center;
}

#g-nav li a {
	color: #333;
	text-decoration: none;
	padding: 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
	position: fixed;
	z-index: 9998;
	/*ボタンを最前面に*/
	top: 10px;
	right: 10px;
	cursor: pointer;
	width: 70px;
	height: 70px;
}
/*ボタン内側*/
.openbtn span {
	display: inline-block;
	transition: all .4s;
	/*アニメーションの設定*/
	position: absolute;
	left: 14px;
	height: 2px;
	border-radius: 5px;
	background: #000000;
	width: 45%;
}


.openbtn span:nth-of-type(1) {
	top: 13px;
}

.openbtn span:nth-of-type(2) {
	top: 19px;
}

.openbtn span:nth-of-type(3) {
	top: 25px;
}

.openbtn span:nth-of-type(3)::after {
	content: "Menu";
	/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top: 5px;
	left: -2px;
	color: #000;
	font-size: 0.7rem;
	text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
	top: 14px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
	top: 26px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
	content: "Close";
	/*3つ目の要素のafterにClose表示を指定*/
	transform: translateY(0) rotate(-45deg);
	top: 5px;
	left: 4px;
}

/*========= トップ画像 ===============*/
.topimg {
	position: relative;
	width: 100%;
	height: 100vh;
	/* スマホ向けに全画面表示 */
	background-image: url('../img/background2.png');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	/* スクロールで画像が潜る効果 */
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width:751px) {
	.topimg{
		display: none;
	}
	.scrolldown4{
		display: none;
	}
}

/*========= スクロールダウン ===============*/
/*スクロールダウン全体の場所*/
.scrolldown4 {
	/*描画位置※位置は適宜調整してください*/
	position: absolute;
	bottom: 1%;
	right: 50%;
	/*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
	0% {
		bottom: 1%;
	}

	50% {
		bottom: 3%;
	}

	100% {
		bottom: 1%;
	}
}

/*Scrollテキストの描写*/
.scrolldown4 span {
	/*描画位置*/
	position: absolute;
	left: -20px;
	bottom: 10px;
	/*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	right: -6px;
	/*矢印の形状*/
	width: 1px;
	height: 20px;
	background: #eee;
	transform: skewX(-31deg);
}

.scrolldown4:after {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	right: 0;
	/*矢印の形状*/
	width: 1px;
	height: 50px;
	background: #eee;
}

/*========= main ===============*/
main section{
	margin-top: 80px;
}
/*main h1*/
h1 {
	position: relative;
	padding: 0.05em 0;
}

h1:after {
	content: "";
	display: block;
	height: 4px;
	background: -webkit-linear-gradient(to right, rgb(139, 221, 250), transparent);
	background: linear-gradient(to right, rgb(139, 221, 250), transparent);
}
@media (max-width: 751px) {
	h1{
		font-size: 20px;
	}
}

@media (min-width: 750px) {
	.box{
	display: flex;
	flex-direction: row-reverse;
}
.box-item{
	width: 50%;
	margin: 0px 20px;
}
}
@media (max-width: 751px) {
	.box-item{
		margin: 20px 15px;
	}
}

h2{
	border: solid 3PX #8edef2;
	padding: 0.5em;
	border-radius: 0.5em;
}
.box-item p{
	font-size: 20px;
	text-align: center;

}

/*ポートフォリオ*/
/* 基本デザイン */
.portfolio {
	padding: 60px 20px;
}

/* グリッドレイアウト */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* アイテム */
.portfolio-item {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	opacity: 0;
	transform: translateX(-100px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	display: flex;
	flex-direction: column;
	padding-top: 20px;
	/* 画像とテキストを縦に配置 */
}

/* アニメーションが有効になるクラス */
.portfolio-item.visible {
	opacity: 1;
	transform: translateX(0);
}
.portfolio-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
/* 画像 */
.portfolio-thumb {
	width: 100%;
	height: 300px;
	/* 画像の高さを自動調整 */
	object-fit: cover;
}

/* コンテンツ部分（テキスト） */
.portfolio-content {
	padding: 15px;
	background-color: #fff;
	text-align: center;
}

.portfolio-name {
	font-size: 1.4rem;
	color: #222;
	font-weight: bold;
	margin-bottom: 8px;
}

.portfolio-name:hover {
	color: #8edef2;
}

/* カテゴリー */
.portfolio-category {
	font-size: 1rem;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	background-color: #8edef2;
	padding: 5px 15px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 10px;
}

/* 担当者 */
.portfolio-assignee {
	font-size: 0.9rem;
	color: #777;
	margin-top: 10px;
	font-style: italic;
}

/* --- スマホ対応 --- */
@media (max-width: 768px) {
	.portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	.portfolio-title {
		font-size: 2rem;
	}
}
/*お知らせ*/
	.news-list {
	margin-top: 2rem;
	}

	.news-item {
	display: flex;
	align-items: center;
	padding: 1rem;
	border-bottom: 1px solid #ddd;
	}

	.news-date {
	width: 110px;
	color: #444;
	font-size: 0.9rem;
	}

	.news-category {
	padding: 0.3rem 0.6rem;
	background: #4EA5FF;
	color: #fff;
	border-radius: 6px;
	margin-right: 1rem;
	font-size: 0.8rem;
	white-space: nowrap;
	}

	.news-title {
	flex: 1;
	}

	
/*採用*/
@media (min-width: 751px) {
	.recruit img{
	width: 50%;
}
}
@media (max-width: 750px) {
	.recruit img{
		width: 100%;
	}
}
.recruit p{
	margin: 0 30px;
}

/*お問い合わせ*/
.notice {
	margin-top: 25px;
	padding: 18px;
	border-left: 6px solid #ff4e4e;
	border-radius: 6px;
	margin-left: 3.5%;
}
@media (min-width: 751px) {
	.notice{
		width: 40%;
	}
}
#contact p{
	margin-left: 3.5%;
	font-size: 20px;
}

/*団体概要*/
.group dl {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	text-align: left;
	margin-bottom: 5rem;
}

.group dt {
	width: 20%;
	margin: 0;
	border-bottom: 1px solid #ccc;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.2rem;
	padding: 1.2em 1em 1em 0;
	vertical-align: middle;
	align-items: center;
}

.group dd {
	width: 80%;
	margin: 0;
	padding: 1em 1em 1em 0;
	border-bottom: 1px solid #ccc;
	vertical-align: middle;
	line-height: 2.7rem;
	line-height: 1.8;
}


/*リクルート*/
#mission p{
	font-size: 23px;
	margin-left: 3.5%;
}
.recruit-topimg {
	position: relative;
	width: 100%;
	height: 100vh;
	/* スマホ向けに全画面表示 */
	background-image: url('../img/recruit-background.png');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	/* スクロールで画像が潜る効果 */
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 751px) {
	.recruit-topimg{
		display: none;
	}
	
}
.wanted ul li {
	position: relative;
	list-style-type: none !important;
	/*ポチ消す*/
	padding: 0.5em 0.5em 0.5em 0.5em;
	margin-bottom: 5px;
	line-height: 1.5;
	background: #dbebf8;
	vertical-align: middle;
	color: #000000;
	border-radius: 15px 0px 0px 15px;
	/*左側の角丸く*/
}

.wanted li {
	margin-top: 1%;
}

.wanted .li-2 {
	background: #c09cf7;
}

.wanted ul a {
	color: #000;
	text-decoration: none;
}

.wanted ul li:before {
	display: inline-block;
	vertical-align: middle;
	/*以下白丸つくる*/
	content: '';
	width: 1em;
	height: 1em;
	background: #fff;
	border-radius: 50%;
	margin-right: 8px;
}

.wanted li:hover {
	transform: scale(1.01);
}

.wanted {
	padding-left: 3%;
	font-size: 25px;
	padding-top: 1%;
	padding-right: 3%;
}
.entry span {
	padding-top: 1%;
	padding-left: 3%;
	font-size: 30px;
	font-family: 'メイリオ';
}
.faq {
	font-size: 20px;
	color: #000;
	padding-left: 3%;
}

.faq .qa-006 p {
	color: #000;
}

.faq .qa-006 summary {
	color: #000;
}

.faq .qa-006 summary::after {
	border-bottom: 3px solid #000;
	border-right: 3px solid #000;
}
.qa-006 {
	max-width: 80%;
	margin-bottom: 5px;
	border-bottom: 2px solid #f06aff;
}

.qa-006 summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em 1em 3em;
	color: #e6e6e6;
	font-weight: 600;
	cursor: pointer;
}

.qa-006 summary::before,
.qa-006 p::before {
	position: absolute;
	left: 1em;
	font-weight: 600;
	font-size: 1.3em;
}

.qa-006 summary::before {
	color: #75bbff;
	content: "Q";
}

.qa-006 summary::after {
	transform: translateY(-25%) rotate(45deg);
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-bottom: 3px solid #e6e6e6b3;
	border-right: 3px solid #e6e6e6b3;
	content: '';
	transition: transform .5s;
}

.qa-006[open] summary::after {
	transform: rotate(225deg);
}

.qa-006 p {
	position: relative;
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: .3em 3em 1.5em;
	color: #e6e6e6;
	transition: transform .5s, opacity .5s;
}

.qa-006[open] p {
	transform: none;
	opacity: 1;
}

.qa-006 p::before {
	color: #ff8d8d;
	line-height: 1.2;
	content: "A";
}

.qa-006 p a {
	color: #f06aff;
}

@media screen and (max-width: 640px) {
	.qa-006 {
		max-width: 95%;
	}
}

@media screen and (min-width: 641px) {
	.pc-none {
		display: none;
	}
}
@media screen and (max-width: 640px) {
	.sm-none {
		display: none;
	}
}

/*プライバシーポリシー*/
.terms-container {
	max-width: 900px;
	margin: 0 auto;
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	line-height: 1.8;
}
.terms-container h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 1.8rem;
}
.terms-section {
	margin-bottom: 30px;
}

.terms-section h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
	border-left: 4px solid #4a90e2;
	padding-left: 10px;
}

.terms-list {
	margin-left: 20px;
}

.terms-list li {
	margin-bottom: 8px;
}

@media (max-width: 768px) {
	.terms-container {
		padding: 20px;
	}
}

/*========= ボタン ===============*/
/* ボタン共通設定 */
.btn04 {
    /*線の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	display:inline-block;
    padding: 10px 30px;
	
	color:#000;
	border:1px solid #ccc;
    text-decoration: none;
    outline: none;
    /*はみ出す背景色を隠す*/
 	overflow: hidden;
}

/*hoverした際のボタンの形状*/
.btn04:hover {
	color:#000;
	border-color: transparent;
    /*色の変化を遅らせる*/
	transition-delay: .6s;
}

/*線の設定*/
.btn04 span{
    display: block;
    z-index: 2;
}

/*== 線から塗りに変化（左から右） */

/*線の設定*/
.borderleft span::before,
.borderleft span::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    width:0;
    height:1px;
    /*線の形状*/
    background: #333;
    /*アニメーションの設定*/
	transition: all .3s;
}

/*左上線*/
.borderleft span::before {
    left:0;
    top:0;
}

/*左下線*/
.borderleft span::after {
    left:0;
    bottom:0;
}

/*hoverをすると線が伸びる*/
.borderleft:hover span::before,
.borderleft:hover span::after {
    width: 100%;
}

/*背景の設定*/
.borderleft::before{
	content: '';
    /*絶対配置で線の位置を決める*/
	position: absolute;
	left: 0;
    bottom:0;
	z-index: -1;
    /*背景の形状*/
	height: 100%;
	width: 0;
	background:#8edef2;
    /*アニメーションの設定*/
	transition: all .3s;
}

/*hoverをすると背景が伸びる*/
.borderleft:hover::before{
	width: 100%;
    /*0.4秒遅れてアニメーション*/
	transition-delay: .4s;
}


/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn,
a.btn,
button.btn {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn--orange,
a.btn--orange {
	color: #000;
	background-color: #8edef2;
}

.btn--orange:hover,
a.btn--orange:hover {
	color: #000;
	background: #8edef2;
}

a.btn--radius {
	border-radius: 100vh;
}

/*========= footer ===============*/
footer ul {
	padding: 0;
	list-style: none;
}

footer a {
	color: #4b5564;
	text-decoration: none;
}

footer a:hover {
	color: #000;
}

footer hr {
	height: 1px;
	border: 0;
	border-top: 1px solid #e5e7eb;
}

.grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.footer {
	padding: 2rem;
	font-size: 15px;
	color: #4b5564;
	background: #fff;
}

.footer__navi-heading {
	font-weight: 600;
}

.footer__logo {
	display: inline-block;
	margin-bottom: 2rem;
}

.footer__navi li {
	margin-bottom: 0.75rem;
}

.footer__social a {
	display: inline-block;
	width: 24px;
	opacity: 0.7;
	margin: 10px 30px;
}

.footer__social a:not(:last-child) {
	margin-right: 20px;
}

@media (min-width: 768px) {
	.md-flex {
		display: flex;
	}

	.md-justify-between {
		justify-content: space-between;
	}

	.grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
