/********************************
* インナー
********************************/

:root {
	--padding-pc: 3.3333%;
	--padding-pc-left: calc(48 / 1170 * 100%);
	--padding-pc-right: calc(120 / 1170 * 100%);
	--padding-sp: calc(20 / 375 * 100%);
}

/********************************
* フォント
********************************/

:root {
	--font-noto-sans-jp: "Noto Sans JP", sans-serif;
	--font-mulish: "Mulish", sans-serif;
}

/********************************
* カラー
********************************/

:root {
	--color-base: var(--color-gray);
	--color-background: var(--color-white);
	--color-white: #FDFDFD;
	--color-navy: #04034A;
	--color-gray: #333;
	--color-light-gray: #ccc;
	--color-dark-blue: #1212B2;
	--color-gradient-mv: linear-gradient(90deg, rgba(255, 255, 255, 0.80) 79.69%, rgba(255, 255, 255, 0.00) 100%);
	--color-visited: #800080;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	background-color: #FDFDFD;
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
	line-height: 1.5;
}

/* link */

/* ============================================ */

a {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.5;
}

/* img */

/* ============================================ */

img {
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
	width: 100%;
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */

/* ============================================ */

*,
::before,
::after {
	border-style: solid;
	border-width: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* Document */

/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
	-webkit-text-size-adjust: 100%; /* 2 */
	-webkit-tap-highlight-color: transparent; /* 3*/
	line-height: 1.15; /* 1 */
}

/* Sections */

/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
	display: block;
}

/* Vertical rhythm */

/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
	margin: 0;
}

/* Headings */

/* ============================================ */

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

/* Lists (enumeration) */

/* ============================================ */

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

/* Lists (definition) */

/* ============================================ */

dt {
	font-weight: bold;
}

dd {
	margin-left: 0;
}

/* Grouping content */

/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	border-top-width: 1px;
	-webkit-box-sizing: content-box;
	        box-sizing: content-box; /* 1 */
	clear: both;
	color: inherit;
	height: 0; /* 1 */
	margin: 0;
	overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace; /* 1 */
	font-size: inherit; /* 2 */
}

address {
	font-style: inherit;
}

/* Text-level semantics */

/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Replaced content */

/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

svg,
img,
embed,
object,
iframe {
	vertical-align: bottom;
}

/* Forms */

/* ============================================ */

/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */

button,
input,
optgroup,
select,
textarea {
	-webkit-appearance: none; /* 1 */
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border-radius: 0;
	color: inherit;
	font: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
	text-transform: inherit; /* 2 */
	vertical-align: middle;
}

/**
 * Correct cursors for clickable elements.
 */

button,
[type=button],
[type=reset],
[type=submit] {
	cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
	cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */

:-moz-focusring {
	outline: auto;
}

select:disabled {
	opacity: inherit;
}

/**
 * Remove padding
 */

option {
	padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
	margin: 0;
	min-width: 0;
	padding: 0;
}

legend {
	padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
	overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

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

/**
 * Correct the outline style in Safari.
 */

[type=search] {
	outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

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

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */

[type=number] {
	-moz-appearance: textfield;
}

/**
 * Clickable labels
 */

label[for] {
	cursor: pointer;
}

/* Interactive */

/* ============================================ */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}

/*
 * Remove outline for editable content.
 */

[contenteditable]:focus {
	outline: auto;
}

/* Tables */

/* ============================================ */

/**
1. Correct table border color inheritance in all Chrome and Safari.
*/

table {
	border-collapse: collapse;
	border-color: inherit; /* 1 */
}

caption {
	text-align: left;
}

td,
th {
	padding: 0;
	vertical-align: top;
}

th {
	font-weight: bold;
	text-align: left;
}

/* フェード設定 */

/* ============================================ */

.splide__container {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	position: relative;
}

.splide__list {
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0;
	pointer-events: none;
}

.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0;
	pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	position: relative;
	visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	-webkit-animation: splide-loading 1s linear infinite;
	        animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
}

.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: inline;
}

.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	    user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
	margin: 0 !important;
	opacity: 0;
	z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb > .splide__list {
	display: block;
}

.splide__arrow {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #ccc;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 2em;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	opacity: 0.7;
	padding: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 2em;
	z-index: 1;
}

.splide__arrow svg {
	fill: #000;
	height: 1.2em;
	width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
	opacity: 0.9;
}

.splide__arrow:disabled {
	opacity: 0.3;
}

.splide__arrow:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__arrow--prev {
	left: 1em;
}

.splide__arrow--prev svg {
	-webkit-transform: scaleX(-1);
	        transform: scaleX(-1);
}

.splide__arrow--next {
	right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__pagination {
	bottom: 0.5em;
	left: 0;
	padding: 0 1em;
	position: absolute;
	right: 0;
	z-index: 1;
}

.splide__pagination__page {
	background: #ccc;
	border: 0;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 3px;
	opacity: 0.7;
	padding: 0;
	position: relative;
	-webkit-transition: -webkit-transform 0.2s linear;
	transition: -webkit-transform 0.2s linear;
	transition: transform 0.2s linear;
	transition: transform 0.2s linear, -webkit-transform 0.2s linear;
	width: 8px;
}

.splide__pagination__page.is-active {
	background: #fff;
	-webkit-transform: scale(1.4);
	        transform: scale(1.4);
	z-index: 1;
}

.splide__pagination__page:hover {
	cursor: pointer;
	opacity: 0.9;
}

.splide__pagination__page:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__progress__bar {
	background: #ccc;
	height: 3px;
}

.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
	outline: 0;
}

.splide__toggle {
	cursor: pointer;
}

.splide__toggle:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
	border: 3px solid transparent;
	cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
	border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
	left: auto;
	right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
	-webkit-transform: scaleX(1);
	        transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
	left: 1em;
	right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
	-webkit-transform: scaleX(-1);
	        transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
	left: 50%;
	-webkit-transform: translate(-50%);
	        transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
	top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
	-webkit-transform: rotate(-90deg);
	        transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
	bottom: 1em;
	top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
	-webkit-transform: rotate(90deg);
	        transform: rotate(90deg);
}

.splide__pagination--ttb {
	bottom: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	left: auto;
	padding: 1em 0;
	right: 0.5em;
	top: 0;
}

.l-footer {
	margin-top: 10rem;
}

.l-header {
	left: 0;
	position: fixed;
	top: 0;
	z-index: 50;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: calc(1200px + 6.6666%);
	padding-left: 0;
	padding-left: calc(48 / 1170 * 100%);
	padding-left: var(--padding-pc-left);
	padding-right: calc(120 / 1170 * 100%);
	padding-right: var(--padding-pc-right);
	width: 100%;
}

.l-scroll-top {
	bottom: 0.625rem;
	position: fixed;
	right: 0.625rem;
}

.l-section {
	margin-top: 7.5rem;
}

.l-section._single {
	margin-top: 5rem;
}

.c-accordion {
	position: relative;
}

.c-accordion__item {
	position: relative;
}

.c-accordion__title {
	text-transform: uppercase;
}

summary {
	list-style: none;
}

summary::-webkit-details-marker {
	display: none;
}

summary::marker {
	display: none;
}

.c-accordion__content {
	overflow: hidden;
	-webkit-transform-origin: top;
	        transform-origin: top;
}

.c-accordion {
	display: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.c-accordion.is-open {
	display: block;
}

.c-accordion {
	border: 0.0625rem solid #04034A;
	border: 0.0625rem solid var(--color-navy);
	max-height: 0;
	overflow: hidden;
	padding-inline: 1rem;
	-webkit-transition: max-height 0.3s ease;
	transition: max-height 0.3s ease;
}

.c-accordion.is-open {
	min-height: -moz-fit-content;
	min-height: -webkit-fit-content;
	min-height: fit-content;
	padding: 1rem;
}

.c-accordion__toggle {
	border-bottom: 0.0625rem solid #04034A;
	border-bottom: 0.0625rem solid var(--color-navy);
	color: #04034A;
	color: var(--color-navy);
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1;
	margin-inline: auto;
	margin-top: 1rem;
	text-decoration: none;
	text-transform: uppercase;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-accordion__content {
	color: var(--gray);
	font-size: 1rem;
	font-weight: 500;
}

.c-box {
	border: 0.0625rem solid #04034A;
	border: 0.0625rem solid var(--color-navy);
	display: inline-block;
	padding: 0 1.5rem 1.5rem;
}

.c-box__heading {
	background: #FDFDFD;
	background: var(--color-white);
	color: var(--gray);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	margin-inline: auto;
	margin-top: -1.0625rem;
	padding-inline: 0.5rem;
	position: relative;
	text-align: center;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-box__heading::before {
	background: #04034A;
	background: var(--color-navy);
	content: "";
	height: 0.5625rem;
	left: 0;
	position: absolute;
	top: 56%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 0.0625rem;
}

.c-box__heading::after {
	background: #04034A;
	background: var(--color-navy);
	content: "";
	height: 0.5625rem;
	position: absolute;
	right: 0;
	top: 56%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 0.0625rem;
}

.c-box__lists {
	grid-gap: 0.75rem;
	display: -ms-grid;
	display: grid;
	gap: 0.75rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	margin-top: 1.625rem;
}

.c-box__list._accent strong {
	border-bottom: 0.0625rem solid #333;
	border-bottom: 0.0625rem solid var(--color-base);
	font-weight: 700;
}

.c-box__headingSmall {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
}

.c-box__list {
	color: var(--gray);
	font-size: 1rem;
	font-weight: 500;
	padding-left: 0.75rem;
	position: relative;
}

.c-box__list::before {
	background: #04034A;
	background: var(--color-navy);
	content: "";
	height: 0.5rem;
	left: 0;
	position: absolute;
	top: 0.5625rem;
	width: 0.5rem;
}

.c-box._2col .c-box__heading::before,
.c-box._2col .c-box__heading::after {
	top: 28%;
}

/*=====================
 c-button01
=====================*/

.c-button01 {
	border: 0.0625rem solid #04034A;
	border: 0.0625rem solid var(--color-navy);
	display: inline-block;
	padding: 0.25rem;
	width: 11.8125rem;
}

.c-button01__content {
	background: #04034A;
	background: var(--color-navy);
	padding-block: 0.5rem;
}

.c-button01__text {
	color: #FDFDFD;
	color: var(--color-white);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1;
	text-align: center;
}

.c-button01__number {
	color: #FDFDFD;
	color: var(--color-white);
	font-family: "Mulish", sans-serif;
	font-family: var(--font-mulish);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	margin-inline: auto;
	margin-top: 0.5rem;
	padding-left: 1.25rem;
	position: relative;
	text-align: center;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-button01__number::before {
	-webkit-mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-image: url(../images/common/tel-icon.svg);
	background: #FDFDFD;
	background: var(--color-white);
	content: "";
	height: 1rem;
	left: 0;
	mask-image: url(../images/common/tel-icon.svg);
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 1rem;
}

/*=====================
 c-button01 _large
=====================*/

.c-button01._large {
	width: 15.5rem;
}

.c-button01._large .c-button01__text {
	font-size: 1rem;
}

.c-button01._large .c-button01__number {
	font-size: 1.25rem;
}

/*=====================
 c-button01 _en
 =====================*/

.c-button01._en .c-button01__text {
	font-size: 0.75rem;
}

/*=====================
  c-button01 _language
=====================*/

.c-button01._language {
	height: 3.875rem;
}

.c-button01._language .c-button01__content {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.c-button01._language .c-button01__text {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 0.875rem;
	height: 100%;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

/*=====================
 c-button02
=====================*/

.c-button02 {
	border: 0.0625rem solid #04034A;
	border: 0.0625rem solid var(--color-navy);
	display: inline-block;
	padding: 0.1875rem;
	position: relative;
	width: 100%;
}

.c-button02::before {
	background-image: url(../images/common/arrow-icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 0.375rem;
	position: absolute;
	right: -1.4375rem;
	top: 44%;
	width: 3.125rem;
}

.c-button02__text {
	color: #04034A;
	color: var(--color-navy);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1;
	padding-block: 1rem;
	padding-right: 1rem;
	text-align: center;
}

/*=====================
c-button02 _reverse
=====================*/

.c-button02._reverse::before {
	left: -1.6875rem;
	right: auto;
	-webkit-transform: scaleX(-1);
	        transform: scaleX(-1);
}

.c-button02._reverse .c-button02__text {
	padding-inline: 1rem 0;
}

/*=====================
c-button02 _border
=====================*/

.c-button02._border .c-button02__text {
	border: 0.0625rem solid #04034A;
	border: 0.0625rem solid var(--color-navy);
}

/*=====================
 c-button02 _u-pr-16
=====================*/

.c-button02._u-pr-16 .c-button02__text {
	display: block;
	padding-right: 1rem;
}

/*=====================
 c-button02 _navy
=====================*/

.c-button02._navy {
	background: #04034A;
	background: var(--color-navy);
}

.c-button02._navy::before {
	background-image: url(../images/common/arrow-icon03.svg);
	right: -1.9375rem;
}

.c-button02._navy .c-button02__text {
	background: #04034A;
	background: var(--color-navy);
	color: #FDFDFD;
	color: var(--color-white);
}

/*=====================
 c-button02 _small
=====================*/

.c-button02._small::before {
	background-image: url(../images/common/arrow-small-icon.svg);
	height: 0.375rem;
	right: -1.75rem;
	top: 44%;
	width: 2.625rem;
}

.c-button02._small .c-button02__text {
	padding-block: 0.6875rem;
	padding-right: 0;
}

/*=====================
 c-button02 _capitalize
=====================*/

.c-button02._capitalize .c-button02__text {
	text-transform: capitalize;
}

.c-card01 {
	height: 100%;
}

.c-card01__link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	height: 100%;
}

.c-card01__image {
	aspect-ratio: 450/280;
	display: block;
	overflow: hidden;
	width: 100%;
}

.c-card01__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	-webkit-transition: -webkit-transform 0.3s ease-out;
	transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	width: 100%;
	will-change: transform;
}

.c-card01__content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	padding: 1rem;
}

.c-card01__metaBlock {
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	    -ms-flex-positive: 0;
	        flex-grow: 0;
}

.c-card01__meta {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.c-card01__category {
	background: #04034A;
	background: var(--color-navy);
	border: 0.0625rem solid transparent;
	color: #FDFDFD;
	color: var(--color-white);
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1;
	padding: 0.25rem 0.5rem;
	text-align: center;
	text-transform: capitalize;
}

.c-card01__time {
	font-family: "Mulish", sans-serif;
	font-family: var(--font-mulish);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1;
}

.c-card01__seminarTime {
	color: #04034A;
	color: var(--color-navy);
	display: none;
	font-family: "Mulish", sans-serif;
	font-family: var(--font-mulish);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	margin-top: 0.5rem;
}

.c-card01__heading {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	    -ms-flex-positive: 0;
	        flex-grow: 0;
	font-size: 1rem;
	font-weight: 700;
	margin-top: 0.75rem;
	overflow: hidden;
}

.c-card01__text {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	overflow: hidden;
	text-align: justify;
}

/*=====================
 c-card01._seminar
=====================*/

.c-card01._seminar .c-card01__category {
	background: #FDFDFD;
	background: var(--color-white);
	border: 0.0625rem solid #04034A;
	border: 0.0625rem solid var(--color-navy);
	color: #04034A;
	color: var(--color-navy);
}

.c-card01._seminar .c-card01__time {
	display: none;
}

.c-card01._seminar .c-card01__seminarTime {
	display: block;
}

/*=====================
 c-card01._small
=====================*/

.c-card01._small .c-card01__content {
	padding: 1rem 0.46875rem 0;
}

.c-card01._small .c-card01__meta {
	padding-inline: 0.15625rem;
}

/*=====================
 c-card02
=====================*/

.c-card02 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	height: 100%;
}

.c-card02__link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	height: 100%;
}

.c-card02__image {
	aspect-ratio: 290/200;
	display: block;
	overflow: hidden;
	width: 100%;
}

.c-card02__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	-webkit-transform-origin: center center;
	        transform-origin: center center;
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	width: 100%;
	will-change: transform;
}

.c-card02__content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	padding: 1.25rem 1rem;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.c-card02__heading {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
}

.c-card02__text {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	text-align: justify;
}

.c-card02__button {
	cursor: pointer;
	margin-top: 1.25rem;
	max-width: 10.5rem;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	width: 100%;
}

.c-dl {
	grid-gap: 0.375rem;
	display: -ms-grid;
	display: grid;
	gap: 0.375rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.c-dl__item {
	grid-gap: 0.25rem;
	display: -ms-grid;
	display: grid;
	gap: 0.25rem;
	-ms-grid-columns: 12.5rem 1fr;
	grid-template-columns: 12.5rem 1fr;
}

.c-dl__term {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #04034A;
	background: var(--color-navy);
	color: #FDFDFD;
	color: var(--color-white);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.125rem;
	font-weight: 500;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.c-dl__term._unset {
	text-transform: inherit;
}

.c-dl__definition {
	background: #FDFDFD;
	background: var(--color-background);
	-webkit-box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
	        box-shadow: 0.25rem 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
	color: var(--gray);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	padding: 1rem 1.5rem;
	word-break: auto-phrase;
}

.c-dl__lists._space {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.75rem;
}

.c-dl__list._data {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.c-dl__list._data:before {
	content: attr(data-text);
	display: inline-block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	width: 1.75rem;
}

.c-dl__list strong {
	font-weight: 700;
	margin-top: 0.75rem;
}

.c-dlLv2__item {
	grid-gap: 0.25rem;
	display: -ms-grid;
	display: grid;
	gap: 0.25rem;
	-ms-grid-columns: 12.5rem 1fr;
	grid-template-columns: 12.5rem 1fr;
}

.c-dlLv2__term,
.c-dlLv2__definition {
	color: var(--gray);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
}

.c-drawer__button {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: transparent;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 2.875rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	width: 2.75rem;
	z-index: 200;
}

.c-drawer__button::before {
	bottom: 0;
	color: #04034A;
	color: var(--color-navy);
	content: "menu";
	display: block;
	font-family: "Mulish", sans-serif;
	font-family: var(--font-mulish);
	font-size: 1rem;
	font-weight: 700;
	left: 50%;
	line-height: 1;
	position: absolute;
	text-transform: capitalize;
	-webkit-transform: translate(-50%, 0);
	        transform: translate(-50%, 0);
}

.c-drawer__line {
	font-size: 0;
}

.c-drawer__line,
.c-drawer__line::before,
.c-drawer__line::after {
	background-color: #333;
	background-color: var(--color-gray);
	content: "";
	display: block;
	height: 0.25rem;
	position: absolute;
	right: 0;
	top: 0.6875rem;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	width: 2rem;
}

.c-drawer__line::before {
	top: -0.625rem;
	width: 1.5rem;
}

.c-drawer__line::after {
	top: 0.625rem;
	width: 2.5rem;
}

.c-drawer__button[aria-expanded=true] {
	background: transparent;
}

.c-drawer__button[aria-expanded=true]::before {
	color: #04034A;
	color: var(--color-navy);
	content: "close";
}

.c-drawer__button[aria-expanded=true] .c-drawer__line {
	background-color: transparent;
}

.c-drawer__button[aria-expanded=true] .c-drawer__line::before {
	height: 0.25rem;
	top: 0;
	-webkit-transform: rotate(30deg);
	        transform: rotate(30deg);
	width: 2.25rem;
}

.c-drawer__button[aria-expanded=true] .c-drawer__line::after {
	height: 0.25rem;
	top: 0;
	-webkit-transform: rotate(-30deg);
	        transform: rotate(-30deg);
	width: 2.25rem;
}

.c-drawer__modal {
	background: #FDFDFD;
	background: var(--color-background);
	display: block;
	height: 100vh;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	visibility: hidden;
	width: 100vw;
	z-index: -1;
}

.c-drawer__modal.is-open {
	opacity: 1;
	visibility: visible;
	z-index: 100;
}

.c-drawer__dialog {
	-ms-overflow-style: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	height: 100dvh;
	overflow-y: auto;
	overscroll-behavior-y: contain;
	scrollbar-width: none;
	width: 100vw;
}

.c-drawer__lists {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding-block: 7.5rem 5rem;
	padding-left: 10vw;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-drawer__link {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	color: #333;
	color: var(--color-gray);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	line-height: 1;
	padding-block: 1rem;
	-webkit-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.c-drawer__link._is-active {
	color: #1212B2;
	color: var(--color-dark-blue);
	opacity: 1;
}

.c-drawer__list._button {
	margin-top: 2.5rem;
}

.c-drawer__snsButtons {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 2rem;
}

.c-drawer__snsLists {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 1.5rem;
	max-width: 10.25rem;
	padding-inline: 2.5rem;
	width: 100%;
}

.c-drawer__snsLink {
	display: inline-block;
	width: 1.75rem;
}

.c-drawer__snsImg {
	aspect-ratio: 28/29;
	display: block;
	overflow: hidden;
}

.c-drawer__snsImg img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* c-drawer--open-right */

.c-drawer--open-right .c-drawer__modal {
	-webkit-transform: translateX(100%);
	        transform: translateX(100%);
}

.c-drawer--open-right .c-drawer__modal.is-open {
	-webkit-transform: translateX(29.6vw);
	        transform: translateX(29.6vw);
}

/* c-drawer--open-left */

.c-drawer--open-left .c-drawer__modal {
	-webkit-transform: translateX(-100%);
	        transform: translateX(-100%);
}

.c-drawer--open-left .c-drawer__modal.is-open {
	-webkit-transform: translateX(0);
	        transform: translateX(0);
}

/* c-drawer--open-top */

.c-drawer--open-top .c-drawer__modal {
	-webkit-transform: translateY(-100%);
	        transform: translateY(-100%);
}

.c-drawer--open-top .c-drawer__modal.is-open {
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}

.p-header._en .c-drawer__lists {
	padding-left: 4vw;
}

.c-heading01 {
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-heading01__en {
	color: #04034A;
	color: var(--color-navy);
	font-family: "Mulish", sans-serif;
	font-family: var(--font-mulish);
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
	text-transform: capitalize;
}

.c-heading01__en::before {
	background: #04034A;
	background: var(--color-navy);
	content: "";
	height: 0.125rem;
	left: -3rem;
	position: absolute;
	top: 48%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 2.5rem;
}

.c-heading01__jp {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1;
	margin-top: 0.5rem;
	text-align: center;
}

/*=====================
 c-heading02
=====================*/

.c-heading02 {
	font-size: 1.5rem;
	font-weight: 700;
	padding-left: 0.75rem;
	position: relative;
}

.c-heading02::before {
	background: #04034A;
	background: var(--color-navy);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 0.25rem;
}

/*=====================
 c-heading03
=====================*/

.c-heading03 {
	color: #04034A;
	color: var(--color-navy);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	padding-left: 1rem;
	position: relative;
}

.c-heading03::before {
	background: #04034A;
	background: var(--color-navy);
	content: "";
	height: 0.75rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 0.75rem;
}

/*=====================
 c-heading03._small
=====================*/

.c-heading03._small {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	padding-left: 0.75rem;
}

.c-heading03._small::before {
	height: 0.5rem;
	top: 0.5625rem;
	-webkit-transform: none;
	        transform: none;
	-webkit-transform: initial;
	        transform: initial;
	width: 0.5rem;
}

.c-heading {
	font-weight: bold;
}

.c-heading--2 {
	border-bottom: 0.1875rem solid #333;
	font-size: 1.5rem;
	padding-block: 0.625rem;
}

.c-heading--3 {
	border-left: 0.3125rem solid #333;
	font-size: 1.25rem;
	padding: 0.3125rem 0 0.3125rem 0.625rem;
}

.c-list,
.c-list li ul {
	list-style-type: disc;
	padding-left: 1.875rem;
	padding-right: 0.625rem;
}

.c-list li {
	margin-bottom: 0.9375rem;
}

.c-list li ul li {
	margin-top: 0.9375rem;
}

.c-list--decimal,
.c-list--decimal li ul {
	list-style-type: decimal;
}

.c-list--arrow-start,
.c-list--arrow-start li ul {
	list-style-type: none;
}

.c-list--arrow-start li {
	position: relative;
}

.c-list--arrow-start li::before {
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-size: 0.75rem;
	font-weight: 900;
	left: -1rem;
	position: absolute;
	top: 0.125rem;
}

.c-lower-head {
	height: 28.75rem;
	position: relative;
}

.c-lower-head::before {
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgb(90, 90, 90)));
	background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgb(90, 90, 90));
	content: "";
	height: 9.375rem;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.c-lower-head__bg img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.c-lower-head__inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	left: 50%;
	margin-inline: auto;
	max-width: 48.75rem;
	padding-inline: 3.3333%;
	position: absolute;
	top: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 100%;
}

.c-lower-head__title {
	-ms-writing-mode: tb-rl;
	background: #333;
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 2.0625rem;
	height: 19.375rem;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	letter-spacing: 0.3125rem;
	padding-block: 0.3125rem;
	padding-top: 1.25rem;
	-webkit-writing-mode: vertical-rl;
	    -ms-writing-mode: tb-rl;
	        writing-mode: vertical-rl;
}

.c-media__inner {
	grid-gap: 2.5rem;
	display: -ms-grid;
	display: grid;
	gap: 2.5rem;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
}

.c-media__image {
	aspect-ratio: 335/131;
	display: block;
	overflow: hidden;
	width: 100%;
}

.c-media__img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.c-media__text {
	font-size: 1rem;
	text-align: justify;
}

.c-member {
	max-width: 56.25rem;
	width: 100%;
}

.c-member__media {
	grid-gap: 2.5rem;
	display: -ms-grid;
	display: grid;
	gap: 2.5rem;
	-ms-grid-columns: 400fr 460fr;
	grid-template-columns: 400fr 460fr;
}

.c-member__image {
	aspect-ratio: 400/320;
	display: block;
	overflow: hidden;
	width: 100%;
}

.c-member__image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.c-member__name {
	color: #04034A;
	color: var(--color-navy);
	font-size: 1.5rem;
	font-weight: 700;
}

.c-member__job {
	margin-top: 0.25rem;
}

.c-member__snsItemsBlock {
	margin-top: 0.75rem;
}

.c-member__snsItems {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 1rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.c-member__snsLink {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 0.5rem;
}

.c-member__snsText {
	font-size: 1rem;
	font-weight: 700;
}

.c-member__snsImg {
	width: 2rem;
}

.c-member__heading {
	margin-top: 1.75rem;
}

.c-member__text {
	font-size: 1rem;
	margin-top: 0.75rem;
}

.c-member__text a {
	text-decoration: underline;
}

.c-modal__cards {
	grid-gap: 4rem;
	display: -ms-grid;
	display: grid;
	gap: 4rem;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
}

.c-modal__card {
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
}

.c-modal__trigger {
	cursor: pointer;
}

/*=====================
 モーダル本体
=====================*/

.c-modal__wrapper {
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 200;
}

.c-modal__layer {
	background: rgba(50, 50, 50, 0.85);
	cursor: pointer;
	height: 100%;
}

.c-modal__container {
	background: #FDFDFD;
	background: var(--color-background);
	height: 90%;
	left: 50%;
	padding: 1.25rem;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: min(100% - 2.5rem, 62.5rem);
}

.c-modal__inner-content {
	height: 100%;
	overflow-y: scroll;
	padding: 3.75rem 1.25rem 1.25rem;
	position: relative;
}

.c-modal__close {
	background: rgb(50, 50, 50);
	cursor: pointer;
	height: 2.75rem;
	position: fixed;
	right: 1.25rem;
	top: 1.25rem;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
	width: 2.75rem;
	z-index: 201;
}

.c-modal__close:hover {
	opacity: 0.6;
}

.c-modal__close:before,
.c-modal__close:after {
	background: #FDFDFD;
	background: var(--color-white);
	content: "";
	height: 0.0625rem;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 1.25rem;
}

.c-modal__close:before {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	        transform: translate(-50%, -50%) rotate(45deg);
}

.c-modal__close:after {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	        transform: translate(-50%, -50%) rotate(-45deg);
}

.c-modal__button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-inline: auto;
	margin-top: 5rem;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-modal__buttonText {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	border: 0.0625rem solid #333;
	border: 0.0625rem solid var(--color-base);
	cursor: pointer;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 0.875rem;
	height: 3rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	line-height: 1;
	text-align: center;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	width: 8.375rem;
}

.c-mv {
	padding-top: min(3.25rem, 3.6111111111vw);
}

.c-mv__inner {
	padding-inline: min(0.75rem, 0.8333333333vw) min(3.625rem, 4.0277777778vw);
}

.c-mv__slide {
	position: relative;
}

.c-mv__image {
	aspect-ratio: 1080/600;
	display: block;
	overflow: hidden;
	width: 100%;
}

.c-mv__img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.c-mv__title {
	background: -webkit-gradient(linear, left top, right top, color-stop(79.69%, rgba(255, 255, 255, 0.80)), to(rgba(255, 255, 255, 0.00)));
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.80) 79.69%, rgba(255, 255, 255, 0.00) 100%);
	background: var(--color-gradient-mv);
	bottom: 4rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 1rem;
	left: 0;
	padding: 1.5rem 5rem;
	position: absolute;
}

.c-mv__text {
	color: #04034A;
	color: var(--color-navy);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

.c-mv__text._large {
	font-size: 2.5rem;
}

/*=====================
c-mv _en
=====================*/

.c-mv._en .c-mv__inner {
	padding-inline: min(1.75rem, 1.9444444444vw) min(3.625rem, 4.0277777778vw);
}

.c-pagination {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.page-numbers {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #FDFDFD;
	background-color: var(--color-background);
	border: 0.0625rem solid #333;
	border: 0.0625rem solid var(--color-base);
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-family: "Mulish", sans-serif;
	font-family: var(--font-mulish);
	font-size: 1.5rem;
	height: 2.5rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	line-height: 1;
	margin-inline: 0.75rem !important;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	white-space: nowrap;
	width: 2.5rem;
}

.page-numbers.current {
	background: #04034A;
	background: var(--color-navy);
	border: none;
	color: #FDFDFD;
	color: var(--color-white);
}

.page-numbers.prev,
.page-numbers.next {
	background: transparent;
	border: 0.0625rem solid #04034A;
	border: 0.0625rem solid var(--color-navy);
	margin-right: 0.5rem;
	position: relative;
}

.page-numbers.prev::before,
.page-numbers.next::before {
	-webkit-mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-image: url(../images/common/triangle-icon.svg);
	background: #04034A;
	background: var(--color-navy);
	content: "";
	height: 0.875rem;
	left: 50%;
	mask-image: url(../images/common/triangle-icon.svg);
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 0.8125rem;
}

.page-numbers.prev:hover::before,
.page-numbers.next:hover::before {
	background: #FDFDFD;
	background: var(--color-white);
}

.page-numbers.prev::before {
	left: 48%;
}

.page-numbers.next::before {
	left: 52%;
	-webkit-transform: translate(-50%, -50%) rotate(180deg);
	        transform: translate(-50%, -50%) rotate(180deg);
}

.page-numbers.next {
	background: transparent;
	margin-left: 0.5rem;
	position: relative;
}

/*=====================
 c-single-pagination
=====================*/

.c-single-pagination {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 1.5rem;
}

.c-single-pagination__homeButton a {
	background-color: #04034A;
	background-color: var(--color-navy);
	color: #FDFDFD;
	color: var(--color-white);
	display: inline-block;
	font-size: 1.25rem;
	line-height: 1;
	padding: 1rem 1.5rem;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.c-single-pagination__nextButton,
.c-single-pagination__prevButton {
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	width: 2.5rem;
}

.c-single-pagination__img {
	aspect-ratio: 40/40;
	display: block;
	overflow: hidden;
}

.c-single-pagination__img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.c-scroll-top {
	display: inline-block;
}

.c-single__meta {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.c-single__category {
	background: #04034A;
	background: var(--color-navy);
	color: #FDFDFD;
	color: var(--color-white);
	font-size: 1.125rem;
	line-height: 1;
	padding: 0.25rem 0.5rem 0.3125rem;
}

.c-single__time {
	font-family: "Mulish", sans-serif;
	font-family: var(--font-mulish);
	font-size: 1rem;
	line-height: 1;
}

.c-single__seminarTime {
	color: #04034A;
	color: var(--color-navy);
	font-family: "Mulish", sans-serif;
	font-family: var(--font-mulish);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	margin-top: 1rem;
}

.c-single__heading {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 1rem;
}

.c-single__image {
	margin-top: 1rem;
}

.c-single__body h1,
.c-single__body h2,
.c-single__body h3,
.c-single__body h4,
.c-single__body h5,
.c-single__body h6,
.c-single__body a,
.c-single__body ul,
.c-single__body ol,
.c-single__body li,
.c-single__body hr {
	all: revert;
}

.c-single__body p,
.c-single__body li,
.c-single__body ol,
.c-single__body a {
	font-size: 1rem;
	text-align: justify;
}

.c-single__body p,
.c-single__body a {
	margin-top: 1rem;
}

.c-single__pagination {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 4rem;
}

.c-single__buttons {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 5rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 4rem;
}

.c-single__button._small {
	width: 15rem;
}

.c-single__button._small .c-button02._small .c-button02__text {
	font-size: 1rem;
}

.c-single__button {
	width: 16.875rem;
}

/*=====================
c-single _seminar
=====================*/

.c-single._seminar .c-single__category {
	background: #FDFDFD;
	background: var(--color-white);
	border: 0.0625rem solid #04034A;
	border: 0.0625rem solid var(--color-navy);
	color: #04034A;
	color: var(--color-navy);
}

.c-single._seminar .c-single__pagination {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 5rem;
}

.c-single__paginationItem._small {
	width: 15rem;
}

.c-single__paginationItem {
	width: 16.375rem;
}

.c-slide2 .splide__slide img {
	-webkit-transition: -webkit-transform 8s ease-out;
	transition: -webkit-transform 8s ease-out;
	transition: transform 8s ease-out;
	transition: transform 8s ease-out, -webkit-transform 8s ease-out;
}

.c-slide2 .splide__slide.is-active img {
	-webkit-transform: scale(1.08);
	        transform: scale(1.08);
	-webkit-transition-delay: 0s;
	        transition-delay: 0s;
}

.c-slide2 .splide__slide img {
	height: auto;
	width: 100%;
}

.c-tab__menu {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	display: flex;
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
	margin: 0 auto;
	max-width: 37.5rem;
}

.c-tab__menuItem {
	background-color: #BEBEBE;
	border: none;
	color: #888888;
	cursor: pointer;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	font-size: 1.125rem;
	padding: 1.25rem 1.25rem;
	position: relative;
	text-align: center;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

/* 追加: 各言語/ツールのテーマカラーの線 */

.c-tab__menuItem::before {
	content: "";
	height: 5px;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.c-tab__menuItem:nth-of-type(1)::before {
	background-color: #e34f26;
}

.c-tab__menuItem:nth-of-type(2)::before {
	background-color: #264de4;
}

.c-tab__menuItem:nth-of-type(3)::before {
	background-color: #f7df1e;
}

.c-tab__menuItem:nth-of-type(4)::before {
	background-color: #88ce02;
}

/* 選択されたタブの表示 */

.js-tab-active {
	background-color: #fff;
	color: #333;
}

/* 選択されたタブの線を表示 */

.js-tab-active::before {
	opacity: 1;
}

.c-tab__content {
	font-size: 1.125rem;
	margin: 0 auto;
	max-width: 37.5rem;
	position: relative;
}

.c-tab__contentItem {
	background-color: #f9f9f9;
	border: 0.0625rem solid #ddd;
	border-top: none;
	display: none;
	padding: 1.25rem;
}

.c-tab__contentItem:nth-of-type(1) {
	display: block;
}

.c-tab__contentItem img {
	height: auto;
	margin-right: 0.625rem;
	width: 6.25rem;
}

.c-tab__contentItem p {
	display: inline-block;
	margin: 0;
	vertical-align: top;
}

.c-text {
	font-size: 1.0625rem;
	letter-spacing: -0.0625rem;
	line-height: 2.4705882353;
	text-align: justify;
}

.c-text__name {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
}

.c-vertical-line {
	background: #333;
	height: 6.25rem;
	margin-inline: auto;
	width: 0.0625rem;
}

/*デフォルト色の指定*/

/*サイズ等の指定*/

/*ボタン系の指定*/

/*ラジオボタンの指定*/

/*チェックボックスの指定*/

/*テキストエリアの指定*/

[type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=password],
[type=date],
textarea {
	background: #FAFAFA;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 0.25rem;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(192, 44, 44, 0.5) inset;
	        box-shadow: 0px 0px 5px 0px rgba(192, 44, 44, 0.5) inset; /*↓リセットCSS */
	font-family: inherit;
	font-size: 1.125rem;
	padding: 0.9375rem 0.75rem;
	resize: vertical; /*↓カスタム */
	-webkit-transition: border-color 0.3s ease;
	transition: border-color 0.3s ease; /*↓↓選択されているときの色*/ /*↓↓↓↓不要ならコメントアウト or 削除 */
	width: 100%;
}

[type=text]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=url]:focus,
[type=email]:focus,
[type=password]:focus,
[type=date]:focus,
textarea:focus {
	border: 1px solid #391E88;
}

[type=tel] {
	width: 100%;
}

[type=radio] {
	display: none;
}

[type=radio] + span {
	cursor: pointer;
	display: inline-block;
	font-size: 0.75rem;
	line-height: 1;
	margin: 0 2.1875rem 0 0;
	padding: 0 0 0 1.75rem;
	position: relative;
}

[type=radio] + span::before {
	background: #fff;
	border: 1px solid #707070;
	border-radius: 50%;
	content: "";
	display: block;
	height: 1.125rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 1.125rem;
}

[type=radio] + span::after {
	opacity: 0;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}

[type=radio]:checked + span::after {
	background: #391E88;
	border-radius: 50%;
	content: "";
	display: block;
	height: 0.75rem;
	left: 0.1875rem;
	opacity: 1;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 0.75rem;
}

[type=checkbox] {
	display: none;
}

[type=checkbox] + span {
	cursor: pointer;
	display: inline-block;
	font-size: 0.875rem;
	line-height: 1;
	margin: 0 1.25rem 0 0;
	padding: 0 0 0 1.5625rem;
	position: relative;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}

[type=checkbox] + span::before {
	border: 1px solid #58330D;
	content: "";
	display: block;
	height: 1.25rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 1.25rem;
}

[type=checkbox] + span::after {
	opacity: 0;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}

[type=checkbox]:checked + span::after {
	border-bottom: 2px solid #f00;
	border-left: 2px solid #f00;
	content: "";
	display: block;
	height: 0.375rem;
	left: 2px;
	margin-left: 0.1em;
	margin-top: -0.1em;
	opacity: 1; /*チェックマークじゃない場合は以下を変更する*/
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	        transform: translateY(-50%) rotate(-45deg);
	width: 0.875rem;
}

select {
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto; /*↓デフォルトではないアイコンを使う場合は入力する*/
	background-color: #FAFAFA;
	border: none;
	border: 1px solid #AAAAAA;
	border-radius: 0; /*↓リセットCSS */
	border-radius: 0.25rem; /*↓デフォルトのアイコンを消す場合はコメントアウト（noneにする）*/
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	font-size: 1.125rem;
	margin-top: 0.625rem;
	padding: 0.9375rem 0.75rem;
	width: 100%; /*↓カスタム */
}

select:focus {
	border: 1px solid #391E88;
}

[type=date] {
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto; /*↓デフォルトではないアイコンを使う場合は入力する*/
	position: relative; /*↓デフォルトのアイコンを消す場合はコメントアウト（noneにする）*/
}

input[type=date]::-webkit-calendar-picker-indicator {
	height: 100%;
	opacity: 0;
	position: absolute;
	width: 100%;
}

textarea {
	height: 15.9375rem;
	width: 100%;
}

/* フォーム7　ボタンの余白削除 */

.wpcf7-spinner {
	display: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: orange;
	border: 0.0625rem solid orange;
	border-radius: 3.125rem;
	color: #fff;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 1rem;
	font-weight: 700;
	height: 2.75rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	line-height: 100%;
	margin-inline: 0.5rem;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	white-space: nowrap;
	width: 2.75rem;
}

.wp-pagenavi span.current {
	background: orange;
	border: none;
	color: #fff;
}

.wp-pagenavi .previouspostslink {
	background: transparent;
	border: 0.125rem solid orange;
	margin-right: 0.5rem;
	position: relative;
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
	-webkit-mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-image: url(../images/common/arrow-icon-left.svg);
	background: orange;
	content: "";
	height: 0.6875rem;
	left: 50%;
	mask-image: url(../images/common/arrow-icon-left.svg);
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 0.625rem;
}

.wp-pagenavi .previouspostslink::before {
	left: 48%;
	-webkit-transform: translate(-50%, -50%) rotate(180deg);
	        transform: translate(-50%, -50%) rotate(180deg);
}

.wp-pagenavi .nextpostslink::before {
	left: 52%;
}

.wp-pagenavi .nextpostslink {
	background: transparent;
	border: 0.125rem solid orange;
	margin-left: 0.5rem;
	position: relative;
}

.p-404 {
	text-align: center;
	word-break: auto-phrase;
}

.p-404__title {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-404__text {
	font-size: 1rem;
	line-height: 1.5;
	margin-top: 2rem;
}

.p-404__button {
	margin-inline: auto;
	margin-top: 3.75rem;
	max-width: 15rem;
	width: 100%;
}

.p-cards {
	grid-gap: 1.25rem;
	display: -ms-grid;
	display: grid;
	gap: 1.25rem;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
}

.p-component__previewTitle {
	margin-top: 1.875rem;
}

.p-component__preview {
	margin-top: 1.25rem;
}

.p-contact__text {
	font-size: 1rem;
	font-weight: 500;
	margin-top: 0.75rem;
}

.p-contact__buttons {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 3.5rem;
	margin-top: 3.5rem;
}

.p-feature__lists {
	grid-gap: 3.5rem;
	display: -ms-grid;
	display: grid;
	gap: 3.5rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	margin-top: 5rem;
}

.p-feature__subHeading {
	color: #04034A;
	color: var(--color-navy);
	font-size: 1.5rem;
	font-weight: 500;
}

.p-feature__text {
	font-size: 1.125rem;
	font-weight: 500;
	margin-top: 1rem;
}

.p-footer {
	background: #04034A;
	background: var(--color-navy);
	padding-block: 1.3125rem;
	position: relative;
	z-index: 200;
}

.p-footer__inner.l-inner {
	max-width: calc(73.75rem + 6.6666%);
	padding-inline: 3.3333%;
	padding-inline: var(--padding-pc);
}

.p-footer__link,
.p-footer__copy small {
	color: #FDFDFD;
	color: var(--color-white);
	font-size: 0.875rem;
	line-height: 1;
	text-align: center;
}

.p-footer__link {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.p-footer__copy {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.p-header {
	background: #FDFDFD;
	background: var(--color-background);
	height: 100%;
}

.p-header__inner.l-inner {
	padding: 3.25rem 3rem 0 2.25rem;
}

.p-header__logo {
	width: 12.125rem;
}

.p-header__nav {
	margin-top: 1.375rem;
}

.p-header__nav._none {
	display: none;
}

.p-header__lists {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.p-header__link {
	color: #333;
	color: var(--color-gray);
	display: inline-block;
	display: block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	padding-block: 1rem;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-header__buttons {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 2rem;
	margin-top: 1.375rem;
}

.p-header__snsLists {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	margin-top: 1.5rem;
	max-width: 10.25rem;
	padding-inline: 2.5rem;
	width: 100%;
}

.p-header__snsLink {
	display: inline-block;
	width: 1.75rem;
}

.p-header__snsImg {
	aspect-ratio: 28/29;
	display: block;
	overflow: hidden;
}

.p-header__snsImg img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-header__drawer {
	display: none;
}

/*=====================
 英語ページ
=====================*/

.p-header._en .p-header__inner.l-inner {
	padding: 3.25rem 0 0 1.875rem;
}

.p-header._en .p-header__lists {
	width: 14.8125rem;
}

.p-header._en .c-button01 {
	width: 14.8125rem;
}

.p-main {
	margin-left: auto;
	overflow: clip;
	position: relative;
	width: calc(100% - 16.875rem);
}

.p-member-single__button {
	margin-top: 4.5rem;
	max-width: 14.625rem;
	width: 100%;
}

.p-member__items {
	grid-gap: 4rem;
	display: -ms-grid;
	display: grid;
	gap: 4rem;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
}

.p-member .c-card02:hover a {
	opacity: 1;
}

.p-member .c-card02:hover .c-card02__image img {
	-webkit-transform: scale(1.02);
	        transform: scale(1.02);
}

.p-member .c-card02:hover .c-card02__content {
	opacity: 0.5;
}

.p-mockup {
	margin-block: 6.25rem;
}

.p-mockup__content {
	margin-top: 5rem;
}

.p-mockup__title {
	font-size: 1.25rem;
	font-weight: bold;
	line-height: normal;
}

.p-mockup__items {
	grid-gap: 1.25rem;
	display: -ms-grid;
	display: grid;
	gap: 1.25rem;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	margin-top: 1rem;
}

.p-mockup__link {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: rgb(222, 222, 222);
	border: 0.0625rem solid #e0e0e0;
	border-radius: 0.625rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 1.25rem;
	text-align: center;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.p-mockup__link._is-active {
	background-color: #f7f7f7;
	pointer-events: none;
}

.p-mv-lover {
	padding-top: 3.25rem;
}

.p-mv-lover__inner {
	padding-right: 3.625rem;
}

.p-mv-lover__image {
	position: relative;
}

.p-mv-lover__img {
	aspect-ratio: 1080/400;
	display: block;
	overflow: hidden;
	width: 100%;
}

.p-mv-lover__img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-mv-lover__title {
	background: -webkit-gradient(linear, left top, right top, color-stop(79.69%, rgba(255, 255, 255, 0.80)), to(rgba(255, 255, 255, 0.00)));
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.80) 79.69%, rgba(255, 255, 255, 0.00) 100%);
	background: var(--color-gradient-mv);
	bottom: 4rem;
	bottom: 4rem;
	color: #04034A;
	color: var(--color-navy);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	font-weight: 700;
	gap: 1rem;
	left: 0;
	left: 0;
	padding: 1.5rem 5rem;
	position: absolute;
	position: absolute;
}

.p-mv-lover__titleEn {
	font-size: 3rem;
	line-height: 1;
	text-transform: capitalize;
}

.p-mv-lover__titleJp {
	font-size: 1.5rem;
	line-height: 1;
}

.p-mv-lover._en .p-mv-lover__inner {
	padding-inline: min(1.75rem, 1.9444444444vw) min(3.625rem, 4.0277777778vw);
}

.p-news__lists {
	grid-gap: 4rem 4.0625rem;
	display: -ms-grid;
	display: grid;
	gap: 4rem 4.0625rem;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
}

.p-news__pagination {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 4rem;
}

.p-news__lists {
	margin-top: 5rem;
}

.p-seminar__contents {
	grid-gap: 5rem;
	display: -ms-grid;
	display: grid;
	gap: 5rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	margin-top: 4rem;
}

.p-seminar__subHeading {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	text-align: center;
}

.p-seminar__lists {
	grid-gap: 4rem 4.0625rem;
	display: -ms-grid;
	display: grid;
	gap: 4rem 4.0625rem;
	-ms-grid-columns: (1fr)[3];
	grid-template-columns: repeat(3, 1fr);
}

.p-seminar__pagination {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 4rem;
}

.p-seminar-seminar .p-seminar__lists {
	margin-top: 5rem;
}

/*=====================
p-seminar _single
=====================*/

.p-seminar._single .p-seminar__lists {
	margin-top: 4rem;
}

.p-top-access__image {
	aspect-ratio: 26/9;
	display: block;
	margin-top: 3rem;
	overflow: hidden;
	width: 100%;
}

.p-top-access__image {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-top-access__address {
	margin-top: 3rem;
}

.p-top-access__addressText {
	font-size: 1rem;
	font-weight: 500;
}

.p-top-access__headText {
	font-size: 1rem;
	font-weight: 500;
	margin-top: 0.625rem;
}

.p-top-access__map {
	aspect-ratio: 1000/320;
	display: block;
	margin-top: 2.5rem;
	overflow: hidden;
	width: 100%;
}

.p-top-access__map iframe {
	height: 100%;
	width: 100%;
}

.p-top-access__texts {
	margin-top: 1rem;
}

.p-top-access__text {
	font-size: 0.875rem;
	font-weight: 400;
}

.p-top-access__dl {
	grid-gap: 1.5rem;
	display: -ms-grid;
	display: grid;
	gap: 1.5rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	margin-top: 1.5rem;
}

.p-top-access__item {
	grid-gap: 1.75rem;
	display: -ms-grid;
	display: grid;
	gap: 1.75rem;
	-ms-grid-columns: 12.5rem 1fr;
	grid-template-columns: 12.5rem 1fr;
}

.p-top-access__link {
	color: #0000EE;
}

.p-top-access__link:visited {
	color: #800080;
	color: var(--color-visited);
}

.p-top-access__term {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	border: 0.0625rem solid #333;
	border: 0.0625rem solid var(--color-base);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.125rem;
	font-weight: 500;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	line-height: 1.5;
	padding-block: 0.9375rem;
	text-align: center;
	text-transform: uppercase;
}

.p-top-access__term._unset {
	text-transform: inherit;
}

.p-top-access__lists {
	padding-block: 0.1875rem;
}

.p-top-access__list {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.4;
}

.p-top-feature__lists {
	margin-top: 3.125rem;
}

.p-top-feature__subText {
	color: #333;
	color: var(--color-gray);
	font-size: 1.125rem;
	line-height: 1;
	margin-top: 0.5rem;
}

.p-top-feature__lists {
	grid-gap: 4rem;
	display: -ms-grid;
	display: grid;
	gap: 4rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	margin-top: 4rem;
}

.p-top-feature__listsLv2 {
	grid-gap: 1.25rem;
	display: -ms-grid;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(auto-fit, minmax(18.125rem, 1fr));
	margin-top: 3rem;
}

.p-top-feature__button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-inline: auto;
	margin-top: 4.5rem;
	max-width: 12.375rem;
	width: 100%;
}

.p-top-feature__dlItem {
	grid-gap: 1.5rem;
	display: -ms-grid;
	display: grid;
	gap: 1.5rem;
	-ms-grid-columns: 11.25rem 1fr;
	grid-template-columns: 11.25rem 1fr;
}

.p-top-feature__button._animation {
	display: block;
	margin-top: 2.5rem;
	max-width: 100%;
}

.p-top-member__text {
	font-size: 1rem;
	font-weight: 500;
	margin-top: 1rem;
}

.p-top-member__modal {
	margin-top: 4.625rem;
}

.p-top-news-seminar__items {
	grid-gap: 5rem 6.25rem;
	display: -ms-grid;
	display: grid;
	gap: 5rem 6.25rem;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	margin-top: 5rem;
}

.p-top-news-seminar__button {
	margin-inline: auto;
	margin-top: 4.5rem;
	max-width: 19.75rem;
	width: 100%;
}

.p-top-outline__heading {
	margin-top: 5rem;
}

.p-top-outline__media {
	grid-gap: 2.5rem;
	display: -ms-grid;
	display: grid;
	gap: 2.5rem;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	margin-top: 3.5rem;
}

.p-top-outline__image {
	aspect-ratio: 335/131;
	display: block;
	overflow: hidden;
	width: 100%;
}

.p-top-outline__img img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-top-outline__text {
	font-size: 1rem;
	text-align: justify;
}

.p-top-outline__content {
	margin-top: 5rem;
}

.p-top-service__contents {
	grid-gap: 4.5rem;
	display: -ms-grid;
	display: grid;
	gap: 4.5rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	margin-top: 5rem;
}

.p-top-service__subText {
	color: #333;
	color: var(--color-gray);
	font-size: 1.125rem;
	line-height: 1;
	margin-top: 0.5rem;
}

.p-top-service__items {
	grid-gap: 1.25rem;
	display: -ms-grid;
	display: grid;
	gap: 1.25rem;
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
	margin-top: 3rem;
}

.p-top-service__item .c-box {
	width: 100%;
}

.p-top-service__button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-inline: auto;
	margin-top: 4.5rem;
	max-width: 12.375rem;
	width: 100%;
}

.p-top-service__container {
	grid-gap: 2.5rem;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[1];
	grid-template-columns: repeat(1, 1fr);
	margin-top: 2.5rem;
}

.p-top-service__contentBlock {
	border: 0.0625rem solid #333;
	border: 0.0625rem solid var(--color-base);
	padding: 1.25rem;
}

.p-top-service__contentHeading {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: normal;
	margin-bottom: 1.25rem;
}

.p-top-service__contentText {
	font-size: 1rem;
	font-weight: 500;
	line-height: normal;
}

.p-top-service__list {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 1rem;
	font-weight: 500;
	line-height: normal;
}

.p-top-service__list::before {
	content: attr(data-icon);
	display: inline-block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	gap: 0.5rem;
	width: 0.5rem;
}

.p-top-service__list._accent::before {
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	gap: 0.5rem;
	width: 1rem;
}

.p-top-service__contentSubHeading {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: normal;
	margin-top: 1rem;
}

.p-top-service__wrapper {
	border: 0.0625rem solid #333;
	border: 0.0625rem solid var(--color-base);
	margin-top: 0.5rem;
	padding: 1rem;
}

.p-top-service__wrapperHeading {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: normal;
}

.p-top-service__wrapperHeading:not(:first-child) {
	margin-top: 0.5rem;
}

.u-hidden-pc {
	display: none;
}

.u-hidden-sp {
	display: block;
}

.u-hidden-sp02 {
	display: inline-block;
}

.u-visually-hidden {
	clip: rect(0 0 0 0) !important;
	-webkit-clip-path: inset(50%) !important;
	border: 0 !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	width: 1px !important;
}

@media screen and (-ms-high-contrast: none) {

.splide__slide:focus-visible {
	border: 3px solid #0bf;
}

.splide.is-focus-in .splide__slide:focus {
	border: 3px solid #0bf;
}

.splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
	border-color: #0bf;
}

}

@media (any-hover: hover) {

.c-card01:hover .c-card01__image img {
	-webkit-transform: scale(1.02);
	        transform: scale(1.02);
}

.c-card02__button:hover {
	opacity: 0.5;
}

.c-card02:has(.c-card02__button:hover) .c-card02__image img {
	-webkit-transform: scale(1.02);
	        transform: scale(1.02);
}

.c-modal__buttonText:hover {
	opacity: 0.7;
}

.page-numbers:hover {
	background: #04034A;
	background: var(--color-navy);
	color: #FDFDFD;
	color: var(--color-white);
}

.c-single-pagination__homeButton a:hover,
.c-single-pagination__nextButton:hover,
.c-single-pagination__prevButton:hover {
	opacity: 0.7;
}

.p-header__link:hover {
	-webkit-transform: translateX(0.625rem);
	        transform: translateX(0.625rem);
}

.p-header__link:hover {
	opacity: 0.8;
}

.p-header__link._is-active:hover {
	cursor: default;
	opacity: 1;
	-webkit-transform: none;
	        transform: none;
}

}

@media (hover: hover) {

.p-mockup__link:hover {
	background-color: #333;
	color: #fff;
}

}

@media screen and (max-width: 1150px) {

html {
	font-size: 1.3333333333vw;
}

}

@media screen and (max-width: 768px) {

html {
	font-size: 16px;
}

html {
	scroll-padding-top: 5rem;
}

a {
	opacity: 1;
	opacity: initial;
}

.l-footer {
	margin-top: 4.5rem;
}

.l-inner {
	max-width: 37.5rem;
	padding-left: 5.3333333333%;
	padding-right: 5.3333333333%;
}

.l-section {
	margin-top: 4.5rem;
}

.l-section._single {
	margin-top: 2.5rem;
}

.c-box {
	padding: 0 1.5rem 1.25rem;
}

.c-box__lists {
	margin-top: 0.75rem;
}

.c-card01__content {
	padding: 1rem 0.46875rem 0;
}

.c-card01__meta {
	padding-inline: 0.15625rem;
}

.c-dl__item {
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.c-dl__term {
	padding-block: 1rem;
}

.c-dl__definition {
	padding: 1rem;
}

.c-dl__list._data:before {
	width: 1.875rem;
}

.c-dlLv2__item {
	gap: 0;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	padding-bottom: 0.5rem;
}

.c-drawer__button::before {
	font-size: 0.9375rem;
}

.c-heading01 {
	padding-inline: 1.25rem 0.5rem;
	position: relative;
}

.c-heading01::before {
	background: #04034A;
	background: var(--color-navy);
	bottom: -0.375rem;
	content: "";
	height: 0.125rem;
	left: -1.25rem;
	position: absolute;
	width: calc(100% + 1.25rem);
}

.c-heading01__en {
	font-size: 2rem;
}

.c-heading01__en::before {
	display: none;
}

.c-heading01__jp {
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.c-heading03 {
	font-size: 1.125rem;
}

.c-lower-head {
	height: 14.375rem;
}

.c-lower-head__title {
	font-size: 1.375rem;
	height: 13.125rem;
	padding-top: 0.625rem;
	position: relative;
	right: 1.25rem;
	top: -2.5rem;
}

.c-media__inner {
	gap: 1.5rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.c-member {
	padding-inline: 0.9375rem;
}

.c-member__media {
	gap: 0.5rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.c-member__image {
	padding-inline: 0.46875rem;
}

.c-member__name {
	font-size: 1.25rem;
}

.c-member__snsItemsBlock {
	margin-top: 0.5rem;
}

.c-member__snsItems {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}

.c-member__snsImg {
	width: 1.5rem;
}

.c-member__heading {
	margin-top: 1.5rem;
}

.c-member__text {
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

.c-modal__cards {
	gap: 2.5rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.c-modal__container {
	padding: 0;
}

.c-modal__inner-content {
	padding: 1.25rem 0;
}

.c-modal__close {
	display: none;
}

.c-modal__button {
	margin-top: 1.5rem;
}

.c-mv {
	padding-top: 4.875rem;
}

.c-mv__inner {
	padding-inline: calc(20 / 375 * 100%);
	padding-inline: var(--padding-sp);
}

.c-mv__image {
	aspect-ratio: 335/335;
}

.c-mv__title {
	bottom: 2rem;
	gap: 0.25rem;
	padding: 0.5rem 2.5rem 0.5rem 1.4375rem;
}

.c-mv__text {
	font-size: 1.25rem;
	line-height: normal;
}

.c-mv__text._large {
	font-size: 1.5rem;
}

.c-mv._en .c-mv__inner {
	padding-inline: calc(20 / 375 * 100%);
	padding-inline: var(--padding-sp);
}

.page-numbers {
	margin-inline: 0.5rem;
}

.page-numbers.prev,
.page-numbers.next {
	margin-right: 0.4375rem;
}

.page-numbers.next {
	margin-right: 0.4375rem;
}

.c-single-pagination {
	gap: 1rem;
}

.c-single-pagination__homeButton a {
	font-size: 1rem;
	padding: 0.75rem 1.5rem;
}

.c-single-pagination__nextButton,
.c-single-pagination__prevButton {
	width: 2rem;
}

.c-single__category {
	font-size: 0.75rem;
}

.c-single__time {
	font-size: 0.875rem;
}

.c-single__seminarTime {
	font-size: 0.875rem;
	margin-top: 0.75rem;
}

.c-single__heading {
	font-size: 1rem;
	margin-top: 0.75rem;
}

.c-single__image {
	margin-top: 0.75rem;
}

.c-single__body p,
.c-single__body li,
.c-single__body ol,
.c-single__body a {
	font-size: 0.875rem;
}

.c-single__body p,
.c-single__body a {
	margin-top: 0.75rem;
}

.c-single__pagination {
	margin-top: 3.5rem;
}

.c-single__buttons {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 2rem;
	margin-top: 3.5rem;
}

.c-single._seminar .c-single__pagination {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 2rem;
}

.c-text {
	font-size: 1rem;
}

.c-vertical-line {
	height: 4.125rem;
}

[type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=password],
[type=date],
textarea {
	font-size: 1rem;
}

.wp-pagenavi a,
.wp-pagenavi span {
	margin-inline: 0.4375rem;
}

.wp-pagenavi .previouspostslink {
	margin-right: 0.4375rem;
}

.wp-pagenavi .nextpostslink {
	margin-right: 0.4375rem;
}

.p-404__title {
	font-size: 1.375rem;
}

.p-404__text {
	font-size: 1rem;
	margin-top: 1.25rem;
}

.p-cards {
	-ms-grid-columns: (1fr)[2];
	grid-template-columns: repeat(2, 1fr);
}

.p-contact__text {
	margin-top: 0.875rem;
}

.p-contact__buttons {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 2rem;
	margin-top: 3.25rem;
}

.p-feature__lists {
	margin-top: 3.5rem;
}

.p-feature__text {
	text-align: center;
}

.p-footer {
	padding-block: 0.5rem;
}

.p-footer__inner.l-inner {
	max-width: 37.5rem;
	padding-left: 5.3333333333%;
	padding-right: 5.3333333333%;
}

.p-footer__link {
	display: none;
}

.p-header {
	height: inherit;
	width: 100%;
}

.p-header__inner.l-inner {
	padding: 1rem calc(20 / 375 * 100%);
	padding: 1rem var(--padding-sp);
}

.p-header__logo {
	position: relative;
	width: 8.5625rem;
	z-index: 9999;
}

.p-header__nav {
	display: none;
}

.p-header__drawer {
	display: block;
	position: fixed;
	right: 1.25rem;
	top: 1rem;
	z-index: 200;
}

.p-header._en .p-header__inner.l-inner {
	padding: 1rem calc(20 / 375 * 100%);
	padding: 1rem var(--padding-sp);
}

.p-main {
	margin-left: 0;
	margin-left: initial;
	width: 100%;
}

.p-member-single__button {
	margin-inline: auto;
}

.p-member__items {
	gap: 2.5rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.p-mockup__items {
	-ms-grid-columns: (1fr)[1];
	grid-template-columns: repeat(1, 1fr);
}

.p-mv-lover__inner {
	padding-right: 0;
}

.p-mv-lover__img {
	aspect-ratio: 335/335;
}

.p-mv-lover__title {
	gap: 0.375rem;
	padding: 0.5rem 2.5rem 0.5rem 1.4375rem;
}

.p-mv-lover__titleEn {
	font-size: 2rem;
}

.p-mv-lover__titleJp {
	font-size: 1.25rem;
}

.p-news__lists {
	gap: 2.5rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.p-news__pagination {
	margin-top: 3.5rem;
}

.p-news__lists {
	margin-top: 3.875rem;
}

.p-seminar__contents {
	gap: 2.5rem;
	margin-top: 2.5rem;
}

.p-seminar__lists {
	gap: 2.5rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.p-seminar__pagination {
	margin-top: 3.5rem;
}

.p-seminar-seminar .p-seminar__lists {
	margin-top: 2.5rem;
}

.p-seminar._single .p-seminar__lists {
	margin-top: 2.5rem;
}

.p-top-access__image {
	margin-top: 3.125rem;
}

.p-top-access__address {
	margin-top: 2rem;
}

.p-top-access__map {
	aspect-ratio: 335/200;
	margin-top: 1.5rem;
}

.p-top-access__texts {
	margin-top: 0.75rem;
}

.p-top-access__dl {
	gap: 1rem;
}

.p-top-access__item {
	gap: 0.75rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.p-top-access__term {
	font-size: 1rem;
}

.p-top-access__list {
	font-size: 0.875rem;
}

.p-top-feature__subText {
	margin-top: 0.25rem;
}

.p-top-feature__lists {
	gap: 2.5rem;
	margin-top: 2.5rem;
}

.p-top-feature__listsLv2 {
	gap: 3rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	margin-top: 2.5rem;
}

.p-top-feature__dlItem {
	gap: 0.25rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.p-top-feature__button._animation {
	margin-top: 1.5rem;
}

.p-top-member__text {
	text-align: justify;
}

.p-top-member__modal {
	margin-top: 3.125rem;
}

.p-top-news-seminar__items {
	gap: 2.5rem;
	-ms-grid-columns: (1fr)[1];
	grid-template-columns: repeat(1, 1fr);
	margin-top: 3.5rem;
}

.p-top-news-seminar__button {
	max-width: 19.25rem;
}

.p-top-outline__media {
	gap: 1.5rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	margin-top: 3rem;
}

.p-top-outline__content {
	margin-top: 3rem;
}

.p-top-service__contents {
	margin-top: 4rem;
}

.p-top-service__subText {
	margin-top: 0.25rem;
}

.p-top-service__items {
	gap: 3rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	margin-top: 2.5rem;
}

.u-hidden-pc {
	display: block;
}

.u-hidden-sp {
	display: none;
}

.u-hidden-sp02 {
	display: none;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@-webkit-keyframes splide-loading {

0% {
	-webkit-transform: rotate(0);
	        transform: rotate(0);
}

to {
	-webkit-transform: rotate(1turn);
	        transform: rotate(1turn);
}

}

@keyframes splide-loading {

0% {
	-webkit-transform: rotate(0);
	        transform: rotate(0);
}

to {
	-webkit-transform: rotate(1turn);
	        transform: rotate(1turn);
}

}

/*# sourceMappingURL=style.css.map */
