:root {
	--font-family-base: Noto Sans JP, sans-serif;
	--font-weight-base: 400;
	--lineheight-base: 1.5;
	--font-size-base: 1.3rem;
	--color-primary: #45b2c2;
	--color-secondary: #efe6d3;
	--color-danger: #ff0000;
	--input-border-color: #e6e6e6;
	--input-border-width: 0.1rem;
	--input-font-size: 14px;
	--input-font-weight: 400;
	--input-background: #fff;
}

* {
	box-sizing: border-box;
}

html {
	font-size: 2.6666666667vw;
	overflow-x: hidden;
}

html.noscroll {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	background-color: #fff;
	color: #1E1E1E;
	margin: 0;
	font-family: var(--font-family-base);
	font-weight: var(--font-weight-base);
	font-size: var(--font-size-base);
	line-height: var(--lineheight-base);
	text-align: left;
	position: relative;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

ol,
ul,
dl {
	list-style-type: none;
	margin: 0;
	padding-left: 0;
}

b,
strong {
	font-weight: 700;
}

a {
	background-color: transparent;
	color: inherit;
	text-decoration: none;
}

img {
	vertical-align: middle;
	border-style: none;
	max-width: 100%;
	height: auto;
}

table {
	border-collapse: collapse;
}

th {
	font-weight: 400;
	text-align: inherit;
	text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}

textarea {
	overflow: auto;
	resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

[hidden] {
	display: none !important;
}

.aligncenter {
	text-align: center;
}

.alignright {
	text-align: right;
}

.alignleft {
	text-align: left;
}

img.aligncenter {
	display: block;
	margin: auto;
}

img.alignright {
	display: block;
	margin-left: auto;
}

img.alignleft {
	display: block;
	margin-right: auto;
}

.container {
	margin: auto;
	max-width: 126.2rem;
	padding-left: 1.6rem;
	padding-right: 1.6rem;
	width: 100%;
}

.d-none {
	display: none !important;
}

.d-block {
	display: block !important;
}

.d-flex {
	display: flex !important;
}

.text-justify {
	text-align: justify !important;
}

.text-wrap {
	white-space: normal !important;
}

.text-nowrap {
	white-space: nowrap !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

.text-lowercase {
	text-transform: lowercase !important;
}

.text-uppercase {
	text-transform: uppercase !important;
}

.text-capitalize {
	text-transform: capitalize !important;
}

.text-underline {
	text-decoration: underline;
}

.animate_animated {
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-timing-function: ease;
}

.fadeUp {
	animation-name: fadeUp;
}

.fadeZoomOut {
	animation-name: fadeZoomOut;
	animation-duration: 0.8s;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #1E1E1E;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	font-size: 1.5rem;
}

.btn:focus,
.btn.focus {
	outline: 0;
}

.btn.disabled,
.btn:disabled {
	opacity: 0.6;
	pointer-events: none;
}

.btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}

.btn--primary {
	background-color: var(--color-primary);
	border-radius: 5rem;
	color: #fff;
	transition: opacity 0.2s ease-in-out;
	height: 5rem;
	width: 27.6rem;
}

.btn--primary:hover {
	opacity: 0.8;
}

.btn--outline {
	background-color: #fff;
	border-radius: 5rem;
	transition: opacity 0.2s ease-in-out;
	height: 5rem;
	width: 27.6rem;
	border-color: var(--color-primary);
	border-width: 0.3rem;
}

.btn--outline:hover {
	opacity: 0.8;
}

.p-header {
	background-color: #fff;
	z-index: 100;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
}

.p-header__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.9rem;
}

.p-header__logo {
	position: relative;
	z-index: 19;
}

.p-header__logo img {
	width: 8.8rem;
}

.header-show .p-header__logo img {
	filter: brightness(0) invert(1);
}

.p-header__box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 8rem;
	padding-left: 3.5rem;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}

.p-header__image {
	margin: 0 0 2.8rem -3.5rem;
}

.p-header__image img {
	width: 100%;
}

.p-header__acs {
	font-size: 1.3rem;
}

.p-header__copyright {
	font-size: 1.1rem;
}

.global-nav a {
	display: flex;
	align-items: flex-end;
	border-bottom: 1px solid #fff;
	height: 6.4rem;
}

.global-nav a:not(.global-nav__link) img {
	height: 1.7rem;
}

.global-nav a.global-nav__link img {
	height: 1.3rem;
}

.global-nav a img {
	transition: 0.3s ease;
}

.hamburger-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	height: 3.5rem;
	width: 3.5rem;
	z-index: 99;
}

.hamburger-box.is-active .hamburger-inner {
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transform: rotate(35deg);
}

.hamburger-box.is-active .hamburger-inner:before {
	transition: top 75ms ease, opacity 75ms ease 0.12s;
	opacity: 0;
	top: 0;
}

.hamburger-box.is-active .hamburger-inner:after {
	transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
	transform: rotate(-75deg);
	bottom: 0;
}

.hamburger-inner:after,
.hamburger-inner:before {
	display: block;
	content: "";
}

.hamburger-inner:after,
.hamburger-inner:before,
.hamburger-inner {
	width: 100%;
	height: 0.2rem;
	background-color: #000;
	transition: transform 0.15s ease;
	border-radius: 3px;
}

.header-show .hamburger-inner:after,
.header-show .hamburger-inner:before,
.header-show .hamburger-inner {
	background-color: #fff;
}

.hamburger-inner {
	position: relative;
	display: block;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition-duration: 75ms;
}

.hamburger-inner:before {
	position: absolute;
	top: -1.2rem;
	transition: top 75ms ease 0.12s, opacity 75ms ease;
}

.hamburger-inner:after {
	position: absolute;
	bottom: -1.2rem;
	transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.p-footer {
	background-color: #1f1f1f;
	color: #fff;
	padding: 5.4rem 0 3.3rem;
}

.p-footer .container {
	max-width: 102.3rem;
}

.p-footer__wrap {
	display: flex;
	justify-content: space-between;
	gap: 5.8rem;
	align-items: center;
}

.p-footer__logo {
	width: 14.2rem;
}

.p-footer__logo img {
	width: 100%;
}

.p-footer__mail {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.8rem;
	font-weight: 600;
}

.p-footer__mail::after {
	content: "";
	background: url("../images/common/icon_mail_primary.svg") no-repeat center/contain;
	height: 2.3rem;
	width: 3.7rem;
	filter: brightness(0) invert(1);
}

.p-footer__mail:hover {
	color: var(--color-primary);
}

.p-footer__mail:hover::after {
	filter: brightness(100%);
}

.p-footer__body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 7.5rem;
}

.p-footer__copyright {
	font-weight: 300;
	font-size: 1.2rem;
}

.form-control {
	background-color: var(--input-background);
	background-clip: padding-box;
	border: var(--input-border-width) solid var(--input-border-color);
	color: #000;
	display: block;
	font-family: var(--font-family-base);
	font-size: var(--input-font-size);
	font-weight: var(--input-font-weight);
	line-height: 1.5;
	padding: 0.5rem 1rem;
	width: 100%;
	height: 6rem;
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form-control:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}

.form-control::-moz-placeholder {
	color: #e6e6e6;
	opacity: 1;
}

.form-control::placeholder {
	color: #e6e6e6;
	opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
	background-color: #1E1E1E;
	opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.table {
	width: 100%;
}

.hline01 {
	margin-bottom: 3rem;
}

.hline01__ttl {
	margin-bottom: 1rem;
}

.hline01__ttl img {
	display: block;
	height: 2.6rem;
}

.hline01__sub {
	font-size: 1.3rem;
}

body.is-loaded {
	opacity: 1 !important;
}

.nospace::before,
.nospace::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.nospace::before {
	margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.nospace::after {
	margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.txt-danger {
	color: var(--color-danger);
}

.body-txt {
	line-height: 1.6875;
}

@media (min-width: 576px) {

.d-sm-none {
	display: none !important;
}

.d-sm-block {
	display: block !important;
}

.d-sm-flex {
	display: flex !important;
}

.text-sm-left {
	text-align: left !important;
}

.text-sm-right {
	text-align: right !important;
}

.text-sm-center {
	text-align: center !important;
}

}

@media (min-width: 768px) {

:root {
	--font-size-base: 1.6rem;
}

html {
	font-size: 0.7320644217vw;
}

.d-md-none {
	display: none !important;
}

.d-md-block {
	display: block !important;
}

.d-md-flex {
	display: flex !important;
}

.text-md-left {
	text-align: left !important;
}

.text-md-right {
	text-align: right !important;
}

.text-md-center {
	text-align: center !important;
}

.btn {
	font-size: 1.6rem;
}

.btn--primary {
	width: 30.4rem;
}

.btn--outline {
	width: 30.4rem;
}

.p-header {
	position: relative;
}

.p-header__wrap {
	padding: 1.9rem 3.6rem 1.6rem 8.8rem;
}

.p-header__logo img {
	width: 14.9rem;
}

.global-nav {
	display: flex;
	gap: 1.6rem;
}

.global-nav a {
	background-color: var(--color-primary);
	align-items: center;
	justify-content: center;
	border-radius: 2.2rem;
	border: 0.3rem solid var(--color-primary);
	height: 3.4rem;
	width: 15.7rem;
	transition: 0.3s ease;
}

.global-nav a:not(.global-nav__link):hover {
	background-color: #cbb092;
	border-color: #cbb092;
}

.global-nav a:not(.global-nav__link) img {
	height: 1.1rem;
}

.global-nav a.global-nav__link {
	background-color: #fff;
}

.global-nav a.global-nav__link:hover {
	background-color: var(--color-primary);
}

.global-nav a.global-nav__link:hover img {
	filter: brightness(0) invert(1);
}

.hamburger-box {
	display: none;
}

.p-footer {
	padding: 3rem 0 4.4rem;
}

.p-footer__wrap {
	align-items: flex-end;
}

.p-footer__body {
	align-items: flex-end;
}

.hline01 {
	margin-bottom: 6.5rem;
}

.hline01__ttl {
	margin-bottom: 1.4rem;
}

.hline01__ttl img {
	height: 4.4rem;
}

.hline01__sub {
	font-size: 1.4rem;
}

.sp {
	display: none !important;
}

}

@media (min-width: 992px) {

.d-lg-none {
	display: none !important;
}

.d-lg-block {
	display: block !important;
}

.d-lg-flex {
	display: flex !important;
}

.text-lg-left {
	text-align: left !important;
}

.text-lg-right {
	text-align: right !important;
}

.text-lg-center {
	text-align: center !important;
}

}

@media (min-width: 1366px) {

html {
	font-size: 10px;
}

.d-xl-none {
	display: none !important;
}

.d-xl-block {
	display: block !important;
}

.d-xl-flex {
	display: flex !important;
}

.text-xl-left {
	text-align: left !important;
}

.text-xl-right {
	text-align: right !important;
}

.text-xl-center {
	text-align: center !important;
}

}

@media (max-width: 767px) {

.p-header__block {
	overflow: hidden;
	position: fixed;
	inset: 0;
	padding: var(--headHeight) 0 1.5rem;
	display: flex;
	z-index: -12;
	opacity: 0;
	visibility: hidden;
}

.header-show .p-header__block {
	z-index: 12;
	opacity: 1;
	visibility: visible;
}

.header-show .p-header__block::after {
	transform: scale(6);
}

.p-header__block::after {
	content: "";
	position: fixed;
	z-index: -1;
	right: 0;
	top: -50vw;
	left: 50%;
	background: var(--color-primary);
	width: 100vw;
	height: 100vw;
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.5s ease-in 0s;
}

.p-header__content {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	transition-delay: 0.3s;
}

.header-show .p-header__content {
	opacity: 1;
	visibility: visible;
}

.global-nav {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	transition-delay: 0.3s;
}

.header-show .global-nav {
	opacity: 1;
	visibility: visible;
}

.global-nav a {
	padding-bottom: 1.5rem;
}

.global-nav a.global-nav__link img {
	height: 1.9rem;
	filter: brightness(0) invert(1);
}

.p-footer__wrap {
	flex-direction: column;
}

.pc {
	display: none !important;
}

main {
	margin-top: var(--headHeight);
}

}

@keyframes fadeUp {

0% {
	opacity: 0;
	transform: translate(0px, 40px);
}

100% {
	opacity: 1;
	transform: translate(0px, 0);
}

}

@keyframes fadeZoomOut {

0% {
	opacity: 0;
	transform: scale(1.1);
}

100% {
	opacity: 1;
	transform: scale(1);
}

}

