*,
::before,
::after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
	tab-size: 4;
	font-family: "Lato", Noto Sans JP, sans-serif;
	scroll-behavior: smooth;
	color: #fefefe;
}
html::-webkit-scrollbar {
	display: none;
}

body {
	margin: 0;
	line-height: inherit;
	position: relative;
	z-index: 0;
}
body::before {
	content: "";
	position: fixed;
	z-index: -1;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 110%;
	height: 110vh;
	background-image: url(../images/common/site-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

a {
	color: inherit;
	text-decoration: inherit;
}

b,
strong {
	font-weight: bold;
}

small {
	font-size: 80%;
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	background-color: transparent;
	background-image: none;
	border: none;
}

:-moz-focusring {
	outline: auto;
}

:-moz-ui-invalid {
	box-shadow: none;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	margin: 0;
}

ol,
ul,
menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

:disabled {
	cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle;
}

img,
video {
	max-width: 100%;
	height: auto;
}

.not-scroll {
	touch-action: none;
	overflow: hidden;
}

.no-scroll-bar::-webkit-scrollbar {
	display: none;
}

[x-cloak] {
	display: none !important;
}

::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(197, 197, 197, 0.55);
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

header,
footer {
	overflow: hidden;
}

.pc {
	display: block;
}
.sp {
	display: none;
}
br.pc {
	display: inline;
}
br.sp {
	display: none;
}

@media screen and (max-width: 999px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
}

/* ------ header ------ */
/*
header {
	position: fixed;
	z-index: 999;
	width: 100%;
	padding: 0 5.2%;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Noto Sans JP", sans-serif;
}
header.active {
	backdrop-filter: blur(10px);
}
*/
header {
 position: fixed;
 z-index: 999;
 width: 100%;
 padding: 0 5.2%;
 top: 0;
 left: 0;
 right: 0;
 margin: 0 auto;
 height: 200px;
 display: flex;
 justify-content: center;
 align-items: center;
 font-family: "Noto Sans JP", sans-serif;
 transition: all 0.5s 0s ease;
 background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
}
header.active {
 /* backdrop-filter: blur(10px); */
 background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
 height: 150px;
 transition: all 0.5s 0s ease;
}
.header-contents {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	max-width: 1720px;
	margin: 0 auto;
}
.header-logo {
	width: 20%;
	max-width: 350px;
	height: auto;
/*	aspect-ratio: 350 / 69;*/
	aspect-ratio: auto;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.header-logo:hover {
	opacity: 0.6;
}
.header-logo > img {
	width: 100%;
	height: 100%;
/*	object-fit: contain;*/
	object-fit: cover;
}
.header-nav-group {
	width: 100%;
	max-width: 1100px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 30px;
}
.header-nav-group > nav {
	display: flex;
	width: 100%;
	max-width: 820px;
	align-items: flex-start;
	gap: 16px;
	flex-flow: column;
}
.header-nav-group > nav a:hover{
	opacity: 0.7;
}
.header-nav-flex,
.header-nav-flex .bottom-menu{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header-nav-flex:nth-of-type(1) {
	gap: 15px;
}
.header-nav-flex:nth-of-type(2),
.header-nav-flex .bottom-menu{
	gap: 28px;
}

.header-nav-flex > a,
.header-nav-flex li a{
	transition: all ease 0.33s;
	flex-shrink: 0;
}
.header-nav-flex:nth-of-type(1) > a,
.header-nav-flex:nth-of-type(1) li a{
	font-size: 14px;
	padding-right: 20px;
	border-right: 1px solid rgb(254 254 254 / 50%);
}
.header-nav-flex:nth-of-type(1) > a:last-of-type,
.header-nav-flex:nth-of-type(1) li:last-of-type a{
	border-right: none;
}
.header-nav-flex:nth-of-type(2) > a,
.header-nav-flex:nth-of-type(2) ul li a{
	font-weight: bold;
}
.header-nav-flex > a:hover {
	opacity: 0.6;
}

.header-nav-search-box {
	width: 230px;
	height: 40px;
	background: rgb(255 255 255 / 20%);
	border-radius: 999px;
	overflow: hidden;
}
.header-nav-search-box form {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding-left: 24px;
	padding-right: 11px;
}
.header-nav-search-box form input {
	width: 100%;
	background: none;
	border: none;
	outline: none;
}
.header-nav-search-box form input:-webkit-autofill {
	-webkit-text-fill-color: #fff !important;
	background-color: transparent !important;
	-webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
	box-shadow: 0 0 0px 1000px transparent inset !important;
	transition: background-color 5000s ease-in-out 0s;
}
.header-nav-search-box form input::placeholder {
	color: #fff;
}

.btn-search {
	width: 20px;
	height: auto;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	cursor: pointer;
	flex-shrink: 0;
}
.btn-search img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.btn-header-contact {
	display: flex;
	background: rgb(255 255 255 / 30%);
	color: #fff;
	width: 250px;
	height: 80px;
	border-radius: 999px;
	transition: all ease 0.33s;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}
.btn-header-contact p {
	font-size: 16px;
	font-weight: bold;
}
.btn-header-contact span {
	font-size: 13px;
}
.btn-header-contact:hover {
	opacity: 0.6;
}

.btn-menu {
	display: none;
}
.nav-menu {
	display: none;
}

@media screen and (max-width: 1600px) {
	.header-nav-group {
		gap: 15px;
	}
	.header-nav-flex:nth-of-type(1) {
		gap: 12px;
	}
	.header-nav-flex:nth-of-type(1) > a {
		font-size: 13px;
		padding-right: 12px;
	}
	.header-nav-flex:nth-of-type(2) {
		gap: 28px;
	}
	.btn-header-contact {
		width: 230px;
	}
	.header-nav-search-box {
		width: 200px;
	}
}
@media screen and (max-width: 1400px) {
	.header-logo {
		width: 200px;
	}
	.header-nav-flex:nth-of-type(2) {
		gap: 20px;
		font-size: 14px;
	}
	.btn-header-contact {
		width: 200px;
		height: 60px;
		gap: 8px;
	}
	.header-nav-search-box {
		height: 35px;
	}
	.header-nav-search-box form {
		padding-left: 15px;
	}
	.btn-header-contact p {
		font-size: 14px;
	}
}
@media screen and (max-width: 1280px) {
	header {
		padding: 0 30px;
	}
	.header-nav-search-box {
		width: 175px;
	}
	.header-nav-flex:nth-of-type(1) {
		gap: 10px;
	}
	.header-nav-flex:nth-of-type(1) > a {
		font-size: 11px;
		padding-right: 10px;
	}
	.header-nav-flex:nth-of-type(2) {
		gap: 15px;
		font-size: 13px;
	}
}
@media screen and (max-width: 1100px) {
	.header-nav-group > nav {
		gap: 10px;
	}
	.header-nav-group {
		gap: 15px;
	}
	.header-nav-search-box {
		width: 155px;
	}
	.btn-header-contact {
		width: 175px;
	}
}
@media screen and (max-width: 999px) {
	header,header.active {
		padding: 0 30px;
		height: 112px;
	}
	.header-logo {
		width: 240px;
	}
	.header-nav-group {
		display: none;
	}

	.btn-menu {
		position: relative;
		z-index: 9999;
		display: flex;
		height: 15px;
		width: 51px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}

	.btn-menu.btn-menu-active {
		height: 17px;
		width: 29px;
	}

	.btn-menu-wrapper {
		display: flex;
		width: 100%;
		height: 100%;
		flex-flow: column;
		align-items: center;
	}

	.toggle-box {
		position: relative;
		height: 100%;
		width: 100%;
		opacity: 0.7;
	}

	.toggle-bar {
		position: absolute;
		right: 0px;
		display: block;
		height: 2px;
		width: 100%;
		background: #fefefe;
		transition: all ease 0.33s;
		border-radius: 999px;
	}

	.toggle-bar-01 {
		top: 0px;
	}

	.toggle-bar-02 {
		width: 51%;
		bottom: 0;
	}

	.toggle-bar.toggle-bar-01-active {
		top: 50%;
		transform: translateY(-50%) rotate(30deg);
		background: #fefefe;
	}

	.toggle-bar.toggle-bar-02-active {
		width: 100%;
		transform: translateY(-50%) rotate(-30deg);
		top: 50%;
		background: #fefefe;
	}

	.nav-menu {
		pointer-events: none;
		position: fixed;
		top: 0px;
		right: 0px;
		z-index: 60;
		display: flex;
		height: 100vh;
		width: 100%;
		justify-content: flex-end;
		overflow-x: hidden;
		opacity: 0;
	}

	.nav-menu.nav-menu-active {
		pointer-events: auto;
		opacity: 1;
	}

	.nav-menu::after {
		content: "";
		position: fixed;
		top: 0px;
		right: 0px;
		z-index: 40;
		height: 100vh;
		width: 100vw;
		background: rgba(255, 255, 255, 0.01);
		backdrop-filter: blur(20px);
	}

	.nav-menu-wrapper {
		position: relative;
		z-index: 50;
		height: 100vh;
		width: 100%;
		max-width: 500px;
		overflow: hidden;
		padding-top: 112px;
		transition: all ease 0.33s;
		opacity: 0;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		gap: 80px;
		backdrop-filter: brightness(0.7);
	}

	.nav-menu-logo {
		width: 240px;
		height: auto;
		aspect-ratio: 350 / 69;
		overflow: hidden;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-shrink: 0;
		transition: all ease 0.33s;
		position: absolute;
		top: 33px;
		left: 30px;
	}
	.nav-menu-logo:hover {
		opacity: 0.6;
	}
	.nav-menu-logo > img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.nav-menu.nav-menu-active .nav-menu-wrapper {
		margin: 0px;
		opacity: 1;
	}

	.nav-menu-flex {
		width: 90%;
		height: auto;
		display: flex;
		flex-flow: column;
		align-items: center;
		margin: 0 auto;
		padding-top: 20px;
		padding-bottom: 30px;
		gap: 27px;
		overflow-y: auto;
		overflow-x: hidden;
	}
	.nav-menu-heading-box {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 24px;
		padding: 0 11.4%;
	}
	.nav-menu .header-nav-search-box {
		width: 186px;
		height: 40px;
		flex-shrink: 0;
	}
	.nav-menu-heading-sns {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 30px;
	}
	.nav-menu-heading-sns > a {
		width: 24px;
		display: flex;
		align-items: center;
		justify-content: center;
		aspect-ratio: 1 / 1;
		overflow: hidden;
	}
	.nav-menu-heading-sns > a > img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	.header-nav-sp {
		width: 100%;
		display: flex;
		flex-flow: column;
		padding: 0 11.4%;
		padding-bottom: 7px;
		gap: 20px;
	}

	.header-nav-sp .acc-box {
		width: 100%;
		position: relative;
		flex-shrink: 0;
	}

	.header-nav-sp .acc-btn {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		cursor: pointer;
		gap: 15px;
		position: relative;
		padding-bottom: 10px;
	}

	.header-nav-sp .acc-btn > p {
		width: auto;
		font-size: 16px;
		letter-spacing: 0;
		line-height: 1.8;
		transition: all ease 0.2s;
	}

	.header-nav-sp .acc-btn::before {
		content: "";
		position: absolute;
		bottom: 0px;
		left: 0;
		width: 30px;
		height: 1px;
		background: #fefefe;
		transition: all ease 0.2s;
	}
	.header-nav-sp .acc-box.is-open .acc-btn::before {
		width: 100%;
	}

	.header-nav-sp .acc-btn::after {
		content: "";
		width: 11px;
		height: auto;
		aspect-ratio: 1 / 1;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		background-image: url(../images/common/icon-plus-sp-wh.svg);
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		transition: all ease 0.33s;
	}
	.header-nav-sp .acc-box.is-open .acc-btn::after {
		background-image: url(../images/common/icon-minus-sp-wh.svg);
	}

	.header-nav-sp .acc-panel-inner {
		width: 100%;
		padding-top: 14px;
	}
	.nav-menu-acc-list {
		width: 100%;
		display: flex;
		flex-flow: column;
		gap: 16px;
		padding-bottom: 12px;
	}
	.nav-menu-acc-list > a {
		font-size: 14px;
		line-height: 1.4;
		opacity: 0.9;
	}

	.header-nav-sp > a {
		width: 100%;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 15px;
		line-height: 1.8;
	}
	.header-nav-sp > a::after {
		content: "";
		width: 6px;
		height: auto;
		aspect-ratio: 6 / 10;
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		background-image: url(../images/common/icon-chevron-right.svg);
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		transition: all ease 0.33s;
	}

	.nav-menu .btn-header-contact {
		width: 100%;
		height: 60px;
	}
	.nav-menu .btn-header-contact p {
		font-size: 16px;
	}
	.nav-menu .btn-header-contact:hover {
		opacity: 1;
	}
}

/* ------ fixed items ------ */
.fixed-sns-btns {
	width: 5.2%;
	max-width: 100px;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 900;
}
.fixed-sns-btns > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 30px;
}
.fixed-sns-btns > div > a {
	width: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.fixed-sns-btns > div > a > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.fixed-sns-btns > div > a:hover{
	opacity: 0.7;
}

.fixed-copy {
	width: 5.2%;
	max-width: 100px;
	position: fixed;
	top: 6%;
	right: 0;
	height: 150vh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 900;
}
.fixed-copy > p {
	writing-mode: vertical-rl;
	text-orientation: sideways;
	font-weight: 500;
	font-size: 10px;
}

.fixed-link {
	position: fixed;
 z-index: 1000;
 top: 15%;
 right: 0;
 padding: 1% 1.2%;
 background-color: #E26464;
 border-radius: 10px 0 0 10px;
 letter-spacing: 0.1rem;
 border: solid 1px #E26464;
}

.fixed-link.link-2{
 top: 45%;
 background-color: rgb(255 255 255 / 50%);
 color: #06445f;
 border: solid 1px;
}

.fixed-link:hover{
 opacity: 0.7;
}

.fixed-link p {
	writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: pre-wrap;
}

@media screen and (max-width: 1450px) {
	.fixed-link.link-2{
		top: 49%;
	}
	header{
		top: -2%;
		padding: 0 3%;
	}
}

@media screen and (max-width: 999px) {
	.fixed-sns-btns {
  display: none;
 }
 
	.fixed-copy {
		display: none;
	}
 
	.fixed-link {
  display: none;
	}
}

/* ------ common ------ */
main {
	padding-top: 200px;
}
@media screen and (max-width: 999px) {
	main {
		padding-top: 112px;
		overflow: hidden;
	}
}

.sec-inner {
	width: 100%;
	max-width: 1720px;
	margin: 0 auto;
}

.btn-box {
	display: flex;
	justify-content: flex-start;
}
.btn-more {
	width: 122px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: all ease 0.33s;
}
.btn-more.long-txt {
	width: auto;
}
.btn-more > span {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	letter-spacing: 0.1em;
	font-weight: 500;
	color: #fefefe;
}
.btn-more.btn-dark > span {
	color: #11445e;
}
.btn-more-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 50px;
	height: auto;
	flex-shrink: 0;
	border: 1px solid #fefefe;
	border-radius: 999px;
	position: relative;
	aspect-ratio: 1 / 1;
	transition: all ease 0.33s;
}
.btn-more:hover .btn-more-icon {
	background: #fefefe;
}
.btn-more.btn-dark .btn-more-icon {
	border: 1px solid #11445e;
}
.btn-more.btn-dark:hover .btn-more-icon {
	background: #11445e;
}

.btn-more-icon::before {
	content: "";
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url("../images/common/icon-more-arrow-right-wh.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 8px;
	height: auto;
	aspect-ratio: 1 / 1;
	transition: all ease 0.33s;
	position: absolute;
}
.btn-more:hover .btn-more-icon::before {
	background-image: url("../images/common/icon-more-arrow-right.svg");
}
.btn-more.btn-dark .btn-more-icon::before {
	background-image: url("../images/common/icon-more-arrow-right.svg");
}
.btn-more.btn-dark:hover .btn-more-icon::before {
	background-image: url("../images/common/icon-more-arrow-right-wh.svg");
}

.h2-box {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 15px;
	width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	padding-left: 50px;
	color: #fefefe;
}
.h2-box.txt-dark {
	color: #11445e;
}
.h2-box > h2 {
	font-size: 30px;
	line-height: 1.5;
}
.h2-box > span {
	font-size: 16px;
	line-height: 1.5;
	position: relative;
	display: flex;
	align-items: center;
}
.h2-box > span::before {
	content: "";
	position: absolute;
	left: -50px;
	width: 30px;
	height: 1px;
	background: #fefefe;
}
.h2-box.txt-dark > span::before {
	background: #11445e;
}

@media screen and (max-width: 999px) {
	.h2-box {
		gap: 10px;
		padding-left: 20px;
	}
	.main-lower .h2-box {
		padding-left: 0px;
	}
	.h2-box > h2 {
		font-size: 23px;
	}
	.h2-box > span::before {
		content: none;
	}
}

.h3-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
.h3-box > h3 {
	width: 100%;
	font-size: 24px;
	padding-bottom: 16px;
	color: #fefefe;
	border-bottom: 1px solid #fefefe;
}
.h3-box.txt-dark > h3 {
	color: #11445e;
	border-bottom: 1px solid #11445e;
}

@media screen and (max-width: 999px) {
	.h3-box > h3 {
		font-size: 18px;
		padding-bottom: 12px;
	}
}

.h4-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	gap: 15px;
}
.h4-box::before {
	content: "";
	width: 1px;
	height: 30px;
	position: relative;
	flex-shrink: 0;
	background: #11445e;
}
.h4-box.no-border::before {
	content: none;
}
.h4-box > h4 {
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	color: #fefefe;
}
.h4-box.txt-dark > h4 {
	color: #11445e;
}
@media screen and (max-width: 999px) {
	.h4-box > h4 {
		font-size: 16px;
	}
}

.list-wrapper {
	width: 100%;
	padding-left: 25px;
	position: relative;
}
.list-wrapper.list-wrapper-num {
	padding-left: 45px;
}
ul.list {
	list-style-type: disc;
}
ul.list > li {
	font-size: 16px;
	line-height: 1.8;
}
ul.list.list-dark > li {
	color: #06445f;
}
ul.list > li::marker {
	font-size: 20px;
	line-height: 1;
}
ul.list.list-pt-num {
	counter-reset: list-pt-num-counter;
	list-style: none;
}
ul.list.list-pt-num > li {
	counter-increment: list-pt-num-counter;
}
ul.list.list-pt-num > li::before {
	content: "（" counter(list-pt-num-counter) "）";
	position: absolute;
	left: 0;
}
ul.list.list-num {
	counter-reset: list-num-counter;
	list-style: none;
}
ul.list.list-num > li {
	counter-increment: list-num-counter;
}
ul.list.list-num > li::before {
	content: counter(list-num-counter) ".";
	position: absolute;
	left: 15px;
}

@media screen and (max-width: 999px) {
	.list-wrapper.list-wrapper-num {
		padding-left: 30px;
	}
	ul.list > li {
		font-size: 14px;
	}
	ul.list > li::marker {
		font-size: 18px;
	}
	ul.list.list-num > li::before {
		left: 10px;
	}
}

a.txt-link {
	text-decoration: underline;
	transition: all ease 0.33s;
	text-underline-offset: 2px;
}
a.txt-link:hover {
	opacity: 0.7;
}

.txt-underline {
	text-decoration: underline;
	text-underline-offset: 2px;
}
/* ------ Lowwer Common ------ */

.sec-lower-heading {
	width: 100%;
	height: auto;
	padding: 0 5.2%;
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
	margin-bottom: 60px;
}
.sec-lower-heading-contents {
	width: 100%;
	max-width: 1720px;
	margin: 0 auto;
	padding: 0 2.9%;
	padding-top: 50px;
	padding-bottom: 80px;
	border-bottom: 1px solid #fefefe;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}
.h1-title-area {
	width: auto;
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: flex-start;
	flex-shrink: 0;
}
.h1-title-area > figure {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 100px;
	height: auto;
	flex-shrink: 0;
	border: 2px solid #fefefe;
	border-radius: 999px;
	position: relative;
	aspect-ratio: 1 / 1;
}
.h1-title-area > figure > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	max-width: 50px;
	max-height: 50px;
}

.h1-title-area > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 15px;
	align-items: flex-start;
}
.h1-title-area > div > h1 {
	width: 100%;
	font-size: 30px;
}
.h1-title-area > div > span {
	width: 100%;
	font-size: 24px;
	font-weight: 300;
}

@media screen and (max-width: 1200px) {
	.h1-title-area > figure {
		width: 80px;
	}
	.h1-title-area > figure > img {
		max-width: 40px;
		max-height: 40px;
	}

	.h1-title-area > div {
		gap: 10px;
	}
	.h1-title-area > div > h1 {
		font-size: 24px;
	}
	.h1-title-area > div > span {
		font-size: 16px;
	}
}
@media screen and (max-width: 999px) {
	.sec-lower-heading {
		margin-bottom: 50px;
	}
	.sec-lower-heading-contents {
		padding-top: 30px;
		padding-bottom: 50px;
		flex-flow: column;
	}
	.h1-title-area {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.sec-lower-heading-contents {
		padding-top: 30px;
		padding-bottom: 30px;
		gap: 40px;
	}
	.h1-title-area {
		gap: 20px;
	}
	.h1-title-area > figure {
		width: 60px;
	}
	.h1-title-area > figure > img {
		max-width: 30px;
		max-height: 30px;
	}

	.h1-title-area > div {
		gap: 10px;
	}
	.h1-title-area > div > h1 {
		font-size: 20px;
	}
	.h1-title-area > div > span {
		font-size: 14px;
	}
}

.breadcrumbs-box {
	display: flex;
	justify-content: flex-end;
	width: auto;
	flex-shrink: 0;
}
.breadcrumbs {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
	font-size: 14px;
}
.breadcrumbs > * {
	display: flex;
	position: relative;
	align-items: center;
	gap: 10px;
}
.breadcrumbs > *::after {
	content: "";
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url("../images/common/icon-chevron-right.svg");
	width: 6px;
	height: auto;
	aspect-ratio: 6 / 10;
	position: relative;
}
.breadcrumbs > *:last-child::after {
	content: none;
}
.breadcrumbs > a {
	transition: all ease 0.33s;
}
.breadcrumbs > a:hover {
	opacity: 0.6;
}
.breadcrumbs > span {
	position: relative;
	transition: all ease 0.33s;
	padding-right: 20px;
	font-weight: 500;
}

@media screen and (max-width: 999px) {
	.breadcrumbs-box {
		width: 100%;
	}
}
@media screen and (max-width: 500px) {
	.breadcrumbs-box {
		overflow-x: auto;
		overflow-y: hidden;
		padding-bottom: 5px;
	}
	.breadcrumbs {
		width: 100%;
		font-size: 12px;
		justify-content: flex-start;
	}
	.breadcrumbs > a,
	.breadcrumbs > span {
		text-wrap: nowrap;
	}
}

.lower-contents-area {
	width: 100%;
	padding: 0 5.2%;
	position: relative;
	min-height: 600px;
	max-width: 1920px;
	margin: 0 auto;
}
.lower-contents-flex {
	display: flex;
	z-index: 10;
	position: relative;
	width: 100%;
	align-items: flex-start;
	min-height: 600px;
}
.lower-contents-flex.lower-contents-1col {
	justify-content: center;
}
.side-nav-container {
	position: sticky;
	top: 220px;
	padding: 0 30px;
	padding-top: 40px;
	padding-bottom: 100px;
	width: 300px;
	flex-shrink: 0;
}
.side-nav-inner {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 16px;
}
.side-title {
	font-size: 16px;
	letter-spacing: 0.1em;
	font-weight: 500;
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 30px;
}
.side-title::after {
	content: "";
	width: 15px;
	height: 1px;
	background: #eee;
}
.side-nav,
.side-nav .sub-menu{
	display: flex;
	flex-flow: column;
	gap: 30px;
	width: 100%;
}
.side-nav-item,
.side-nav .sub-menu li{
	opacity: 0.75;
	width: 100%;
	transition: all ease 0.33s;
	position: relative;
}
.side-nav .sub-menu a:hover{
	opacity: 0.7;
}
.side-nav-item > a,
.side-nav li a{
	width: 100%;
	transition: all ease 0.33s;
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1.5;
	font-size: 14px;
}
.side-nav-item > a span::after,
.side-nav li a::after{
	content: "";
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-image: url("../images/common/icon-chevron-right.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 6px;
	height: auto;
	aspect-ratio: 6 / 10;
	position: relative;
	line-height: 1.5;
	vertical-align: super;
	margin-left: 10px;
}
.side-nav-item.active {
	opacity: 1;
	padding-left: 10px;
}
.side-nav-item.current-active,
.side-nav .sub-menu li.current-menu-item{
	opacity: 1;
	padding-left: 10px;
}
.side-nav > .menu-item > a{
 display: none;
}
.lower-contents {
	width: 100%;
	height: auto;
	max-width: 1420px;
	margin: 0;
	min-height: 600px;
}
.lower-contents a:hover{
	opacity: 0.7;
}

@media screen and (max-width: 1300px) {
	.side-nav-container {
		width: 220px;
	}
}
@media screen and (max-width: 1200px) {
	.side-nav-container {
		display: none;
	}
}

/* ------ Footer ------ */
footer {
	width: 100%;
	padding: 0 5.2%;
	position: relative;
	display: flex;
	flex-flow: column;
	align-items: center;
	font-family: "Noto Sans JP", sans-serif;
	z-index: 0;
}
footer::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 500px;
	background: linear-gradient(0deg, rgb(0 0 0 / 25%), transparent);
	bottom: 0;
	left: 0;
	z-index: 0;
}
.footer-contents {
	width: 100%;
	max-width: 1720px;
	margin: 0 auto;
	display: flex;
	flex-flow: column;
	gap: 30px;
	padding: 50px 3%;
	background: #06445f;
	border-radius: 10px;
	position: relative;
	z-index: 10;
}
.footer-contents a{
	transition-duration: 800ms;
}
.footer-contents a:hover{
	opacity: 0.6;
	transition-duration: 800ms;
}

.footer-info-group {
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgb(254 254 254 / 50%);
}
.footer-info-box {
	width: 100%;
	max-width: 430px;
	display: flex;
	flex-flow: column;
	gap: 37px;
	align-items: flex-start;
	flex-shrink: 0;
}
.footer-logo {
	width: 257px;
	height: auto;
/*	aspect-ratio: 257 / 72;*/
	aspect-ratio: auto;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.footer-logo img {
	width: 100%;
	height: 100%;
/*	object-fit: contain;*/
	object-fit: cover;
}
.footer-logo:hover {
	opacity: 0.6;
}

.footer-hospital {
	width: 100%;
	display: flex;
	gap: 30px;
	align-items: center;
}
.footer-hospital-logo {
	width: 147px;
	height: auto;
	aspect-ratio: 147 / 25;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.footer-hospital-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.footer-hospital-logo:hover {
	opacity: 0.6;
}
.footer-hospital > div {
	width: 100%;
	display: flex;
	gap: 8px;
	align-items: flex-start;
	justify-content: flex-start;
	flex-flow: column;
	flex-shrink: 0;
	font-size: 14px;
}
.footer-contact-box {
	width: 100%;
	max-width: 630px;
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: flex-end;
	flex-shrink: 0;
}
.footer-images-flex {
	width: 100%;
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: flex-start;
}
.footer-images-flex > figure {
	width: 100px;
	height: auto;
	aspect-ratio: 100 / 120;
	background: #fff;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	padding: 17px 15px;
	flex-shrink: 0;
}
.footer-images-flex > figure > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer-sns-box {
	width: auto;
	display: flex;
	gap: 20px;
	align-items: center;
}
.footer-sns-box a {
	width: 50px;
	height: auto;
	aspect-ratio: 1 / 1;
	border: 1px solid rgb(254 254 254 / 50%);
	border-radius: 999px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.footer-sns-box a > img {
	width: 100%;
	height: 100%;
	max-width: 24px;
	max-height: 24px;
	object-fit: contain;
}

.btn-footer-contact {
	display: flex;
	border: 1px solid rgb(255 255 255 / 30%);
	color: #fff;
	border-radius: 999px;
	transition: all ease 0.33s;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 350px;
	height: 80px;
	flex-shrink: 0;
}
.btn-footer-contact p {
	font-size: 16px;
	font-weight: bold;
}
.btn-footer-contact span {
	font-size: 13px;
}
.btn-footer-contact:hover {
	opacity: 0.6;
}

.footer-nav-box {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 50px;
	align-items: flex-start;
}

.footer-nav {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}
.footer-nav-col {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 35px;
	padding: 20px 30px;
	border-right: 1px solid rgb(254 254 254 / 50%);
}
.footer-nav-col:last-of-type {
	border-right: none;
}
.footer-nav-col-item {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 25px;
	align-items: flex-start;
}
.footer-nav-col-ttl {
	font-size: 16px;
	font-weight: bold;
}
.footer-nav-col-links {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 15px;
	align-items: flex-start;
	margin-left: 20px;
}
.footer-nav-col-links.no-ml {
	margin-left: 0px;
}
.footer-nav-col-links > a {
	width: 100%;
	font-size: 14px;
	opacity: 0.5;
	line-height: 1.5;
}

.footer-copy-box {
	width: 100%;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
}
.footer-copy-box p {
	font-size: 14px;
	text-align: center;
}

@media screen and (max-width: 1600px) {
	.footer-nav-col {
		gap: 30px;
		padding: 15px;
	}
	.footer-nav-col-links {
		gap: 10px;
		margin-left: 10px;
	}
}
@media screen and (max-width: 1400px) {
	.footer-nav {
		grid-template-columns: repeat(4, 1fr);
		row-gap: 25px;
	}
	.footer-nav-col:nth-of-type(4) {
		border-right: none;
	}
	.footer-images-flex {
		justify-content: center;
	}
	.footer-contact-box {
		width: auto;
		max-width: 350px;
		justify-content: flex-start;
		flex-shrink: 0;
		flex-flow: column;
	}
}
@media screen and (max-width: 1100px) {
	.footer-hospital {
		gap: 20px;
		flex-flow: column;
		align-items: flex-start;
	}
	.footer-nav {
		grid-template-columns: repeat(3, 1fr);
		row-gap: 25px;
	}
	.footer-nav-col:nth-of-type(4) {
		border-right: 1px solid rgb(254 254 254 / 50%);
	}
	.footer-nav-col:nth-of-type(3) {
		border-right: none;
	}
}
@media screen and (max-width: 999px) {
 .footer-hospital > div{
  font-size: 15px;
  line-height: 1.4;
 }
	.footer-nav-box {
		display: none;
	}
	.footer-info-group {
		padding-bottom: 0;
		border-bottom: none;
		gap: 20px;
		justify-content: center;
	}
	.footer-info-box {
		max-width: 300px;
		flex-flow: column;
		gap: 30px;
		align-items: flex-start;
		flex-shrink: 0;
	}
	.btn-footer-contact {
		width: 300px;
	}
}
@media screen and (max-width: 768px) {
	.footer-info-group {
		gap: 40px;
		flex-flow: column;
		align-items: center;
		justify-content: flex-start;
	}
	.footer-info-box {
		gap: 56px;
		align-items: center;
	}
	.footer-hospital {
		max-width: 260px;
	}
	.footer-images-flex {
		justify-content: center;
  gap: 20px;
	}

	.footer-copy-box {
		height: 86px;
	}
	.footer-copy-box p {
		font-size: 10px;
		text-wrap: nowrap;
	}
	.footer-images-flex > figure{
		width: 80px;
	}
}
