@charset "utf-8";

/************************************************
	Font
************************************************/
html {
  color: #454E52;
  font-size: 62.5%;
  font-family: 'Noto Sans JP', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.05rem;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/* COMMON
---------------------------------------------*/
:root {
	--main-color: #00BAF2;
	--sub-color: #FABE00;
	--text-color: #454E52;
	--wide-content-width: 1872px; 
  --content-width: 1312px;
  --content-padding: 0 16px;
	--headerHeight: 96px;
}
body.fixed {
  width: 100%;
  position: fixed;
  left: 0;
}
a:hover {
  opacity: 0.7;
}
p, a {
	color: var(--text-color);
	transition: all 0.6s;
}
table {
  border-collapse: collapse;
}
#wrap {
	position: relative;
}
img {
	/* width: 100%; */
}
@media screen and (max-width:1080px) {
	:root {
		/* --headerHeight: 72px; */
		--headerHeight: 94px;
	}
}
@media screen and (max-width:860px) {
  :root {
    --content-padding: 0 3%;
  }
}
@media screen and (min-width:768px) {
  .sp-content {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .pc-content {
    display: none;
  }
}
@media screen and (max-width:540px) {
  :root {
    --content-padding: 0 4%;
  }
}


/* HEADER
---------------------------------------------*/
.header {
	position: fixed;
	z-index: 100;
	width: 100%;
}
.header_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  /* gap: 10px 20px; */
	gap: 10px;
	height: var(--headerHeight);
  margin: 0 auto;
  position: relative;
}
.header_logo {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 320px;
	padding-left: 64px;
}
.header_logo > a {
	display: flex;
	align-items: center;
	gap: 8px;
}
.header .logo-itochu {
	display: block;
	max-width: 110px;
}
.header .logo-impark {
	display: block;
	max-width: 92px;
}
.gnav {
	flex: 1;
	display: flex;
	align-items: center;
	border-radius: 0 0 0 60px;
	background: #FFF;
	box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
	height: 100%;
	padding: 0 64px;
}
.menu-header-navigation__renual-container {
	width: 100%;
}
#menu-header-navigation__renual {
	display: flex;
	align-items: center;
}
#menu-header-navigation__renual > li {
	width: 100%;
	/* max-width: 180px; */
}
#menu-header-navigation__renual > li.menu-item__about {
	min-width: 250px;
}
#menu-header-navigation__renual > li.menu-item__contact {
	min-width: 180px;
	max-width: 180px;
}
#menu-header-navigation__renual > li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 0.58em 1em;
	font-size: 1.6rem;
	font-weight: 500;
	position: relative;
}
#menu-header-navigation__renual > li:nth-of-type(1) a {
	background: url(../img/common/icon-menu01.svg) no-repeat center center / auto 24px;
}
#menu-header-navigation__renual > li:nth-of-type(2) a {
	background: url(../img/common/icon-menu02.svg) no-repeat center center / auto 24px;
}
#menu-header-navigation__renual > li:nth-of-type(3) a {
	background: url(../img/common/icon-menu03.svg) no-repeat center center / auto 24px;
}
#menu-header-navigation__renual > li.menu-item__contact a {
	color: var(--main-color);
	border-radius: 8px;
	border: 1px solid var(--main-color);
}
#menu-header-navigation__renual > li.menu-item__contact a:hover {
	background-color: var(--main-color);
	color: #fff;
	opacity: 1;
}
#menu-header-navigation__renual > li a::after {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	margin: 0 0;
	padding: 0;
	background-color: transparent;
	position: absolute;
	bottom: 0;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, 0);
	transition: width 0.4s, background-color 0.5s;
}
#menu-header-navigation__renual > li.menu-item__contact a::after {
	content: none;
}
#menu-header-navigation__renual > li a:hover::after {
	margin: 0 -20px 0 0;
	width: 40px;
	background-color: #003391;
}
#menu-header-navigation__renual > li.current_page_item a {
	/* color: #0D3693; */
}

.gnav_menu-btn {
	display: none;
}
.gnav_bg {
	display: none;
}
@media screen and (max-width:1280px) {
	.header_text br.sp-content {
		display: block;
	}
	.header_text br.pc-content {
		display: none;
	}
}
@media screen and (max-width:1100px) {
	.header_inner {
		align-items: center;
		height: 64px;
		padding: 0 16px;
	}
	.header_logo {
		width: auto;
		padding-left: 0;
	}
	.header_logo > a {
		gap: 12px;
	}
	.header .logo-itochu {
		max-width: 62px;
	}
	.header .logo-impark {
		max-width: 50px;
	}
	.gnav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: calc(100vh - 64px);
		background-color: transparent;
		overflow-y: auto;
		/* overscroll-behavior: contain; */
		opacity: 0;
		visibility: hidden;
		border-radius: 0;
		padding: 0;
		align-items: flex-start;
	}
	.gnav.active {
		opacity: 1;
		visibility: visible;
		transition: opacity 0.4s;
	}
	.menu-header-navigation__renual-container {
		position: relative;
		z-index: 1;
		background-color: #fff;
		border-radius: 24px;
		box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
		padding: 40px 24px;
		margin: 0 16px;
	}
	#menu-header-navigation__renual {
		display: block;
		padding-bottom: 0;
	}
	#menu-header-navigation__renual > li {
		width: 100%;
		max-width: inherit;
		min-width: inherit;
		border-top: 1px solid #F0F0F0;
		border-left: 0;
	}
	#menu-header-navigation__renual > li.menu-item__contact {
		max-width: inherit;
		min-width: inherit;
	}
	#menu-header-navigation__renual > li:last-of-type {
		border-bottom: 0;
	}
	#menu-header-navigation__renual > li a {
		padding: 32px 16px;
		font-size: 1.6rem;
		text-align: center;
		position: static;
	}
	#menu-header-navigation__renual > li a::after {
		display: none;
	}
	#menu-header-navigation__renual > li.current_page_item a {
		/* color: #fff; */
	}
	#menu-header-navigation__renual > li.menu-item__contact a {
		color: var(--main-color);
		border-radius: 8px;
		background-color: transparent;
		border: 1px solid var(--main-color);
		padding: 8px 16px;
		margin-top: 24px;
	}
	.gnav_menu-btn {
		display: block;
		width: 80px;
		aspect-ratio: 10 / 7;
		cursor: pointer;
		position: relative;
		border-radius: 100px;
		background: #FFF;
		box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
	}
	.gnav_menu-btn::before,
	.gnav_menu-btn span,
	.gnav_menu-btn::after {
		content: '';
		display: block;
		width: 32px;
		height: 2px;
		background-color: var(--main-color);
		position: absolute;
		left: 24px;
		transition: top 0.4s, bottom 0.4s;
	}
	.gnav_menu-btn::before {
		top: calc(50% - 10px);
	}
	.gnav_menu-btn span {
		top: 50%;
		transform: translate(0, -50%);
	}
	.gnav_menu-btn::after {
		bottom: calc(50% - 10px);
	}
	.gnav_menu-btn.clicked::before,
	.gnav_menu-btn.clicked span,
	.gnav_menu-btn.clicked::after {
		transition: opacity 0.4s, top 0.4s, bottom 0.4s;
	}
	.gnav_menu-btn.clicked::before {
		top: 50%;
		opacity: 0;
		/* transform: translate(0, -50%) rotate(45deg); */
	}
	.gnav_menu-btn.clicked span {
		/* opacity: 0; */
	}
	.gnav_menu-btn.clicked::after {
		bottom: 50%;
		opacity: 0;
		/* transform: translate(0, 50%) rotate(-45deg); */
	}
	.gnav_bg {
		display: block;
		width: 100%;
		height: calc(100vh - var(--headerHeight));
		position: absolute;
		top: 0;
		left: 0;
		cursor: pointer;
	}
}
@media screen and (max-width:400px) {
	.header_inner {
		gap: 8px;
		flex-wrap: nowrap;
	}
	.header_text,
	.gnav_menu-btn {
		flex-shrink: 0;
	}
}

/* CONTENTS
---------------------------------------------*/
#content {
	padding-top: calc(var(--headerHeight) + 32px);
}
@media screen and (max-width:1100px) {
	#content {
		padding-top: 80px;
	}
}

/* font-family */
.font-number {
	font-family: 'Noto Sans', sans-serif;
}
.font-serif {
	font-family: 'Noto Serif', serif;
}

/* breadcrumb */
.breadcrumbs {
	background-color: #F2F2F2;
}
.breadcrumbs_inner {
	max-width: var(--wide-content-width);
	padding: var(--content-padding);
	margin: 0 auto;
}
.breadcrumbs_list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	min-height: 52px;
	padding: 10px 0;
}
.breadcrumbs_item {
	margin-right: 36px;
	position: relative;
}
.breadcrumbs_item:last-of-type {
	margin-right: 0;
}
.breadcrumbs_item::after {
	content: '';
	display: block;
	aspect-ratio: 1 / 1;
	width: 6px;
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
	position: absolute;
	right: -16px;
	top: 50%;
	transform: translate(0, -50%) rotate(45deg);
}
.breadcrumbs_item:last-of-type::after {
	display: none;
}
.breadcrumbs a,
.breadcrumbs span {
	display: inline-block;
	padding: 5px;
	font-size: 1.4rem;
	line-height: 1.4;
}


/* BTN
---------------------------------------------*/
.btns {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: var(--main-color);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  background-color: #fff;
  border-radius: 50px;
  border: 2px solid var(--main-color);
  min-width: 260px;
  padding: 24px 32px;
}
.btn:hover {
	color: #fff;
	background-color: var(--main-color);
	/* border: 2px solid #fff; */
	opacity: 1;
}
.btn::after {
  content: '';
  display: block;
  aspect-ratio: 1 / 1;
  width: 12px;
  border-top: 2px solid var(--main-color);
	border-right: 2px solid var(--main-color);
	transform: rotate(45deg);
	transition: border-color 0.6s;
}
.btn:hover::after {
	border-top-color: #fff;
	border-right-color: #fff;
}


/* FOOTER
---------------------------------------------*/
.footer .block-top,
.footer .block-middle,
.footer .block-bottom {
	position: relative;
	z-index: 1;
	border-radius: 60px 60px 0 0;
	margin-top: -60px;
}
.footer .block-top {
	background-color: #fff;
}
.footer .block-middle {
	background-color: rgba(0, 176, 236, 0.20);
}
.footer .block-bottom {
	background-color: var(--main-color);
}

.footer .footer-block_inner {
	max-width: var(--content-width);
	padding: 64px 40px 120px;
	margin: 0 auto;
}

.footer .block-top .footer-block_inner {
	display: flex;
	justify-content: center;
}
.footer .block-top .footer-contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	width: 100%;
	max-width: var(--content-width);
}
.footer .block-top .footer-contact a {
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
	color: #fff;
	border-radius: 16px;
	padding: 48px 0;
}
.footer .block-top .footer-contact a::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #07242E75;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.footer .block-top .footer-contact > a:nth-of-type(1) {
	background: url(../img/common/bg-contact01.jpg) no-repeat center / cover;
}
.footer .block-top .footer-contact > a:nth-of-type(2) {
	background: url(../img/common/bg-contact02.jpg) no-repeat center / cover;
}
.footer .block-top .footer-contact > a:nth-of-type(3) {
	background: url(../img/common/bg-contact03.jpg) no-repeat center / cover;
}
.footer .block-top .footer-contact > a:nth-of-type(4) {
	background: url(../img/common/bg-contact04.jpg) no-repeat center / cover;
}
.footer .block-top .footer-contact__title {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
}
.footer .block-top .footer-contact__title .heading03 {
	font-size: 2.0rem;
	font-weight: 500;
}
.footer .block-top .footer-contact .btn {
	position: relative;
	z-index: 1;
	padding: 16px 32px;
}

.footer .block-middle .footer-block_inner {
	max-width: 100%;
	background: url(../img/common/img-footer.svg) repeat-x left calc(100% - 50px);
	padding-bottom: 220px;
}
.footer .banner_list {
	display: flex;
	justify-content: center;
	gap: 18px;
	max-width: 1312px;
	margin: 0 auto;
}
.footer .banner_list a:hover {
	opacity: 1;
}

.footer .block-bottom .footer-block_inner {
	padding-bottom: 32px;
}
#menu-footer-navigation {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px 0;
}
#menu-footer-navigation .menu-item {
	border-right: 1px solid #fff;
}
#menu-footer-navigation .menu-item:last-of-type {
	border-right: 0;
}
#menu-footer-navigation .menu-item a {
	display: block;
	color: #fff;
	font-size: 1.4rem;
	padding: 4px 20px;
	line-height: 1.4;
}
#menu-footer-navigation .menu-item a:hover {
	text-decoration: underline;
}
.footer .copyright {
	display: block;
	color: #fff;
	width: fit-content;
	margin: 34px auto 0;
	font-size: 1.2rem;
}
@media screen and (max-width:768px) {
	.footer .block-top,
	.footer .block-middle,
	.footer .block-bottom {
		border-radius: 32px 32px 0 0;
		margin-top: -32px;
	}
	.footer .block-top .footer-block_inner {
		padding-top: 32px;
		padding-bottom: 80px;
	}
	.footer .block-top .footer-contact {
		grid-template-columns: 1fr;
	}
	.footer .block-middle .footer-block_inner {
		background-size: auto 90px;
		background-position-y: calc(100% - 30px);
		padding: 32px 60px 140px;
	}
	.footer .banner_list {
		flex-direction: column;
		gap: 16px;
	}
	.footer .block-bottom .footer-block_inner {
		padding-top: 32px;
		padding-bottom: 64px;
	}
	#menu-footer-navigation {
		display: block;	
	}
	#menu-footer-navigation .menu-item {
		border-bottom: 1px solid #fff;
		border-right: 0;
	}
	#menu-footer-navigation .menu-item a {
		padding: 16px 56px 16px 16px;
		position: relative;
	}
	#menu-footer-navigation .menu-item a::before {
		content: '';
		display: block;
		aspect-ratio: 1 / 1;
		position: absolute;
		top: 50%;
		right: 26px;
		width: 10px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		transform: translate(0, -50%) rotate(45deg);
	}
	.footer .copyright {
		margin-top: 27px;
	}
}
@media screen and (max-width:540px) {	
}


/* FLOATING
---------------------------------------------*/
#floating {
	position: fixed;
	bottom: 32px;
	right: 32px;
	z-index: 100;
}
.floating-menu {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
	transition: opacity 0.4s;
}
.floating-menu.hidden {
	opacity: 0;
}
.floating-menu a {
	display: flex;
	align-items: center;
	position: relative;
	color: #fff;
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.2;
	border-radius: 16px;
	border: 2px solid #fff;
	height: 70px;
	padding: 12px 60px 12px 88px;
}
.floating-menu a::before,
.floating-menu a::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	width: 40px;
	aspect-ratio: 1 / 1;
	transform: translate(0, -50%);
}
.floating-menu a::after {
	right: 32px;
	width: 16px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translate(0, -50%) rotate(45deg);
}
.floating-menu__contact a {
	background-color: var(--main-color);
}
.floating-menu__contact a:hover {
	background-color: #fff;
	color: var(--main-color);
	border: 2px solid var(--main-color);
	opacity: 1;
}
.floating-menu__contact a::before {
	left: 32px;
	background: url(../img/top/icon-ping.svg) no-repeat center / contain;
}
@keyframes fadeInPing {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.floating-menu__contact a:hover::before {
	background: url(../img/top/icon-ping-hover.svg) no-repeat center / contain;
	animation: fadeInPing 0.3s ease-in-out;
}
.floating-menu__contact a:hover::after {
	border-top-color: var(--main-color);
	border-right-color: var(--main-color);
}
.floating-menu__document a {
	background-color: var(--sub-color);
}
.floating-menu__document a:hover {
	background-color: #fff;
	color: var(--sub-color);
	border: 2px solid var(--sub-color);
	opacity: 1;
}
.floating-menu__document a::before {
	left: 32px;
	background: url(../img/top/icon-doc.svg) no-repeat center / contain;
}
.floating-menu__document a:hover::before {
	background: url(../img/top/icon-doc-hover.svg) no-repeat center / contain;
	animation: fadeInPing 0.3s ease-in-out;
}
.floating-menu__document a:hover::after {
	border-top-color: var(--sub-color);
	border-right-color: var(--sub-color);
}

@media screen and (max-width:768px) {
	#floating {
		bottom: 0;
		right: 0;
		width: 100%;
	}
	.floating-menu {
		flex-direction: row;
		justify-content: center;
		gap: 4px;
		padding: 0 8px;
	}
	.floating-menu li {
		width: 45%;
	}
	.floating-menu a {
		justify-content: center;
		font-size: 1.2rem;
		font-weight: normal;
		border-radius: 16px 16px 0 0;
		border-width: 1px;
		border-bottom: 0;
		height: 100%;
		padding: 8px 16px 8px 48px;
	}
	.floating-menu a::before {
		width: 24px;
	}
	.floating-menu a::after {
		content: none;
	}
	.floating-menu__contact a::before,
	.floating-menu__document a::before {
		left: 16px;
	}
}

/* ローディング画面 */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 0.6s ease-out;
}
.loading-screen.fade-out {
	opacity: 0;
	pointer-events: none;
}
.loading-screen_logo {
	display: flex;
	align-items: center;
	gap: 20px;
	opacity: 0;
	animation: fadeInLogo 0.6s ease-in-out 0.6s forwards;
}
@keyframes fadeInLogo {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.loading-screen_logo .logo-itochu img,
.loading-screen_logo .logo-impark img {
	height: auto;
	max-width: 320px;
}
@media screen and (max-width: 767px) {
	.loading-screen_logo {
		flex-direction: column;
		gap: 15px;
	}
	.loading-screen_logo .logo-itochu img,
	.loading-screen_logo .logo-impark img {
		max-width: 160px;
	}
}