@charset "UTF-8";

/*

 base.css

*/
/* -----------------------------------------------

= base

----------------------------------------------- */
html {
	line-height: 2;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	width: 100%;
	color: #1B1B1B;
	font-family: "Poppins", sans-serif;
	font-style: normal;
	font-weight: 400;
	background: #E2E1DE;
}
:root {
	--color-key: #CC9943;
	--color-base: #1B1B1B;
  }
img {
	max-width: 100%;
	vertical-align: top;
}
a {
	text-decoration: none;
  	color: #1B1B1B;
	cursor: pointer;
	transition: all 0.2s;
}
a.underline {
	text-decoration: underline;
}
p a {
/*   color: var(--color-key); */
}
#wrapper {
  position: relative;
  overflow: clip;
  z-index: 1;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	html {
		min-width: 1140px;
	}
	body {
		line-height: 2;
		font-size: 1.4rem;
	}
	.sp {
		display: none !important;
	}
	.ly_inner {
		max-width: 1240px;
		margin: 0 auto;
		padding: 0 20px;
	}
	p a:hover {
		color: var(--color-key);
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	html {
		font-size: calc(100vw / 37.5);
	}
	body {
		line-height: 1.9;
		font-size: 1.3rem;
	}
	.pc {
		display: none !important;
	}
	.ly_inner {
		padding: 0 2rem;
	}
}
/* -----------------------------------------------

= header

----------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #1b1b1b;
}
.header_in {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header li a {
	color: #fff;
}
.header .header_menu_main>li .sub-menu li .sub-menu {
	display: none !important;
}
.header .g_nav .header_menu_info .bl_btnLink {
  box-shadow: none;
}
.header_menu_info li a,
.header_contact li a {
	display: flex;
	padding: 6px 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 3px;
	border: 1px solid #FFF;
	line-height: 1.2;
	font-size: 1.2rem;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.header {
		width: 100%;
		min-width: 1100px;
	}
	.header_in {
		padding: 0 40px 0 60px;
	}
  .header .header_logo {
    width: 200px;
    margin-right: 20px;
  }
  .header .g_nav {
	display: flex;
	flex-direction: column;
  }
  .header .g_nav .header_menu_info {
	order: 1;
  }
  .header .g_nav .header_menu_main {
	order: 2;
  }
  .header .header_menu_info {
    display: flex;
	align-items: center;
	justify-content: end;
    gap: 16px;
	padding: 10px 0;
  }
	.header .header_menu_main, .header .header_menu_guide {
		display: flex;
	}
	.header .header_menu_main {
		padding: 0 2.5rem;
		border-top: 1px solid rgba(255, 255, 255, 0.20);
	}
	.header .header_menu_main>li {
		position: relative;
		padding: 0 1.75rem;
	}
	.header .header_menu_main>li>a {
    	position: relative;
		display: flex;
		align-items: center;
		height: 5rem;
		line-height: 1.2;
		font-size: 1.5rem;
	}
  .header .header_menu_main>li>a::before,
  .header .header_menu_main>li>a::after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
  }
  .header .header_menu_main>li>a::before {
    background-color: var(--color-key);
    height: 2px;
    bottom: 0;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
  }
  /* サブメニューアイコン */
  .header .header_menu_main>li:has(ul) {
    padding-right: 30px;
  }
  .header .header_menu_main>li:has(ul)::before,
  .header .header_menu_main>li:has(ul)::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    width: 10px;
    height: 1px;
    background: var(--color-key);
    border-radius: inherit;
    transition: all .2s;
  }
  .header .header_menu_main>li:has(ul)::after {
    transform: rotate(90deg);
  }
  /* hover */
  .header .header_menu_main>li:hover::after {
    transform: rotate(0);
  }
  .header .header_menu_main>li>a:hover {
    color: var(--color-key);
  }
  .header .header_menu_main>li>a:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
  }
  .header .header_menu_info li a:hover {
	background-color: #fff;
	color: #1b1b1b;
  }
	.header .header_menu_main>li .sub-menu {
		display: none;
		position: absolute;
		top: 5rem;
		left: 1.75rem;
		width: 27rem;
		padding: 4rem 2rem;
		border-radius: 4px;
		background: #FFF;
		box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
		box-sizing: border-box;
	}
	.header .header_menu_main>li .sub-menu li a {
		position: relative;
		display: block;
		color: #000;
		line-height: 1.66;
		padding-left: 1.5rem;
	}
	.header .header_menu_main>li .sub-menu li a:hover {
		text-decoration: underline;
	}
	.header .header_menu_main>li .sub-menu li+li {
		margin-top: 1.5rem;
	}
	.header .header_menu_main>li .sub-menu li.sp+li {
		margin-top: 0;
	}
	.header .header_menu_main>li .sub-menu li.hnav_none {
		display: none;
	}
}
/* = PC (1300px以下 768px以上)
----------------------------------------------- */
@media print, screen and (max-width: 1300px) and (min-width: 768px) {
	.header .header_menu_main>li {
		padding: 0 1.5rem;
	}
	.header .header_menu_main>li>a {
		font-size: 1.4rem;
	}
	.header .header_menu_main>li .sub-menu {
		left: 1rem;
	}
	.header.fixed .header_menu_main>li .sub-menu {
		left: 1rem;
	}
	.header .header_menu_guide {
		width: 25%;
	}
	.header .header_menu_guide>li>.menu_in {
		font-size: 1.3rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .header_in {
    padding: 1rem 1.5rem;
  }
	.header .header_logo {
		width: 14rem;
		margin-right: 4rem;
	}
	.header .header_logo a {
		display: flex;
		align-items: center;
	}
	.header .nav_btn button {
		position: relative;
		top: 0;
		right: 0;
		width: 3rem;
		height: 4rem;
		display: block;
		cursor: pointer;
		z-index: 1010;
	}
	.header .nav_btn button .drawer_bar {
		display: block;
		position: absolute;
		width: 3rem;
		height: 0.1rem;
		left: 0;
		right: 0;
		margin: auto;
		background: #fff;
		border-radius: 0.2rem;
		transition: all 0.2s;
	}
	.header .nav_btn button .drawer_bar1 {
		top: 1.5rem;
	}
	.header .nav_btn button .drawer_bar2 {
		top: 2.3rem;
	}
	.header .nav_btn button .drawer_text {
		width: 100%;
		position: absolute;
		top: 2.8rem;
		left: 0;
		color: #fff;
		line-height: 1;
		font-size: 0.9rem;
		text-align: center;
	}
	.header .nav_btn button .drawer_close {
		display: none;
	}
	.header .g_nav {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		padding: 3rem 0;
		background: rgba(0, 0, 0, 0.9);
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		box-sizing: border-box;
		z-index: 999;
	}
	.header .g_nav .header_menu_main,
  	.header .g_nav .header_menu_info {
		padding: 4rem 3.5rem 2.5rem;
	}
	.header .g_nav .header_menu_info .bl_btnLink {
		width: 100%;
	}
	.js-gnav_opened .g_nav {
		display: block;
		top: 0rem;
		transform: translateY(0);
	}
	.js-gnav_opened .nav_btn button .drawer_bar {
    top: 1.5rem;
    width: 2rem;
	}
	.js-gnav_opened .nav_btn button .drawer_bar1 {
		transform: rotate(-45deg);
	}
	.js-gnav_opened .nav_btn button .drawer_bar2 {
		transform: rotate(45deg);
	}
	.js-gnav_opened .nav_btn button .drawer_menu_text {
		display: none;
	}
	.js-gnav_opened .nav_btn button .drawer_close {
		display: block;
	}
	.header_menu_info li a {
		font-size: 1.5rem;
		padding: 2rem;
	}
	.header_menu_info li + li {
		margin-top: 2rem;
	}
}
/* -----------------------------------------------

= header footer 共通

----------------------------------------------- */
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.sp_accordion .nav_1st>li {
		position: relative;
	}
	.sp_accordion .nav_1st>li a {
		display: block;
		letter-spacing: 0.04em;
	}
	.sp_accordion .nav_1st>li>a {
		padding: 2.2rem 0;
		font-size: 1.6rem;
	}
  /* 子メニューを持っているとき */
	.sp_accordion .nav_1st>li:has(ul)>a::before,
  .sp_accordion .nav_1st>li:has(ul)>a::after {
		content: "";
    position: absolute;
    top: 3.5rem;
    right: 0.8rem;
    width: 2rem;
    height: 0.2rem;
    background: var(--color-key);
    border-radius: inherit;
    transition: all .2s;
	}
  .sp_accordion .nav_1st>li:has(ul)>a::after {
    transform: rotate(90deg);
  }
	.sp_accordion .nav_1st>li.open {
		padding-bottom: 1rem;
	}
	.sp_accordion .nav_1st>li.open>a::after {
		transform: rotate(0);
	}
	.sp_accordion .nav_1st>li>.sub-menu {
		display: none;
		padding: 2rem;
		border-radius: 0.7rem;
    	background: #000;
		box-sizing: border-box;
	}
	.sp_accordion .nav_1st>li>.sub-menu>li+li {
		margin-top: 1rem;
	}
	.sp_accordion .nav_1st>li>.sub-menu li a {
		position: relative;
		line-height: 1.66;
		font-size: 1.5rem;
    	padding: 0.8rem 0;
	}
}
/* -----------------------------------------------

  = footer

----------------------------------------------- */
.footer {
	background-color: #1B1B1B;
}
.footer * {
	color: #d1d5db;
}
.footer .footer_mainLogo {
	color: #fff;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: 0.02em;
	font-size: 1.6rem;
}
.footer_copy {
	border-top: 1px solid rgba(229, 229, 229, 0.20);
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
/* hover */
	.footer ul li a:hover {
		text-decoration: underline;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
.footer_mainLogo {
	margin-bottom: 2.4rem;
}
}
/* -----------------------------------------------

  = pagetop

----------------------------------------------- */
.pagetop {
	position: fixed;
	bottom: 4rem;
	width: 6rem;
	height: 6rem;
	z-index: 10;
	cursor: pointer;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.pagetop {
		right: 5rem;
	}
	.pagetop:hover {
		opacity: 0.8;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.pagetop {
		right: 2rem;
	}
}
/* -----------------------------------------------

  = bl_pageWpr

----------------------------------------------- */
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.bl_pageContent {
		padding-top: 8.5rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.bl_pageContent {
		padding-top: 5rem;
	}
}

/*--------------------------------------------------

  = Print

--------------------------------------------------*/
@media print {
	html {
		width: 100%;
		zoom: 95%;
	}
	body {
		max-width: 1300px;
		margin: 0 auto;
	}
	.headerDrw_btn {
		position: absolute;
	}
	#pagetop {
		display: block !important;
		position: absolute !important;
	}
}