@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
@media all and (max-width: 413px) {
	html {
		font-size: calc(1000vw / 414);
	}
}
body, table, input, textarea, select, option {
	font-family: "Zen Kaku Gothic New", sans-serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
chrome_annotation {
	border: none !important;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
address {
	font-style: normal;
}
a,
a:link {
	color: #292929;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: #292929;
}
a:hover {
	color: #292929;
}
a:active {
	color: #292929;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {

	color: #292929;
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	position: relative;
	text-align: left;
	overflow: hidden;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 1300px) {
	.tab {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 2.5rem 4.4rem;
	box-sizing: border-box;
	z-index: 99;
	background: transparent;
	transition: background 0.3s ease, box-shadow 0.3s ease;
}
/* スクロール時 */
#gHeader.is-scrolled {
	background: rgba(255, 255, 255, 0.9); /* うっすら白 */
	box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* ほんのり影（任意） */
}
#gHeader .logo {
	width: 22.5rem;
	position: relative;
	z-index: 10;
}
#gNavi {
	position: absolute;
	right: 43.2rem;
	top: 4.9rem;
}
#gNavi ul {
	justify-content: flex-end;
}
#gNavi ul li:not(:first-child) {
	margin-left: 3rem;
}
#gNavi a {
	color: #9F0046;
}
#gNavi a:hover {
	opacity: 0.7;
}
body.menu-open #gHeader .searchWrap {
	display: none !important;
  }
/* =========================
  検索 全体ラッパー
========================= */
#gHeader .searchWrap {
	position: absolute;
	right: 36.5rem;
	top: 3.7rem;
	z-index: 9999;
  }
  
  /* =========================
	トグル（アイコン＋検索）
	※ 動かさない
  ========================= */
  #gHeader .searchToggle {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.3rem;
	color: #9F0046;
	font-size: 1.1rem;
	position: relative;
	z-index: 2; /* 検索窓より前 */
  }
  #gHeader .searchToggle:hover{
	opacity: 0.7;
  }
  #gHeader .searchToggle .icon {
	width: 2.6rem;
	height: 2.6rem;
	border-radius: 50%;
	background: url(../img/common/icon10.png) no-repeat center;
	background-size: 2.4rem auto;
  }
  
  #gHeader .label {
	font-size: 1.2rem;
	font-weight: 500;
  }
  
  /* =========================
	検索フォーム（下にドロップ）
  ========================= */
  #gHeader .search {
	position: absolute;
	top: calc(100% + 0.6rem); /* アイコン＋検索の真下 */
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center; 
	width: max-content;
	height: 3.2rem;  
	border-radius: 999px;
	border: 1px solid #9F0046;
	background: #fff;
	overflow: hidden; 
	/* 初期は非表示 */
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) translateY(-6px);
	transition: opacity .2s ease, transform .25s ease;
  }
  
  /* =========================
	開いた状態
  ========================= */
  #gHeader .searchWrap.is-open .search {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
  }
  
  /* =========================
	テキスト入力
  ========================= */
  #gHeader .search input[type="text"] {
	flex: 1;
	height: 100%;
	padding: 0 1.2rem;
	font-size: 1.3rem;
	color: #9F0046;
	border: none;
	background: transparent;
	outline: none;
  }
  
  /* =========================
	右側 検索ボタン（追加）
  ========================= */
  #gHeader .search input[type="submit"] {
	width: auto;              /* テキストに合わせる */
	min-width: 5.2rem;       /* ボタン感 */
	padding: 0 1.2rem;
  
	height: 3.2rem;
	background-color: #9F0046;
	border: none;
	cursor: pointer;
  
	font-size: 1.2rem;       /* ← 文字表示 */
	font-weight: 500;
	color: #fff;
	letter-spacing: .05em;
  
	flex-shrink: 0;
	transition: background-color .3s;
  }
  /* アイコン背景を無効化 */
#gHeader .search input[type="submit"] {
	background-image: none;
  }
  
  /* hover */
  #gHeader .search input[type="submit"]:hover {
	background-color: #7f0038;
  }
  /* =========================
	プレースホルダー
  ========================= */
  #gHeader .search input::placeholder {
	color: #9F0046;
	opacity: 0.4;
  }
  
  /* =========================
	フォーカス時
  ========================= */
  #gHeader .search:focus-within {
	border-color: #c1005a;
  }
  #gHeader .header-tell{
	border: 1px solid #9F0046;
	padding: 5px 10px;
	position: absolute;
    right: 14.5rem;
    top: 2.7rem;
	border-radius: 5px;
}
#gHeader .header-tell a{
	display: block;
    width: fit-content;
    margin: 0 auto -0.7rem;
    color: #9F0046;
    font-size: 3rem;
    letter-spacing: 0.05em;
}
#gHeader .header-tell p{
	font-size: 1.2rem;
	color: #9F0046;
}
  
#gHeader .search-02 {
	position: absolute;
	width: 15.7rem;
	right: 14.5rem;
	top: 4.7rem;
	border-radius: 5rem;
	overflow: hidden;
	border: 1px solid #9F0046;
}
#gHeader .search-02 input[type="text"] {
	width: 100%;
	padding: 0 3.5rem 0.1rem 1.4rem;
	height: 2.6rem;
	font-size: 1.3rem;
	color: #9F0046;
	border: none;
	box-sizing: border-box;
	appearance: none;
	box-shadow: none;
	border-radius: 5rem;
	background: #fff;
}
#gHeader .search-02 input[type="submit"] {
	position: absolute;
	right: -1px;
	top: 0;
	width: 3.2rem;
	height: 2.6rem;
	font-size: 0;
	border: none;
	box-sizing: border-box;
	appearance: none;
	box-shadow: none;
	border-radius: 0;
	background: url(../img/common/head-search.png) no-repeat left 45% center #9F0046;
	background-size: 1.4rem auto;
	cursor: pointer;
	transition: .3s;
}
#gHeader .search-02 input::-webkit-input-placeholder { 
	color: #9F0046;
	opacity: 0.3;
}
#gHeader .search-02 input:-moz-placeholder {
	color: #9F0046;
	opacity: 0.3;
}
#gHeader .search-02 input::-moz-placeholder {
	color: #9F0046;
	opacity: 0.3;
}
#gHeader .search-02 input:-ms-input-placeholder {
	color: #9F0046;
	opacity: 0.3;
}
.menu {
	width: 8.5rem;
	height: 8.5rem;
	position: absolute;
	right: 3.8rem;
	top: 1.5rem;
	text-align: center;
	padding-top: 4.5rem;
	font-size: 1.4rem;
	font-weight: 700;
	color: #fff;
	border-radius: 100%;
	background-color: #9F0046;
	cursor: pointer;
	transition: .3s;
	z-index: 10;
}
.menu .line {
	width: 2.5rem;
	height: 0.2rem;
	position: absolute;
	top: 2.4rem;
	left: 3rem;
	background: #fff;
	transition: all .35s ease;
}
.menu .line:nth-of-type(2) {
	width: 1.9rem;
	top: 3.2rem;
}
.menu .line:nth-of-type(3) {
	width: 1.4rem;
	top: 4.1rem;
}
.menu.on .line {
	width: 2.9rem !important;
	left: 2.8rem;
}
.menu.on .line:nth-of-type(1) {
	transform: translateY(0.9rem) translateX(0) rotate(45deg);
}
.menu.on .line:nth-of-type(2) {
	opacity: 0;
}
.menu.on .line:nth-of-type(3) {
	transform: translateY(-0.8rem) translateX(0) rotate(-45deg);
}
.menuBox {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	box-sizing: border-box;
	background: url(../img/common/menu_bg.jpg) no-repeat center top;
	background-size: cover;
	display: none;
}
.menuBox .menuSub {
	padding: 17.9rem 0 5rem;
}
.menuBox .content {
	position: relative;
}
.menuBox .menuBtn {
	position: absolute;
	right: 33.7rem;
	top: 5.1rem;
}
.menuBox .menuBtn a {
	padding-left: 2rem;
	color: #9F0046;
	display: inline-block;
	background: url(../img/common/icon12.png) no-repeat left center;
	background-size: 1.4rem auto;
}
.menuBox .font {
	position: absolute;
	right: 47.3rem;
	top: 5.1rem;
	color: #9F0046;
	justify-content: flex-end;
}
.menuBox .font span {
	margin-right: 0.5rem;
	font-weight: 400;
}
.menuBox .font a {
	margin-left: 0.4rem;
	width: 5rem;
	color: #9F0046;
	text-align: center;
	border-radius: 5rem;
}
.menuBox .font .on {
	color: #fff;
	background-color: #9F0046;
}
.menuBox .menuNavi > li {
	padding-bottom: 3.5rem;
}
.menuBox .menuNavi p {
	margin-bottom: 1.3rem;
	padding-bottom: 1.4rem;
	color: #9F0046;
	font-size: 2rem;
	font-family: "Zen Maru Gothic", sans-serif;
	border-bottom: 1px solid #9F0046;
}
.menuBox .menuList {
	font-weight: 400;
	line-height: 1.6;
}
.menuBox .menuList li:not(:last-child) {
	margin-bottom: 1.6rem;
}
.menuBox .menuList a {
	padding-right: 1.2rem;
	display: inline-block;
	background: url(../img/common/icon11.png) no-repeat right center;
	background-size: 0.5rem auto;
	color: #292929 !important;
	text-decoration: none;
}
.menuBox .menuTel {
    width: fit-content;
    margin: 5rem auto 0;
    padding: 3rem 0;
    justify-content: center;
    display: flex;
    background-color: #fff;
    border: 1px solid #9F0046;
    border-radius: 10px;
}
.menuBox .menuTel a {
	display: block;
	padding: 1.3rem 2.5rem;
	font-size: 1.4rem;
	text-align: center;
	color: #9F0046;
	position: relative;
}
.menuTel a:not(:first-child) {
	border-left: 1px solid #D3CBBB;
  }
.menuBox .menuTel .num {
	margin: -0.4rem 0 -1.1rem;
	display: block;
	font-size: 2.7rem;
	letter-spacing: 0.05em;
	padding-top: 1rem;
}
.menuBox .menuTel .sml {
	width: 14.6rem;
	margin: 0 auto;
	display: block;
	background: url(../img/common/line05.png) no-repeat left center,url(../img/common/line06.png) no-repeat right center;
	background-size: 1.6rem auto;
}
.menuBox .menuIns {
	width: 24.2rem;
	margin: 4rem auto 2rem;
}
.menuBox .menuIns a {
	height: 6.8rem;
	padding: 0 0 0.2rem 2.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #9F0046;
	background: url(../img/common/icon09.png) no-repeat left 3.3rem top 52%,url(../img/common/icon08.png) no-repeat right 2.5rem top 52% #FFF;
	background-size: 2.5rem auto,1.2rem auto;
	border-radius: 5rem;
	border: 1px solid #9F0046;
}
/* 電話ボタン（デフォルトは非表示） */
.sp-tel {
	display: none;
	position: absolute;
	right: 12.4rem;
    top: 1.5rem;
	width: 6.5rem;
	height: 6.5rem;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	z-index: 11;
}
/* 電話アイコン */
.sp-tel .tel-icon {
	width: 3.4rem;
	height: 3.4rem;
	background: url(../img/common/icon-tel.png) no-repeat center;
	background-size: contain;
}
.menuNavi{
	justify-content: flex-start !important;
    gap: 2rem;
}
@media all and (min-width: 1300px) {
	#gHeader .search input[type="submit"]:hover {
		opacity: 0.7;
	}
	.menu:hover {
		opacity: 0.7;
	}
	.menuBox .menuNavi > li {
		width: 24rem;
	}
	.menuBox .menuNavi > li.wid01 {
		width: 100%;
	}
	.menuBox .menuNavi > li.wid02 {
		width: 100%;
	}
	.menuBox .menuNavi > li.wid03 {
		width: 50rem;
	}
	.menuBox .menuInfo.flexB .menuList {
		width: 24rem;
	}
	.menuBox a:hover {
		opacity: 0.7;
	}
	.menuBox .font a:hover {
		opacity: 1;
		color: #fff;
		background-color: #9F0046;
	}
}
@media all and (min-width: 1300px) and (max-width: 1380px){
	#gHeader {
		padding-left: 3rem;
	}
	#gHeader .logo {
		width: 18.5rem;
		padding-top: 10px;
	}
	#gNavi{
		right: 34.2rem;
	}
	#gHeader .header-tell{
		right: 12.5rem;
	}
	#gHeader .header-tell p{
		font-size: 0.9rem;
	}
	#gHeader .header-tell a{
		font-size: 2.5rem;
	}
	.menu{
		width: 7.5rem;
		height: 7.5rem;
		padding-top: 4.2rem;
		font-size: 1.2rem;
		right: 2.8em;
	}
	.menu .line{
		left: 2.5rem;
	}
	#gHeader .searchWrap{
		right: 29rem;
	}
}

@media all and (max-width: 1299px) {
	.header-tell{
		display: none;
	}
	#gHeader {
		padding: 2rem 1.4rem;
	}
	#gHeader .logo {
		width: 15.7rem;
	}
	#gNavi {
		display: none;
	}
	.menuBox .menuSub {
		padding-top: 13.4rem;
	}
	#gHeader .search {
		position: relative;
		right: auto;
		top: auto;
		max-width: 32.3rem;
		width: auto;
		margin: 0 auto 3.5rem;
	}
	.bigFont #gHeader .search {
		max-width: 30.3rem;
	}
	#gHeader .search input[type="text"] {
		padding: 0 5.5rem 0.1rem 2.4rem;
		height: 4.2rem;
		font-size: 1.5rem;
	}
	#gHeader .search input[type="submit"] {
		width: 4.7rem;
		height: 4.2rem;
		background-size: 1.9rem auto;
	}
	.menu {
		width: 6.3rem;
		height: 6.3rem;
		right: 2.5rem;
		top: 1.2rem;
		padding-top: 3.3rem;
		font-size: 1rem;
	}
	.menu .line {
		width: 1.9rem;
		top: 1.6rem;
		left: 2.2rem;
	}
	.menu .line:nth-of-type(2) {
		width: 1.5rem;
		top: 2.3rem;
	}
	.menu .line:nth-of-type(3) {
		width: 1.1rem;
		top: 3rem;
	}
	.menu.on .line {
		width: 1.9rem !important;
		left: 2.2rem;
	}
	.menu.on .line:nth-of-type(1) {
		transform: translateY(0.8rem) translateX(0) rotate(45deg);
	}
	.menu.on .line:nth-of-type(3) {
		transform: translateY(-0.6rem) translateX(0) rotate(-45deg);
	}
	.menuBox .menuBtn {
		margin-bottom: 3.3rem;
		position: static;
		text-align: center;
		margin-top: 5rem;
	}
	.menuBox .font {
		margin: 0 0 2.2rem 1rem;
		position: static;
		justify-content: center;
	}
	.menuBox .menuNavi {
		display: block;
	}
	.menuBox .menuNavi > li {
		padding-bottom: 0;
	}
	.menuBox .menuNavi p {
		margin-bottom: 0;
		padding-top: 4.4rem;
		background: url(../img/common/icon13.png) no-repeat right top 5rem;
		background-size: 2.4rem auto;
	}
	.menuBox .menuNavi p.on {
		background-image: url(../img/common/icon13_on.png);
	}
	.menuBox .menuInfo {
		display: none;
		margin-bottom: -2.1rem;
		padding-top: 1.8rem;
	}
	.menuBox .menuList li {
		margin-bottom: 2rem !important;
	}
	.menuBox .menuTel {
		max-width: 80%;
		width: auto;
		position: static;
		margin: 6rem auto 0;
	}
	.menuBox .menuTel a {
		padding: 1.5rem 0 0.9rem;
		font-size: 1.5rem;
		width: 100%;
	}
	.menuBox .menuTel .num {
		vertical-align: middle;
		font-size: 3rem;
	}
	.menuBox .menuTel .sml {
		margin-bottom: 0.3rem;
	}
	.menuBox .menuIns {
		max-width: 32.4rem;
		width: auto;
		position: static;
		margin: 8rem auto 2.5rem;
	}
	.menuBox .menuIns a {
		height: 5.9rem;
		padding: 0.2rem 0 0 4rem;
		background-position: left 7.8rem center,right 3.2rem top 52%;
	}
	.bigFont .menuBox .menuIns a {
		background-position: left 4.8rem center,right 3.2rem top 52%;
	}
	.sp-tel {
		display: flex;
	}
	#gHeader .search-02 {
		left: 50%;
		transform: translate(-50%, 0);
		top: 12.7rem;
		width: 22.7rem;
		height: 3.5rem;
		right: 0;
	}
	#gHeader .search-02 input[type="text"]{
		height: 3.5rem;
	}
	#gHeader .search-02 input[type="submit"]{
		height: 3.5rem;
	}
}
@media all and (max-width: 896px) {
	/* 電話ボタン（デフォルトは非表示） */
.sp-tel {
	right: 9.4rem;
    top: 1.7rem;
}
/* 電話アイコン */
.sp-tel .tel-icon {
	width: 3rem;
	height: 3rem;
}
.menuBox .menuTel{
	display: block;
	padding: 0;
	max-width: 100%;
}
.menuTel a:not(:first-child) {
    border-left: none;
    border-top: 1px solid #D3CBBB; /* 横線 */
  }
  .menuBox .menuTel a{
	width: 90%;
    margin: 0 auto;
	padding: 3.5rem 0;
  }
  .menuBox .menuIns{
	margin: 6rem auto;
  }
}
@media all and (max-width: 413px) {
	.bigFont .menuBox .menuTel .num {
		font-size: 2.6rem;
	}
	.menu {
		top: 1.4rem;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding: 8.2rem 0 9.9rem;
	color: #fff;
	background-color: #9F0046;
	border-radius: 8rem 8rem 0 0;
}
#gFooter .content {
	padding: 0 0.1rem;
}
#gFooter a {
	color: #fff;
}
#gFooter .fSub a:hover {
	opacity: 0.7;
}
#gFooter .fInfo {
	width: 30rem;
}
#gFooter .fLogo {
	margin-bottom: 3.5rem;
	width: 22.5rem;
}
#gFooter p {
	line-height: 1.93;
	font-size: 1.4rem;
	font-weight: 400;
}
#gFooter .fSub {
	margin-top: 2.1rem;
	width: 70rem;
}
#gFooter .fNavi {
	margin-bottom: 6.2rem;
	justify-content: flex-end;
}
#gFooter .fNavi li:not(:first-child) {
	margin-left: 3rem;
}
#gFooter .ins {
	width: 21.8rem;
	margin: 0 0 11.3rem auto;
}
#gFooter .ins a {
	height: 4.8rem;
	padding: 0 0 0.3rem 3.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #9F0046;
	background: #fff url(../img/common/icon09.png) no-repeat left 2.8rem top 52%;
	background-size: 2.5rem auto;
	border-radius: 5rem;
}
#gFooter address {
	text-align: right;
	font-size: 1.1rem;
	letter-spacing: 0.055em;
	font-weight: 400;
}
@media all and (max-width: 1300px) {
	#gFooter {
		padding: 8rem 0;
		border-radius: 4rem 4rem 0 0;
	}
	#gFooter .content {
		padding: 0;
		display: block;
	}
	#gFooter .fInfo {
		width: auto;
	}
	#gFooter .fLogo {
		margin: 0 auto 2.5rem;
	}
	#gFooter p {
		text-align: center;
		margin-bottom: 4rem;
	}
	#gFooter .fSub {
		width: auto;
	}
	#gFooter .fNavi {
		margin-bottom: 4rem;
		justify-content: center;
	}
	#gFooter .fNavi li {
		margin: 0 1rem 2rem !important;
	}
	#gFooter .ins {
		margin: 0 auto 2rem;
	}
	#gFooter address {
		text-align: center;
		font-size: 1rem;
		letter-spacing: 0;
	}
}