@charset "utf-8";

/*
	* 顧客オリジナルスタイルシート
	* サイト全体に関するスタイル
	* ver1
	* Copyright (C) ●●など
	* 更新履歴
		└ 
*/

/* *{
	border: solid 1px #ccc;
} */
/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	初期設定（不要なものは削除）
//////////////////////////////////////////////////////////////////////////////////////////////////// */
/* ******************************************************************************************
	root設定（適宜修正）（フォントはベースフォント外を削除してください。）
****************************************************************************************** */
:root{
	--black: #000e25;
	--mainColor: #bd0017;
	/* --mainColor: #bd0017; */
	--accentColor: #004ea2;
	--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;
	--fontSize60: 3.75rem;

	/* ベースフォント18pxの場合 */
	/* --fontSize10: 0.555rem;
	--fontSize11: 0.611rem;
	--fontSize12: 0.666rem;
	--fontSize13: 0.722rem;
	--fontSize14: 0.777rem;
	--fontSize15: 0.833rem;
	--fontSize16: 0.888rem;
	--fontSize17: 0.944rem;
	--fontSize18: 1rem;
	--fontSize19: 1.055rem;
	--fontSize20: 1.111rem;
	--fontSize21: 1.166rem;
	--fontSize22: 1.222rem;
	--fontSize23: 1.277rem;
	--fontSize24: 1.333rem;
	--fontSize25: 1.388rem;
	--fontSize26: 1.444rem;
	--fontSize27: 1.5rem;
	--fontSize28: 1.555rem;
	--fontSize29: 1.611rem;
	--fontSize30: 1.666rem;
	--fontSize31: 1.722rem;
	--fontSize32: 1.777rem;
	--fontSize33: 1.833rem;
	--fontSize34: 1.888rem;
	--fontSize35: 1.944rem;
	--fontSize36: 2rem;
	--fontSize37: 2.055rem;
	--fontSize38: 2.111rem;
	--fontSize39: 2.166rem;
	--fontSize40: 2.222rem;
	--fontSize41: 2.277rem;
	--fontSize42: 2.333rem;
	--fontSize43: 2.388rem;
	--fontSize44: 2.444rem;
	--fontSize45: 2.5rem;
	--fontSize46: 2.555rem;
	--fontSize47: 2.611rem;
	--fontSize48: 2.666rem;
	--fontSize49: 2.722rem;
	--fontSize50: 2.777rem; */
}
/* ******************************************************************************************
	ベースフォント設定
****************************************************************************************** */
html{
	font-size: 16px;/* ベースフォント */
		scroll-behavior: smooth;
}

@media screen and (max-width: 768px){
	html{
		font-size: 14px;
	}
}
/* ******************************************************************************************
	body設定
****************************************************************************************** */
body{
	display: grid;/* フッター浮き上がり対策 */
	grid-template-rows: auto 1fr auto;/* フッター浮き上がり対策 */
	grid-template-columns: 100%;/* フッター浮き上がり対策 */
	min-height: 100vh;/* フッター浮き上がり対策 */
	background-color: #fff;
	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;/* 追従サイドボタンの基準設定 */
	overflow-x: hidden;
	padding-top: 110px;
	
}

body.page-template-front-page{
	padding-top: 0;
}
@media screen and (max-width: 992px){
	body{
		padding-top: 60px;
	}
}

/* ******************************************************************************************
	テキスト設定
****************************************************************************************** */
/* pの中にrubyがあれば余白をあける */
p:has(>ruby){
	line-height: 2;
}
/* ::marker{
	content: none!important;
} */
/* ******************************************************************************************
	画像設定
****************************************************************************************** */
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: 100%;
	max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 10%;
	margin: 0 auto;
}
.ly_inner_wide {
    width: 100%;
	max-width: 1600px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 10%;
	margin: 0 auto;
}
.page-template-front-page .ly_inner{
	width: 100%;
    margin-right: auto;
    margin-left: auto;
    /* padding: 0; */
	margin: 0 auto;
}

@media screen and (max-width:1200px){
	.ly_inner,.ly_inner_wide {
    padding: 0px 5%;
}
}
@media screen and (max-width: 576px) {
    .ly_inner,.ly_inner_wide  {
        padding: 0px 3%;
    }
}


/* ******************************************************************************************
	サイト区切り設定（必要に応じて設定）
****************************************************************************************** */
.ly_section{
	padding-top: 5rem;
	padding-bottom: 5rem;
}
/* ******************************************************************************************
	見出し設定
****************************************************************************************** */

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	英語・日本語見出し
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.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: 600;
	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のコメントアウト
----- */

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

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

.ly_header {
    /* position: fixed; */
	position: absolute;
	top: 0;
    width: 100%;
	z-index: 3;
 transition: background-color 0.3s ease-in-out; /* スムーズなアニメーション */

}

.bl_header-wrap{
	display: flex;
	justify-content: space-between;
	padding: .75rem 0;
	align-items: center;
}

.bl_header-wrap.header-mv {
	padding: .75rem 0;
}
.bl_gNavTop  {
    padding-right: 1rem;
}

/* サイトタイトル */
.bl_sitelogo {
    padding-left: 1rem;
}
.site-logo a {
  display: block; 
     width: 135px;
    height: 60px;
}
.page-template-front-page .header-mv .site-logo{
opacity: 0;
}

.site-logo .logo-image {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/logo_bk.svg);
  background-size: contain; 
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px;
  overflow: hidden;
}
.page-template-front-page .site-logo .logo-image {
  background-image: url(../img/logo.svg);
}

/* SNSアイコンは背景画像で表示 */
.sns-link li a {
  display: block;
  width: 40px;
  height: 40px; 
}

.sns-link li a span {
  display: block;
  width: 100%; 
  height: 100%; 
  background-size: contain; 
  background-repeat: no-repeat;
  background-position: center center;
  text-indent: -9999px; 
  overflow: hidden; 
}

.sns-instagram .icon-instagram {
    background-image: url(../img/icon/instagram-color.png)}

.sns-x .icon-x {
  background-image: url(../img/icon/x-color.png);}

.sns-facebook .icon-fb {
 background-image: url(../img/icon/fb-color.png);
}

.sns-line .icon-line {
     background-image: url(../img/icon/line-color.png);
}

/* フロントページでのみ白ロゴ */
.page-template-front-page .sns-instagram .icon-instagram {
  background-image: url(../img/icon/instagram-color.png);
}

.page-template-front-page .sns-x .icon-x {
  background-image: url(../img/icon/x-color.png);
}

.page-template-front-page .sns-facebook .icon-fb {
  background-image: url(../img/icon/fb-color.png);
}

.page-template-front-page .sns-line .icon-line {
  background-image: url(../img/icon/line-color.png);
}



/* スクロールで上から出てくるメニュー */
#fixed-header {
    position: fixed;
    top: -300px;
    width: 100%;
    text-align: center;
    color: var(--black);
    background: #fff;
    box-sizing: border-box;
    transition: .5s;
    border-bottom: solid 1px #e3e1e1;
    box-shadow: 0 5px 18px -5px rgb(0 0 0 / 15%);
}
#fixed-header.is-show {
  top: 0;
}
/* スクロールで表示されるメニューのサイトタイトル */
#fixed-header .site-logo .logo-image {
	  background-image: url(../img/logo_bk.svg);
}

/* スクロールで表示されるメニューのテキスト */
#fixed-header .bl_gNav_link{
	color: var(--black);
	text-shadow: none;
}
#fixed-header li.bl_gNav_item.bg_red a{
	color: #fff;
}

/* スクロールで表示されるメニューのSNSアイコン */


#fixed-header .sns-instagram .icon-instagram {
    background-image: url(../img/icon/instagram-color.png)}

#fixed-header .sns-x .icon-x {
  background-image: url(../img/icon/x-color.png);}

#fixed-header .sns-facebook .icon-fb {
 background-image: url(../img/icon/fb-color.png);
}

#fixed-header .sns-line .icon-line {
     background-image: url(../img/icon/line-color.png);
}

.bl_breadcrumbsWrap{
	    margin: 1rem .5rem .5rem 1rem;
}

@media screen and (max-width:992px){
	#fixed-header{
		display: none;
	}
}
@media screen and (max-width:576px){
.site-logo a {
    width: 120px;
    height: 54px;
}
.bl_header-wrap {
    padding: .25rem .5rem;
}
}

/* 印刷時には追従メニューを非表示 */
@media print{
	#fixed-header{
		display: none;
	}
}




/* ////////////////////////////////////////////////////////////////////////////////////////////////////
	フッター
//////////////////////////////////////////////////////////////////////////////////////////////////// */
footer{
	/* font-size: var(--fontSize24); */
	color: #fff;
}


.footer-ttl_h3{
	font-size: var(--fontSize24);
	font-weight: 600;
	margin-bottom: 1rem;
}


footer a{
	color: #fff;
}

footer .ly_inner{
    padding: 3rem;
	max-width: 100%;
	max-width: 1300px;
}

.footer-ttl{
	font-size: var(--fontSize36);
	font-weight: 600;
	margin-bottom: 2rem;
	/* margin-top: 3rem; */
}

.footer-bg{
	background-color: #3d848a;
	color: #fff;
}
footer .btn{
	margin: initial;
	width: fit-content;
	padding: .5rem;
}

.office-list {
    display: flex;
    flex-wrap: wrap;
	gap: 1rem;
	row-gap: 3rem;
}

.office-list li{
width: calc((100% - 2rem) / 3);}

.office-name{
	font-size: var(--fontSize20);
	font-weight: 600;
}

.copy {
    padding: .5rem;
    text-align: center;
    font-size: var(--fontSize12);
}
.bl_mapbtn {
    display: block;
    padding: 3px 8px;
    border: solid 1px #fff;
    max-width: 200px;
    margin-top: .5rem;
    text-decoration: none;
	position: relative;
	display: flex;
    align-items: center;
}
.bl_mapbtn::after{
	content: '';
    background-image: url(../img/btn.png);
    width: 20px;
    height: 20px;
    background-size: cover;
    display: inline-block;
	position: absolute;
    right: 5px;
}

footer .sns-box-item.item-insta a,footer .sns-box-item.item-x a,
footer .sns-box-item.item-fb a,footer .sns-box-item.item-line a{
	background-color: transparent;
	border: solid #fff 1px;
}
@media screen and (max-width: 768px) {
	
footer .ly_inner{
    padding: 10% 3%;
}
.office-list li {
    width: calc((100% - 1rem) / 2);
}

}

@media screen and (max-width: 576px) {
	.office-list li {
    width:100%;
}
}



/* ******************************************************************************************
	グローバルメニュー
****************************************************************************************** */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	全体
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.bl_gNavUnit{
	display: flex;
	justify-content: flex-end;
}

.bl_gNavTop{
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-bottom: 1rem;
	justify-content: end;
}
.form-link{
	display: flex;
	align-items: center;
}
.form-link a{
	font-size: 1rem;
}
.sns-link {
    display: flex;
    align-items: center;
    gap: 22px;
    justify-content: center;
	position: relative;
}

.sns-link li a{
    width: 33px;
    height: 33px;
    margin: 0;
	display: flex;
    align-items: center;
    justify-content: center;
	font-size: var(--fontSize18);
}
/* .sns-link li a img{
	width: 35px;
	height: 35px;
} */
/* .sns-link::after{
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
} */

#fixed-header .sns-link::after{
background-color: #ccc;
}

@media screen and (max-width:992px){
	.bl_gNav_area{
        position: fixed;
        top: 0;
        right: -100%;
        overflow: auto;
        transition: .4s;
        width: 90%;
        height: 100vh;
        visibility: hidden;
        background-color: #fffffff0;
        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 1rem 3rem;
	}
	.bl_gNavUnit{
		display: block;
		margin-bottom: 2rem;
	}

	.bl_gNavTop {
	padding: 5rem 1rem 0 1rem;
	justify-content: start;
}
}
@media screen and (max-width:576px){
	.bl_gNavTop {
	justify-content: center;
}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	個別
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ============================================================
	グローバルメニューのリスト
============================================================ */
.bl_gNav_item{
	position: relative;
}
/* .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: center;
	align-items: center;
	transition: all .3s;
	padding: 0.3rem 1rem;
	font-size: 1.1rem;
	color: var(--black);
	font-weight: 600;
	letter-spacing: 1px;
	/* color: #fff; */
	text-decoration: none;
	font-size: var(--fontSize18);
	/* text-shadow: 0px 0px 6px rgba(255, 255, 255, 0.48); */
}
li.bl_gNav_item.bg_red a{
	background-color: var(--mainColor);
	color: #fff;
}

.bl_gNav_item:hover{
	opacity: .7;
}

/* .page-template-front-page .bl_gNav_link{
	color:#fff;
   text-shadow: 1px 1px 8px rgba(0, 0, 0, 1), 0px 0px 3px rgba(74, 74, 74, 1);
} */

/* .bl_header-wrap.change-color .bl_gNav_link{
	color: #000;
} */

.bl_gNav_link:hover, .bl_gNav_link:focus{
	opacity: 1;
	/* color: var(--black);
	background-color: var(--black); */
}
@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;
		border-bottom: 1px solid #ccc;
	}
	.bl_gNav_link::after{
		content: "";
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		border: 5px solid transparent;
		border-left: 8px solid var(--mainColor);
		transition: .2s;
	}
	li.bl_gNav_item.bg_red .bl_gNav_link::after{
		border-left: 8px solid #fff;
	}
	.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: fixed;
		top: 0px;
		right: 0px;
		transition: .2s;
		width: 50px;
		height: 50px;
		margin: 0;
		border: 2px solid var(--mainColor);
		background-color: var(--mainColor);
		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: 16px;
        left: 50%;
        transform: translateX(-50%);
        transition: .4s;
        width: 25px;
        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: -8px;
	}
	.el_trigger_line:after{
		top: 8px;
	}
	.el_trigger_text{
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		text-align: center;
	}
	.el_trigger_text::before{
		content: "メニュー";
		color: #fff;
		font-weight: 600;
		font-size: 10px;
	}
}





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