/* リキッドレイアウト対応 */

.display-sp {
	display: none;
}

.display-pc {
	display: none;
}

html {
	scroll-padding-top: 100px;
}

body {
	color: #4A4A4A;
	font-family: "Noto Sans JP", sans-serif;
}

/* pcの電話番号発信対応 */

/* ホバー */

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

.front-page,
.not-found {
	margin-top: 45px;
	overflow: hidden;
}

.archive,
.single {
	margin-top: 45px;
	overflow: hidden;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
	-webkit-filter: blur(10px);
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* ページ共通のボタンで使うクラスが書かれているファイル */

.c-button-contact a {
	gap: 16px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	height: 60px;
	letter-spacing: 0.05em;
	line-height: 1.75;
	padding: 16px;
	position: relative;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 280px;
}

.c-button-contact a:hover {
	background-color: #231815;
}

.c-button-contact a:hover .icon img:nth-child(1) {
	opacity: 0;
}

.c-button-contact a:hover .icon img:nth-child(2) {
	opacity: 1;
}

.c-button-contact a:hover p {
	color: #fff;
}

.c-button-contact a:hover .circle {
	background-color: #fff;
	-webkit-transform: translateY(-50%) scale(1.5);
	transform: translateY(-50%) scale(1.5);
}

.c-button-contact a .icon {
	height: 11px;
	position: relative;
	width: 15px;
}

.c-button-contact a .icon img {
	height: 100%;
	position: absolute;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 100%;
}

.c-button-contact a .icon img:nth-child(1) {
	opacity: 1;
}

.c-button-contact a .icon img:nth-child(2) {
	opacity: 0;
}

.c-button-contact a .bar {
	background-color: #C9CACA;
	height: 36px;
	width: 1px;
}

.c-button-contact a p {
	color: #231815;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.c-button-contact a .circle {
	background-color: #231815;
	border-radius: 50%;
	height: 8px;
	position: absolute;
	right: 16px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 8px;
}

.c-button-view-more a {
	background-color: #231815;
	border: 1px solid #231815;
	border-radius: 30px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 22px;
	height: 60px;
	letter-spacing: 0.05em;
	line-height: 54px;
	padding: 0 30px;
	position: relative;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 250px;
}

.c-button-view-more a::before {
	background-color: #fff;
	border-radius: 50%;
	content: "";
	height: 8px;
	position: absolute;
	right: 25px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 8px;
}

.c-button-view-more a:hover {
	background-color: #fff;
	color: #231815;
}

.c-button-view-more a:hover::before {
	background-color: #231815;
	-webkit-transform: translateY(-50%) scale(2);
	transform: translateY(-50%) scale(2);
}

/* 繋がりがあるカードで使うクラスが書かれているファイル */

.c-cards {
	max-width: 100%;
	overflow-x: auto;
}

.c-cards .layout {
	gap: 40px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 60px auto 0;
	min-width: 1250px;
	padding: 0 40px 32px;
	position: relative;
	width: 1250px;
}

.c-cards .layout::-webkit-scrollbar {
	height: 6px;
}

.c-cards .layout::-webkit-scrollbar-thumb {
	background-color: #C9CACA;
	border-radius: 3px;
}

.c-cards .bar {
	background-color: #C9CACA;
	height: 2px;
	left: 176px;
	position: absolute;
	right: 176px;
	top: 49px;
	width: calc(100% - 352px);
}

.c-cards .card {
	background-color: #fff;
	-webkit-box-shadow: 0 14px 29px rgba(24, 24, 24, .17);
	box-shadow: 0 14px 29px rgba(24, 24, 24, .17);
	padding: 44px 20px 50px;
	text-align: center;
}

.c-cards .card:nth-child(1) .circle {
	background-color: #FF4800;
}

.c-cards .card:nth-child(2) .circle {
	background-color: #FF8200;
}

.c-cards .card:nth-child(3) .circle {
	background-color: #FFB400;
}

.c-cards .card:nth-child(4) .circle {
	background-color: #FFEC00;
}

.c-cards .card .circle {
	border-radius: 50%;
	height: 13px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: 13px;
	z-index: 1;
}

.c-cards .card .num {
	color: #C9CACA;
	font-size: 30px;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-top: 18px;
}

.c-cards .card .step {
	color: #C9CACA;
	font-size: 14px;
	letter-spacing: 0.05em;
	margin-top: 4px;
}

.c-cards .card .heading {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.5;
	margin-top: 20px;
	min-height: 60px;
}

.c-cards .card .heading-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.c-cards .card .text {
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1.4285714286;
	margin-top: 28px;
}

/* ページ共通のグラデーション見出しで使うクラスが書かれているファイル */

.gradient-heading-contact {
	color: #fff;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.gradient-heading-contact::after {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: animateTextBackground 12s ease-in-out infinite;
	animation: animateTextBackground 12s ease-in-out infinite;
	background: -webkit-repeating-linear-gradient(0deg, #fff 0%, #ef8200 50%, #fff 100%);
	background-clip: text;
	background-repeat: no-repeat;
	background-size: 50%;
	color: transparent;
	content: "Contact";
	height: calc(100% + 80px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gradient-heading-contact-form {
	color: #000;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.gradient-heading-contact-form::after {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: animateTextBackground 12s ease-in-out infinite;
	animation: animateTextBackground 12s ease-in-out infinite;
	background: -webkit-repeating-linear-gradient(0deg, #231815 0%, #FFE100 50%, #231815 100%);
	background-clip: text;
	background-repeat: no-repeat;
	background-size: 50%;
	color: transparent;
	content: "Contact";
	height: calc(100% + 80px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gradient-heading-strength {
	color: #231815;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.gradient-heading-strength::after {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: animateTextBackground 12s ease-in-out infinite;
	animation: animateTextBackground 12s ease-in-out infinite;
	background: -webkit-repeating-linear-gradient(0deg, #231815 0%, #ef8200 50%, #231815 100%);
	background-clip: text;
	background-repeat: no-repeat;
	background-size: 50%;
	color: transparent;
	content: "Our Strength";
	height: calc(100% + 80px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gradient-heading-innovation {
	color: #231815;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.gradient-heading-innovation::after {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: animateTextBackground 12s ease-in-out infinite;
	animation: animateTextBackground 12s ease-in-out infinite;
	background: -webkit-repeating-linear-gradient(0deg, #231815 0%, #ef8200 50%, #231815 100%);
	background-clip: text;
	background-repeat: no-repeat;
	background-size: 50%;
	color: transparent;
	content: "Innovation";
	height: calc(100% + 80px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gradient-heading-solution {
	color: #231815;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.gradient-heading-solution::after {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: animateTextBackgroundReverse 12s ease-in-out infinite;
	animation: animateTextBackgroundReverse 12s ease-in-out infinite;
	background: -webkit-repeating-linear-gradient(0deg, #231815 0%, #F7B400 50%, #231815 100%);
	background-clip: text;
	background-repeat: no-repeat;
	background-size: 50%;
	color: transparent;
	content: "Solution";
	height: calc(100% + 80px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gradient-heading-emotion {
	color: #231815;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.gradient-heading-emotion::after {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: animateTextBackground 18s ease-in-out infinite;
	animation: animateTextBackground 18s ease-in-out infinite;
	background: -webkit-repeating-linear-gradient(0deg, #231815 0%, #FFE100 50%, #231815 100%);
	background-clip: text;
	background-repeat: no-repeat;
	background-size: 50%;
	color: transparent;
	content: "Emotion";
	height: calc(100% + 80px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gradient-heading-business {
	color: #231815;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.gradient-heading-business::after {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: animateTextBackground 12s ease-in-out infinite;
	animation: animateTextBackground 12s ease-in-out infinite;
	background: -webkit-repeating-linear-gradient(0deg, #231815 0%, #F7B400 50%, #231815 100%);
	background-clip: text;
	background-repeat: no-repeat;
	background-size: 50%;
	color: transparent;
	content: "Business";
	height: calc(100% + 80px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gradient-heading-our-strength {
	color: #231815;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.gradient-heading-our-strength::after {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: animateTextBackground 12s ease-in-out infinite;
	animation: animateTextBackground 12s ease-in-out infinite;
	background: -webkit-repeating-linear-gradient(0deg, #231815 0%, #ef8200 50%, #231815 100%);
	background-clip: text;
	background-repeat: no-repeat;
	background-size: 50%;
	color: transparent;
	content: "Our Strength";
	height: calc(100% + 80px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gradient-heading-sales-promotion {
	color: #231815;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.gradient-heading-sales-promotion::after {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: animateTextBackground 12s ease-in-out infinite;
	animation: animateTextBackground 12s ease-in-out infinite;
	background: -webkit-repeating-linear-gradient(0deg, #231815 0%, #ef8200 50%, #231815 100%);
	background-clip: text;
	background-repeat: no-repeat;
	background-size: 50%;
	color: transparent;
	content: "Sales Promotion";
	height: calc(100% + 80px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gradient-heading-consulting {
	color: #231815;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.gradient-heading-consulting::after {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: animateTextBackground 12s ease-in-out infinite;
	animation: animateTextBackground 12s ease-in-out infinite;
	background: -webkit-repeating-linear-gradient(0deg, #231815 0%, #F7B400 50%, #231815 100%);
	background-clip: text;
	background-repeat: no-repeat;
	background-size: 50%;
	color: transparent;
	content: "Consulting";
	height: calc(100% + 80px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gradient-heading-education {
	color: #231815;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.gradient-heading-education::after {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: animateTextBackground 12s ease-in-out infinite;
	animation: animateTextBackground 12s ease-in-out infinite;
	background: -webkit-repeating-linear-gradient(0deg, #231815 0%, #ffe100 50%, #231815 100%);
	background-clip: text;
	background-repeat: no-repeat;
	background-size: 50%;
	color: transparent;
	content: "Educational Business";
	height: calc(100% + 80px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gradient-heading-company {
	color: #231815;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.gradient-heading-company::after {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-animation: animateTextBackground 12s ease-in-out infinite;
	animation: animateTextBackground 12s ease-in-out infinite;
	background: -webkit-repeating-linear-gradient(0deg, #231815 0%, #F7B400 50%, #231815 100%);
	background-clip: text;
	background-repeat: no-repeat;
	background-size: 50%;
	color: transparent;
	content: "Company";
	height: calc(100% + 80px);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.gradient-heading-data {
	color: #fff;
	font-size: 80px;
	line-height: 1;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

/* ページ共通の見出しで使うクラスが書かれているファイル */

.c-heading {
	font-weight: 700;
	text-align: center;
}

.c-heading .ja {
	font-size: 16px;
	line-height: 1;
}

.c-heading .ja--contact {
	line-height: 2;
}

.c-heading .en {
	color: #FF867C;
	font-family: "Lexend", sans-serif;
	font-size: 60px;
	font-weight: 300;
	line-height: 1.25;
	margin-top: 10px;
}

.c-heading .bp-768 {
	display: none;
}

.c-heading .bp-767 {
	display: none;
}

.c-heading--white .ja,
.c-heading--white .en {
	color: #fff;
}

.c-heading--left {
	text-align: left;
}

/* 共通で使う区切り線で使うクラスが書かれているファイル */

.c-hr {
	background-color: #C9CACA;
	height: 1px;
	position: relative;
	width: 100%;
}

.c-hr::before {
	background-color: #F7B400;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 0;
	width: 12%;
}

/* ページ共通のリンク	で使うクラスが書かれているファイル */

.c-link a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #231815;
	border: 1px solid #231815;
	border-radius: 10.5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 21px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 44px;
}

.c-link a:hover {
	background-color: #fff;
}

.c-link a:hover .arrow {
	background-color: #231815;
	-webkit-transform: translateX(6px);
	transform: translateX(6px);
}

.c-link a:hover .arrow::before {
	border-color: #231815;
}

.c-link .arrow {
	background-color: #fff;
	height: 1px;
	position: relative;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 12px;
}

.c-link .arrow::before {
	border: 1px solid #fff;
	border-bottom: none;
	border-left: none;
	content: "";
	display: block;
	height: 5px;
	position: absolute;
	right: 0;
	top: -2px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 5px;
}

/* ページ共通の番号入りのアイテムで使うクラスが書かれているファイル */

.c-num__items {
	gap: 40px;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}

.c-num__item {
	gap: 32px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 10px;
	-webkit-box-shadow: 0 14px 30px rgba(24, 24, 24, .17);
	box-shadow: 0 14px 30px rgba(24, 24, 24, .17);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 40px 6%;
}

.c-num__item:nth-child(1) .num {
	color: #FF4800;
}

.c-num__item:nth-child(2) .num,
.c-num__item:nth-child(8) .num {
	color: #FF8200;
}

.c-num__item:nth-child(3) .num {
	color: #FFB400;
}

.c-num__item:nth-child(4) .num,
.c-num__item:nth-child(5) .num,
.c-num__item:nth-child(6) .num {
	color: #ffe100;
}

.c-num__item:nth-child(7) .num {
	color: #FFB400;
}

.c-num__item .num {
	font-size: 40px;
	text-align: center;
	width: 48px;
}

.c-num__item .main {
	width: calc(100% - 80px);
}

.c-num__item .main .heading {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.75;
}

.c-num__item .main .heading .bp-1280 {
	display: none;
}

.c-num__item .main .texts {
	margin-top: 16px;
}

.c-num__item .main .texts p {
	font-size: 16px;
	line-height: 1.75;
}

/* ページ共通で使用するページネーションのクラス */

/* スリックで使うクラスが書かれているファイル */

.c-slick {
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}

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

/* ページ共通のパンくずリストで使うクラスが書かれているファイル */

.c-breadcrumbs__layout {
	gap: 14px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	max-width: 100%;
	overflow-x: auto;
	padding: 30px 5%;
	width: 100%;
}

.c-breadcrumbs__layout .c-breadcrumbs__item {
	color: #231815;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	min-width: -moz-fit-content;
	min-width: -webkit-fit-content;
	min-width: fit-content;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.c-breadcrumbs__layout .c-breadcrumbs__item a {
	text-underline-offset: 2px;
	text-decoration: underline;
}

.c-breadcrumbs__layout .c-breadcrumbs__item:last-child {
	color: #AFAFAF;
}

/* トップページのMie女性起業支援室についてで使用するクラス */

.about .about__layout {
	margin: 120px auto 0;
	max-width: 1560px;
	padding: 0 60px;
	position: relative;
	width: 100%;
}

.about .about__main {
	gap: 50px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: grid;
	grid-template-columns: 1fr;
	margin: 100px auto 0;
	max-width: 800px;
	width: 100%;
}

.about .about__main .about__picture img {
	border-radius: 20px;
	-webkit-box-shadow: 0 18px 20px rgba(204, 101, 96, .5);
	box-shadow: 0 18px 20px rgba(204, 101, 96, .5);
	margin-left: auto;
	width: 80%;
}

.about .about__main .about__arrangement {
	left: 40px;
	position: absolute;
	top: -90px;
	z-index: -1;
}

.about .about__main .about__arrangement img {
	aspect-ratio: 560/415;
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	max-width: 560px;
	min-width: 300px;
	width: 50vw;
}

.about .about__main .about__door {
	bottom: -60px;
	left: 50%;
	position: absolute;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
}

.about .about__main .about__door img {
	aspect-ratio: 308/494;
	-webkit-box-shadow: none;
	box-shadow: none;
	height: auto;
	max-width: 120px;
	width: 100%;
}

.about .about__main .about__texts {
	margin: 0 auto;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.about .about__main .about__texts p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
	max-width: 700px;
	width: 100%;
}

.about .about__main .about__texts .mt {
	margin-top: 28px;
}

/* トップページのコラムで使うクラス */

.column .column__layout {
	margin: 120px auto 150px;
	max-width: 1230px;
	width: 100%;
}

.column .column__button a {
	gap: 16px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #FF867C;
	border: 1px solid #FF867C;
	border-radius: 27px;
	color: #fff;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	height: 54px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	letter-spacing: 0.05em;
	margin: 80px auto 0;
	padding: 16px;
	position: relative;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 320px;
}

.column .column__button a:hover {
	background-color: #fff;
	color: #FF867C;
}

.column .column__button a:hover .circle {
	background-color: #FF867C;
	-webkit-transform: translateY(-50%) scale(1.5);
	transform: translateY(-50%) scale(1.5);
}

.column .column__button .circle {
	background-color: #fff;
	border-radius: 50%;
	height: 8px;
	position: absolute;
	right: 16px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 8px;
}

/* トップページのお問い合わせで使うクラスが書かれているファイル */

.contact .contact__layout {
	margin: 150px auto 0;
	max-width: 900px;
	width: 100%;
}

.contact .contact__title {
	font-size: 24px;
	letter-spacing: 0.05em;
	line-height: 1.68;
	margin-top: 36px;
	text-align: center;
}

.contact .contact__texts {
	margin-top: 60px;
}

.contact .contact__texts p {
	font-size: 16px;
	letter-spacing: 0.025em;
	line-height: 1.75;
	text-align: center;
}

.contact .contact__texts br {
	display: none;
}

.contact .contact__form7 {
	margin: 70px auto 0;
	max-width: 620px;
	width: 100%;
}

/* トップページの支援の流れで使うクラスが書かれているファイル */

.flow {
	position: relative;
	z-index: 1;
}

.flow .flow__wave {
	left: 0;
	position: absolute;
	top: -1px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	width: 100%;
}

.flow .flow__wave svg {
	display: block;
	height: 100%;
}

.flow .flow__background {
	background-image: url(../images/front-page/flow-background.png);
	background-position: center;
	background-size: cover;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.flow .flow__pictures {
	gap: 4.6875%;
	bottom: -70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	left: 50%;
	max-height: 300px;
	min-width: calc(100% + 300px);
	position: absolute;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.flow .flow__pictures .flow__picture img {
	aspect-ratio: 359/247;
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 20px;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.flow .flow__pictures .flow__picture:nth-child(odd) {
	margin-top: 50px;
}

.flow .flow__pictures .flow__picture:nth-child(even) {
	margin-bottom: 50px;
}

.flow .flow__layout {
	padding-bottom: 150px;
	padding-top: 150px;
}

.flow .flow__items {
	gap: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 80px auto 0;
	max-width: 600px;
	position: relative;
	width: 100%;
}

.flow .flow__items::before {
	background-color: #fff;
	content: "";
	height: calc(80% + 58px);
	left: 9px;
	position: absolute;
	top: 18px;
	width: 2px;
	z-index: -1;
}

.flow .flow__item {
	gap: 14px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	width: 100%;
}

.flow .flow__item .flow__num {
	color: #fff;
	font-size: 32px;
	line-height: 1;
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	text-align: center;
}

.flow .flow__item .flow__circle {
	background-image: -webkit-gradient(linear, left top, right top, from(#FFE5B4), to(#FFC2C2));
	background-image: linear-gradient(90deg, #FFE5B4 0%, #FFC2C2 100%);
	border: 3px solid #fff;
	border-radius: 50%;
	height: 20px;
	margin-top: 8px;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	width: 20px;
}

.flow .flow__item .flow__card {
	background-color: #fff;
	border-radius: 20px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3;
	padding: 35px 10px 35px;
}

.flow .flow__item .flow__card .icon {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 70px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
}

.flow .flow__item .flow__card .title {
	font-size: 20px;
	font-weight: 700;
	margin-top: 15px;
	text-align: center;
}

.flow .flow__item .flow__card .text {
	font-size: 16px;
	line-height: 1.5;
	margin-top: 15px;
	text-align: center;
}

.flow .flow__item .flow__card .text br {
	display: none;
}

.flow .flow__item:nth-child(1) .icon img {
	max-height: 51px;
	max-width: 70px;
}

.flow .flow__item:nth-child(2) .icon img {
	max-height: 63px;
	max-width: 81px;
}

.flow .flow__item:nth-child(3) .icon img {
	max-height: 35px;
	max-width: 95px;
}

.flow .flow__item:nth-child(4) .icon img {
	max-height: 60px;
	max-width: 60px;
}

.flow .flow__item:nth-child(5) .icon img {
	max-height: 70px;
	max-width: 95px;
}

/* フッターで使うクラス */

.footer {
	background-color: #2E4057;
}

.footer .footer__layout {
	margin: 180px auto 0;
	max-width: 1360px;
	padding-bottom: 20px;
	padding-top: 60px;
	width: 100%;
}

.footer .footer__menus {
	gap: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.footer .footer__menus .footer__menu a {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.footer .footer__main {
	gap: 40px;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 60px;
}

.footer .footer__main .logo img {
	height: auto;
	max-width: 260px;
	width: 100%;
}

.footer .footer__main .company .head,
.footer .footer__main .company .mail {
	color: #C9CACA;
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1;
}

.footer .footer__main .company .head {
	gap: 12px 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer .footer__main .company .map a {
	border-bottom: 1px solid #C9CACA;
	display: block;
	padding-bottom: 5px;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.footer .footer__main .company .mail {
	margin-top: 4px;
}

.footer .footer__facebook {
	gap: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 40px;
}

.footer .footer__facebook .facebook-icon img {
	height: auto;
	width: 32px;
}

.footer .footer__facebook .info {
	font-size: 14px;
	letter-spacing: 0.05em;
	line-height: 1;
}

.footer .footer__facebook .info p {
	color: #fff;
	padding-left: 2px;
}

.footer .footer__facebook .info a {
	border-bottom: 1px solid #C9CACA;
	color: #C9CACA;
	display: block;
	margin-top: 6px;
	padding-bottom: 6px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.footer .footer__facebook .info a:hover {
	opacity: 0.7;
}

.footer .footer__message {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.75;
	margin-top: 16px;
}

.footer .footer__message br {
	display: none;
}

.footer .footer__copyright {
	color: #C9CACA;
	font-size: 10px;
	letter-spacing: 0.05em;
	margin-top: 20px;
	text-align: right;
}

.footer--wave {
	position: relative;
}

.footer--wave .wave {
	bottom: calc(100% - 1px);
	left: 0;
	position: absolute;
}

/* トップページの「さいごに」で使うクラス */

.for-you .for-you__layout {
	margin: 40px auto 0;
	max-width: 800px;
	position: relative;
	width: 100%;
}

.for-you .for-you__layout::before {
	aspect-ratio: 1/1;
	background-image: url(../images/front-page/for-you-background.png);
	background-position: center;
	background-size: cover;
	content: "";
	display: block;
	height: 120%;
	left: 50%;
	overflow-x: hidden;
	position: absolute;
	top: -10%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: auto;
	z-index: -1;
}

.for-you .for-you__door {
	margin: 0 auto;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.for-you .for-you__door img {
	height: auto;
	width: 80px;
}

.for-you .for-you__heading {
	margin-top: 50px;
}

.for-you .for-you__texts {
	margin: 48px auto 0;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.for-you .for-you__texts p {
	font-size: 16px;
	line-height: 1.625;
	text-align: center;
}

.for-you .for-you__texts .bp-767 {
	display: none;
}

.for-you .for-you__more {
	margin-top: 40px;
}

.for-you .for-you__more img {
	margin: 0 auto;
	width: 370px;
}

/* ヘッダーで使用 */

.header {
	height: 90px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
}

.js-header-background {
	background-color: #fff;
}

.header__layout {
	gap: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 auto;
	padding-right: 20px;
	width: 100%;
}

.header__logo a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	border-radius: 0 0 40px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 272px;
}

.header__logo a img {
	height: auto;
	width: 200px;
}

.header__main {
	display: none;
}

.header__main-sp {
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header__nav {
	height: inherit;
}

.header__menus {
	display: none;
	height: 100%;
}

.header__menu a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	font-weight: 500;
	height: inherit;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.header__menu a:hover {
	opacity: 0.7;
}

.header__menu--contact a {
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-image: url(../images/common/header-contact-background.png);
	background-position: left center;
	background-size: cover;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 55px;
	padding-right: 40px;
}

.header__menu--contact a img {
	height: 18px;
	width: auto;
}

.header__menu--contact a p {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
}

.header__free-contact a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #2E4057;
	border-radius: 50%;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 16px;
	height: 60px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1;
	width: 60px;
}

/* ハンバーガーメニュー関連 */

.hamburger__icon {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #FF867C;
	border: 1px solid #FF867C;
	border-radius: 50%;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 60px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	width: 60px;
	z-index: 50;
}

.hamburger__bars {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 22px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 32px;
}

.hamburger__bars:hover .hamburger__bar {
	background-color: #fff;
}

.hamburger__bars .hamburger__bar {
	background-color: #fff;
	border-radius: 1px;
	border-radius: 5px;
	height: 2px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 32px;
}

.hamburger__nav {
	background-color: #FF867C;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	max-height: 100%;
	max-width: 1000px;
	overflow-y: auto;
	padding: 100px 5vw;
	position: fixed;
	right: -120%;
	top: 0px;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
	z-index: 10;
}

.hamburger__nav .hamburger__menus {
	gap: 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 500px;
}

.hamburger__nav .hamburger__menus .hamburger__menu a {
	display: block;
	padding-left: 16px;
	position: relative;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.hamburger__nav .hamburger__menus .hamburger__menu a::before {
	background-color: #fff;
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 0;
	position: absolute;
	top: 13px;
	width: 8px;
}

.hamburger__nav .hamburger__menus .hamburger__menu a p {
	color: #fff;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
}

.hamburger__nav .hamburger__menus .hamburger__menu a span {
	color: #fff;
	display: block;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-top: 8px;
}

.hamburger__nav .hamburger__menus .hamburger__menu .icon {
	cursor: pointer;
	display: block;
	height: 32px;
	position: absolute;
	right: 18px;
	top: 27px;
	width: 32px;
	z-index: 1;
}

.hamburger__nav .hamburger__menus .hamburger__menu .icon span {
	display: block;
	height: 100%;
	position: relative;
	width: 100%;
}

.hamburger__nav .hamburger__menus .hamburger__menu .icon span::before,
.hamburger__nav .hamburger__menus .hamburger__menu .icon span::after {
	background-color: #EF8200;
	content: "";
	position: absolute;
}

.hamburger__nav .hamburger__menus .hamburger__menu .icon span::before {
	height: 1px;
	right: 9px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 16px;
}

.hamburger__nav .hamburger__menus .hamburger__menu .icon span::after {
	height: 16px;
	right: 50%;
	top: 8px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 1px;
}

.hamburger__nav .hamburger__menus .hamburger__menu .js-icon-rotate span::after {
	-webkit-transform: translateX(-50%) rotate(90deg);
	transform: translateX(-50%) rotate(90deg);
}

/* ハンバーガーメニューのアニメーション */

.js-hamburger {
	position: relative;
	z-index: 12;
}

.js-hamburger .hamburger__icon {
	border: 1px solid #fff;
}

.js-hamburger .hamburger__icon:hover .hamburger__bar {
	background-color: #fff;
}

.js-hamburger .hamburger__icon .hamburger__bar {
	background-color: #fff;
	position: absolute;
}

.js-hamburger .hamburger__icon .hamburger__bar:nth-child(1) {
	top: 50%;
	-webkit-transform: rotate(45deg) translateY(-50%);
	transform: rotate(45deg) translateY(-50%);
}

.js-hamburger .hamburger__icon .hamburger__bar:nth-child(2) {
	opacity: 0;
}

.js-hamburger .hamburger__icon .hamburger__bar:nth-child(3) {
	bottom: calc(50% - 2px);
	-webkit-transform: rotate(-45deg) translateY(-50%);
	transform: rotate(-45deg) translateY(-50%);
}

.js-hamburger-nav {
	display: block;
	right: 0;
}

.js-background-fixed {
	height: 100%;
	overflow: hidden;
	width: 100%;
}

/* インナーで使うクラス */

.inner {
	padding-left: 40px;
	padding-right: 40px;
}

/* トップページのメッセージで使用するクラス */

.message .message__background {
	background-image: url(../images/front-page/message-background-pc.jpg);
	background-position: bottom center;
	background-size: cover;
	margin-top: -200px;
}

.message .message__layout {
	gap: 50px;
	display: grid;
	grid-template-columns: 1fr;
	margin: 0 auto;
	max-width: 900px;
	padding-bottom: 150px;
	padding-top: 270px;
	width: 100%;
}

.message .message__texts {
	margin-top: 50px;
}

.message .message__texts p {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.75;
}

.message .message__picture img {
	border-radius: 45px;
	-webkit-box-shadow: 0 18px 20px rgba(204, 101, 96, .5);
	box-shadow: 0 18px 20px rgba(204, 101, 96, .5);
}

/* メインビジュアルで使用 */

.mv .mv__layout {
	margin-left: 50px;
	position: relative;
}

.mv .mv__scroll {
	display: none;
}

.mv .mv__scroll p {
	color: #FF867C;
	font-size: 20px;
	height: 176px;
	letter-spacing: 0.1em;
	padding-left: 12px;
	position: relative;
	-webkit-writing-mode: vertical-lr;
	-ms-writing-mode: tb-lr;
	writing-mode: vertical-lr;
}

.mv .mv__scroll p:before {
	-webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
	animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
	background: #FF867C;
	border-radius: 50%;
	bottom: 0;
	content: "";
	height: 12px;
	left: 0px;
	position: absolute;
	width: 12px;
}

.mv .mv__scroll p:after {
	background-color: #FF867C;
	bottom: 0;
	content: "";
	height: 100%;
	left: 5px;
	position: absolute;
	width: 2px;
}

.mv .mv__main {
	background-color: #FFF8F4;
	border-radius: 40px 0 0 40px;
	overflow: hidden;
	padding-top: 80px;
	position: relative;
}

.mv .mv__main .mv__heading,
.mv .mv__main .mv__texts {
	position: relative;
	z-index: 2;
}

.mv .mv__main .mv__heading {
	font-size: 36px;
	font-weight: 500;
	line-height: 1;
	padding-left: 40px;
}

.mv .mv__main .mv__heading .back {
	background-color: #fff;
	border-radius: 10px;
	display: block;
	padding: 15px 10px 17px 20px;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.mv .mv__main .mv__heading .back:not(:first-child) {
	margin-top: 24px;
}

.mv .mv__main .mv__heading .accent {
	color: #FF867C;
}

.mv .mv__main .mv__texts {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6;
	margin-top: 44px;
	padding-left: 60px;
}

.mv .mv__main .mv__text-slider {
	bottom: 50px;
	max-width: 100%;
	position: absolute;
	z-index: 2;
}

.mv .mv__main .mv__text-slider .slide {
	margin-left: 1.8vw;
}

.mv .mv__main .mv__bar {
	bottom: 40px;
	height: 4px;
	left: 7.5%;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
	width: 85%;
	z-index: 3;
}

.mv .mv__main .mv__bar .mv__meter {
	-webkit-animation: meter_pc 5.5s ease-in forwards infinite;
	animation: meter_pc 5.5s ease-in forwards infinite;
	background-color: #FF867C;
	height: inherit;
}

.mv .mv__main .mv__lets-more {
	bottom: 300px;
	left: calc(50% + 2vw);
	position: absolute;
	z-index: 5;
}

.mv .mv__main .mv__lets-more img {
	aspect-ratio: 371/186;
	height: 100%;
	max-width: 230px;
	width: 100%;
}

.mv .mv__pictures {
	margin: 30px auto 0;
	max-height: 700px;
	max-width: 501px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.mv .mv__pictures .mv-picture-swiper {
	height: 100%; /* @keyframes fadeOutLeft {
  	from {
  		opacity: 1;
  		transform: translateZ(0);
  	}
  	to {
  		opacity: 0;
  		transform: translate3d(-50px, 0, 0);
  	}
  } */ /* .swiper-slide-animate-out {
  	img {
  		animation: fadeOutLeft 1s ease-out forwards;
  	}
  } */
}

.mv .mv__pictures .mv-picture-swiper .swiper-slide img {
	aspect-ratio: 662/923;
	height: 100%;
	max-height: 923px;
	opacity: 0;
	width: 100%;
}

.mv .mv__pictures .mv-picture-swiper .swiper-slide-active img {
	-webkit-animation: fadeInOut 5.4s ease-in-out forwards;
	animation: fadeInOut 5.4s ease-in-out forwards;
	opacity: 0;
}

.mv .mv__arrangement {
	bottom: 120px;
	left: 50%;
	position: absolute;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
}

.mv .mv__arrangement img {
	aspect-ratio: 1140/770;
	height: auto;
	min-width: 800px;
}

.mv .mv__pictures--bp-1023,
.mv .mv__arrangement--bp-1023 {
	display: block;
}

.mv .mv__pictures--bp-1024,
.mv .mv__arrangement--bp-1024 {
	display: none;
}

/* トップページの「よくある質問」で使うクラス */

.qa-supporter-background {
	position: relative;
}

.qa-supporter-background .background-1024 {
	-o-object-fit: cover;
	-o-object-position: top right;
	display: none;
	height: auto;
	left: 0;
	object-fit: cover;
	object-position: top right;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.qa {
	position: relative;
	z-index: 1;
}

.qa .qa__layout {
	margin: 80px auto 0;
	max-width: 1400px;
	width: 100%;
}

.qa .qa__main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 60px;
}

.qa .qa__main--lg {
	display: none;
}

.qa .qa__accordions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
}

.qa .qa__accordion {
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: 0 9px 16px rgba(204, 101, 96, .35);
	box-shadow: 0 9px 16px rgba(204, 101, 96, .35);
	height: -moz-fit-content;
	height: -webkit-fit-content;
	height: fit-content;
	width: 100%;
}

.qa .qa__accordion:not(:first-child) .answer {
	display: none;
}

.qa .qa__accordion:first-child .answer {
	display: block;
}

.qa .qa__accordion .question,
.qa .qa__accordion .layout {
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: grid;
	grid-template-columns: 40px 1fr 44px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}

.qa .qa__accordion .question .alphabet,
.qa .qa__accordion .layout .alphabet {
	color: #FF867C;
	font-family: "Lexend", sans-serif;
	font-size: 35px;
	font-weight: 300;
}

.qa .qa__accordion .question .title,
.qa .qa__accordion .layout .title {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.6666666667;
}

.qa .qa__accordion .question .icon,
.qa .qa__accordion .layout .icon {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 50%;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 44px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	width: 44px;
}

.qa .qa__accordion .question .icon::before,
.qa .qa__accordion .question .icon::after,
.qa .qa__accordion .layout .icon::before,
.qa .qa__accordion .layout .icon::after {
	background-color: #FF867C;
	content: "";
	display: block;
	height: 3px;
	position: absolute;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 20px;
}

.qa .qa__accordion .question .icon::before,
.qa .qa__accordion .layout .icon::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.qa .qa__accordion .question .icon::after,
.qa .qa__accordion .layout .icon::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.qa .qa__accordion .question {
	padding: 32px;
}

.qa .qa__accordion .layout {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	grid-template-columns: 40px 1fr;
	padding: 0px 32px 32px;
}

.qa .qa__accordion .layout .alphabet {
	color: #2E4057;
}

.qa .qa__accordion .layout .title {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.75;
	padding-top: 10px;
}

.qa .js-accordion-close {
	background-color: transparent;
	border-bottom: 1px solid #DBDBDB;
	border-radius: 0px;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.qa .js-accordion-close:first-child {
	border-top: 1px solid #DBDBDB;
}

.qa .js-accordion-close:nth-child(2) .qa__accordion .first-child {
	border-top: none;
}

.qa .js-accordion-close .question .icon::before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.qa .js-accordion-close .question .icon::after {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

/* トップページの私たちが選ばれている理由で使うクラスが書かれているファイル */

.reason {
	background-color: #2E4057;
	margin-top: 100px;
	overflow: hidden;
	position: relative;
}

.reason .reason__layout {
	height: 860px;
	padding-top: 60px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.reason .reason__pictures {
	gap: 20px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	left: 50%;
	min-width: 2000px;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(13deg);
	transform: translate(-50%, -50%) rotate(13deg);
}

.reason .reason__pictures .reason__picture img {
	width: 100%;
}

.reason .reason__circle {
	aspect-ratio: 1/1;
	background-color: #fff;
	border-radius: 50%;
	left: 50%;
	max-width: 945px;
	min-height: 945px;
	min-width: 945px;
	position: absolute;
	top: -42px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
}

.reason .reason__items {
	margin: 70px auto 0;
	max-width: 700px;
	width: 100%;
}

.reason .reason__item {
	gap: 7.8571428571%;
	border-bottom: 1px solid #DBDBDB;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 30px 24px;
}

.reason .reason__item:first-child {
	border-top: 1px solid #DBDBDB;
}

.reason .reason__item .reason__num {
	color: #FF867C;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	padding-top: 6px;
}

.reason .reason__item .reason__title {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
}

/* スクロールヒントで使うクラスが書かれているファイル */

.scroll-hint-shadow-wrap::before,
.scroll-hint-shadow-wrap::after {
	display: none;
}

/* トップページのあなたの起業ステージは？で使うクラスが書かれているファイル */

.stage .stage__layout {
	margin-top: 120px;
	padding-top: 110px;
	position: relative;
}

.stage .stage__background {
	left: 0;
	position: absolute;
	top: 0;
	z-index: -1;
}

.stage .stage__background img {
	aspect-ratio: 1920/815;
	-o-object-fit: cover;
	-o-object-position: bottom center;
	height: 100%;
	min-height: 815px;
	object-fit: cover;
	object-position: bottom center;
	width: 100%;
}

.stage .stage__steps {
	background-color: #fff;
	border-radius: 30px;
	-webkit-box-shadow: 0 18px 20px rgba(204, 101, 96, .5);
	box-shadow: 0 18px 20px rgba(204, 101, 96, .5);
	margin: 90px auto 0;
	max-width: 1080px;
	padding: 70px 20px;
	width: 100%;
}

.stage .stage__steps .stage__step {
	margin: 0 auto;
	max-width: 920px;
	padding-left: 30px;
	width: 100%;
}

.stage .stage__steps .stage__step:not(:first-child) {
	border-top: 1px solid #DBDBDB;
	padding-top: 40px;
}

.stage .stage__steps .stage__step:not(:first-child) .stage__answers {
	display: none;
}

.stage .stage__steps .stage__step:nth-child(1) .stage__number {
	color: #F7D7D5;
}

.stage .stage__steps .stage__step:nth-child(2) .stage__number {
	color: #F9A6A2;
}

.stage .stage__steps .stage__step:nth-child(3) .stage__number {
	color: #FF867C;
}

.stage .stage__steps .stage__step:nth-child(4) .stage__number {
	color: #FF645C;
}

.stage .stage__steps .stage__step .stage__number {
	width: 40px;
}

.stage .stage__steps .stage__step .stage__number .en {
	font-family: "Lexend", sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 1;
}

.stage .stage__steps .stage__step .stage__number .num {
	font-family: "Lexend", sans-serif;
	font-size: 48px;
	font-weight: 300;
	line-height: 1;
	margin-top: 6px;
}

.stage .stage__steps .stage__step .stage__question {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-bottom: 40px;
}

.stage .stage__steps .stage__step .stage__question .stage__title {
	font-size: 25px;
	font-weight: 700;
	line-height: 1.28;
	margin-left: 50px;
	width: calc(100% - 314px);
}

.stage .stage__steps .stage__step .stage__question .stage__title br {
	display: none;
}

.stage .stage__steps .stage__step .stage__question .stage__close {
	gap: 16px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #E8F0F9;
	border-radius: 25px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 20px;
	max-height: 50px;
	padding: 6px 6px 6px 32px;
	width: 205px;
}

.stage .stage__steps .stage__step .stage__question .stage__close p {
	position: relative;
	width: calc(100% - 38px);
}

.stage .stage__steps .stage__step .stage__question .stage__close p::before {
	content: "解決方法を見る";
	font-size: 16px;
	left: 0;
	line-height: 1;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.stage .stage__steps .stage__step .stage__question .stage__close .icon {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #2E4057;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 38px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-width: 38px;
	position: relative;
}

.stage .stage__steps .stage__step .stage__question .stage__close .icon img {
	height: auto;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 18px;
}

.stage .stage__steps .stage__step .stage__question .stage__close .icon::before,
.stage .stage__steps .stage__step .stage__question .stage__close .icon::after {
	background-color: #fff;
	content: "";
	height: 2px;
	left: 50%;
	opacity: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 15px;
}

.stage .stage__steps .stage__step .stage__question .stage__close .icon::before {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.stage .stage__steps .stage__step .stage__question .stage__close .icon::after {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.stage .stage__steps .stage__step .js-answers-open .stage__close {
	background-color: #2E4057;
	color: #fff;
	margin-left: auto;
	width: 140px;
}

.stage .stage__steps .stage__step .js-answers-open .stage__close p::before {
	content: "閉じる";
}

.stage .stage__steps .stage__step .js-answers-open .stage__close .icon img {
	opacity: 0;
}

.stage .stage__steps .stage__step .js-answers-open .stage__close .icon::before,
.stage .stage__steps .stage__step .js-answers-open .stage__close .icon::after {
	opacity: 1;
}

.stage .stage__steps .stage__step .stage__answers {
	padding-bottom: 40px;
}

.stage .stage__steps .stage__step .stage__answers .stage__answer {
	gap: 18px;
	border-radius: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 18px 24px 16px;
}

.stage .stage__steps .stage__step .stage__answers .stage__answer .title {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 12px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	font-weight: 500;
	height: 24px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100px;
}

.stage .stage__steps .stage__step .stage__answers .stage__answer .text {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	width: calc(100% - 118px);
}

.stage .stage__steps .stage__step .stage__answers .stage__answer:nth-child(1) {
	background-color: #E8F0F9;
}

.stage .stage__steps .stage__step .stage__answers .stage__answer:nth-child(1) .title {
	background-color: #2E4057;
}

.stage .stage__steps .stage__step .stage__answers .stage__answer:nth-child(1) .text {
	color: #2E4057;
}

.stage .stage__steps .stage__step .stage__answers .stage__answer:nth-child(2) {
	background-color: #F9EDED;
	margin-top: 20px;
}

.stage .stage__steps .stage__step .stage__answers .stage__answer:nth-child(2) .title {
	background-color: #C1425D;
}

.stage .stage__steps .stage__step .stage__answers .stage__answer:nth-child(2) .text {
	color: #C1425D;
}

/* トップページの私たちができることで使うクラスが書かれているファイル */

.support .support__layout {
	margin-top: 150px;
}

.support .support__swiper {
	margin-top: 70px;
	padding-left: 12.5%;
	position: relative;
}

.support .support__swiper::before {
	aspect-ratio: 1680/420;
	background-color: #FFF8F4;
	border-radius: 50px 0 0 50px;
	bottom: 0;
	content: "";
	height: calc(50% + 45px);
	left: calc(12.5% + 34px);
	position: absolute;
	width: calc(100% - 34px);
}

.support .support__swiper .swiper-wrapper {
	height: 100%;
	padding-bottom: 90px;
	padding-left: calc(11.25% + 34px);
}

.support .support__swiper .swiper-slide {
	height: auto;
}

.support .support__swiper .swiper-button-prev,
.support .support__swiper .swiper-button-next {
	height: 68px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 68px;
}

.support .support__swiper .swiper-button-prev:hover,
.support .support__swiper .swiper-button-next:hover {
	opacity: 0.7;
}

.support .support__swiper .swiper-button-prev img,
.support .support__swiper .swiper-button-next img {
	border-radius: 50%;
	-webkit-box-shadow: 0 18px 20px rgba(204, 101, 96, .35);
	box-shadow: 0 18px 20px rgba(204, 101, 96, .35);
	height: 68px;
	width: 68px;
}

.support .support__swiper .swiper-button-prev::after,
.support .support__swiper .swiper-button-next::after {
	display: none;
}

.support .support__swiper .swiper-button-next {
	right: 5%;
}

.support .support__card {
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: 0 18px 20px rgba(204, 101, 96, .35);
	box-shadow: 0 18px 20px rgba(204, 101, 96, .35);
	height: 100%;
	padding: 30px 28px;
	position: relative;
}

.support .support__card::before {
	-webkit-clip-path: circle(100% at 0 0);
	background-color: #FF867C;
	border-radius: 10px 0 0 0;
	clip-path: circle(100% at 0 0);
	color: #fff;
	content: "女性\a限定";
	font-size: 18px;
	font-weight: 500;
	height: 98px;
	left: 0;
	padding-left: 16px;
	padding-left: 16px;
	padding-top: 10px;
	padding-top: 8px;
	position: absolute;
	top: 0;
	white-space: pre;
	width: 98px;
}

.support .support__card .support__title {
	color: #FF867C;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.48;
	margin-top: 20px;
}

.support .support__card .support__sub-title {
	font-size: 17px;
	font-weight: 700;
	margin-top: 12px;
}

.support .support__card .support__texts {
	margin-top: 12px;
}

.support .support__card .support__texts p {
	font-size: 16px;
	line-height: 1.75;
}

.support .support__card .support__options {
	gap: 8px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 14px;
}

.support .support__card .support__options .support__option {
	background-color: #2E4057;
	border-radius: 18px;
	color: #fff;
	font-size: 16px;
	line-height: 1.75;
	padding: 3px 16px 5px;
}

/* トップページの「私たちがサポートします」で使うクラス */

.supporter {
	position: relative;
}

.supporter .background-1023 {
	aspect-ratio: 375/2536;
	height: 100%;
	left: 0;
	position: absolute;
	top: -370px;
	width: 100%;
}

.supporter .supporter__layout {
	margin: 200px auto 0;
	max-width: 1180px;
	width: 100%;
}

.supporter .supporter__humans {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.supporter .supporter__humans .supporter__human {
	margin: 0 auto;
	text-align: center;
}

.supporter .supporter__humans .supporter__human .company {
	font-size: 14px;
	line-height: 1.5;
	margin-top: 32px;
}

.supporter .supporter__humans .supporter__human .name-ja {
	font-size: 25px;
	line-height: 1;
	margin-top: 16px;
}

.supporter .supporter__humans .supporter__human .name-en {
	color: #FF867C;
	font-family: "Lexend", sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 1;
	margin-top: 10px;
}

.supporter .supporter__humans--head {
	gap: 80px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 70px;
}

.supporter .supporter__humans--head .supporter__human:nth-child(1) img {
	max-width: 381px;
	width: 100%;
}

.supporter .supporter__humans--head .supporter__human:nth-child(2) img {
	max-width: 454.5px;
	width: 100%;
}

.supporter .supporter__humans--head .supporter__human:nth-child(3) img {
	max-width: 345px;
	width: 100%;
}

.supporter .supporter__humans--foot {
	gap: 80px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 80px auto 0;
	max-width: 670px;
	width: 100%;
}

.supporter .supporter__humans--foot .supporter__human:nth-child(1) img {
	max-width: 358.5px;
	width: 100%;
}

.supporter .supporter__humans--foot .supporter__human:nth-child(2) img {
	max-width: 345px;
	width: 100%;
}

/* トップページの「スライドするテキスト」で使うクラス */

.text-slider {
	margin-top: 100px;
}

.text-slider .slide {
	margin-left: 50px;
}

.text-slider--archive {
	margin-top: 140px;
}

.text-slider--flow .slide {
	margin-left: 1.8vw;
}

/* 〇〇の声で使うクラスが書かれているファイル */

.voice .voice__layout {
	padding-bottom: 120px;
	padding-top: 120px;
}

.voice .voice__layout .voice__swiper .swiper {
	padding-bottom: 50px;
	padding-top: 80px;
}

.voice .voice__layout .voice__swiper .swiper-wrapper {
	width: 100%;
}

.voice .voice__layout .voice__swiper .swiper-wrapper .swiper-slide {
	height: auto;
}

.voice .voice__layout .voice__swiper .voice__card {
	gap: 20px;
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: 0 12px 18px rgba(204, 101, 96, .35);
	box-shadow: 0 12px 18px rgba(204, 101, 96, .35);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	padding: 30px;
	position: relative;
}

.voice .voice__layout .voice__swiper .voice__card .triangle {
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 0%);
	background-color: #fff;
	-webkit-box-shadow: 0 12px 18px rgba(204, 101, 96, .35);
	box-shadow: 0 12px 18px rgba(204, 101, 96, .35);
	clip-path: polygon(0 0, 0% 100%, 100% 0%);
	height: 20px;
	left: 30px;
	position: absolute;
	top: calc(100% - 1px);
	width: 32px;
	z-index: 1;
}

.voice .voice__layout .voice__swiper .voice__card .picture img {
	border-radius: 50%;
	height: 92px;
	width: 92px;
}

.voice .voice__layout .voice__swiper .voice__card .main {
	font-size: 16px;
	line-height: 1.625;
	width: calc(100% - 112px);
}

.voice .voice__layout .voice__swiper .voice__card .main .info {
	color: #FF867C;
	font-weight: 500;
}

/* トップページの「これまでの実績」で使うクラス */

.works .works__layout {
	padding-bottom: 120px;
	padding-top: 120px;
}

.works .works__items {
	gap: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 60px auto 0;
	max-width: 1170px;
	width: 100%;
}

.works .works__items .works__item {
	gap: 36px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 20px;
	-webkit-box-shadow: 0 9px 16px rgba(204, 101, 96, .35);
	box-shadow: 0 9px 16px rgba(204, 101, 96, .35);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 20px 30px;
	width: 560px;
}

.works .works__items .works__item .works__circle {
	background-color: #FF867C;
	border-radius: 50%;
	height: 14px;
	width: 14px;
}

.works .works__items .works__item .works__title {
	width: calc(100% - 50px);
}

.works .works__items .works__item .works__title .title-a {
	font-size: 20px;
	line-height: 1.8;
}

.works .works__items .works__item .works__title .title-b {
	color: #FF867C;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.72;
}

.works .works__items .works__item .works__title .title-b .bp-767 {
	display: none;
}

.works--background {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), color-stop(60%, #FFFCFA), to(#FFF8F4));
	background-image: linear-gradient(180deg, #FFFFFF, #FFFCFA 60%, #FFF8F4);
}

/* トップページのこんなお悩みありませんか？で使用するクラス */

.worries .worries__layout {
	margin: 0 auto;
	max-width: 900px;
}

.worries .worries__main {
	gap: 70px;
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 50px;
}

.worries .worries__picture img {
	border-radius: 45px;
	-webkit-box-shadow: 0 18px 20px rgba(204, 101, 96, .5);
	box-shadow: 0 18px 20px rgba(204, 101, 96, .5);
}

.worries .worries__items .worries__item {
	gap: 16px;
	border-bottom: 1px solid #DBDBDB;
	display: grid;
	grid-template-columns: 32px 1fr;
	padding: 16px 16px 16px 0;
}

.worries .worries__items .worries__item:first-child {
	border-top: 1px solid #DBDBDB;
}

.worries .worries__items .worries__item .worries__icon {
	padding-top: 1px;
}

.worries .worries__items .worries__item .worries__icon img {
	border-radius: 6px;
	-webkit-box-shadow: 0 7px 12px rgba(204, 101, 96, .35);
	box-shadow: 0 7px 12px rgba(204, 101, 96, .35);
	height: auto;
	max-width: 30px;
	width: 100%;
}

.worries .worries__items .worries__item p {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	padding-top: 2px;
}

.worries .worries__bottom {
	font-size: 25px;
	font-weight: 500;
	line-height: 1.4;
	margin-top: 70px;
	text-align: center;
}

.worries .worries__bottom br {
	display: none;
}

/* 投稿ページで使うクラス */

.archive .archive__head {
	gap: 28px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #FFF8F4;
	border-radius: 50px 0 0 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 300px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: auto;
	width: 93%;
}

.archive .archive__head .ja,
.archive .archive__head .en {
	line-height: 1;
}

.archive .archive__head .ja {
	font-size: 16px;
	font-weight: 700;
}

.archive .archive__head .en {
	color: #FF867C;
	font-family: "Lexend", sans-serif;
	font-size: 60px;
	font-weight: 300;
}

.archive .archive__main {
	margin: 80px auto 0;
	max-width: 1430px;
	width: 100%;
}

.archive .archive__categories {
	margin: 0 auto;
	max-width: 972px;
	width: 100%;
}

.archive .archive__categories .layout {
	gap: 18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 18px;
}

.archive .archive__category a,
.archive .archive__category span {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid #FF867C;
	border-radius: 16px;
	color: #FF867C;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 18px;
	font-weight: 500;
	height: 32px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-bottom: 1px;
	width: 180px;
}

.archive .archive__category a {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.archive .archive__category a:hover {
	background-color: rgba(255, 134, 124, .3);
}

.archive .archive__category--active span {
	background-color: #FF867C;
	color: #fff;
}

.archive .archive__articles {
	-moz-column-gap: 32px;
	-webkit-column-gap: 32px;
	column-gap: 32px;
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 70px;
}

.archive .archive__articles .archive__article {
	border-bottom: 1px solid #DBDBDB;
}

.archive .archive__articles .archive__article:nth-child(1) {
	border-top: 1px solid #DBDBDB;
}

.archive .archive__articles .archive__article a {
	gap: 22px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	padding: 22px 16px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.archive .archive__articles .archive__article a:hover {
	background-color: rgba(255, 134, 124, .3);
}

.archive .archive__articles .archive__article .archive__thumbnail {
	height: 100%;
	width: 208px;
}

.archive .archive__articles .archive__article .archive__thumbnail img {
	aspect-ratio: 10/7;
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.archive .archive__articles .archive__article .archive__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: calc(100% - 230px);
}

.archive .archive__articles .archive__article .archive__info .head {
	gap: 8px 15px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.archive .archive__articles .archive__article .archive__info .head .category {
	background-color: #FF867C;
	border-radius: 12px;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	padding: 4px 20px 6px;
}

.archive .archive__articles .archive__article .archive__info .head time {
	font-size: 14px;
	font-weight: 700;
}

.archive .archive__articles .archive__article .archive__info .the-title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	font-size: 20px;
	line-height: 1.5;
	margin-top: 15px;
	min-height: 60px;
	overflow: hidden;
}

.archive .archive__articles .archive__article .archive__info .bottom {
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	line-height: 1;
	margin-top: 30px;
}

.archive .archive__articles .archive__article .archive__info .bottom p {
	color: #FF867C;
	font-size: 16px;
	font-weight: 700;
}

.archive .archive__articles .archive__article .archive__info .bottom img {
	height: auto;
	width: 13px;
}

.archive .archive__articles .js-display-none {
	display: none;
}

.archive .archive__articles .js-fade-in {
	-webkit-animation: fadeInAnimation 1s ease-in forwards;
	animation: fadeInAnimation 1s ease-in forwards;
	opacity: 0;
}

.archive .archive__not-found {
	margin: 100px auto;
	text-align: center;
}

.archive .archive__button {
	gap: 16px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #FF867C;
	border: 1px solid #FF867C;
	border-radius: 27px;
	color: #fff;
	cursor: pointer;
	display: none;
	font-size: 16px;
	font-weight: 700;
	height: 54px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	letter-spacing: 0.05em;
	margin: 80px auto 0;
	padding: 16px;
	position: relative;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 320px;
}

.archive .archive__button:hover {
	background-color: #fff;
	color: #FF867C;
}

.archive .archive__button:hover .circle {
	background-color: #FF867C;
	-webkit-transform: translateY(-50%) scale(1.5);
	transform: translateY(-50%) scale(1.5);
}

.archive .archive__button .circle {
	background-color: #fff;
	border-radius: 50%;
	height: 8px;
	position: absolute;
	right: 16px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 8px;
}

.archive .archive__button--1280 {
	display: none;
}

.archive .archive__button--768-1079 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.archive .archive__button--767 {
	display: none;
}

/* 404ページで使うクラス */

.not-found .not-found__layout {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-height: 800px;
}

.not-found .not-found__layout .num {
	color: #FF867C;
	font-size: 120px;
}

.not-found .not-found__layout .en {
	color: #FF867C;
	font-size: 48px;
}

.not-found .not-found__layout .text {
	font-size: 28px;
	margin-top: 20px;
}

.not-found .not-found__layout .button {
	gap: 16px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #FF867C;
	border: 1px solid #FF867C;
	border-radius: 27px;
	color: #fff;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	height: 54px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	letter-spacing: 0.05em;
	margin: 80px auto 0;
	padding: 16px;
	position: relative;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 320px;
}

.not-found .not-found__layout .button:hover {
	background-color: #fff;
	color: #FF867C;
}

.not-found .not-found__layout .button:hover .circle {
	background-color: #FF867C;
	-webkit-transform: translateY(-50%) scale(1.5);
	transform: translateY(-50%) scale(1.5);
}

.not-found .not-found__layout .button .circle {
	background-color: #fff;
	border-radius: 50%;
	height: 8px;
	position: absolute;
	right: 16px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 8px;
}

/* 記事詳細ページで使うクラス */

.single .single__head {
	gap: 28px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #FFF8F4;
	border-radius: 50px 0 0 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 300px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-left: auto;
	width: 93%;
}

.single .single__head .ja,
.single .single__head .en {
	line-height: 1;
}

.single .single__head .ja {
	font-size: 16px;
	font-weight: 700;
}

.single .single__head .en {
	color: #FF867C;
	font-family: "Lexend", sans-serif;
	font-size: 60px;
	font-weight: 300;
}

.single .single__layout {
	margin: 80px auto 0;
	max-width: 1380px;
	width: 100%;
}

.single .single__info {
	gap: 28px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.single .single__info .category {
	background-color: #FF867C;
	border-radius: 15px;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	padding: 4px 32px 6px;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.single .single__info time {
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.single .single__the-title {
	font-size: 25px;
	line-height: 1.5;
	margin-top: 28px;
}

.single .single__thumbnail {
	gap: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 32px;
}

.single .single__thumbnail .thumbnail-big {
	width: calc(100% - 305px);
}

.single .single__thumbnail .thumbnail-big img {
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 10px;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.single .single__thumbnail .thumbnail-group {
	gap: 15px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr;
	max-width: 285px;
	width: 100%;
}

.single .single__thumbnail .thumbnail-group .thumbnail img {
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 10px;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.single .single__thumbnail .single-thumbnail img {
	aspect-ratio: 1280/600;
	-o-object-fit: cover;
	-o-object-position: center;
	border-radius: 10px;
	height: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

.single .single__the-content {
	margin-top: 50px;
}

.single .single__the-content img {
	margin: 32px 0;
}

.single .single__the-content h2 {
	background-color: #FF867C;
	border-radius: 5px;
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 32px;
	margin-top: 50px;
	padding: 6px 20px 8px;
}

.single .single__the-content h3 {
	color: #2E4057;
	font-size: 22px;
	line-height: 1.5;
	margin-bottom: 28px;
	margin-top: 40px;
	padding-bottom: 7px;
	position: relative;
}

.single .single__the-content h3::before {
	background-color: #2E4057;
	bottom: 0;
	content: "";
	height: 1px;
	left: 30px;
	position: absolute;
	right: 30px;
	width: calc(100% - 60px);
}

.single .single__the-content p {
	font-size: 16px;
	line-height: 1.5;
}

.single .single__the-content ul {
	font-size: 16px;
	line-height: 1.5;
	list-style: disc;
	margin: 24px 0;
}

.single .single__the-content ol {
	font-size: 16px;
	line-height: 1.5;
	list-style: decimal;
	margin: 24px 0;
}

.single .single__the-content p,
.single .single__the-content h3 {
	padding-left: 30px;
	padding-right: 30px;
}

.single .single__the-content ul,
.single .single__the-content ol {
	padding-left: 55px;
	padding-right: 30px;
}

.single .single__pagination {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 100px auto 0;
	max-width: 400px;
	width: 100%;
}

.single .single__pagination .old,
.single .single__pagination .new,
.single .single__pagination .back {
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	min-height: 20px;
	min-width: 66px;
}

.single .single__pagination .old a,
.single .single__pagination .new a,
.single .single__pagination .back a {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.single .single__pagination .old a:hover,
.single .single__pagination .new a:hover,
.single .single__pagination .back a:hover {
	opacity: 0.7;
}

/* Contact Form 7 で使うクラスが書かれているファイル */

.template-form7__items {
	gap: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.template-form7__title {
	display: inline-block;
	font-size: 16px;
	letter-spacing: 0.025em;
	line-height: 1.5;
	position: relative;
}

.template-form7__title::after {
	background: #fff;
	border: 1px solid #C1425D;
	border-radius: 5px;
	color: #C1425D;
	content: "任意";
	font-size: 12px;
	height: 22px;
	line-height: 20px;
	position: absolute;
	right: -55px;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(calc(-50% + 1px));
	transform: translateY(calc(-50% + 1px));
	width: 46px;
}

.template-form7__title--privacy-policy::after {
	display: none;
}

.template-form7__required {
	display: inline-block;
	position: relative;
}

.template-form7__required::after {
	background: #C1425D;
	border: 1px solid #C1425D;
	color: #fff;
	content: "必須";
}

.template-form7__message {
	position: relative;
}

.template-form7__message::before {
	content: "個人のお問い合わせの場合は「なし」とご入力ください";
	font-size: 12px;
	left: calc(100% + 64px);
	line-height: 1.4;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	white-space: nowrap;
}

.template-form7__textarea {
	padding-bottom: 30px;
	position: relative;
}

.template-form7__textarea .wpcf7-form-control-wrap {
	display: block;
	height: 100%;
	max-height: 192px;
	position: static;
}

.template-form7__textarea .wpcf7-not-valid-tip {
	bottom: 0;
	position: absolute;
	right: 0;
}

.template-form7__textarea textarea {
	border-radius: 5px;
	-webkit-box-shadow: 0 5px 8px rgba(178, 68, 68, .35);
	box-shadow: 0 5px 8px rgba(178, 68, 68, .35);
	color: #231815;
	height: 100%;
	margin-top: 12px;
	max-height: 180px;
	padding: 16px;
	position: relative;
	resize: none;
	width: 100%;
}

.template-form7__textarea textarea::-webkit-scrollbar {
	margin-right: 8px;
	width: 5px;
}

.template-form7__textarea textarea::-webkit-scrollbar-thumb {
	background-color: #9E9E9E;
	border-radius: 3px;
}

.template-form7__privacy-policy {
	border-radius: 5px;
	-webkit-box-shadow: 0 5px 8px rgba(178, 68, 68, .35);
	box-shadow: 0 5px 8px rgba(178, 68, 68, .35);
	color: #231815;
	font-size: 16px;
	height: 100%;
	margin-top: 12px;
	max-height: 180px;
	overflow-y: auto;
	padding: 16px;
	width: 100%;
}

.template-form7__privacy-policy::-webkit-scrollbar {
	margin-right: 8px;
	width: 5px;
}

.template-form7__privacy-policy::-webkit-scrollbar-thumb {
	background-color: #9E9E9E;
	border-radius: 3px;
}

.template-form7__privacy-policy p {
	font-size: 16px;
}

.template-form7__privacy-policy .center {
	text-align: center;
}

.template-form7__privacy-policy .mt {
	margin-top: 24px;
}

.template-form7__privacy-policy .mt-mini {
	margin-top: 12px;
}

.template-form7__text,
.template-form7__select {
	margin-top: 12px;
	padding-bottom: 30px;
	position: relative;
}

.template-form7__text .text-form,
.template-form7__text .select-box,
.template-form7__text .email-form,
.template-form7__text .tel-form,
.template-form7__select .text-form,
.template-form7__select .select-box,
.template-form7__select .email-form,
.template-form7__select .tel-form {
	border-radius: 5px;
	-webkit-box-shadow: 0 5px 8px rgba(178, 68, 68, .35);
	box-shadow: 0 5px 8px rgba(178, 68, 68, .35);
	color: #231815;
	font-size: 16px;
	height: 36px;
	padding-left: 12px;
	padding-right: 12px;
	width: 100%;
}

.template-form7__text .wpcf7-form-control-wrap,
.template-form7__select .wpcf7-form-control-wrap {
	display: block;
	height: 100%;
	position: static;
}

.template-form7__select {
	position: relative;
}

.template-form7__select::before,
.template-form7__select::after {
	background-color: #C1425D;
	content: "";
	height: 9px;
	position: absolute;
	right: 14px;
	width: 9px;
}

.template-form7__select::before {
	-webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	top: 6px;
}

.template-form7__select::after {
	-webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
	bottom: 35px;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.template-form7__acceptance {
	gap: 8px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 12px;
	padding-left: 54px;
	position: relative;
}

.template-form7__acceptance::after {
	background: #C1425D;
	border-radius: 5px;
	color: #fff;
	content: "必須";
	font-size: 12px;
	height: 22px;
	left: 0px;
	line-height: 20px;
	position: absolute;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 46px;
}

.template-form7__acceptance .wpcf7-form-control {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 2px;
}

.template-form7__acceptance .wpcf7-list-item {
	margin: 0;
}

.template-form7__acceptance input[type=checkbox] {
	border: 1px solid #231815;
	display: block;
	height: 16px;
	margin: 0;
	position: relative;
	width: 16px;
}

.template-form7__acceptance input[type=checkbox]::before {
	border-bottom: 2px solid transparent;
	border-left: 2px solid transparent;
	content: "";
	display: block;
	height: 7px;
	left: 1px;
	position: absolute;
	top: 2px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 12px;
	z-index: 1;
}

.template-form7__acceptance input[type=checkbox]:checked::before {
	border-color: #231815;
}

.template-form7__acceptance p {
	font-size: 16px;
}

.template-form7__acceptance a {
	text-decoration: underline;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.template-form7__acceptance a:hover {
	color: #231815;
}

.template-form7__button {
	margin: 50px auto 0;
	max-width: 360px;
	position: relative;
	width: 100%;
}

.template-form7__button::before {
	background-color: #fff;
	border-radius: 50%;
	content: "";
	height: 8px;
	position: absolute;
	right: 25px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 8px;
}

.template-form7__button:hover::before {
	background-color: #FF867C;
	-webkit-transform: translateY(-50%) scale(2);
	transform: translateY(-50%) scale(2);
}

.template-form7__button:hover .wpcf7-submit {
	background-color: #fff;
	color: #FF867C;
}

.template-form7__button .wpcf7-spinner {
	display: none;
}

.template-form7__button .wpcf7-submit {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #FF867C;
	border: 1px solid #FF867C;
	border-radius: 30px;
	color: #fff;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	height: 60px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	letter-spacing: 0.05em;
	padding: 0 30px;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	width: 100%;
}

.template-form7__button .wpcf7-previous {
	background-color: gray;
	border: 1px solid gray;
	color: #fff;
	display: block !important;
}

.template-form7__button .wpcf7-previous:hover {
	background-color: #fff;
	border: 1px solid gray;
	color: gray;
}

.template-form7__button:has(input:disabled):hover::before {
	background-color: #fff;
	-webkit-transform: translateY(-50%) scale(1);
	transform: translateY(-50%) scale(1);
}

.template-form7__button:has(input:disabled):hover .wpcf7-submit {
	background-color: gray;
	border-color: gray;
	color: #fff;
}

.wpcf7-submit:disabled {
	background-color: gray;
	border-color: gray;
	cursor: not-allowed;
}

/* Contact form 7 の独自のクラスの上書き */

.wpcf7-not-valid-tip {
	bottom: 0;
	font-size: 16px;
	line-height: 1.5;
	position: absolute;
	right: 0;
	text-align: right;
}

/* JavaScriptで使うクラス */

.js-fade {
	opacity: 0;
}

/* フェードインのCSS */

.active.fade-in { /* 1s でアニメーションスピードを管理 */
	-webkit-animation: fadeIn 1s ease-in forwards;
	animation: fadeIn 1s ease-in forwards;
}

.active.fade-in-down { /* 1s でアニメーションスピードを管理 */
	-webkit-animation: fadeInDown 1s ease-in forwards;
	animation: fadeInDown 1s ease-in forwards;
	opacity: 0;
}

.active.fade-in-up { /* 1s でアニメーションスピードを管理 */
	-webkit-animation: fadeInUp 1s ease-in forwards;
	animation: fadeInUp 1s ease-in forwards;
	opacity: 0;
}

.active.fade-in-left { /* 1s でアニメーションスピードを管理 */
	-webkit-animation: fadeInLeft 1s ease-in forwards;
	animation: fadeInLeft 1s ease-in forwards;
	opacity: 0;
}

.active.fade-in-right { /* 1s でアニメーションスピードを管理 */
	-webkit-animation: fadeInRight 1s ease-in forwards;
	animation: fadeInRight 1s ease-in forwards;
	opacity: 0;
}

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

.display-pc {
	display: block;
}

a[href^="tel:"] {
	pointer-events: none;
}

.c-heading .bp-768 {
	display: block;
}

}

@media screen and (min-width: 1024px) {

.front-page,
.not-found {
	margin-top: 90px;
}

.c-cards .layout {
	padding: 0 50px 32px;
}

.about .about__main {
	gap: 40px;
	grid-template-columns: 45% calc(55% - 40px);
	max-width: 1100px;
}

.about .about__main .about__picture img {
	margin: 0;
	width: 100%;
}

.about .about__main .about__arrangement {
	left: -30px;
	top: -100px;
}

.about .about__main .about__arrangement img {
	width: 29vw;
}

.about .about__main .about__door {
	bottom: 0px;
	left: 67%;
	-webkit-transform: none;
	transform: none;
}

.about .about__main .about__door img {
	max-width: 308px;
	width: 16vw;
}

.about .about__main .about__texts p {
	max-width: none;
}

.contact .contact__texts br {
	display: block;
}

.flow .flow__layout {
	padding-bottom: 200px;
	padding-top: 200px;
}

.flow .flow__items {
	gap: 2%;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	max-width: 1300px;
}

.flow .flow__items::before {
	height: 2px;
	left: 9.04%;
	top: 61px;
	width: 81.92%;
}

.flow .flow__item {
	gap: 0px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 18.08%;
}

.flow .flow__item .flow__num {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.flow .flow__item .flow__circle {
	margin: 20px auto 0;
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}

.flow .flow__item .flow__card {
	margin-top: 28px;
	padding: 55px 10px 45px;
	width: 100%;
}

.footer .footer__menus {
	gap: 3%;
}

.header__nav {
	display: block;
	right: auto;
}

.message .message__layout {
	gap: 40px;
	grid-template-columns: 55% calc(45% - 40px);
	max-width: 1400px;
	padding-bottom: 340px;
	padding-top: 300px;
}

.message .message__picture {
	padding-top: 110px;
}

.message .message__picture img {
	border-radius: 30px;
}

.mv .mv__layout {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	display: grid;
	grid-template-columns: 6.7% 1fr;
	height: 740px;
	margin-left: 0;
}

.mv .mv__scroll {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-bottom: 200px;
}

.mv .mv__main {
	border-radius: 50px 0 0 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 700px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 9.5% 0 50px;
}

.mv .mv__main .mv__heading {
	font-size: 40px;
	padding-left: 6.4%;
}

.mv .mv__main .mv__texts {
	padding-left: 6.4%;
}

.mv .mv__main .mv__text-slider {
	bottom: auto;
	position: relative;
}

.mv .mv__main .mv__text-slider .slide {
	margin-left: 1.8vw;
}

.mv .mv__main .mv__lets-more {
	bottom: auto;
	left: auto;
	right: 24px;
	top: calc(50% - 50px);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.mv .mv__main .mv__lets-more img {
	max-width: 280px;
}

.mv .mv__pictures {
	bottom: 0;
	height: 700px;
	margin: 0;
	max-height: 740px;
	max-width: 530px;
	min-height: 740px;
	position: absolute;
	right: 3%;
}

.mv .mv__arrangement {
	bottom: 120px;
	left: auto;
	right: 24px;
	-webkit-transform: none;
	transform: none;
}

.mv .mv__arrangement img {
	max-height: 770px;
	max-width: 1000px;
	min-width: auto;
	width: 60vw;
}

.mv .mv__pictures--bp-1023,
.mv .mv__arrangement--bp-1023 {
	display: none;
}

.mv .mv__pictures--bp-1024,
.mv .mv__arrangement--bp-1024 {
	display: block;
}

.qa-supporter-background .background-1024 {
	aspect-ratio: 1920/1382;
	bottom: 0px;
	display: block;
	min-height: 1560px;
	top: auto;
}

.qa .qa__main {
	gap: 40px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.qa .qa__main--lg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.qa .qa__main--not-lg {
	display: none;
}

.qa .qa__accordions {
	width: calc(50% - 20px);
}

.qa .qa__accordion .question .icon,
.qa .qa__accordion .layout .icon {
	cursor: default;
}

.qa .js-accordion-close:nth-child(2) .qa__accordion .first-child {
	border-top: 1px solid #DBDBDB;
}

.stage .stage__layout {
	margin-top: 150px;
	padding-top: 150px;
}

.stage .stage__steps .stage__step .stage__question .stage__title br {
	display: block;
}

.supporter {
	position: static;
}

.supporter .background-1023 {
	display: none;
}

.supporter .supporter__humans .supporter__human {
	margin: 0;
}

.supporter .supporter__humans--head {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.supporter .supporter__humans--head .supporter__human .picture {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 259px;
}

.supporter .supporter__humans--head .supporter__human:nth-child(1) img {
	max-width: 254px;
}

.supporter .supporter__humans--head .supporter__human:nth-child(2) img {
	max-width: 303px;
}

.supporter .supporter__humans--head .supporter__human:nth-child(3) img {
	max-width: 230px;
}

.supporter .supporter__humans--foot {
	gap: 19%;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 0;
}

.supporter .supporter__humans--foot .supporter__human .picture {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 229px;
}

.supporter .supporter__humans--foot .supporter__human:nth-child(1) img {
	max-width: 239px;
}

.supporter .supporter__humans--foot .supporter__human:nth-child(2) img {
	max-width: 230px;
}

.text-slider .slide {
	margin-left: 70px;
}

.text-slider--flow .slide {
	margin-left: 1.8vw;
}

.voice .voice__layout .voice__swiper .voice__card {
	padding: 32px;
}

.worries .worries__layout {
	margin-top: -100px;
	max-width: 1380px;
}

.worries .worries__main {
	gap: 50px;
	grid-template-columns: 45% calc(55% - 50px);
}

.worries .worries__picture img {
	border-radius: 30px;
}

.archive .archive__articles {
	grid-template-columns: 1fr 1fr;
}

.archive .archive__articles .archive__article:nth-child(2) {
	border-top: 1px solid #DBDBDB;
}

.not-found .not-found__layout .num {
	font-size: 150px;
}

.not-found .not-found__layout .en {
	font-size: 60px;
}

.not-found .not-found__layout .text {
	font-size: 32px;
	margin-top: 24px;
}

.single .single__thumbnail .thumbnail-big {
	width: calc(100% - 435px);
}

.single .single__thumbnail .thumbnail-group {
	max-width: 415px;
}

.single .single__pagination {
	margin-top: 120px;
}

}

@media screen and (min-width: 1280px) {

html {
	scroll-padding-top: 110px;
}

.front-page,
.not-found {
	margin-top: 140px;
}

.archive,
.single {
	margin-top: 100px;
}

.c-num__items {
	gap: 50px;
	grid-template-columns: 1fr 1fr;
}

.c-num__item .main .heading .bp-1280 {
	display: block;
}

.about .about__main .about__arrangement {
	left: -10%;
	top: -100px;
}

.flow .flow__layout {
	padding-bottom: 250px;
}

.header {
	background-color: #fff;
	height: 100px;
}

.header__layout {
	padding-right: 0;
}

.header__logo a {
	height: 110px;
	width: 300px;
}

.header__logo a img {
	width: 220px;
}

.header__main {
	gap: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header__main-sp {
	display: none;
}

.header__menus {
	gap: 18px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header__menu {
	height: inherit;
}

.header__menu--contact a {
	gap: 16px;
	padding-left: 32px;
	padding-right: 24px;
}

.header__free-contact a {
	display: none;
}

.hamburger__icon {
	display: none;
}

.inner {
	padding-left: 50px;
	padding-right: 50px;
}

.mv .mv__main .mv__heading {
	font-size: 50px;
}

.mv .mv__main .mv__heading .back {
	padding: 18px 10px 18px 28px;
}

.mv .mv__main .mv__texts {
	font-size: 30px;
}

.mv .mv__main .mv__lets-more {
	right: 32px;
	top: calc(50% - 40px);
}

.mv .mv__main .mv__lets-more img {
	max-width: 371px;
}

.mv .mv__pictures {
	right: 10%;
}

.mv .mv__arrangement {
	bottom: 70px;
}

.qa-supporter-background .background-1024 {
	min-height: 1600px;
}

.reason .reason__pictures {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-width: 120%;
}

.support .support__card::before {
	font-size: 24px;
	height: 118px;
	padding-left: 16px;
	padding-top: 10px;
	width: 118px;
}

.archive .archive__button--1280 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.archive .archive__button--768-1079 {
	display: none;
}

}

@media screen and (min-width: 1500px) {

html {
	scroll-padding-top: 120px;
}

.about .about__main {
	gap: 50px;
	grid-template-columns: 45% calc(55% - 50px);
}

.flow .flow__layout {
	padding-bottom: 300px;
}

.flow .flow__items {
	gap: 2.4%;
}

.flow .flow__item .flow__card .text br {
	display: block;
}

.header__logo a {
	height: 120px;
	width: 370px;
}

.header__logo a img {
	width: 244px;
}

.header__menus {
	gap: 40px;
}

.header__menu--contact a {
	gap: 20px;
	padding-left: 40px;
	padding-right: 30px;
}

.header__menu--contact a img {
	height: 20px;
}

.header__menu--contact a p {
	font-size: 20px;
}

.mv .mv__layout {
	height: 840px;
}

.mv .mv__main {
	height: 800px;
}

.mv .mv__main .mv__heading {
	font-size: 60px;
}

.mv .mv__main .mv__lets-more {
	right: 32px;
	top: calc(50% - 50px);
}

.mv .mv__pictures {
	max-height: 840px;
	max-width: 602px;
	min-height: 840px;
	right: 100px;
}

.mv .mv__arrangement {
	right: 32px;
}

.qa-supporter-background .background-1024 {
	min-height: 1600px;
}

.reason .reason__pictures {
	min-width: 115%;
}

.stage .stage__steps {
	border-radius: 50px;
}

.worries .worries__main {
	grid-template-columns: 36% calc(64% - 50px);
}

.worries .worries__items .worries__item .worries__icon img {
	max-width: 32px;
}

.worries .worries__items .worries__item p {
	font-size: 22px;
}

}

@media screen and (min-width: 1920px) {

html {
	scroll-padding-top: 168px;
}

.front-page,
.not-found {
	margin-top: 163px;
}

.archive,
.single {
	margin-top: 120px;
}

.about .about__main .about__door {
	bottom: -60px;
	left: 60%;
}

.header {
	height: 120px;
}

.header__logo a {
	height: 168px;
	width: 592px;
}

.header__logo a img {
	width: 349px;
}

.header__menus {
	gap: 50px;
}

.header__menu--contact a {
	padding-left: 55px;
	padding-right: 40px;
}

.mv .mv__layout {
	height: 923px;
}

.mv .mv__main {
	height: 880px;
}

.mv .mv__main .mv__heading {
	font-size: 68px;
}

.mv .mv__main .mv__heading .back {
	padding: 20px 12px 20px 32px;
}

.mv .mv__main .mv__lets-more {
	left: calc(6.4% + 1170px);
	right: auto;
	top: calc(50% - 30px);
}

.mv .mv__pictures {
	left: calc(12.7% + 850px);
	max-height: 923px;
	max-width: 662px;
	min-height: 923px;
	right: auto;
}

.mv .mv__arrangement {
	bottom: 53px;
	left: calc(6.4% + 530px);
	right: auto;
	top: 53px;
}

.mv .mv__arrangement img {
	max-width: 1140px;
	width: 100%;
}

.qa-supporter-background .background-1024 {
	max-height: 1630px;
	min-height: 1630px;
}

}

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

.display-sp {
	display: block;
}

html {
	scroll-padding-top: 85px;
}

.front-page,
.not-found {
	margin-top: 40px;
}

.archive,
.single {
	margin-top: 40px;
}

.c-cards .layout {
	gap: 36px;
	margin-top: 55px;
	padding: 0 30px 32px;
}

.c-cards .bar {
	left: 166px;
	right: 166px;
	width: calc(100% - 332px);
}

.gradient-heading-contact {
	font-size: 65px;
}

.gradient-heading-contact-form {
	font-size: 65px;
}

.gradient-heading-strength {
	font-size: 65px;
}

.gradient-heading-innovation {
	font-size: 65px;
}

.gradient-heading-solution {
	font-size: 65px;
}

.gradient-heading-emotion {
	font-size: 65px;
}

.gradient-heading-business {
	font-size: 65px;
}

.gradient-heading-our-strength {
	font-size: 65px;
}

.gradient-heading-sales-promotion {
	font-size: 65px;
}

.gradient-heading-consulting {
	font-size: 65px;
}

.gradient-heading-education {
	font-size: 65px;
}

.gradient-heading-company {
	font-size: 65px;
}

.gradient-heading-data {
	font-size: 65px;
}

.c-heading .ja {
	font-size: 15px;
}

.c-heading .en {
	font-size: 50px;
	margin-top: 8px;
}

.c-heading .bp-767 {
	display: block;
}

.c-num__items {
	gap: 35px;
}

.c-num__item {
	gap: 16px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 32px 24px;
}

.c-num__item .num {
	font-size: 32px;
}

.c-num__item .main {
	width: 100%;
}

.c-num__item .main .heading {
	font-size: 18px;
	line-height: 1.7777777778;
	text-align: center;
}

.c-num__item .main .texts {
	margin-top: 14px;
}

.about .about__layout {
	margin-top: 100px;
	padding: 0 30px;
}

.about .about__main .about__picture img {
	border-radius: 18px;
}

.about .about__main .about__arrangement {
	left: 30px;
	top: -100px;
}

.about .about__main .about__door img {
	max-width: 150px;
	width: 35.2vw;
}

.column .column__layout {
	margin-bottom: 125px;
	margin-top: 100px;
}

.column .column__button a {
	height: 52px;
	width: 300px;
}

.contact .contact__layout {
	margin-top: 125px;
}

.contact .contact__title {
	font-size: 20px;
	margin-top: 32px;
}

.contact .contact__texts {
	margin-top: 50px;
}

.contact .contact__form7 {
	margin-top: 60px;
}

.flow .flow__pictures {
	bottom: -60px;
}

.flow .flow__pictures .flow__picture:nth-child(odd) {
	margin-top: 40px;
}

.flow .flow__pictures .flow__picture:nth-child(even) {
	margin-bottom: 40px;
}

.flow .flow__pictures .flow__picture:nth-child(4) {
	display: none;
}

.flow .flow__pictures .flow__picture:nth-child(5) {
	display: none;
}

.flow .flow__layout {
	padding-bottom: 280px;
	padding-top: 120px;
}

.flow .flow__items {
	margin-top: 60px;
}

.flow .flow__item .flow__card {
	padding: 25px 10px;
}

.flow .flow__item .flow__card .icon {
	height: 50px;
}

.flow .flow__item .flow__card .title {
	font-size: 19px;
	margin-top: 11px;
}

.flow .flow__item .flow__card .text {
	margin-top: 11px;
}

.flow .flow__item:nth-child(1) .icon img {
	height: 36px;
}

.flow .flow__item:nth-child(2) .icon img {
	height: 44px;
}

.flow .flow__item:nth-child(3) .icon img {
	height: 26px;
}

.flow .flow__item:nth-child(4) .icon img {
	height: 45px;
}

.flow .flow__item:nth-child(5) .icon img {
	height: 50px;
}

.footer .footer__layout {
	margin-top: 150px;
	padding-bottom: 24px;
	padding-top: 50px;
}

.footer .footer__menus {
	display: none;
}

.footer .footer__main {
	gap: 36px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin: 0;
}

.footer .footer__main .company .head,
.footer .footer__main .company .mail {
	font-size: 13px;
}

.footer .footer__main .company .head {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.footer .footer__main .company .mail {
	margin-top: 12px;
}

.footer .footer__facebook {
	margin-top: 36px;
}

.footer .footer__facebook .facebook-icon img {
	width: 36px;
}

.footer .footer__facebook .info {
	font-size: 13px;
}

.footer .footer__message {
	margin-top: 28px;
}

.footer .footer__message br {
	display: block;
}

.footer .footer__copyright {
	margin-top: 30px;
}

.footer--wave .wave {
	height: 80px;
	width: 100%;
}

.for-you .for-you__layout {
	margin-top: 80px;
}

.for-you .for-you__heading {
	font-size: 36px;
}

.for-you .for-you__texts {
	font-size: 36px;
}

.for-you .for-you__texts .bp-767 {
	display: block;
}

.for-you .for-you__texts .mt {
	margin-top: 26px;
}

.for-you .for-you__more img {
	max-width: 370px;
	width: 85%;
}

.header {
	background-color: transparent;
	height: 80px;
}

.header__logo a {
	border-radius: 0 0 30px 0;
	height: 85px;
	width: 252px;
}

.header__logo a img {
	width: 193px;
}

.header__menu {
	height: auto;
}

.header__free-contact a {
	font-size: 14px;
	height: 53px;
	width: 53px;
}

.hamburger__icon {
	height: 53px;
	width: 53px;
}

.hamburger__bars {
	height: 19px;
	width: 28px;
}

.hamburger__bars .hamburger__bar {
	width: 28px;
}

.hamburger__nav {
	padding: 90px 30px;
	width: 100%;
}

.hamburger__nav .hamburger__menus {
	min-width: auto;
	width: 100%;
}

.hamburger__nav .hamburger__menus .hamburger__menu a::before {
	height: 7px;
	top: 12px;
	width: 7px;
}

.hamburger__nav .hamburger__menus .hamburger__menu a p {
	font-size: 27px;
}

.js-hamburger .hamburger__icon .hamburger__bar:nth-child(1) {
	left: 11px;
}

.js-hamburger .hamburger__icon .hamburger__bar:nth-child(3) {
	left: 12px;
}

.inner {
	padding-left: 30px;
	padding-right: 30px;
}

.message .message__background {
	background-image: url(../images/front-page/message-background-sp.jpg);
	margin-top: -250px;
}

.message .message__layout {
	gap: 40px;
	padding-bottom: 180px;
	padding-top: 250px;
}

.message .message__texts {
	margin-top: 40px;
}

.message .message__picture img {
	border-radius: 30px;
}

.mv .mv__layout {
	margin-left: 30px;
}

.mv .mv__main {
	border-radius: 30px 0 0 30px;
	padding-top: 72px;
}

.mv .mv__main .mv__heading {
	font-size: 33px;
	padding-left: 32px;
}

.mv .mv__main .mv__heading .back:not(:first-child) {
	margin-top: 16px;
}

.mv .mv__main .mv__texts {
	font-size: 20px;
	margin-top: 36px;
	padding-left: 48px;
}

.mv .mv__main .mv__text-slider .slide {
	margin-left: 1.8vw;
}

.mv .mv__main .mv__bar .mv__meter {
	-webkit-animation: meter_sp 5.5s ease-in forwards infinite;
	animation: meter_sp 5.5s ease-in forwards infinite;
}

.mv .mv__main .mv__lets-more {
	bottom: 280px;
	left: calc(50% + 4vw);
}

.mv .mv__main .mv__lets-more img {
	width: 180px;
}

.mv .mv__pictures {
	margin-left: auto;
	margin-top: 20px;
	max-width: 450px;
}

.mv .mv__arrangement {
	bottom: 110px;
}

.mv .mv__arrangement img {
	min-width: 700px;
}

.qa .qa__layout {
	margin-top: 65px;
}

.qa .qa__main {
	margin-top: 40px;
}

.qa .qa__accordion .question,
.qa .qa__accordion .layout {
	gap: 12px;
	grid-template-columns: 40px 1fr 32px;
}

.qa .qa__accordion .question .alphabet,
.qa .qa__accordion .layout .alphabet {
	font-size: 32px;
}

.qa .qa__accordion .question .icon,
.qa .qa__accordion .layout .icon {
	height: 32px;
	width: 32px;
}

.qa .qa__accordion .question {
	padding: 28px 24px;
}

.qa .qa__accordion .question {
	padding: 24px 20px;
}

.qa .qa__accordion .question .title br {
	display: none;
}

.qa .qa__accordion .layout {
	grid-template-columns: 40px 1fr;
	padding: 0 24px 28px;
}

.reason {
	margin-top: 85px;
}

.reason .reason__layout {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 1070px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-top: 0;
}

.reason .reason__pictures {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	min-width: 1980px;
}

.reason .reason__circle {
	max-width: 850px;
	min-height: 850px;
	min-width: 850px;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.reason .reason__items {
	margin-top: 50px;
	max-width: 500px;
}

.reason .reason__item {
	gap: 24px;
	padding: 24px 0px;
}

.reason .reason__item .reason__num {
	padding-top: 4px;
}

.reason .reason__item .reason__title {
	font-size: 18px;
}

.stage .stage__layout {
	margin-top: 100px;
	padding-top: 90px;
}

.stage .stage__background img {
	aspect-ratio: 375/273;
	min-height: 320px;
}

.stage .stage__steps {
	border-radius: 20px;
	margin-top: 70px;
	padding: 60px 30px;
}

.stage .stage__steps .stage__step {
	padding-bottom: 82px;
	padding-left: 0px;
	position: relative;
}

.stage .stage__steps .stage__step .stage__question {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-bottom: 36px;
}

.stage .stage__steps .stage__step .stage__question .stage__title {
	margin-left: 24px;
	width: calc(100% - 64px);
}

.stage .stage__steps .stage__step .stage__question .stage__close {
	bottom: 38px;
	margin: 0 auto;
	max-height: 44px;
	padding: 6px 6px 6px 32px;
	position: absolute;
	width: 190px;
}

.stage .stage__steps .stage__step .stage__question .stage__close p {
	width: calc(100% - 32px);
}

.stage .stage__steps .stage__step .stage__question .stage__close p::before {
	font-size: 14px;
}

.stage .stage__steps .stage__step .stage__question .stage__close .icon {
	height: 32px;
	min-width: 32px;
}

.stage .stage__steps .stage__step .stage__question .stage__close .icon img {
	width: 16px;
}

.stage .stage__steps .stage__step .js-answers-open .stage__close {
	width: 137px;
}

.stage .stage__steps .stage__step .stage__answers {
	padding-bottom: 38px;
}

.stage .stage__steps .stage__step .stage__answers .stage__answer {
	gap: 14px;
	border-radius: 10px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 15px 22px 13px;
}

.stage .stage__steps .stage__step .stage__answers .stage__answer .text {
	width: 100%;
}

.support .support__layout {
	margin-top: 120px;
}

.support .support__swiper {
	margin-top: 60px;
	padding: 0;
}

.support .support__swiper::before {
	border-radius: 40px 0 0 40px;
	height: 80%;
	left: 0;
	width: 100%;
}

.support .support__swiper .swiper {
	padding: 0 30px;
}

.support .support__swiper .swiper-wrapper {
	padding-bottom: 80px;
	padding-left: 0;
}

.support .support__swiper .swiper-button-prev,
.support .support__swiper .swiper-button-next {
	height: 50px;
	width: 50px;
}

.support .support__swiper .swiper-button-prev img,
.support .support__swiper .swiper-button-next img {
	height: 50px;
	width: 50px;
}

.support .support__swiper .swiper-button-prev {
	left: 15px;
}

.support .support__swiper .swiper-button-next {
	right: 15px;
}

.support .support__card::before {
	font-size: 18px;
	height: 98px;
	padding-left: 16px;
	padding-top: 8px;
	width: 98px;
}

.support .support__card .support__title {
	font-size: 22px;
	margin-top: 18px;
}

.support .support__card .support__sub-title {
	margin-top: 10px;
}

.support .support__card .support__texts {
	margin-top: 10px;
}

.support .support__card .support__options {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-top: 12px;
}

.supporter .background-1023 {
	top: -340px;
}

.supporter .supporter__humans--head {
	margin-top: 60px;
}

.text-slider {
	margin-top: 85px;
}

.text-slider .slide {
	margin-left: 40px;
}

.text-slider--archive {
	margin-top: 110px;
}

.text-slider--flow .slide {
	margin-left: 1.8vw;
}

.voice .voice__layout {
	padding-bottom: 100px;
	padding-top: 100px;
}

.voice .voice__layout .voice__swiper .swiper {
	padding-top: 70px;
}

.voice .voice__layout .voice__swiper .voice__card {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 28px 24px;
}

.voice .voice__layout .voice__swiper .voice__card .picture img {
	height: 75px;
	width: 75px;
}

.works .works__layout {
	padding-bottom: 100px;
	padding-top: 100px;
}

.works .works__items {
	gap: 35px;
	margin-top: 32px;
}

.works .works__items .works__item {
	gap: 23px;
	padding: 20px 25px;
}

.works .works__items .works__item .works__title {
	width: calc(100% - 37px);
}

.works .works__items .works__item .works__title .title-a {
	font-size: 18px;
	line-height: 1.5555555556;
}

.works .works__items .works__item .works__title .title-b {
	font-size: 22px;
	line-height: 1.5454545455;
	margin-top: 6px;
}

.works .works__items .works__item .works__title .title-b .bp-767 {
	display: block;
}

.worries .worries__layout {
	margin-top: 40px;
}

.worries .worries__main {
	gap: 60px;
	margin-top: 40px;
}

.worries .worries__picture img {
	border-radius: 30px;
}

.worries .worries__items .worries__item {
	gap: 14px;
}

.worries .worries__items .worries__item .worries__icon img {
	border-radius: 5px;
}

.worries .worries__bottom {
	font-size: 23px;
	margin-top: 60px;
}

.worries .worries__bottom br {
	display: block;
}

.archive .archive__head {
	gap: 20px;
	border-radius: 30px 0 0 30px;
	height: 250px;
}

.archive .archive__head .en {
	font-size: 50px;
}

.archive .archive__main {
	margin-top: 50px;
}

.archive .archive__category a,
.archive .archive__category span {
	border-radius: 20px;
	font-size: 17px;
	height: 40px;
	width: 165px;
}

.archive .archive__articles {
	margin-top: 60px;
}

.archive .archive__button {
	height: 52px;
	width: 300px;
}

.archive .archive__button--768-1079 {
	display: none;
}

.archive .archive__button--767 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.not-found .not-found__layout .num {
	font-size: 100px;
}

.not-found .not-found__layout .en {
	font-size: 44px;
}

.not-found .not-found__layout .text {
	font-size: 24px;
	margin-top: 18px;
}

.not-found .not-found__layout .button {
	height: 52px;
	width: 300px;
}

.single .single__head .en {
	font-size: 50px;
}

.single .single__layout {
	margin-top: 50px;
}

.single .single__the-title {
	font-size: 22px;
}

.single .single__thumbnail {
	gap: 16px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 28px;
}

.single .single__thumbnail .thumbnail-big {
	width: 100%;
}

.single .single__thumbnail .thumbnail-big img {
	aspect-ratio: 10/7;
	gap: 16px;
}

.single .single__thumbnail .thumbnail-group {
	max-width: none;
}

.single .single__thumbnail .thumbnail-group .thumbnail img {
	aspect-ratio: 10/7;
}

.single .single__the-content {
	margin-top: 45px;
}

.single .single__the-content img {
	margin: 26px 0;
}

.single .single__the-content h2 {
	margin-bottom: 26px;
	margin-top: 40px;
}

.single .single__the-content h3 {
	margin-bottom: 22px;
	margin-top: 32px;
}

.single .single__the-content h3::before {
	left: 0;
	right: 0;
	width: 100%;
}

.single .single__the-content p,
.single .single__the-content h3 {
	padding-left: 0px;
	padding-right: 0px;
}

.single .single__the-content ul,
.single .single__the-content ol {
	padding-left: 25px;
	padding-right: 25px;
}

.single .single__pagination {
	margin-top: 80px;
}

.template-form7__message::before {
	content: "個人のお問い合わせの場合は「なし」\aとご入力ください";
	min-width: 212px;
	white-space: pre-wrap;
}

.template-form7__button {
	max-width: 330px;
}

}

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

html {
	scroll-padding-top: 70px;
}

.front-page,
.not-found {
	margin-top: 35px;
}

.archive,
.single {
	margin-top: 35px;
}

.c-cards .layout {
	gap: 32px;
	margin-top: 50px;
	padding: 0 20px 32px;
}

.c-cards .bar {
	left: 156px;
	right: 156px;
	width: calc(100% - 312px);
}

.gradient-heading-contact {
	font-size: 50px;
}

.gradient-heading-contact-form {
	font-size: 50px;
}

.gradient-heading-strength {
	font-size: 50px;
}

.gradient-heading-innovation {
	font-size: 50px;
}

.gradient-heading-solution {
	font-size: 50px;
}

.gradient-heading-emotion {
	font-size: 50px;
}

.gradient-heading-business {
	font-size: 50px;
}

.gradient-heading-our-strength {
	font-size: 50px;
}

.gradient-heading-sales-promotion {
	font-size: 50px;
}

.gradient-heading-consulting {
	font-size: 50px;
}

.gradient-heading-education {
	font-size: 50px;
}

.gradient-heading-company {
	font-size: 50px;
}

.gradient-heading-data {
	font-size: 50px;
}

.c-heading .ja {
	font-size: 14px;
}

.c-heading .en {
	font-size: 40px;
	margin-top: 6px;
}

.c-num__items {
	gap: 30px;
}

.c-num__item {
	gap: 8px;
	padding: 24px 20px;
}

.c-num__item .num {
	font-size: 24px;
}

.c-num__item .main .heading {
	font-size: 16px;
	line-height: 1.75;
}

.c-num__item .main .texts {
	margin-top: 12px;
}

.about .about__layout {
	margin-top: 80px;
	padding: 0 20px;
}

.about .about__main .about__arrangement {
	left: 20px;
	top: -90px;
}

.about .about__main .about__door {
	bottom: -40px;
}

.column .column__layout {
	margin-bottom: 100px;
	margin-top: 80px;
}

.column .column__button a {
	height: 50px;
	width: 280px;
}

.contact .contact__layout {
	margin-top: 100px;
}

.contact .contact__title {
	font-size: 16px;
	margin-top: 28px;
}

.contact .contact__texts {
	margin-top: 40px;
}

.contact .contact__form7 {
	margin-top: 50px;
}

.flow .flow__layout {
	padding-bottom: 200px;
}

.flow .flow__items {
	margin-top: 40px;
}

.flow .flow__item .flow__card {
	padding: 15px 10px;
}

.flow .flow__item .flow__card .icon {
	height: 30px;
}

.flow .flow__item .flow__card .title {
	font-size: 18px;
	margin-top: 7px;
}

.flow .flow__item .flow__card .text {
	margin-top: 7px;
}

.flow .flow__item .flow__card .text br {
	display: block;
}

.flow .flow__item:nth-child(1) .icon img {
	height: 21px;
}

.flow .flow__item:nth-child(2) .icon img {
	height: 25px;
}

.flow .flow__item:nth-child(3) .icon img {
	height: 17px;
}

.flow .flow__item:nth-child(4) .icon img {
	height: 30px;
}

.flow .flow__item:nth-child(5) .icon img {
	height: 30px;
}

.footer .footer__layout {
	margin-top: 120px;
	padding-bottom: 28px;
	padding-top: 40px;
}

.footer .footer__main .company .head,
.footer .footer__main .company .mail {
	font-size: 12px;
}

.footer .footer__facebook {
	margin-top: 32px;
}

.footer .footer__facebook .info {
	font-size: 12px;
}

.footer .footer__message {
	margin-top: 40px;
}

.footer .footer__copyright {
	margin-top: 40px;
}

.footer--wave .wave {
	height: 60px;
}

.for-you .for-you__layout {
	margin-top: 132px;
}

.for-you .for-you__heading {
	margin-top: 22px;
}

.for-you .for-you__texts {
	margin-top: 24px;
}

.header {
	height: 70px;
}

.header__logo a {
	border-radius: 0 0 20px 0;
	height: 70px;
	width: 232px;
}

.header__logo a img {
	width: 186px;
}

.header__free-contact a {
	font-size: 12px;
	height: 46px;
	width: 46px;
}

.hamburger__icon {
	height: 46px;
	width: 46px;
}

.hamburger__bars {
	height: 16px;
	width: 24px;
}

.hamburger__bars .hamburger__bar {
	width: 24px;
}

.hamburger__nav {
	padding: 80px 20px;
	width: 100%;
}

.hamburger__nav .hamburger__menus .hamburger__menu a::before {
	height: 6px;
	top: 10px;
	width: 6px;
}

.hamburger__nav .hamburger__menus .hamburger__menu a p {
	font-size: 24px;
}

.js-hamburger .hamburger__icon .hamburger__bar:nth-child(1) {
	left: 10px;
}

.js-hamburger .hamburger__icon .hamburger__bar:nth-child(3) {
	left: 11px;
}

.inner {
	padding-left: 20px;
	padding-right: 20px;
}

.message .message__background {
	margin-top: -170px;
}

.message .message__layout {
	gap: 32px;
	padding-bottom: 150px;
	padding-top: 230px;
}

.message .message__texts {
	margin-top: 32px;
}

.mv .mv__layout {
	margin-left: 20px;
}

.mv .mv__main {
	border-radius: 20px 0 0 20px;
	padding-top: 64px;
}

.mv .mv__main .mv__heading {
	font-size: 30px;
	padding-left: 20px;
}

.mv .mv__main .mv__heading .back {
	padding: 9px 7px 11px 14px;
}

.mv .mv__main .mv__heading .back:not(:first-child) {
	margin-top: 10px;
}

.mv .mv__main .mv__texts {
	font-size: 15px;
	margin-top: 30px;
	padding-left: 32px;
}

.mv .mv__main .mv__text-slider .slide {
	margin-left: 2vw;
}

.mv .mv__main .mv__lets-more {
	bottom: 250px;
	left: calc(50% + 6vw);
}

.mv .mv__main .mv__lets-more img {
	width: 120px;
}

.mv .mv__pictures {
	margin-top: 10px;
	max-width: 400px;
	padding-left: 20px;
}

.mv .mv__arrangement img {
	min-width: 500px;
}

.qa .qa__layout {
	margin-top: 50px;
}

.qa .qa__main {
	margin-top: 32px;
}

.qa .qa__accordion .question,
.qa .qa__accordion .layout {
	gap: 5px;
	grid-template-columns: 40px 1fr 24px;
}

.qa .qa__accordion .question .alphabet,
.qa .qa__accordion .layout .alphabet {
	font-size: 30px;
}

.qa .qa__accordion .question .title,
.qa .qa__accordion .layout .title {
	font-size: 16px;
}

.qa .qa__accordion .question .icon,
.qa .qa__accordion .layout .icon {
	height: 24px;
	width: 24px;
}

.qa .qa__accordion .layout {
	grid-template-columns: 40px 1fr;
	padding: 0 20px 24px;
}

.qa .qa__accordion .layout .title {
	padding-top: 6px;
}

.reason {
	margin-top: 120px;
}

.reason {
	margin-top: 70px;
}

.reason .reason__pictures {
	min-width: 1800px;
	-webkit-transform: translate(-50%, -50%) rotate(15deg);
	transform: translate(-50%, -50%) rotate(15deg);
}

.reason .reason__circle {
	max-width: 750px;
	min-height: 750px;
	min-width: 750px;
}

.reason .reason__items {
	margin-top: 30px;
}

.reason .reason__item {
	gap: 20px;
	padding: 20px 0px;
}

.stage .stage__layout {
	margin-top: 80px;
	padding-top: 70px;
}

.stage .stage__steps {
	margin-top: 50px;
	padding: 50px 20px;
}

.stage .stage__steps .stage__step {
	padding-bottom: 70px;
}

.stage .stage__steps .stage__step .stage__question {
	padding-bottom: 32px;
}

.stage .stage__steps .stage__step .stage__question .stage__title {
	margin-left: 12px;
	width: calc(100% - 52px);
}

.stage .stage__steps .stage__step .stage__question .stage__close {
	bottom: 35px;
	max-height: 36px;
	padding: 6px 6px 6px 28px;
	width: 180px;
}

.stage .stage__steps .stage__step .stage__question .stage__close p {
	width: calc(100% - 26px);
}

.stage .stage__steps .stage__step .stage__question .stage__close .icon {
	height: 26px;
	min-width: 26px;
}

.stage .stage__steps .stage__step .stage__question .stage__close .icon img {
	width: 14px;
}

.stage .stage__steps .stage__step .js-answers-open .stage__close {
	width: 124px;
}

.stage .stage__steps .stage__step .stage__answers {
	padding-bottom: 36px;
}

.stage .stage__steps .stage__step .stage__answers .stage__answer {
	gap: 8px;
	padding: 12px 20px 10px;
}

.support .support__layout {
	margin-top: 100px;
}

.support .support__swiper {
	margin-top: 50px;
}

.support .support__swiper::before {
	border-radius: 30px 0 0 30px;
}

.support .support__swiper .swiper {
	padding: 0 20px;
}

.support .support__swiper .swiper-button-prev,
.support .support__swiper .swiper-button-next {
	height: 34px;
	width: 34px;
}

.support .support__swiper .swiper-button-prev img,
.support .support__swiper .swiper-button-next img {
	height: 34px;
	width: 34px;
}

.support .support__swiper .swiper-button-prev {
	left: 5px;
}

.support .support__swiper .swiper-button-next {
	right: 5px;
}

.support .support__card::before {
	font-size: 16px;
	height: 78px;
	padding-left: 12px;
	padding-top: 6px;
	width: 78px;
}

.support .support__card .support__title {
	font-size: 20px;
	margin-top: 16px;
}

.support .support__card .support__sub-title {
	margin-top: 8px;
}

.support .support__card .support__texts {
	margin-top: 8px;
}

.support .support__card .support__options {
	margin-top: 10px;
}

.supporter .background-1023 {
	top: -310px;
}

.supporter .supporter__humans--head {
	margin-top: 50px;
}

.supporter .supporter__humans--head .supporter__human:nth-child(1) img {
	max-width: 254px;
}

.supporter .supporter__humans--head .supporter__human:nth-child(2) img {
	max-width: 303px;
}

.supporter .supporter__humans--head .supporter__human:nth-child(3) img {
	max-width: 230px;
}

.supporter .supporter__humans--foot .supporter__human:nth-child(1) img {
	max-width: 239px;
}

.supporter .supporter__humans--foot .supporter__human:nth-child(2) img {
	max-width: 230px;
}

.text-slider {
	margin-top: 70px;
}

.text-slider .slide {
	margin-left: 30px;
}

.text-slider--archive {
	margin-top: 80px;
}

.text-slider--flow {
	margin-top: 80px;
}

.text-slider--flow .slide {
	margin-left: 2vw;
}

.voice .voice__layout {
	padding-bottom: 80px;
	padding-top: 80px;
}

.voice .voice__layout .voice__swiper .swiper {
	padding-top: 60px;
}

.voice .voice__layout .voice__swiper .voice__card {
	padding: 24px 15px;
}

.voice .voice__layout .voice__swiper .voice__card .picture img {
	height: 60px;
	width: 60px;
}

.works .works__layout {
	padding-bottom: 80px;
	padding-top: 80px;
}

.works .works__items {
	gap: 20px;
	margin-top: 24px;
}

.works .works__items .works__item {
	gap: 10px;
	padding: 20px 20px;
}

.works .works__items .works__item .works__title {
	width: calc(100% - 24px);
}

.works .works__items .works__item .works__title .title-a {
	font-size: 16px;
	line-height: 1.25;
}

.works .works__items .works__item .works__title .title-b {
	font-size: 20px;
	line-height: 1.25;
	margin-top: 8px;
}

.worries .worries__layout {
	margin-top: 32px;
}

.worries .worries__main {
	gap: 50px;
	margin-top: 32px;
}

.worries .worries__items .worries__item {
	gap: 12px;
}

.worries .worries__items .worries__item .worries__icon img {
	max-width: 27px;
}

.worries .worries__items .worries__item p {
	font-size: 18px;
}

.worries .worries__bottom {
	font-size: 21px;
}

.archive .archive__head {
	gap: 12px;
	border-radius: 10px 0 0 10px;
	height: 200px;
}

.archive .archive__head .ja {
	font-size: 14px;
}

.archive .archive__head .en {
	font-size: 40px;
}

.archive .archive__main {
	margin-top: 30px;
}

.archive .archive__category a,
.archive .archive__category span {
	border-radius: 25px;
	font-size: 16px;
	height: 48px;
	width: 150px;
}

.archive .archive__articles {
	margin-top: 50px;
}

.archive .archive__articles .archive__article a {
	gap: 16px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.archive .archive__articles .archive__article .archive__thumbnail {
	width: 100%;
}

.archive .archive__articles .archive__article .archive__info {
	width: 100%;
}

.archive .archive__articles .archive__article .archive__info .the-title {
	min-height: auto;
}

.archive .archive__articles .archive__article .archive__info .bottom {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.archive .archive__button {
	height: 50px;
	width: 280px;
}

.not-found .not-found__layout .num {
	font-size: 80px;
}

.not-found .not-found__layout .en {
	font-size: 40px;
}

.not-found .not-found__layout .text {
	font-size: 20px;
	margin-top: 16px;
}

.not-found .not-found__layout .button {
	height: 50px;
	width: 280px;
}

.single .single__head .ja {
	font-size: 14px;
}

.single .single__head .en {
	font-size: 40px;
}

.single .single__layout {
	margin-top: 30px;
}

.single .single__the-title {
	font-size: 20px;
}

.single .single__thumbnail {
	gap: 12px;
	margin-top: 24px;
}

.single .single__thumbnail .thumbnail-big img {
	gap: 12px;
}

.single .single__the-content {
	margin-top: 40px;
}

.single .single__the-content img {
	margin: 20px 0;
}

.single .single__the-content h2 {
	margin-bottom: 20px;
	margin-top: 32px;
}

.single .single__the-content h3 {
	margin-bottom: 16px;
	margin-top: 24px;
}

.single .single__pagination {
	margin-top: 60px;
}

}

@-webkit-keyframes animateTextBackground {

0% {
	background-position: -25% 0;
}

50% {
	background-position: 125% 0;
}

100% {
	background-position: -25% 0;
}

}

@keyframes animateTextBackground {

0% {
	background-position: -25% 0;
}

50% {
	background-position: 125% 0;
}

100% {
	background-position: -25% 0;
}

}

@-webkit-keyframes animateTextBackgroundReverse {

0% {
	background-position: 125% 0;
}

50% {
	background-position: -25% 0;
}

100% {
	background-position: 125% 0;
}

}

@keyframes animateTextBackgroundReverse {

0% {
	background-position: 125% 0;
}

50% {
	background-position: -25% 0;
}

100% {
	background-position: 125% 0;
}

}

@-webkit-keyframes circlemove {

0% {
	bottom: 160px;
}

100% {
	bottom: 0px;
}

}

@keyframes circlemove {

0% {
	bottom: 160px;
}

100% {
	bottom: 0px;
}

}

@-webkit-keyframes cirlemovehide {

0% {
	opacity: 0;
}

50% {
	opacity: 1;
}

80% {
	opacity: 0.9;
}

100% {
	opacity: 0;
}

}

@keyframes cirlemovehide {

0% {
	opacity: 0;
}

50% {
	opacity: 1;
}

80% {
	opacity: 0.9;
}

100% {
	opacity: 0;
}

}

@-webkit-keyframes meter_pc {

0% {
	opacity: 1;
	width: 0%;
}

75% {
	opacity: 1;
	width: 100%;
}

76% {
	opacity: 0;
}

90% {
	opacity: 0;
	width: 0%;
}

100% {
	opacity: 0;
	width: 0%;
}

}

@keyframes meter_pc {

0% {
	opacity: 1;
	width: 0%;
}

75% {
	opacity: 1;
	width: 100%;
}

76% {
	opacity: 0;
}

90% {
	opacity: 0;
	width: 0%;
}

100% {
	opacity: 0;
	width: 0%;
}

}

@-webkit-keyframes meter_sp {

0% {
	opacity: 1;
	width: 0%;
}

73% {
	opacity: 1;
	width: 100%;
}

74% {
	opacity: 0;
}

90% {
	opacity: 0;
	width: 0%;
}

100% {
	opacity: 0;
	width: 0%;
}

}

@keyframes meter_sp {

0% {
	opacity: 1;
	width: 0%;
}

73% {
	opacity: 1;
	width: 100%;
}

74% {
	opacity: 0;
}

90% {
	opacity: 0;
	width: 0%;
}

100% {
	opacity: 0;
	width: 0%;
}

}

@-webkit-keyframes fadeInOut {

0% {
	opacity: 0;
	-webkit-transform: translateX(50px);
	transform: translateX(50px);
}

37.5% {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

62.5% {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

100% {
	opacity: 0;
	-webkit-transform: translateX(-50px);
	transform: translateX(-50px);
}

}

@keyframes fadeInOut {

0% {
	opacity: 0;
	-webkit-transform: translateX(50px);
	transform: translateX(50px);
}

37.5% {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

62.5% {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

100% {
	opacity: 0;
	-webkit-transform: translateX(-50px);
	transform: translateX(-50px);
}

}

@-webkit-keyframes fadeInAnimation {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes fadeInAnimation {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@-webkit-keyframes fadeIn {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@keyframes fadeIn {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

@-webkit-keyframes fadeInDown {

from {
	opacity: 0; /* transform でアニメーションの方向を管理 */
	-webkit-transform: translate3d(0, -70px, 0);
	transform: translate3d(0, -70px, 0);
}

to {
	opacity: 1;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

}

@keyframes fadeInDown {

from {
	opacity: 0; /* transform でアニメーションの方向を管理 */
	-webkit-transform: translate3d(0, -70px, 0);
	transform: translate3d(0, -70px, 0);
}

to {
	opacity: 1;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInUp {

from {
	opacity: 0; /* transform でアニメーションの方向を管理 */
	-webkit-transform: translate3d(0, 70px, 0);
	transform: translate3d(0, 70px, 0);
}

to {
	opacity: 1;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

}

@keyframes fadeInUp {

from {
	opacity: 0; /* transform でアニメーションの方向を管理 */
	-webkit-transform: translate3d(0, 70px, 0);
	transform: translate3d(0, 70px, 0);
}

to {
	opacity: 1;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInLeft {

from {
	opacity: 0; /* transform でアニメーションの方向を管理 */
	-webkit-transform: translate3d(-70px, 0, 0);
	transform: translate3d(-70px, 0, 0);
}

to {
	opacity: 1;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

}

@keyframes fadeInLeft {

from {
	opacity: 0; /* transform でアニメーションの方向を管理 */
	-webkit-transform: translate3d(-70px, 0, 0);
	transform: translate3d(-70px, 0, 0);
}

to {
	opacity: 1;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

}

@-webkit-keyframes fadeInRight {

from {
	opacity: 0; /* transform でアニメーションの方向を管理 */
	-webkit-transform: translate3d(70px, 0, 0);
	transform: translate3d(70px, 0, 0);
}

to {
	opacity: 1;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

}

@keyframes fadeInRight {

from {
	opacity: 0; /* transform でアニメーションの方向を管理 */
	-webkit-transform: translate3d(70px, 0, 0);
	transform: translate3d(70px, 0, 0);
}

to {
	opacity: 1;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

}


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