@charset "utf-8";
:root {
  --header-height-pc:140px;
  --header-height-sp:78px;
  --site-max-width:1920px;
  --footer-menu-sp-height:60px;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height-sp);
}
@media (min-width: 641px) {
  html {
    scroll-padding-top: var(--header-height-pc);
  }
}

@media (min-width: 641px) {
  body{
      min-width:1200px;
  }
}

/* headline */
/*
.heading-001{
  display: inline-block;
  padding: 0 5px 15px;
  border-bottom: solid 3px #FD94A7;
}
@media (min-width: 641px) {
  .heading-001{
    padding: 0 5px 20px;
  }
}
*/

/* color */
.c-pink{
  color: #FD94A8;
}
.c-red{
  color: #FF1414;
}
.c-blue{
  color: #3FA4D3;
}

/* background */
.bg-White{
  background: #FFF;
}

/* font-size */
.fs-001 {
  font-size: 24px;
}
.fs-002 {
  font-size: 20px;
}
.fs-003 {
  font-size: 18px;
}
.fs-004 {
  font-size: 20px;
}
.fs-005 {
  font-size: 18px;
}
@media (min-width: 641px) {
  .fs-001 {
    font-size: 36px;
  }
  .fs-002 {
    font-size: 26px;
  }
  .fs-003 {
    font-size: 24px;
  }
  .fs-004 {
    font-size: 21px;
  }
}

/* button --------------------------------- */
.button-001 {
  background: #FD94A8;
  color: #fff;
  padding:6px 35px;
  text-decoration: none;
  border-radius: 24px;
  border: solid 1px #FD94A8;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  font-size: 17px;
}

.button-001:hover {
  border: solid 1px #FD94A8;
  background: #fff;
  color: #FD94A8;
}



/* header-sp-001 ------------------------ */
.header-sp-001 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  background-color: #F9F8F2;
  z-index: 7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.header-sp-001-space {
  height: 100px;
}
.header-sp-001-logo {
  padding-left: 10px;
}
.header-sp-001-logo img {
  height: 46px;
}
.header-sp-001-icon {
  width: 50px;
  height: 50px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.header-sp-001-button {
  position: relative;
  background: #FD94A8;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.header-sp-001-button span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: #fff;
  width: 45%;
}
.header-sp-001-button span:nth-of-type(1) {
  top: 24px;
}
.header-sp-001-button span:nth-of-type(2) {
  top: 32px;
}
.header-sp-001-button span:nth-of-type(3) {
  top: 40px;
}
.header-sp-001-button span:nth-of-type(1)::before {
  content: "Menu";
  position: absolute;
  top: -19px;
  left: -2px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}
.header-sp-001-button.active span:nth-of-type(1) {
  top: 24px;
  left: 14px;
  transform: translateY(8px) rotate(-45deg);
  width: 45%;
}
.header-sp-001-button.active span:nth-of-type(1)::before {
  content: none;
}
.header-sp-001-button.active span:nth-of-type(2) {
  opacity: 0;
}
.header-sp-001-button.active span:nth-of-type(3) {
  top: 40px;
  left: 14px;
  transform: translateY(-8px) rotate(45deg);
  width: 45%;
}
.header-sp-001-button.active span:nth-of-type(3)::after {
  content: "Close";
  position: absolute;
  top: -22px;
  left: -18px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
  transform: rotate(-45deg) translateY(0) !important;
  z-index: 1;
  white-space: nowrap;
}
.header-sp-001-right {
  height: 100%;
  display: flex;
  align-items: center;
}
.header-sp-001-right .h-tel {
  width: 34px;
  height: 34px;
}

/* header-sp-001 end */

/* header-nav-sp-001 */
.header-nav-sp-001 {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 78px;
  left: 0;
  z-index: 7;
  background-color: rgba(253, 148, 168, 0.9);

}
.header-nav-sp-001 > ul {
  height: calc(100% - 78px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header-nav-sp-001 ul {
  border-top: 1px solid #ccc;
  width: 100%;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.header-nav-sp-001 li {
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.header-nav-sp-001 a {
  display: block;
  padding: 10px;
  color: #FFF;
  text-decoration: none;
  width: 100%;
}
.header-nav-sp-001 ul.sub-menu > li:last-child {
  border-bottom: none;
}
.header-nav-sp-001 .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 7px;
  background-image: url(../img/arrow-down.png);
  background-size: 12px 7px;
  background-repeat: no-repeat;
  margin-left: 15px;
}
.header-nav-sp-001 .sub-menu {
  display: none;
  padding: 0;
  width: 100%;
}
.header-nav-sp-001 .sub-menu li {
  display: block;
  padding-left: 15px;
}
/* header-nav-sp-001 end */
/* header-pc-001 */
.header-pc-001 {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 7;
}
.header-pc-001-inner {
  width: 100%;
  min-width: 1200px;
  height:var(--header-height-pc);
  max-width: var(--site-max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}
.header-pc-001 {
  width: 100%;
}
.header-pc-001-logo {
  text-decoration: none;
  width: 150px;
  line-height: 1;
}
.header-pc-001-logo:hover {
  opacity: 0.7;
}
.nav-pc-001 ul {
  margin: 0;
  padding-left: 0;
}
.nav-pc-001 li {
  list-style: none;
  padding: 0 15px;
  text-align: center;
  line-height: 1.2;
  position: relative;
}
.nav-pc-001 a {
  text-decoration: none;
}
.nav-pc-001 li a {
  font-size: 16px;
  font-weight: 600;
  color: #482707;
  padding-bottom: 10px;
  transition: all 0.5s;
}
.nav-pc-001 .sub-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 224px;
  z-index: 3;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
}
.nav-pc-001 .sub-menu li::before {
  content: "";
}
.nav-pc-001 .sub-menu li {
  padding: 0;
}
.nav-pc-001 .sub-menu a {
  padding: 10px;
  display: block;
  background-color: #fff;
  border-bottom: 1px solid #ebebeb;
}
.nav-pc-001 .sub-menu li::after {
  display: none;
}
.nav-pc-001 .sub-menu a {
  display: inline-block;
  width: 100%;
}

/* footer */
.footer-menu-sp-space {
  height: var(--footer-menu-sp-height);
}

.footer-menu-sp {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
  font-size: 16px;
}

@media (min-width: 641px) {
  .footer-menu-sp-space,
  .footer-menu-sp {
      display: none;
  }
}
.footer-menu-sp-bg {
  background-color: #FD94A8;
  height: var(--footer-menu-sp-height);
  padding:10px 0;
  border-top:1px solid #FFF;
}
.footer-menu-sp-inner {
  list-style: none;
  margin: 0;
  padding-left: 0;
  gap:1px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.footer-menu-sp li {
  width: 33.333333%;
  height: 100%;
  background-color: #FD94A8;
}
.footer-menu-sp-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #FFF;
  text-align: center;
  text-decoration: none;
}
.footer-menu-sp-img {
  width: 13px;
  height: auto;
  margin-right: 10px;
}
.pagetop-btn {
  position: fixed;
  z-index: 4;
  background: #FD94A8;
  text-decoration: none;
  width: 60px;
  height: 60px;
  bottom: 80px;
  right: 15px;
  text-align: center;
  border-radius: 11%;
  border: solid 1px #FD94A8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagetop-btn:hover {
  opacity: 0.5;
}

/* layout */
.container-001 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}


/* single */
.headline-post {
	line-height: 1.2;
	margin: 0 0 30px;
	color: #482707;
	border-bottom: dotted 2px #FD94A7;
  padding-bottom:10px;
	font-size: 25px;
}
.headline-post .time {
	font-weight: 600;
	font-size: 14px;
    color: #3B4043;
}
.single-content{
	overflow: hidden;
}
@media (min-width: 641px) {
	.single-content{
		min-height:350px;
	}
}
.single-content .article-info{
	margin-bottom: 15px;
	display: flex;
	flex-wrap: wrap;
}

.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
	font-weight: 600;
	margin-bottom: 15px;
	color:#FD94A7;
}

.single-content .article-img{
	margin-bottom: 15px;
}

.single-content h2{
	background:#FD94A7;
	color: #FFF;
	border-radius: 12px;
	padding: 5px 20px 7px;
	font-size: 18px;
}
.single-content h3 {
	padding: 0 5px;
	margin-bottom: 0;
	font-size: 20px;
	border-bottom: solid 3px #FD94A7;
}
.single-content h4{
  margin-bottom: 5px;
}
.single-content h4,
.single-content h5 {
	font-size: 18px;
}
.single-content h6 {
	font-size: 16px;
}
.single-content blockquote {
	position: relative;
	margin: 5px 0 15px 0;
	padding: 40px 15px 8px 15px;
	box-sizing: border-box;
	font-style: italic;
	font-size: 18px;
	background:#fff1f5;
}

.single-content blockquote:before {
	display: inline-block;
	position: absolute;
	top: 0px;
	left: 3px;
	content: "";
	color: #FD94A7;
	font-size: 90px;
	line-height: 1;
}

.single-content blockquote p {
	padding: 0;
	margin: 10px 0;
	line-height: 1.7;
}

.single-content blockquote cite {
	display: block;
	text-align: right;
	color:#717171;
	font-size:1em;
}
.single-content table{
	border:solid 1px #717171;
	border-collapse: collapse;
}
.single-content table thead th{
	background:#fff1f5;
	padding: 5px;
	border: solid 1px #CCC;
}
.single-content table tbody th{
	background:#fff1f5;
}
.single-content table tbody th,
.single-content table tbody td {
	padding:15px;
	border: solid 1px #CCC;
}
.single-content ul,
.single-content ol{
	margin: 5px 0 15px 15px;
}
.single-content ul {
	list-style: disc;
}
.single-content ol {
	list-style: decimal;
}
.single-content img{
	margin-bottom: 15px;
}
.single-content .wp-caption .wp-caption-text{
	font-size: 14px;
	margin-top: -15px;
}
.single-content .aligncenter{
	margin-top: 15px;
}





/* -------- 以下、カスタマイズ -------- */
/* 
 * MEMO: common.cssベースのheading-001は直接コメントアウト
 * MEMO: // common.cssベースのbutton-001は直接コメントアウト
 */

:root {
	--header-height-pc: 105px;
	--font-main: 'Noto Serif JP', serif;
	--font-sub: 'Noto Sans JP', sans-serif;
	--color-bg: #030712;
	--color-font: #f9fafb;
	--color-font02: #e5e7eb;
	--color-font-r: #030712;
	--color-main: #030712;
	--color-main-light: #0d1224;
	--color-main-light02: #1a2035;
	--color-main-light03: #212936;
	--color-main-dark: #020a0f;
	--color-main-dark02: #010508;
	--color-sub: #f0c14b;
	--color-sub-light: #c0a96e;
	--color-accent: #ff8f00;
	--color-accent-light: #ffb74d;
	--color-accent-light02: #ffe0b2;
	--color-accent-light02-shadow: rgba(255, 224, 178, .6);
	--color-accent-dark: #e65100;
	--color-accent-dark02: #bf360c;
	--color-accent-dark03: #7a2c00;
	--color-cyaan: #00bcd4;
	--color-cyaan-dark: #00606e;
	--color-green: #1de9b6;
	--color-green-dark: #0a7a5f;
	--color-green-dark02: #013427;
	--color-red: #ef5350;
	--color-red-dark: #7e1c1a;
	--color-gray: #4b5563;
	--color-gray02: #9ca3af;
	--color-header-sp-border: #000;
	--grad-main: linear-gradient(rgba(3, 7, 18, 0), #030712 100%);
	--grad-main-dark02: linear-gradient(rgba(1, 5, 8, 0), #010508 100%);
	--grad-top-content-bg: linear-gradient(to left, rgba(3, 7, 18, 0), rgba(3, 7, 18, .6) 80%, rgba(3, 7, 18, .9) 100%);
	--header-height: 80px;
	--content-width-sm: 800px;
	--content-width: 1080px;
	--content-top-mv-width: 1400px;
	--content-top-strategy-width: 1740px;
	--content-margin: 40px;
	--sp-vw: 320;
}
@media (max-width: 640px) {
	:root {
		--content-margin: calc(100vmin * 15 / var(--sp-vw));
	}
}

body {
	color: var(--color-font);
	overflow-x: hidden;
	font-family: var(--font-main);
	font-weight: 500;
	background-color: var(--color-bg);
	font-size: 16px;
}
a {
	color: inherit;
}
b,
dt,
strong {
	font-weight: 700;
}
:where(h1,h2,h3,h4,h5,h6,dt) {
	letter-spacing: .07em;
	line-height: 1.4;
}
:where(dd,li,p) {
	letter-spacing: .05em;
	line-height: 1.8;
}
figcaption {
	letter-spacing: .05em;
	line-height: 1.4;
}
body main p,
body main :where(h1,h2,h3,h4,h5,h6),
body main figure,
body main dd,
body main li {
	margin: 0;
}

body main img,
body main figure {
	line-height: 0;
}
body main figure figcaption {
	line-height: 1.2;
}

body main dl,
body main ol,
body main ul {
	margin: 0;
	padding: 0;
}





/*------------------------------------
 * パーツ(共通CSS)
 ------------------------------------*/
/* 見出し */
.heading-001__group {
	display: flex;
	flex-direction: column;
}
.heading-001__group p {
	order: -1;
}
.heading-001 {
	margin: 0;
	font-size: 40px;
}
.tc .heading-001,
.heading-001.tc {
	text-align: center;
}
.heading-001 strong {
	color: var(--color-accent);
}
.heading-001 em {
	font-style: normal;
}
.heading-001 strong em {
	font-size: 140%;
	line-height: 1.2;
}
.heading-001 b {
	color: var(--color-sub-light);
}
.heading-001 + p {
	margin: 0;
	color: var(--color-accent);
	position: relative;
	padding-left: 2em;
	font-family: var(--font-sub);
	letter-spacing: .1em;
	font-size: 20px;
}
.heading-001 + p::before {
	content: '';
	position: absolute;
	left: 0;
	top: .9em;
	width: calc(2em - 5px);
	border-top: solid 1px;
}
.tc .heading-001 + p,
.heading-001.tc + p,
.heading-001 + p.tc {
	text-align: center;
	padding-left: 0;
}
.tc .heading-001 + p::before,
.heading-001.tc + p::before,
.heading-001 + p.tc::before {
	display: none;
}
@media (max-width: 640px) {
	.sp-tl .heading-001,
	.heading-001.sp-tl {
		text-align: left !important;
	}
	.sp-tl .heading-001 + p,
	.heading-001.sp-tl + p,
	.heading-001 + p.sp-tl {
		margin: 0;
		padding-left: 2em !important;
		text-align: left !important;
	}
	.sp-tl .heading-001 + p::before,
	.heading-001.sp-tl + p::before,
	.heading-001 + p.sp-tl::before {
		display: block !important;
		content: '';
		position: absolute;
		left: 0;
		top: .9em;
		width: calc(2em - 5px);
		border-top: solid 1px;
	}
	.heading-001__group p {
		font-size: calc(100vmin * 18 / var(--sp-vw));
	}
	.heading-001 {
		font-size: calc(100vmin * 26 / var(--sp-vw));
	}
}


/*------------------------------------
 * TOP
 ------------------------------------*/

/* メインビジュアル */
.top-mv {
	position: relative;
	z-index: 1;
	padding-bottom: calc(100px + 40px);
	padding-top: calc(var(--header-height) + 100px);
}
.top-mv::before {
	content: '';
	position: absolute;
	z-index: -3;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('../../../uploads/top-mv-bg01.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 1;
}
.top-mv::after {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	background-image: var(--grad-main);
}
.top-mv__inner {
	max-width: calc(var(--content-top-mv-width) + var(--content-margin) * 4);
	width: 100%;
	padding-right: calc(var(--content-margin) * 2);
	padding-left: calc(var(--content-margin) * 2);
	margin-inline: auto;
}
.top-mv__inner::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 70%;
	background-image: var(--grad-top-content-bg);
	z-index: -1;
}
.top-mv__inner::after {
	content: '';
	position: absolute;
	z-index: -2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-main);
	mix-blend-mode: multiply;
	opacity: .3;
}
.top-mv__header {
	position: relative;
	z-index: 1;
}
.top-mv__title-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.top-mv__title {
	font-size: 60px;
	line-height: 1.3;
	letter-spacing: .07em;
	color: var(--color-font02);
}
.top-mv__title strong {
	color: var(--color-sub);
}
.top-mv__title-group p {
	order: -1;
	font-size: 24px;
	color: var(--color-sub);
	padding-left: 2em;
}
.top-mv__title-group p::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1em;
	width: calc(2em - 5px);
	border-top: solid 1px;
}
.top-mv__main {
	position: relative;
	z-index: 1;
}
.top-mv__desc {
	margin-top: 30px;
	text-shadow: 0 0 20px var(--color-accent-light02-shadow);
}
.top-mv__desc p {
	font-size: 18px;
	font-weight: 500;
	color: var(--color-font02);
}
@media (max-width: 640px) {
	.top-mv {
		padding-top: calc(var(--header-height) + 40px);
		padding-bottom: calc(100px + 20px);
	}
	.top-mv__inner {
		max-width: calc(var(--content-top-mv-width) + var(--content-margin) * 2);
		padding-right: var(--content-margin);
		padding-left: var(--content-margin);
	}
	.top-mv__inner::before {
		width: 100%;
	}
	.top-mv__inner::after {
		opacity: .5;
	}
	.top-mv__title-group p {
		font-size: calc(100vmin * 16 / var(--sp-vw));
	}
	.top-mv__title {
		font-size: calc(100vmin * 28 / var(--sp-vw));
	}
	.top-mv__desc p {
		font-size: calc(100vmin * 16 / var(--sp-vw));
	}
}



/* Trusted Partners */
.top-partners {
	margin-top: 80px;
	padding-bottom: 80px;
	border-bottom: solid 1px var(--color-gray);
}
.top-partners__header {
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
	position: relative;
}
.top-partners__title-group .heading-001 {
	font-size: 32px;
}
.top-partners__main {
	margin-top: 60px;
}
.top-partners__slider {
	pointer-events: none;
}
.top-partners__slider .swiper-wrapper {
	transition-timing-function: linear;
}
.top-partners__slider .swiper-slide {
	width: 330px;
	box-sizing: border-box;
	padding: 0 15px;
}
.top-partners__slide-content img {
	border-radius: 20px;
	overflow: hidden;
	user-select: none;
}
.top-partners__slider .swiper-pagination,
.top-partners__slider .swiper-button-prev,
.top-partners__slider .swiper-button-next,
.top-partners__slider .swiper-scrollbar {
	display: none !important;
}
@media (max-width: 640px) {
	.top-partners {
		margin-top: 60px;
	padding-bottom: 60px;
	}
	.top-partners__title-group .heading-001 {
	font-size: calc(100vmin * 28 / var(--sp-vw));
	}
	.top-partners__main {
		margin-top: 40px;
	}
	.top-partners__slider .swiper-slide {
		width: 140px;
		padding: 0 7.5px;
	}
	.top-partners__slide-content img {
		border-radius: 10px;
	}
}



/* Concerns of Authors and Editors */
.top-concerns {
	padding-top: 140px;
	position: relative;
	z-index: 1;
}
/*
.top-concerns::before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 40px;
	background-image: var(--grad-main-dark02);
	mix-blend-mode: multiply;
	scale: 1 -1;
	opacity: .8;
}
*/
.top-concerns__header-image {
	text-align: center;
	max-width: var(--content-width);
	width: 100%;
	margin-inline: auto;
	position: relative;
	z-index: 2;
}
.top-concerns__header {
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
	margin-top: 80px;
}
.top-concerns__title-group .heading-001 {
	font-size: 32px;
}
.top-concerns__main {
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
}
.top-concerns__list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
	margin-top: 80px;
}
.top-concerns__list > li {
	display: flex;
	padding: 50px 20px 30px;
	position: relative;
	z-index: 1;
	width: 100%;
	box-sizing: border-box;
}
.top-concerns__list > li::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border: solid 1px var(--color-gray);
	z-index: -1;
	opacity: .6;
}
.top-concerns__list > li::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	box-shadow: 0 0 5px var(--color-main-light02);
	z-index: -2;
}
.top-concerns__list > li dl {
	display: flex;
	flex-direction: column;
}
.top-concerns__list > li dt {
	text-align: center;
	margin-top: 50px;
	font-size: 20px;
	color: var(--color-sub);
	min-height: 2.7em;
	font-family: var(--font-sub);
	font-weight: 500;
}
.top-concerns__list > li dl dd {
	font-size: 16px;
}
.top-concerns__list > li dl .type-image {
	order: -1;
	width: 120px;
	margin-inline: auto;
	line-height: 0;
	position: relative;
	z-index: 1;
}
.top-concerns__list > li dl .type-image::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 20px var(--color-accent-light02);
	border-radius: 100vmin;
	opacity: .6;
}
.top-concerns__list > li dl .type-image img {
	border-radius: 100vmin;
	overflow: hidden;
	user-select: none;
}
.top-concerns__list > li dl .type-desc {
	font-weight: 200;
	font-family: var(--font-sub);
}
.top-concerns__list > li dl .type-desc p {
	text-indent: 1em;
}
@media (max-width: 640px) {
	.top-concerns {
		padding-top: 80px;
	}
	.top-concerns__header {
		margin-top: 40px;
	}
	.top-concerns__title-group .heading-001 {
		font-size: calc(100vmin * 28 / var(--sp-vw));
	}
	.top-concerns__main {
		margin-top: 40px;
	}
	.top-concerns__list {
		grid-template-columns: 1fr;
	}
	.top-concerns__list > li {
		padding: 40px 20px 30px;
	}
	.top-concerns__list > li dt {
		margin-top: 40px;
	}
}



/* Our Solution */
.top-solution {
	margin-top: 180px;
}
.top-solution__header {
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
}
.top-solution__main-image-group {
	display: flex;
	position: relative;
	margin-top: 60px;
	z-index: 1;
}
.top-solution__main-image {
	flex: 1;
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 1;
	display: flex;
}
.top-solution__main-image::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-main);
	mix-blend-mode: multiply;
	opacity: .6;
	z-index: -1;
}
.top-solution__main-image-group .top-solution__main-image:last-of-type {
	margin-left: -241px;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 240px 100%);
}
.top-solution__main-image img {
	max-width: none;
	width: 100%;
	position: absolute;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	object-position: center center;
	z-index: -1;
	user-select: none;
}
.top-solution__main-image figcaption {
	position: absolute;
	z-index: 1;
	top: 50%;
	max-width: calc(var(--content-width) / 2 + 241px / 2);
	width: 100%;
	font-size: 34px;
	text-shadow: 0 0 25px var(--color-accent-light02);
	color: var(--color-font02);
}
.top-solution__main-image-group .top-solution__main-image:first-of-type figcaption {
	text-align: left;
	right: 0;
	transform: translateY(-50%);
}
.top-solution__main-image-group .top-solution__main-image:last-of-type figcaption {
	text-align: right;
	left: 0;
	transform: translateY(-50%);
}
.top-solution__main-wrap {
	position: relative;
	z-index: 1;
}
.top-solution__main-wrap::before {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: 100%;
	height: 40px;
	background-image: var(--grad-main-dark02);
	mix-blend-mode: multiply;
	scale: 1 -1;
	opacity: .8;
}
.top-solution__main {
	padding-top: 100px;
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
	position: relative;
	z-index: 2;
}
.top-solution__desc {
	max-width: max-content;
	margin-inline: auto;
}
.top-solution__desc p {
	font-size: 22px;
	line-height: 2;
	font-weight: 400;
}
.top-solution__desc p + p {
	margin-top: 40px;
}
.top-solution__desc p strong {
	color: var(--color-accent);
	font-weight: 700;
}
.top-solution__desc p b {
	border-bottom: solid 3px var(--color-sub);
	font-weight: 400;
	padding-left: .2em;
	padding-right: .2em;
}
@media (max-width: 640px) {
	.top-solution {
		margin-top: 120px;
	}
	.top-solution__main-image-group {
		flex-direction: column;
		margin-top: 40px;
		gap: 20px;
	}
	.top-solution__main-image {
	aspect-ratio: 2.5 / 1;
	}
	.top-solution__main-image-group .top-solution__main-image:last-of-type {
		margin-left: 0;
		clip-path: unset;
	}
	.top-solution__main-image figcaption {
		padding-left: var(--content-margin);
		padding-right: var(--content-margin);
		font-size: calc(100vmin * 24 / var(--sp-vw));
		line-height: 1.4;
	}
	.top-solution__main {
		padding-top: 40px;
	}
	.top-solution__desc p {
		font-size: 18px;
	}
	.top-solution__desc p + p {
		margin-top: 20px;
	}
}



/* Service */
.top-service {
	margin-top: 140px;
	background-color: var(--color-main-light);
	padding-top: 110px;
	padding-bottom: 140px;
}
.top-service__inner {
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
	position: relative;
}
.top-service__main {
	margin-top: calc(60px + 1em);
}
.top-service__list {
	list-style: none;
	counter-reset: cnt-top-service__list;
	border-top: solid 3px var(--color-gray);
}
.top-service__list > li {
	position: relative;
	padding-top: 60px;
	padding-bottom: 120px;
	padding-left: 30px;
	padding-right: 30px;
}
.top-service__list > li + li {
	border-top: solid 3px var(--color-gray);
}
.top-service__list > li:last-of-type {
	padding-bottom: 0;
}
.top-service__list > li::before {
	content: counter(cnt-top-service__list, decimal-leading-zero);
	counter-increment: cnt-top-service__list;
	position: absolute;
	right: 40px;
	transform: translateY(-100%);
	top: .8em;
	color: var(--color-sub-light);
	font-size: 60px;
	font-weight: 200;
	background-color: var(--color-main-light);
	padding-right: 15px;
	padding-left: 15px;
}
.top-service__list > li::after {
	content: '';
	position: absolute;
	left: 0;
	top: -3px;
	width: 100px;
	border-top: solid 2px var(--color-accent);
}
.top-service__list > li dl dt {
	font-size: 30px;
	font-family: var(--font-sub);
	font-weight: 500;
	/*
	color: var(--color-sub);
	*/
}
.top-service__list > li dl dd {
	margin-top: 30px;
	font-family: var(--font-sub);
	color: var(--color-font02);
}
.top-service__list > li dl dd p {
	font-weight: 400;
	letter-spacing: 0.1em;
	font-size: 18px;
}
@media (max-width: 640px) {
	.top-service {
		margin-top: 60px;
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.top-service__main {
		margin-top: calc(40px + 1em);
	}
	.top-service__list > li {
		padding-right: 0;
		padding-left: 0;
		padding-top: 50px;
		padding-bottom: 90px;
	}
	.top-service__list > li::before {
		right: var(--content-margin);
		padding-right: 10px;
	padding-left: 10px;
	}
	.top-service__list > li::after {
		width: 80px;
	}
	.top-service__list > li dl dt {
		font-size: 22px;
	}
	.top-service__list > li dl dd {
		margin-top: 20px;
	}
	.top-service__list > li dl dd p {
		font-size: 16px;
	}
}



/* Proven Results */
.top-proven {
	position: relative;
	padding-top: 110px;
	padding-bottom: 110px;
}
.top-proven::before {
	content: '';
	position: absolute;
	z-index: -3;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('../../../uploads/top-proven-bg01.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 1;
}
.top-proven::after {
	content: '';
	position: absolute;
	z-index: -2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-main);
	mix-blend-mode: multiply;
	opacity: .8;
}
.top-proven__inner {
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
	position: relative;
}
.top-proven__main {
	margin-top: calc(60px + 1em)
}
.top-proven__list {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 15px;
}
.top-proven__list > li {
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	padding: 45px 0 30px;
	z-index: 1;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	border-top: solid 8px var(--color-accent-dark);
}
.top-proven__list > li::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border: solid 1px var(--color-gray);
	z-index: -1;
	opacity: .6;
}
.top-proven__list > li::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	box-shadow: 0 0 10px var(--color-gray);
	z-index: -2;
	opacity: .4;
}
.top-proven__list > li dl {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.top-proven__list > li dl dt {
	font-size: 52px;
	letter-spacing: 0;
	white-space: nowrap;
	color: var(--color-accent);
	margin-bottom: 10px;
}
.top-proven__list > li dl dt strong {
	font-size: 140%;
}
.top-proven__list > li dl .type-tag {
	position: absolute;
	top: calc(1px + 1em);
	transform: translateY(-100%);
	background-color: var(--color-accent-dark);
	padding: 6px 20px;
	font-weight: 700;
	font-family: var(--font-sub);
	border-radius: 2px;
	font-size: 18px;
	z-index: 1;
	letter-spacing: 0;
}
.top-proven__list > li dl .type-desc {
	padding-left: 20px;
	padding-right: 20px;
	/*
	text-shadow: 0 0 20px var(--color-accent-light02-shadow);
	*/
	text-align: center;
	color: var(--color-font02);
	font-family: var(--font-sub);
}
.top-proven__list > li dl .type-desc p {
	font-weight: 400;
	letter-spacing: .09em;
}
.top-proven__slider {
	margin-top: 80px;
	max-width: 900px;
	margin-inline: auto;
}
.top-proven__slider .swiper-scrollbar {
	display: none !important;
}
.top-proven__slider .swiper {
	display: flex !important;
}
.top-proven__slider .swiper-wrapper {
	padding-bottom: 60px;
}
.top-proven__slider .swiper-slide {
	display: flex;
	height: auto !important;
}
.top-proven__slider .swiper-pagination-wrap {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	gap: 10px;
}
.top-proven__slider .swiper-button-next,
.top-proven__slider .swiper-button-prev {
	position: static;
	margin: 0 !important;
	height: 24px;
}
.top-proven__slider .swiper-button-next,
.top-proven__slider .swiper-button-prev,
.top-proven__slider path,
.top-proven__slider svg {
	fill: var(--color-accent-light) !important;
}
.top-proven__slider .swiper-pagination {
	position: static;
	margin: 0 !important;
	line-height: 0;
	gap: 15px;
	display: flex;
	justify-content: center;
}
.top-proven__slider .swiper-pagination-bullet {
	margin: 0 !important;
	height: 8px;
	width: 8px;
	background-color: var(--color-accent-dark03);
	opacity: .6;
}
.swiper-pagination-bullet-active {
	background-color: var(--color-accent-light) !important;
	opacity: 1 !important;
}
.top-proven__slide-content {
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	padding: 50px 30px 50px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	height: 100% !important;
	position: relative;
	z-index: 1;
	margin-right: 20px;
	margin-left: 20px;
}
.top-proven__slide-content::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border: solid 1px var(--color-gray);
	z-index: -1;
	opacity: .6;
}
.top-proven__slide-content::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	box-shadow: 0 0 10px var(--color-gray);
	z-index: -2;
	opacity: .4;
}
.top-proven__slide-content dl {
	display: grid;
	grid-template-areas: "cat cat"
		"image title"
		"desc desc";
	grid-template-columns: 100px 1fr;
	grid-auto-rows: auto auto 1fr;
	gap: 0 30px;
}
.top-proven__slide-content dl dt {
	grid-area: title;
	align-self: center;
	font-size: 20px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-family: var(--font-sub);
	font-weight: 500;
}
.top-proven__slide-content dl dt .corp {
	color: var(--color-gray02);
	font-size: 16px;
	font-weight: 500;
}
.top-proven__slide-content dl .type-image {
	grid-area: image;
	line-height: 0;
	position: relative;
	z-index: 1;
}
.top-proven__slide-content dl .type-image::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 20px var(--color-accent-light02);
	border-radius: 100vmin;
	opacity: .6;
}
.top-proven__slide-content dl .type-image img {
	border-radius: 100vmin;
	overflow: hidden;
	user-select: none;
}
.top-proven__slide-content dl .type-cat {
	grid-area: cat;
	display: inline-flex;
	justify-content: flex-end;
	position: absolute;
	right: 0;
	top: 20px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
}
.top-proven__slide-content dl .type-cat span {
	padding: 3px 20px 4px 50px;
	font-family: var(--font-sub);
	position: relative;
	white-space: nowrap;
	z-index: 1;
}
.top-proven__slide-content dl .type-cat span::before {
	content: '';
	position: absolute;
	right: -20px;
	top: 0;
	height: 100%;
	width: 100%;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%);
	background-color: var(--color-accent-dark);
	z-index: -1;
}
.top-proven__slide-content dl .type-cat[data-color="blue"] span::before {
	background-color: var(--color-cyaan);
}
.top-proven__slide-content dl .type-cat[data-color="green"] span::before {
	background-color: var(--color-green-dark);
}
.top-proven__slide-content dl .type-cat[data-color="red"] span::before {
	background-color: var(--color-red);
}
.top-proven__slide-content dl .type-cat span::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 15px;
	right: -20px;
	bottom: 1px;
	transform: translateY(100%);
	clip-path: polygon(0 0, 100% 0, 0 100%);
	background-color: var(--color-accent-dark03);
	z-index: -2;
}
.top-proven__slide-content dl .type-cat[data-color="blue"] span::after {
	background-color: var(--color-cyaan-dark);
}
.top-proven__slide-content dl .type-cat[data-color="green"] span::after {
	background-color: var(--color-green-dark02);
}
.top-proven__slide-content dl .type-cat[data-color="red"] span::after {
	background-color: var(--color-red-dark);
}
.top-proven__slide-content dl .type-desc {
	grid-area: desc;
	margin-top: 30px;
	font-family: var(--font-sub);
}
.top-proven__slide-content dl .type-desc p {
	text-indent: 1em;
	color: var(--color-font02);
	line-height: 2;
	font-weight: 400;
}
@media (max-width: 640px) {
	.top-proven {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.top-proven__main {
		margin-top: calc(40px + 30px);
	}
	.top-proven__list {
		grid-template-columns: repeat(1, 1fr);
		gap: calc(40px + 30px);
	}
	.top-proven__list > li dl dt {
		font-size: calc(100vmin * 40 / var(--sp-vw));
	}
	.top-proven__list > li dl .type-tag {
		text-align: center;
		min-height: 70px;
		min-width: 200px;
		display: grid;
		place-items: center;
		line-height: 1.4;
		top: calc(1px + 30px);
	}
	.top-proven__slider {
		margin-left: calc(var(--content-margin) * -1);
		margin-right: calc(var(--content-margin) * -1);
		margin-top: 40px;
		border-top: solid 1px var(--color-accent);
		padding-top: 40px;
	}
	.top-proven__slide-content {
		padding: 60px 20px 40px;
	}
	.top-proven__slide-content dl {
		grid-template-columns: 80px 1fr;
		gap: 0 20px;
	}
	.top-proven__slide-content dl dt {
		font-size: 18px;
	}
	.top-proven__slide-content dl dt .corp {
		font-size: 14px;
	}
	.top-proven__slide-content dl .type-cat {
		top: 15px;
	}
	.top-proven__slide-content dl .type-cat span {
		padding: 3px 10px 4px 50px;
	}
	.top-proven__slide-content dl .type-cat span::before {
		right: -10px;
	}
	.top-proven__slide-content dl .type-cat span::after {
		width: 10px;
		height: 8px;
		right: -10px;
	}
	.top-proven__slide-content dl .type-desc p {
		font-size: 14px;
	}
	.top-proven__slider .swiper-pagination-wrap {
		gap: 7px;
	}
	.top-proven__slider .swiper-pagination {
		gap: 10px;
	}
}



/* 3 reasons to choose us */
.top-reasons {
	margin-top: 140px;
}
.top-reasons {
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
	position: relative;
}
.top-reasons__main {
	margin-top: 80px;
}
.top-reasons__flow {
	list-style: none;
	counter-reset: cnt-top-reasons__flow;
}
.top-reasons__flow > li {
}
.top-reasons__flow > li + li {
	margin-top: 100px;
}
.top-reasons__flow > li dl {
	display: grid;
	grid-template-areas: "image title"
		"image desc";
	grid-template-columns: 400px 1fr;
	grid-template-rows: auto 1fr;
	gap: 30px 60px;
	font-family: var(--font-sub);
}
.top-reasons__flow > li:nth-of-type(even) dl {
	grid-template-areas: "title image"
		"desc image";
	grid-template-columns: 1fr 400px;
}
.top-reasons__flow > li dl dt {
	grid-area: title;
	font-size: 26px;
	position: relative;
	padding-top: 35px;
	padding-bottom: 10px;
	border-bottom: solid 4px var(--color-gray);
}
.top-reasons__flow > li dl dt::before {
	content: 'Reason ' counter(cnt-top-reasons__flow);
	counter-increment: cnt-top-reasons__flow;
	position: absolute;
	left: 0;
	top: 0;
	color: var(--color-accent);
	font-weight: 400;
	padding-left: 2em;
	letter-spacing: .1em;
	font-size: 20px;
}
.top-reasons__flow > li dl dt::after {
	content: '';
	position: absolute;
	left: 0;
	top: .7em;
	width: calc(2em - 5px);
	font-size: 20px;
	border-top: solid 1px var(--color-accent);
}
.top-reasons__flow > li dl dd {
	font-size: 18px;
}
.top-reasons__flow > li dl .type-image {
	grid-area: image;
	position: relative;
	line-height: 0;
	z-index: 1;
}
.top-reasons__flow > li dl .type-image::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 10px var(--color-gray02);
	opacity: .8;
}
.top-reasons__flow > li dl .type-image img {
	user-select: none;
}
.top-reasons__flow > li dl .type-desc {
	grid-area: desc;
}
.top-reasons__flow > li dl .type-desc p {
	line-height: 2.2;
	font-weight: 400;
	letter-spacing: .09em;
}
.top-reasons__flow > li dl .type-desc p strong {
	font-weight: 500;
	color: var(--color-sub);
}
@media (max-width: 640px) {
	.top-reasons {
		margin-top: 60px;
	}
	.top-reasons__main {
		margin-top: 40px;
	}
	.top-reasons__flow > li dl {
		grid-template-areas: "title"
		"image"
		"desc" !important;
		grid-template-columns: 1fr !important;
		grid-template-rows: auto auto 1fr !important;
		gap: 20px;
	}
	.top-reasons__flow > li dl dt {
		font-size: 22px;
		padding-top: 30px;
	}
	.top-reasons__flow > li dl dd {
		font-size: 16px;
	}
	.top-reasons__flow > li + li {
		margin-top: 60px;
	}
}



/* Ads Strategy */
.top-strategy {
	position: relative;
	margin-top: 140px;
	padding-top: 110px;
	padding-bottom: 140px;
	background-color: var(--color-font02);
	color: var(--color-font-r);
}
.top-strategy__inner {
}
.top-strategy__header {
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
	position: relative;
}
.top-strategy__title-group .heading-001 {
	font-size: 35px;
	letter-spacing: 0;
}
.top-strategy__title-group .heading-001 strong {
	color: var(--color-accent-dark02);
	font-size: 40px;
}
.top-strategy__title-group .heading-001 b {
	border-bottom: solid 5px var(--color-sub);
	color: inherit;
	padding-left: .1em;
	padding-right: .1em;
	font-size: 42px;
	display: inline-block;
	margin-bottom: 10px;
}
.top-strategy__title-group p {
	color: var(--color-accent-dark02);
	margin-bottom: 5px;
}
.top-strategy__main {
	margin-top: 80px;
	max-width: calc(var(--content-top-strategy-width) + var(--content-margin) * 4);
	width: 100%;
	padding-right: calc(var(--content-margin) * 2);
	padding-left: calc(var(--content-margin) * 2);
	margin-inline: auto;
	position: relative;
}
.top-strategy__list {
	list-style: none;
	counter-reset: cnt-top-reasons__flow;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 80px 40px;
	margin-inline: auto;
}
.top-strategy__list > li {
	position: relative;
	display: flex;
	z-index: 1;
	padding-bottom: 40px;
}
.top-strategy__list > li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--color-font);
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 20px;
}
.top-strategy__list > li::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	border-radius: 20px;
	box-shadow: 0 0 10px var(--color-gray02);
	opacity: .8;
}
.top-strategy__list > li dl {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.top-strategy__list > li dl dt {
	height: 4.2em;
	text-align: center;
	font-size: 24px;
	font-family: var(--font-sub);
	margin-top: 40px;
}
.top-strategy__list > li dl dd {
	font-family: var(--font-sub);
}
.top-strategy__list > li dl .type-image {
	order: -1;
	line-height: 0;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}
.top-strategy__list > li dl .type-image img {
	max-width: none;
	width: 100%;
	user-select: none;
}
.top-strategy__list > li dl .type-desc {
	padding-left: 30px;
	padding-right: 30px;
}
@media (max-width: 1440px) {
	.top-strategy__main {
		max-width: calc(var(--content-width) + var(--content-margin) * 2);
		padding-right: var(--content-margin);
		padding-left: var(--content-margin);
	}
	.top-strategy__list {
		grid-template-columns: repeat(2,1fr);
		max-width: 880px;
	}
}
@media (max-width: 640px) {
	.top-strategy {
		margin-top: 60px;
	padding-top: 60px;
		padding-bottom: 60px;
	}
	.top-strategy__title-group p {
		padding-left: 0;
		text-align: center;
	}
	.top-strategy__title-group p::before {
		display: none;
	}
	.top-strategy__title-group .heading-001 .tag {
		font-size: calc(100vmin * 18 / var(--sp-vw));
		background-color: var(--color-main-light03);
		display: inline-block;
		color: var(--color-font);
		padding: 10px 15px;
		border-radius: 10px;
		font-family: var(--font-sub);
		font-weight: 500;
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
		line-height: 1.6;
	}
	.top-strategy__title-group .heading-001 {
		font-size: calc(100vmin * 30 / var(--sp-vw));
		line-height: 1.6;
	}
	.top-strategy__title-group .heading-001 strong {
		font-size: calc(100vmin * 28 / var(--sp-vw));
	}
	.top-strategy__title-group .heading-001 strong em {
		line-height: 1;
	}
	.top-strategy__title-group .heading-001 b {
		font-size: calc(100vmin * 30 / var(--sp-vw));
		display: inline;
		padding-bottom: 0;
	}
	.top-strategy__main {
		margin-top: 40px;
	}
	.top-strategy__list {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.top-strategy__list > li dl .type-desc {
		padding-left: 20px;
	padding-right: 20px;
	}
}



/* Get Started */
.top-start {
	background-color: var(--color-main-light);
}
.top-start__inner {
	padding-top: 110px;
	padding-bottom: 140px;
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
	position: relative;
}
.top-start__main {
	margin-top: 80px;
}
.top-start__flow {
	list-style: none;
	counter-reset: cnt-top-reasons__flow;
	display: grid;
	grid-template-columns: repeat(4,1fr);
}
.top-start__flow > li {
	position: relative;
	text-align: center;
	padding-top: 70px;
	padding-bottom: 20px;
	z-index: 1;
}
.top-start__flow > li::before {
	content: 'Step ' counter(cnt-top-reasons__flow);
	position: absolute;
	counter-increment: cnt-top-reasons__flow;
	color: var(--color-sub);
	white-space: normal;
	text-align: center;
	left: -10px;
	top: 20px;
	width: calc(100% + 20px);
	font-size: 18px;
	font-weight: 700;
	font-family: var(--font-sub);
}
.top-start__flow > li:nth-of-type(odd)::before {
	color: var(--color-main-light);
}
.top-start__flow > li i {
	font-style: normal;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.top-start__flow > li i::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 50%, calc(100% - 40px) 100%, 0 100%, 40px 50%);
}
.top-start__flow > li:nth-of-type(odd) i::before {
	background-color: var(--color-sub);
}
.top-start__flow > li:last-of-type i::before {
	width: 100%;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 40px 50%);
}
.top-start__flow > li dl {
	display: flex;
	flex-direction: column;
}
.top-start__flow > li dl dt {
	height: 2em;
	/*
	margin-top: 30px;
	*/
	margin-top: 0;
	font-family: var(--font-sub);
	font-weight: 700;
	font-size: 24px;
}
.top-start__flow > li:nth-of-type(odd) dl dt {
	color: var(--color-main-light);
}
.top-start__flow > li dl dd {
	font-family: var(--font-sub);
	font-weight: 500;
	font-size: 15px;
}
.top-start__flow > li:nth-of-type(odd) dl dd {
	color: var(--color-main-light);
}
.top-start__flow > li dl .type-image {
	user-select: none;
	order: -1;
	display: none !important;
}
.top-start__flow > li dl .type-desc {
	color: var(--color-gray02);
}
.top-start__flow > li:nth-of-type(odd) dl .type-desc {
	color: var(--color-main-light03);
	opacity: .9;
}
.top-start__pickup {
	margin-bottom: 80px;
	padding: 40px 60px 40px;
	z-index: 1;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	background-color: var(--color-font);
	color: var(--color-font-r);
	max-width: var(--content-width-sm);
	margin-inline: auto;
	position: relative;
	overflow: hidden;
	border-top: solid 10px var(--color-green);
}
.top-start__pickup-title {
	font-size: 30px;
	font-family: var(--font-sub);
}
.top-start__pickup-tag {
	text-align: center;
	padding: 5px 20px;
	font-family: var(--font-sub);
	position: relative;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
	background-color: var(--color-sub);
	width: max-content;
}
.top-start__pickup-desc {
	margin-top: 20px;
}
.top-start__pickup-desc p {
	font-size: 16px;
	font-family: var(--font-sub);
	font-weight: 500;
	position: relative;
}
.top-start__pickup-desc p strong {
	color: var(--color-accent-dark02);
}
@media (max-width: 640px) {
	.top-start__inner {
		padding-top: 60px;
		padding-bottom: 20px;
	}
	.top-start__flow {
		grid-template-columns: 1fr;
	}
	.top-start__main {
		margin-top: 40px;
	}
	.top-start__pickup {
		padding: 30px 20px 40px;
		margin-bottom: 60px;
	}
	.top-start__pickup-tag {
		font-size: 20px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.top-start__pickup-title {
		font-size: 24px;
	}
	.top-start__flow > li {
		padding-top: 110px;
		padding-bottom: 80px;
	}
	.top-start__flow > li:nth-of-type(even) {
		padding-top: 70px;
		padding-bottom: 40px;
	}
	.top-start__flow > li::before {
		top: 60px;
	}
	.top-start__flow > li:nth-of-type(even)::before {
		top: 20px;
	}
	.top-start__flow > li i::before {
		clip-path: polygon(0 0, 50% 40px, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
	}
	.top-start__flow > li dl dt {
		margin-top: 30px;
	}
}



/* Q&A */
.top-qa {
	margin-top: 110px;
}
.top-qa__inner {
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
	position: relative;
}
.top-qa__main {
	margin-top: 80px;
}
.top-qa__open-list > div + div {
	margin-top: 30px;
}
.top-qa__open-list dt {
	background-color: var(--color-main-light03);
	padding: 10px 80px 10px 100px;
	font-size: 18px;
	cursor: pointer;
	position: relative;
	min-height: 90px;
	display: flex;
	align-items: center;
	font-family: var(--font-sub);
	font-weight: 400;
}
.top-qa__open-list dt::after {
	content: '';
	position: absolute;
	right: 50px;
	top: calc(50% - 2px);
	transform: translateY(-50%) rotate(225deg);
	width: 16px;
	height: 16px;
	border-top: solid 3px var(--color-gray02);
	border-left: solid 3px var(--color-gray02);
}
.top-qa__open-list > div.open dt::after {
	transform: translateY(-50%) rotate(45deg);
	top: calc(50% + 6px);
}
.top-qa__open-list dt i {
	font-style: normal;
	width: 55px;
	height: 55px;
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--color-sub-light);
	color: var(--color-main-light03);
	display: grid;
	place-items: center;
	font-size: 30px;
	font-family: var(--font-main);
	font-weight: 900;
}
.top-qa__open-list dt i::before {
	content: 'Q';
	transform: translateY(-4px);
}
.top-qa__open-list dd {
	margin: 0;
	padding: 40px 50px 40px 100px;
	background-color: var(--color-main-light);
	font-family: var(--font-sub);
}
.top-qa__open-list > div:not([class]) dd {
	display: none;
}
.top-qa__open-list > div.first dd {
	display: block;
}
.top-qa__open-list dd p {
	margin: 0;
	font-size: 18px;
	line-height: 2;
	font-weight: 400;
	color: var(--color-font02);
}
.top-qa__open-list dd p + p {
	margin-top: 2em;
}
.top-qa__open-list a {
	position: relative;
	z-index: 1;
	padding-left: 1.5em;
	text-decoration: none;
}
.top-qa__open-list a::before {
	content: '←';
	position: absolute;
	left: 0;
	top: 0;
}
.top-qa__open-list a:hover {
	text-decoration: underline;
}
@media (max-width: 640px) {
	.top-qa {
		margin-top: 60px;
	}
	.top-qa__main {
		margin-top: 40px;
	}
	.top-qa__open-list > div + div {
		margin-top: 20px;
	}
	.top-qa__open-list dt {
		padding-left: 70px;
		padding-right: 50px;
		font-size: 16px;
		line-height: 1.4;
		min-height: 80px;
	}
	.top-qa__open-list dt::after {
		right: 20px;
	}
	.top-qa__open-list dt i {
		width: 40px;
		height: 40px;
		font-size: 20px;
		left: 15px;
	}
	.top-qa__open-list dt i::before {
		transform: none;
	}
	.top-qa__open-list dd {
		padding: 20px;
		font-size: 16px;
	}
	.top-qa__open-list dd p {
		font-size: 16px;
	}
}



/* Operating Company */
.top-company {
	margin-top: 140px;
}
.top-company__inner {
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
	position: relative;
}
.top-company__main {
	margin-top: 80px;
}
.top-company__desc {
	display: flex;
	justify-content: center;
}
.top-company__desc p {
	font-size: 18px;
	text-align: center;
}
.top-company__desc p + p {
	margin-top: 10px;
}
@media (max-width: 640px) {
	.top-company {
		margin-top: 120px;
	}
	.top-company__main {
		margin-top: 40px;
	}
	.top-company__desc p {
		font-size: 16px;
		text-align: center;
	}
}


/* Free diagnosis */
.top-contact {
	margin-top: 140px;
	margin-bottom: 200px;
}
body:not(.home) .top-contact {
	margin-top: 0;
}
.top-contact__header {
	position: relative;
	padding-top: 140px;
	padding-bottom: 65px;
}
.top-contact__header::before {
	content: '';
	position: absolute;
	z-index: -3;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: url('../../../uploads/top-contact-title-bg01.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 1;
}
.top-contact__header::after {
	content: '';
	position: absolute;
	z-index: -2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-main);
	mix-blend-mode: multiply;
	opacity: .8;
}
.top-contact__title-group {
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
}
body.home .top-contact__title-group .heading-001 {
	font-size: 60px;
}
body.home .top-contact__title-group p {
	font-size: 24px;
}
.top-contact__desc {
	margin-top: 40px;
	max-width: calc(var(--content-width) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
	text-align: center;
	font-family: var(--font-sub);
}
.top-contact__desc p {
	font-weight: 400;
	font-size: 18px;
}
.top-contact__desc p strong {
	font-weight: 500;
	color: var(--color-accent);
}
.top-contact__main {
	padding-top: 100px;
	max-width: calc(var(--content-width-sm) + var(--content-margin) * 2);
	width: 100%;
	padding-right: var(--content-margin);
	padding-left: var(--content-margin);
	margin-inline: auto;
}
.top-contact__form-main {
	font-family: var(--font-sub);
}
.top-contact__form-main .wpcf7-list-item {
	margin: 0;
}
.top-contact__form-main > dl {
}
.top-contact__form-main > dl:first-of-type {
	padding-top: 0;
}
.top-contact__form-main > dl + dl {
	border-top: solid 1px var(--color-gray);
	padding-top: 40px;
	margin-top: 40px;
}
.top-contact__form-main dl > div {
	display: grid;
	grid-template-areas: "title tag desc";
	grid-auto-columns: 200px auto 1fr;
	grid-auto-rows: auto;
	align-items: center;
}
.top-contact__form-main dl dt {
	grid-area: title;
	font-size: 18px;
}
.top-contact__form-main dl .type-tag {
	grid-area: tag;
	width: max-content;
	border-radius: 5px;
	min-width: 55px;
	text-align: center;
	font-size: 15px;
}
.top-contact__form-main dl .type-tag {
	padding: 5px;
	background-color: var(--color-gray02);
	color: var(--color-font-r);
}
.top-contact__form-main dl .type-tag.hissu {
	background-color: var(--color-sub);
}
.top-contact__form-main dl .type-tag p {
	line-height: 1.2;
}
.top-contact__form-main dl dd:not(.type-tag) {
	grid-area: desc;
	margin-left: 60px;
}
.top-contact__form-main dl[data-input="radio"] dd label {
	position: relative;
	display: inline-block;
	padding: 7px 30px;
	cursor: pointer;
}
.top-contact__form-main dl dd .wpcf7-radio {
	display: flex;
	align-items: center;
	gap: 10px;
}
.top-contact__form-main dl dd input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	position: relative;
	border-radius: 100vmin;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.top-contact__form-main dl dd input[type="radio"]::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 100vmin;
	border: solid 2px var(--color-gray);
}
.top-contact__form-main dl dd input[type="radio"]:checked::before {
	border-color: var(--color-accent);
}
.top-contact__form-main dl dd textarea,
.top-contact__form-main dl dd input[type="email"],
.top-contact__form-main dl dd input[type="text"] {
	padding: 8px 12px;
	border-radius: 5px;
	border: none;
	width: 100%;
}
.wpcf7-not-valid-tip {
	color: var(--color-accent-dark);
}
.top-contact__form-button {
	margin-top: 60px;
	position: relative;
	margin-inline: auto;
}
.top-contact__form-button p {
	display: flex;
	justify-content: center;
	gap: 20px;
}
.top-contact__form-button p br {
	display: none !important;
}
.top-contact__form-button .wpcf7-previous {
	all: unset;
	font-size: 24px;
	text-align: center;
	font-family: var(--font-sub);
	background: var(--color-gray02);
	margin: 0 auto;
	width: 100%;
	max-width: 400px;
	display: block;
	border: none;
	border-radius: 100vmin;
	padding: 15px 20px;
	box-shadow: 0 5px var(--color-gray); 
	cursor: pointer;
	color: var(--color-font-r);
	box-sizing:border-box;
}
.top-contact__form-button input[type="submit"] {
	all: unset;
	font-size: 24px;
	text-align: center;
	font-family: var(--font-sub);
	background: var(--color-accent-dark);
	margin: 0 auto;
	width: 100%;
	max-width: 400px;
	display: block;
	border: none;
	border-radius: 100vmin;
	padding: 15px 20px;
	box-shadow: 0 5px var(--color-accent-dark03); 
	cursor: pointer;
	box-sizing:border-box;
}
.top-contact__complete-desc p {
	font-size: 18px;
	text-align: center;
	line-height: 2.2;
}
.top-contact__complete-link {
	margin-top: 60px;
}
.top-contact__complete-link a {
	font-size: 24px;
	text-align: center;
	font-family: var(--font-sub);
	background: var(--color-accent-dark);
	margin: 0 auto;
	width: 100%;
	max-width: 400px;
	display: block;
	border: none;
	border-radius: 100vmin;
	padding: 15px 20px;
	box-shadow: 0 5px var(--color-accent-dark03);
	text-decoration: none;
}
@media (max-width: 640px) {
	.top-contact {
		margin-top: 80px;
	margin-bottom: 120px;
	}
	.top-contact__header {
		padding-top: 80px;
		padding-bottom: 40px;
	}
	body:not(.home) .top-contact__header {
		padding-top: calc(var(--header-height) + 40px);
	}
	body.home .top-contact__title-group p {
		font-size: calc(100vmin * 24 / var(--sp-vw));
	}
	body.home .top-contact__title-group .heading-001 {
		font-size: calc(100vmin * 40 / var(--sp-vw));
	}
	body:not(.home) .top-contact__title-group .heading-001 {
		font-size: calc(100vmin * 24 / var(--sp-vw));
	}
	.top-contact__desc p {
		text-align: left;
	}
	.top-contact__main {
		padding-top: 40px;
	}
	.top-contact__form-main dl > div {
		grid-template-areas: "title tag"
			"desc desc";
		grid-auto-columns: 1fr auto;
		grid-auto-rows: auto 1fr;
		gap: 20px 10px;
		align-items: flex-start;
	}
	.top-contact__form-main dl .type-tag {
		margin-top: 4px;
	}
	.top-contact__form-main dl dd:not(.type-tag) {
		margin-left: 0;
	}
	.top-contact__form-main dl dd .wpcf7-radio {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px 10px;
	}
	.top-contact__form-main dl[data-input="radio"] dd label {
		width: 100%;
		text-align: center;
	}
	.top-contact__form-button {
		margin-top: 40px;
	}
	.top-contact__form-button p {
		flex-direction: column;
	}
	.top-contact__form-button .wpcf7-previous {
		font-size: 18px;
	}
	.top-contact__form-button input[type="submit"] {
		font-size: 18px;
	}
	.top-contact__complete-desc p {
		text-align: left;
		font-size: 16px;
	}
	.top-contact__complete-link {
		margin-top: 40px;
	}
	.top-contact__complete-link a {
		font-size: 18px;
	}
}





/*------------------------------------
 * プラグイン共通設定
 ------------------------------------*/
/* フォーム */
.wpcf7-spinner {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 130%;
}
.wpcf7 form .wpcf7-response-output {
	margin: 40px 0 0 !important;
	padding: 30px 40px;
	border: 2px solid var(--color-cyaan);
}
.wpcf7 form.sent .wpcf7-response-output {
	border-color: var(--color-green);
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: var(--color-red);
}
.wpcf7 form.spam .wpcf7-response-output {
	border-color: var(--color-accent);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: var(--color-sub);
}





/*------------------------------------
 * ヘッダー 
 ------------------------------------*/
.header-sp-001-space {
	display: none !important;
}
.header-sp-001 {
	background: none;
	height: var(--header-height);
}
body:where(.page-complete,.page-confirm) .header-sp-001 {
	position: absolute;
}
.header-sp-001::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: var(--header-height);
	background: rgba(3, 7, 18, .8);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}
.header-sp-001-logo {
	position: relative;
	z-index: 1;
}
.header-sp-001-logo h1 {
	margin: 0;
	line-height: 0;
}
.header-sp-001-button.active span:nth-of-type(3)::after,
.header-sp-001-button span:nth-of-type(1)::before {
	display: none !important;
}
.header-sp-001-right {
	padding-right: 25px;
}
body:where(.page-complete,.page-confirm) .header-sp-001-right {
	display: none !important;
}
.header-sp-001-icon {
	width: 45px;
	height: 45px;
	margin: 0;
}
.header-sp-001-button {
	width: 45px;
	height: 45px;
	background: none !important;
}
.header-sp-001-button span {
	background: var(--color-font);
	width: 100%;
	left: 0;
	border-radius: 0;
}
.header-sp-001-button span:nth-of-type(1) {
	top: 5px;
}
.header-sp-001-button span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}
.header-sp-001-button span:nth-of-type(3) {
	top: 36px;
}
/*
.header-sp-001-button.active span:nth-of-type(1) {
	top: 50%;
	left: 0;
	transform: translateY(50%) rotate(-35deg);
	width: 100%;
	margin-top: -2px;
}
.header-sp-001-button.active span:nth-of-type(3) {
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(35deg);
	width: 100%;
}
*/
.header-sp-001-button.active span:nth-of-type(1) {
	top: 5px;
	left: 0;
	transform: unset;
	width: 100%;
}
.header-sp-001-button.active span:nth-of-type(2) {
	opacity: 1;
}
.header-sp-001-button.active span:nth-of-type(3) {
	top: 36px;
	left: 0;
	transform: unset;
	width: 100%;
}
.header-nav-sp-001 {
	top: 0 !important;
	display: block !important;
	position: static;
	background-color: var(--color-main-light);
	padding-right: 0;
	padding-left: 0;
	padding-top: var(--header-height);
	font-size: 20px;
}
.header-nav-sp-001 ul {
	border-top: none;
}
.header-nav-sp-001-inner > ul > li {
	border-bottom: solid 1px var(--color-header-sp-border);
}

.header-nav-sp-001-inner > ul > li:first-of-type {
	border-top: solid 1px var(--color-header-sp-border);
}
.header-nav-sp-001 ul a {
	color: var(--color-font);
	padding-top: 15px;
	padding-bottom: 15px;
	position: relative;
	padding-right: 30px;
	padding-left: 50px;
}
.header-nav-sp-001 ul a:hover {
	background-color: var(--color-main-light03);
}
.header-nav-sp-001 a[data-en]::before {
	content: attr(data-en);
	display: block;
	color: var(--color-accent);
	margin-left: -20px;
	font-size: 16px;
	font-family: var(--font-sub);
	letter-spacing: .05em;
}
.header-nav-sp-001 a[data-en]::after {
	content: '';
	position: absolute;
	left: 0;
	top: calc(.9em + 15px);
	width: 25px;
	border-top: solid 1px var(--color-accent);
	display: flex;
	align-items: center;
	font-size: 16px;
}
.header-nav-sp-001 a[data-en] {
	font-size: 12px;
	color: var(--color-gray02);
}
.header-nav-sp-001 ul a i {
	display: block;
	font-style: normal;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%) rotate(135deg);
	width: 8px;
	height: 8px;
	border-top: solid 1px var(--color-font);
	border-left: solid 1px var(--color-font);
	opacity: .7;
}
.header-nav-sp-001-inner {
	height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.header-nav-sp-001-wrap {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 20;
	width: 400px;
	margin-left: auto;
	margin-right: 0;
	height: 100%;
	transform: translateX(100%);
	transition-property: transform;
	transition-duration: .5s;
}
.header-nav-sp-001-wrap.active {
	transform: translateX(0);
}
.header-nav-sp-001-icon {
	width: 45px;
	height: 45px;
	margin: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 21;
	padding-right: 25px;
	padding-top: 17px;
	box-sizing: content-box;
}
.header-nav-sp-001-button {
	width: 45px;
	height: 45px;
	position: relative;
}
.header-nav-sp-001-button span {
	background: var(--color-font);
	width: 100%;
	top: 50%;
	left: 0;
	display: inline-block;
	transition: all 0.4s;
	position: absolute;
	height: 2px;
}
.header-nav-sp-001-button span:nth-of-type(1) {
	transform: translateY(50%) rotate(-45deg);
	margin-top: -2px;
}
.header-nav-sp-001-button span:nth-of-type(2) {
	transform: translateY(-50%) rotate(45deg);
}
.header-nav-sp-001-logo-wrap {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - calc(var(--content-margin) * 4));
}
.header-nav-sp-001-logo {
	padding: 0 !important;
	display: block;
	max-width: max-content;
	margin: 0 auto;
}
.header-nav-sp-001-logo img {
	max-height: 60px;
}
.header-nav-sp-001-bg {
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	z-index: 19;
	opacity: 0;
	visibility: hidden;
	transition-property: opacity, visibility;
	transition-duration: .5s;
}
.header-nav-sp-001-bg.active {
	opacity: 1;
	visibility: visible;
}
@media (min-width: 641px) {
	.header-sp-001-logo img {
		height: auto;
	}
}
@media (max-width: 640px) {
	.header-sp-001 {
		background: var(--color-bg);
	}
	.header-nav-sp-001 {
		padding-right: 0;
		padding-left: 0;
		padding-bottom: 60px;
	}
	.header-nav-sp-001-wrap {
		width: 85%;
	}
	.header-sp-001-logo {
		max-width: calc(100% - (65px + 10px));
	}
	.header-sp-001-logo img {
		height: auto;
		width: 100%;
	}
	.header-nav-sp-001 ul a {
		padding-left: 30px;
	}
	.header-nav-sp-001 a[data-en]::before {
		margin-left: 0;
	}
}
@media (max-width: 400px) {
	.header-sp-001-right {
		padding-right: 15px;
	}
	.header-sp-001-logo {
		max-width: calc(100% - (55px + 10px));
	}
	.header-sp-001-icon,
	.header-sp-001-button {
		width: 40px;
	}
}





/*------------------------------------
 * フッター
 ------------------------------------*/
.footer {
	background-color: var(--color-main-light03);
	padding-top: 80px;
	padding-bottom: 40px;
}
.footer-copyright {
	text-align: center;
	font-family: var(--font-sub);
	font-size: 14px;
	color: var(--color-gray02);
	font-weight: 400;
}
@media (max-width: 640px) {
	.footer {
		padding-top: 40px;
	}
}



