@charset "UTF-8";

/*

 base.css

*/
/* -----------------------------------------------

= font-face

----------------------------------------------- */
@font-face {
	font-family: "futura-md-bt-medium";
	src: url("../font/futura-md-bt-medium.ttf") format("truetype");
}
/* -----------------------------------------------

= base

----------------------------------------------- */
html {
	line-height: 2;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	width: 100%;
	color: #262626;
  	font-family: "Noto Sans JP", sans-serif;
	font-style: normal;
	font-weight: 400;
}
img {
	max-width: 100%;
	vertical-align: top;
}
a {
	text-decoration: none;
  	color: #262626;
	cursor: pointer;
	transition: all 0.2s;
}
a.underline {
	text-decoration: underline;
}
p a {
  color: var(--color-key);
}
#wrapper {
  position: relative;
  overflow: clip;
}
:root {
  --color-key: #D9042B;
  --color-base: #262626;
  --bg-red-gr: linear-gradient(130deg, #D9042B 0.47%, #D9576F 100.33%);
}
.el_font_en {
  font-family: "futura-md-bt-medium";
}
.scroll-text {
  opacity: 0;
  transform: translateY(20px);
}
.el_text_gradation {
	background: linear-gradient(90deg, #D9042B 0%, #730217 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.relative {
	position: relative;
}
/* = PC (821px以上)
----------------------------------------------- */
@media print, screen and (min-width: 821px) {
	html {
		min-width: 1140px;
	}
	body {
		line-height: 2.1;
		font-size: 1.5rem;
	}
	.sp {
		display: none !important;
	}
	.ly_inner {
		max-width: 1240px;
		margin: 0 auto;
		padding: 0 20px;
	}
}
/* = SP (820px以下)
----------------------------------------------- */
@media screen and (max-width: 820px) {
  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;
	}
}
/* -----------------------------------------------

= loading

----------------------------------------------- */
#loading-screen {
	position: fixed;
	width: 100%;
	height: 100vh;
	inset: 0;
	background: linear-gradient(to right, #fff, #e8e8e8);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	transition: opacity 0.6s ease;
}
.loading-logo {
	width: 20vw;
}
/* = SP (820px以下)
----------------------------------------------- */
@media screen and (max-width: 820px) {
	.loading-logo {
		width: 20rem;
	}
}
/* -----------------------------------------------

= header

----------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
	width: 100%;
  z-index: 1000;
  transition: all .2s;
}
.header_in {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_menu_main > li > a {
	font-weight: 500;
}
.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 .header_menu_main>li .sub-menu li a[target="_blank"]::after {
	content: "";
	display: block;
	position: absolute;
	top: 0.3rem;
	right: 0;
	background: url(../img/shared/icon_blank.svg) no-repeat 100%/cover !important;
	width: 1.6rem;
	height: 1.6rem;
}
/* noLink */
.nav_1st>li>.sub-menu li.noLink a {
	pointer-events: none;
	font-weight: 700;
}
.nav_1st>li>.sub-menu li.noLink a::after {
	display: none !important;
}
/* = PC (821px以上)
----------------------------------------------- */
@media print, screen and (min-width: 821px) {
	.header {
		min-width: 1100px;
	}
	.header.fixed {
		backdrop-filter: blur(7.5px);
		box-shadow: 0px 3px 3px -3px rgba(93, 88, 89, 0.2);
		background-color: rgba(255, 255, 255, 0.7);
	}
	.header_in {
		padding: 0 40px 0 60px;
	}
	.header .header_logo {
		width: 110px;
		flex-shrink: 0;
		aspect-ratio: 55/24;
		margin-right: 20px;
	}
	.header .header_menu_info {
		display: flex;
			align-items: center;
		gap: 16px;
	}
	.header .g_nav {
		display: flex;
		justify-content: space-between;
	}
	.header .header_menu_main, .header .header_menu_guide {
		display: flex;
	}
	.header .header_menu_main {
		padding: 0 2.5rem;
	}
	.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: 8rem;
		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_main>li .sub-menu {
		display: none;
		position: absolute;
		top: 8rem;
		left: 1.75rem;
		min-width: 27rem;
		padding: 4rem 2rem;
		border-radius: 10px;
		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-right: 1.5rem;
	}
	.header .header_menu_main>li .sub-menu li a::after {
		content: "";
		display: block;
		position: absolute;
		top: 0.3rem;
		right: 0;
		background: url(../img/shared/arrow_red.svg) no-repeat 100%/cover;
		width: 2rem;
		height: 2rem;
	}
	.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 1rem;
	}
	.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 (820px以下)
----------------------------------------------- */
@media screen and (max-width: 820px) {
  .header.fixed {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  }
  .header_in {
    padding: 1rem 2rem;
  }
	.header .header_logo {
		width: 9rem;
		margin-right: 2rem;
	}
	.header .nav_btn button {
		position: relative;
		top: 0;
		right: 0;
		z-index: 1010;
		width: 5rem;
		height: 5rem;
    border-radius: 50%;
		background: var(--color-base);
		display: block;
		cursor: pointer;
	}
	.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;
		width: 100%;
		height: 100vh;
		padding: 3rem 0;
		background: rgba(255, 255, 255, 0.80);
    	backdrop-filter: blur(7.5px);
		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%;
	}
	.header .g_nav .header_menu_info .bl_btnLink::after {
		width: 2.6rem;
		height: 2.6rem;
	
	}
	.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 footer 共通

----------------------------------------------- */
/* = SP (820px以下)
----------------------------------------------- */
@media screen and (max-width: 820px) {
	.sp_accordion .nav_1st>li {
		position: relative;
    border-bottom: 1px solid #d2d2d2;
	}
	.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.8rem;
	}
  .sp_accordion .nav_1st>li>a::after {
    	content: "";
		display: block;
		position: absolute;
		top: 2.3rem;
		right: 0;
		background: url(../img/shared/arrow_black.svg) no-repeat 100% / cover;
		width: 3rem;
		height: 3rem;
  }
  /* 子メニューを持っているとき */
	.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: #FFF;
		box-sizing: border-box;
    border: 1px solid #d7d7d7;
	}
	.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 3rem 0.8rem 0;
	}
  	.sp_accordion .nav_1st>li>.sub-menu li a::after {
		content: "";
		display: block;
		position: absolute;
		top: 1rem;
		right: 0;
		background: url(../img/shared/arrow_red.svg) no-repeat 100%/cover;
		width: 2.6rem;
		height: 2.6rem;
	}
	.sp_accordion .nav_1st>li>.sub-menu li a[target="_blank"]::after {
		top: 1.3rem;
	}
}
/* -----------------------------------------------

= footer

----------------------------------------------- */
.footer {
	position: relative;
    z-index: 1;
}
.bl_footerContact {
  background: linear-gradient(90deg, #D9042B 0.03%, #730217 99.93%);
}
.bl_footerContact .top_heading02 {
  margin-bottom: 1rem;
}
.footer_main {
  line-height: 1.4;
  background-color: #fff;
}
.copyright {
  font-weight: 300;
}
.copyright a {
  color: #262626;
  text-decoration: underline;
}
/* .footer_nav02 {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem 3.5rem;
} */
.footer_nav02 li a[target="_blank"]::after {
    content: "";
    display: inline-block;
    position: relative;
    top: 0.3rem;
    right: -0.5rem;
    background: url(../img/shared/icon_blank.svg) no-repeat 100% / cover !important;
    width: 1.6rem;
    height: 1.6rem;
}
.footer_mainItem .heading06 {
	padding-bottom: 0.8rem;
	border-bottom: 1px solid #ddd;
  }
/* = PC (821px以上)
----------------------------------------------- */
@media print, screen and (min-width: 821px) {
  .bl_footerContact {
    padding: 8rem 0;
  }
  .bl_footerContact_in {
    display: flex;
    max-width: 1240px;
    padding: 0 2rem;
    margin: 0 auto;
  }
  .bl_footerContact_item {
    flex: 1;
    padding: 0 6rem;
  }
  .bl_footerContact_item + .bl_footerContact_item {
    border-left: 1px solid rgba(255,255,255,0.5);
  }
  .bl_footerContact_txt {
    margin-bottom: 4.8rem;
  }
  .footer_main {
    padding: 6rem 0 9rem;
  }
  .footer_mainFlex {
	display: flex;
  }
  .footer_mainLogo {
    width: 17rem;
    margin-right: 10rem;
  }
  .footer_mainItem__top {
	width: 16rem;
	margin-right: 5rem;
  }
  .footer_mainItem__menu {
	flex: 1;
  }
  .footer_nav01 li + li {
    margin-top: 1.2rem;
  }
  .footer_nav01 li a {
    font-size: 2.3rem;
  }
  .footer_mainItem .heading06 {
	font-size: 1.6rem;
  }
  .footer_nav02 li + li {
	margin-top: 0.8rem;
  }
  .footer_nav02 li {
    font-size: 1.4rem;
  }
  .footer_nav02 li a {
    font-size: 1.3rem;
  }
  .copyright {
    text-align: right;
    font-size: 1.3rem;
    margin-top: 2rem;
  }
  /* hover */
  .footer_nav01 li a:hover,
  .footer_nav02 li a:hover {
    text-decoration: underline;
  }
}
/* = SP (820px以下)
----------------------------------------------- */
@media screen and (max-width: 820px) {
  .bl_footerContact {
    padding: 5rem 0;
  }
  .bl_footerContact_in {
    padding: 0 2rem;
  }
  .bl_footerContact_item + .bl_footerContact_item {
    margin-top: 5rem;
  }
  .bl_footerContact_txt {
    margin-bottom: 2rem;
  }
  .footer_main {
    padding: 3.2rem 0;
  }
  .footer_mainLogo {
    width: 100%;
    margin-bottom: 4rem;
  }
  .footer_mainLogo img {
    width: 13rem;
  }
  .footer_mainItem {
    /* width: 50%; */
  }
  .footer_nav01 {
    padding-right: 2rem;
	margin-bottom: 4rem;
  }
  .footer_nav01 li + li {
    margin-top: 1.6rem;
  }
  .footer_nav01 li a {
    font-size: 2.3rem;
  }
  .footer_nav02 li + li {
	margin-top: 1.6rem;
  }
  .footer_nav02 li a {
    font-size: 1.3rem;
  }
  .copyright {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 4rem;
  }
  .copyright a {
    display: block;
    margin-bottom: 1rem;
  }
  .page_liver .footer {
	margin-bottom: 6rem;
  }
}
/* -----------------------------------------------

  = pagetop

----------------------------------------------- */
.pagetop {
	position: fixed;
	width: 6rem;
	height: 6rem;
	z-index: 10;
	cursor: pointer;
}
/* = PC (821px以上)
----------------------------------------------- */
@media print, screen and (min-width: 821px) {
	.pagetop {
		right: 5rem;
		bottom: 2rem;
	}
	.pagetop:hover {
		opacity: 0.8;
	}
}
/* = SP (820px以下)
----------------------------------------------- */
@media screen and (max-width: 820px) {
	.pagetop {
		right: 2rem;
		bottom: 5rem;
		width: 5rem;
		height: 5rem;
	}
	.page_iriam .pagetop,
	.page_liver .pagetop {
		bottom: 7rem;
	}
}
/* -----------------------------------------------

  = bl_pageWpr

----------------------------------------------- */
/* = PC (821px以上)
----------------------------------------------- */
@media print, screen and (min-width: 821px) {
	.bl_pageContent {
		padding-top: 4rem;
	}
	.bl_pageWpr {
		padding-top: 10.3rem;
		padding-bottom: 8rem;
	}
}
/* = SP (820px以下)
----------------------------------------------- */
@media screen and (max-width: 820px) {
	.bl_pageWpr {
		padding-top: 6.2rem;
		padding-bottom: 6rem;
	}
	.bl_pageContent {
		padding-top: 2rem;
	}
}

/*--------------------------------------------------

  = 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;
	}
}