/* --------------------------------------------------------------------------------
reset
-------------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0px;
	padding: 0px;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
ul,
ol {
	list-style: none;
}
table {
	border-collapse: collapse;
}
iframe,
img,
svg,
video {
	display: block;
}
img,
svg {
	max-width: 100%;
	height: auto;
}



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: YakuHanJP, "M PLUS 1p", sans-serif;
	font-size: 1.25rem;
	font-weight: 500;
	font-feature-settings: "palt";
	line-height: 2.5rem;
	color: #000000;
	letter-spacing: 0.025em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
a.color {
	transition: 0.375s color ease;
}
a.color:hover {
	color: #1bbf6d;
}
h1 {
	font-size: 1.875rem;
	line-height: 3rem;
}
h2 {
	font-size: 1.625rem;
}
h3 {
	font-size: 1.5rem;
}
h4,
h5,
h6 {
	font-size: 1.25rem;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p:empty:before {
	content: none;
}
span.required {
	color: #1bbf6d;
}
*.indent {
	text-indent: -1em;
	padding-left: 1em;
}



/* --------------------------------------------------------------------------------
form
-------------------------------------------------------------------------------- */

label {
	display: inline-block;
	vertical-align: text-top;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select,
label.checkbox input[type=checkbox] + span,
label.file div.alternate p.button-file {
	border-radius: 5px;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	max-width: 100%;
	font-family: YakuHanJP, "M PLUS 1p", sans-serif;
	font-size: 1.25rem;
	outline: none;
	appearance: none;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select,
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]) + span {
	border: none;
	background-color: #f2f2f2;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #000000;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 60px;
	padding: 0px 20px;
}
input:where([type=button], [type=submit]),
button,
label.file div.alternate p.button-file {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 60px;
	text-align: center;
	font-size: 1.125rem;
	line-height: 1.25rem;
	color: #ffffff;
	border: none;
	cursor: pointer;
	padding: 0px 25px;
	background-color: #1bbf6d;
	border-radius: 30px;
	transition: 0.375s background-color ease;
}
input:where([type=button], [type=submit]):hover,
button:hover,
label.file div.alternate p.button-file:hover {
	background-color: #8e8e8e;
}
input:where([type=button], [type=submit]),
button {
	width: 240px;
}
button {
	position: relative;
}
button:has(span.arrow) {
	justify-content: flex-start;
}
button span.arrow {
	position: absolute;
	top: calc(50% - 12.5px);
	color: #8e8e8e;
	background-color: #ffffff;
}
button:has(span.arrow:first-child) {
	justify-content: flex-end;
	padding-left: 60px;
}
button:has(span.arrow:last-child) {
	justify-content: flex-start;
	padding-right: 60px;
}
button span.text {
	display: block;
}
button span.arrow:first-child {
	left: 17.5px;
	transform: scaleX(-1);
}
button span.arrow:last-child {
	right: 17.5px;
}
input:where([type=radio], [type=checkbox]),
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]) + span {
	aspect-ratio: 1;
	width: 30px;
}
label:where(.radio, .checkbox),
input:where([type=radio], [type=checkbox]) {
	margin-right: 5px;
}
label.radio input[type=radio],
label.checkbox input[type=checkbox],
label.file input[type=file] {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
}
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]) + span {
	display: block;
	position: relative;
	border: 1px solid #cccccc;
	cursor: pointer;
}
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]) + span::before {
	position: absolute;
	content: "";
	opacity: 0;
	transition: 0.375s opacity ease;
}
:where(label.radio input[type=radio], label.checkbox input[type=checkbox]):checked + span::before {
	opacity: 1;
}
label.radio input[type=radio] + span,
label.radio input[type=radio] + span::before {
	border-radius: 50%;
}
label.radio input[type=radio] + span::before {
	aspect-ratio: 1;
	width: 12px;
	left: calc(50% - calc(12px * 0.5));
	top: calc(50% - calc(12px * 0.5));
	background-color: #1bbf6d;
}
label.checkbox input[type=checkbox] + span::before {
	width: 10px;
	height: 15px;
	left: calc(calc(50% - calc(10px * 0.5)) + 1px);
	top: calc(50% - calc(15px * 0.5));
	border-right: 3px solid #1bbf6d;
	border-bottom: 3px solid #1bbf6d;
	transform: translate(-1px, -3px) rotate(45deg);
}
label.file {
	display: block;
}
label.file div.alternate {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding-right: 20px;
}
label.file div.alternate p:where(.button-file, .button-clear) {
	cursor: pointer;
}
label.file div.alternate p.button-file {
	width: 180px;
}
label.file div.alternate p.button-clear {
	display: none;
	position: absolute;
	width: 20px;
	height: 60px;
	right: 0px;
	top: 0px;
}
label.file.selected div.alternate p.button-clear {
	display: block;
}
label.file div.alternate p.button-clear::before,
label.file div.alternate p.button-clear::after {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	top: calc(50% - 1px);
	border-bottom: 2px solid #000000;
	content: "";
}
label.file div.alternate p.button-clear::before {
	transform: rotate(45deg);
}
label.file div.alternate p.button-clear::after {
	transform: rotate(-45deg);
}
label.file div.alternate p.name {
	width: calc(100% - 170px);
}
textarea {
	padding: 10px 20px;
}
select {
	padding-right: 40px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: auto 10px;
}
::placeholder {
	color: #cccccc;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
font
-------------------------------------------------------------------------------- */

@font-face {
	font-family:"Rockwell";
	src: url("../fonts/rockwell-bold.woff2") format("woff2");
	font-weight :700;
	font-style: normal;
}



/* --------------------------------------------------------------------------------
icon
-------------------------------------------------------------------------------- */

@font-face {
	font-family: "icon";
	src: url("../fonts/icon.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	font-weight: 400 !important;
	line-height: 1em;
}
i.icon-arrow::before {
	content: "\e900";
}
i.icon-athlete-01::before {
	content: "\e901";
}
i.icon-athlete-02::before {
	content: "\e902";
}
i.icon-world::before {
	content: "\e903";
}
i.icon-instagram::before {
	content: "\e904";
}
i.icon-x::before {
	content: "\e905";
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

br.small {
	display: none;
}
br.large {
	display: inline;
}
img.small {
	display: none;
}
img.large {
	display: block;
}
hr {
	height: 0px;
	border: none;
	border-bottom: 1px solid #cccccc;
	margin: 20px 0px;
}
iframe:where([src*="youtube.com"], .wp-embedded-content),
video {
	width: 100%;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	height: auto;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #f2f2f2;
	border-radius: 5px;
}
span.no-large {
	display: none;
}



/* --------------------------------------------------------------------------------
page
-------------------------------------------------------------------------------- */

div#page {
	position: relative;
	overflow: hidden;
}
div#trigger {
	position: absolute;
	top: 50svh;
}
span.arrow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	width: 25px;
	font-size: 0.75rem;
	color: #ffffff;
	background-color: #1bbf6d;
	border-radius: 50%;
}
:where(div.blob-wrapper, p.blob) {
	position: absolute;
}
div.blob-wrapper {
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
p.blob svg {
	width: 100%;
}
p.blob-type-01 {
	aspect-ratio: 430 / 400;
}
p.blob-type-02 {
	aspect-ratio: 540 / 480;
}
p.blob-type-03 {
	aspect-ratio: 640 / 440;
}
p.blob-type-01.blob-size-01 {
	width: calc(430px * 0.64);
}
p.blob-type-01.blob-size-02 {
	width: calc(430px * 0.8);
}
p.blob-type-01.blob-size-03 {
	width: 430px;
}
p.blob-type-02.blob-size-01 {
	width: calc(540px * 0.8);
}
p.blob-type-02.blob-size-02 {
	width: 540px;
}
p.blob-type-02.blob-size-03 {
	width: calc(540px * 1.25);
}
p.blob-type-03.blob-size-01 {
	width: calc(640px * 0.8);
}
p.blob-type-03.blob-size-02 {
	width: 640px;
}
p.blob-type-03.blob-size-03 {
	width: calc(640px * 1.25);
}
p.blob-rotate-01 {
	transform: rotate(90deg);
}
p.blob-rotate-02 {
	transform: rotate(180deg);
}
p.blob-rotate-03 {
	transform: rotate(270deg);
}
p.blob-reverse-01 {
	transform: scaleX(-1);
}
p.blob-reverse-02 {
	transform: scaleY(-1);
}
p.blob-reverse-03 {
	transform: scale(-1, -1);
}
p.blob-color-01 svg path {
	fill: #9fde69;
}
p.blob-color-02 svg path {
	fill: #fff034;
}
p.blob-color-03 svg path {
	fill: #ffd139;
}
p.tel-headline a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
p.tel-headline span.arrow {
	width: 50px;
	font-size: 1.5rem;
	margin-right: 20px;
}
p.tel-headline span:where(.sub, .main) {
	display: block;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
}
p.tel-headline span.sub {
	font-size: 1.875rem;
	margin-right: 5px;
	transform: translateY(3px);
}
p.tel-headline span.main {
	font-size: 2.5rem;
}
p.button-default,
p.button-default > * {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.button-default {
	text-align: center;
	font-size: 1.125rem;
	line-height: 1.25rem;
}
p.button-default > *,
p.button-default > * > * {
	position: relative;
}
p.button-default > * {
	align-items: center;
	min-width: 180px;
	height: 60px;
	color: #ffffff;
	padding: 0px 25px;
	background-color: #1bbf6d;
	border-radius: 30px;
	transition: 0.375s background-color ease;
}
p.button-default > *:has(span.arrow:first-child) {
	justify-content: flex-end;
	padding-left: 60px;
}
p.button-default > *:has(span.arrow:last-child) {
	justify-content: flex-start;
	padding-right: 60px;
}
p.button-default > *:hover {
	background-color: #8e8e8e;
}
p.button-default span.text {
	display: block;
}
p.button-default span.arrow {
	position: absolute;
	top: calc(50% - 12.5px);
	color: #8e8e8e;
	background-color: #ffffff;
}
p.button-default span.arrow:first-child {
	left: 17.5px;
	transform: scaleX(-1);
}
p.button-default span.arrow:last-child {
	right: 17.5px;
}
p.button-en {
	font-family: "Poppins", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
}
p.image {
	overflow: hidden;
}
p.image img {
	width: 100%;
}
p.image-zoom img {
	transition: 0.375s transform cubic-bezier(0.25, 1, 0.5, 1);
}
a:hover p.image-zoom img,
p.image-zoom a:hover img {
	transform: scale(1.0375);
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-zoom-alternate, .fade-bounce),
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-zoom-alternate, .fade-each-bounce) > * {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-zoom-alternate, .fade-bounce).active,
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-zoom-alternate, .fade-each-bounce).active > * {
	opacity: 1;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll.fade-slide,
*.scroll.fade-each-slide > * {
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left,
*.scroll.fade-each-slide-left > * {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -40px);
}
*.scroll.fade-slide.active,
*.scroll.fade-each-slide.active > * {
	transform: translate(0px, 0px);
}
*.scroll:where(.fade-zoom, .fade-zoom-alternate, .fade-bounce),
*.scroll:where(.fade-each-zoom, .fade-each-zoom-alternate, .fade-each-bounce) > * {
	transition-property: opacity, transform;
}
*.scroll:where(.fade-zoom, .fade-zoom-alternate, .fade-bounce).active,
*.scroll:where(.fade-each-zoom, .fade-each-zoom-alternate, .fade-each-bounce).active > * {
	transform: scale(1);
}
*.scroll.fade-zoom,
*.scroll.fade-each-zoom > * {
	transition-timing-function: ease-in-out, cubic-bezier(0.33, 1, 0.68, 1);
	transform: scale(0.875);
}
*.scroll.fade-zoom-alternate,
*.scroll.fade-each-zoom-alternate > * {
	transition-timing-function: ease-in-out, linear(0, 0.402 7.4%, 0.711 15.3%, 0.929 23.7%, 1.008 28.2%, 1.067 33%, 1.099 36.9%, 1.12 41%, 1.13 45.4%, 1.13 50.1%, 1.111 58.5%, 1.019 83.2%, 1.004 91.3%, 1);
	transform: scale(0.625);
}
html.safari *.scroll.fade-zoom-alternate,
html.safari *.scroll.fade-each-zoom-alternate > * {
	transform: scale(1);
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll.fade-zoom.active,
*.scroll.fade-each-zoom.active > *,
*.scroll.fade-zoom-alternate.active,
*.scroll.fade-each-zoom-alternate.active > *,
*.scroll.fade-bounce.active,
*.scroll.fade-each-bounce.active > * {
	transform: scale(1);
}
*.scroll.fade-bounce,
*.scroll.fade-each-bounce > * {
	transition-timing-function: ease-in-out, linear(0, 0.016, 0.063 9.1%, 0.25, 0.563, 1, 0.813 45.5%, 0.766, 0.75, 0.766, 0.813 63.6%, 1 72.7%, 0.953, 0.938, 0.953, 1, 0.984, 1);
	transform: scale(0.75);
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.split-text > * {
	display: inline-block;
}
*.delay-01 {
	transition-delay: calc(0.125s * 1);
}
*.delay-02 {
	transition-delay: calc(0.125s * 2);
}
*.delay-03 {
	transition-delay: calc(0.125s * 3);
}
*.delay-04 {
	transition-delay: calc(0.125s * 4);
}
*.delay-05 {
	transition-delay: calc(0.125s * 5);
}
*.delay-06 {
	transition-delay: calc(0.125s * 6);
}
*.delay-07 {
	transition-delay: calc(0.125s * 7);
}
*.delay-08 {
	transition-delay: calc(0.125s * 8);
}
*.delay-09 {
	transition-delay: calc(0.125s * 9);
}
*.delay-10 {
	transition-delay: calc(0.125s * 10);
}
div.grecaptcha-badge {
	z-index: 10;
	bottom: 120px !important;
}



/* --------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------- */

header#header {
	position: relative;
	z-index: 100;
}
header#header *#logo,
header#header div#menu nav#navi {
	position: fixed;
}
header#header *#logo {
	left: 40px;
	top: 39.5px;
}
body.admin-bar header#header *#logo {
	top: 71.5px;
}
header#header *#logo svg {
	width: 250px;
}
header#header div#menu nav#navi,
header#header div#menu nav#navi ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
header#header div#menu nav#navi {
	right: 40px;
	top: 30px;
	line-height: 2rem;
}
body.admin-bar header#header div#menu nav#navi {
	top: 62px;
}
header#header div#menu nav#navi ul,
header#header div#menu nav#navi ul li:not(:last-child) {
	margin-right: 35px;
}
header#header div#menu nav#navi ul li a {
	position: relative;
}
header#header div#menu nav#navi ul li a::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: -3px;
	border-bottom: 3px solid #1bbf6d;
	content: "";
	transition: 0.375s transform ease;
	transform: scaleX(0);
}
header#header div#menu nav#navi ul li a:hover::before,
body.news header#header div#menu nav#navi ul li.news a::before,
body.about header#header div#menu nav#navi ul li.about a::before,
body.our-group header#header div#menu nav#navi ul li.our-group a::before,
body.athlete header#header div#menu nav#navi ul li.athlete a::before,
body.artisan header#header div#menu nav#navi ul li.artisan a::before {
	transform: scaleX(1);
}
header#header div#menu nav#navi ul li span.main,
header#header div#menu nav#navi p.button-contact span.main {
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	font-weight: 700;
}
header#header div#menu nav#navi ul li :where(span.sub, span.arrow),
header#header div#menu nav#navi p.button-contact :where(span.sub, span.arrow) {
	display: none;
}
header#header div#menu nav#navi p.button-contact a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 40px;
	background-color: #e1ebe7;
	border-radius: 20px;
	transition: 0.375s color ease, 0.375s background-color ease;
}
header#header div#menu nav#navi p.button-contact a:hover {
	color: #ffffff;
	background-color: #1bbf6d;
}
header#header div#menu p.tel-headline {
	display: none;
}

/* home
-------------------------------------------------------------------------------- */

body.home header#header div#menu nav#navi p.button-contact a {
	background-color: #ffffff;
}
body.home div.scroll header#header div#menu nav#navi p.button-contact a {
	background-color: #e1ebe7;
}
body.home header#header div#menu nav#navi p.button-contact a:hover,
body.home div.scroll header#header div#menu nav#navi p.button-contact a:hover {
	background-color: #1bbf6d;
}



/* --------------------------------------------------------------------------------
cover
-------------------------------------------------------------------------------- */

div#cover {
	position: relative;
	height: 100lvh;
	min-height: 800px;
	overflow: hidden;
	background-color: #e1ebe7;
}
body.admin-bar div#cover {
	height: calc(100lvh - 32px);
}
div#cover p.blob-01 {
	left: calc(50% - 400px);
	top: calc(50% - 650px);
}
div#cover p.blob-02 {
	left: calc(50% - 850px);
	top: calc(50% - 250px);
}
div#cover p.blob-03 {
	right: calc(50% - 900px);
	top: calc(50% - 400px);
}
div#cover p.blob-04 {
	left: calc(50% - 300px);
	top: calc(50% + 150px);
}
div#cover p.blob-05 {
	right: calc(50% - 750px);
	top: calc(50% + 150px);
}
div#cover :where(div.illust, div.text, p.button-scroll),
div#cover div.illust p.row {
	position: absolute;
}
div#cover div.illust {
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
div#cover div.illust p.row svg {
	width: 100%;
}
div#cover div.illust p:where(.row-01, .row-02, .row-03, .row-04, .row-05, .row-06, .row-07) {
	top: calc(50% - 400px);
}
div#cover div.illust p.row-01 {
	width: 110px;
	left: calc(50% - 580px);
}
div#cover div.illust p.row-02 {
	width: 190px;
	left: calc(50% - 465px);
}
div#cover div.illust p.row-03 {
	width: 165px;
	left: calc(50% - 270px);
}
div#cover div.illust p.row-04 {
	width: 210px;
	left: calc(50% - 105px);
}
div#cover div.illust p.row-05 {
	width: 140px;
	left: calc(50% + 70px);
}
div#cover div.illust p.row-06 {
	width: 235px;
	left: calc(50% + 210px);
}
div#cover div.illust p.row-07 {
	width: 145px;
	left: calc(50% + 440px);
}
div#cover div.illust p:where(.row-08, .row-09, .row-10, .row-11, .row-12) {
	top: calc(50% - 130px);
}
div#cover div.illust p.row-08 {
	width: 240px;
	left: calc(50% - 495px);
}
div#cover div.illust p.row-09 {
	width: 155px;
	left: calc(50% - 250px);
}
div#cover div.illust p.row-10 {
	width: 175px;
	left: calc(50% - 100px);
}
div#cover div.illust p.row-11 {
	width: 165px;
	left: calc(50% + 75px);
}
div#cover div.illust p.row-12 {
	width: 250px;
	left: calc(50% + 245px);
}
div#cover div.text {
	left: 80px;
	bottom: 60px;
}
div#cover div.text h2,
div#cover p.button-scroll {
	font-family: "Rockwell", sans-serif;
	font-weight: 700;
}
div#cover div.text h2 {
	font-size: 5rem;
	line-height: 5rem;
	margin-bottom: 20px;
}
div#cover div.text p.sub,
div#cover p.button-scroll {
	transition-delay: 2.75s;
}
div#cover div.text p.sub {
	font-size: 1.75rem;
}
div#cover p.button-scroll {
	right: 30px;
	bottom: 40px;
	font-size: 1.25rem;
	line-height: 1.25rem;
}
div#cover p.button-scroll a {
	display: block;
	position: relative;
	padding-bottom: 90px;
}
div#cover p.button-scroll span {
	display: block;
}
div#cover p.button-scroll span.text {
	writing-mode: vertical-rl;
	white-space: pre;
	width: 20px;
	transform: translateX(2px);
}
div#cover p.button-scroll span.line {
	position: absolute;
	width: 2px;
	height: 80px;
	left: calc(50% - 1px);
	bottom: 0px;
	overflow: hidden;
}
div#cover p.button-scroll span.line::before {
	position: absolute;
	width: 0px;
	height: 100%;
	left: 0px;
	top: 0px;
	border-right: 2px solid #000000;
	content: "";
	transition: 0.375s border-color ease;
	animation: cover-button-scroll 2s ease-in-out infinite forwards;
}
div#cover p.button-scroll a:hover span.line::before {
	border-color: #1bbf6d;
}
@keyframes cover-button-scroll {
	0% { transform: translateY(-100%); }
	25%, 50% { transform: translateY(0%); }
	75%, 100% { transform: translateY(100%); }
}



/* --------------------------------------------------------------------------------
title
-------------------------------------------------------------------------------- */

div#title,
div#title div.text {
	position: relative;
}
div#title {
	padding-top: 220px;
}
div#title:has(p:where(.image, .illust)) {
	height: 800px;
	padding-top: 300px;
}
div#title div.blob-wrapper {
	height: auto;
}
div#title p:where(.image, .illust) {
	position: absolute;
}
div#title p.image {
	aspect-ratio: 660 / 500;
	width: 660px;
	left: 50%;
	top: 200px;
}
div#title p.illust img {
	width: 100%;
}
div#title div.text {
	width: 1080px;
	margin: 0px auto;
}
div#title div.text h1 {
	font-family: "Rockwell", sans-serif;
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 4.5rem;
}
div#title div.text h1:not(:last-child) {
	margin-bottom: 40px;
}
div#title div.text div.list-category ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
}
div#title div.text div.list-category ul li {
	font-size: 1rem;
	line-height: 2rem;
	margin-bottom: 10px;
}
div#title div.text div.list-category ul li:not(:last-child) {
	margin-right: 30px;
}
div#title div.text div.list-category ul li a {
	position: relative;
}
div#title div.text div.list-category ul li a::before {
	position: absolute;
	width: 100%;
	height: 0px;
	left: 0px;
	bottom: -5px;
	border-bottom: 3px solid #1bbf6d;
	content: "";
	transition: 0.375s transform ease;
	transform: scaleX(0);
}
div#title div.text div.list-category ul li a:hover::before,
div#title div.text div.list-category ul li.active a::before {
	transform: scaleX(1);
}
body.news div#title p.blob-01 {
	left: calc(50% - 400px);
	top: -50px;
}
body.news div#title p.blob-02 {
	left: calc(50% - 850px);
	top: 250px;
}
body.news div#title p.blob-03 {
	right: calc(50% - 850px);
	top: 150px;
}
body.about div#title p.blob-01 {
	right: calc(50% - 600px);
	top: -250px;
}
body.about div#title p.blob-02 {
	left: calc(50% - 350px);
	top: 150px;
}
body.about div#title p.blob-03 {
	left: calc(50% - 850px);
	top: 500px;
}
body.about div#title p.blob-04 {
	right: calc(50% - 850px);
	top: 800px;
}
body.our-group div#title p.blob-01 {
	left: calc(50% - 400px);
	top: -100px;
}
body.our-group div#title p.blob-02 {
	right: calc(50% - 900px);
	top: 200px;
}
body.our-group div#title p.blob-03 {
	left: calc(50% - 800px);
	top: 450px;
}
body.our-group div#title p.blob-04 {
	right: calc(50% - 300px);
	top: 650px;
}
body.our-group div#title p.illust {
	width: 457px;
	left: 50%;
	top: 150px;
}
body:where(.athlete, .artisan) div#title p.blob-01 {
	left: calc(50% - 300px);
	top: -50px;
}
body:where(.athlete, .artisan) div#title p.blob-02 {
	right: calc(50% - 850px);
	top: 250px;
}
body:where(.athlete, .artisan) div#title p.blob-03 {
	left: calc(50% - 750px);
	top: 300px;
}
body:where(.athlete, .artisan) div#title p.blob-04 {
	left: calc(50% - 100px);
	top: 450px;
}
body.athlete div#title p.illust {
	width: 423px;
	left: calc(50% + 50px);
	top: 200px;
}
body.artisan div#title p.illust {
	width: 472px;
	left: 50%;
	top: 200px;
}
body.contact div#title p.blob-01 {
	right: calc(50% - 850px);
	top: -200px;
}
body.contact div#title p.blob-02 {
	left: calc(50% - 950px);
	top: 250px;
}
body.contact div#title p.blob-03 {
	right: calc(50% - 650px);
	top: 450px;
}
body.contact div#title div.text {
	text-align: center;
}
body.contact div#title div.text p.description:not(:last-child) {
	margin-bottom: 40px;
}



/* --------------------------------------------------------------------------------
main
-------------------------------------------------------------------------------- */

main,
main section,
main section div.inner-section {
	position: relative;
}
main {
	z-index: 1;
}
main section div.inner-section {
	width: 1080px;
	margin: 0px auto;
	padding: 120px 0px;
}
main section:last-child div.inner-section {
	padding-bottom: 240px;
}
main section.arch {
	background-color: #eaffec;
}
main section.arch::before,
main section.arch::after {
	position: absolute;
	width: 100%;
	height: 80px;
	left: 0px;
	background-color: #eaffec;
	content: "";
	mask: url(../images/mask-arch.svg) no-repeat left top;
	mask-size: 100% 100%;
}
main section.arch::before {
	top: -79.5px;
}
main section.arch::after {
	bottom: -79.5px;
	transform: scaleY(-1);
}
main section:has(+ section.arch) div.inner-section {
	padding-bottom: 200px;
}
main section.arch + section div.inner-section {
	padding-top: 200px;
}
main div.frame {
	padding: 80px;
	background-color: #ffffff;
	border-radius: 30px;
}
main div.diagram-group div.list {
	position: relative;
	aspect-ratio: 640 / 560;
	width: 640px;
	height: 100%;
	transform: translateY(20px);
}
main div.diagram-group div.list::before {
	position: absolute;
	aspect-ratio: 1;
	width: 420px;
	left: calc(50% - 210px);
	top: calc(50% - 210px);
	border: 1px dashed #cccccc;
	content: "";
	border-radius: 50%;
}
main div.diagram-group div.list p.line {
	position: absolute;
	width: 0px;
	height: 210px;
	left: calc(50% - 0.5px);
	bottom: 50%;
	border-right: 1px dashed #cccccc;
	content: "";
	transform-origin: center bottom;
}
main div.diagram-group div.list p.line-02 {
	transform: rotate(calc(72deg * 1));
}
main div.diagram-group div.list p.line-03 {
	transform: rotate(calc(72deg * 2));
}
main div.diagram-group div.list p.line-04 {
	transform: rotate(calc(72deg * 3));
}
main div.diagram-group div.list p.line-05 {
	transform: rotate(calc(72deg * 4));
}
main div.diagram-group div.list div.row {
	aspect-ratio: 1;
	position: absolute;
	width: 180px;
	left: calc(50% - 90px);
	top: calc(50% - 90px);
	z-index: 1;
	text-align: center;
	font-weight: 700;
}
main div.diagram-group div.list div.row a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100%;
	background-color: #f2f2f2;
	border-radius: 50%;
	transition: 0.375s background-color ease;
}
main div.diagram-group div.list div.row a:hover {
	color: #ffffff;
	background-color: #1bbf6d;
}
main div.diagram-group div.list div.row-center a {
	pointer-events: none;
}
main div.diagram-group div.list div.row-center h3,
main div.diagram-group div.list div.row-company h4 {
	transition: 0.375s color ease;
}
main div.diagram-group div.list div.row-center h3 {
	font-family: "Rockwell", sans-serif;
	font-size: 1.75rem;
	line-height: 2rem;
}
main div.diagram-group div.list div.row-center a:hover h3,
main div.diagram-group div.list div.row-company a:hover h4 {
	color: #ffffff;
}
main div.diagram-group div.list div.row-company h4 {
	font-size: 1.125rem;
	line-height: 1.625rem;
	color: #1bbf6d;
}
main div.diagram-group div.list div.row-company a {
	padding-bottom: 20px;
}
main div.diagram-group div.list div.row-company-01 {
	transform: translate(0px, -210px);
}
main div.diagram-group div.list div.row-company-02 {
	transform: translate(199.72px, -64.89px);
}
main div.diagram-group div.list div.row-company-03 {
	transform: translate(123.43px, 169.89px);
}
main div.diagram-group div.list div.row-company-04 {
	transform: translate(-123.43px, 169.89px);
}
main div.diagram-group div.list div.row-company-05 {
	transform: translate(-199.72px, -64.89px);
}
main div.diagram-group div.list div.row-company span.arrow {
	position: absolute;
	left: calc(50% - 12.5px);
	bottom: 20px;
	color: #8e8e8e;
	background-color: #ffffff;
}
main ul.bullet li,
main article.common div.body ul li {
	position: relative;
	padding-left: 20px;
}
main ul.bullet li::before,
main article.common div.body ul li::before {
	position: absolute;
	aspect-ratio: 1;
	width: 6px;
	left: 4px;
	top: 18px;
	background-color: #000000;
	content: "";
	border-radius: 50%;
}
main ol.decimal,
main article.common div.body ol {
	padding-left: 20px;
}
main ol.decimal li,
main article.common div.body ol li {
	list-style-type: decimal;
}
main article.common div.body a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
main article.common div.body > *:not(:last-child),
main article.common div.body blockquote > *:not(:last-child) {
	margin-bottom: 20px;
}
main article.common div.body :where(h1, h2, h3, h4, h5, h6, strong) {
	font-weight: 700;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #f2f2f2;
	border-radius: 5px;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :where(th, td) {
	border: 1px solid #cccccc;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #f2f2f2;
}
main article.common div.body img.alignleft {
	margin-left: 0px;
	margin-right: auto;
}
main article.common div.body img.alignright {
	margin-left: auto;
	margin-right: 0px;
}
main article.common div.body img.aligncenter {
	margin-left: auto;
	margin-right: auto;
}
main div#pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	margin: 80px -5px -10px -5px;
}
main div#pager :where(span.current, a) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	width: 50px;
	border-radius: 50%;
	transition: 0.375s color ease, 0.375s background-color ease;
}
main div#pager :where(span.current, a:hover) {
	color: #ffffff;
	background-color: #1bbf6d;
}
main div#pager :where(span.current, a) {
	margin: 0px 5px 10px 5px;
}
main p.button-back {
	margin-top: 80px;
}

/* home
-------------------------------------------------------------------------------- */

main section#home-news div.inner-section {
	padding-left: 320px;
}
main section#home-news header,
main section#home-news p.button-default {
	position: absolute;
	left: 0px;
}
main section#home-news header {
	top: 120px;
}
main section#home-news header h2 {
	font-family: "Rockwell", sans-serif;
	font-size: 2.75rem;
	font-weight: 700;
	line-height: 2.75rem;
}
main section#home-news p.button-default {
	bottom: 210px;
}
main section#home-about div.illust-text {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	margin-bottom: 60px;
	padding-left: 60px;
}
main section#home-about div.illust-text p.illust {
	width: 501px;
}
main section#home-about div.illust-text div.text {
	width: calc(100% - 501px);
}
main section#home-about div.illust-text div.text :where(h2, p.sub) {
	color: #1bbf6d;
}
main section#home-about div.illust-text div.text h2 {
	font-size: 3.75rem;
	font-weight: 700;
	line-height: 3.75rem;
	margin-bottom: 10px;
}
main section#home-about div.illust-text div.text p.sub {
	font-family: "Rockwell", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 40px;
}
main section#home-about div.menu,
main section#home-about div.menu p.label,
main section#home-about div.menu p.label::before,
main section#home-about div.menu p.label::after {
	background-color: #1b9fbf;
}
main section#home-about div.menu {
	position: relative;
	overflow: hidden;
	color: #ffffff;
	padding: 20px;
	border-radius: 30px;
}
main section#home-about div.menu p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: absolute;
	height: 60px;
	left: 0px;
	top: 0px;
	z-index: 1;
	padding: 0px 30px;
	border-bottom-right-radius: 15px;
}
main section#home-about div.menu p.label::before,
main section#home-about div.menu p.label::after {
	position: absolute;
	aspect-ratio: 1;
	width: 15px;
	content: "";
	mask: url(../images/mask-corner.svg) no-repeat left top;
	mask-size: 100% auto;
}
main section#home-about div.menu p.label::before {
	top: 20px;
	right: -15px;
}
main section#home-about div.menu p.label::after {
	bottom: -15px;
	left: 20px;
}
main section#home-about div.menu p.label span {
	display: block;
}
main section#home-about div.menu p.label span:not(:last-child) {
	margin-right: 15px;
}
main section#home-about div.menu p.label span.main {
	font-family: "Rockwell", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	transform: translateY(-2px);
}
main section#home-about div.menu p.label span.sub {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main section#home-about div.menu div.image-text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section#home-about div.menu div.image-text p.image {
	aspect-ratio: 570 / 400;
	width: 570px;
	border-radius: 15px;
}
main section#home-about div.menu div.image-text p.image img {
	object-fit: cover;
	object-position: center 80%;
	width: 100%;
	height: 100%;
}
main section#home-about div.menu div.image-text div.text {
	width: calc(100% - 570px);
	padding: 0px 20px 0px 40px;
}
main section#home-about div.menu div.image-text div.text ul li {
	border-bottom: 1px solid #ffffff;
}
main section#home-about div.menu div.image-text div.text ul li a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	height: 90px;
	padding: 0px 35px 0px 10px;
}
main section#home-about div.menu div.image-text div.text ul li a:hover {
	color: #ffffff80;
}
main section#home-about div.menu div.image-text div.text ul li span:where(.number, .main, .sub) {
	display: block;
}
main section#home-about div.menu div.image-text div.text ul li span:where(.number, .main) {
	font-family: "Rockwell", sans-serif;
	font-weight: 700;
}
main section#home-about div.menu div.image-text div.text ul li span.number {
	font-size: 1.5rem;
	margin-right: 10px;
	transform: translateY(2px);
}
main section#home-about div.menu div.image-text div.text ul li span.main {
	font-size: 2rem;
	margin-right: 10px;
}
main section#home-about div.menu div.image-text div.text ul li span.sub {
	font-size: 0.875rem;
	line-height: 1.5rem;
	transform: translateY(4px);
}
main section#home-about div.menu div.image-text div.text ul li span.arrow {
	position: absolute;
	right: 10px;
	top: calc(50% - 12.5px);
	color: #8e8e8e;
	background-color: #ffffff;
}
main section#home-misc p.blob-01 {
	right: calc(50% - 750px);
	top: 100px;
}
main section#home-misc p.blob-02 {
	left: calc(50% - 850px);
	top: 100px;
}
main section#home-misc p.blob-03 {
	right: calc(50% - 950px);
	top: calc(50% - 200px);
}
main section#home-misc p.blob-04 {
	left: calc(50% - 1000px);
	top: calc(50% + 100px);
}
main section#home-misc p.blob-05 {
	right: calc(50% - 650px);
	bottom: -50px;
}
main section#home-misc div.inner-section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main section#home-misc div.block h2 {
	font-family: "Rockwell", sans-serif;
	font-size: 4.25rem;
	font-weight: 700;
	line-height: 4.25rem;
	color: #1bbf6d;
	margin-bottom: 30px;
}
main section#home-misc div.block p.description {
	margin-bottom: 40px;
}
main section#home-misc div.block-our-group {
	width: 100%;
	margin-bottom: 120px;
}
main section#home-misc div.block-our-group div.diagram-group-text {
	display: flex;
	flex-wrap: wrap;
}
main section#home-misc div.block-our-group div.diagram-group-text div.text {
	width: calc(100% - 640px);
}
main section#home-misc div.block-our-group div.diagram-group-text div.diagram-group {
	width: 640px;
}
main section#home-misc div.block-our-group div.text p.button-default {
	justify-content: flex-start;
}
main section#home-misc div.block-our-group p.button-small {
	display: none;
}
main section#home-misc div:where(.block-athlete, .block-artisan) {
	width: 50%;
	text-align: center;
}
main section#home-misc div:where(.block-athlete, .block-artisan) p.illust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 30px;
}
main section#home-misc div.block-athlete p.illust img {
	width: calc(423px * 0.875);
}
main section#home-misc div.block-artisan p.illust img {
	width: calc(472px * 0.875);
}

/* news
-------------------------------------------------------------------------------- */

main div.created-category,
main div.created-category div.category ul {
	display: flex;
	flex-wrap: wrap;
}
main div.created-category {
	display: flex;
	flex-wrap: wrap;
	font-size: 1rem;
	line-height: 1.75rem;
}
main div.created-category p.created {
	width: 110px;
	font-family: "Poppins", sans-serif;
	color: #8e8e8e;
	transform: translateY(1px);
}
main div.created-category div.category {
	width: calc(100% - 110px);
}
main div.created-category div.category ul li:not(:last-child) {
	margin-right: 20px;
}
main div.list-news div.row:not(:last-child) {
	margin-bottom: 50px;
}
main div.list-news div.row div.created-category {
	margin-bottom: 5px;
}
main div.list-news div.row a {
	display: block;
}
main div.list-news div.row h3 {
	position: relative;
	text-align: left;
	font-size: 1.25rem;
	padding-right: 35px;
	transition: 0.375s color ease;
}
main div.list-news div.row a:hover h3 {
	color: #1bbf6d;
}
main div.list-news div.row h3 span.arrow {
	position: absolute;
	right: 0px;
	top: 7.5px;
}
main article.news header {
	margin-bottom: 40px;
}
main article.news header h1 {
	text-align: left;
	font-size: 1.875rem;
	line-height: 3rem;
}
main article.news div.created-category {
	margin-bottom: 40px;
}
main section#news div.blob-wrapper p.blob {
	display: none;
}

/* about
-------------------------------------------------------------------------------- */

main section:where(#philosophy, #message, #group, #history) header {
	margin-bottom: 60px;
}
main section:where(#philosophy, #message, #group, #history) header h2 {
	display: flex;
	flex-wrap: wrap;
	align-items: first baseline;
	color: #1bbf6d;
}
main section:where(#philosophy, #message, #group, #history) header h2 span {
	display: block;
}
main section:where(#philosophy, #message, #group, #history) header h2 span:not(:last-child) {
	margin-right: 15px;
}
main section:where(#philosophy, #message, #group, #history) header h2 span:where(.number, .main) {
	font-family: "Rockwell", sans-serif;
	font-weight: 700;
}
main section:where(#philosophy, #message, #group, #history) header h2 span.number {
	font-size: 2.25rem;
}
main section:where(#philosophy, #message, #group, #history) header h2 span.main {
	font-size: 3.125rem;
	line-height: 3.125rem;
}
main section:where(#philosophy, #message, #group, #history) header h2 span.sub {
	font-size: 1.25rem;
	transform: translateY(-2px);
}
:where(h3, h4).headline {
	position: relative;
	padding-left: 30px;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3rem;
	margin-bottom: 40px;
}
:where(h3, h4).headline::before {
	position: absolute;
	aspect-ratio: 1;
	width: 15px;
	left: 0px;
	top: 17px;
	background-color: #1bbf6d;
	content: "";
	border-radius: 50%;
}
main section#philosophy div.blob-wrapper {
	display: none;
}
main section#philosophy header p.illust {
	display: none;
}
main section#philosophy div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#philosophy div.block-trust-and-harmony {
	position: relative;
}
main section#philosophy div.block-trust-and-harmony p.illust {
	position: absolute;
	right: 0px;
	top: 0px;
	width: calc(501px * 0.875);
}
main section#philosophy div.block-trust-and-harmony p.illust.fixed {
	position: fixed;
	right: calc(50% - 540px);
	top: 120px;
}
main section#philosophy div.block-trust-and-harmony p.illust.bottom {
	top: auto;
	bottom: 0px;
}
main section#philosophy div.block-trust-and-harmony p.illust img {
	width: 100%;
}
main section#philosophy div.block-trust-and-harmony :where(h3:not(.headline), p.description) {
	margin-bottom: 60px;
}
main section#philosophy div.block-trust-and-harmony h3:not(.headline) {
	display: flex;
	flex-wrap: wrap;
	align-items: first baseline;
	font-weight: 700;
	color: #1bbf6d;
}
main section#philosophy div.block-trust-and-harmony h3:not(.headline) span {
	display: block;
}
main section#philosophy div.block-trust-and-harmony h3:not(.headline) span.main {
	font-size: 3.75rem;
	line-height: 3.75rem;
	margin-right: 30px;
}
main section#philosophy div.block-trust-and-harmony h3:not(.headline) span.sub,
main section#philosophy div.block-trust-and-harmony div.list div.row div.text p.sub {
	font-family: "Rockwell", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
}
main section#philosophy div.block-trust-and-harmony p.description {
	line-height: 3.5rem;
}
main section#philosophy div.block-trust-and-harmony div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center
}
main section#philosophy div.block-trust-and-harmony div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#philosophy div.block-trust-and-harmony div.list div.row p.icon {
	width: 120px;
}
main section#philosophy div.block-trust-and-harmony div.list div.row p.icon img {
	width: 100%;
}
main section#philosophy div.block-trust-and-harmony div.list div.row div.text {
	width: calc(100% - 150px);
}
main section#philosophy div.block-trust-and-harmony div.list div.row div.text p.sub {
	color: #9fde69;
	margin-bottom: 5px;
}
main section#philosophy div.block-trust-and-harmony div.list div.row div.text h5 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 3.5rem;
	color: #1bbf6d;
}
main section#message header h2 {
	justify-content: center;
}
main section#philosophy div.block-guideline div.list {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
main section#philosophy div.block-guideline div.list div.row {
	width: calc(33.33% - 20px);
	overflow: hidden;
	text-align: center;
	margin-right: 20px;
	padding-bottom: 40px;
	background-color: #fffde0;
	border-radius: 30px;
}
main section#philosophy div.block-guideline div.list div.row :where(p.number, h4) {
	font-family: "Rockwell", sans-serif;
	font-weight: 700;
}
main section#philosophy div.block-guideline div.list div.row p.number {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	width: 100px;
	font-size: 1.5rem;
	color: #ffffff;
	margin: -50px auto 20px auto;
	padding-top: 45px;
	background-color: #9fde69;
	border-radius: 50%;
}
main section#philosophy div.block-guideline div.list div.row h4 {
	font-size: 2.25rem;
	color: #1bbf6d;
	margin-bottom: 20px;
}
main section#philosophy div.block-guideline div.list div.row p.description {
	font-size: 1.125rem;
	line-height: 2rem;
}
main section#message div.inner-section {
	width: 920px;
}
main section#message :where(p.description, ul):not(:last-child) {
	margin-bottom: 60px;
}
main section#message p.description {
	line-height: 3.5rem;
}
main section#message ul li:not(:last-child) {
	margin-bottom: 40px;
}
main section#message ul li span {
	display: block;
	position: relative;
	padding-left: 25px;
}
main section#message ul li span.sub {
	font-family: "Rockwell", sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 2.75rem;
	color: #9fde69;
}
main section#message ul li span.sub::before {
	position: absolute;
	aspect-ratio: 1;
	width: 15px;
	left: 0px;
	top: 16px;
	background-color: #9fde69;
	content: "";
	border-radius: 50%;
}
main section#message ul li span.sub i {
	font-family: YakuHanJP, "M PLUS 1p", sans-serif;
	font-size: 1.625rem;
}
main section#message ul li span.main {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 3.5rem;
	color: #1bbf6d;
}
main section#group p.blob-01 {
	left: calc(50% - 900px);
	top: 100px;
}
main section#group p.blob-02 {
	right: calc(50% - 600px);
	top: 100px;
}
main section#group p.blob-03 {
	right: calc(50% - 1000px);
	top: 450px;
}
main section#group p.blob-04 {
	left: calc(50% - 750px);
	bottom: -300px;
}
main section#group div.block {
	position: relative;
}
main section#group div.block div.text div.list-outline {
	position: relative;
	margin-bottom: 120px;
}
main section#group div.block div.text div.list-outline::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 10px);
	left: 140px;
	top: 5px;
	border-right: 1px solid #cccccc;
	content: "";
}
main section#group div.block div.text div.list-outline div.row {
	display: flex;
	flex-wrap: wrap;
}
main section#group div.block div.text div.list-outline div.row:not(:last-child) {
	margin-bottom: 10px;
}
main section#group div.block div.text div.list-outline div.row p.label {
	width: 180px;
}
main section#group div.block div.text div.list-outline div.row p.body {
	width: calc(100% - 180px);
}
main section#group div.block div.text ul li:not(:last-child) {
	margin-bottom: 10px;
}
main section#group div.block div.text ul li,
main section#group div.block div.text ul li a {
	display: flex;
	flex-wrap: wrap;
}
main section#group div.block div.text ul li a {
	align-items: center;
}
main section#group div.block div.text ul li span.text {
	display: block;
	margin-right: 10px;
}
main section#group div.block div.diagram-group {
	position: absolute;
	right: 0px;
	top: 0px;
}
main section#group div.block div.diagram-group.fixed {
	position: fixed;
	right: calc(50% - 540px);
	top: 120px;
}
main section#group div.block div.diagram-group.bottom {
	top: auto;
	bottom: 0px;
}
main section#history p.blob:not(.blob-01, .blob-01, .blob-01, .blob-01, .blob-05) {
	display: none;
}
main section#history p.blob-01 {
	right: calc(50% - 800px);
	top: 350px;
}
main section#history p.blob-02 {
	right: calc(50% - 750px);
	top: calc(50% - 150px);
}
main section#history p.blob-03 {
	left: calc(50% - 950px);
	top: calc(50% + 200px);
}
main section#history p.blob-04 {
	left: calc(50% - 750px);
	bottom: 500px;
}
main section#history p.blob-05 {
	right: calc(50% - 800px);
	bottom: -100px;
}
main section#history h2 {
	margin-bottom: 80px;
}
main section#history div.list div.row {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	line-height: 1.75rem;
}
main section#history div.list div.row:not(:last-child)::before,
main section#history div.list div.row::after {
	position: absolute;
	content: "";
}
main section#history div.list div.row:not(:last-child)::before {
	width: 0px;
	height: calc(100% - 13px);
	left: 147px;
	top: 23px;
	border-right: 1px solid #e1ebe7;
	transition: 0.375s transform 0.375s ease;
	transform-origin: left top;
	transform: scaleY(0);
}
main section#history div.list div.row.active:not(:last-child)::before {
	transform: scaleY(1);
}
main section#history div.list div.row::after {
	aspect-ratio: 1;
	width: 15px;
	left: 140px;
	top: 8px;
	border: 4px solid #ffffffbf;
	background-color: #1bbf6d;
	border-radius: 50%;
	transition: 0.75s transform linear(0, 0.402 7.4%, 0.711 15.3%, 0.929 23.7%, 1.008 28.2%, 1.067 33%, 1.099 36.9%, 1.12 41%, 1.13 45.4%, 1.13 50.1%, 1.111 58.5%, 1.019 83.2%, 1.004 91.3%, 1);
	transform: scale(0);
}
main section#history div.list div.row.active::after {
	transform: scale(1);
}
main section#history div.list div.row:not(:last-child) {
	padding-bottom: 30px;
}
main section#history div.list div.row p {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
main section#history div.list div.row.active p {
	opacity: 1;
}
main section#history div.list div.row p:where(.label, .year-month) {
	color: #1bbf6d;
}
main section#history div.list div.row p.label {
	width: 200px;
	font-family: "Rockwell", sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
}
main section#history div.list div.row p:where(.year-month, .body) {
	font-size: 1.125rem;
}
main section#history div.list div.row p.year-month {
	display: flex;
	flex-wrap: wrap;
	width: 180px;
}
main section#history div.list div.row p.year-month span {
	display: block;
}
main section#history div.list div.row p.year-month span.year {
	width: 70px;
}
main section#history div.list div.row p.year-month span.month {
	text-align: right;
	width: 45px;
}
main section#history div.list div.row p.body {
	width: calc(100% - 380px);
}

/* our-group
-------------------------------------------------------------------------------- */

main section#our-group div.block {
	padding-top: 120px;
}
main section#our-group div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#our-group div.block div.illust-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}
main section#our-group div.block div.illust-header p.illust img {
	width: 100%;
}
main section#our-group div.block-01 div.illust-header p.illust {
	width: 574px;
}
main section#our-group div.block-01 div.illust-header p.illust img {
	margin-left: -40px;
}
main section#our-group div.block-02 div.illust-header p.illust {
	width: 556px;
}
main section#our-group div.block-03 div.illust-header p.illust {
	width: 345px;
}
main section#our-group div.block-03 div.illust-header p.illust img {
	margin-left: 100px;
}
main section#our-group div.block-04 div.illust-header p.illust {
	width: 239px;
}
main section#our-group div.block-04 div.illust-header p.illust img {
	margin-left: 160px;
}
main section#our-group div.block-05 div.illust-header p.illust {
	width: 374px;
}
main section#our-group div.block-05 div.illust-header p.illust img {
	margin-left: 80px;
}
main section#our-group div.block div.illust-header div.header {
	position: relative;
	width: 500px;
}
main section#our-group div.block div.illust-header div.header p:where(.number, .label) {
	font-family: "Rockwell", sans-serif;
	font-weight: 700;
}
main section#our-group div.block div.illust-header div.header p.number {
	position: absolute;
	right: 0px;
	top: -10px;
	font-size: 7.75rem;
	line-height: 7.75rem;
	color: #e1ebe7;
}
main section#our-group div.block div.illust-header div.header p.label {
	margin-bottom: 20px;
}
main section#our-group div.block div.illust-header div.header :where(h2, p.business) {
	margin-bottom: 40px;
}
main section#our-group div.block div.illust-header div.header :where(h2, h3) {
	font-weight: 700;
	color: #1bbf6d;
}
main section#our-group div.block div.illust-header div.header h2 {
	font-size: 3.125rem;
	line-height: 3.75rem;
}
main section#our-group div.block div.illust-header div.header p.business {
	font-size: 1.125rem;
	line-height: 2rem;
}
main section#our-group div.block div.illust-header div.header h3 {
	position: relative;
	font-size: 1.875rem;
	line-height: 2.75rem;
	padding-left: 25px;
}
main section#our-group div.block div.illust-header div.header h3::before {
	position: absolute;
	width: 0px;
	height: calc(100% - 14px);
	left: 0px;
	top: 7px;
	border-right: 5px solid #9fde69;
	content: "";
}
main section#our-group div.block div.frame {
	margin-top: -20px;
}
main section#our-group div.block:nth-child(2n+1) div.frame {
	background-color: #eaffec;
}
main section#our-group div.block:nth-child(2n) div.frame {
	background-color: #fffde0;
}
main section#our-group div.block div.frame div.list {
	margin-bottom: 60px;
}
main section#our-group div.block div.frame div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#our-group div.block div.frame div.list div.row h4 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	margin-bottom: 10px;
}
main section#our-group div.block div.frame div.list div.row h4 span.number {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	width: 50px;
	font-family: "Rockwell", sans-serif;
	font-weight: 700;
	color: #ffffff;
	background-color: #1bbf6d;
	border-radius: 50%;
}
main section#our-group div.block div.frame div.list div.row h4 span.main {
	display: block;
	width: calc(100% - 70px);
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 3rem;
	color: #1bbf6d;
}
main section#our-group div.block div.frame div.list div.row p.description {
	padding-left: 70px;
}
main section#our-group div.block div.frame div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
main section#our-group div.block div.frame div.button-wrapper p.button-default:not(:last-child) {
	margin-right: 20px;
}

/* athlete
-------------------------------------------------------------------------------- */

main div.list-athlete article {
	position: relative;
	overflow: hidden;
	padding: 20px;
	border-radius: 30px;
}
main div.list-athlete article:not(:last-child) {
	margin-bottom: 60px;
}
main div.list-athlete article:has(i.icon-athlete-01),
main div.list-athlete article:has(i.icon-athlete-01) div.event-type,
main div.list-athlete article:has(i.icon-athlete-01) div.event-type::before,
main div.list-athlete article:has(i.icon-athlete-01) div.event-type::after {
	background-color: #1b9fbf;
}
main div.list-athlete article:has(i.icon-athlete-02),
main div.list-athlete article:has(i.icon-athlete-02) div.event-type,
main div.list-athlete article:has(i.icon-athlete-02) div.event-type::before,
main div.list-athlete article:has(i.icon-athlete-02) div.event-type::after {
	background-color: #9fde69;
}
main div.list-athlete article:has(i.icon-athlete-01) {
	color: #ffffff;
}
main div.list-athlete article:has(i.icon-athlete-02) {
	color: #000000;
}
main div.list-athlete article div.event-type {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: absolute;
	height: 60px;
	top: 0px;
	z-index: 1;
	padding: 0px 30px;
}
main div.list-athlete article:nth-child(2n+1) div.event-type {
	left: 0px;
	border-bottom-right-radius: 15px;
}
main div.list-athlete article:nth-child(2n) div.event-type {
	right: 0px;
	border-bottom-left-radius: 15px;
}
main div.list-athlete article div.event-type::before,
main div.list-athlete article div.event-type::after {
	position: absolute;
	aspect-ratio: 1;
	width: 15px;
	content: "";
	mask: url(../images/mask-corner.svg) no-repeat left top;
	mask-size: 100% auto;
}
main div.list-athlete article:nth-child(2n) div.event-type::before,
main div.list-athlete article:nth-child(2n) div.event-type::after {
	transform: scaleX(-1);
}
main div.list-athlete article div.event-type::before {
	top: 20px;
}
main div.list-athlete article:nth-child(2n+1) div.event-type::before {
	right: -15px;
}
main div.list-athlete article:nth-child(2n) div.event-type::before {
	left: -15px;
}
main div.list-athlete article div.event-type::after {
	bottom: -15px;
}
main div.list-athlete article:nth-child(2n+1) div.event-type::after {
	left: 20px;
}
main div.list-athlete article:nth-child(2n) div.event-type::after {
	right: 20px;
}
main div.list-athlete article div.event-type p.event {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	width: 40px;
	background-color: #ffffff;
	border-radius: 50%;
	margin-right: 10px;
}
main div.list-athlete article:has(i.icon-athlete-01) div.event-type p.event,
main div.list-athlete article:has(i.icon-athlete-01) div.image-text div.text div.list div.row div.body span.arrow,
main div.list-athlete article:has(i.icon-athlete-01) div.image-text div.text div.list div.row div.body p.web {
	color: #1b9fbf;
}
main div.list-athlete article:has(i.icon-athlete-02) div.event-type p.event,
main div.list-athlete article:has(i.icon-athlete-02) div.image-text div.text div.list div.row div.body span.arrow,
main div.list-athlete article:has(i.icon-athlete-02) div.image-text div.text div.list div.row div.body p.web {
	color: #9fde69;
}
main div.list-athlete article div.event-type p.type {
	font-size: 1.125rem;
}
main div.list-athlete article div.image-text {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}
main div.list-athlete article:nth-child(2n) div.image-text {
	flex-direction: row-reverse;
}
main div.list-athlete article div.image-text p.image {
	aspect-ratio: 570 / 360;
	width: 570px;
	border-radius: 15px;
}
main div.list-athlete article div.image-text p.image img {
	object-fit: cover;
	object-position: center 40%;
	width: 100%;
	height: 100%;
}
main div.list-athlete article div.image-text div.text {
	width: calc(100% - 570px);
	padding: 60px;
}
main div.list-athlete article div.image-text div.text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 40px;
}
main div.list-athlete article div.image-text div.text div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-right: -40px;
}
main div.list-athlete article div.image-text div.text div.list div.row:not(:last-child) {
	margin-bottom: 10px;
}
main div.list-athlete article div.image-text div.text div.list div.row p.label {
	position: relative;
	width: 120px;
}
main div.list-athlete article div.image-text div.text div.list div.row p.label::before {
	position: absolute;
	width: 0px;
	height: 20px;
	right: 0px;
	top: 10px;
	border-right-width: 2px;
	border-right-style: solid;
	content: "";
}
main div.list-athlete article:has(i.icon-athlete-01) div.image-text div.text div.list div.row p.label::before {
	border-color: #ffffff;
}
main div.list-athlete article:has(i.icon-athlete-02) div.image-text div.text div.list div.row p.label::before {
	border-color: #000000;
}
main div.list-athlete article div.image-text div.text div.list div.row div.body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: calc(100% - 140px);
}
main div.list-athlete article div.image-text div.text div.list div.row div.body a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	transition: 0.375s opacity ease;
}
main div.list-athlete article div.image-text div.text div.list div.row div.body a:hover {
	opacity: 0.625;
}
main div.list-athlete article div.image-text div.text div.list div.row div.body p:not(:last-child) {
	margin-right: 15px;
}
main div.list-athlete article div.image-text div.text div.list div.row div.body span.text:not(:last-child) {
	margin-right: 10px;
}
main div.list-athlete article div.image-text div.text div.list div.row div.body span.arrow {
	background-color: #ffffff;
}
main div.list-athlete article div.image-text div.text div.list div.row div.body p.web {
	font-size: 0.875rem;
	line-height: 1.75rem;
}
main div.list-athlete article div.image-text div.text div.list div.row div.body p.web a {
	padding: 0px 10px;
	background-color: #ffffff;
	border-radius: 5px;
}
main div.list-athlete article div.image-text div.text div.list div.row div.body p.web i.icon-world {
	font-size: 1.125rem;
	margin-left: 5px;
}
main div.list-athlete article div.image-text div.text div.list div.row div.body p:where(.instagram, .x) {
	font-size: 1.5rem;
}

/* artisan
-------------------------------------------------------------------------------- */

main section#artisan p.blob-01 {
	left: calc(50% - 800px);
	top: 450px;
}
main section#artisan p.blob-02 {
	right: calc(50% - 900px);
	top: calc(50% - 600px);
}
main section#artisan p.blob-03 {
	left: calc(50% - 950px);
	top: calc(50% + 200px);
}
main section#artisan p.blob-04 {
	right: calc(50% - 750px);
	top: calc(50% + 250px);
}
main section#artisan p.blob-05 {
	right: calc(50% - 150px);
	bottom: -100px;
}
main section#artisan div.inner-section {
	width: 920px;
}
main section#artisan div.list div.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#artisan div.list div.row:not(:last-child) {
	margin-bottom: 240px;
}
main section#artisan div.list div.row:nth-child(2n) {
	flex-direction: row-reverse;
}
main section#artisan div.list div.row div.blob-wrapper {
	display: none;
}
main section#artisan div.list div.row p.illust img {
	width: 100%;
}
main section#artisan div.list div.row-01 p.illust {
	width: 240px;
}
main section#artisan div.list div.row-02 p.illust {
	width: 181px;
}
main section#artisan div.list div.row-03 p.illust {
	width: 186px;
}
main section#artisan div.list div.row div.text {
	width: 620px;
}
main section#artisan div.list div.row div.text h2 {
	font-size: 3.125rem;
	line-height: 3.125rem;
	margin-bottom: 10px;
}
main section#artisan div.list div.row div.text p.sub {
	font-family: "Rockwell", sans-serif;
	font-size: 1.625rem;
	font-weight: 700;
	color: #1bbf6d;
	margin-bottom: 20px;
}
main section#artisan div.list div.row div.text p.description {
	margin-bottom: 60px;
}
main section#artisan div.list div.row:nth-child(2n+1) div.text p.button-default {
	justify-content: flex-end;
}
main section#artisan div.list div.row:nth-child(2n) div.text p.button-default {
	justify-content: flex-start;
}

/* form
-------------------------------------------------------------------------------- */

main section.form h2 {
	text-align: center;
	font-family: "Rockwell", sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 80px;
}
main section.form span.wpcf7-list-item {
	margin: 0px;
}
main section.form div.component-wrapper {
	margin-bottom: 80px;
}
main section.form div.component {
	position: relative;
}
main section.form div.component:not(:last-child) {
	margin-bottom: 40px;
}
div.confirm main section.form div.component {
	border-bottom: 1px solid #cccccc;
	margin-bottom: 0px;
	padding: 40px 0px;
}
div.confirm main section.form div.component:first-child {
	border-top: 1px solid #cccccc;
}
main section.form div.component p.label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 10px;
}
main section.form div.component p.label span.required {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 25px;
	font-size: 0.875rem;
	line-height: 1rem;
	color: #ffffff;
	margin-left: 10px;
	background-color: #8e8e8e;
	border-radius: 5px;
}
div.confirm main section.form div.component p.label span.required {
	display: none;
}
main section.form div.component div.body span.wpcf7-form-control-wrap {
	display: block;
}
main section.form div.component-horizontal div.body {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.component-name-furigana div.body div.row {
	width: 320px;
}
div.confirm main section.form div.component-name-furigana div.body div.row {
	width: auto;
}
main section.form div.component-name-furigana div.body div.row:not(:last-child) {
	margin-right: 20px;
}
main section.form div.component div.body span:where(.wpcf7-radio, .wpcf7-checkbox) {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
}
main section.form div.component div.body span:where(.wpcf7-radio, .wpcf7-checkbox) span.wpcf7-list-item {
	display: block;
	margin: 0px 0px 10px 0px;
}
main section.form div.component div.body span:where(.wpcf7-radio, .wpcf7-checkbox) span.wpcf7-list-item:not(:last-child) {
	margin-right: 30px;
}
main section.form div.component div.body span:where(.wpcf7-radio, .wpcf7-checkbox) span.wpcf7-list-item > label {
	display: block;
}
main section.form div.component div.body :where(input[type=text], input[type=email], select, textarea) {
	width: 100%;
}
div.confirm main section.form div.component div.body :where(input[type=text], input[type=email], select, textarea) {
	field-sizing: content;
	height: auto;
	border: none;
	pointer-events: none;
	padding: 0px;
	background-color: transparent;
}
div.confirm main section.form div.component div.body select {
	background-image: none;
}
div.confirm main section.form div.component div.body textarea {
	resize: none;
}
div.confirm main section.form div.component div.body span.wpcf7-list-item {
	pointer-events: none;
}
div.confirm main section.form div.component div.body span.wpcf7-list-item:not(:has(input:checked)) {
	display: none;
}
div.confirm main section.form div.component div.body span.wpcf7-list-item label:where(.radio, .checkbox) {
	display: none;
}
div.confirm main section.form label.file {
	pointer-events: none;
}
div.confirm main section.form label.file div.alternate p.button-file {
	display: none;
}
div.confirm main section.form label.file div.alternate p.button-clear {
	display: none;
}
main section.form div.component div.body span.wpcf7-not-valid-tip,
main section.form div.agreement span.wpcf7-not-valid-tip {
	position: absolute;
	left: 0px;
	bottom: -25px;
	font-size: 0.875rem;
	line-height: 25px;
	color: #1bbf6d;
}
main section.form div.component div.body:has(span:where(.wpcf7-radio, .wpcf7-checkbox)) span.wpcf7-not-valid-tip {
	bottom: -15px;
}
main section.form div.component div.body span.wpcf7-not-valid-tip {
	width: 100%;
}
main section.form div:where(.privacy-policy, .agreement) {
	margin-bottom: 80px;
}
div.confirm main section.form div:where(.privacy-policy, .agreement) {
	display: none;
}
main section.form div.privacy-policy h3 {
	margin-bottom: 20px;
}
main section.form div.privacy-policy div.list {
	height: 360px;
	overflow: auto;
	border: 1px solid #cccccc;
	border-radius: 5px;
	-webkit-overflow-scrolling: touch;
}
main section.form div.privacy-policy div.list div.inner-list {
	padding: 40px;
}
main section.form div.privacy-policy div.list div.row:not(:last-child) {
	margin-bottom: 40px;
}
main section.form div.privacy-policy div.list div.row h4 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}
main section.form div.agreement {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
main section.form div.agreement span.wpcf7-list-item,
main section.form div.agreement span.wpcf7-list-item > label {
	display: block;
}
main section.form div.agreement span.wpcf7-list-item {
	margin-right: 5px;
}
main section.form div.agreement span.wpcf7-list-item-label {
	display: none;
}
main section.form div.agreement span.wpcf7-not-valid-tip {
	width: 240px;
}
main section.form div.action {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.action :where(input[type=text], input[type=email], button) {
	margin: 0px 10px;
}
main section.form div.action span.wpcf7-spinner {
	display: none;
}
main section.form form.submitting div.action .button-submit {
	pointer-events: none;
}
main section.form div.wpcf7-response-output {
	text-align: center;
	line-height: 1.5rem;
	border: none;
	margin: 40px 0px 0px 0px;
	padding: 10px;
	background-color: #f2f2f2;
	border-radius: 5px;
}
div.confirm main section.form :where(input[type=button], input[type=submit], button).button-confirm,
main section.form :where(input[type=button], input[type=submit], button):where(.button-back, .button-submit) {
	display: none;
}
div.confirm main section.form :where(input[type=button], input[type=submit], button):where(.button-back, .button-submit) {
	display: flex;
}
main section#contact div.inner-section {
	width: 920px;
}



/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer#footer {
	position: relative;
	z-index: 1;
	padding-bottom: 40px;
}
footer#footer div#trigger-footer {
	position: absolute;
	top: 60px;
}
footer#footer p#button-page-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 10;
	pointer-events: none;
	text-align: center;
	font-family: "Rockwell", sans-serif;
	font-weight: 700;
	opacity: 0;
	transition: 0.375s opacity ease;
}
div.scroll footer#footer p#button-page-top {
	pointer-events: auto;
	opacity: 1;
}
div.footer footer#footer p#button-page-top {
	position: absolute;
	top: -40px;
	bottom: auto;
}
footer#footer p#button-page-top a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	aspect-ratio: 1;
	width: 80px;
	color: #1bbf6d;
	border: 2px solid #1bbf6d;
	padding-top: 10px;
	background-color: #ffffff;
	border-radius: 50%;
	transition: 0.375s color ease, 0.375s background-color ease;
}
footer#footer p#button-page-top a:hover {
	color: #ffffff;
	background-color: #1bbf6d;
}
footer#footer p#button-page-top i.icon-arrow {
	position: absolute;
	width: 20px;
	left: calc(50% - 10px);
	top: 15px;
	font-size: 0.75rem;
	transform: rotate(-90deg);
}
footer#footer div.information-navi-footer {
	position: relative;
	color: #ffffff;
	margin-bottom: 40px;
	padding: 60px 0px;
	background-color: #1bbf6d;
}
footer#footer div.information {
	width: 1240px;
	margin: 0px auto;
	padding-top: 15px;
}
footer#footer div.information a:hover {
	color: #fff034;
}
footer#footer div.information h3 {
	margin-bottom: 50px;
}
footer#footer div.information h3 svg {
	width: calc(250px * 1.25);
}
footer#footer div.information h3 svg path {
	fill: #ffffff;
}
footer#footer div.information div.address-tel-fax {
	display: flex;
	flex-wrap: wrap;
}
footer#footer div.information div.address-tel-fax p {
	font-size: 1rem;
	line-height: 1.75rem;
}
footer#footer div.information div.address-tel-fax p:not(:last-child) {
	margin-right: 25px;
}
footer#footer nav#navi-footer,
footer#footer nav#navi-footer ul {
	display: flex;
	flex-wrap: wrap;
}
footer#footer nav#navi-footer {
	position: absolute;
	right: calc(50% - 620px);
	top: 60px;
}
footer#footer nav#navi-footer ul,
footer#footer nav#navi-footer ul li:not(:last-child) {
	margin-right: 35px;
}
footer#footer nav#navi-footer ul {
	padding-top: 10px;
}
footer#footer nav#navi-footer ul li {
	line-height: 1.25rem;
}
footer#footer nav#navi-footer ul li a {
	transition: 0.375s color ease;
}
footer#footer nav#navi-footer ul li a:hover {
	color: #fff034;
}
footer#footer nav#navi-footer ul li span:where(.main, .sub),
footer#footer nav#navi-footer p.button-contact span:where(.main, .sub) {
	display: block;
}
footer#footer nav#navi-footer ul li span.main,
footer#footer nav#navi-footer p.button-contact span.main {
	font-family: "Rockwell", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
}
footer#footer nav#navi-footer ul li span.sub,
footer#footer nav#navi-footer p.button-contact span.sub {
	font-size: 0.75rem;
}
footer#footer nav#navi-footer ul li span.arrow {
	display: none;
}
footer#footer nav#navi-footer p.button-contact a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 240px;
	height: 60px;
	color: #1bbf6d;
	padding-right: 30px;
	background-color: #ffffff;
	border-radius: 10px;
	transition: 0.375s background-color ease;
}
footer#footer nav#navi-footer p.button-contact a:hover {
	background-color: #fff034;
}
footer#footer nav#navi-footer p.button-contact span.main {
	margin-right: 20px;
}
footer#footer nav#navi-footer p.button-contact span.arrow {
	position: absolute;
	right: 20px;
	top: calc(50% - 12.5px);
}
footer#footer div.group ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0px -25px -35px -25px;
}
footer#footer div.group ul li {
	margin: 0px 25px 35px 25px;
}
footer#footer div.group ul li img {
	transition: 0.375s opacity ease;
}
footer#footer div.group ul li a:hover img {
	opacity: 0.625;
}
footer#footer div.group ul li:where(.quatroboom, .jerrys-popcorn) img {
	transform: translateY(-5px);
}
footer#footer div.group ul li.quatroboom img {
	width: 137px;
}
footer#footer div.group ul li.murata-cars img {
	width: 133px;
}
footer#footer div.group ul li.echizen-cc img {
	width: 146px;
}
footer#footer div.group ul li.greenclub img {
	width: 146px;
}
footer#footer div.group ul li.sutadonya img {
	width: 118px;
}
footer#footer div.group ul li.hitohana img {
	width: 128px;
}
footer#footer div.group ul li.jerrys-popcorn img {
	width: 124px;
}
footer#footer p.copyright {
	position: absolute;
	right: calc(50% - 620px);
	top: 155px;
	font-family: "Poppins", sans-serif;
	font-size: 0.75rem;
	line-height: 1.25rem;
	color: #ffffff;
}
