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

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

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

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

:root {
	--color-base: #000;
	--color-background: #fff;
	--color-white: #fff;
	--color-gray-white: #F7F6F4;
	--color-light-gray: #F8F7F5;
	--color-yellow: #FDD401;
	--color-green: #99B901;
	--color-dark-green: #105F00;
	--color-orange: #E28301;
	--color-light-orange: #FFA426;
	--color-red: #E10048;
	--color-gray: #7C7B7A;
	--color-gradient-green: linear-gradient(264deg, #99B901 -3.85%, #105F00 74.17%);
	--color-visited: #800080;
}

/********************************
* イージング
********************************/

:root {
	--ease-cubic-main: cubic-bezier(0.45, 0.05, 0.5, 1);
}

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

body {
	background-color: #fff;
	color: #000;
	font-family: "Noto Sans JP", sans-serif, sans-serif;
	font-family: var(--font-noto-sans-jp), sans-serif;
}

/* link */

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

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

a:hover {
	opacity: 0.8;
}

/* 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-404 {
	margin-block: 5rem 7.5rem;
}

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

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: calc(1140px + 6.6666%);
	padding-left: 3.3333%;
	padding-right: 3.3333%;
	width: 100%;
}

.l-mv {
	margin-top: 4.875rem;
}

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

.l-section {
	margin-block: 2.8125rem;
}

.c-accordion01 {
	border-top: 0.0625rem solid rgba(0, 0, 0, 0.5);
}

.c-accordion01:last-child {
	border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.5);
}

.c-accordion01 summary {
	list-style: none;
}

.c-accordion01 summary::-webkit-details-marker {
	display: none;
}

.c-accordion01__title {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #fff;
	background: var(--color-background);
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 1.5rem;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 1.5rem 2rem 1.5rem 10.6875rem;
	width: 100%;
}

.c-accordion01__title:hover .c-accordion01__icon {
	-webkit-transform: scale(1.2);
	        transform: scale(1.2);
}

.c-accordion01__head {
	-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-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	gap: 1.5rem;
	min-width: 0;
}

.c-accordion01__q {
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	height: 2.5rem;
	width: 2.5rem;
}

.c-accordion01__q img {
	display: block;
	height: auto;
	width: 100%;
}

.c-accordion01__titleText {
	color: #000;
	color: var(--color-base);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.0625rem;
	line-height: 2;
}

.c-accordion01__icon {
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: -webkit-transform 0.3s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: transform 0.3s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: transform 0.3s cubic-bezier(0.45, 0.05, 0.5, 1), -webkit-transform 0.3s cubic-bezier(0.45, 0.05, 0.5, 1);
	-webkit-transition: -webkit-transform 0.3s var(--ease-cubic-main);
	transition: -webkit-transform 0.3s var(--ease-cubic-main);
	transition: transform 0.3s var(--ease-cubic-main);
	transition: transform 0.3s var(--ease-cubic-main), -webkit-transform 0.3s var(--ease-cubic-main);
	width: 1.5rem;
}

.c-accordion01__icon img {
	display: block;
	height: auto;
	width: 100%;
}

.c-accordion01.is-open .c-accordion01__icon {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.c-accordion01.is-open .c-accordion01__title:hover .c-accordion01__icon {
	-webkit-transform: rotate(180deg) scale(1.2);
	        transform: rotate(180deg) scale(1.2);
}

.c-accordion01__content {
	background: #F7F6F4;
	background: var(--color-gray-white);
	overflow: hidden;
}

.c-accordion01__content-inner {
	-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;
	gap: 1.5rem;
	padding: 1.5rem 2rem 1.5rem 10.6875rem;
}

.c-accordion01__a {
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	height: 2.5rem;
	width: 2.5rem;
}

.c-accordion01__a img {
	display: block;
	height: auto;
	width: 100%;
}

.c-accordion01__text {
	color: #000;
	color: var(--color-base);
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05rem;
	line-height: 2;
	min-width: 0;
}

.c-accordion {
	border: 0.125rem solid #000;
}

.c-accordion summary::-webkit-details-marker {
	display: none;
}

.c-accordion__title {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #000;
	color: #fff;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.125rem;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 1.25rem 2.5rem;
	text-decoration: none;
	width: 100%;
}

.c-accordion__icon i {
	font-size: 1rem;
	position: relative;
	right: 0;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.c-accordion.is-open .c-accordion__icon i {
	-webkit-transform: rotate(-180deg);
	        transform: rotate(-180deg);
}

.c-accordion__content {
	background: #fff;
	color: #000;
	font-size: 1.125rem;
	overflow: hidden;
	text-decoration: none;
}

.c-accordion__content-inner {
	padding: 1.25rem 2.5rem;
}

/* .c-accordion--type1 */

.c-accordion--type1 .c-accordion__title {
	background: #fff;
	color: #000;
	-webkit-transition: border 0.3s;
	transition: border 0.3s;
}

.c-accordion--type1 .c-accordion__icon i {
	font-size: 1.25rem;
}

/* .c-accordion--type2 */

.c-accordion--type2 .c-accordion__title {
	position: relative;
}

.c-accordion--type2 .c-accordion__icon::before,
.c-accordion--type2 .c-accordion__icon::after {
	background: #fff;
	content: "";
	height: 0.125rem;
	position: absolute;
	right: 1.875rem;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	-webkit-transition: 0.3s all;
	transition: 0.3s all;
	width: 0.9375rem;
}

.c-accordion--type2 .c-accordion__icon::after {
	-webkit-transform: translate(-50%, -50%) rotate(-90deg);
	        transform: translate(-50%, -50%) rotate(-90deg);
}

.c-accordion--type2.is-open .c-accordion__icon::after {
	-webkit-transform: translate(-50%, -50%) rotate(0deg);
	        transform: translate(-50%, -50%) rotate(0deg);
}

.c-accordion02__item {
	border-radius: 0.5rem;
	overflow: hidden;
}

.c-accordion02__item + .c-accordion02__item {
	margin-top: 1rem;
}

.c-accordion02__item summary {
	list-style: none;
}

.c-accordion02__item summary::-webkit-details-marker {
	display: none;
}

.c-accordion02__head {
	-moz-column-gap: 0.6875rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #105F00;
	background-color: var(--color-dark-green);
	color: #fff;
	color: var(--color-white);
	-webkit-column-gap: 0.6875rem;
	        column-gap: 0.6875rem;
	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;
	min-height: 3.75rem;
	padding: 0.5rem 1.25rem;
}

.c-accordion02__head._red {
	background-color: #E10048;
	background-color: var(--color-red);
}

.c-accordion02__label {
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.c-accordion02__number {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2;
}

.c-accordion02__summary {
	cursor: pointer;
	display: block;
}

.c-accordion02__preview {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	background-color: #F7F6F4;
	background-color: var(--color-gray-white);
	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;
	min-height: 15rem;
	padding: 2.5rem 6.75rem 1rem;
}

.c-accordion02__preview .c-item02,
.c-accordion02__preview .c-item04 {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.c-accordion02__preview .c-item02__illustration,
.c-accordion02__preview .c-item04__illustration {
	margin-top: 0;
}

.c-accordion02__content {
	background-color: #F7F6F4;
	background-color: var(--color-gray-white);
	height: 0;
	overflow: hidden;
}

.c-accordion02__body {
	padding: 0 6.75rem 2.5rem;
}

.c-accordion02__intro {
	-moz-column-gap: 3.875rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 3.875rem;
	        column-gap: 3.875rem;
	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: 1rem;
}

.c-accordion02__steps {
	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;
	margin-top: 1rem;
	position: relative;
	row-gap: 1rem;
}

.c-accordion02__step {
	-moz-column-gap: 1.5rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #fff;
	background-color: var(--color-white);
	border-radius: 0.5rem;
	-webkit-box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.05);
	        box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.05);
	-webkit-column-gap: 1.5rem;
	        column-gap: 1.5rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 1.25rem;
	position: relative;
	z-index: 1;
}

.c-accordion02__step .c-item01 {
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	width: 20rem;
}

.c-accordion02__stepText {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	margin: 0;
	max-width: 25rem;
}

.c-accordion02__summaryText {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-top: 1rem;
}

.c-accordion02__summaryAccent {
	color: #E28301;
	color: var(--color-orange);
}

.c-accordion02__icon {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #F7F6F4;
	background-color: var(--color-gray-white);
	cursor: pointer;
	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;
	padding: 1rem 0 1.25rem;
}

.c-accordion02__icon img {
	display: block;
	height: auto;
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: -webkit-transform 0.3s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: transform 0.3s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: transform 0.3s cubic-bezier(0.45, 0.05, 0.5, 1), -webkit-transform 0.3s cubic-bezier(0.45, 0.05, 0.5, 1);
	-webkit-transition: -webkit-transform 0.3s var(--ease-cubic-main);
	transition: -webkit-transform 0.3s var(--ease-cubic-main);
	transition: transform 0.3s var(--ease-cubic-main);
	transition: transform 0.3s var(--ease-cubic-main), -webkit-transform 0.3s var(--ease-cubic-main);
	width: 1.75rem;
}

.c-accordion02__item.is-open .c-accordion02__icon img {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
}

.c-balloon01 {
	background: url(../images/top/balloon01@2x.png) no-repeat center/contain;
	color: #000;
	color: var(--black, #000);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	padding: 2.4375rem 3rem 6.0625rem 3.375rem;
	text-align: center;
}

.c-balloon01__accent {
	color: #E28301;
	color: var(--color-orange);
	font-weight: 700;
}

/* c-balloon02 */

.c-balloon02 {
	background: url(../images/top/balloon02@2x.png) no-repeat center/contain;
	color: #000;
	color: var(--black, #000);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	padding: 2.375rem 3.375rem 6.25rem 3.5rem;
	text-align: center;
}

.c-balloon02__accent {
	color: #E28301;
	color: var(--color-orange);
	font-weight: 700;
}

/* c-balloon03 */

.c-balloon03 {
	background: url(../images/top/balloon03@2x.png) no-repeat center/contain;
	color: #000;
	color: var(--black, #000);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	padding: 2.5rem 1.5625rem 4.8125rem 1.8125rem;
	text-align: center;
}

.c-balloon03__accent {
	color: #E28301;
	color: var(--color-orange);
	font-weight: 700;
}

.c-banner01 {
	display: inline-block;
	margin-inline: auto;
	max-width: 17.75rem;
	width: 100%;
}

.c-banner01__head {
	-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;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.c-banner01__headLine {
	background: url(../images/common/banner01-slash-line.svg) no-repeat center/contain;
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	height: 1.1875rem;
	width: 0.5625rem;
}

.c-banner01__headLine._reverse {
	-webkit-transform: scaleX(-1);
	        transform: scaleX(-1);
}

.c-banner01__headText {
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
	color: #105F00;
	color: var(--color-dark-green);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-weight: 700;
	gap: 0.25rem;
	line-height: 1;
	white-space: nowrap;
}

.c-banner01__headSlash {
	font-size: 1rem;
	letter-spacing: 0.05em;
}

.c-banner01__headDate {
	font-size: 1rem;
	letter-spacing: 0.0625em;
}

.c-banner01__headNum {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0.05em;
}

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

.c-banner01__body {
	background: #99B901;
	background: var(--color-green);
	border-radius: 0.5rem;
	margin-top: 0.125rem;
	padding: 0.75rem 0.5625rem 0.6875rem;
}

.c-banner01__pill {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #fff;
	background: var(--color-white);
	border-radius: 2.6875rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 0.5rem;
	padding: 0.25rem 0.75rem 0.25rem 1.125rem;
}

.c-banner01__pillText {
	color: #105F00;
	color: var(--color-dark-green);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.3;
}

.c-banner01__pillLabel {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	color: #105F00;
	color: var(--color-dark-green);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 2rem;
	font-weight: 700;
	gap: 0.25rem;
	letter-spacing: 0.1em;
	line-height: 1;
	white-space: nowrap;
}

.c-banner01__pillIcon {
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	height: 1.6875rem;
	-webkit-transform: rotate(22.6deg);
	        transform: rotate(22.6deg);
	width: 0.4375rem;
}

.c-banner01__catch {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #fff;
	color: var(--color-white);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-weight: 700;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	letter-spacing: 0.1em;
	line-height: 1;
	margin-top: 0.625rem;
	text-align: center;
	white-space: nowrap;
}

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

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

.c-banner01__status {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #fff;
	color: var(--color-white);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.25rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-top: 0.5rem;
	white-space: nowrap;
}

.c-banner01__statusIcon {
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	height: 1.6875rem;
	margin-right: 0.25rem;
	width: 0.5625rem;
}

.c-banner02 {
	display: inline-block;
	margin-inline: auto;
	max-width: 25.625rem;
	width: 100%;
}

.c-banner02__head {
	-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;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.c-banner02__headLine {
	background: url(../images/common/banner01-slash-line.svg) no-repeat center/contain;
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	height: 1.1875rem;
	width: 0.5625rem;
}

.c-banner02__headLine._reverse {
	-webkit-transform: scaleX(-1);
	        transform: scaleX(-1);
}

.c-banner02__headText {
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
	color: #105F00;
	color: var(--color-dark-green);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-weight: 700;
	gap: 0.25rem;
	line-height: 1;
	white-space: nowrap;
}

.c-banner02__headDate {
	font-size: 1rem;
	letter-spacing: 0.0625em;
}

.c-banner02__headNum {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0.05em;
}

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

.c-banner02__body {
	background: #99B901;
	background: var(--color-green);
	border-radius: 0.5rem;
	margin-top: 0.75rem;
	padding: 1.25rem 0.8125rem 1.4375rem;
}

.c-banner02__pill {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #fff;
	background: var(--color-white);
	border-radius: 2.6875rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 0.5625rem;
	padding: 0.4375rem 0.75rem 0.4375rem 0.6875rem;
}

.c-banner02__badge {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #FFA426;
	background: var(--color-light-orange);
	border-radius: 50%;
	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-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	height: 4.5rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 4.5rem;
}

.c-banner02__badgeLabel {
	color: #fff;
	color: var(--color-white);
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	text-transform: lowercase;
}

.c-banner02__badgeIcon {
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	height: 1.5rem;
	margin-top: 0.125rem;
	width: 1.4375rem;
}

.c-banner02__pillText {
	color: #105F00;
	color: var(--color-dark-green);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
	white-space: nowrap;
}

.c-banner02__pillLabel {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	color: #105F00;
	color: var(--color-dark-green);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 2rem;
	font-weight: 700;
	gap: 0.25rem;
	letter-spacing: 0.1em;
	line-height: 1;
	white-space: nowrap;
}

.c-banner02__pillIcon {
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	height: 1.6875rem;
	-webkit-transform: rotate(22.6deg);
	        transform: rotate(22.6deg);
	width: 0.4375rem;
}

.c-banner02__catch {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	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: 1.4375rem;
	padding-inline: 0.4375rem;
}

.c-banner02__catchLead {
	color: #fff;
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
	white-space: nowrap;
}

.c-banner02__catchIcon {
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	height: 2.25rem;
	margin-right: 0.5625rem;
	width: 0.75rem;
}

.c-banner02__catchContent {
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
	color: #fff;
	color: var(--color-white);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.c-banner02__catchSmall {
	font-size: 1rem;
	letter-spacing: 0.1em;
}

.c-banner02__catchSmall._first {
	margin-right: 0.25rem;
}

.c-banner02__catchLarge {
	font-size: 2rem;
	letter-spacing: 0.1em;
}

.c-banner02__status {
	color: #fff;
	color: var(--color-white);
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-top: 1.4375rem;
	text-align: center;
	white-space: nowrap;
}

.c-button01 {
	background-color: #fff;
	background-color: var(--color-white);
	border: 0.0625rem solid #105F00;
	border: 0.0625rem solid var(--color-dark-green);
	border-radius: 0.5rem;
	color: #105F00;
	color: var(--color-dark-green);
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 200%;
	opacity: 1;
	padding: 0.625rem 2.0625rem;
	-webkit-transition: color 0.25s cubic-bezier(0.45, 0.05, 0.5, 1), background-color 0.25s cubic-bezier(0.45, 0.05, 0.5, 1), border-color 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: color 0.25s cubic-bezier(0.45, 0.05, 0.5, 1), background-color 0.25s cubic-bezier(0.45, 0.05, 0.5, 1), border-color 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	-webkit-transition: color 0.25s var(--ease-cubic-main), background-color 0.25s var(--ease-cubic-main), border-color 0.25s var(--ease-cubic-main);
	transition: color 0.25s var(--ease-cubic-main), background-color 0.25s var(--ease-cubic-main), border-color 0.25s var(--ease-cubic-main);
}

.c-button01:focus-visible {
	outline: 0.125rem solid #105F00;
	outline: 0.125rem solid var(--color-dark-green);
	outline-offset: 0.125rem;
}

.c-button01[aria-disabled=true] {
	cursor: not-allowed;
	opacity: 0.5;
}

/* c-button01._accent */

.c-button01._accent {
	background-color: #FDD401;
	background-color: var(--color-yellow);
	border: 0.0625rem solid transparent;
	color: #fff;
	color: var(--color-white);
	isolation: isolate;
	overflow: hidden;
	position: relative;
}

.c-button01._accent::before {
	background: linear-gradient(264deg, #99B901 -3.85%, #105F00 74.17%);
	background: var(--color-gradient-green);
	border-radius: inherit;
	content: "";
	inset: 0;
	opacity: 1;
	position: absolute;
	-webkit-transition: opacity 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: opacity 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	-webkit-transition: opacity 0.25s var(--ease-cubic-main);
	transition: opacity 0.25s var(--ease-cubic-main);
	z-index: -1;
}

/* c-button02 */

.c-button02 {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #FDD401;
	background-color: var(--color-yellow);
	border-radius: 0.5rem;
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.125rem;
	isolation: isolate;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	min-height: 3.5rem;
	opacity: 1;
	overflow: hidden;
	padding: 0.3125rem 0.625rem 0.5625rem;
	position: relative;
	text-align: center;
	text-decoration: none;
	width: 15rem;
}

.c-button02::before {
	background: linear-gradient(264deg, #99B901 -3.85%, #105F00 74.17%);
	background: var(--color-gradient-green);
	border-radius: inherit;
	content: "";
	inset: 0;
	opacity: 1;
	position: absolute;
	-webkit-transition: opacity 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: opacity 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	-webkit-transition: opacity 0.25s var(--ease-cubic-main);
	transition: opacity 0.25s var(--ease-cubic-main);
	z-index: -1;
}

.c-button02__textHead {
	background-color: #fff;
	background-color: var(--color-white);
	border-radius: 0.5625rem;
	color: #105F00;
	color: var(--color-dark-green);
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
	margin: 0;
	padding: 0 0.625rem 0.125rem;
	white-space: nowrap;
}

.c-button02__textHeadAccent {
	font-size: 1rem;
	font-weight: 900;
}

.c-button02__textFooter {
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
	color: #fff;
	color: var(--color-white);
	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;
	letter-spacing: 0.05em;
	line-height: 1;
	margin: 0;
	-webkit-transition: color 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: color 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	-webkit-transition: color 0.25s var(--ease-cubic-main);
	transition: color 0.25s var(--ease-cubic-main);
	white-space: nowrap;
}

.c-button02__textFooterLarge {
	font-size: 1.5rem;
	letter-spacing: 0.05em;
}

/* c-button03 */

.c-button03 {
	grid-column-gap: 1.375rem;
	-moz-column-gap: 1.375rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #fff;
	background-color: var(--color-white);
	border-radius: 0.5rem;
	-webkit-box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
	        box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
	-webkit-column-gap: 1.375rem;
	        column-gap: 1.375rem;
	display: inline-block;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: auto 1fr;
	grid-template-columns: auto 1fr;
	padding: 1rem 2rem;
	-webkit-transition: background-color 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: background-color 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	-webkit-transition: background-color 0.25s var(--ease-cubic-main);
	transition: background-color 0.25s var(--ease-cubic-main);
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-button03::before {
	-webkit-mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-image: url(../images/common/materials-icon.svg);
	background: #105F00;
	background: var(--color-dark-green);
	content: "";
	height: 2.4375rem;
	mask-image: url(../images/common/materials-icon.svg);
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 1.75rem;
}

.c-button03__text {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	color: #105F00;
	color: var(--color-dark-green);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

.c-button03__textLarge {
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	padding-right: 0.25rem;
}

/* c-button04 */

.c-button04 {
	grid-column-gap: 1.375rem;
	-moz-column-gap: 1.375rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #fff;
	background-color: var(--color-white);
	border: 0.0625rem solid #105F00;
	border: 0.0625rem solid var(--color-dark-green);
	border-radius: 0.5rem;
	color: #105F00;
	color: var(--color-dark-green);
	-webkit-column-gap: 1.375rem;
	        column-gap: 1.375rem;
	display: inline-block;
	display: -ms-grid;
	display: grid;
	font-size: 1rem;
	font-weight: 700;
	-ms-grid-columns: auto 1fr;
	grid-template-columns: auto 1fr;
	letter-spacing: 0.05em;
	line-height: 1;
	padding: 1rem 2.125rem;
	-webkit-transition: background-color 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: background-color 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	-webkit-transition: background-color 0.25s var(--ease-cubic-main);
	transition: background-color 0.25s var(--ease-cubic-main);
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-button04::after {
	-webkit-mask-position: center center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-mask-image: url(../images/common/arrow-icon.svg);
	background: #105F00;
	background: var(--color-dark-green);
	content: "";
	height: 1.375rem;
	mask-image: url(../images/common/arrow-icon.svg);
	mask-position: center center;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: -webkit-transform 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: transform 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	transition: transform 0.25s cubic-bezier(0.45, 0.05, 0.5, 1), -webkit-transform 0.25s cubic-bezier(0.45, 0.05, 0.5, 1);
	-webkit-transition: -webkit-transform 0.25s var(--ease-cubic-main);
	transition: -webkit-transform 0.25s var(--ease-cubic-main);
	transition: transform 0.25s var(--ease-cubic-main);
	transition: transform 0.25s var(--ease-cubic-main), -webkit-transform 0.25s var(--ease-cubic-main);
	width: 0.8125rem;
}

.c-button {
	background: #000;
	border: 0.0625rem solid #000;
	color: #fff;
	display: inline-block;
	font-size: 1.125rem;
	padding: 1.25rem 2.5rem;
	text-align: center;
	text-decoration: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.c-button:hover {
	background: #fff;
	color: #000;
}

.c-button--arrow {
	padding-right: 3.125rem;
	position: relative;
}

.c-button--arrow::after {
	content: "\f105";
	font-family: "Font Awesome 6 Free";
	font-size: 1rem;
	font-weight: 900;
	position: absolute;
	right: 0.9375rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.c-card01 {
	background: #fff;
	background: var(--color-white);
	border-radius: 0.5rem;
	-webkit-box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
	        box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
	padding: 1.5rem 1.75rem;
}

.c-card01__image {
	aspect-ratio: 112/112;
	display: block;
	margin-inline: auto;
	max-width: 7rem;
	overflow: hidden;
	width: 100%;
}

.c-card01__image img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

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

.c-card01__heading {
	background: #99B901;
	background: var(--color-green);
	border-radius: 1.25rem;
	color: #fff;
	color: var(--color-white);
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1;
	padding-block: 0.75rem 0.5rem;
	text-align: center;
}

.c-card01__text {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-top: 1rem;
}

.c-card01__textAccent {
	font-weight: 700;
}

.c-card01._lightOrange .c-card01__heading {
	background: #FFA426;
	background: var(--color-light-orange);
}

.c-card01._red .c-card01__heading {
	background: #E10048;
	background: var(--color-red);
}

.c-card01._yellow .c-card01__heading {
	background: #FDD401;
	background: var(--color-yellow);
}

.c-card01._green .c-card01__heading {
	background: #99B901;
	background: var(--color-green);
}

.c-card01._orange .c-card01__heading {
	background: #E28301;
	background: var(--color-orange);
}

.c-card01._darkGreen .c-card01__heading {
	background: #105F00;
	background: var(--color-dark-green);
}

/* c-card02 */

.c-card02 {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #fff;
	background: var(--color-white);
	border-radius: 0.5rem;
	-webkit-box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, 0.05);
	        box-shadow: 0 0 0.9375rem 0 rgba(0, 0, 0, 0.05);
	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: 1.5rem;
	padding: 1.875rem;
	width: 100%;
}

.c-card02__image {
	aspect-ratio: 280/140;
	max-width: 17.5rem;
	overflow: hidden;
	width: 100%;
}

.c-card02__image img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.c-card02__body {
	width: 100%;
}

.c-card02__heading {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2;
}

.c-card02__text {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-top: 0.5rem;
}

.c-card02__textAccent {
	color: #E28301;
	color: var(--color-orange);
	font-weight: 700;
}

.c-card02__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;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.5rem;
	width: 100%;
}

.c-card02__contentHeading {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2;
	text-align: center;
}

.c-card02__contentList {
	-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-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.5rem;
	list-style: none;
	margin: 0;
	margin-inline: auto;
	max-width: 13.3125rem;
	padding: 0;
	width: 100%;
}

.c-card02__contentItem {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 1.875rem;
	color: #fff;
	color: var(--color-white);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 1rem;
	font-weight: 900;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	letter-spacing: 0.05em;
	line-height: 1.8;
	max-width: 13.3125rem;
	min-height: 2.125rem;
	padding-block: 0.3125rem;
	text-align: center;
	width: 100%;
}

.c-card02__contentItem._red {
	background: #E10048;
	background: var(--color-red);
}

.c-card02__contentItem._darkGreen {
	background: #105F00;
	background: var(--color-dark-green);
}

.c-card02__contentItem._yellow {
	background: #FDD401;
	background: var(--color-yellow);
}

.c-card02__contentItem._lightOrange {
	background: #FFA426;
	background: var(--color-light-orange);
}

.c-card02__contentItem._orange {
	background: #E28301;
	background: var(--color-orange);
}

.c-card02__contentItem._green {
	background: #99B901;
	background: var(--color-green);
}

/* c-card03 */

.c-card03 {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.c-card03__number {
	background: #F7F6F4;
	background: var(--color-gray-white);
	color: #7C7B7A;
	color: var(--color-gray);
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2;
	text-align: center;
}

.c-card03__image {
	aspect-ratio: 150/150;
	display: block;
	margin-inline: auto;
	max-width: 9.375rem;
	overflow: hidden;
	width: 100%;
}

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

.c-card03__body {
	margin-top: 2rem;
}

.c-card03__heading {
	color: #E28301;
	color: var(--color-orange);
	font-size: 1.25rem;
	font-size: clamp(1.125rem, 0.629rem + 0.69vi, 1.25rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.8;
	text-align: center;
}

.c-card03__text {
	font-size: clamp(0.938rem, 0.69rem + 0.345vi, 1rem);
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
}

/* c-card04 */

.c-card04 {
	max-width: 30rem;
	padding-top: 3.875rem;
	position: relative;
	width: 100%;
}

.c-card04__badge {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #FFA426;
	background: var(--color-light-orange);
	border-radius: 50%;
	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.375rem;
	height: 5.25rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	left: 50%;
	padding-bottom: 0.4375rem;
	position: absolute;
	top: 0;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 5.25rem;
	z-index: 1;
}

.c-card04__badgeLabel {
	color: #fff;
	color: var(--color-white);
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2;
	text-transform: lowercase;
}

.c-card04__badgeIcon {
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	height: 1.75rem;
	margin-top: -0.5rem;
	width: 1.625rem;
}

.c-card04__card {
	background: #fff;
	background: var(--color-white);
	border: 0.1875rem solid #000;
	border: 0.1875rem solid var(--color-base);
	border-radius: 0.5rem;
	overflow: hidden;
}

.c-card04__header {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #000;
	background: var(--color-base);
	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;
	min-height: 5.0625rem;
	padding: 1.625rem 2.1875rem 1rem;
}

.c-card04__title {
	color: #fff;
	color: var(--color-white);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2;
	text-align: center;
}

.c-card04__body {
	padding: 1.375rem 2.1875rem 2.1875rem;
}

.c-card04__price,
.c-card04__text {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #F7F6F4;
	background: var(--color-gray-white);
	border-radius: 0.5rem;
	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;
	min-height: 3.375rem;
	padding: 0.75rem 1rem;
	text-align: center;
}

.c-card04__price {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

.c-card04__priceLarge {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

.c-card04__priceSmall {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

.c-card04__text {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-top: 1.3125rem;
	width: 100%;
}

.c-card04__textAccent {
	font-weight: 700;
}

.c-card04__banner {
	margin-top: 3.375rem;
}

.c-card__body {
	padding: 0.9375rem;
}

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

.c-card__title {
	font-size: 1.25rem;
	font-weight: bold;
	margin-top: 0.625rem;
}

.c-card__text {
	margin-top: 0.625rem;
}

.c-card--shadow {
	-webkit-box-shadow: 0 0 0.3125rem 0 rgba(0, 0, 0, 0.3);
	        box-shadow: 0 0 0.3125rem 0 rgba(0, 0, 0, 0.3);
}

.c-card--horizon {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 20% 80%;
	grid-template-columns: 20% 80%;
}

.c-card--horizon .c-card__body {
	padding: 0.625rem 0.9375rem;
}

.c-drawer__button {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #000;
	background: var(--color-base);
	border-radius: 50%;
	-webkit-box-shadow: 0 0 2rem transparent;
	        box-shadow: 0 0 2rem transparent;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 3.125rem;
	-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: 3.125rem;
	z-index: 200;
}

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

.c-drawer__line,
.c-drawer__line::before,
.c-drawer__line::after {
	background-color: #fff;
	border-radius: 0.1875rem;
	content: "";
	display: block;
	height: 0.125rem;
	position: absolute;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	width: 1.5625rem;
}

.c-drawer__line::before {
	bottom: 0.5rem;
}

.c-drawer__line::after {
	top: 0.5rem;
}

.c-drawer__button[aria-expanded=true] {
	background: #000;
	background: var(--color-base);
}

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

.c-drawer__button[aria-expanded=true] .c-drawer__line::before {
	bottom: 0;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}

.c-drawer__button[aria-expanded=true] .c-drawer__line::after {
	top: 0;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.c-drawer__modal {
	background: #105F00;
	background: var(--color-dark-green);
	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;
	left: 50%;
	overflow-y: auto;
	overscroll-behavior-y: contain;
	position: absolute;
	scrollbar-width: none;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 100vw;
}

.c-drawer__lists {
	padding-block: 5rem 7.5rem;
}

.c-drawer__linkText {
	color: #fff;
	color: var(--color-white);
	display: block;
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-inline: auto;
	padding-block: 1.25rem;
	padding-left: 1.5rem;
	position: relative;
	text-transform: capitalize;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-drawer__linkText::before {
	color: #fff;
	color: var(--color-white);
	content: "\f107";
	font-family: "Font Awesome 6 Free";
	font-size: 0.9375rem;
	font-weight: 900;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.c-drawer__linkText._uppercase {
	text-transform: uppercase;
}

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

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

.c-drawer--open-right .c-drawer__modal.is-open {
	margin-top: 4.5625rem;
	-webkit-transform: translateX(0);
	        transform: translateX(0);
}

/* 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);
}

.c-form__item {
	grid-gap: 2.875rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -ms-grid;
	display: grid;
	gap: 2.875rem;
	-ms-grid-columns: 11.25rem minmax(0, 1fr);
	grid-template-columns: 11.25rem minmax(0, 1fr);
}

.c-form__item:nth-child(n+2) {
	margin-top: 1.5rem;
}

.c-form__item._top {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	margin-top: 2.1875rem;
}

.c-form__item._top .c-form__dt {
	margin-top: 0.71875rem;
}

.c-form__item:first-child {
	margin-top: 0;
}

.c-form__dt {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 0.75rem;
}

.c-form__item-text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
}

.c-form__privacy {
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 160%;
	margin-top: 3.0625rem;
	text-align: center;
}

.c-form__privacyLink {
	color: #E10048;
	color: var(--color-red);
	display: inline-block;
	-webkit-text-decoration-line: underline;
	        text-decoration-line: underline;
	text-underline-offset: 0.125rem;
}

.c-form__accent {
	background: transparent;
	border: 0.0625rem solid #E10048;
	border: 0.0625rem solid var(--color-red);
	border-radius: 0.5rem;
	color: #E10048;
	color: var(--color-red);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 160%;
	padding: 0.125rem 0.75rem 0.1875rem;
}

.c-form__checkbox,
.c-form__ddLink {
	font-family: "Noto Sans JP";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.c-form__checkbox {
	margin-top: 1rem;
	text-align: center;
}

.c-form__ddLink {
	text-decoration: underline;
	text-underline-offset: 0.25rem;
}

.c-form__button {
	margin-top: 2.5rem;
	text-align: center;
}

.c-form__link {
	text-decoration: underline;
	text-underline-offset: 0.125rem;
}

.c-form__checkbox-text {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: normal;
	text-align: center;
}

.c-heading01 {
	grid-gap: 0.5rem;
	display: -ms-grid;
	display: grid;
	gap: 0.5rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	text-align: center;
}

.c-heading01__heading {
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2;
}

.c-heading01__subheading {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2;
	position: relative;
	text-transform: capitalize;
}

.c-heading01__subheading::before {
	background-image: url(../images/common/circles-icon@2x.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
	height: 0.5rem;
	left: 50%;
	position: absolute;
	top: -0.5rem;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 4rem;
}

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

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

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

.c-item01 {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: #FFA426;
	background: var(--color-light-orange);
	border-radius: 1.875rem;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 3.25rem 1fr;
	grid-template-columns: 3.25rem 1fr;
	padding: 0.25rem 0.3125rem;
	width: 320px;
}

.c-item01__image {
	aspect-ratio: 52/52;
	display: block;
	margin-right: auto;
	max-width: 3.25rem;
	overflow: hidden;
	width: 100%;
}

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

.c-item01__heading {
	color: #fff;
	color: var(--color-white);
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-inline: auto;
	text-align: center;
}

.c-item01._green {
	background: #99B901;
	background: var(--color-green);
}

.c-item01._red {
	background: #E10048;
	background: var(--color-red);
}

.c-item01._yellow {
	background: #FDD401;
	background: var(--color-yellow);
}

.c-item01._darkGreen {
	background: #105F00;
	background: var(--color-dark-green);
}

.c-item02 {
	-moz-column-gap: 0.75rem;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-column-gap: 0.75rem;
	        column-gap: 0.75rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-item02__illustration {
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	margin-top: 0.625rem;
	width: 6.5625rem;
}

.c-item02__illustration img {
	display: block;
	height: auto;
	width: 100%;
}

.c-item02__bubble {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: url(../images/top/item02-bubble.svg) no-repeat center/contain;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0;
	min-height: 11.9375rem;
	padding: 2.25rem 0.8125rem 1.75rem 2.6875rem;
	width: 13.5625rem;
}

.c-item02__text {
	color: #000;
	color: var(--color-base);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-align: center;
}

.c-item03 {
	-moz-column-gap: 1.125rem;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-column-gap: 1.125rem;
	        column-gap: 1.125rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-item03__bubble {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: url(../images/top/item03-bubble.svg) no-repeat center/contain;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0;
	min-height: 13.9375rem;
	padding-left: 1.875rem;
	padding-top: 0.875rem;
	-webkit-transform: scaleX(-1);
	        transform: scaleX(-1);
	width: 15.875rem;
}

.c-item03__text {
	color: #000;
	color: var(--color-base);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-align: center;
	-webkit-transform: scaleX(-1);
	        transform: scaleX(-1);
}

.c-item03__accent {
	color: #E28301;
	color: var(--color-orange);
}

.c-item03__brand {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-weight: 700;
}

.c-item03__logo {
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	margin-top: 3.375rem;
	width: 7.25rem;
}

.c-item03__logo img {
	display: block;
	height: auto;
	width: 100%;
}

.c-item04 {
	-moz-column-gap: -0.5625rem;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-column-gap: -0.5625rem;
	        column-gap: -0.5625rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-item04__illustration {
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	margin-top: 0.9375rem;
	width: 8.375rem;
}

.c-item04__illustration img {
	display: block;
	height: auto;
	width: 100%;
}

.c-item04__bubble {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: url(../images/top/item02-bubble.svg) no-repeat center/contain;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0;
	min-height: 11.9375rem;
	padding: 2.25rem 0.8125rem 1.75rem 2.6875rem;
	width: 13.5625rem;
}

.c-item04__text {
	color: #000;
	color: var(--color-base);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-align: center;
}

.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: #000;
	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-media01 {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	display: -ms-grid;
	display: grid;
	    grid-template-areas: "contents image";
}

.c-media01__contents {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-gap: 1.125rem;
	display: -ms-grid;
	display: grid;
	gap: 1.125rem;
	grid-area: contents;
	-ms-grid-columns: 1.125rem minmax(0, 1fr);
	grid-template-columns: 1.125rem minmax(0, 1fr);
}

.c-media01._reverse > .c-media01__contents {
	-ms-grid-row: 1;
	-ms-grid-column: 2;
}

.c-media02 > .c-media01__contents {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}

.c-media01__number {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-top: 1rem;
}

.c-media01__heading {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.c-media01__headingAccent {
	color: #E28301;
	color: var(--color-orange);
}

.c-media01__text {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-top: 0.5rem;
}

.c-media01__textAccent {
	font-weight: 700;
}

.c-media01__image {
	-ms-grid-row: 1;
	-ms-grid-column: 2;
	grid-area: image;
	-webkit-transform-origin: center center;
	        transform-origin: center center;
}

.c-media01._reverse > .c-media01__image {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}

.c-media02 > .c-media01__image {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}

/* c-media01 _first */

.c-media01._first {
	gap: 0.6875rem;
	-ms-grid-columns: 30.375rem 18.1875rem;
	grid-template-columns: 30.375rem 18.1875rem;
}

/* c-media01 _second */

.c-media01._second {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 2.625rem;
	-ms-grid-columns: 18.1875rem 30.375rem;
	grid-template-columns: 18.1875rem 30.375rem;
}

.c-media01._second .c-media01__image {
	margin-top: 0.625rem;
}

/* c-media01 _third */

.c-media01._third {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1.5rem;
	-ms-grid-columns: 30.375rem 16.625rem;
	grid-template-columns: 30.375rem 16.625rem;
}

.c-media01._third .c-media01__image {
	margin-top: 0.625rem;
}

/* c-media01 _reverse */

.c-media01._reverse {
	    grid-template-areas: "image contents";
}

/* c-media02 */

.c-media02 {
	grid-gap: 3.6875rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -ms-grid;
	display: grid;
	gap: 3.6875rem;
	    grid-template-areas: "contents image";
	-ms-grid-columns: 580fr 3.6875rem 361fr;
	grid-template-columns: 580fr 361fr;
}

.c-media02__content {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
	grid-area: contents;
}

.c-media01._reverse > .c-media02__content {
	-ms-grid-row: 1;
	-ms-grid-column: 2;
}

.c-media02 > .c-media02__content {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}

.c-media02__heading {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.8;
}

.c-media02__headingSmall {
	font-size: 1.5rem;
}

.c-media02__headingContent {
	-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;
}

.c-media02__headingImage {
	margin-right: 0.3125rem;
	max-width: 16.625rem;
	width: 100%;
}

.c-media02__text {
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-top: 1.5rem;
}

.c-media02__textAccent {
	font-weight: 700;
}

.c-media02__image {
	-ms-grid-row: 1;
	-ms-grid-column: 2;
	aspect-ratio: 361/361;
	display: block;
	grid-area: image;
	overflow: hidden;
	width: 100%;
}

.c-media01._reverse > .c-media02__image {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}

.c-media02 > .c-media02__image {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}

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

.c-modal {
	padding: 6.25rem 0;
}

.c-modal__inner {
	margin: 0 auto;
	padding: 0 1.25rem;
	width: min(100%, 70rem);
}

.c-modal__cards {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.c-modal__card {
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
	width: calc((100% - 4rem) / 3);
}

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

.c-modal__trigger {
	cursor: pointer;
}

.c-modal__card:nth-child(3n-1),
.c-modal__card:nth-child(3n) {
	margin-left: 2rem;
}

.c-modal-card__image {
	position: relative;
}

.c-modal-card__image:before {
	content: "";
	display: block;
	padding-top: 120%;
}

.c-modal-card__image img {
	-o-object-fit: cover;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}

.c-modal-card__content {
	margin-top: 1.875rem;
}

.c-modal-card__title {
	text-align: center;
}

/* モーダル本体 */

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

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

.c-modal__container {
	background: #fff;
	height: calc(100% - 2.5rem);
	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%;
	padding: 5rem 1.25rem 1.25rem;
	position: relative;
}

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

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

.c-modal__close:before,
.c-modal__close:after {
	background: #fff;
	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-profile__group {
	-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-profile__image {
	position: relative;
	width: 25rem;
}

.c-profile__image:before {
	content: "";
	display: block;
	padding-top: 120%;
}

.c-profile__image img {
	-o-object-fit: cover;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	width: 100%;
}

.c-profile__content {
	padding-left: 2.5rem;
	width: calc(100% - 25rem);
}

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

.c-profile__text {
	line-height: 2;
	margin-top: 1.875rem;
}

.c-mv {
	padding-block: 6.125rem 2.5rem;
	position: relative;
}

.c-mv__background {
	height: 51.0625rem;
	left: calc(50% - 45rem);
	position: absolute;
	top: 1.25rem;
	width: 111rem;
	z-index: 0;
}

.c-mv__inner.l-inner {
	grid-gap: 3rem;
	display: -ms-grid;
	display: grid;
	gap: 3rem;
	-ms-grid-columns: 22.125rem 44.8125rem;
	grid-template-columns: 22.125rem 44.8125rem;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	max-width: calc(71.25rem + 6.6666%);
	position: relative;
}

.c-mv__content {
	margin-left: 4.375rem;
	padding-top: 4.25rem;
	position: relative;
	z-index: 1;
}

.c-mv__heading {
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1.3;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-mv__text {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-top: 0.9375rem;
	max-width: 12.625rem;
	width: 100%;
}

.c-mv__items {
	margin-top: 1.875rem;
}

.c-mv__item.js-balloon {
	-webkit-animation: none;
	        animation: none;
}

.c-mv__item.js-balloon.is-dropped .c-banner01 {
	-webkit-animation: c-mv-balloon-float 3s ease-in-out infinite;
	        animation: c-mv-balloon-float 3s ease-in-out infinite;
}

.c-mv__titles {
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 2;
}

.c-mv__title {
	-webkit-user-select: text;
	-moz-user-select: text;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: -webkit-gradient(linear, left top, left bottom, from(#99B901), to(#105F00));
	background: linear-gradient(180deg, #99B901 0%, #105F00 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(var(--color-green)), to(var(--color-dark-green)));
	background: linear-gradient(180deg, var(--color-green) 0%, var(--color-dark-green) 100%);
	border-radius: 50%;
	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: 8.125rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	pointer-events: auto;
	position: absolute;
	text-align: center;
	-ms-user-select: text;
	    user-select: text;
	width: 8.125rem;
}

.c-mv__title::after {
	background: #fff;
	background: var(--color-white);
	border-radius: 50%;
	content: "";
	inset: 0.1875rem;
	position: absolute;
}

.c-mv__title._first {
	left: calc(50% + 12.5rem);
	top: 2rem;
}

.c-mv__title._second {
	left: calc(50% + 20.75rem);
	top: 5.75rem;
}

.c-mv__title._third {
	left: 54.375rem;
	left: calc(50% + 25rem);
	top: 13.75rem;
}

.c-mv__titleLine {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.3;
	position: relative;
	z-index: 1;
}

.c-mv__titleAccent {
	color: #99B901;
	color: var(--color-green);
	font-size: 1.75rem;
	line-height: 1.3;
}

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

.c-tab {
	margin-inline: auto;
	max-width: 62.5rem;
}

.c-tab__menu {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.c-tab__menuItem {
	-moz-column-gap: 0.6875rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #d9d9d9;
	border: none;
	border-radius: 0.5rem 0.5rem 0 0;
	color: #000;
	color: var(--color-base);
	-webkit-column-gap: 0.6875rem;
	        column-gap: 0.6875rem;
	cursor: pointer;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	min-height: 3.75rem;
	padding: 0.5rem 1.25rem;
	-webkit-transition: background-color 0.3s, color 0.3s;
	transition: background-color 0.3s, color 0.3s;
}

.c-tab__menuLabel {
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.c-tab__menuNumber {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2;
}

.c-tab__menuItem:nth-child(1).js-tab-active {
	background-color: #105F00;
	background-color: var(--color-dark-green);
	color: #fff;
	color: var(--color-white);
}

.c-tab__menuItem:nth-child(2).js-tab-active {
	background-color: #E10048;
	background-color: var(--color-red);
	color: #fff;
	color: var(--color-white);
}

.c-tab__content {
	background-color: #F7F6F4;
	background-color: var(--color-gray-white);
	border-radius: 0 0 0.5rem 0.5rem;
}

.c-tab__contentItem {
	display: none;
	padding: 2.5rem 6.75rem;
}

.c-tab__contentItem:first-child {
	display: block;
}

.c-tab__intro {
	-moz-column-gap: 3.875rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 3.875rem;
	        column-gap: 3.875rem;
	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;
}

.c-tab__steps {
	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;
	margin-top: 1rem;
	position: relative;
	row-gap: 1rem;
}

.c-tab__step {
	-moz-column-gap: 1.5rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #fff;
	background-color: var(--color-white);
	border-radius: 0.5rem;
	-webkit-box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.05);
	        box-shadow: 0 0 0.9375rem rgba(0, 0, 0, 0.05);
	-webkit-column-gap: 1.5rem;
	        column-gap: 1.5rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 1.25rem;
	position: relative;
	z-index: 1;
}

.c-tab__step .c-item01 {
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	width: 20rem;
}

.c-tab__stepText {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	margin: 0;
	max-width: 25rem;
}

.c-tab__summary {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-top: 1rem;
}

.c-tab__summaryAccent {
	color: #E28301;
	color: var(--color-orange);
}

.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: #000;
	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: #fff;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 0.5rem;
	-webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05) inset;
	        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05) 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] {
	height: 0;
	opacity: 0;
	position: absolute;
	width: 0;
}

[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]:focus + span::before {
	border-color: #391E88;
	-webkit-box-shadow: 0 0 0 2px rgba(57, 30, 136, 0.3);
	        box-shadow: 0 0 0 2px rgba(57, 30, 136, 0.3);
}

[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] {
	height: 0;
	opacity: 0;
	position: absolute;
	width: 0;
}

[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.5rem;
	position: relative;
	-webkit-transition: 0.3s ease;
	transition: 0.3s ease;
}

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

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

[type=checkbox]:focus + span::before {
	border-color: #58330D;
	-webkit-box-shadow: 0 0 0 2px rgba(88, 51, 13, 0.3);
	        box-shadow: 0 0 0 2px rgba(88, 51, 13, 0.3);
}

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

select {
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto; /*↓デフォルトではないアイコンを使う場合は入力する*/
	background-color: #fff;
	border: none;
	border: 1px solid #AAAAAA;
	border-radius: 0; /*↓リセットCSS */
	border-radius: 0.5rem; /*↓デフォルトのアイコンを消す場合はコメントアウト（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: 11.75rem;
	width: 100%;
}

::-moz-placeholder {
	color: #999;
	font-size: 1rem;
	font-weight: 300;
	line-height: normal;
}

::-webkit-input-placeholder {
	color: #999;
	font-size: 1rem;
	font-weight: 300;
	line-height: normal;
}

:-ms-input-placeholder {
	color: #999;
	font-size: 1rem;
	font-weight: 300;
	line-height: normal;
}

::-ms-input-placeholder {
	color: #999;
	font-size: 1rem;
	font-weight: 300;
	line-height: normal;
}

::placeholder {
	color: #999;
	font-size: 1rem;
	font-weight: 300;
	line-height: normal;
}

/* フォーム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: 150%;
}

.p-404__text {
	font-size: 1.125rem;
	line-height: 150%;
	margin-top: 2rem;
}

.p-404__button {
	margin-top: 3.75rem;
}

.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 {
	padding-block: 6.25rem;
}

.p-contact__inner.l-inner {
	max-width: calc(62.5rem + 6.6666%);
}

.p-contact__box {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: #F7F6F4;
	background-color: var(--color-gray-white);
	border-radius: 0.5rem;
	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: 2.5rem;
	padding: 3.125rem 6.25rem;
}

.p-contact__heading {
	width: 100%;
}

.p-contact__body {
	max-width: 43.75rem;
	width: 100%;
}

.p-contact__lead {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	margin: 0;
	text-align: center;
}

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

.p-contact__form .c-form__item:first-child {
	margin-top: 0;
}

.p-cta {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	background: linear-gradient(264deg, #99B901 -3.85%, #105F00 74.17%);
	background: var(--color-gradient-green);
	display: -ms-grid;
	display: grid;
	min-height: 13.75rem;
}

.p-cta__inner.l-inner {
	width: 100%;
}

.p-cta__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;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 0.5rem;
}

.p-cta__lead {
	-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;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin: 0;
}

.p-cta__leadLine {
	-webkit-mask: url(../images/common/banner01-slash-line.svg) no-repeat center/contain;
	background-color: #fff;
	background-color: var(--color-white);
	display: block;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	height: 1.1875rem;
	-webkit-mask: url(../images/common/banner01-slash-line.svg) no-repeat center/contain;
	        mask: url(../images/common/banner01-slash-line.svg) no-repeat center/contain;
	width: 0.5625rem;
}

.p-cta__leadLine._reverse {
	-webkit-transform: scaleX(-1);
	        transform: scaleX(-1);
}

.p-cta__leadText {
	color: #fff;
	color: var(--color-white);
	font-size: 1.6875rem;
	font-weight: 500;
	letter-spacing: 0.0492592593em;
	line-height: 1;
	white-space: nowrap;
}

.p-cta__leadAccent {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 2.5rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1;
}

.p-cta__button {
	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-effort {
	background: #FDD401;
	background: var(--color-yellow);
	padding-block: 6.25rem;
}

.p-effort__inner.l-inner {
	max-width: calc(62.5rem + 6.6666%);
}

.p-footer {
	background: #F7F6F4;
	background: var(--color-gray-white);
}

.p-footer__inner.l-inner {
	-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;
	max-width: calc(71.25rem + 6.6666%);
	padding-block: 4rem;
}

.p-footer__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;
	gap: 2.5rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.p-footer__logo {
	width: 14.8125rem;
}

.p-footer__lists {
	-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: 2.5rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.p-footer__copy small {
	color: #000;
	color: var(--black, #000);
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.8;
	text-align: right;
}

.p-footer__text {
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.8;
	padding-block: 0.5rem 0.4375rem;
	text-align: center;
}

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

.p-header__inner {
	-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;
	max-width: 78.25rem;
	padding: 0.625rem;
}

.p-header__logo {
	width: 14.8125rem;
}

.p-header__lists {
	-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;
}

.p-header__link {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 2;
	padding: 0.625rem min(1.25rem, 1.3888888889vw);
	text-transform: capitalize;
	-webkit-transition: color 0.3s ease;
	transition: color 0.3s ease;
}

.p-header__link:hover {
	color: #105F00;
	color: var(--color-dark-green);
}

.p-header__link._uppercase {
	text-transform: uppercase;
}

.p-header__listsLv2 {
	-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: min(2.5rem, 2.7777777778vw);
	margin-left: min(1.25rem, 1.3888888889vw);
}

.p-header__drawer {
	display: none;
}

.p-main {
	overflow: hidden;
}

.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-needs {
	padding-bottom: 3.625rem;
}

.p-needs__content {
	position: relative;
}

.p-needs__imageBlock {
	position: relative;
}

.p-needs__imageBlock::before {
	-webkit-animation: p-needs-icon-float 3s ease-in-out infinite;
	        animation: p-needs-icon-float 3s ease-in-out infinite;
	background-image: url(../images/top/needs-icon-left@2x.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 35.625rem;
	left: 0;
	position: absolute;
	top: 60%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 22.625rem;
	z-index: 0;
}

.p-needs__imageBlock::after {
	-webkit-animation: p-needs-icon-float 3s ease-in-out infinite;
	        animation: p-needs-icon-float 3s ease-in-out infinite;
	-webkit-animation-delay: 1.5s;
	        animation-delay: 1.5s;
	background-image: url(../images/top/needs-icon-right@2x.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 35.25rem;
	position: absolute;
	right: 0;
	top: 60%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 21.375rem;
	z-index: 0;
}

.p-needs__image {
	aspect-ratio: 502/630;
	display: block;
	margin-inline: auto;
	max-width: 31.375rem;
	overflow: hidden;
	width: 100%;
}

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

.p-needs__wrapper {
	bottom: 5rem;
	left: 50%;
	position: absolute;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 100%;
	z-index: 1;
}

.p-needs__heading {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
	margin-inline: auto;
	max-width: 25.625rem;
	text-align: center;
	width: 100%;
}

.p-needs__headingContent {
	-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.375rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.p-needs__headingImage {
	aspect-ratio: 266/58;
	display: block;
	max-width: 16.625rem;
	overflow: hidden;
	width: 100%;
}

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

.p-needs__headingSmall {
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.p-needs__text {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	text-align: center;
}

.p-top-faq {
	padding-block: 6.25rem;
}

.p-top-faq__inner.l-inner {
	max-width: calc(62.5rem + 6.6666%);
}

.p-top-faq__content {
	margin-top: 2.5rem;
}

.p-top-features {
	padding-block: 6.25rem;
}

.p-top-features__inner.l-inner {
	max-width: calc(52.5rem + 6.6666%);
}

.p-top-features__items {
	grid-gap: 6.25rem;
	display: -ms-grid;
	display: grid;
	gap: 6.25rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	margin-top: 2.5rem;
}

.p-top-features__item {
	position: relative;
}

.p-top-features__item::before {
	background: url(../images/top/features-rain@2x.png) no-repeat center/contain;
	content: "";
	height: 37rem;
	left: calc(50% - 68.75rem);
	position: absolute;
	top: 0%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 62.625rem;
	z-index: -1;
}

.p-top-features__item:nth-child(even)::before {
	left: auto;
	left: initial;
	right: calc(50% - 68.75rem);
	-webkit-transform: translateY(-50%) scaleX(-1);
	        transform: translateY(-50%) scaleX(-1);
}

.p-top-functions {
	background-color: #F7F6F4;
	background-color: var(--color-gray-white);
	padding-block: 6.25rem;
}

.p-top-functions__inner.l-inner {
	max-width: calc(62.5rem + 6.6666%);
}

.p-top-functions__heading {
	margin-bottom: 2.5rem;
}

.p-top-functions__lead {
	grid-gap: 1rem;
	display: -ms-grid;
	display: grid;
	gap: 1rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	justify-items: center;
}

.p-top-functions__leadLogo {
	-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.1875rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.p-top-functions__leadLogoImage {
	aspect-ratio: 237/50;
	display: block;
	max-width: 14.8125rem;
	width: 100%;
}

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

.p-top-functions__leadLogoText {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1.8;
	padding-top: 0.875rem;
}

.p-top-functions__leadText {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1.75rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1.8;
	text-align: center;
	word-break: auto-phrase;
}

.p-top-functions__leadTextAccent {
	color: #E28301;
	color: var(--color-orange);
}

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

.p-top-functions__item {
	height: 100%;
}

.p-top-functions__item .c-card01 {
	height: 100%;
}

.p-top-functions__button {
	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: 2.5rem;
}

.p-top-plan {
	padding-block: 6.25rem;
}

.p-top-plan__inner.l-inner {
	max-width: calc(62.5rem + 6.6666%);
}

.p-top-plan__heading {
	margin-bottom: 2.5rem;
}

.p-top-plan__items {
	grid-gap: 2.5rem;
	display: -ms-grid;
	display: grid;
	gap: 2.5rem;
	-ms-grid-columns: (minmax(0, 1fr))[2];
	grid-template-columns: repeat(2, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
}

.p-top-plan__item {
	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-top-point {
	padding-block: 6.25rem;
}

.p-top-point__inner.l-inner {
	max-width: calc(62.5rem + 6.6666%);
}

.p-top-point__lead {
	grid-gap: 1rem;
	display: -ms-grid;
	display: grid;
	gap: 1rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	justify-items: center;
	margin-top: 2.5rem;
}

.p-top-point__leadLogo {
	-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.1875rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.p-top-point__leadLogoImage {
	aspect-ratio: 237/50;
	display: block;
	max-width: 14.8125rem;
	width: 100%;
}

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

.p-top-point__leadLogoText {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1.8;
	padding-top: 0.875rem;
}

.p-top-point__leadText {
	font-family: "Overpass", sans-serif;
	font-family: var(--font-overpass);
	font-size: 1.75rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1.8;
	text-align: center;
}

.p-top-point__leadTextAccent {
	color: #E28301;
	color: var(--color-orange);
}

.p-top-point__leadDesc {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2;
	text-align: center;
}

.p-top-point__content {
	margin-top: 2.5rem;
}

.p-top-step {
	background-color: #F7F6F4;
	background-color: var(--color-gray-white);
	padding-block: 6.25rem;
}

.p-top-step__inner.l-inner {
	max-width: calc(71.25rem + 6.6666%);
}

.p-top-step__heading {
	margin-bottom: 2.5rem;
}

.p-top-step__items {
	grid-column-gap: 3.125rem;
	-moz-column-gap: 3.125rem;
	-moz-column-gap: min(3.125rem, 3.4722222222vw);
	-webkit-column-gap: 3.125rem;
	        column-gap: 3.125rem;
	-webkit-column-gap: min(3.125rem, 3.4722222222vw);
	        column-gap: min(3.125rem, 3.4722222222vw);
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(0, 1fr))[5];
	grid-template-columns: repeat(5, minmax(0, 1fr));
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.p-top-step__items::before {
	border-top: 0.375rem dotted #7C7B7A;
	border-top: 0.375rem dotted var(--color-gray);
	content: "";
	left: 10%;
	position: absolute;
	top: 6.4375rem;
	width: 80%;
	z-index: 0;
}

.p-top-step__item {
	position: relative;
	z-index: 1;
}

.p-top-step__item .c-card03__image {
	background-color: #F7F6F4;
	background-color: var(--color-gray-white);
	border-radius: 50%;
	position: relative;
	z-index: 1;
}

.p-top-step__item .c-card03__body {
	margin-inline: auto;
	max-width: 11.75rem;
}

.p-top-step__item .c-card03__text {
	text-align: left;
}

.p-top-voice {
	background: -webkit-gradient(linear, left top, left bottom, from(#F7F6F4), to(rgba(247, 246, 244, 0)));
	background: linear-gradient(180deg, #F7F6F4 0%, rgba(247, 246, 244, 0) 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(var(--color-gray-white)), to(rgba(247, 246, 244, 0)));
	background: linear-gradient(180deg, var(--color-gray-white) 0%, rgba(247, 246, 244, 0) 100%);
	padding-block: 6.25rem;
}

.p-top-voice__inner.l-inner {
	max-width: calc(71.25rem + 6.6666%);
}

.p-top-voice__heading {
	margin-bottom: 2.5rem;
}

.p-top-voice__items {
	grid-gap: 3.75rem;
	display: -ms-grid;
	display: grid;
	gap: 3.75rem;
	-ms-grid-columns: (minmax(0, 1fr))[3];
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p-top-voice__item {
	height: 100%;
}

.p-top-voice__item .c-card02 {
	height: 100%;
}

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

.p-top-voice__progressTrack {
	background: #F7F6F4;
	background: var(--color-gray-white);
	border-radius: 0.1875rem;
	height: 0.375rem;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.p-top-voice__progressBar {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 0.1875rem;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	will-change: transform, width;
}

.p-trouble {
	padding-block: 6.25rem 2.875rem;
	position: relative;
}

.p-trouble::after {
	background-image: url(../images/top/trouble-background@2x.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 47rem;
	left: 50%;
	position: absolute;
	top: 0;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	width: 96.25rem;
	z-index: 0;
}

.p-trouble__inner.l-inner {
	max-width: calc(57.625rem + 6.6666%);
	position: relative;
	z-index: 1;
}

.p-trouble__heading {
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
	text-align: center;
}

.p-trouble__headingAccent {
	color: #E28301;
	color: var(--color-orange);
}

.p-trouble__lists {
	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: 2.25rem;
}

.p-trouble__list._first {
	margin-top: 3.375rem;
}

.p-trouble__list._third {
	margin-left: 1.3125rem;
	margin-top: 3.3125rem;
}

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

.p-trouble__image {
	aspect-ratio: 438/295;
	display: block;
	margin-inline: auto;
	max-width: 27.375rem;
	overflow: hidden;
	width: 100%;
}

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

.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-button01:not([aria-disabled=true]):hover {
	background-color: #FDD401;
	background-color: var(--color-yellow);
	color: #105F00;
	color: var(--color-dark-green);
	opacity: 1;
}

.c-button01._accent:not([aria-disabled=true]):hover {
	border-color: #105F00;
	border-color: var(--color-dark-green);
	color: #105F00;
	color: var(--color-dark-green);
}

.c-button01._accent:not([aria-disabled=true]):hover::before {
	opacity: 0;
}

.c-button02:hover {
	opacity: 1;
}

.c-button02:hover::before {
	opacity: 0;
}

.c-button03:hover {
	background-color: #FDD401;
	background-color: var(--color-yellow);
	opacity: 1;
}

.c-button04:hover {
	opacity: 1;
}

.c-button04:hover {
	background: #FDD401;
	background: var(--color-yellow);
}

.c-button04:hover::after {
	-webkit-transform: translateX(0.3125rem);
	        transform: translateX(0.3125rem);
}

}

@media (prefers-reduced-motion: reduce) {

.c-mv__item.js-balloon {
	-webkit-animation: none;
	        animation: none;
}

.c-mv__item.js-balloon.is-dropped .c-banner01 {
	-webkit-animation: none;
	        animation: none;
}

.p-needs__imageBlock::before {
	-webkit-animation: none;
	        animation: none;
}

.p-needs__imageBlock::after {
	-webkit-animation: none;
	        animation: none;
}

}

@media (hover: hover) {

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

}

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

html {
	font-size: 1.4035087719vw;
}

}

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

html {
	font-size: 16px;
}

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

a {
	opacity: 1;
	opacity: initial;
}

.l-404 {
	margin-block: 2.5rem 3.75rem;
}

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

.c-accordion01__title {
	gap: 1rem;
	padding: 1.5rem 0.25rem;
}

.c-accordion01__head {
	gap: 1rem;
}

.c-accordion01__titleText {
	font-size: 1rem;
	letter-spacing: 0.05rem;
	line-height: 1.5;
}

.c-accordion01__content-inner {
	gap: 1rem;
	padding: 1.5rem 0.25rem;
}

.c-accordion02__head {
	-moz-column-gap: 0.5rem;
	-webkit-column-gap: 0.5rem;
	        column-gap: 0.5rem;
	min-height: 3rem;
	padding: 0.5rem 0.75rem;
}

.c-accordion02__label {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.c-accordion02__number {
	font-size: 1.5rem;
	letter-spacing: 0.05em;
}

.c-accordion02__preview {
	min-height: auto;
	padding: 1.25rem 1.5rem 1rem;
}

.c-accordion02__body {
	padding: 0 1.25rem 1rem;
}

.c-accordion02__intro {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	row-gap: 1rem;
}

.c-accordion02__intro .c-item02,
.c-accordion02__intro .c-item03,
.c-accordion02__intro .c-item04 {
	margin-inline: auto;
}

.c-accordion02__step {
	-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;
	padding: 1.25rem 0.625rem;
	row-gap: 1rem;
}

.c-accordion02__step .c-item01 {
	width: 17.1875rem;
}

.c-accordion02__step .c-item01__heading {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.c-accordion02__stepText {
	max-width: 17.1875rem;
}

.c-accordion02__summaryText {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.c-balloon01 {
	font-size: 1.125rem;
	padding: 2.125rem 3rem 6.125rem 2.8125rem;
}

.c-balloon02 {
	font-size: 1.125rem;
	padding: 1.875rem 3rem 5.8125rem 3.125rem;
}

.c-balloon03 {
	font-size: 1.125rem;
	padding: 2.125rem 0.625rem 4.3125rem 1.1875rem;
}

.c-banner02 {
	max-width: 17.75rem;
}

.c-banner02__headLine {
	width: 0.5rem;
}

.c-banner02__body {
	margin-top: 0.25rem;
	padding: 0.8125rem 0.5625rem 0.625rem;
}

.c-banner02__pill {
	gap: 0.25rem;
	padding: 0.3125rem 0.5rem 0.3125rem 0.3125rem;
}

.c-banner02__badge {
	height: 2.6875rem;
	width: 2.6875rem;
}

.c-banner02__badgeIcon {
	height: 0.875rem;
	width: 0.8125rem;
}

.c-banner02__pillText {
	font-size: 0.875rem;
	letter-spacing: 0.05em;
}

.c-banner02__pillLabel {
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}

.c-banner02__pillIcon {
	height: 1.3125rem;
	width: 0.3125rem;
}

.c-banner02__catch {
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: 0.5rem;
	padding-inline: 0;
}

.c-banner02__catchLead {
	display: none;
}

.c-banner02__catchIcon {
	height: 1.6875rem;
	margin-right: 0.25rem;
	width: 0.5625rem;
}

.c-banner02__catchSmall._first {
	margin-right: 0;
}

.c-banner02__catchLarge {
	font-size: 1.25rem;
	letter-spacing: 0.08em;
}

.c-banner02__status {
	font-size: 1rem;
	letter-spacing: 0.05em;
	margin-top: 0.5rem;
}

.c-button02 {
	max-width: 15rem;
	width: 100%;
}

.c-button02__textHead {
	font-size: 0.75rem;
	letter-spacing: 0.05em;
}

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

.c-button02__textFooter {
	font-size: 0.875rem;
	letter-spacing: 0.05em;
}

.c-button02__textFooterLarge {
	font-size: 1.25rem;
	letter-spacing: 0.05em;
}

.c-button03 {
	-moz-column-gap: 1.125rem;
	-webkit-column-gap: 1.125rem;
	        column-gap: 1.125rem;
	padding: 1.25rem 1.5rem;
}

.c-button03::before {
	height: 2rem;
	width: 1.4375rem;
}

.c-button03__text {
	font-size: 1.25rem;
	letter-spacing: 0.05em;
}

.c-button03__textLarge {
	font-size: 2.0625rem;
	letter-spacing: 0.05em;
}

.c-card02 {
	max-width: none;
	max-width: 18.125rem;
	padding: 1.25rem;
}

.c-card02__image {
	aspect-ratio: 213/120;
	max-width: 13.3125rem;
}

.c-card02__body {
	max-width: 15.625rem;
}

.c-card02__heading {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.c-card02__contentItem {
	padding-block: 0;
}

.c-card03 {
	gap: 1.5rem;
	-ms-grid-columns: 5.75rem minmax(0, 1fr);
	grid-template-columns: 5.75rem minmax(0, 1fr);
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.c-card03__number {
	font-size: 0.9375rem;
}

.c-card03__image {
	margin-top: -0.25rem;
	max-width: 5.75rem;
}

.c-card03__body {
	margin-top: 0;
}

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

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

.c-card04 {
	max-width: 20.9375rem;
	padding-top: 2.6875rem;
}

.c-card04__badge {
	gap: 0.375rem;
	height: 3.75rem;
	padding-bottom: 0rem;
	width: 3.75rem;
}

.c-card04__badgeLabel {
	font-size: 0.75rem;
	line-height: 1;
}

.c-card04__badgeIcon {
	height: 1.25rem;
	margin-top: -0.25rem;
	width: 1.1875rem;
}

.c-card04__header {
	min-height: 3.75rem;
	padding: 1.125rem 0 0.75rem;
}

.c-card04__title {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
	line-height: 1.7777777778;
}

.c-card04__body {
	padding: 1rem 1.25rem 1.25rem;
}

.c-card04__price,
.c-card04__text {
	min-height: 3rem;
	padding: 0.625rem 0.75rem;
}

.c-card04__price {
	font-size: 1.25rem;
	letter-spacing: 0.05em;
}

.c-card04__priceLarge {
	font-size: 1.25rem;
	letter-spacing: 0.05em;
}

.c-card04__priceSmall {
	font-size: 0.875rem;
	letter-spacing: 0.05em;
}

.c-card04__text {
	display: inline-block;
	font-size: 1rem;
	letter-spacing: 0.05em;
	line-height: 1.75;
	margin-top: 1rem;
}

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

.c-card04._hasBanner .c-card04__body {
	padding-bottom: 1.5rem;
}

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

.c-form__item:nth-child(n+2) {
	margin-top: 2.25rem;
}

.c-form__item._top .c-form__dt {
	margin-top: 0;
}

.c-form__dd {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 0.875rem 0.4375rem;
	padding-block: 0.75rem;
}

.c-form__privacy {
	margin-top: 3rem;
	text-align: left;
}

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

.c-heading01__heading {
	font-size: 1.75rem;
	letter-spacing: 0.05em;
	line-height: 2;
}

.c-heading01__subheading {
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	line-height: 2;
}

.c-heading01__subheading::before {
	height: 0.4375rem;
	width: 3.5rem;
}

.c-item02 {
	-moz-column-gap: 0.0625rem;
	-webkit-column-gap: 0.0625rem;
	        column-gap: 0.0625rem;
}

.c-item02__illustration {
	margin-top: 1.5rem;
	width: 5.875rem;
}

.c-item02__bubble {
	background-image: url(../images/top/item02-bubble-sp.svg);
	min-height: 10.625rem;
	padding: 2.1875rem 1.6875rem 1.5625rem 3.1875rem;
	width: 12.0625rem;
}

.c-item02__text {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.c-item03 {
	-moz-column-gap: 0;
	-webkit-column-gap: 0;
	        column-gap: 0;
}

.c-item03__bubble {
	background-image: url(../images/top/item03-bubble-sp.svg);
	min-height: 11.625rem;
	padding: 1.5rem 1rem 1rem 2.75rem;
	width: 13.1875rem;
}

.c-item03__text {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.c-item03__logo {
	margin-top: 3.3125rem;
	width: 5.375rem;
}

.c-item04 {
	-moz-column-gap: -0.8125rem;
	-webkit-column-gap: -0.8125rem;
	        column-gap: -0.8125rem;
}

.c-item04__illustration {
	margin-top: 0.375rem;
	width: 7.5rem;
}

.c-item04__bubble {
	background-image: url(../images/top/item02-bubble-sp.svg);
	min-height: 10.625rem;
	padding: 2.1875rem 1.6875rem 1.5625rem 3.1875rem;
	width: 12.0625rem;
}

.c-item04__text {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.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-media01__contents {
	gap: 0.4375rem;
}

.c-media01__number {
	font-size: 0.8125rem;
}

.c-media01__heading {
	font-size: 1.5rem;
}

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

.c-media01._first {
	    grid-template-areas: "contents" "image";
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.c-media01._first .c-media01__image {
	margin-inline: auto;
	max-width: 9.4375rem;
	width: 100%;
}

.c-media01._second {
	gap: 0;
	-ms-grid-rows: auto 0 auto;
	    grid-template-areas: "contents" "image";
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.c-media01._second .c-media01__image {
	margin-inline: auto;
	max-width: 11.3125rem;
	width: 100%;
}

.c-media01._third {
	    grid-template-areas: "contents" "image";
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.c-media01._third .c-media01__image {
	margin-top: 0;
}

.c-media01._third .c-media01__image {
	margin-inline: auto;
	max-width: 9.625rem;
	width: 100%;
}

.c-media02 {
	gap: 1.5rem;
	-ms-grid-rows: auto 1.5rem auto;
	    grid-template-areas: "image" "contents";
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
}

.c-media02__heading {
	font-size: 1.125rem;
	margin-inline: auto;
	text-align: center;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

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

.c-media02__headingImage {
	max-width: 11.75rem;
}

.c-media02__text {
	font-size: 1rem;
	padding-inline: 1.25rem;
}

.c-media02__image {
	margin-inline: auto;
	max-width: 8.75rem;
	width: 100%;
}

.c-mv {
	padding-block: 2.8125rem 2.5rem;
}

.c-mv__background {
	height: 19.75rem;
	height: auto;
	left: calc(50% - 11.25rem);
	top: 0;
	width: 43rem;
}

.c-mv__inner.l-inner {
	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;
	max-width: none;
	max-width: 22.1875rem;
	width: 100%;
}

.c-mv__content {
	display: contents;
	margin-left: 0;
}

.c-mv__heading {
	font-size: 2rem;
	letter-spacing: 0.05em;
	line-height: 1.3;
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
	padding-inline: 2.9375rem;
}

.c-mv__text {
	font-size: 0.9375rem;
	letter-spacing: 0.05em;
	line-height: 1.5066666667;
	margin-top: 0.375rem;
	max-width: 18.75rem;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	    -ms-flex-order: 2;
	        order: 2;
	padding-left: 2.9375rem;
}

.c-mv__items {
	-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-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 1.5rem;
	-webkit-box-ordinal-group: 5;
	-webkit-order: 4;
	    -ms-flex-order: 4;
	        order: 4;
	text-align: center;
}

.c-mv__item {
	width: 100%;
}

.c-mv__title {
	height: 5.5625rem;
	width: 5.5625rem;
}

.c-mv__title::after {
	inset: 0.125rem;
}

.c-mv__title._first {
	left: 7.4375rem;
	top: 12.0625rem;
}

.c-mv__title._second {
	left: 13.0625rem;
	top: 14.25rem;
}

.c-mv__title._third {
	left: 15.625rem;
	top: 19.8125rem;
}

.c-mv__titleLine {
	font-size: 0.875rem;
	letter-spacing: 0.0485714286em;
}

.c-mv__titleAccent {
	font-size: 1.1875rem;
}

.c-mv__wrapper {
	display: contents;
}

.c-mv__image {
	aspect-ratio: 344/280;
	display: block;
	margin-top: 1.25rem;
	max-width: 21.5rem;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	    -ms-flex-order: 3;
	        order: 3;
	overflow: hidden;
	width: 100%;
}

.c-tab__menuItem {
	-moz-column-gap: 0.5rem;
	-webkit-column-gap: 0.5rem;
	        column-gap: 0.5rem;
	min-height: 3rem;
	padding: 0.5rem 0.75rem;
}

.c-tab__menuLabel {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.c-tab__menuNumber {
	font-size: 1.5rem;
	letter-spacing: 0.05em;
}

.c-tab__contentItem {
	padding: 1.25rem 1.25rem 2.5rem;
}

.c-tab__intro {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	row-gap: 1rem;
}

.c-tab__intro .c-item02,
.c-tab__intro .c-item03,
.c-tab__intro .c-item04 {
	margin-inline: auto;
}

.c-tab__step {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 1.25rem 0.625rem;
	row-gap: 1rem;
}

.c-tab__step .c-item01 {
	width: 17.1875rem;
}

.c-tab__step .c-item01__heading {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.c-tab__stepText {
	max-width: 17.1875rem;
}

.c-tab__summary {
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.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-404__button {
	margin-top: 2rem;
}

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

.p-contact {
	background: #F7F6F4;
	background: var(--color-gray-white);
	padding-block: 0 3.125rem;
}

.p-contact__inner.l-inner {
	max-width: 37.5rem;
}

.p-contact__box {
	gap: 2rem;
	padding: 2rem 0;
}

.p-contact__lead {
	font-size: 0.8125rem;
	letter-spacing: 0.05em;
	line-height: 1.9384615385;
}

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

.p-cta {
	min-height: 11.25rem;
}

.p-cta__content {
	gap: 0.375rem;
}

.p-cta__lead {
	gap: 0.375rem;
}

.p-cta__leadLine {
	height: 1.0625rem;
	width: 0.5rem;
}

.p-cta__leadText {
	font-size: 1.25rem;
	letter-spacing: 0.05em;
}

.p-cta__leadAccent {
	font-size: 1.75rem;
	letter-spacing: 0.05em;
}

.p-effort {
	padding-block: 3.125rem;
}

.p-effort__inner.l-inner {
	max-width: 37.5rem;
}

.p-footer__inner.l-inner {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	max-width: 37.5rem;
	padding-block: 3.125rem 0;
}

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

.p-footer__logo {
	width: 16.25rem;
}

.p-footer__lists {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.p-footer__copy {
	margin-top: 2.5rem;
}

.p-footer__text {
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.8;
	padding-inline: 1.25rem;
	text-align: left;
}

.p-header__inner {
	max-width: 100%;
	padding-block: 1rem;
}

.p-header__logo {
	width: 11.8125rem;
}

.p-header__nav {
	display: none;
}

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

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

.p-needs {
	padding-bottom: 0;
}

.p-needs__imageBlock {
	margin-inline: auto;
	max-width: 21.125rem;
}

.p-needs__imageBlock::before {
	-webkit-animation-name: p-needs-icon-float-sp;
	        animation-name: p-needs-icon-float-sp;
	height: 10.0625rem;
	top: -2.375rem;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
	width: 6.375rem;
}

.p-needs__imageBlock::after {
	-webkit-animation-name: p-needs-icon-float-sp;
	        animation-name: p-needs-icon-float-sp;
	height: 10rem;
	top: -2.375rem;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
	width: 6.0625rem;
}

.p-needs__wrapper {
	bottom: 1.4375rem;
}

.p-needs__heading {
	font-size: 1.375rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.8;
	max-width: 17.375rem;
	text-align: center;
}

.p-needs__headingContent {
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
	gap: 0.25rem;
}

.p-needs__headingImage {
	aspect-ratio: 188/40;
	max-width: 11.75rem;
}

.p-needs__headingSmall {
	font-size: 1rem;
}

.p-needs__text {
	margin-inline: auto;
	max-width: 14.0625rem;
}

.p-top-faq {
	padding-block: 3.125rem;
}

.p-top-faq__inner.l-inner {
	max-width: 37.5rem;
}

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

.p-top-features {
	padding-block: 3.125rem;
}

.p-top-features__inner.l-inner {
	max-width: 37.5rem;
}

.p-top-features__items {
	gap: 5rem;
	margin-top: 2rem;
}

.p-top-features__item::before {
	height: 14.125rem;
	left: calc(50% - 19.375rem);
	top: 13%;
	width: 23.875rem;
}

.p-top-features__item:nth-child(even)::before {
	height: 14.125rem;
	right: calc(50% - 19.375rem);
	top: 8%;
	width: 23.875rem;
}

.p-top-functions {
	padding-block: 3.125rem;
}

.p-top-functions__inner.l-inner {
	max-width: 37.5rem;
}

.p-top-functions__heading {
	margin-bottom: 2rem;
}

.p-top-functions__leadLogoImage {
	max-width: 11.75rem;
}

.p-top-functions__leadLogoText {
	font-size: 1rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.p-top-functions__leadText {
	font-size: 1.25rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.p-top-functions__items {
	gap: 3.125rem;
	-ms-grid-columns: 1fr;
	grid-template-columns: 1fr;
	margin-top: 2rem;
	padding-inline: 1.09375rem;
}

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

.p-top-plan {
	padding-block: 3.125rem;
}

.p-top-plan__inner.l-inner {
	max-width: 37.5rem;
}

.p-top-plan__heading {
	margin-bottom: 2rem;
}

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

.p-top-point {
	padding-block: 3.125rem;
}

.p-top-point__inner.l-inner {
	max-width: 37.5rem;
}

.p-top-point__lead {
	gap: 0.125rem;
	margin-top: 2rem;
}

.p-top-point__leadLogoImage {
	max-width: 11.75rem;
}

.p-top-point__leadLogoText {
	font-size: 1rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.p-top-point__leadText {
	font-size: 1.25rem;
	letter-spacing: 0.05em;
	line-height: 1.8;
	text-align: left;
}

.p-top-point__leadDesc {
	font-size: 0.9375rem;
	letter-spacing: 0.05em;
	text-align: left;
}

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

.p-top-step {
	padding-block: 3.125rem;
}

.p-top-step__inner.l-inner {
	max-width: 37.5rem;
}

.p-top-step__heading {
	margin-bottom: 2rem;
}

.p-top-step__items {
	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;
	row-gap: 2rem;
}

.p-top-step__items::before {
	border-left: 0.3125rem dotted #7C7B7A;
	border-left: 0.3125rem dotted var(--color-gray);
	border-top: none;
	bottom: 3.75rem;
	height: auto;
	left: 2.75rem;
	top: 3.75rem;
	width: 0;
}

.p-top-step__item .c-card03__body {
	margin-inline: 0;
	max-width: none;
}

.p-top-voice {
	padding-block: 3.125rem;
}

.p-top-voice__inner.l-inner {
	max-width: 37.5rem;
}

.p-top-voice__heading {
	margin-bottom: 2rem;
}

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

.p-top-voice__items {
	-webkit-overflow-scrolling: touch;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 1.25rem;
	margin-right: calc(50% - 50vw);
	overflow-x: auto;
	padding-inline: calc(50vw - 50%) 3.125rem;
	-webkit-scroll-snap-type: x mandatory;
	    -ms-scroll-snap-type: x mandatory;
	        scroll-snap-type: x mandatory;
	scrollbar-width: none;
	width: 100vw;
}

.p-top-voice__items::-webkit-scrollbar {
	display: none;
}

.p-top-voice__item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 18.125rem;
	    -ms-flex: 0 0 18.125rem;
	        flex: 0 0 18.125rem;
	padding-bottom: 0.125rem;
	scroll-snap-align: start;
}

.p-top-voice__item .c-card02 {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	max-width: none;
	width: 100%;
}

.p-top-voice__item .c-card02__image {
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
}

.p-top-voice__item .c-card02__body {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.p-top-voice__item .c-card02__content {
	margin-top: auto;
	width: 100%;
}

.p-top-voice__item .c-card02__contentList {
	min-height: 7.375rem;
}

.p-trouble {
	padding-block: 3.125rem 2.5625rem;
}

.p-trouble::before {
	background: #F8F7F5;
	background: var(--color-light-gray);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
}

.p-trouble::after {
	background-image: url(../images/top/trouble-background-sp@2x.jpg);
	background-size: 100% 100%;
	bottom: 0;
	height: 15.375rem;
	top: auto;
	top: initial;
	width: 100%;
}

.p-trouble__inner.l-inner {
	max-width: 37.5rem;
}

.p-trouble__heading {
	font-size: 1.375rem;
}

.p-trouble__lists {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin-top: 2.375rem;
}

.p-trouble__list._first {
	margin-top: 0;
	-webkit-box-ordinal-group: 2;
	-webkit-order: 1;
	    -ms-flex-order: 1;
	        order: 1;
}

.p-trouble__list._second {
	margin-top: -2.75rem;
	-webkit-box-ordinal-group: 4;
	-webkit-order: 3;
	    -ms-flex-order: 3;
	        order: 3;
}

.p-trouble__list._third {
	margin-left: 0;
	margin-top: -2.125rem;
	-webkit-box-ordinal-group: 3;
	-webkit-order: 2;
	    -ms-flex-order: 2;
	        order: 2;
}

.p-trouble__imageBlock {
	margin-top: 0;
}

.p-trouble__image {
	max-width: 15.25rem;
}

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

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

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

.c-media01._first > .c-media01__contents {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
}

.c-media01._second > .c-media01__contents {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
}

.c-media01._third > .c-media01__contents {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
}

.c-media02 > .c-media01__contents {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
}

.c-media01._first > .c-media01__image {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
}

.c-media01._second > .c-media01__image {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
}

.c-media01._third > .c-media01__image {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
}

.c-media02 > .c-media01__image {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
}

.c-media01._first > .c-media02__content {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
}

.c-media01._second > .c-media02__content {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
}

.c-media01._third > .c-media02__content {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
}

.c-media02 > .c-media02__content {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
}

.c-media01._first > .c-media02__image {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
}

.c-media01._second > .c-media02__image {
		-ms-grid-row: 3;
		-ms-grid-column: 1;
}

.c-media01._third > .c-media02__image {
		-ms-grid-row: 2;
		-ms-grid-column: 1;
}

.c-media02 > .c-media02__image {
		-ms-grid-row: 1;
		-ms-grid-column: 1;
}

}

@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);
}

}

@-webkit-keyframes c-mv-balloon-float {

0%,100% {
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}

50% {
	-webkit-transform: translateY(-8px);
	        transform: translateY(-8px);
}

}

@keyframes c-mv-balloon-float {

0%,100% {
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}

50% {
	-webkit-transform: translateY(-8px);
	        transform: translateY(-8px);
}

}

@-webkit-keyframes p-needs-icon-float {

0%,100% {
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}

50% {
	-webkit-transform: translateY(calc(-50% - 0.5rem));
	        transform: translateY(calc(-50% - 0.5rem));
}

}

@keyframes p-needs-icon-float {

0%,100% {
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}

50% {
	-webkit-transform: translateY(calc(-50% - 0.5rem));
	        transform: translateY(calc(-50% - 0.5rem));
}

}

@-webkit-keyframes p-needs-icon-float-sp {

0%,100% {
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}

50% {
	-webkit-transform: translateY(-0.5rem);
	        transform: translateY(-0.5rem);
}

}

@keyframes p-needs-icon-float-sp {

0%,100% {
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}

50% {
	-webkit-transform: translateY(-0.5rem);
	        transform: translateY(-0.5rem);
}

}

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