@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("slide.css");
@import url("inview.css");

/* サイト全体のカラー設定 */
:root {
	--base-color: #fff;
	--base-inverse-color: #323232;
	--primary-color: #83e7ec;
	--primary-inverse-color: #323232;
	--space-large: 70px 20px 100px 20px;
}

/* アニメーション設定 */
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@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: 20px;
	}
}

@media screen and (min-width:1600px) {
	html, body {
		font-size: 22px;
	}
}

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

/* 要素リセット */
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 {
	max-width: 1200px;
	overflow-x: hidden;
	padding: var(--space-large);
	margin-inline: auto;
	position: relative;	
}

/* 装飾ボーダー - 現在未使用 */
section::after {
	border-top: 2px solid #000;
	border-radius: 5px;
}

/* リンク設定 */
a {
	color: inherit;
	transition: 0.3s;
}

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

/* ローディング - 新しいデザイン */
@keyframes planeMove {
	0% {
		transform: translateX(-150px);
	}
	100% {
		transform: translateX(calc(100vw + 150px));
	}
}


@keyframes progress {
	0% {
		transform: scaleX(0);
	}
	100% {
		transform: scaleX(1);
	}
}

@keyframes logoFade {
	0%, 20% {
		opacity: 0;
		transform: translateY(20px);
	}
	40%, 100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes textSlide {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	50% {
		opacity: 1;
		transform: translateY(0);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	animation: fadeOut 1s ease 3s forwards;
	overflow: hidden;
}

#loading img {
	width: 280px;
	margin-bottom: 30px;
	animation: logoFade 1s ease-out;
	filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.loading-text {
	font-size: 18px;
	color: #333;
	margin-bottom: 40px;
	font-weight: 600;
	animation: textSlide 1s ease-out 0.5s both;
}

.progress-container {
	position: relative;
	width: 300px;
	height: 6px;
	border-radius: 3px;
	background: rgba(255,255,255,0.8);
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	margin-bottom: 20px;
}

.progress-bar {
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #83e7ec 0%, #4facfe 50%, #00c9ff 100%);
	animation: progress 2.5s ease-in-out;
	transform-origin: left;
	border-radius: 3px;
}

.loading-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.airplane {
	position: absolute;
	top: 30%;
	left: 0;
	font-size: 24px;
	color: #4a90e2;
	animation: planeMove 3s linear infinite;
	z-index: 1;
}

.clouds {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.3;
}

.cloud {
	position: absolute;
	color: #bdc3c7;
	font-size: 30px;
	animation: cloudFloat 6s ease-in-out infinite;
}

.cloud:nth-child(1) {
	top: 15%;
	left: 20%;
	animation-delay: 0s;
}

.cloud:nth-child(2) {
	top: 25%;
	right: 15%;
	animation-delay: 2s;
}

.cloud:nth-child(3) {
	top: 40%;
	left: 10%;
	animation-delay: 4s;
}

@keyframes cloudFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}

@media screen and (max-width: 768px) {
	#loading img {
		width: 220px;
	}
	
	.loading-text {
		font-size: 16px;
	}
	
	.progress-container {
		width: 250px;
	}
	
	.airplane {
		font-size: 20px;
	}
	
	.ship {
		font-size: 18px;
	}
}

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

/* ヘッダー */
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;
	background-color:#ffffff;
}

@media screen and (min-width:700px) {
	header {
		height: 90px;
	}
}

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

@media screen and (min-width:700px) {
	#logo img {
		width: 200px;
	}
}

/* ヘッダー内メニュー */
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: 0.8rem;
		padding: 0.5rem 0.5rem;
	}
	
	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: 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;}

/* 開閉メニュー */
@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;
}

/* メイン画像 */
#mainimg {
	background: var(--base-color) url("../images/mainimg_r.jpg") no-repeat center center / cover;
	width: 100%;
	min-height: 500px;
	position: relative;
	overflow: hidden;
	padding-top: 60px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding-bottom: 50px;
}
  
@media screen and (min-width:420px) {
	#mainimg {
	  background: var(--base-color) url("../images/mainimg_r.jpg") no-repeat center center / cover;
	  min-height: 600px;
	  padding-top: 90px;
	}
}
  
#mainimg-content {
	display: flex;
	flex-direction: column;
	padding-left: 5vw;
	padding-right: 5vw;
	width: 100%;
	height: 100%;
	gap: 30px;
}
  
#mainimg .text {
	font-size: 28px;
	font-weight: 800;
	line-height: 1.8;
	color: #ffffff;
	margin-top: 20px;
}
  
@media screen and (min-width:420px) {
	#mainimg .text {
	  font-size: 3.6vw;
	  text-align: left;
	  margin-top: 30px;
	  margin-bottom: 20px;
	}   
}
  
/* ボタン部分 */
#mainimg .btn {
	font-weight: 600;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 30px;
}
  
#mainimg .btn a {
	display: block;
	text-decoration: none;
	padding: 0.8rem 2rem;
	white-space: nowrap;
	width: auto;
	max-width: 100%;
	font-size: 1.8vw;
}
  
#mainimg .btn a:hover {
	opacity: 1;
	transform: scale(1.05);
}
  
@media screen and (max-width: 768px) {
	#mainimg .btn {
		flex-direction: column;
		width: auto;
		align-items: flex-start;
	}
	
	#mainimg .btn p {
		width: auto;
		max-width: 100%;
	}
	
	#mainimg .btn a {
		width: auto;
		display: inline-block;
	}
}

@media screen and (max-width: 420px) {
	#mainimg .btn {
		width: auto;
		max-width: 100%;
	}
	
	#mainimg .btn a {
		padding: 0.8rem 1.5rem;
		font-size: 14px;
	}
}

/* ボタン個別設定 */
#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;
	cursor: pointer;
}
  
#mainimg .btn i {
	transform: scale(1.4);
	padding-right: 0.8rem;
}

/* PDFプレビュー部分 */
.pdf-thumbnail-wrapper {
	width: 100%;
	height: calc(100% - 30px);
	margin-top: 30px;
	background-color: #f5f5f5;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.pdf-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 5px;
}

.pdf-preview-container {
	position: absolute;
	bottom: 50px;
	right: 50px;
	z-index: 10;
}

.pdf-preview {
	width: 180px;
	height: 280px;
	border: 1px solid var(--primary-color);
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	background-color: var(--primary-color);
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	transition: transform 0.3s, box-shadow 0.3s;
	position: relative;
	overflow: hidden;
}

.pdf-preview:hover {
	transform: translateY(-5px) scale(1.03);
	box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.pdf-title {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	padding: 8px;
	font-size: 14px;
	font-weight: bold;
	color: #444;
	text-align: center;
	border-bottom: 1px solid var(--primary-color);
	cursor: pointer;
	pointer-events: auto;
	height: 30px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 768px) {
	.pdf-preview-container {
		position: absolute;
		bottom: 50px;
		right: 50px;
		z-index: 10;
	}
}

.pdf-overlay {
	position: absolute;
	top: 30px;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	cursor: pointer;
}

.pdf-preview iframe {
	width: 100%;
	height: calc(100% - 30px);
	border: none;
	margin-top: 30px;
	position: relative;
	z-index: 1;
	pointer-events: none;
}

.pdf-preview:hover .pdf-overlay {
	background-color: rgba(0, 0, 0, 0.05);
}

/* PDF効果 */
.pdf-preview::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.2);
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
}
  
.pdf-preview:hover::after {
	opacity: 1;
}
  
.pdf-preview::before {
	content: '\f1c1';
	font-family: "Font Awesome 6 Free";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0px;
	color: rgba(0, 0, 0, 0.5);
	z-index: 5;
	transition: font-size 0.3s;
	pointer-events: none;
}
  
.pdf-preview:hover::before {
	font-size: 40px;
}

/* モーダルビューア */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}
  
.modal-content {
	width: 90%;
	height: 90%;
	position: relative;
	background: white;
	border-radius: 8px;
	overflow: hidden;
}
  
.modal-content iframe {
	width: 100%;
	height: 100%;
	border: none;
}
  
.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: #ff4444;
	color: white;
	border: none;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	font-size: 20px;
	cursor: pointer;
	z-index: 1001;
	display: flex;
	justify-content: center;
	align-items: center;
}
  
.close-btn:hover {
	background-color: #cc0000;
}
  
/* レスポンシブ対応 */
@media (max-width: 768px) {
	.pdf-preview-container {
		position: absolute;
		bottom: 50px;
		right: 50px;
		z-index: 10;
	}
	
	#mainimg .btn {
	  flex-direction: column;
	  gap: 10px;
	}
}
  
@media (max-width: 420px) {
	#mainimg {
	  min-height: 450px;
	}
	
	#mainimg .text {
	  font-size: 24px;
	}
	
	#mainimg .btn {
	  flex-direction: column;
	}
}

@media (max-width: 768px) {
	#mainimg {
	  margin-bottom: 50px;
	}
	
	#mainimg .btn {
	  margin-bottom: 30px;
	}
}

/* メインコンテンツ */
main {
	flex: 1 0 auto;
	overflow-x: hidden;
}

/* 見出し設定 */
main h2 {
	margin: 0;padding: 0;
	font-size: 38px;
	font-weight: 800;
	margin-bottom: 2vw;
	display: flex;
	flex-direction: column-reverse;
	letter-spacing: 0.1em;
	position: relative;
}

@media screen and (min-width:700px) {
	main h2 {
		font-size: 38px;
	}
}

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

main h2 span {
	font-size: 14px;
	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: 140px;
		left: 40px;
	}
}

main h4{
	margin: 0;padding: 0;
	font-size: 19px;
	font-weight: 600;
	display: flex;
	flex-direction: column-reverse;
	letter-spacing: 0.1em;
	position: relative;
}

ol {
	margin-left:1em;
}

li {
	left:1em; text-indent: 0.5em;
}

/* フッター */
footer {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	padding: 32px;
	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: 32px;
}

@media screen and (min-width:700px) {
	footer {
		flex-direction: row;
		gap: 64px;
		padding: 64px;
	}

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

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

footer ul {
	margin: 0;padding: 0;list-style: none;
	margin-bottom: 32px;
}

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

/* SNSアイコン */
.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;
}


/* FAQ設定 */
@media screen and (min-width:700px) {
	.faq {
		font-size: 1rem;
	}
}

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

.faq dt::before {
	content: "Q";
	font-family: "Arial", sans-serif;
	margin-right: 0.8rem;
	background: var(--primary-color);
	color: #fff;
	border-radius: 3px;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	font-weight: bold;
	flex-shrink: 0;
}

/* FAQ回答スタイル */
.faq dd {
	padding: 0 1rem 1rem 3.7rem;
	position: relative;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: flex-start;
}

.faq dd .a-icon {
	background: var(--base-inverse-color);
	color: var(--base-color);
	border-radius: 3px;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	font-weight: bold;
	margin-right: 0.8rem;
	flex-shrink: 0;
}

.faq dd .answer-text {
	flex: 1;
}

.faq dd::before {
	content: "A";
	font-family: "Arial", sans-serif;
	position: absolute;
	left: 1rem;
	top: 0;
	background: #df62af;
	color: #ffffff;
	border-radius: 3px;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	font-weight: bold;
}

/* FAQ開閉アイコン */
.faq dt::after {
	content: "\f067";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--primary-color);
	transition: all 0.3s ease;
}

.faq dt.open::after {
	content: "\f068";
}

.faq dt:hover {
	background: #f9f9f9;
}

.faq dt:hover::after {
	color: var(--primary-inverse-color);
}

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

/* テキストスライド */
.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: 15vw;
	opacity: 0.05;
}

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

/* 背景色設定 */
.bg-primary-color {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}

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

.bg1_wrapper1{
	width: 100%;
	background-color: var(--base-inverse-color);
}

.bg1_inner {
	padding: 1vw 5vw 1vw 5vw;
	background-color: var(--base-inverse-color);
	color: var(--base-color);
}

.bg2 {
	background: #f3f3e9;
}

.bg2_wrapper{
	width: 100%;
    background-color: #f3f3e9;
}

.bg2_inner {
	padding: 1vw 5vw 1vw 5vw;
	background-color: #f3f3e9;	
}

.bg2_inner2{
	padding: 1vw 5vw 1vw 5vw;
	background-color: #f3f3e9;	
}

.bg3 {
	background: #fff;
}

/*bg-black内のボックスへの追加設定*/
.list-grid1 .list.bg-black {
	background: #111;
	color: #fff;
}

/*ボックス内のh4見出し*/
.list-grid1 .list h4 {
	font-size: 22px;
	line-height: 1.6;
	margin-bottom: 16px;
	position: relative;
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 14px;
	line-height: 1.6;
	font-weight: normal;
}

/*bg-black内のp要素への追加設定*/
.list-grid1 .list.bg-black p {
	color: #999;
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure.icon {
	margin: 0 auto;
	width: 100px;
	margin-top: -40px;
}

/*bg1内のfigureへの追加設定*/
.bg1 .list-grid1 .list figure.icon {
	filter: grayscale(100%) brightness(90%);
	margin-bottom: 16px;
}

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

	/*ボックス内のfigure画像*/
	.list-grid1 .list figure.icon {
		width: 150px;
		margin-top: -50px;
	}

	}/*追加指定ここまで*/


/* リストスタイル */
.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: 19px;
	line-height: 1.5;
	margin-bottom: 1rem;
}

@media screen and (min-width:600px) {
	.list-normal1 h4 {
		font-size: 32px;
		line-height: 1.8;
	}
}

/* タイムライン設定 */
.list-normal1.flow {
	position: relative;
	margin-left: 30px;
}

.list-normal1.flow::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 25px;
	width: 3px;
	background: linear-gradient(180deg, 
		rgba(129, 232, 237, 0.8) 0%,
		rgba(50, 50, 50, 0.2) 100%);
	border-radius: 3px;
	z-index: 0;
}

.list-normal1.flow .list {
	padding-left: 60px;
	position: relative;
	margin-bottom: 40px;
	transition: all 0.5s ease-out;
	opacity: 0.5;
	transform: translateY(30px);
	background: transparent;
	box-shadow: none;
}

.list-normal1.flow .list.visible {
	opacity: 1;
	transform: translateY(0);
}

.list-normal1.flow .list::before {
	content: '';
	position: absolute;
	left: 3px;
	top: 3px;
	height: 46px;
	width: 46px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--primary-color);
	z-index: 2;
	transition: all 0.3s ease;
	box-shadow: 0 0 0 5px #fff;
}

.list-normal1.flow .list::after {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 5px;
	top: 5px;
	height: 46px;
	width: 46px;
	border-radius: 50%;
	text-align: center;
	line-height: 46px;
	font-size: 22px;
	color: var(--primary-color);
	z-index: 3;
	transition: all 0.3s ease;
}

.list-normal1.flow .list:nth-child(1)::after { content: "\f5da"; } 
.list-normal1.flow .list:nth-child(2)::after { content: "\f783"; } 
.list-normal1.flow .list:nth-child(3)::after { content: "\f0e0"; } 
.list-normal1.flow .list:nth-child(4)::after { content: "\f4fc"; } 
.list-normal1.flow .list:nth-child(5)::after { content: "\f0f3"; } 
.list-normal1.flow .list:nth-child(6)::after { content: "\f53a"; } 

.list-normal1.flow .list:hover::before {
	transform: scale(1.2);
	box-shadow: 0 0 0 5px #fff, 0 0 15px rgba(129, 232, 237, 0.8);
	border-color: var(--base-inverse-color);
}

.list-normal1.flow .list:hover::after {
	transform: scale(1.1);
	color: var(--base-inverse-color);
}

.list-normal1.flow .list h4 {
	color: var(--base-inverse-color);
	font-weight: bold;
	margin-bottom: 1rem;
	position: relative;
}

.list-normal1.flow .list .text {
	background: #fff;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	position: relative;
}

.list-normal1.flow .list .text::before {
	content: '';
	position: absolute;
	left: -10px;
	top: 15px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid #fff;
}

.list-normal1.flow .list h4 {
	border-bottom: 2px solid var(--primary-color);
	padding-bottom: 10px;
	margin-bottom: 15px;
	color: var(--base-inverse-color);
}

@media screen and (max-width: 768px) {
	.list-normal1.flow {
		margin-left: 10px;
	}
	
	.list-normal1.flow .list {
		padding-left: 55px;
	}
	
	.list-normal1.flow .list::before,
	.list-normal1.flow .list::after {
		height: 36px;
		width: 36px;
		line-height: 36px;
		font-size: 18px;
	}
}

/* PDFダウンロードリンクスタイル */
.pdf-download-link {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pdf-download-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
	background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
}

.pdf-download-link i {
	margin-right: 8px;
	font-size: 1.1em;
}

/* 提出書類のPDFリンク */
.ta1 ol li .pdf-download-link {
	font-size: 0.9em;
	padding: 6px 12px;
	margin-left: 10px;
}

/* テーブル設定 */
.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-top: 5vw;
	margin-bottom: 32px;
}

.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: 8px;
}

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

.frame-cont-line{
	border-radius: 2px;
	border: 1px solid #333;
}

.frame-cont-body{
	padding: 3vw;
}

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

/* ユーティリティクラス */
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
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;}
}