@charset "utf-8";

/*
	* 顧客オリジナルスタイルシート
	* サイト全体に関するスタイル
	* ver1
	* Copyright (C) ●●など
	* 更新履歴
		└ 
*/
/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	初期設定（不要なものは削除）
//////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ******************************************************************************************
	root設定（適宜修正）（フォントはベースフォント外を削除してください。）
****************************************************************************************** */
:root{
	--black: #0b0b0b;
	--mainColor: #d1f3ff;
	--accentColor: #009dd7;
	--white: #fff;
	--lightGray: #f8f8f8;
	--gray: #e8e8e8;
	--darkGray: #b1b1b1;
	--pink: #d17389;
	--purple: #a68dae;
	--green: #5eb0ad;
	--headerSpace: 20px;/* ヘッダー統一余白 */
	--hamburgerSpace: 60px;/* ハンバーガーメニュー幅相殺余白 */
	--borderRadius3: 3px;/* 角丸 */

	/* ベースフォントが16pxの場合 */
	--fontSize10: .625rem;
	--fontSize11: .687rem;
	--fontSize12: .75rem;
	--fontSize13: .812rem;
	--fontSize14: .875rem;
	--fontSize15: .937rem;
	--fontSize16: 1rem;
	--fontSize17: 1.062rem;
	--fontSize18: 1.125rem;
	--fontSize19: 1.187rem;
	--fontSize20: 1.25rem;
	--fontSize21: 1.312rem;
	--fontSize22: 1.375rem;
	--fontSize23: 1.437rem;
	--fontSize24: 1.5rem;
	--fontSize25: 1.562rem;
	--fontSize26: 1.625rem;
	--fontSize27: 1.687rem;
	--fontSize28: 1.75rem;
	--fontSize29: 1.812rem;
	--fontSize30: 1.875rem;
	--fontSize31: 1.937rem;
	--fontSize32: 2rem;
	--fontSize33: 2.062rem;
	--fontSize34: 2.125rem;
	--fontSize35: 2.187rem;
	--fontSize36: 2.25rem;
	--fontSize37: 2.312rem;
	--fontSize38: 2.375rem;
	--fontSize39: 2.437rem;
	--fontSize40: 2.5rem;
	--fontSize41: 2.562rem;
	--fontSize42: 2.625rem;
	--fontSize43: 2.687rem;
	--fontSize44: 2.75rem;
	--fontSize45: 2.812rem;
	--fontSize46: 2.875rem;
	--fontSize47: 2.937rem;
	--fontSize48: 3rem;
	--fontSize49: 3.062rem;
	--fontSize50: 3.125rem;

}
/* ******************************************************************************************
	ベースフォント設定
****************************************************************************************** */
html{
	font-size: 16px;/* ベースフォント */
}
@media screen and (max-width:768px){
html{
	font-size: var(--fontSize14);/* ベースフォント */
}
}
/* ******************************************************************************************
	body設定
****************************************************************************************** */
/* *{
	border: solid 1px #ccc;
} */
body{
	display: grid;/* フッター浮き上がり対策 */
	grid-template-rows: auto 1fr auto;/* フッター浮き上がり対策 */
	grid-template-columns: 100%;/* フッター浮き上がり対策 */
	min-height: 100vh;/* フッター浮き上がり対策 */
	background-color: #f3f3f3;
	color: var(--black);
	line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
	position: relative;/* 追従サイドボタンの基準設定 */
}

/* ******************************************************************************************
レイアウト
****************************************************************************************** */
/* 基本のレイアウト */
.bl_base-layout {
    display: flex;
}

.base-layout-header {
    width: 350px;
	/* background-color: var(--mainColor); */
	position: sticky;
    top: 0px;
    height: 100vh;
    overflow-y: auto;
}
.base-layout-main{
	width: calc(100% - 350px);
	background-color: #f3f3f3;
	    min-height: 100%;
    /* display: grid;
    grid-template-rows: 1fr auto; */
}

/* 投稿ページのレイアウト */
.ly_sidebar-layout{
	display: flex;
	justify-content: space-between;
	/* padding: 2rem; */
	gap:2rem;
}
.bl_post{
width: calc(100% - 300px);
padding: 2rem;
background-color: #fff;
    border-radius: 20px;
}

.sidebar {
    width: 300px;
    padding: 1rem 1rem 3rem;
    background-color: #fff;
    border-radius: 20px;
}

.sidebar li{
	list-style-type: none;
}

.sidebar .wp-block-group li{
	border-bottom: dashed 1px #ccc;
}

.sidebar .wp-block-group li a{
	padding: .5rem 0;
}

.sidebar .widget + .widget{
	margin-top: 2rem;
}

/* サイドバーのふきだし見出し */
.sidebar .wp-block-heading {
    position: relative;
    width: fit-content;
    padding: .75rem 2.5rem;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.sidebar .wp-block-heading::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 100%;
  height: 50%;
  box-sizing: border-box;
  border: 2px solid #333333;
  border-top: none;
  border-bottom-right-radius: 50px; /* 左下の角丸 */
  border-bottom-left-radius: 50px; /* 右下の角丸 */
  translate: -50%;
}
.sidebar .wp-block-heading::after {
  content: "";
  position: absolute;
  top: calc(100% + 8px); /* フキダシのサイズに応じて調整してください */
  left: 50%;
  width: 30px;
  height: 2px;
  box-sizing: border-box;
  background-color: #333333;
  box-shadow: 0 2px 0 #ffffff, 0 -2px 0 #ffffff;
  rotate: 50deg;
  translate: -50%;
}

@media screen and (max-width:992px){
	.bl_base-layout {
    flex-direction: column;
}
.base-layout-header {
    width: 100%;
    position: initial;
    height: 60px;
    overflow-y: initial;
}
.base-layout-main{
	width: 100%;
	height: calc(100vh - 120px);
}
.ly_sidebar-layout{
    flex-direction: column;
}
.bl_post{
	width: 100%;
}
.sidebar{
	width: 100%;
}

}

@media screen and (max-width:768px){
	/* .ly_sidebar-layout {
    padding: 1rem;
} */
}
/* ******************************************************************************************
	テキスト設定
****************************************************************************************** */
/* pの中にrubyがあれば余白をあける */
p:has(>ruby){
	line-height: 2;
}
/* ******************************************************************************************
	画像設定
****************************************************************************************** */
img{
	vertical-align: bottom;/* 余白防止 */
	max-width: 100%;/* 画像のデフォルトサイズ */
	height: auto;
	object-fit: cover;
}
/* ******************************************************************************************
	フォーム設定（適宜設定）
****************************************************************************************** */
select{
	-webkit-appearance: auto;
	appearance: auto; /* デフォルトの矢印を表示 */
}
select:hover{
	cursor: pointer;
}
input{
	border: 1px solid rgb(0 0 0 / 20%);
}
[type="button"], [type="reset"], [type="submit"]{
	padding: 0 .5em;
	border: none;
	background-color: var(--mainColor);
	color: var(--black);
	cursor: pointer;
}
/* ******************************************************************************************
	リンク設定
****************************************************************************************** */
a{
	display: inline-block;
	color: var(--black);
	text-decoration: underline;
	text-underline-offset: .2rem;
	text-decoration-thickness: 1px;
	text-decoration-skip-ink: none;
}
a:hover, a:focus{
	text-underline-offset: .2rem;
	opacity: .6;
}
/* ******************************************************************************************
	フォーカス設定
****************************************************************************************** */
a:focus-visible, button:focus-visible, input:focus-visible, input:focus-visible, button:focus-visible, select:focus-visible{
	outline: 3px solid #000;
}
/* ******************************************************************************************
	リスト設定
****************************************************************************************** */
ol{
	list-style: decimal;/* リセットCSS打ち消し */
}
/* ******************************************************************************************
	電話番号設定（576px以下タップ有効化）
****************************************************************************************** */
/* タップ電話 */
a[href^="tel:"]{
	display: inline-block;
	text-decoration: none;
	pointer-events: none;
}
@media screen and (max-width:576px){
	a[href^="tel:"]{
		text-decoration: underline;
		cursor: pointer;
		pointer-events: auto;
		/* フォントサイズを変更する場合適宜修正 */
		/* font-size: 1.2rem; */
	}
}
/* ******************************************************************************************
	サイト幅設定（適宜設定）
****************************************************************************************** */
.ly_inner{
	width: calc(100% - 5%);
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: 10px;
	padding-left: 10px;
}
/* ******************************************************************************************
	サイト区切り設定（必要に応じて設定）
****************************************************************************************** */
.ly_section{
	padding-top: 3rem;
	padding-bottom: 3rem;
}
/* ******************************************************************************************
	見出し設定
****************************************************************************************** */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	英語・日本語見出し
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.el_englishJapaneseTitle{
	margin-bottom: 50px;
	padding: 10px 20px;
	text-align: center;
}
.el_englishJapaneseTitle_english{
	display: block;
	font-size: var(--fontSize40);
	font-family: "Times New Roman", Times, "serif";
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	カラーライン見出し
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.el_colorLineTitle{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 50px;
}
.el_colorLineTitle_title{
	position: relative;
	padding: 0 30px;/* 見出しと線の余白 */
	background-color: var(--white);
	font-weight: bold;
	font-size: var(--fontSize21);
	text-align: center;
	z-index: 2;
	font-size: var(--fontSize32);
}
.el_colorLineTitle_line{
	display: inline-block;
	position: relative;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 2px;
	opacity: .5;
	border-radius: var(--borderRadius3);
	background-color: var(--purple);
	z-index: 1;
}
.el_colorLineTitle_line::after, .el_colorLineTitle_line::before{
	content: "";
	display: block;
	position: absolute;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 2px;
}
.el_colorLineTitle_line::before{
	top: calc(50% - 8px);
	left: calc(50% + 10px );
	background-color: var(--pink);
}
.el_colorLineTitle_line::after{
	top: calc(50% + 8px);
	left: calc(50% + 20px );
	background-color: var(--green);
}
/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	見出しH1のコメントアウト
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ******************************************************************************************
	見出しH2のコメントアウト
****************************************************************************************** */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	見出しH3のコメントアウト
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/* ======================================================================
	見出しH4のコメントアウト
====================================================================== */

/* ------------------------------------------------------------
	見出しH5のコメントアウト
------------------------------------------------------------ */

/* -----
	見出しH6のコメントアウト
----- */

/* 説明のみのコメントアウト */

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	ヘッダー
//////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ******************************************************************************************
	サイトロゴ
****************************************************************************************** */
.bl_sitelogo a{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-decoration: none;
    background-image: url(../img/logo.png);
    background-size: contain;
    width: 230px;
    height: 100px;
    background-repeat: no-repeat;
}
.bl_sitelogo img{
	width: 220px;
	height: auto;
}
@media screen and (max-width:992px){
	.bl_sitelogo a{
	background-image: url(../img/logo_sp.png);
        background-size: contain;
        width: 210px;
        height: 30px;
        background-repeat: no-repeat;
}
}
/* ******************************************************************************************
	グローバルメニュー
****************************************************************************************** */

.ly_header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
	background-color: #fff;
}
/* 矢印アイコン */
.arrow_r {
  position: relative;
  display: inline-block;
padding-left: 2rem;
}
.bl_gNav_link.arrow_r{
	padding-left: 2rem;
}
/* お問い合わせフォームボタン */
a.nav-btn {
    display: block;
    padding: 1rem;
    border-radius: 50vh;
		margin: 0 auto;
    margin-top: 2rem;
    background-color: #5bb300;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
	    box-shadow: 0 2px 8px rgb(201 201 201 / 20%);
	max-width: 350px;
}

i.fa.far.fa-envelope {
    font-size: 20px;
	margin-right: 10px;
    color: #fff;
}

.arrow_r:before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--accentColor);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.arrow_r:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 6px;
  bottom: 0;
  margin: auto;
}


@media screen and (max-width:992px){
.base-layout-header{
	height: 80px;
}
.ly_header{
	height: 80px;
	justify-content: flex-start;
	    box-shadow: 0 2px 8px rgb(201 201 201 / 20%);
}


.bl_sitelogo a{
	margin-bottom: 0;
}
.bl_sitelogo img{
	width: 150px;
}
.bl_sitelogo {
    margin-left: .5rem;
}

}
@media screen and (max-width:576px){
.bl_sitelogo img{
	width: 120px;
}
.base-layout-header{
	height: 60px;
}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	全体
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.bl_gNavUnit{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}
@media screen and (max-width:992px){
	.bl_gNav_area{
		position: fixed;
		top: 60px;
		right: -100%;
		overflow: auto;
		transition: .4s;
		width: 100%;
		height: calc(100vh - 60px);
		visibility: hidden;
		background-color:#fff;
		z-index: 3;
	}
	.bl_gNav_area.is_active{
		right: 0;
		visibility: visible;
	}
	.bl_gNav.is_open{
		left: 0;
		transition: all .6s;
	}
	.bl_gNav{
		overflow-x: hidden;
		overflow-y: auto;
		transition: all .6s;
		width: 100%;
		padding: 1rem;
	}
	.bl_gNavUnit{
		display: block;
		margin-bottom: 2rem;
	}
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	個別
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ============================================================
	グローバルメニューのリスト
============================================================ */
.bl_gNav_item{
	position: relative;
	width: 100%;
	border-bottom: dashed 1px #ccc;
}

/* .bl_gNav_item + .bl_gNav_item::before{
	content: '';
	display: block;
	width: 1px;
	height: 15px;
	background-color: var(--black);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
} */
.bl_gNav_link{
	display: flex;
	justify-content: start;
	align-items: center;
	transition: all .3s;
	padding:1rem 0;
	font-size: 1.1rem;
	color: var(--black);
	font-weight: bold;
	letter-spacing: 2px;
	text-decoration: none;
}
.bl_gNav_link:hover, .bl_gNav_link:focus{
	opacity: 1;
	background-color: var(--mainColor);
}
@media screen and (max-width:992px){
	.bl_gNav_item{
		width: 100%;
	}
	.bl_gNav_item + .bl_gNav_item::before{
		content: none;
	}

	.bl_gNav_link{
		position: relative;
		display: block;
		padding: 1rem;
	}
	/* .bl_gNav_link::after{
		content: "";
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		border: 5px solid transparent;
		border-left: 8px solid var(--black);
		transition: .2s;
	}
	.bl_gNav_link:hover::after,.bl_gNav_link:focus::after{
		right: 7px;
		transition: .2s;
	} */
}
/* ============================================================
	ハンバーガーメニュー
============================================================ */
.el_trigger{
	display: none;
}
@media screen and (max-width:992px){
	.el_trigger{
		display: block;
		position: absolute;
		top: 0px;
		right: 0px;
		transition: .2s;
		width: 80px;
		height: 80px;
		margin: 0;
		border: 2px solid var(--accentColor);
		background-color: var(--accentColor);
		cursor: pointer;
		z-index: 1000;
	}
	.el_trigger.is_active .el_trigger_line{
		background-color: transparent;
	}
	.el_trigger.is_active .el_trigger_line::before{
		top: 0;
		transform: rotate(45deg);
	}
	.el_trigger.is_active .el_trigger_line::after{
		top: 0;
		transform: rotate(-45deg);
	}
	.el_trigger.is_active .el_trigger_text::before{
		content: "閉じる";
	}
	.el_trigger_line{
		display: block;
		position: absolute;
		top: 30px;
		left: 50%;
		transform: translateX(-50%);
		transition: .4s;
		width: 35px;
		height: 2px;
		border-radius: 5px;
		background-color: #fff;
	}
	.el_trigger_line::before, .el_trigger_line:after{
		content: "";
		display: block;
		position: absolute;
		transition: inherit;
		width: 100%;
		height: 100%;
		background-color: #fff;
	}
	.el_trigger_line::before{
		top: -10px;
	}
	.el_trigger_line:after{
		top: 10px;
	}
	.el_trigger_text{
		position: absolute;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		text-align: center;
	}
	.el_trigger_text::before{
		content: "メニュー";
		color: #fff;
		font-weight: bold;
		font-size: 13px;
	}
}

@media screen and (max-width:768px){
	.ly_header{
		height: 60px;
	}
	    .el_trigger {
        width: 60px;
        height: 60px;
    }
	.el_trigger_line{
		top:18px;
	}
	.el_trigger_text{
		bottom:0;
	}
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	フッター
//////////////////////////////////////////////////////////////////////////////////////////////////// */

footer{
background-color: var(--accentColor);
margin-top: 5rem;
  position: sticky;
  top: 100vh;
  width: 100%;
}
footer p{
	color: #fff;
}
.footer-title{
	padding: 2rem;
	text-align: center;
	font-size: var(--fontSize18);
	font-weight: 700;
}
.copy{
	padding: 1rem;
	font-size: var(--fontSize12);
	border-top: dashed 1px #fff;
	text-align: center;
}

/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	印刷用スタイル
//////////////////////////////////////////////////////////////////////////////////////////////////// */
@media print{
	body{
		/* 背景色反映のため */
		-webkit-print-color-adjust: exact;
	}
}