@charset "utf-8";
/*
	_component.cssから必要なものをコピペ
*/
:root {
	--green: #4da608;
	--slate-green: #c2dbb0;
	--light-green: #f0faf1;

	--brown: #d9890a;
	--light-brown: #fbf7ef;

	--red: #e83820;
	--light-red: #faf0f2;

	--dark-pink: #752a33;
	--pink: #f98693;
	--slate-pink: #f9c7cd;

	--marine: #089ba6;

	--navy: #115396;
	--blue: #4783bf;

	--dark-sky: #00425e;
	--sky: #43b0de;
	--slate-sky: #bcd9e6;
	--light-sky: #f0f8fa;

	--dark-purple: #3f3375;
	--purple: #a295e2;
	--slate-purple: #cdc8e6;

	--yellow: #fedc5e;
	--gold: #e0d7b2;
	--light-yellow: #fcfbf4;
	
	--black: #202b36;
	--gray: #727f8c;
	--slate: #a2b1bf;
	--light: #d8dee8;
	--pale: #fafcff;

	--northern: var(--purple);
	--central: var(--pink);
	--southern: var(--sky);

	
	--bw: 1600;/* ブラウザ幅の想定値（アートボードの横幅） */
	/* pxベースでブラウザ幅に比例するレスポンシブサイズを割り出す */
	--px: clamp(0.5px, (100vw / var(--bw)), 1px);

	--m: calc(15 * var(--px));
    --m2: calc( var(--m) * 2 );
    --m3: calc( var(--m) * 3 );
    --m4: calc( var(--m) * 4 );
    --m5: calc( var(--m) * 5 );
    --m6: calc( var(--m) * 6 );
    --m7: calc( var(--m) * 7 );
    --m8: calc( var(--m) * 8 );
    --m9: calc( var(--m) * 9 );
    --m10: calc( var(--m) * 10 );

    --mt: calc( var(--m) / 3 * 1 );
	--mh: calc( var(--m) / 2 );
    --ms: calc( var(--m) / 3 * 2 );

	--header-height: 80px;
	--main-width: 1230px;
	--wrap-padding-inline: var(--m);

	--transition: 0.2s 0s ease;
	
	interpolate-size: allow-keywords;
}
@media screen and (min-width: 1600px) {
    :root {
        --bw: 1600;/* ブラウザ幅の想定値（アートボードの横幅） */
    }
}
@media screen and (max-width: 1599px) {
    :root {
        --bw: 1200;
    }
}

@media screen and (max-width: 767px) {
	:root {
		--bw: 375;
		--m: calc(15 * var(--px));

		--header-height: 70px;
		--main-width: 100%;
	}
}

html {
	-webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
	scroll-behavior: smooth;

	font-feature-settings: "palt";
}


body {
	width: 100svw;
	background-color: var(--pale);
	background-image: repeating-linear-gradient(-10deg,#fff, #fff 12px, transparent 0, transparent 20px);

	overflow-x: clip;
	position: relative;

	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	letter-spacing: 0.15ic;
	line-height: 1.5;
}


/** フォント   
-------------------------------------------------------------------- */
.mochiy {
	font-family: "Mochiy Pop P One", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.roboto {
	font-family: "Roboto", "M PLUS Rounded 1c", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

* {
	box-sizing: border-box;
}
/** 疑似要素   
-------------------------------------------------------------------- */
*::before,
*::after {
	content: "";
	display: none;
	box-sizing: border-box;
}

/** 改行   
-------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
	br:is([sp], .sp, .sp-only) {
		display: none;
	}
	br:is([pc], .pc, .pc-only) {
		display: revert;
	}
}
@media screen and (max-width: 767px) {
	br:is([pc], .pc, .pc-only) {
		display: none;
	}
	br:is([sp], .sp, .sp-only) {
		display: revert;
	}
}

@media screen and (min-width: 768px) {
	:is([sp], .sp, .sp-only) {
		display: none;
	}
	:is([pc], .pc, .pc-only) {
		display: revert;
	}
}
@media screen and (max-width: 767px) {
	:is([pc], .pc, .pc-only) {
		display: none;
	}
	:is([sp], .sp, .sp-only) {
		display: revert;
	}
}


/** テキスト   
-------------------------------------------------------------------- */
:is(h1, h2, h3, h4, h5, h6) {
    font-weight: 800;
}
p {
	line-height: 1.75;
}
p:not([class]) + p:not([class]),
:is(ul, ol):not([class]) li:not([class]) + li:not([class]) {
    margin-top: 1lh;
}
strong {
    font-weight: 800;
}
ul, ol {
	margin-block: 0.75lh;
}
ol {
	list-style: decimal;
	padding-inline-start: 1.5ic;
}
dt {
    font-weight: 500;
}
@media screen and (max-width: 767px) {
	p {
		text-align: left;
	}
}





/** エリアカラー   
-------------------------------------------------------------------- */
.northern {
    --area: var(--northern);
}
.central {
    --area: var(--central);
}
.southern {
    --area: var(--southern);
}


/** 見出し   
-------------------------------------------------------------------- */
:where(.tagline, .title, .label, .label + p, .headline) {
	font-family: "Mochiy Pop P One", sans-serif;
}
:is(.tagline, .title, .label, .label + p, .headline, strong) {
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.15ic;
}
.tagline {}

.title {}

.label {
	display: block;
	width: max-content;
	padding-block: 0.2lh;
	padding-inline: 2ic;
	background: var(--yellow);
	margin-inline: auto;

	color: var(--black);
	font-size: 30px;
	text-align: center;
}
.heading:has(.label) {
	width: fit-content;
	margin-inline: auto;
	text-align: center;
}
.heading .label {
	display: block;
	margin-block: 0.3lh;
}
.label:has(img[src*="icon-"]) {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.3ic;
}
.label + p {
	margin-top: 0.3lh;
	font-size: 18px;
	text-align: center;
}
.secondary {
    width: fit-content;
    padding-block: 0.1lh;
    padding-inline: 1ic;
    border: 2px solid var(--yellow);
	background: white;
    margin-inline: auto;
    font-size: 27px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: var(--m2);
}

.headline {}



.marker {
	background: linear-gradient(to top, var(--marker) , var(--marker) 40%, transparent 40%, transparent);
}

/* 本文外にある注釈へ誘導する参照マーク */
.ref {
	font-size: 10px;
	vertical-align: text-top;
}
.note {
    font-size: 75%;
	text-indent: -1ic;
	padding-left: 1ic;
}
@media screen and (min-width: 768px) {}
@media screen and (max-width: 767px) {}




/** イメージ   
-------------------------------------------------------------------- */
img,
iframe {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	font-style: italic;
	background-repeat: no-repeat;
	background-size: cover;
	vertical-align: top;
}
img {
	outline: 0;
	-o-object-fit: contain;
	object-fit: contain;
}
picture {
	line-height: 0;
	overflow: hidden;
}
iframe {
	width: 100%;
	aspect-ratio: 1200 / 765;
}
@media screen and (min-width: 768px) {}
@media screen and (max-width: 767px) {}




/** 特定のイメージ設定  
-------------------------------------------------------------------- */
img[src*="/logo.webp"] {
	aspect-ratio: 255 / 21;
}
img[src*="/logo-demonstration.webp"] {
	aspect-ratio: 360 / 21;
}
.logo a {
    display: block;
    width: fit-content;
}

img[src*="icon-"] {
	aspect-ratio: 1 / 1;
}
@media screen and (min-width: 768px) {}
@media screen and (max-width: 767px) {}





/** リンク   
-------------------------------------------------------------------- */
a {
	color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
a:not([class]) {
	color: currentColor;
	text-underline-offset: 4px;
}
@media (hover: hover) {
	a:not([class]) {
		text-decoration: underline;
	}
	a:not([class]):hover {
		text-decoration: none;
	}
}

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


:is(.arrow, .arrow-down, .external) {
	flex-shrink: 0;
	display: flex;
	justify-content: flex-start;
}
:is(.arrow, .arrow-down, .external)::after {
	--weight: 2px;
	margin-top: calc((1lh - var(--size)) / 2);
	display: block;
	width: var(--size);
	height: var(--size);
}
:is(.arrow, .arrow-down)::after {
	--size: 0.5ic;
	margin-left: 0.5ic;
	border-right: var(--weight) solid currentColor;
	border-bottom: var(--weight) solid currentColor;
}
.arrow::after {
	rotate: -45deg;
}
.arrow-down::after {
	rotate: 45deg;
	translate: 0 -25%;
}
.external::after {
	--size: 0.6ic;
	margin-left: 0.2ic;
	background: currentColor;
	clip-path: polygon(20% 0, 100% 0, 100% 80%, calc(100% - var(--weight)) 80%, calc(100% - var(--weight)) calc(var(--weight) + (var(--weight) * cos(45deg))), calc(var(--weight) * cos(45deg)) 100%, 0 calc(100% - (var(--weight) * cos(45deg))), calc(100% - var(--weight) - (var(--weight) * cos(45deg))) var(--weight), 20% var(--weight));
}




/** ボタン   
-------------------------------------------------------------------- */
.button {
    display: block;
    width: fit-content;
	padding-block: 0.3lh;
    padding-inline: 2.5ic;
	border-radius: 2lh;
    background: var(--button-bg, var(--action, inherit));
	box-shadow: inset 0 0 0 var(--button-border-weight, 0) var(--button-border-color, transparent);

	font-size: inherit;
    color: var(--button-color, inherit);
	line-height: 1.5;
	font-weight: 700;
    text-align: center;

	position: relative;
}
.button:has(svg, i, .icon) {
	display: flex;
	align-items: center;
}
.button::after {
	margin: 0;
	position: absolute;
	right: var(--icon-position, 0.75lh);
	top: 50%;
	translate: 0 -50%;
}
@media (hover: hover) {
	.button {
		transition: var(--transition);
	}
	.button:hover {
		background: rgb( from var(--button-hover-bg, var(--button-bg)) r g b / 0.8);
		box-shadow: inset 0 0 0 var(--button-border-hover-weight, inherit) var(--button-border-hover-color, var(--button-border-color));
		color: var(--button-hover-color, var(--button-color));
	}
}
:where(a, button, .button) :is(svg, i, .icon) {
	display: inline-block;
	height: 1lh;
	fill: currentColor;
}
:where(a, button, .button) :is(svg, i, .icon):first-child {
	margin-right: 0.3ic;
}
@media screen and (max-width: 767px) {
	.button {
		padding-block: 0.5lh;
	}
	.button:has(svg, i, .icon) {
		justify-content: center;
	}
}



/** ヘッダー  
-------------------------------------------------------------------- */
header {
	width: 100%;
	height: var(--header-height);
	position: relative;
	z-index: 100;
}
header.fixed {
	position: fixed;
	left: 0;
	top: 0;
}
header.sticky {
	position: sticky;
	top: 0;
	z-index: 100;
}

body:has(.header.fixed) {
	scroll-padding-top: var(--header-height, 0px);
}
@media screen and (min-width: 768px) {}
@media screen and (max-width: 767px) {}








/** ヘッダー/ハンバーガー   
-------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
	header .burger {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	body.is_show_navigation {
		overflow: clip;
	}
	header .burger {
		width: var(--header-height);
		height: var(--header-height);
		position: relative;
	}
	header nav {
		width: 100svw;
		padding-block: var(--m2);
		padding-inline: var(--m);

		position: absolute;
		left: 0;
		top: var(--header-height);
		bottom: 0;
		z-index: 10;
		transition: var(--transition);
	}
	body:not(.is_show_navigation) header::after,
	body:not(.is_show_navigation) header nav {
		pointer-events: none;
		opacity: 0;
		z-index: -1;
	}
	body:is(.is_show_navigation) header::after ,
	body:is(.is_show_navigation) header nav {
		pointer-events: all;
		opacity: 1;
	}

	/** ハンバーガー：２本線→バツ */
	header .burger::before,
	header .burger::after {
		display: block;
		width: calc(100% - var(--m3));
		height: 3px;
		border-radius: 3px;
		background: var(--burger-color, var(--black));

		position: absolute;
		left: 50%;
		top: 50%;
		translate: -50% -50%;

		transition: var(--transition);
	}
	body:not(.is_show_navigation) header .burger::before {
		margin-top: -5px;
	}
	body:not(.is_show_navigation) header .burger::after {
		margin-top: 5px;
	}
	body:is(.is_show_navigation) header .burger::before {
		rotate: 45deg;
	}
	body:is(.is_show_navigation) header .burger::after {
		rotate: -45deg;
	}
}


/** ラッパー   
-------------------------------------------------------------------- */
.wrap {
	width: auto;
	max-width: var(--main-width);
	box-sizing: border-box;
	padding-inline: var(--wrap-padding-inline);
	margin-inline: auto;

	position: relative;
	z-index: 0;
}

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


/** セクション   
-------------------------------------------------------------------- */
main.content {
	--main-padding-bottom: var(--m6);
	padding-bottom: var(--main-padding-bottom);
}
main.content > section {
	position: relative;
	z-index: 0;
}
:is(.ellipse, .ellipse-top, .ellipse-bottom) {
	overflow-x: clip;
	position: relative;
	z-index: 0;
}
:is(.ellipse, .ellipse-top, .ellipse-bottom)::after {
    display: block;
    width: 3000px;
    height: var(--ellipse-size, 100%);
    background: var(--ellipse-color, var(--pale));
    position: absolute;
    left: 50%;
    top: var(--ellipse-position, 0);
    translate: -50% 0;
    z-index: -1;
}
.ellipse::after {
	border-radius: 50% / 500px;
}
.ellipse-top::after {
	border-radius: 50% 50% 0 0 / 500px 500px 0 0;
}
.ellipse-bottom::after {
	border-radius: 0 0 50% 50% / 0 0 500px 500px;
}

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

.article {
	margin-top: var(--m3);
    max-width: 900px;
}
n.article .heading {
    margin-top: calc(-1 * var(--m2));
    position: relative;
    z-index: 1;
}
.article .block {
    margin-top: var(--m5);
}
.article .headline {
    text-align: center;
    font-size: 30px;
}
.article .headline::after {
    display: block;
    width: 2ic;
    height: 6px;
    border-radius: 3px;
    background: var(--yellow);
    margin-block: 0.5lh;
    margin-inline: auto;
}
.article figure {
    min-width: 600px;
    width: 60%;
    margin-block: var(--m3);
    margin-inline: auto;
}



/** タグ   
-------------------------------------------------------------------- */
.tags > *::before {
	content: "#";
	display: inline;
}


/** コンテナ・ブロック   
-------------------------------------------------------------------- */
.frame {
    padding-block: var(--m2);
    padding-inline: var(--m2);
    border-radius: 6px;
    border: 3px solid var(--border);
	background: var(--bg);
	position: relative;
}
.frame .label {
	padding-block: 0.3lh;
	padding-inline: 1.5ic;
	font-size: 21px;
	position: absolute;
	left: 50%;
	top: 0;
	translate: -50% -50%;
}



/** フレックスボックス  
-------------------------------------------------------------------- */
/* flex direction */
:where(.row, [class*="row"], .column, [class*="column"]) {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
:where([class*="row"]) {
	flex-flow: row wrap;
}
:where([class*="row-reverse"]) {
	flex-flow: row-reverse wrap;
}
:where([class*="row"]) > * {
	flex: 0 1 auto;
}
:where([class*="column"]) {
	flex-flow: column wrap;
}
:where([class*="column-reverse"]) {
	flex-flow: column-reverse wrap;
}
@media screen and (min-width: 768px) {
	:where([class*="row-"][class*="pc-"]) {
		flex-flow: row wrap;
	}
	:where([class*="row-reverse"][class*="pc-"]) {
		flex-flow: row-reverse wrap;
	}
}
@media screen and (max-width: 767px) {
	:where([class*="row-"][class*="sp-"]) {
		flex-flow: row wrap;
	}
	:where([class*="row-reverse"][class*="sp-"]) {
		flex-flow: row-reverse wrap;
	}
}

/* flex wrap */
:where([class*="row-nowrap-"], [class*="column-nowrap-"]) {
	flex-wrap: nowrap;
}

/* flex horizontal align */
:where([class*="row-"][class*="start"]) {
	justify-content: flex-start;
}
:where([class*="row-"][class*="end"]) {
	justify-content: flex-end;
}
:where([class*="row-"][class*="center"]) {
	justify-content: center;
}
:where([class*="row-"][class*="between"]) {
	justify-content: space-between;
}

:where([class*="column-"][class*="start"]) {
	align-items: flex-start;
}
:where([class*="column-"][class*="end"]) {
	align-items: flex-end;
}
:where([class*="column-"][class*="center"]) {
	align-items: center;
}

/* flex vertical align */
:where([class*="row-"][class*="top"]) {
	align-items: flex-start;
}
:where([class*="row-"][class*="bottom"]) {
	align-items: flex-end;
}
:where([class*="row-"][class*="middle"]) {
	align-items: center;
}
:where([class*="column-"][class*="top"]) {
	justify-content: flex-start;
}
:where([class*="column-"][class*="bottom"]) {
	justify-content: flex-end;
}
:where([class*="column-"][class*="middle"]) {
	justify-content: center;
}


/*  form
-------------------------------------------------------------------- */
form {}
form dl {}
form dd {
	-webkit-margin-start: 0;
	margin-inline-start: 0;
}
form button {
	border: none;
	cursor: pointer;
}
form dt {
	font-weight: 700;
    position: relative;
}
form dd {}
form dl dt::after {
	content: var(--item-text, "任意");
	display: inline-block;
	padding-inline: 0.5ic;
	background: var(--item-bg, var(--gray));
    color: var(--item-color, var(--black));
    font-weight: 500;
	font-size: 66%;
	vertical-align: text-top;
}
form dl.required,
form dl:has([aria-required], [required]) {
	--item-text: "必須";
	--item-bg: var(--alert, red);
	--item-color: white;
}
form label {
    width: fit-content;
    padding-block: 0.25lh;
}
form label:has(input:is([type="checkbox"], [type="radio"])) {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	-moz-column-gap: 0.5ic;
	column-gap: 0.5ic;
    color: currentColor;
}
form dd .note {
	flex: 0 0 100%;
	font-size: 90%;
	color: var(--black, black);
}
form dd:has(input:user-invalid) .note {
	color: var(--alert, red);
}
form :is(input, textarea)::placeholder,
option[disabled] {
    color: rgb(from var(--black, black) r g b / 0.3);
}
form input:is([type="text"], [type="email"], [type="tel"], [type="date"]),
form textarea,
form select {
	padding-inline: 0.5ic;
	border-radius: 3px;
	border: 1px solid var(--gray);
    background: var(--white, white);
    outline: transparent;
}
form input:is([type="text"], [type="email"], [type="tel"], [type="date"]):focus-visible,
form textarea:focus-visible,
form select:focus-visible {
	outline: var(--outline, dodgerBlue) auto 1px;
    border-color: transparent;
}
form input:is([type="text"], [type="email"], [type="tel"], [type="date"]):user-invalid,
form textarea:user-invalid,
form select:user-invalid {
	outline: var(--alert, red) auto 1px;
}
form input:is([type="text"], [type="email"], [type="tel"]),
form textarea {
    width: 100%;
}
form input:is([type="text"], [type="email"], [type="tel"], [type="date"]),
form textarea {
	box-sizing: border-box;
    padding-block: 0.25lh;
}
form input:is([type="checkbox"], [type="radio"]) {
	appearance: auto;
    inline-size: 1ic;
    block-size: 1ic;
    accent-color: var(--action, lawngreen);
}
form label:has(select) {
	--arrow-space: 2ic;
    position: relative;
}
form label:has(select)::after {
    --size: 0.3lh;
    display: block;
    width: var(--size);
    height: var(--size);
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    rotate: 45deg;

    position: absolute;
    top: 50%;
    right: calc((var(--arrow-space) - var(--size)) / 2);
    translate: 0 -50%;

    transition: var(--transition);
    pointer-events: none;
}

form select {
	appearance: none;
    width: auto;
    padding-block: 0.25lh;
    padding-right: var(--arrow-space);
	cursor: pointer;
}
form textarea {
	min-height: 6lh;
	field-sizing: content;
}

form [type="submit"]:is(button, input) {
	padding-block: 0.5lh;
	padding-inline: 2.5ic;
    margin-block: 1lh 0.5lh;
	margin-inline: auto;
	font-size: var(--semi-medium-size);
}
@media (hover: hover) {
	form [type="submit"]:is(button, input) {
		cursor: pointer;
	}
}
@media screen and (min-width: 768px) {}
@media screen and (max-width: 767px) {
	form dl:has([aria-required], [required]) dt p::after {
		font-size: 75%;
	}
}
