@charset "utf-8";

:root {
	--font_family: 'Zen Maru Gothic', sans-serif;
	--white: #fff;
	--black: #000;
	--bgcolor: #FCF9F5;
	--red: #D02328;
	--orange: #F17E06;
	--green: #008A3A;
	--blue: #005FCE;
	--blue_light: #4BACB9;
	--gray: #777;
	--gray_line: #C9C9C9;
	--gray_dark: #4B4B4B;
	--header_h: 100px;
	--max_w: 1000px;
	--easing: cubic-bezier(.8,0,.4,1);
}

/* 
 * Reset
 * ==================================================================================================== */
*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	vertical-align: baseline;
	box-sizing: border-box;
}

html {
	font-size: 1px;
	max-height: 100vh;
	overflow-y: scroll;
	overflow-x: hidden;
	cursor: default;
	scroll-behavior: smooth
}

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

::-webkit-scrollbar-track {
	background: var(--gray_line);
}

::-webkit-scrollbar-thumb {
	background-color: var(--gray);
}

body {
	color: var(--gray_dark);
	font-size: 16rem;
	font-weight: 500;
	font-family: var(--font_family);
	line-height: 1;
	letter-spacing: 0;
	word-break: break-all;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: var(--bgcolor);
}

input,
textarea,
button,
select,
option,
textarea {
	font-family: var(--font_family);
	margin: 0;
	padding: 0;
	outline: none;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

ol,
ul {
	list-style: none;
}

table {
	border-collapse: separate;
	border-spacing: 0;
}

a:link,
a:before,
a:after,
a img,
a svg,
input[type='image'],
input[type='submit'],
button,
button:before,
button:after {
	color: var(--orange);
	text-decoration: underline;
	transition: .2s var(--easing);
}

a:visited {
	color: var(--orange);
}

a:hover {
	text-decoration: none;
}

a:hover img {
	opacity: .8;
}

a:focus {
	outline: none;
}

a:focus-visible,
button:focus-visible {
	outline-style: dotted;
	outline-color: var(--black);
	outline-width: medium;
	outline-offset: 5px;
	transition: 0s;
}

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

svg {
	width: 100%;
	height: auto;
}

button {
	margin:0;
	padding:0;
	border:0;
	background:transparent;
}

sup {
	font-size: calc(1em / 5 * 4);
	line-height: 1;
	letter-spacing: .1em;
	vertical-align: text-top;
}

sub {
	font-size: calc(1em / 1.5);
	line-height: 1;
	letter-spacing: .1em;
	margin-inline: .1em;
	vertical-align: baseline;
}

strong,
em,
b {
	font-weight: 700;
}

::selection {
	color: var(--white);
	background: var(--red);
}

.u-show_mobile {
	display: none !important;
}

.u-hide_mobile {
	display: block !important;
}

.u-show_tablet {
	display: none !important;
}

.u-hide_tablet {
	display: block !important;
}

.u-contents:not(:first-of-type) {
	margin-top: 120px;
}

.u-inner {
	max-width: calc(var(--max_w) + (60px * 2));
	margin-inline: auto;
	padding-inline: 60px;
}

.u-cover {
	background: rgba(255,255,255,.1);
	position: fixed;
	visibility: hidden;
	opacity: 0;
	transition: .2s var(--easing);
	z-index: 400;
	inset: 0;
	backdrop-filter: blur(15px);
}

/*button*/
.u-button > * {
	color: var(--blue);
}

.u-button.-button > * {
	color: var(--white);
	font-size: 18rem;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	max-width: 420px;
	min-width: 320px;
	min-height: 76px;
	padding: 0 10px .25em 0;
	border-radius: 30px 30px 0 30px;
	background: var(--red);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform: translateZ(0);
	overflow: hidden;
}

.u-button.-button.u-align_center > * {
	margin-inline: auto;
}

.u-button.-button > *:hover {
	opacity: .8;
}

.u-button.-button > *:before {
	content: '';
	width: 24px;
	height: 24px;
	display: block;
	background: url("/_assets/images/common/arrow_01_white.svg") no-repeat center / 100%;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(0,-50%);
	z-index: 10;
}

.u-button.-button > * * {
	font-size: 18rem;
	vertical-align: text-top;
	position: relative;
	z-index: 10;
}

.u-button.-button > * small {
	font-size: 14rem;
	vertical-align: baseline;
	margin-inline: .5em;
	display: inline-block;
}

.u-button.-arrow > * > *:before {
	content: '';
	vertical-align: sub;
	width: 1.375em;
	height: 1.375em;
	margin: 0 .4em 0 0;
	display: inline-block;
	background: url("/_assets/images/common/arrow_01@blue.svg") no-repeat center / 100%;
}

.no-touch .u-button.-arrow > *:hover {
	text-decoration: underline !important;
	opacity: 1 !important;
}

.no-touch .u-button.-arrow > *:hover *:before {
	filter: contrast(1.5) brightness(80%);
}

/*icon*/
a[target='_blank']:after {
	content: '';
	vertical-align: baseline;
	width: .825em;
	height: .825em;
	margin-inline: .45em;
	margin-bottom: -.05em;
	display: inline-block;
	background: url("/_assets/images/common/icon_blank_01_red.svg") no-repeat center / 100%;
}

a[target='_blank'].blank_none:after {
	display: none;
}

.u-icon {
	display: inline-block;
	position: relative;
}

.u-icon_arrow {
	color: var(--red);
	text-decoration: none;
}

.u-icon_arrow:hover {
	text-decoration: underline;
}

.u-icon_arrow:before {
	content: '';
	vertical-align: text-top;
	width: 24px;
	height: 24px;
	margin: 0 .5em 0 0;
	display: inline-block;
	background: url("/_assets/images/common/arrow_01_red.svg") no-repeat center / 100%;
}

.u-icon_arrow.-down:before {
	transform: rotate(90deg);
}

.u-icon_arrow.-none_arrow:before {
	display: none;
}

.u-icon_arrow[href$='.pdf']:after {
	display: none;
}

.u-icon_arrow[href$='.pdf'] span {
	text-indent: 0;
	vertical-align: bottom;
	display: inline-block;
}

.u-icon_arrow[href$='.pdf'] span:before,
.u-button.-button > * * span:before {
	content: 'PDF';
	color: var(--white);
	font-size: .7em;
	line-height: 0;
	vertical-align: baseline;
	text-indent: 0;
	margin-inline: .75em;
	padding: .65em .65em .8em;
	display: inline-block;
	background: var(--red);
	border: 1px solid var(--red);
	border-radius: .5em;
	transform: translate(0,-.15em);
	transition: .2s var(--easing);
}

.no-touch .u-icon_arrow[href$='.pdf']:hover span:before,
.no-touch .u-button.-button > * *:hover span:before {
	color: var(--red);
	background: var(--white);
}





/* Template Flex */
.u-flex {
	display: flex;
	flex-wrap: wrap;
}

.u-flex.-center {
	justify-content: center;
}

.u-flex.-right {
	justify-content: flex-end;
}

.u-flex.-middle {
	align-items: center;
}

.u-flex.-bottom {
	align-items: flex-end;
}

.u-flex.-reverse {
	flex-direction: row-reverse;
}

.u-flex.-between {
	justify-content: space-between;
}

.u-flex > * {
	margin: 0 20px;
}

.u-flex.-row {
	margin-inline: -20px;
}

.u-flex.-row1 > * { width: calc(100% / 1 - (20px * 2)); }
.u-flex.-row2 > * { width: calc(100% / 2 - (20px * 2)); }
.u-flex.-row3 > * { width: calc(100% / 3 - (20px * 2)); }
.u-flex.-row4 > * { width: calc(100% / 4 - (20px * 2)); }
.u-flex.-row5 > * { width: calc(100% / 5 - (20px * 2)); }
.u-flex.-row6 > * { width: calc(100% / 5 - (20px * 2)); }

.u-flex.-row2_1 > *:nth-child(1) { flex-grow: 1; }
.u-flex.-row2_1 > *:nth-child(n + 1) { width: calc(100% / 3 - (10px * 2)); }

.u-flex.-row3_1 > *:nth-child(1) { flex-grow: 1; }
.u-flex.-row3_1 > *:nth-child(n + 1) { width: calc(100% / 4 - (10px * 2)); }

.u-flex.-row .u-text:first-child {
	margin-top: -.6em;
}

.u-border_radius {
	border-radius: var(--border_radius);
}

/* Template List */
.u-list {
	margin-top: 1.5em;
}

.u-list + * {
	margin-top: 30px;
}

.u-list li {
	line-height: 1.75;
	padding-left: 1.25em;
	position: relative;
}

.u-list li:not(:first-child) {
	margin: .75em 0 0;
}

.u-list li:before {
	content: '';
	width: 7px;
	height: 7px;
	margin: .75em 0 0 2px;
	background: var(--orange);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}

.u-list li i {
	color: var(--blue);
	font-size: 18rem;
	font-weight: 700;
	white-space: nowrap;
	padding: 0 .35em 0 0;
	display: table-cell;
}

.u-list li span {
	display: table-cell;
}

.u-list li ul,
.u-list li ol {
	margin-top: .5em;
	padding-bottom: .5em;
}

.u-list li ul li:not(:first-child),
.u-list li ol li:not(:first-child) {
	margin-top: .5em;
}

.u-list li ul li:before,
.u-list li ol li:before {
	width: 6px;
	height: 6px;
	background: #7A828F;
}

.u-list li ul li i,
.u-list li ol li i {
	color: inherit;
}

.u-list.u-flex.-row2 > li:nth-child(n + 3) {
	margin-top: 15px;
}

.u-list_num {
	display: table
}

.u-list_num li {
	padding-left: 0;
}

.u-list_num li:before {
	display: none;
}

.u-list_note {
	display: table
}

.u-list_note li {
	font-size: 14rem;
	padding-left: 0;
}

.u-list_note li i {
	color: var(--blue);
	font-size: 14rem;
	font-weight: 400;
}

.u-list_note li:before {
	display: none;
}

.u-list--inline li {
	display: inline-block;
}

.u-list--inline li:nth-child(n + 1) {
	margin-right: 1em;
}

/* Template Table */
.u-intoScroll-desc {
	display: none;
}

.u-table_caption {
	font-size: 13rem;
	min-height: 1.75em;
}

.u-table_corner + .u-table_corner {
	margin-top: 60px;
}

.u-table_corner .u-table {
	table-layout: fixed;
	border-top: 1px solid var(--gray_line);
}

.u-table_corner th {
	font-weight: 500;
	line-height: 1.75;
	text-align: left;
	word-wrap: break-word;
	vertical-align: top;
	padding: 1.25em 1em 1.25em 2em;
	background: #F9F3EA;
	border-bottom: 1px solid var(--gray_line);
	position: relative;
}

.u-table_corner td {
	line-height: 1.75;
	vertical-align: middle;
	word-wrap: break-word;
	padding: 1.25em 1em 1.25em 2em;
	border-bottom: 1px solid var(--gray_line);
	border-left: 1px solid var(--gray_line);
	position: relative;
}

.u-table_corner td > * {
	margin-top: 0;
}

.u-table_corner td .u-list li:before {
	margin-top: .7em;
}

.u-table_corner td .u-list li:lang(en):before {
	margin-top: .5em;
}

.u-table_corner td .u-list li i {
	font-size: 16rem;
}

.u-table_head th {
	color: var(--white);
	background: var(--blue_dark);
}

.u-table_head th:not(:first-child) {
	border-left: 1px solid var(--gray_line);
}

.u-table_head th.border-left {
	border-left: 1px solid var(--gray_line);
}

.u-table_corner-important th {
	font-weight: 700;
	background: #E2F0FB;
}

.u-table_corner-important td {
	font-weight: 700;
	background: #E2F0FB;
}

.u-table_corner .border-left-none {
	border-left: 0;
}

.u-table_corner .border-left {
	border-left: 1px solid var(--gray_line) !important;
}

.u-table_corner.-compact th,
.u-table_corner.-compact td {
	font-size: 1.4rem;
	line-height: 1.35;
	padding: .75em .8em .8em .8em;
}

.u-table_corner .u-icon_arrow_basic--after:after {
	vertical-align: -.45em;
	transform-origin: top left;
	transform: scale(.85);
}

.u-table .u-font--rl {
	letter-spacing: .5em;
}

.u-table .u-font--rl {
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	white-space: pre;
	display:inline-block;
}

.u-table_corner .u-align_center th {
	text-align: center;
	padding-right: 1em;
	padding-left: 1em;
}

.u-table_corner .u-align_center td {
	text-align: center;
	padding-right: .5em;
	padding-left: .5em;
}

.u-table_corner th sup {
	font-weight: 400;
}

.u-table_corner .u-icon--pdf:after,
.u-table_corner .u-icon--window:after {
	vertical-align: -.2em;
}

.u-table_corner .u-table small {
	vertical-align: baseline;
}

.u-intoScroll__inner {
	overflow-x: auto;
	overflow-y: visible;
	position: relative;
	-webkit-overflow-scrolling: touch;
}

/* Template Title */
.u-title_page {
	margin-inline: auto;
	min-height: 320px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.u-title_page + * {
	margin-top: 50px;
}

.u-title_page .title {
	width: calc(100% / 5 * 3);
}

.u-title_page .title .u-text {
	font-size: 18rem;
	margin-top: 35px;
	padding-left: .35em;
}

.u-title_page .label .en {
	color: var(--orange);
	font-size: 16rem;
	font-weight: 700;
	letter-spacing: .1em;
	margin: 0 0 0 8px;
	display: block;
}

.u-title_page .label .en:before {
	content: '';
	vertical-align: text-top;
	width: 22px;
	height: 27px;
	margin: 0 14px 0 0;
	display: inline-block;
	background: url("/_assets/images/common/icon_spoon_01.svg") no-repeat center / contain;
}

.u-title_page .label .jp {
	color: var(--black);
	font-size: 46rem;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: .05em;
	white-space: nowrap;
	margin: 10px 0 0;
	display: block;
}

.u-title_page .image {
	width: calc(100% / 5 * 2);
	display: flex;
	justify-content: center;
	align-items: center;
}

.p-about .u-title_page .image img {
	max-width: 200px;
}

.p-instruction .u-title_page .image img {
	max-width: 240px;
	margin-right: 100px;
}

.p-support .u-title_page .image {
	margin: -30px 0;
}

.u-title_hi {
	padding: 0 0 0 50px;
	position: relative;
}

.u-title_hi:after {
	content: '';
	width: 46px;
	height: 46px;
	margin: -.2em 0 0 -10px;
	display: block;
	border: 10px solid var(--red);
	border-radius: 100vmax;
	position: absolute;
	top: 0;
	left: 0;
}

.u-title_hi > * {
	color: var(--black);
	font-size: 28rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: .05em;
}

.u-title_hi + * {
	margin-top: 40px !important;
}

.u-title_mid {
	font-size: 20rem;
	margin-top: 50px;
	padding: 0 0 0 22px;
	position: relative;
}

.u-title_mid + * {
	margin-top: 20px !important;
}

.u-title_mid:before {
	content: '';
	width: 12px;
	height: 12px;
	margin: .65em 0 0;
	display: block;
	background: var(--red);
	border-radius: 100vmax;
	position: absolute;
	top: 0;
	left: 0;
}

.u-title_mid em {
	color: var(--black);
	font-weight: 700;
	line-height: 1.75;
	display: inline-block;
}

.u-title_low {
	margin-top: 30px;
}

.u-title_low + * {
	margin-top: .5em;
}

.u-title_low em {
	color: var(--orange);
	font-size: 16rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: .025em;
}

.u-title_small {
	margin-top: 32px;
	position: relative;
}

/* Template Image */
.u-image figcaption {
	font-size: 14rem;
	line-height: 1.5;
	margin: .4em 0 0;
}

.u-text {
	line-height: 2.25;
	letter-spacing: .025em;
}

.u-text + .u-text {
	margin-top: 1em;
}

.u-align_center {
	text-align: center;
}

.u-align_right {
	text-align: right;
}

.u-align_middle {
	vertical-align: middle !important;
}

.u-corner {
	padding: 70px 0 120px;
	border-radius: 80px 80px 0 0;
	position: relative;
	z-index: 10;
}

.u-corner + * {
	margin-top: 180px;
	
}

.u-corner.-white {
	background: var(--white);
}

.u-corner:after {
	content: '';
	width: 100%;
	aspect-ratio: 682 / 95;
	display: block;
	background: url("/_assets/images/common/bg_01.svg") no-repeat center / 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translate(0,calc(100% - 1px));
}

.u-box {
	padding: 60px;
	border-radius: 30px;
}

.u-box.-white {
	background: var(--white);
}

.u-box_board {
	padding: 20px 60px 60px;
	background: var(--white);
	border-radius: 30px;
	position: relative;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .05);
}

.u-box_board:before,
.u-box_board:after {
	content: '';
	width: 20px;
	height: 54px;
	margin: -20px 0 0;
	background: url("/_assets/images/common/bg_02.svg") no-repeat center / 100% 100%;
	position: absolute;
	top: 0;
}

.u-box_board:before {
	left: 90px;
}

.u-box_board:after {
	right: 90px;
}

.u-box_board.-compact {
	padding-inline: 30px;
}

.u-box_board.-compact:before {
	left: 60px;
}

.u-box_board.-compact:after {
	right: 60px;
}

.u-corner.-white .u-box_board {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}

.u-flex .u-box_board {
	height: 100%;
}

.u-card a {
	color: var(--black);
	text-decoration: none;
}

.u-card_inner.u-flex {
	margin-inline: -20px;
}

.u-card .title {
	font-size: 20rem;
	line-height: 1.35;
	letter-spacing: .1em;
	margin: 20px 0 0;
	padding-inline: 20px;
	position: relative;
}

.u-card .title:after {
	content: '';
	width: 26px;
	height: 26px;
	background: url("/_assets/images/common/arrow_01_red.svg") no-repeat center / 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.u-card .u-text {
	color: var(--gray_dark);
	margin: 5px 0 0;
}

.u-card .lists {
	margin-top: 20px;
}

.u-card .lists .title {
	font-size: 16rem;
	line-height: 1.5;
	margin-top: 0;
	padding: 0;
}

.u-card .lists .title:after {
	display: none;
}

.u-card .lists > * {
	border-bottom: 1px solid var(--gray_line);
}

.u-card .lists > *:first-child {
	border-top: 1px solid var(--gray_line);
}

.u-card .lists a {
	padding: 15px 25px;
	display: block;
}

.no-touch .u-card .lists a:hover {
	background: rgba(255,255,255,.75);
}



/*news*/
.u-news_list {
	color: var(--black);
}

.u-news_list .item:not(:last-of-type) {
	margin: 0 0 20px;
}

.u-news_list .item a {
	color: var(--black);
	text-decoration: none;
	padding: 20px 70px 20px 40px;
	display: block;
	background: var(--bgcolor);
	border-radius: 30px 30px 0 30px;
	position: relative;
}

.no-touch .u-news_list .item a:hover {
	filter: contrast(95%);
}

.u-news_list .item a:after {
	content: '';
	width: 26px;
	height: 26px;
	display: block;
	background: url(/_assets/images/common/arrow_01_red.svg) no-repeat center / 100%;
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translate(0, -50%);
	z-index: 10;
}

.no-touch .u-news_list .item a:hover:after {
	margin-right: -5px;
}

.u-news_list .item a.link_none {
	pointer-events: none;
}

.u-news_list .item a.link_none:after {
	display: none;
}

.u-news_list .data {
	width: 100%;
	display: flex;
	align-items: center;
}

.u-news_list .data + * {
	margin-top: 10px;
}

.u-news_list time {
	width: 9.5em;
	padding: 0 0 .3em;
}

.u-news_list time span {
	color: var(--gray_dark);
	font-size: 22rem;
	font-weight: 700;
	letter-spacing: .05em
}

.u-news_list time span:after {
	content: '';
	font-size: 13rem;
	font-weight: 500;
	margin: 0 0 0 .1em;
	display: inline-block;
}

.u-news_list time span.y:after {
	content: '年';
}

.u-news_list time span.m:after {
	content: '月';
}

.u-news_list time span.d:after {
	content: '日';
}

.u-news_list .category {
	color: var(--white);
	font-size: 12rem;
	width: 140px;
	min-height: 30px;
	padding: 0 0 .2em;
	background: var(--gray);
	border-radius: 100vmax;
	display: flex;
	justify-content: center;
	align-items: center;
}

.u-news_list .category.-red {
	background-color: var(--red);
}

.u-news_list .category.-orange {
	background-color: var(--orange);
}

.u-news_list .category.-green {
	background-color: var(--green);
}

.u-news_list .u-text {
	font-size: 18rem;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: .1em;
	margin-top: .75em;
}

.u-news_list .no_result_message {
	text-align: center;
}


/*person_card*/
.l-person_card {
	margin-inline: -10px;
	display: flex;
}

.l-person_card + * {
	margin-top: 20px;
	border-top: 1px solid var(--gray_line);
}

.l-person_card .image {
	width: 123px;
}

.l-person_card .image img {
	border-radius: 100vmax;
}

.l-person_card .data {
	width: calc(100% - 123px);
	padding: 0 0 0 20px;
	flex-grow: 1;
}

.l-person_card .label {
	color: var(--blue);
	font-size: 15rem;
	font-weight: 700;
	letter-spacing: .05em;
}

.l-person_card .title {
	color: var(--black);
	line-height: 1.5;
	margin: 5px 0 0;
}

.l-person_card .name {
	font-size: 14rem;
	font-weight: 700;
	line-height: 1.5;
	margin: 8px 0 0;
}

.l-person_card .name > * {
	vertical-align: baseline;
}

.l-person_card .name b {
	color: var(--black);
	font-size: 24rem;
	letter-spacing: .1em;
	display: inline-block;
}

.l-person_card .name small {
	font-size: 14rem;
	font-weight: 400;
	line-height: 1.5;
	margin-top: 10px;
	display: block;
}

.js-map_container .gm-style-mtc-bbw button,
.js-map_container .gm-style-mtc-bbw label {
	font-size: 14rem !important;
}

/*anchor-menu*/
.u-anchor_menu ul {
	display: flex;
	flex-wrap: wrap;
}

.u-anchor_menu ul > * {
	margin: 15px 40px 0 0;
}

.u-anchor_menu a {
	color: var(--black);
}

.no-touch .u-anchor_menu a:hover {
	color: var(--red);
}

.u-anchor_menu a:before {
	background-image: url("/_assets/images/common/arrow_01_red.svg");
}

.u-anchor_menu button {
	display: none;
}

/*on imagezoom*/
.u-on_imagezoom .u-on_imagezoom_inner {
	position: relative;
	overflow: hidden;
	transform: translateZ(0);
}

.no-touch .u-on_imagezoom:hover .u-on_imagezoom_inner:after {
	opacity: 1;
}

.u-on_imagezoom .u-on_imagezoom_inner img {
	width: 100%;
	height: 100%;
/*	aspect-ratio: 49 / 24;*/
	object-fit: cover;
	object-position: center;
	transition: scale .6s ease;
}

.no-touch .u-on_imagezoom:hover .u-on_imagezoom_inner img {
	scale: 1.05;
	opacity: 1;
}

.u-img_radius {
	border-radius: 30px 30px 0 30px;
}

.g-breadcrumb {
	width: 100%;
	margin: calc(var(--header_h) + 50px) 0 0;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 30;
}

.g-breadcrumb_items {
	margin-inline: 120px;
	display: flex;
	flex-wrap: wrap;
	transition: .3s var(--easing);
}

.g-breadcrumb_item {
	font-size: 14rem;
	margin: 5px 0 0;
	position: relative;
}

.g-breadcrumb_item:not(:last-of-type) {
	padding: 0 30px 0 0;
}

.g-breadcrumb_item:not(:last-of-type):after {
	content: '';
	width: 5px;
	height: 8px;
	margin: .35em 0 0;
	display: block;
	background: url("/_assets/images/common/arrow_02_gray.svg") no-repeat center / 100%;
	position: absolute;
	top: 0;
	right: 1em;
}

.g-breadcrumb_item a {
	color: var(--gray);
	text-decoration: none;
}

.no-touch .g-breadcrumb_item a:hover {
	color: var(--orange);
	text-decoration: underline;
}

.g-breadcrumb_item:last-child a {
	color: var(--black);
	pointer-events: none;
}

.g-wrapper {
	padding: 0;
	position: relative;
	overflow: hidden;
}

.g-wrapper:before {
	content: '';
	width: 100%;
	height: 100px;
	background: linear-gradient(to bottom, rgba(252,249,245,1) 0%, rgba(252,249,245,0) 100%);
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	backdrop-filter: blur(5px);
	opacity: 0;
	transition: .6s linear;
}

.active_scroll .g-wrapper:before {
	opacity: 1;
}

.g-wrapper:after {
	content: url("/_assets/images/common/bg_05.svg");
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%,35%);
}

.g-container {
	padding: calc(var(--header_h) + 100px) 0 200px;
	position: relative;
	z-index: 10;
}

.g-container:before {
	content: url("/_assets/images/common/bg_03.svg");
	margin-top: -300px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(15%,0);
}

.g-container:after {
	content: url("/_assets/images/common/bg_04.svg");
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(15%,35%);
}

.g-main {
	min-height: calc(100vh / 5 * 4);
	position: relative;
	z-index: 10;
}

/*g-navi*/
.g-navi {
	width: calc(100% - 90px);
}

.g-navi_menu {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.g-navi_menu_items {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.g-navi_menu_item {
	margin: 4px 0 4px 20px;
}

.g-navi_menu_item a {
	color: var(--black);
	text-decoration: none;
	position: relative;
}

.g-navi_menu_item.active a,
.g-navi_menu_item a:hover,
.g-navi_menu_item .active_focus {
	color: var(--orange);
}

.g-navi_menu_item a.arrow {
	padding: 0 16px 0 0;
}

.g-navi_menu_item a.arrow:after {
	content: '';
	width: 11px;
	height: 6px;
	display: block;
	background: url("/_assets/images/common/arrow_02@gray_down.svg") no-repeat center / 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0,-50%);
}

.g-navi_menu-item button:hover b {
	color: #0066CC;
}

.g-navi_menu_item.-about br {
	display: none;
}

.g-navi_menu_child {
	padding: 50px 30px 30px 25px;
	position: absolute;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transform: translate(0,-3px);
	transition: 
		opacity .2s,
		transform .2s
	;
}

.g-header .g-navi_menu_item.active .g-navi_menu_child {
	opacity: 1;
	visibility: visible;
	transform: translate(0,0);
}

.g-navi_menu_child:after {
	content: '';
	width: 100%;
	height: calc(100% - 25px);
	background: var(--white);
	border-radius: 30px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
	position: absolute;
	bottom: 0;
	left: 0;
}

.g-navi_menu_child li {
	position: relative;
	z-index: 10;
}

.g-navi_menu_child li:nth-child(n + 2) {
	margin-top: 1em;
}

.g-navi_menu_child a {
	color: var(--black) !important;
	font-size: 13rem !important;
	letter-spacing: 0;
	padding: 0 0 0 1em;
	position: relative;
}

.g-navi_menu_child a:hover {
	color: var(--orange) !important;
}

.g-navi_menu_child a:before {
	content: '';
	width: .65em;
	height: .65em;
	background: url("/_assets/images/common/arrow_04_orange.svg") no-repeat center / contain;
	position: absolute;
	top: .5em;
	left: 0;
}


/*header*/
.g-mobile_menu_button {
	display: none;
}

.g-header_mobile_menu {
	display: none;
}

.g-header {
	width: calc(100% - (60px * 2));
	height: var(--header_h);
	margin: 30px 0 0;
	padding-inline: 60px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--white);
	border-radius: 100vmax;
	box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
	position: fixed;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 300;
	transition: .3s var(--easing);
}

.g-header_logo {
	width: 90px;
	transition: .3s var(--easing);
}

.g-header_logo:lang(en) {
	width: 145px;
	margin-top: 2px;
}

.g-header_logo a:hover img {
	opacity: .5;
}

.g-header_search {
	width: 250px;
}

.gsc-control-cse {
	padding: 0 !important;
}

.gsc-control-cse {
	background-color : transparent !important;
	border: 0 !important;
}

form.gsc-search-box,
table.gsc-search-box {
	margin-bottom: 0 !important;
}

table.gsc-search-box td.gsc-input {
	padding-right: 0 !important;
}

.gsc-search-button {
	display: none;
}

.gsc-clear-button {
	display: none;
}

.gsc-input-box {
	border: 0 !important;
	background-color: #f1f1f1 !important;
	border-radius: 100vmax !important;
	position: relative;
}

/*
.gsc-input-box:before {
	content: '';
	width: 18px;
	height: 18px;
	margin: 0 0 0 10px;
	display: block;
	background: url("/_assets/images/common/icon_search_01_orange.svg") no-repeat center / 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
*/

.gsib_a {
	padding: 7px 5px 7px 35px !important;
}

.gsc-input {
	font-size: 16rem;
	font-weight: 500;
	font-family: var(--font_family);
	background-color: transparent !important;
}




/*header only*/
.g-header .g-navi_menu_items {
	width: calc(100% - 160px);
	padding: 0 20px 0 0;
	justify-content: flex-end;
}

.g-header .g-navi_menu_item a {
	font-size: 15rem;
}

.g-header .g-navi_menu_item .u-icon_arrow:before {
	background-image: url("/_assets/images/common/arrow_01_orange.svg");
}

.g-header .g-navi_menu_item.-top {
	display: none;
}


/*footer*/
.g-footer {
	position: relative;
}

.g-footer .sticker {
	text-align: center;
	width: 300px;
	margin: -50px 0 0;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	z-index: 30;
}

.g-footer .sticker:after {
	content: '';
	display: inline-block;
	width: 100%;
	height: 150px;
	margin: -40px 0 0;
	border-radius: 50% / 100% 100% 0 0;
	background: var(--white);
	position: absolute;
	top: 0;
	left: 0;
}

.g-footer .sticker img {
	width: 140px;
	position: relative;
	z-index: 10;
}

.g-footer .menu {
	margin: 0 0 -80px;
	padding: 100px 0 100px;
	background: var(--white);
	border-radius: 80px;
	position: relative;
	z-index: 20;
}

.g-footer .menu .illust {
	width: 110px;
	margin: 110px -520px 0 0;
	position: absolute;
	top: 0;
	right: 50%;
	z-index: 10;
	animation: a-fish_float 8s linear infinite;
}

@keyframes a-fish_float {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}
	25% {
		transform: translate(10px, 5px) rotate(3deg);
	}
	50% {
		transform: translate(5px, 15px) rotate(-3deg);
	}
	75% {
		transform: translate(-5px, 10px) rotate(3deg);
	}
	100% {
		transform: translate(0, 0) rotate(0deg);
	}
}

.g-footer .menu .illust img {
	animation: a-fish_rotate 20s linear infinite;
}

@keyframes a-fish_rotate {
	0% {
		transform: scale(1,1);
	}
	49% {
		transform: scale(1,1);
	}
	50% {
		transform: scale(-1,1);
	}
	99% {
		transform: scale(-1,1);
	}
	100% {
		transform: scale(1,1);
	}
}

.g-footer .menu .note {
	font-size: 12rem;
	letter-spacing: .05em;
	text-align: center;
	width: 100%;
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translate(-50%,0);
	opacity: .7;
}

.g-footer .copyright {
	color: var(--white);
	font-size: 15rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-align: center;
	padding: calc(80px + 40px) 0 40px;
	background: var(--red);
}

/*footer only*/
.g-footer .g-navi_menu_items {
	text-align: center;
	padding-inline: 100px;
	padding-bottom: 20px;
	display: block;
	border-bottom: 1px solid var(--gray_line);
}

.g-footer .g-navi_menu_item {
	margin: 0 20px 30px;
	display: inline-block;
}

.g-footer .g-navi_menu_item a {
	font-size: 17rem;
	font-weight: 700;
}

.g-footer .g-address {
	margin: 30px 0 0;
	display: flex;
	align-items: flex-end;
}

.g-address .logo {
	width: 130px;
	padding: 0 30px 0 0;
}

.g-address .name {
	color: var(--black);
	letter-spacing: .05em;
}

.g-address .name em {
	font-size: 16rem;
	font-weight: 700;
	display: block;
}

.g-address .name em:before {
	content: attr(data-name);
	font-size: 11rem;
	font-weight: 500;
	margin: 0 0 1em 0;
	display: block;
}

.g-address .name span {
	font-size: 12rem;
	font-weight: 500;
	margin: 1.25em 0 0;
	display: block;
}

.g-address .tel {
	color: var(--black);
	display: flex;
	justify-content: flex-end;
	flex-grow: 1;
}

.g-address .tel > * {
	margin: 0 0 0 30px;
}

.g-address .tel a {
	color: var(--black);
	text-decoration: none;
}

.no-touch .g-address .tel a:hover {
	color: var(--orange);
	text-decoration: underline;
}

.g-address .tel span {
	font-size: 20rem;
	font-weight: 700;
}

.g-address .tel b {
	font-size: 30rem;
	font-weight: 700;
	position: relative;
}

.g-address .tel b:before {
	content: attr(data-note);
	font-size: 11rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: .075em;
	white-space: nowrap;
	width: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(0,-.65em);
}

/*pagetop*/
.g-pagetop {
	padding: 0 0 40px;
	right: 40px;
	z-index: 90;
}

.g-pagetop.stop {
	transform: translate(0,-100%);
}

.g-pagetop a {
	text-decoration: none;
	width: 60px;
	display: block;
	position: relative;
	opacity: 0;
}

.g-pagetop a:before {
	content: 'PAGETOP';
	color: var(--red);
	font-size: 14rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	margin: 0 0 10px;
	display: block;
}

.g-pagetop.active a {
	opacity: 1;
}

/*modal*/
.js-modal + .js-modal_element {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	scale: 0;
}

.u-modal {
	margin-top: var(--header_h);
	position: fixed;
	inset: 0;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease;
}

.active_scroll .u-modal {
	margin-top: 80px;
}

.active_modal {
	overflow-y: hidden;
}

.active_modal .u-cover {
	opacity: 1;
	visibility: visible;
}

.active_modal .u-modal {
	opacity: 1;
	visibility: visible;
}

.u-modal_inner {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.u-modal_campus {
	max-width: 1200px;
	max-height: calc(100vh - (60px * 2 + var(--header_h)));
	margin-inline: auto;
	padding-bottom: 30px;
	background: var(--white);
	border-radius: 6px;
	position: relative;
	overflow-y: auto;
	overflow-x: hidden;
	transition: .3s ease;
}

.active_scroll .u-modal_campus {
	max-height: calc(100dvh - (40px * 2 + 80px));
}

.u-video_stage {
	position: relative;
}

.u-video_stage > video {
	width: 100%;
	aspect-ratio: 16 / 9;
}

/*video*/
.p-video .g-header,
.p-video .g-footer,
.p-video .g-pagetop {
	display: none;
}

.p-video {
	height: 100vh;
}

.p-video .g-wrapper {
	height: 100vh;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--black);
}

.p-video .u-video_stage {
	padding: 56.25% 0 0;
	position: relative;
}

.p-video .u-video_stage iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}



.u-modal_stage {
	padding-top: 80px;
	padding-bottom: 40px;
}

.u-modal_button_close {
	width: 100%;
	position: absolute;
	bottom: 30px;
	left: 0;
}

.u-modal_button_close > * {
	color: var(--white) !important;
	font-size: 1.7rem;
	min-width: 200px;
	min-height: 60px;
	border-color: var(--white);
}

.u-modal_button_close > *:hover {
	background: rgba(0,0,0,.1);
}

.u-modal_button_close > *:after {
/*	content: url("/_assets/img/common/icon_cross_01@white.svg");*/
	width: 13px;
}

.u-modal_button_close > *:hover:after {
	right: 20px;
	transform: translate(0,-50%) rotate(90deg);
}

.u-modal .close_icon {
	color: transparent;
	font-size: 0;
	width: 22px;
	height: 22px;
	margin: 26px 0 0 0;
	border: 1px solid var(--blue);
	background: var(--white);
	border-radius: 100vmax;
	position: absolute;
	top: 0;
	left: calc(50% + (var(--max_w) / 2) + 74px);
	transform: translate(-100%,0);
	cursor: pointer;
	transition: .3s ease;
	z-index: 30;
}

.u-modal .close_icon:before,
.u-modal .close_icon:after {
	content: '';
	width: 50%;
	height: 1px;
	display: block;
	background: var(--blue);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}

.u-modal .close_icon:after {
	transform: translate(-50%,-50%) rotate(135deg);
}

.u-modal .close_icon:hover {
	background: var(--blue);
	transform: translate(-100%,0) scale(1.35);
}

.u-modal .close_icon:hover:before,
.u-modal .close_icon:hover:after {
	background: var(--white);
}

.u-modal .close_text {
	text-align: center;
}

.u-modal .close_text button {
	font-size: 16rem;
	text-decoration: none;
	position: relative;
}

.u-modal .close_text button i {
	content: '';
	vertical-align: bottom;
	width: 22px;
	height: 22px;
	margin: 0 5px 0 0;
	display: inline-block;
	border: 1px solid var(--blue);
	background: var(--white);
	border-radius: 100vmax;
	transition: .3s ease;
	z-index: 10;
	position: relative;
}

.u-modal .close_text button i:before,
.u-modal .close_text button i:after {
	content: '';
	width: 50%;
	height: 1px;
	display: block;
	background: var(--blue);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}

.u-modal .close_text button i:after {
	transform: translate(-50%,-50%) rotate(135deg);
}

.u-modal .close_text button:hover i {
	background: var(--blue);
	transform-origin: center;
}

.u-modal .close_text button:hover i:before,
.u-modal .close_text button:hover i:after {
	background: var(--white);
}

.u-width_100 { width: 100%; }
.u-width_95 { width: 95%; }
.u-width_90 { width: 90%; }
.u-width_85 { width: 85%; }
.u-width_80 { width: 80%; }
.u-width_75 { width: 75%; }
.u-width_70 { width: 70%; }
.u-width_65 { width: 65%; }
.u-width_60 { width: 60%; }
.u-width_55 { width: 55%; }
.u-width_50 { width: 50%; }
.u-width_45 { width: 45%; }
.u-width_40 { width: 40%; }
.u-width_35 { width: 35%; }
.u-width_40 { width: 40%; }
.u-width_30 { width: 30%; }
.u-width_25 { width: 25%; }
.u-width_20 { width: 20%; }
.u-width_15 { width: 15%; }
.u-width_10 { width: 10%; }

.u-mgt_125 { margin-top: 125px !important; }
.u-mgt_120 { margin-top: 120px !important; }
.u-mgt_115 { margin-top: 110px !important; }
.u-mgt_110 { margin-top: 110px !important; }
.u-mgt_105 { margin-top: 100px !important; }
.u-mgt_100 { margin-top: 100px !important; }
.u-mgt_95 { margin-top: 95px !important; }
.u-mgt_90 { margin-top: 90px !important; }
.u-mgt_85 { margin-top: 85px !important; }
.u-mgt_80 { margin-top: 80px !important; }
.u-mgt_75 { margin-top: 75px !important; }
.u-mgt_70 { margin-top: 70px !important; }
.u-mgt_65 { margin-top: 65px !important; }
.u-mgt_60 { margin-top: 60px !important; }
.u-mgt_55 { margin-top: 55px !important; }
.u-mgt_50 { margin-top: 50px !important; }
.u-mgt_45 { margin-top: 45px !important; }
.u-mgt_40 { margin-top: 40px !important; }
.u-mgt_35 { margin-top: 35px !important; }
.u-mgt_30 { margin-top: 30px !important; }
.u-mgt_25 { margin-top: 25px !important; }
.u-mgt_20 { margin-top: 20px !important; }
.u-mgt_15 { margin-top: 15px !important; }
.u-mgt_10 { margin-top: 10px !important; }
.u-mgt_5 { margin-top: 5px !important; }
.u-mgt_0 { margin-top: 0 !important; }
.u-mgt_-5 { margin-top: -5px !important; }
.u-mgt_-10 { margin-top: -10px !important; }
.u-mgt_-20 { margin-top: -20px !important; }
.u-mgt_-30 { margin-top: -30px !important; }
.u-mgt_-40 { margin-top: -40px !important; }
.u-mgt_-50 { margin-top: -50px !important; }
.u-mgt_-60 { margin-top: -60px !important; }
.u-mgt_-70 { margin-top: -70px !important; }

.u-color_black {
	color: var(--black);
}

.u-color_blue {
	color: var(--blue);
}

.u-color_orange {
	color: var(--orange);
}

.u-font_8 { font-size: 8rem !important; }
.u-font_9 { font-size: 9rem !important; }
.u-font_10 { font-size: 10rem !important; }
.u-font_11 { font-size: 11rem !important; }
.u-font_12 { font-size: 12rem !important; }
.u-font_13 { font-size: 13rem !important; }
.u-font_14 { font-size: 14rem !important; }
.u-font_15 { font-size: 15rem !important; }
.u-font_16 { font-size: 16rem !important; }
.u-font_17 { font-size: 17rem !important; }
.u-font_18 { font-size: 18rem !important; }
.u-font_19 { font-size: 19rem !important; }
.u-font_20 { font-size: 20rem !important; }
.u-font_21 { font-size: 21rem !important; }
.u-font_22 { font-size: 22rem !important; }
.u-font_23 { font-size: 23rem !important; }
.u-font_24 { font-size: 24rem !important; }
.u-font_25 { font-size: 25rem !important; }
.u-font_26 { font-size: 26rem !important; }
.u-font_27 { font-size: 27rem !important; }
.u-font_28 { font-size: 28rem !important; }
.u-font_29 { font-size: 29rem !important; }
.u-font_30 { font-size: 30rem !important; }
