:root {
	--font-family-base: "Zen Kaku Gothic New",sans-serif;
	--font-en: "Inter",sans-serif;
	--font-weight-base: 500;
	--lineheight-base: 1.5;
	--font-size-base: 1.4rem;
	--text-color: #231815;
	--color-primary: #37806f;
	--input-border-color: #eeeeef;
	--input-border-width: 0.1rem;
	--input-font-size: 14px;
	--input-font-weight: 400;
	--input-background: #eeeeef;
	--input-height: 6rem;
}

* {
	box-sizing: border-box;
}

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

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

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

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

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

b,
strong {
	font-weight: 700;
}

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

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

table {
	border-collapse: collapse;
}

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

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

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

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

textarea {
	overflow: auto;
	resize: vertical;
}

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

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

[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: 107rem;
	padding-left: 3.5rem;
	padding-right: 3.5rem;
	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;
	opacity: 0;
	transform: translateY(2rem);
}

.btn {
	background-color: transparent;
	border: 1px solid transparent;
	color: #1e1e1e;
	display: inline-block;
	font-family: Noto Sans JP,sans-serif;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	vertical-align: middle;
}

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

.btn.disabled,
.btn:disabled {
	opacity: .6;
}

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

.btn-outline-secondary {
	align-items: center;
	background-color: #fff;
	border: .2rem solid #e9972b;
	border-radius: 6rem;
	color: #e9972b;
	display: inline-flex;
	font-size: 3.4rem;
	font-weight: 500;
	height: 10.6rem;
	justify-content: center;
	transition: .3s ease;
	width: 46.6rem;
}

.btn-outline-secondary:hover {
	background-color: #e9972b;
	border-color: #fff;
	color: #fff;
}

.btn-primary {
	align-items: center;
	background-color: var(--color-primary);
	border-radius: 6rem;
	color: #fff;
	display: inline-flex;
	font-size: 3.4rem;
	font-weight: 500;
	height: 10.6rem;
	justify-content: center;
	position: relative;
	transition: .3s ease;
	width: 46.6rem;
}

.btn-primary:hover {
	background-color: #fff;
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.btn-primary.btn-close {
	font-size: 2.8rem;
	height: 8rem;
	width: 35rem;
}

.btn-primary.btn-close:hover:after,
.btn-primary.btn-close:hover:before {
	background-color: var(--color-primary);
}

.btn-primary.btn-close:after,
.btn-primary.btn-close:before {
	background-color: #fff;
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s ease;
}

.btn-primary.btn-close:before {
	height: .2rem;
	left: 2.2rem;
	width: 4rem;
}

.btn-primary.btn-close:after {
	height: 4rem;
	left: 4rem;
	width: .2rem;
}

.btn-secondary {
	align-items: center;
	background-color: #e9972b;
	border-radius: 6rem;
	color: #fff;
	display: inline-flex;
	font-size: 3.4rem;
	font-weight: 500;
	height: 10.6rem;
	justify-content: center;
	transition: .3s ease;
	width: 46.6rem;
}

.btn-secondary:hover {
	background-color: #fff;
	border-color: #e9972b;
	color: #e9972b;
}

.btn-more {
	align-items: center;
	color: var(--color-primary);
	display: inline-flex;
	font-size: 4rem;
	font-weight: 500;
	gap: 1.6rem;
}

.btn-more:after {
	background: url(../images/common/icon_arrow_down_primary.svg) no-repeat 50%/contain;
	content: "";
	height: 2.7rem;
	width: 4.9rem;
}

.p-header.fixed .p-header__wrap {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 1000;
}

.p-header__logo {
	margin-bottom: 7.5rem;
	text-align: center;
}

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

.p-header__nav-lang {
	align-items: center;
	display: flex;
	flex-direction: row-reverse;
	font-size: 3.8rem;
	font-weight: 600;
	gap: 3.5rem;
	margin-bottom: 9.6rem;
}

.p-header__nav-lang a {
	font-weight: 500;
	transition: .3s ease;
}

.p-header__nav-btn {
	align-items: center;
	background-color: #e9972b;
	border-radius: 6rem;
	color: #fff;
	display: flex;
	font-size: 3.4rem;
	font-weight: 500;
	height: 10.8rem;
	justify-content: center;
	margin: 0 auto;
	position: relative;
	width: 54rem;
}

.p-header .nav-list {
	display: flex;
	flex-direction: column;
	font-size: 4.2rem;
	font-weight: 500;
	gap: 8.4rem;
	margin-bottom: 10.6rem;
}

.p-header .nav-list a {
	transition: .3s ease;
}

.p-header .nav-list a:hover {
	color: var(--color-primary);
}

.hamburger-box {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: 5rem;
	justify-content: center;
	margin: auto;
	position: fixed;
	right: 5rem;
	top: 4.5rem;
	width: 5rem;
	z-index: 1100;
}

.hamburger-box.is-active .hamburger-inner:after,
.hamburger-box.is-active .hamburger-inner:before {
	background-color: #fff;
}

.hamburger-inner:after,
.hamburger-inner:before {
	background-color: var(--menu-color,var(--color-primary));
	border-radius: 1.5px;
	content: "";
	display: block;
	height: .3rem;
	transition: transform .15s ease;
	width: 5rem;
}

.hamburger-inner {
	display: block;
	height: 1.7rem;
	position: relative;
	transition-duration: 75ms;
	transition-timing-function: cubic-bezier(.55,.055,.675,.19);
	width: 5rem;
}

.hamburger-inner:before {
	position: absolute;
	top: 0;
	transition: top 75ms ease .12s,opacity 75ms ease;
}

.hamburger-inner:after {
	bottom: 0;
	position: absolute;
	transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19);
}

.p-footer {
	background: url(../images/common/bg_footer_sp.webp) no-repeat 50%/cover;
	padding-block: 5.3rem 6.2rem;
	position: relative;
	z-index: 100;
}

.p-footer:before {
	background-color: #fff;
	content: "";
	height: 100%;
	left: 0;
	opacity: .9;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.p-footer__wrap {
	position: relative;
}

.p-footer__logo {
	margin-bottom: 8.3rem;
	text-align: center;
}

.p-footer__logo img {
	width: 52.8rem;
}

.p-footer__nav {
	color: #3e3a39;
	display: flex;
	font-size: 3.2rem;
	font-weight: 700;
	gap: 5.6rem;
	justify-content: center;
	margin-bottom: 11.7rem;
}

.p-footer__nav a {
	align-items: center;
	display: inline-flex;
	gap: 1.5rem;
}

.p-footer__nav a:hover {
	color: #e9972b;
}

.p-footer__nav a:hover .icon-mail {
	background-image: url(../images/common/icon_mail_hover.svg);
}

.p-footer__nav a:hover .icon-lock {
	background-image: url(../images/common/icon_lock_hover.svg);
}

.p-footer__nav .icon-mail {
	background: url(../images/common/icon_mail.svg) no-repeat 50%/contain;
	height: 3.1rem;
	width: 3.8rem;
}

.p-footer__nav .icon-lock {
	background: url(../images/common/icon_lock.svg) no-repeat 50%/contain;
	height: 3.7rem;
	width: 3.2rem;
}

.p-footer__txt {
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.64;
}

.p-footer .copyright {
	font-family: var(--font-en);
	font-size: 2.8rem;
	font-weight: 500;
	margin-top: 5.6rem;
	text-align: center;
}

.p-footer .page-top {
	bottom: 5rem;
	display: none;
	position: fixed;
	right: 13rem;
	z-index: 1000;
}

.p-footer .page-top a {
	background: url(../images/common/icon_top.svg) no-repeat 50%/contain;
	display: block;
	height: 6rem;
	width: 6rem;
}

.form-control {
	background-clip: padding-box;
	background-color: var(--input-background);
	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);
	height: var(--input-height);
	line-height: 1.5;
	outline: none;
	padding: .5rem 1rem;
	width: 100%;
}

.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=datetime-local].form-control,
input[type=month].form-control,
input[type=time].form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

textarea.form-control {
	height: 31.5rem;
	resize: none;
}

label.error {
	color: red;
	display: block;
	font-size: 2rem;
	margin-top: 1rem;
}

.table {
	width: 100%;
}

.hline01 {
	color: #3e3a39;
	display: flex;
	justify-content: center;
	margin-bottom: var(--hline01-margin-bottom,5rem);
	text-align: center;
}

.hline01.hline01--light {
	color: #fff;
}

.hline01.hline01--light .hline01__sub:after,
.hline01.hline01--light .hline01__sub:before {
	background-color: #fff;
}

.hline01.hline01--primary {
	color: #4b8474;
}

.hline01.hline01--primary .hline01__sub:after,
.hline01.hline01--primary .hline01__sub:before {
	background-color: #4b8474;
}

.hline01__wrap {
	overflow: hidden;
}

.hline01__ttl {
	font-family: var(--font-en);
	font-size: 5rem;
	font-weight: 700;
}

.hline01__sub {
	font-size: 2.4rem;
	font-weight: 500;
	position: relative;
}

.hline01__sub:after,
.hline01__sub:before {
	background-color: #3e3a39;
	content: "";
	height: 1px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.hline01__sub:before {
	right: calc(100% + 1.3rem);
}

.hline01__sub:after {
	left: calc(100% + 1.3rem);
}

.hline02 {
	color: var(--hline01-color,#398573);
	margin-bottom: 3.7rem;
	text-align: center;
}

.hline02__ttl {
	font-size: 4.5rem;
	font-weight: 600;
	margin-bottom: .2rem;
}

.hline02__sub {
	font-size: 2.4rem;
	font-weight: 600;
}

.modal {
	background-color: rgba(255,248,232,.9);
	height: 100%;
	left: 0;
	opacity: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	pointer-events: none;
	position: fixed;
	scrollbar-width: none;
	top: 0;
	transition: .3s ease;
	visibility: hidden;
	width: 100%;
	z-index: 10000;
}

.modal.is-open {
	opacity: 1;
	pointer-events: all;
	visibility: visible;
}

.modal-content {
	position: relative;
}

.modal-close-btn {
	background-color: #369272;
	border: .6rem solid #fff;
	border-radius: 50%;
	cursor: pointer;
	height: 8rem;
	position: absolute;
	right: -3rem;
	top: -3rem;
	width: 8rem;
}

.modal-close-btn:after,
.modal-close-btn:before {
	background-color: #fff;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}

.modal-close-btn:before {
	height: 4rem;
	width: .2rem;
}

.modal-close-btn:after {
	height: .2rem;
	width: 4rem;
}

.modal-speaker-inner {
	align-items: center;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	max-width: 92rem;
	min-height: 100%;
	padding: 8rem 0;
	width: 90%;
}

.modal-speaker {
	background-color: #fff;
	border: .2rem solid #4b8474;
	border-radius: 2rem;
	box-shadow: 0 0 20px rgba(0,0,0,.2);
	padding: 6rem;
}

.modal-speaker__body {
	display: grid;
	gap: 5rem;
}

.modal-speaker__name {
	font-size: 4.8rem;
	font-weight: 700;
	margin-bottom: 3rem;
}

.modal-speaker__desc {
	border-bottom: 1px solid #ccc;
	font-size: 2.8rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
}

.modal-speaker__txt {
	font-size: 2.8rem;
	line-height: 1.8;
}

.modal-speaker__bottom {
	display: flex;
	justify-content: center;
	margin-top: 3rem;
}

.translated-ltr .modal-speaker__bottom {
	display: none;
}

.translated-ltr .text-en {
	display: block;
}

.translated-ltr .text-jp {
	display: none;
}

.translated-ltr .c-indent-r {
	margin-right: 0;
}

.translated-ltr .c-indent-l {
	margin-left: 0;
}

.translated-ltr .c-indent {
	margin-inline: 0;
}

.text-en {
	display: none;
}

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

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

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

.font-en {
	font-family: var(--font-en)!important;
}

.hover {
	transition: .3s ease;
}

.hover:hover {
	opacity: .7;
}

.c-indent {
	margin-inline: -.5em;
}

.c-indent-r {
	margin-right: -.5em;
}

.c-indent-l {
	margin-left: -.5em;
}

.letter-n-5 {
	letter-spacing: -.05em;
}

.letter-n-10 {
	letter-spacing: -.1em;
}

.l-main {
	padding-block: 12rem 10rem;
}

.c-title {
	color: var(--color-primary);
	margin-bottom: 3rem;
	text-align: center;
}

.c-title__sub {
	font-size: 2.2rem;
	font-weight: 500;
}

.c-title__ttl {
	font-family: var(--font-en);
	font-size: 4.5rem;
	font-weight: 600;
}

.p-form__txt {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.75;
	margin-bottom: 8.8rem;
	text-align: center;
}

.p-form__thanks {
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1.75;
	text-align: center;
}

.p-form .form-dl.form-dl--confirm dt {
	font-size: 2.6rem;
}

.p-form .form-dl.form-dl--confirm dd {
	margin-bottom: 6rem;
}

.p-form .form-dl dt {
	font-size: 2.6rem;
	font-weight: 500;
	margin-bottom: 2.8rem;
	padding-left: 1.3rem;
}

.p-form .form-dl dd {
	font-size: 2.4rem;
	margin: 0 0 1.8rem;
}

.p-form .form-dl dd:last-child {
	margin-bottom: 0;
}

.p-form .form-footer {
	display: flex;
	gap: 6.2rem;
	justify-content: center;
	margin-top: 10rem;
}

@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;
	--input-height: 5rem;
}

html {
	font-size: .8620689655vw;
}

.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-outline-secondary {
	border-radius: 4rem;
	font-size: 2.4rem;
	height: 7.4rem;
	width: 32.6rem;
}

.btn-primary {
	border-radius: 4rem;
	font-size: 2.4rem;
	height: 7.4rem;
	width: 32.6rem;
}

.btn-primary.btn-close {
	font-size: 1.6rem;
	height: 5rem;
	width: 20rem;
}

.btn-primary.btn-close:before {
	left: 1.6rem;
	width: 3rem;
}

.btn-primary.btn-close:after {
	height: 3rem;
	left: 3rem;
}

.btn-secondary {
	border-radius: 4rem;
	font-size: 2.4rem;
	height: 7.4rem;
	width: 32.6rem;
}

.btn-more {
	font-size: 2rem;
	gap: .8rem;
}

.btn-more:after {
	height: 1.4rem;
	width: 2.5rem;
}

.p-header.fixed {
	height: var(--headerHeight);
}

.p-header__wrap {
	align-items: center;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
}

.p-header__logo {
	margin-bottom: 0;
	padding-left: 1.6rem;
	text-align: left;
}

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

.p-header__nav {
	align-items: center;
	display: flex;
}

.p-header__nav-lang {
	border-left: 1px solid var(--text-color);
	font-size: 1.6rem;
	font-weight: 500;
	gap: 0;
	margin-bottom: 0;
	margin-left: 2.5rem;
	padding-left: 2.5rem;
}

.p-header__nav-lang a:not(:first-child):after {
	content: "/";
	margin-inline: .5rem;
}

.p-header__nav-lang a.gt-current-lang,
.p-header__nav-lang a:hover {
	color: var(--color-primary);
	font-weight: 500!important;
}

.p-header__nav-btn {
	border-radius: 0;
	font-size: 1.6rem;
	height: 8rem;
	margin-inline: 3rem 0;
	transition: .3s ease;
	width: 14rem;
}

.p-header__nav-btn:hover {
	background-color: #fff;
	color: #e9972b;
}

.p-header .nav-list {
	flex-direction: row;
	font-size: 1.6rem;
	gap: 2.5rem;
	margin-bottom: 0;
}

.hamburger-box {
	display: none;
}

.p-footer {
	background-image: url(../images/common/bg_footer.webp);
	padding-block: 13rem 6.4rem;
}

.p-footer__logo {
	margin-bottom: 0;
	position: absolute;
	right: 0;
	top: -2rem;
}

.p-footer__logo img {
	width: 36.2rem;
}

.p-footer__nav {
	font-size: 2.2rem;
	gap: 2.8rem;
	justify-content: flex-start;
	margin-bottom: 4.8rem;
}

.p-footer__nav a {
	gap: 1rem;
}

.p-footer__nav .icon-mail {
	height: 2.1rem;
	width: 2.6rem;
}

.p-footer__nav .icon-lock {
	height: 2.6rem;
	width: 2.2rem;
}

.p-footer__txt {
	font-size: 1.4rem;
}

.p-footer .copyright {
	font-size: 1.4rem;
	margin-top: 6rem;
}

label.error {
	font-size: 1.4rem;
}

.hline01 {
	margin-bottom: var(--hline01-margin-bottom,7.2rem);
}

.hline01__sub {
	font-size: 2rem;
}

.hline02 {
	margin-bottom: 4rem;
}

.hline02__ttl {
	font-size: 4rem;
	margin-bottom: .6rem;
}

.hline02__sub {
	font-size: 1.8rem;
}

.modal-close-btn {
	border-width: .4rem;
	height: 6rem;
	right: -2rem;
	top: -2rem;
	width: 6rem;
}

.modal-close-btn:before {
	height: 3rem;
}

.modal-close-btn:after {
	width: 3rem;
}

.modal-speaker {
	border-radius: 3rem;
	padding: 5rem;
}

.modal-speaker__body {
	grid-template-columns: 25rem 1fr;
}

.modal-speaker__name {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.modal-speaker__desc {
	font-size: 1.5rem;
}

.modal-speaker__txt {
	font-size: 1.4rem;
}

.sp {
	display: none;
}

.l-main {
	padding-block: 9rem 10rem;
}

.c-title {
	margin-bottom: 4rem;
}

.c-title__sub {
	font-size: 1.8rem;
}

.c-title__ttl {
	font-size: 4rem;
}

.p-form__txt {
	font-size: 2.8rem;
	margin-bottom: 7.4rem;
}

.p-form__thanks {
	font-size: 1.8rem;
}

.p-form .form-dl.form-dl--confirm dt {
	font-size: 2.2rem;
}

.p-form .form-dl.form-dl--confirm dd {
	margin-bottom: 8rem;
}

.p-form .form-dl dt {
	font-size: 1.8rem;
	margin-bottom: 2.3rem;
	padding-left: 0;
}

.p-form .form-dl dd {
	font-size: 1.8rem;
	margin-bottom: 5rem;
}

}

@media (min-width:1160px) {

html {
	font-size: 10px;
}

.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:1300px) {

.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;
}

.p-header__nav-lang {
	font-size: 2rem;
	margin-left: 3.3rem;
	padding-left: 3.3rem;
}

.p-header__nav-btn {
	font-size: 2rem;
	margin-left: 4.4rem;
	width: 18rem;
}

.p-header .nav-list {
	font-size: 2rem;
	gap: 3.3rem;
}

}

@media (max-width:767px) {

.p-header__wrap {
	background-color: #37806f;
	color: #fff;
	height: 100%;
	left: 0;
	opacity: 0;
	overflow-y: auto;
	padding: 3.5rem 9rem 13.5rem;
	pointer-events: none;
	position: fixed;
	top: 0;
	transition: .3s ease;
	visibility: hidden;
	width: 100%;
	z-index: 100;
}

.p-header__wrap.is-open {
	opacity: 1;
	pointer-events: all;
	visibility: visible;
}

.p-header__nav-lang a {
	align-items: center;
	border: .3rem solid #fff;
	color: #fff;
	display: flex;
	flex: 1;
	height: 8.3rem;
	justify-content: center;
}

.p-header__nav-lang a.gt-current-lang {
	background-color: #fff;
	color: #37806f;
}

.p-header__nav-btn:after {
	background: url(../images/common/icon_arrow01.svg) no-repeat 50%/contain;
	content: "";
	height: 3rem;
	position: absolute;
	right: 4rem;
	top: 50%;
	transform: translateY(-50%);
	width: 2.2rem;
}

.p-footer .page-top {
	display: none!important;
}

.modal-speaker__img {
	text-align: center;
}

.modal-speaker__img img {
	width: 40rem;
}

.pc {
	display: none;
}

}

@keyframes fadeUp {

0% {
	opacity: 0;
	transform: translateY(2rem);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}

