@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');

/*CSSカラープロパティ
---------------------------------------------------------------------------*/
:root {
	--primary-color: #1a8cff;			/*テーマカラー*/
	--primary-inverse-color: #fff;		/*対のカラー*/
	--border: #fff;
}

/*全体設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	font-size: 13px;
}

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

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

	}/*指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	-webkit-text-size-adjust: none;
	background: #fff;
	color: #555;
	line-height: 2;
}

/*リセット*/
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;}

/*section*/
section {
	padding: 1rem 2rem;
}

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


/*リンク設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間*/
}

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);	/*ホバーで明るく*/
}


/*コンテナ
---------------------------------------------------------------------------*/
#container {
	position: relative;
	animation: opa1 0.5s 0.5s both;	/*待機0.5、フェードイン0.5*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
}


/*header
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	color: #fff;
	position: absolute;
	width: 100%;
}
header a {color: inherit;}

#logo {
  margin-top: clamp(0.7rem, 0.546rem + 0.77vw, 1.5rem);
  margin-left: clamp(0.7rem, 0.546rem + 0.77vw, 1.5rem);
}

#logo img {
  width: clamp(5rem, 4.036rem + 4.82vw, 10rem);
  height: auto;
  min-height: 0;
}


/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
#menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 60px 4rem;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}

/*メニュー１個あたり*/
#menubar a {
	display: block;text-decoration: none;
	color: inherit;
	border: 1px solid #fff;
	margin-bottom: 1rem;
	padding: 1rem 2rem;
}


/*ハンバーガーアイコン
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: flex;
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;
	top: 0px;
	width: 70px;
	height: 70px;
	background: #E01010;	/*ボタン色*/
	border-radius: 0px 0px 0px 15px; /*角丸：左上、右上、右下、左下*/	
	transform-origin: right top;
	transform: scale(0.7);
	/* アイコン大きさ調整 */
}

/*ハンバーガー展開時のボタン色*/
#menubar_hdr.ham {
	background: #E01010;
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 2px;		/*線の高さ*/
	background: #ffffff;	/*線の色*/
	transition: 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-135deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(135deg);
}

	/*画面700px以上の指定*/
	@media screen and (min-width:700px) {
		#menubar_hdr {
			transform: scale(0.8);
			/* アイコン大きさ調整 */
		}
	}/*指定ここまで*/

/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツブロック*/

/* リストタグ */
#contents ul,#contents ol {
	margin-left: 2rem;
	margin-right: 2rem;
}

/* pタグ */
p {
	margin-left: 1rem;	/*左に１文字分のスペース*/
	margin-right: 1rem;	/*右に１文字分のスペース*/
}

.hr-blue {
 height: 2px;
 background-color: rgba(26, 140, 255, 0.6);
 width: 10%;
 border: none;
}

.center {
	align-items: center;
}

h2 {
	margin: 0;
	padding: 0;
	gap: 0;
	font-size: 2.2rem;
	font-weight: normal;
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}


/* コンセプト--------------------------------------------------------------------------- */
.concept-title {
	text-align: center;
	font-size: 2rem;
	color: #555;
	padding-top: 2.5rem;
}
.concept {
	text-align: center;
	font-size: 1rem;
	color: #555;
	line-height: 1.7rem;
	padding-top: 1rem;
}
#concept {
	text-align: center;
}

#chatch {
	text-align: center;
	font-size: 1.1rem;
	font-weight: bold;
	color: #1a8cff;
}

.concept-detail {
	text-align: center;	
	font-size: 1.8rem;
	color: #fff;
	margin: 1rem auto;
}

/* 利用のメリット------------------------------------------------------------- */

.detail-compo * {margin: 0;padding: 0;}

/*ボックス内のh4見出し*/
.detail-compo h4 {
	text-align: center;
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}

/*ボックス内のp要素*/
.detail-compo p {
	font-size: 1rem;
	line-height: 1.5;
}
.merit-compo-parent {
	display: flex;
	justify-content: center;
}
.merit-compo {
	display: flex;
	align-items: flex-end;
	gap: 10px;
}

.merit-compo img {
	width: 7rem;
}
.merit-compo-title {
	color: #1a8cff;
	font-weight: bold;
}

.merit-box {
  background-color: #fff;
  border-radius: 14px;
  padding: 2% 0 2% 0.5%;
  color: #333;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column; /* 縦並び */
}

.merit-compo {
	text-align: left;
	padding: 0;
	margin: 0;
	font-size: 1.3rem;
	margin-left: 1.5rem;
}

.detail-compo2 { padding: 0 0 0 0.5%;}
.detail-compo2 li{ margin:0; padding: 0; line-height: 1.5rem; margin-top: 1rem;}


.fas {
	font-size: 1.8rem;
}

/* サンプルイメージ---------------------------------- */

.sample {
	text-align: center;	
	font-size: 1.8rem;
	color: #555;
	font-weight: normal;
	margin-bottom: 0;
}

.sample hr {
	height: 2px;
	background-color: rgba(26, 140, 255, 0.6);
	width: 10%;
	border: none;
}

.sample-box {
	display: flex;
	flex-direction: column;
	margin-top: 1rem;
}

.sample-h4 {
	text-align: center;
	font-size: 1.3rem;
	margin: 0;
	padding: 0.5rem 0 0.5rem 0;
}

.sample-detail {
	color: #555;
	margin: 0;
	padding: 0;
	text-align: center;
}
.sample-box-compo {
	display: flex;
	flex-direction: column;
}

.sample-box-compo figure {
  width: 100%;
  text-align: center !important; /* ←保険 */
  margin: 0 auto !important;     /* figure 自体も中央扱い */
  display: block !important;     /* inline-block されている可能性に対応 */
}

.sample-img {
  display: block !important;  /* inline-block 上書き */
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 0.5rem 1rem 0.5rem;
  width: 10rem;
  height: auto;
}

.sample-detail p {
	line-height: 1.2rem;
	font-size: 1rem;
	padding-top: 1.3rem;
}

	/*画面700px以上の指定*/
	@media screen and (min-width:700px) {
		.sample-box {
			display: flex;
			flex-direction: row;
		}
	}/*指定ここまで*/

.entry {
	text-align: center;
	font-weight: bold;
	font-size: 1.1rem;
	margin: 1.8rem 0 1.8rem 0;
	line-height: 0.8rem;
}
.info {
	text-align: center;
	font-size: 1rem;
	font-weight: normal;
	line-height: 0.8rem;
}
.entry-title {
	padding: 0;
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.5rem;
	color: #1a8cff;
	margin: 1.5rem 0 1.5rem 0;
}
.entry p {
	padding: 0;
	margin: 0;
	line-height: 2rem;
}
.entry img {
	width: 10rem;
	vertical-align: top;
}



/* 問い合わせ------------------------ */
.contact-img {
	vertical-align: middle;
}

/*フッター
---------------------------------------------------------------------------*/
#footer {
  color: #555;
  padding: 0 2rem;
  background: #fff;
  margin-top: 2rem;
}

#footer p {
	line-height: 1.5;
}

.footer1 {
  margin-bottom: 2rem;
}

.origin img {
  display: block !important;  /* ブロック化を強制 */
  margin-left: auto !important;
  margin-right: auto !important;  /* 左右オートで中央寄せ */
  float: none !important;         /* float解除 */
  width: 20vw;
  max-width: 180px;
}

#footer div.footer2 {
    flex: 1;
	align-items: flex-start;
}

.footer-title {
	color: #555;
	font-size: 1.3rem;
	margin: 0;
	padding: 0;
	padding-left: 1rem;
}
	/*画面700px以上の指定*/
	@media screen and (min-width:700px) {
		#footer {
			display: flex;
			align-items: flex-start;
			gap: 2rem;
		}
		.footer1 {
		width: 45%;}
		.footer2 {
		width: 55%;}
	}/*指定ここまで*/

/*Google Map
---------------------------------------------------------------------------*/
#footer .iframe {
	width: 100%;
	height: 0;
	padding-top: 57%;	/* マップ高さ調整 */
	position: relative;
	overflow: hidden;
}
#footer .iframe iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

/*Copyright*/
.copyright {
	display: block;
	text-align: center;
	margin-top: 2rem;
	background-color: #f5f5f5;
}

/*PAGE TOPボタン
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタン設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*位置固定*/
	right: 20px;
	bottom: 20px;
	color: #fff;
	font-size: 1.5rem;
	background: rgba(0,0,0,0.35);
	width: 60px;
	line-height: 60px;
	border-radius: 50%;
}


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



