@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=M+PLUS+Rounded+1c:wght@100;300;400;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');


@import url("slide.css");
@import url("inview.css");


:root {
	--primary-color: #707070;		
	--primary-inverse-color: #fff;	
	
	--space-large: 8vw;			
	--space-small: 2vw;			
}

@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

body * {box-sizing: border-box;}

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

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

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

	}

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

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

	}


body {
	margin: 0;padding:0;
	font-family: "Noto Serif JP", serif;
	background-color: #60c7f3;
	color: #000;	
	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;

}

iframe {width: 100%;}

input {font-size: 1rem;}

section {
	overflow-x: hidden;
	padding: var(--space-large);
	margin-top: 100px;	
	font-family: "Noto Serif JP", serif;
}

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


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

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

header {
	display: flex;					/*flexボックスを使う指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	justify-content: space-between;
	height: 70px;					/*ヘッダーの高さ*/
	padding: 1vw 3vw;				/*ヘッダー内の余白。上下、左右への順番。*/
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
    position: absolute;
    z-index: 1;
    width: 100%;
	color: #000;
}

body:not(.home) header {
	margin-bottom: var(--space-large);
}

header nav ul {display: none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
		
	/*メニューブロック全体の設定*/
	header > nav > ul {
		margin-right: 10vw;	
		display: flex;		
	}

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

	}

header nav ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	
	font-family: "Noto Serif JP", serif;
}
header nav ul ul {
	position: absolute;z-index: 100;
}
header nav ul ul a {
	background: #ffffff;				
	margin-top: 4px;				
	border: 2px solid var(--primary-color);	
	border-radius: 100px;	
	color: #111;
}
#logo img {display: block;}
#logo {
	margin: 0;padding: 0;
	width: 40vw;	
	position: relative;z-index: 1;
	left: 2vw;
	top: 6vw;	
}
	@media screen and (max-width:770px) {
	#logo {top: 0;width: 60px;	}
}
	@media screen and (min-width:900px) {
	#logo {top: 10;width: 100px;	}
}
#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;	
}

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

/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	max-width: 800px;
	height: 100%;
	padding: 90px 10vw 50px;		
	background: var(--primary-color);	
	color: var(--primary-inverse-color);					
	animation: animation1 0.2s both;
	font-family: "Noto Serif JP", serif;	
}
.small-screen #menubar ul ul {
	margin: 2rem;	
}
.small-screen #menubar nav ul li {
	margin: 1rem 0;			
	border-radius: 5px;	
}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;
}
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 0;		
	right: calc(var(--space-small) + 5px);		/*右からの配置場所*/
	width: 60px;		/*幅*/
	height: 60px;		/*高さ。基本的にheaderの高さに合わせておけばOKです。*/
	padding: 20px 0;	/*ここの20pxの数字を変更すると2本のバーの上下間のバランス調整ができます*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	font-family: "Noto Serif JP", serif;
}
/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 3px;			/*線の太さ*/
	border-radius: 3px;
	background-color: #000000;	/*線の色。*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}
.mini{
	font-size: 10px;
	background: linear-gradient(transparent 90%, #a7d6ff 30%);
	background-color: var(--primary-color);
}
/*以下変更不要*/
#menubar_hdr div {
	position: relative;width: 100%;height: 100%;
	display: flex;flex-direction: column;justify-content: space-between;
}
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {top: 50%;transform: translateY(-50%) rotate(-45deg);}

#btn-special {padding: 0;margin: 0;}
#btn-special a {
	display: block;text-decoration: none;
	position: fixed;z-index: 100;
	right: 0px;	/*右からの配置場所*/
	top: 20vw;	/*上からの配置場所*/
	writing-mode: vertical-rl;
	text-orientation: upright;
	background: linear-gradient(#f72323, #c70c0c);
	color: #fff;	/*文字色*/
	padding: 2rem 1rem;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px 0px 0px 3px;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
}

/*アイコンの下の余白*/
#btn-special i {padding-bottom: 1rem;}


/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
	padding: 6vw 0 0;	/*上、左右、下への余白。画面幅100%＝100vwです。*/
	background-color: #89d2e6;

}

/*h2見出し（共通）*/
main h2 {
	margin: 0;padding: 0;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	margin-bottom: 5vw;		/*下にスペースを空ける*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	font-family: "Noto Serif JP", serif;
}
main h2.c {
	align-items: center;	/*見出しをセンタリングする場合*/
	font-family: "Noto Serif JP", serif;
	font-size: 45px;
	font-weight: bold;
}

/*h2見出しのサブテキスト（sub-text）*/
main h2 span.sub-text {
	display: inline-block;
	border-top: 1px solid var(--primary-inverse-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-inverse-colorを読み込みます。*/
		/*文字サイズ80%*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 2rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
	font-family: "Noto Serif JP", serif;
}

/*見出し上のラインを消すスタイル*/
main h2.no-line span.sub-text {
	border: none;
	padding-top: 0;
}


@media screen and (max-width: 768px){
	.box61 th{
		font-size: 13px;
	}
	.main-text{
		font-size: 20px;	
		color:#454444 ;
	}
	p {
		font-size: 15px;	
	}
	main h2.c {
		align-items: center;	/*見出しをセンタリングする場合*/
		font-family: "Noto Serif JP", serif;
		font-size: 25px;
		font-weight: bold;
	}

	}

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

p {
	font-family: "Noto Serif JP", serif;
	font-size: 20px;
}
.main-text{
	font-size: 40px;
	color:#454444 ;	
}

	}

.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 50%;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

	@media screen and (min-width: 768px){
		.br-sp {display: none; }
		}


/*フッター設定*/
footer a {color: inherit;text-decoration: none;}
footer small {font-size: 100%;}
/*footer .pr {display: block;}*/


footer {
	background: #0190ad;	/*背景色*/
	color: #fffbfb;			/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding: 1rem;		
	font-family: "Noto Serif JP", serif;	
}
.footer-copyright{
	text-align: center;
	background: #0190ad;
	text-decoration: none;
}
li{
	list-style:none;
  }

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

	footer {
		display: flex;
		justify-content: space-between;
		font-size: 1.8rem;		/*文字サイズ*/
	}
	footer .footer-taxt1{
		font-size: 1.5rem;
	}
	footer.right {
		display: block;
		width: 50%;		
		padding: var(--space-large);
	}
	
	footer.left {
		margin-bottom: 0;	/*下のマージン（外側への余白）をリセット*/
		width: 50%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
	}
	.footer-copyright{
		text-align: center;

	}
	}
.br2{
	padding: var(--space-large);
}	
/*ロゴ*/
footer .image {
	width: 200px;	
	text-align: center;	
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {

	footer .image {
		width: auto;	
	}
	footer .image img {
		width: 80px;
	}
	}

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

	footer .text {
		display: flex;	/*CompanyとFollow Usを横並びにする*/
		gap: 5rem;	/*CompanyとFollow Usの間の余白。５文字分。*/
	}

	}/*追加指定ここまで*/
	@media screen and (max-width:900px) {
		footer .left p{font-size: 12px;}
		footer .left h3{font-size: 14px;}
	}

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

		footer h4 {
			font-weight: 300;	/*太さを細くする*/
			font-size: 15px;	/*文字サイズを120%*/
		}
		footer .left h3{
			font-size: 22px;
		}
		footer .left p{
			font-size: 18px;
		}
		
		footer .footer-taxt1{
			font-size: 1.0rem;
		}
		footer.right {
			width: 100%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
			list-style:none
		}
		footer.left {
			margin-bottom: 0;	/*下のマージン（外側への余白）をリセット*/
			width: 100%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
		}

		}
	
	

h4{
	font-family: "Noto Serif JP", serif;
}	


/*h4見出し（CompanyとFollow Usのテキスト部分*/
footer h4 {
	font-weight: 300;	/*太さを細くする*/
	font-size: 3.2rem;	/*文字サイズを120%*/
}

.footer-taxt1{
	font-size: 20PX;
	font-family: "Noto Serif JP", serif;	
}

.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 10px 5px;		/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: #3b3b3b;		/*背景色*/
	margin-bottom: 15px;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
	color: #fff;			/*文字色*/
	font-family: "Noto Serif JP", serif;
}
/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #000000;	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;
	margin: 0 auto 2em;		/*最後の「2em」がテーブルの下に空けるスペースです*/
	font-family: "Noto Serif JP", serif;
	font-size: 1.2rem;
}
/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #000000;	/*テーブルの下線。幅、線種、色*/
	font-family: "Noto Serif JP", serif;
}
/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
	font-family: "Noto Serif JP", serif;
	font-weight: bold;
}
/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: #3e3e3e;	/*背景色*/
	font-family: "Noto Serif JP", serif;
	color: #ffffff;
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	/*テーブル１行目に入った見出し部分（※caption）*/
	.ta1 caption {
		padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
	}

	/*th（左側）、td（右側）の共通設定*/
	.ta1 th, .ta1 td {
		padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
	}

	/*th（左側）のみの設定*/
	.ta1 th {
		width: 20%;		/*幅*/
	}

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

	@media screen and (max-width:786px) {
		.ta1 th, .ta1 td{
			font-size: 12px;
		}
	}

	.ta2 caption {
		font-weight: bold;		/*太字に*/
		color: #fff;			/*文字色*/
		font-family: "Noto Serif JP", serif;
	}
	/*ta1テーブルブロック設定*/
	.ta2 {
		width: 100%;
		margin: 0 auto 2em;		/*最後の「2em」がテーブルの下に空けるスペースです*/
		font-family: "Noto Serif JP", serif;
		font-size: 1.2rem;
		vertical-align: middle;
    display: inline-block;
	}
	/*tr（１行分）タグ設定*/
	.ta2 tr {
		font-family: "Noto Serif JP", serif;
	}
	/*th（左側）、td（右側）の共通設定*/
	.ta2 th, .ta2 td {
		padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
		word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
		font-family: "Noto Serif JP", serif;
		font-weight: bold;
	}
	/*th（左側）のみの設定*/
	.ta2 th {
		width: 30%;			/*幅*/
		text-align: left;	/*左よせにする*/
		font-family: "Noto Serif JP", serif;
	}
		/*画面幅900px以上の追加指定*/
		@media screen and (min-width:900px) {
	
		/*テーブル１行目に入った見出し部分（※caption）*/
		.ta2 caption {
			padding: 5px 15px;		/*上下、左右へのボックス内の余白*/
		}
	
		/*th（左側）、td（右側）の共通設定*/
		.ta2 th, .ta2 td {
			padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
		}
	
		/*th（左側）のみの設定*/
		.ta2 th {
			width: 20%;		/*幅*/
		}
	
		}/*追加指定ここまで*/
	
		@media screen and (max-width:786px) {
			.ta2 th, .ta2 td{
				font-size: 12px;
			}
		}	

/*お問い合わせ*/
.Form {
	margin-top: 80px;
	margin-left: auto;
	margin-right: auto;
	max-width: 720px;
	}
	@media screen and (max-width: 480px) {
	.Form {
		margin-top: 40px;
	}
	}
	.Form-Item {
	border-top: 1px solid #ddd;
	padding-top: 24px;
	padding-bottom: 24px;
	width: 100%;
	display: flex;
	align-items: center;
	}
	@media screen and (max-width: 480px) {
	.Form-Item {
		padding-left: 14px;
		padding-right: 14px;
		padding-top: 16px;
		padding-bottom: 16px;
		flex-wrap: wrap;
	}
	}
	.Form-Item:nth-child(5) {
	border-bottom: 1px solid #ddd;
	}
	.Form-Item-Label {
	width: 100%;
	max-width: 248px;
	letter-spacing: 0.05em;
	font-weight: bold;
	font-size: 18px;
	}
	@media screen and (max-width: 480px) {
	.Form-Item-Label {
		max-width: inherit;
		display: flex;
		align-items: center;
		font-size: 15px;
	}
	}
	.Form-Item-Label.isMsg {
	margin-top: 8px;
	margin-bottom: auto;
	}
	@media screen and (max-width: 480px) {
	.Form-Item-Label.isMsg {
		margin-top: 0;
	}
	}
	.Form-Item-Label-Required {
	border-radius: 6px;
	margin-right: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
	width: 48px;
	display: inline-block;
	text-align: center;
	background: #f51004;
	color: #fff;
	font-size: 14px;
	}
	.Form-Item-Label-any {
		border-radius: 6px;
		margin-right: 8px;
		padding-top: 8px;
		padding-bottom: 8px;
		width: 48px;
		display: inline-block;
		text-align: center;
		background: #5bc8ac;
		color: #fff;
		font-size: 14px;
		}
	@media screen and (max-width: 480px) {
	.Form-Item-Label-Required {
		border-radius: 4px;
		padding-top: 4px;
		padding-bottom: 4px;
		width: 32px;
		font-size: 10px;
	}
	.Form-Item-Label-any {
		border-radius: 4px;
		padding-top: 4px;
		padding-bottom: 4px;
		width: 32px;
		font-size: 10px;
	}
	}
	.Form-Item-Input {
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-left: 40px;
	padding-left: 1em;
	padding-right: 1em;
	height: 48px;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #eaedf2;
	font-size: 18px;
	}
	@media screen and (max-width: 480px) {
	.Form-Item-Input {
		margin-left: 0;
		margin-top: 18px;
		height: 40px;
		flex: inherit;
		font-size: 15px;
	}
	}
	.Form-Item-Textarea {
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-left: 40px;
	padding-left: 1em;
	padding-right: 1em;
	height: 216px;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #eaedf2;
	font-size: 18px;
	}
	@media screen and (max-width: 480px) {
	.Form-Item-Textarea {
		margin-top: 18px;
		margin-left: 0;
		height: 200px;
		flex: inherit;
		font-size: 15px;
	}
	}
	.Form-Btn {
	border-radius: 6px;
	margin-top: 32px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 280px;
	display: block;
	letter-spacing: 0.05em;
	background: #5bc8ac;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	}
	@media screen and (max-width: 480px) {
	.Form-Btn {
		margin-top: 24px;
		padding-top: 8px;
		padding-bottom: 8px;
		width: 160px;
		font-size: 16px;
	}
	}

/*FAQ*/
.cp_qa04 {
	border-top: 1px solid #1b2538;
	position: 40px;
	}
	.cp_qa04 .cp_actab input {
	display: none;
	}
	/*質問テキスト*/
	.cp_qa04 .cp_actab {
		position: relative;
		overflow: hidden;
		width: 100%;
		margin: 1em 0 1em 0;
		color: #ffffff;
	  }
	  .cp_qa04 .cp_actab input {
		display: none;
	  }
	  /* 質問 */
	  .cp_qa04 .cp_actab label {
		position: relative;
		display: block;
		margin: 1em 5em 0.5em 4em;
		padding: 1em 0 2em 0;
		cursor: pointer;
		border-radius: 5px;
		background: #f9cd6d;
		box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
	  }
	  .cp_qa04 .cp_actab label span {
		display: block;
		padding: 0 2em 1em 2em;
		border-bottom: 1px solid #ffffff;
	  }
	  /* --?アイコン */
	  .cp_qa04 .cp_actab label::before {
		position: absolute;
		left: -30px;
		content: '？';
		display: flex;
		justify-content: center;
		align-items: center;
		width: 50px;
		height: 50px;
		font-size: 2em;
		font-weight: bold;
		z-index: 99;
		border: 3px solid #ffffff;
		border-radius: 50%;
		background: #ff5722;
	  }
	  /* --▼アイコン */
	  .cp_qa04 .cp_actab label::after {
		position: absolute;
		right: 10px;
		bottom: 10px;
		content: '';
		width: 15px;
		height: 8px;
		background: #ffffff;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		transition: all 0.5s ease;
	  }
	  /* 答え */
	  .cp_qa04 .cp_actab .cp_actab-content {
		position: relative;
		overflow: hidden;
		display: flex;
		align-items: center;
		max-height: 0;
		margin: 0 0 0.5em 0;
		padding: 0 0 0 5em;
		transition: max-height 0.5s ease;
		color: #ffffff;
	  }
	  /* --!アイコン */
	  .cp_qa04 .cp_actab .cp_actab-content::before {
		position: absolute;
		left: 50px;
		content: '！';
		display: flex;
		justify-content: center;
		align-items: center;
		width: 50px;
		height: 50px;
		font-size: 2em;
		font-weight: bold;
		z-index: 99;
		border: 3px solid #ffffff;
		border-radius: 50%;
		background: #2196f3;
	  }
	  .cp_qa04 .cp_actab .cp_actab-content p {
		margin: 0.5em 0.5em 0.5em 0;
		padding: 1em 1em 1em 3em;
		border-radius: 0.3em;
		background: #2196f3;
		box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3);
	  }
	  /* 質問を開いた時の仕様 */
	  /* --答えの高さ */
	  .cp_qa04 .cp_actab input:checked ~ .cp_actab-content {
		max-height: 40em;
	  }
	  /* 質問をクリックした時の▼アイコンの動き */
	  .cp_qa04 .cp_actab input[type=checkbox]:checked + label::after {
		transform: scale(1, -1);
	  }

/*よく頂く質問ブロック*/
.faq {
	background: #5E5C5A;	/*背景色*/
	color: #fff;			/*文字色*/
	position: relative;
}

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

	.faq {
		display: flex;
		flex-direction: row-reverse;	/*左右の並びをデフォルトと逆に*/
		justify-content: space-between;
	}

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


/*faq内のh2見出し*/
.faq h2 {
	margin: 0;padding: 0;
	font-size: 2rem;	/*文字サイズを2倍*/
	font-weight: 300;	/*文字を細く*/
	letter-spacing: 0.4em;	/*文字間隔を広くする*/
}

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

	/*faq内のh2見出し*/
	.faq h2 {
		writing-mode: vertical-lr;	/*日本語は縦書き。英語は90度回転。*/
		margin-right: 18vw;	/*右側に画面18%程度のスペースを空ける。そこに英語の飾り文字を入れる為。*/
	}

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


/*右側の英語の飾り文字*/
.faq h2 .kazari {
	line-height: 1;
	font-size: 0.9rem;	/*文字サイズ90%*/
}

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

	/*右側の英語の飾り文字*/
	.faq h2 .kazari {
		font-size: 20vw;	/*文字サイズ*/
		position: absolute;
		right: 0px;
		top: var(--space-large);
    	color: rgba(255,255,255,0.05);	/*文字色。255,255,255は白のことで、0.05は色が5%出た状態。*/
	}

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


/*質問*/
.faq dt {
	font-size: 1.3rem;	/*文字サイズ130%*/
	border-top: 1px solid rgba(255,255,255,0.2);	/*上の線の幅、線種、色。255,255,255は白のことで、0.2は色が20%出た状態。*/
	padding: 2rem 0 1rem 0;	/*上、右、下、左への余白*/
}

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

	.faq dt {
		padding: 2rem 2rem 1rem 2rem;	/*上、右、下、左への余白*/
	}

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


/*回答*/
.faq dd {
	padding: 0 0 2rem 0;	/*上、右、下、左への余白*/
	font-size: 0.9rem;	/*文字サイズ90%*/
}

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

	.faq dd {
		padding: 0 2rem 2rem 2rem;	/*上、右、下、左への余白*/
	}

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


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

	/*左側のテキストブロック*/
	.faq .text {
		width: 50%;	/*幅*/
	}
	
	}/*追加指定ここまで*/



/*お客様様の声*/
.list-yoko-scroll * {margin: 0; padding: 0;}

/*横スクロールブロック全体*/
.list-yoko-scroll {
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;	/* Firefox用 */
	scroll-snap-type: x mandatory; /* スナップスクロールを有効にする */
	margin-right: calc(-1 * var(--space-large));	/*右マージンをなくす為にネガティブマージンで相殺*/
	padding-bottom: 3vw;	/*下に空ける余白*/
	
}
.list-yoko-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge用 */
}

/*ブロック内の１個あたり*/
.list-yoko-scroll .list {
	width: 60%;		/*ブロック１個の幅。お好みで変更して下さい。*/
	flex-shrink: 0;
	scroll-snap-align: start;
	padding: 1rem;		/*ブロック内の余白。1文字分。*/
	position: relative;
	display: flex;
	flex-direction: column;
	color:#454444 ;
}

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

	/*ブロック内の１個あたり*/
	.list-yoko-scroll .list {
		width: 28%;		/*ブロック１個の幅。お好みで変更して下さい。*/
		padding: 2rem;		/*ブロック内の余白。２文字分。*/
		color:#454444 ;
	}

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


/*テキストブロックが高さを目一杯とる指定*/
.list-yoko-scroll .list .text {
	flex: 1;
	font-size:20px;
	color:#454444 ;
}

/*ブロックのカギカッコ（共通）*/
.list-yoko-scroll .list::before,.list-yoko-scroll .list::after {
	content: "";
	position: absolute;
	width: 30px;	/*カギカッコの幅。お好みで。*/
	height: 10px;	/*カギカッコの高さ。お好みで。*/
	border: 0.5px solid #454444;	/*線の幅、線種、varは色のことで冒頭のprimary-inverse-colorを読み込みます。*/
}

/*左上のカギカッコへの追加指示*/
.list-yoko-scroll .list::before {
	left: 0px;	/*左からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	border-right: none;		/*右の線を消す*/
	border-bottom: none;	/*下の線を消す*/
	color:#454444 ;
}

/*右上のカギカッコへの追加指示*/
.list-yoko-scroll .list::after {
	right: 0px;		/*右からの配置場所*/
	bottom: 0px;	/*下からの配置場所*/
	border-top: none;	/*上の線を消す*/
	border-left: none;	/*左の線を消す*/
	color:#454444 ;
}

/*faq内のh4見出し（「とても満足です。」のところ）*/
.list-yoko-scroll h4 {
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
	font-size:23px;
	color:#454444 ;
}

/*faq内のp段落（「とても満足です。」の下のテキスト）*/
.list-yoko-scroll p {
	font-size: 0.9rem;	/*文字サイズを90%に*/
	color:#454444 ;
}

/*お客様の名前*/
.list-yoko-scroll .name {
	text-align: right;	/*右に寄せる*/
	color:#454444 ;
}



.box1 {
	overflow-x: visible;
	position: relative;
	background: #9cd2f1;	/*背景色*/
	padding: var(--space-large);	/*ボックス内の余白。冒頭にあるspace-largeを読み込みます。*/
	color: var(--primary-color);		/*文字色*/
	margin-top: 10vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
}

/*ボックス上部の大きな装飾テキスト*/
.box1 .deco-text {
	position: absolute;
		/*font-sizeを２倍にし、気持ち小さくしたサイズ（背景色と少し重ねる為）にする。*/
	color: #146a9c;	/*文字色*/
	font-size: 8vw;		/*下の.box1のmargin-topと合わせる*/
	font-family: "Noto Serif JP", serif;
	line-height: 1;
	font-weight:bold
}


/*ボックスの左上イラスト（クツ）*/
.box1 .illust1 {
	position: absolute;
	right: 0;		/*右からの配置場所*/
	top: 8vw;		/*上からの配置場所*/
	width: 20vw;	/*イラストの幅。*/
	transform: rotate(-10deg);	/*左に10度回転*/
}

/*ボックスの左上イラスト（帽子）*/
.box1 .illust2 {
	position: absolute;
	right: 22vw;	/*右からの配置場所*/
	top: 2vw;		/*上からの配置場所*/
	width: 15vw;	/*イラストの幅。*/
	transform: rotate(10deg);	/*右に10度回転*/
}
.box1 h2 img {
	width: 10vw;	/*幅*/
}


/*テキストボックス*/
.box1 .text {
	margin-bottom: 5rem;	/*下に5文字分の余白*/
}
	@media screen and (max-width:598px) {
		.box1 .deco-text {
			right: 18%;
			top: -19vw;	
		}
	}
	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.box1 {
		display: flex;	/*横並びにする*/
		gap: 5vw;		/*左右の間のスペース*/
		border-radius: 20vw 0 20vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	}
	.box1 .deco-text {
		right: 17%;
		top: -20vw;	
	}
	
	.box1 > * {flex: 1;}

	/*ボックスの左上イラスト（クツ）*/
	.box1 .illust1 {
		right: auto;
		left: 3vw;		/*左からの配置場所*/
		top: -5vw;		/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
		width: 10vw;	/*イラストの幅。*/
	}

	/*ボックスの左上イラスト（帽子）*/
	.box1 .illust2 {
		right: auto;
		left: 15vw;		/*左からの配置場所*/
		top: -5vw;		/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
		width: 6vw;		/*イラストの幅。*/
	}

	/*テキストボックスの上の小さなイラスト*/
	.box1 h2 img {
		width: 5vw;	/*幅*/
	}

	.box1 .text {
		margin-bottom: 0;	/*下マージンのリセット*/
	}

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


/*画像を囲むブロック*/
.box1 .image {
	position: relative;
}

/*画像の角を少し丸くする指定*/
.box1 .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.box1 .image img:nth-of-type(1) {
	width: 80%;	/*画像の幅*/
}

/*画像ブロック内の２枚目の写真への追加指定*/
.box1 .image img:nth-of-type(2) {
	width: 30%;	/*画像の幅*/
}
@media screen and (max-width:768px) {
	.box1 .image img:nth-of-type(1) {
		right: 10%;	/*画像ブロックに対して右側からの配置場所*/
		top: 10vw;	/*画像ブロックに対して上からの配置場所*/
	}
	.box1 .image img:nth-of-type(2) {
		position: absolute;
		right: 0;	/*画像ブロックに対して右側からの配置場所*/
		top: 25vw;	/*画像ブロックに対して上からの配置場所*/
	}
}
@media screen and (min-width:769px) {
.box1 .image img:nth-of-type(1) {
	position: absolute;
	right: 10%;	/*画像ブロックに対して右側からの配置場所*/
	top: 10vw;	/*画像ブロックに対して上からの配置場所*/
}

.box1 .image img:nth-of-type(2) {
	position: absolute;
	right: 0;	/*画像ブロックに対して右側からの配置場所*/
	top: 25vw;	/*画像ブロックに対して上からの配置場所*/
}
}
/*ボックス１個あたり*/
.list1 {
	padding: var(--space-large);	/*ボックス内の余白。冒頭のspace-largeを読み込みます。*/
	position: relative;
	overflow-x: hidden;
	margin-bottom: 1vw;	/*下に空けるスペース。ボックス同士の隙間です。*/
}

/*マウスオン用のアニメーション*/
.list1::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.5s 0.1s;	/*アニメーションの速度（0.5秒）と待機時間（0.1秒）。*/
}
.list1:hover::before {
	transform: translateX(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*テキストブロック*/
.list1 .text {
	position: relative;z-index: 1;
	width: 80%;		/*幅*/
	height: 100%;
	color: #fff;	/*文字色*/
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、ぼかし幅、0,0,0は黒のことで0.3は色が30%出た状態。*/
	font-family: "Noto Serif JP", serif;
}

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

	/*テキストブロック*/
	.list1 .text {
		width: 40%;		/*幅*/
	}

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


/*テキストの配置場所を入れ替えたい場合のスタイル。*/
.list1 .text.reverse {
	margin-left: auto;
}

/*list1内のh3見出し*/
.list1 h3 {
	margin: 0;padding: 0;
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	position: relative;
	font-size: 35px;		/*文字サイズを200%*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	line-height: 1.2;		/*行間を狭くする*/
	font-family: "Noto Serif JP", serif;
}

/*list1内のh3見出し内の１文字目の大きな文字*/
.list1 h3 .large {
	font-size: 38px;	/*文字サイズを7倍*/
	font-family: "Noto Serif JP", serif;
}

/*見出しの右上にある英語の小さな文字*/
.list1 h3 span:not(.large) {
	font-size: 20px;	/*文字サイズを標準に戻す*/
	opacity: 0.5;		/*透明度50%*/
	position: absolute;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	font-family: "Noto Serif JP", serif;
}


/*list-grid1（３カラムボックス）
---------------------------------------------------------------------------*/
.listone{
	padding: 0 1vw 0;
	text-align: center;
}
.list-grid1 .list * {
	
	padding: 10px;
	border-radius: 10px;
}

/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース*/
	border-radius: 10px;
	padding: -10px;
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 20px;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を狭くする*/
	font-family: "Noto Serif JP", serif;
}
.list-grid1 .list h3 {
	font-size: 30px;	/*文字サイズを85%に*/
	font-family: "Noto Serif JP", serif;
	margin: 0 0;
}

/*ボックス１個あたり*/
.list-grid1 .list {
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	background: #fff;		/*背景色*/
	color: #111;			/*文字色*/
    grid-template-rows: auto auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	border-radius: 10px;
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
	border-radius: 10px;
}
	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*listブロック全体を囲むブロック*/
	.list-grid1 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
	}

	/*ボックス１個あたり*/
	.list-grid1 .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}


	}/*追加指定ここまで*/
	@media screen and (max-width:799px) {
		.list1 h3 .large {
			font-size: 30px;	/*文字サイズ*/
		}

	}


/*縦書き用の設定
---------------------------------------------------------------------------*/
/*ボックス全体*/
.title-bg {
	display: flex;				/*flexボックスを使う指定*/
	justify-content: center;	/*並びかたの種類の指定*/
}

/*ボックス内のh2*/
.title-bg h2 {
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*縦並びにする指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
	padding-bottom: 3vw;
}

/*縦書きにする指定*/
.title-bg h2 .tate {
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 2rem;
}

/*横書きで使う際の指定。※縦書きを横書きにする為の指定ではないのでご注意下さい。*/
.title-bg h2 .yoko {
	font-size: 0.9rem;	/*文字サイズ90%*/
	margin-bottom: 3vw;	/*下に空けるスペース*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	opacity: 0.5;	/*透明度50%*/
}


/*ボタン
---------------------------------------------------------------------------*/
/*btn1、btn2共通*/

.btn1 a {
	display: inline-block;text-decoration: none;
	background: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
	border: 2px solid var(--primary-color);	/*枠線の幅、線種、色*/
	color: #fff;			/*文字色*/
	border-radius: 100px;	/*角丸のサイズ。適当に大きければOK。*/
	padding: 0.2em 3em;		/*上下、左右へのボタン内の余白*/
	text-align: center;		/*テキストを中央に*/
}
.btn1.block a {
	display: block;
}
/*マウスオン時*/
.btn1 a:hover {
	background: #fff;	/*背景色*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}

/*btn2への追加設定*/
.btn2 a {
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*list1内のbtn2の設定。マウスオン時にボタンの背景色を追加。*/
.list1:hover .btn2 a {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒のことで0.8は色が80%出た状態。*/
}

/*btn3*/
.btn3 {
	text-align: right;	/*テキストを右寄せ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
}
.btn3 a {
	display: inline-block;text-decoration: none;
	color: inherit;
	position: relative;
	padding-right: 5rem;	/*矢印のアイコンと重ならないように余白をとる*/
}

/*btn3の矢印のアイコン設定*/
.btn3 a::after {
	content: "";
	background: #fff  / 100px;	/*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
	display: block;
	position: absolute;
	right: 0px;
	bottom: -1rem;		/*下からの配置場所*/
	width: 50px;		/*アイコンの幅。ここを変更する場合は、上と下にあるbackgroundの100pxの数値も調整します。*/
	height: 50px;		/*アイコンの高さ*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すれば正方形になります。*/
	text-align: center;
	transition: 0.3s;		/*hover時に切り替えをなめらかにする*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}

/*btn3の矢印のマウスオン時*/
.btn3 a:hover::after {
	background-color: var(--primary--color);	/*背景色を冒頭のprimary-colorにする*/
	background-position: left center;		/*矢印画像の入れ替え。画像の左側を読み込みます。*/
}

/*背景色が暗い所で使う場合*/
.btn3.white {
	color: #fff;	/*文字色*/
}
.btn3.white a::after {
	background: url("../images/arrow1_white.svg") no-repeat right center / 100px;	/*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
.btn3.white a:hover::after {
	background-color: #fff;				/*背景色を白に*/
	background-position: left center;	/*矢印画像の入れ替え。画像の左側を読み込みます。*/
}
/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショーブロック全てを囲むブロック*/
.slide-thumbnail-box {
	overflow-x: hidden;
	padding-left: 0;
	padding-right: 0;
}
/*各スライドショーブロックを囲むブロック*/
.slide-thumbnail1 {
	margin-bottom: 6vw;	/*下に空けるスペース。スライドショーを２個以上置く場合に上下の画像が重ならないようにする為。*/
}
/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
}
/*画像*/
.slide-thumbnail1 .img img {
	padding: 0 1rem;	/*上下、左右への画像の余白*/
}
/*偶数番目の画像の垂直位置を少しずらす。垂直位置を並べたいならこのブロックを削除。*/
.slide-thumbnail1 .img div:nth-of-type(even) {
	transform: translateY(3vw);
}
/*右から左へ、左から右へ、のアニメーション*/
.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);}
}

.order1 {
	order: 1;	/*orderは数字の小さな順番に並びます。デフォルトは0なので、それより後ろに表示させたいブロックに使います。（※flex内で使用）*/
}

.padding0 {
	padding: 0 !important;
}
.padding-bottom0 {
	padding-bottom: 0 !important;
}
.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
/*左右の余白*/
.space-small {
	padding-left: var(--space-small);
	padding-right: var(--space-small);
}
/*その他*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ffe617 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;font-family: "Noto Serif JP", serif;}
.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;}
.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;}
.bg1 {background: #2350f7;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

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

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

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


		@import url('https://fonts.googleapis.com/css?family=Merienda');

		body {
		  font-family: 'Merienda', cursive;
		}
		.drop {
		  display: flex;
		  justify-content: center;
		  align-items: center;
		  height: 40vh;
		  background-image: url('../images/背景.jpg');
		}
		.box-one {
		  border-radius: 5px;
		  padding: 20px;
		  text-align: center;
		}
.bread {
	max-width: 1230px;
	width: 100%;
	margin: 0 auto;
	padding: 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
	.btn a {
		display: block;text-decoration: none;
		font-size: 1rem;
		text-align: center;		/*テキストをセンタリング*/
		background: var(--primary-color);		/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
		color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
		padding: 0.5rem !important;		/*ボタン内の余白*/
		margin-top: 1rem !important;	/*ボタンの外（上）に空けるスペース*/
	}

	.bg-wave1, .bg-wave2, .bg-wave3 {
		background-position: top center, bottom center;
		background-size: 100% 50px;		/*右側の数字は画像の高さ*/
		background-repeat: no-repeat;
		padding-top: 50px;		/*上のbackground-sizeの高さの数値に合わせておけばOK*/
		padding-bottom: 50px;	/*上のbackground-sizeの高さの数値に合わせておけばOK*/
	}
	
	/*共通*/
	.bg-wave1-inner, .bg-wave2-inner, .bg-wave3-inner {
		padding-top: 200px;		/*上のbackground-sizeの高さの数値に合わせておけばOK*/
		padding-bottom: 50px;	/*上のbackground-sizeの高さの数値に合わせておけばOK*/
		border-top-left-radius: 50%;
		border-top-right-radius: 50%;
	}
	.back{
		background-color: #707070;
	}
	
	@media screen and (max-width:600px) {
		.bg-wave1-inner, .bg-wave2-inner, .bg-wave3-inner {
			padding-top: 200px;		/*上のbackground-sizeの高さの数値に合わせておけばOK*/
			padding-bottom: 50px;
			border-top-left-radius: 1%;
			border-top-right-radius: 1%;
		}
		.bg-wave2{
			text-align:center;
		}

	}

	
	/*共通（ボックス内の上下の空白が広くなりすぎるので、sectionの上下マージンをなくす）*/
	.bg-wave1-inner > section, .bg-wave2-inner > section, .bg-wave3-inner > section {
		margin-top: 0;
		margin-bottom: 0;
	}
	/*bg-wave2の背景画像の読み込み*/
	
	.bg-wave2-inner {
		background: #0190ad;	/*背景色。背景画像の色に合わせる。*/
	}
	.bg-wave1-inner {
		background: #2945a1;	/*背景色。背景画像の色に合わせる。*/
	}
	.bg-wave3-inner {
		background: #949494;	/*背景色。背景画像の色に合わせる。*/
	}

	.bg-wave4{
		background-position: top center, bottom center;
		background-size: 100% 50px;		/*右側の数字は画像の高さ*/
		background-repeat: no-repeat;
		padding-top: 50px;		/*上のbackground-sizeの高さの数値に合わせておけばOK*/
		padding-bottom: 50px;	/*上のbackground-sizeの高さの数値に合わせておけばOK*/
	}
	
	/*共通*/
	.bg-wave4-inner{
		padding-top: 50px;		/*上のbackground-sizeの高さの数値に合わせておけばOK*/
		padding-bottom: 50px;	/*上のbackground-sizeの高さの数値に合わせておけばOK*/
	}
	
	/*共通（ボックス内の上下の空白が広くなりすぎるので、sectionの上下マージンをなくす）*/
	.bg-wave4-inner > section{
		margin-top: 0;
		margin-bottom: 0;
		font-size: 20px;
	}
	
	/*bg-wave1の背景画像の読み込み*/
	.bg-wave4 {
		background-image: url('../images/波01.png'),url('../images/波01.png');
	}
	
	.bg-wave4-inner {
		background: #89d2e6;	/*背景色。背景画像の色に合わせる。*/
	}	


	.hosoku {
		display: block;
		font-size: 0.7em;	/*親要素の40%のサイズに*/
		opacity: 0.5;		/*透明度。色が50%出る。*/
		font-family: "Noto Serif JP", serif;
	}
	.fade-in-text {
		visibility: hidden;
		font-size: 1.7em;
		font-family: "Noto Serif JP", serif;	
	}

	.side1,.side2 {
		display: flex;	/*flexボックスを使う指定*/
	   flex-direction: column;	/*子要素を縦並びにする*/
	   gap: 2rem;		/*マージン的な指定*/
   }
   
   /*画像を囲むブロックの設定*/
   .side1-image,.side2-image {
	   justify-content: center;	/*並びかたの種類の指定*/
   }
   
   /*画像の設定*/
   .side1-image img,.side2-image img {
	   width: 40%;	/*幅*/
   }
   
	   /*画面幅600px以上の追加指定*/
	   @media screen and (min-width:600px) {
   
	   /*ブロック全体の設定*/
	   .side1,.side2 {
		   flex-direction: row;	/*子要素を縦並びから縦並びに変更*/
		   justify-content: space-around;	/*並びかたの種類の指定*/
	   }
   
	   /*画像を囲むブロックの設定*/
	   .side1-image,.side2-image {
		   display: flex;	/*flexボックスを使う指定*/
		   flex-direction: column;	/*子要素を縦並びにする*/
		   flex: 1;				/*幅*/
	   }
   
	   /*画像の設定*/
	   .side1-image img,.side2-image img {
		   width: 100%;	/*幅*/
	   }
   
	   /*テキストブロックの設定*/
	   .side1-text,.side2-text {
		   flex: 3;		/*幅*/
		   display: flex;	/*flexボックスを使う指定*/
		   flex-direction: column;	/*子要素を縦並びにする*/

	   }
	   .side1-text{
		font-size: 25px;
	   }

   
	   }/*追加指定ここまで*/
	   @media screen and (max-width:768px) {
		.fade-in-text{
			font-size: 25px;
		}
		.box41 p{
			font-weight: bold;
			font-size: 20px;
		}
		.side2-text p{
			font-size: 16px;
		}

	   }
   
   .side1 .photo1 {
	   transform: rotate(-5deg);	/*回転*/
   }
   
   /*photo2の設定*/
   .side1 .photo2 {
	   transition-delay: 1s;		/*1秒遅れてスタート*/
	   transform: translateX(-0.5rem) rotate(4deg);	/*回転*/
   }
   
   .side2 .photo1 {
	   transform: rotate(12deg);	/*回転*/
   }
   
   .side2 .photo2 {
	   transition-delay: 1s;		/*1秒遅れてスタート*/
	   transform: rotate(-2deg);	/*回転*/
   }

   .side2 .photo3 {
	   transition-delay: 1.5s;		/*1.5秒遅れてスタート*/
	   transform: rotate(-8deg);	/*回転*/
   }
   
   .side2 .photo4 {
	   transition-delay: 2s;		/*2秒遅れてスタート*/
	   transform: rotate(4deg);	/*回転*/
   }
   
   .photo {
	   padding: 0.7vw;		/*写真の縁にあたる部分*/
	   background: #fff;	/*縁の部分の色*/
	   box-shadow: 5px 5px 10px rgba(0,0,0,0.2);	/*写真につける影。右へ、下へ、ぼかし幅。0,0,0は黒のことで0.2は色が20%出た状態。*/
   }
   
   .photo-circle{
	   border-radius: 57% 43% 62% 38% / 44% 56% 44% 56%;
   }
   .thumbnail-view {
	max-width: 800px;		/*最大幅*/
	margin: 0 auto 2rem;	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
	text-align: center;		/*画像が小さい場合でもセンタリングされるように*/
}
/*サムネイル全体を囲むブロック*/
.thumbnail-view {
	max-width: 1000px;		/*最大幅*/
	margin: 0 auto 1rem;	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
	text-align: center;		/*画像が小さい場合でもセンタリングされるように*/
}

/*サムネイル全体を囲むブロック*/
.thumbnail {
	display: flex;				/*flexを使う指定*/
	justify-content: center;	/*並びかたの種類の指定。これはセンタリングする指定。*/
	margin-bottom: 2rem;		/*下に空けるスペース。２文字分。*/
}

/*サムネイル画像*/
.thumbnail img {
	width: 100px;		
	margin: 2px;		/*サムネイル間のスペース*/
	cursor: pointer;	/*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
	transition: 0.3s;	/*マウスオンまでにかける時間。3秒。*/
}
.thumbnail img:hover {
	opacity: 0.8;	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}

@media screen and (max-width: 600px) {
	.thumbnail img {
		width: 55px;		
		margin: 2px;		
		cursor: pointer;	
		transition: 0.3s;	
	}
}
@media screen and (max-width: 600px){
		.aisatsu{
		text-align: center;
		font-size: 14px;
		}
	}

/*スライドショーブロック全てを囲むブロック*/
.slide-thumbnail-box {
	overflow-x: hidden;
	padding-left: 0;
	padding-right: 0;
}

/*各スライドショーブロックを囲むブロック*/
.slide-thumbnail1 {
	margin-bottom: 6vw;	/*下に空けるスペース。スライドショーを２個以上置く場合に上下の画像が重ならないようにする為。*/
}

/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 0 1rem;	/*上下、左右への画像の余白*/
}

/*偶数番目の画像の垂直位置を少しずらす。垂直位置を並べたいならこのブロックを削除。*/
.slide-thumbnail1 .img div:nth-of-type(even) {
	transform: translateY(3vw);
}

/*右から左へ、左から右へ、のアニメーション*/
.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;}
.tema01{
	font-size: 50px;
	font-family: "Noto Serif JP", serif;
	text-align: center;
}
.box10{
	width: 100%;
	background-color: #1b2538;
}

  .box31,.box41{
	position: relative;
	margin: 10px;
	float: left;
  }

  .box31_inner, .box41_inner{
	padding: 1em;
  }
  .box31:before,.box41:before,
  .box31:after,.box41:after{
	content: "";
	width: 6em;
	height: 6em;
	position: absolute;
  }
  .box31::before,.box41::before{
	border-top: 2px solid #0094D6;
	border-left: 2px solid #0094D6;
  }
  .box31::after,.box41::after{
	border-bottom: 2px solid #0094D6;
	border-right: 2px solid #0094D6;
	right: 0;
	bottom: 0;
  }
  .box31 h3,.box41 h3{
	margin: 0 0 .5em;
	font-family: "Noto Serif JP", serif;
  }
  .box31 h3:first-letter,.box41 h3:first-letter{
	font-size: 2.4em;
	color: #0094D6;
	font-family: "Noto Serif JP", serif;
  }
  .box31 p,.box41 p{
	margin: 0 0 .5em;
	font-size: 1.78em;
  }
/* 横並び */

.flex {
	display: flex; /*横並び*/
  }
  .flex .image {
	width: 3040px; /*画像サイズ指定*/
	margin: 0;
	padding: 0;
  }
  .flex .image img {
	width: 100%;
	height: auto;
  }
  .flex .text {
	margin: 0 0 0 20px;

	font-size: 1.6rem;
  }
  @media screen and (min-width:770px) {
	.image-2 {
		display: none;
	  }
	
	.image-3 {
		width: 30%;
		margin: 0 0 0 72%;
		margin-top: 80px;
		  
	}
	}


	@media screen and (max-width:900px) {
		.image-3 {
			margin: 0 0 0 55%;
			width: 45%;
			margin-top: 80px;
		  }
	}
  @media screen and (max-width:769px) {
	.flex .image {
		display: none;
	  }
	  .flex .image-2 {
		display: block;
	  }
	  .image-3 {
		margin: 0 0 0 40%;
		width: 60%;
		margin-top: 50px;
	  }

	  .flex .text {
		margin: 0 0 0 20px;
		
		font-size: 15px;
	  }
	  .box41_inner h3{
		font-size: 15px;
	  }
	  .box41_inner p{
		font-size: 12px;
	  }
	  .box51 th{
		font-size: 14px;
	  }
	  .box51 td{
		font-size: 13px;
	  }
	

	}
.about{
	padding: 0%;
	overflow-x: hidden;
    
    margin-top: 100px;
}

  .image11{
	width: 100%;
	margin-top: 45px;
  }
  .box51{
	background-color: #ffffff;
	padding: 5% 10% 0 5%;
  }
  .cc {
	background: linear-gradient(transparent 70%, #a7d6ff 70%);
  }
  .box14 ,.box15{
	padding: var(--space-large);	
    margin: 2em 0 0  3rem;
    color: #5d627b;
    background: white;
    border-top: solid 5px #5d627b;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);  
	font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:768px) {
.box14 h3,.box15 h3{
	font-size: 20px;
}
}
@media screen and (min-width:769px) {
	.box14 h3,.box15 h3{
		font-size: 30px;
	}
	}
.box14 p,.box15 P {
    margin: 0; 
    padding: 0;
}



.marker{
	background: linear-gradient(transparent 50%, #a8eaff 50%);
}
.num {
	position: absolute;
	left: -10px;		/*左からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	top: -20px;			/*上からの配置場所。マイナスがつくので本来とは逆向きに移動。*/
	font-size: 60px;	/*文字サイズ*/
	line-height: 1;
	font-family: "MonteCarlo", cursive;	/*フォント指定*/
	opacity: 0.2;	/*透明度。色を20%出す。*/
}
.box111{
	background-color: #f7f7f7;
}
.box111 p{
	color: #000;
}
.dougu01{
	text-align: right;
}
.list-normal1 * {margin: 0;padding: 0;}

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

	/*テキストブロック*/
	.list-normal1 .text {
		flex: 1;
	}
	
	/*画像とテキストの左右を入れ替えたい場合（600px以上のみ使用可能）*/
	.reverse {
		flex-direction: row-reverse;
		background-position: left bottom !important;
	}
	
	}/*追加指定ここまで*/


/*ブロック１個あたり*/
.list-normal1 .list {
	background: #668ca4;
	color: var(--base-inverse-color);	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	padding: 3rem;
	margin-bottom: 2rem;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
	position: relative;
}

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

	/*ブロック１個あたり*/
	.list-normal1 .list {
		display: flex;
		gap: 2rem;	/*画像とテキストの間のスペース。２文字分。画像がない場合はこれは適用されません。*/
	}
	
	}/*追加指定ここまで*/


/*画像ブロック*/
.list-normal1 figure {
	width: 10%;	/*幅*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

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

	/*画像の下マージンのリセット*/
	.list-normal1 figure {
		margin-bottom: 0;
	}

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


/*h4見出し*/
.list-normal1 h4 {
	font-size: 1.2rem;	/*文字サイズ200%*/
	line-height: 1.5;	/*行間*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

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

	.list-normal1 h4 {
		font-size: 2rem;	/*文字サイズ200%*/
		line-height: 1.8;	/*行間*/
	}

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


/*h4内にアイコンを配置した場合（制作の流れの見出し左のアイコン）*/
.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);	/*横幅を150%に*/
	opacity: 0.5;			/*透明度。色が50%出た状態。*/
}

/*最後のボックスだけ下矢印を出さない*/
.list-normal1.flow .list:last-child::after {
	content: none;
}

 