@charset "UTF-8";

html {
  height: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}
html:has(#faqBlock01) {
  scroll-padding-top: 20rem;
}
body {
	display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
	font-feature-settings: "chws";
  line-height: 1;
  font-weight: normal;
  color: #1e1e1e;
          text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-break: strict;
  overflow-wrap: anywhere;
  overflow-x: hidden;
  background-color: var(--color-lightBeige);
}
main {
	display: flex;
  flex-direction: column;
	flex: 1;
}
a {
  display: block;
  color: unset;
  text-decoration: none;
  transition: .4s;
  cursor: pointer;
}
a:hover {
  opacity: .5;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
:root {
  --color-basicRed: #de4051;
  --color-red: #f33b5c;
  --color-pink: #f27289;
  --color-orange: #f68313;
  --color-yellow: #f6d313;
  --color-green: #009333;
  --color-blueGreen: #02c09c;
  --color-skyBlue: #02a8f6;
  --color-blue: #1946bd;
  --color-purple: #786aff;
  --color-black: #1e1e1e;
  --color-beige: #e7e3db;
  --color-lightBeige: #f7f5f0;
  --color-darkBeige: #ddd8cf;

  --lineHeight-titleText: 1.4;
  --lineHeight-specialText: 3;
  --lineHeight-text: 1.7;
}
.font--en {
  font-family: "cc-thismanthismonster-var", sans-serif;
  font-variation-settings: "chew" 0, "wonk" 0, "bite" 0;
}

@media (max-width: 767px) {
	html {
		scroll-padding-top: min(120 / 750 * 100vw, 6rem);
	}
	html:has(#faqBlock01) {
		scroll-padding-top: min(120 / 750 * 100vw, 6rem);
	}
  body {
    font-size: 1.4rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
	height: 10rem;
	padding: 0 min(40 / 1366 * 100vw, 4rem);
}
.header__unit {
	display: flex;
	align-items: center;
}
.header__unit--left {
	gap: 0 min(25 / 1366 * 100vw, 2.5rem);
	position: relative;
	z-index: 3;
}
.header__logo {
	width: 18rem;
}
.header__title {
	font-size: 1.8rem;
	line-height: var(--lineHeight-titleText);
	letter-spacing: -0.025em;
}
header:has(#hamburger__line--toggle:checked) .header__title {
	color: #FFF;
}
.header__title .byWindowSize {
	display: none;
}
.header__unit--right {
	gap: 0 min(30 / 1366 * 100vw, 3rem);
}
.header__unit--right .btn--entry {
	position: relative;
	z-index: 3;
	width: 14rem;
	min-height: 4.4rem;
	padding: 0 1.5rem 0 calc(1.5rem * 1.2);
}
.header__unit--right .btn--entry .btn__enText {
  font-size: 2.4rem;
}
@media (max-width: 1024px) {
	.header__title .byWindowSize {
		display: inline;
	}
}
@media (max-width: 767px) {
	header {
		height: min(120 / 750 * 100vw, 6rem);
		padding: 0 min(30 / 750 * 100vw, 1.5rem);
	}
	.header__unit--left {
		gap: 0 min(30 / 750 * 100vw, 1.5rem);
	}
	.header__logo {
		width: min(236 / 750 * 100vw, 11.8rem);
	}
	.header__title {
		font-size: min(23 / 750 * 100vw, 1.15rem);
		letter-spacing: 0;
	}
	.header__unit--right {
		gap: 0;
	}
	.header__unit--right .btn--entry {
		display: none;
	}
}

/* ----------------------------------------------------------------------------------------------------
*  ハンバーガーメニュー
* --------------------------------------------------------------------------------------------------*/
.hamburger {
	display: flex;
	width: 4.8rem;
	aspect-ratio: 1 / 1;
}
.hamburger__line {
	position: relative;
	z-index: 3;
	width: 100%;
	border-radius: 50%;
	background-color: #FFF;
	padding: 25%;
	cursor: pointer;
	transition: .4s;
}
.hamburger__line:hover {
	background-color: var(--color-yellow);
}
.hamburger__line span {
  position: absolute;
  left: 50%;
  width: 50%;
  height: 0.2rem;
  transform: translateX(-50%);
	background-color: var(--color-black);
  transition: .4s;
}
.hamburger__line span:nth-child(1) {
	top: calc(32% - 0.1rem);
}
.hamburger__line span:nth-child(2) {
	top: calc(50% - 0.1rem);
}
.hamburger__line span:nth-child(3) {
	top: calc(68% - 0.1rem);
}

/* アイコン変形 */
#hamburger__line--toggle:checked + .hamburger__line span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#hamburger__line--toggle:checked + .hamburger__line span:nth-child(2) {
	opacity: 0;
}
#hamburger__line--toggle:checked + .hamburger__line span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
#hamburger__line--toggle:checked + .hamburger__line {
  background-color: var(--color-yellow);
}

/* メニュー開いたときの背景 */
.overlay {
  position: fixed;
	z-index: 1;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: .4s;
}
#hamburger__line--toggle:checked ~ .overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー */
/*
.hamburger__menu {
  position: fixed;
  top: -100%;
  left: 0;
	z-index: 2;
  width: 100%;
  background: var(--color-green);
  box-shadow: 2px 0 8px rgba(0,0,0,0.2);
  transition: top .4s ease;
}
#hamburger__line--toggle:checked ~ .hamburger__menu {
  top: 0;
}*/
.hamburger__menu {
  position: fixed;
  top: 0;
  left: 0;
	z-index: 2;
  width: 100%;
  background: var(--color-green);
  transform: translateY(-100%);
  transition: transform .4s ease;
}
#hamburger__line--toggle:checked ~ .hamburger__menu {
  transform: translateY(0);
}
.hamburger__inner {
	width: min(100%, 100rem);
	margin-top: 12rem;
	margin-bottom: 7rem;
}
.globalNav {
	display: grid;
	grid-template-columns: 31% 31% 31%;
	gap: 2rem 3.5%;
}
.globalNav__list {
	width: 100%;
}
.globalNav__list:nth-child(1) {
	grid-row: 1 / 4;
	grid-column: 1 / 2;
}
.globalNav__list:nth-child(2) {
	grid-row: 1 / 2;
	grid-column: 2 / 3;
	justify-self: center;
}
.globalNav__list:nth-child(3) {
	grid-row: 2 / 3;
	grid-column: 2 / 3;
	justify-self: center;
}
.globalNav__list:nth-child(4) {
	grid-row: 3 / 4;
	grid-column: 2 / 3;
	justify-self: center;
}
.globalNav__list:nth-child(5) {
	grid-row: 1 / 2;
	grid-column: 3 / 4;
	justify-self: end;
}
.globalNav__list:nth-child(6) {
	grid-row: 2 / 3;
	grid-column: 3 / 4;
	justify-self: end;
}
.globalNav__list:nth-child(7) {
	grid-row: 3 / 4;
	grid-column: 3 / 4;
	justify-self: end;
}
.globalNav__btn.btn--link {
	min-height: 5rem;
	border: .1rem solid #FFF;
	background-color: #FFF;
}
.globalNav__btn.btn--link .btn__text {
	font-size: 1.8rem;
	color: var(--color-black);
}
.globalNav__btn.btn--link .btn__text .byWindowSize {
	display: none;
}
.globalNav__btn.btn--link .icon--roundArrow {
	width: 2.8rem;
}
.siteNav__subList.siteNav__subList--globalNav {
	margin-top: 2rem;
}
.siteNav__subList.siteNav__subList--globalNav li:not(:last-child) {
	margin-bottom: 1.5rem;
}
.siteNav__subList.siteNav__subList--globalNav li a {
	color: #FFF;
	line-height: var(--lineHeight-titleText);
	margin-left: .5rem;
}
.globalNav__btn.btn--entry {
	display: none;
}
@media (max-width: 767px) and (orientation: landscape) {
	.hamburger__menu {
		height: 100vh;
		overflow-y: scroll;
	}
}
@media (max-width: 1024px) {
	.globalNav__btn.btn--link .btn__text .byWindowSize {
		display: inline;
	}
	.globalNav__list:nth-child(3),
	.globalNav__list:nth-child(5),
	.globalNav__list:nth-child(7) {
		display: contents;
	}
}
@media (max-width: 767px) {
	.hamburger {
		width: min(77 / 750 * 100vw, 3.85rem);
	}
	.hamburger__inner {
		width: 100%;
		margin-top: min(150 / 750 * 100vw, 7.5rem);
		margin-bottom: min(80 / 750 * 100vw, 4rem);
	}
	.globalNav {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: min(30 / 750 * 100vw, 1.5rem);
		margin-bottom: min(60 / 750 * 100vw, 3rem);
	}
	.globalNav__list:not(:first-child) {
		width: unset;
	}
	.globalNav__list:not(:first-child) .btn--link {
		width: min(310 / 750 * 100vw, 15.5rem);
	}
	.globalNav__list:first-child {
		width: 100%;
	}
	.globalNav__list:first-child .btn--link {
		width: min(530 / 750 * 100vw, 26.5rem);
		margin: 0 auto;
	}
	.globalNav__list:first-child .siteNav__subList {
		width: min(530 / 750 * 100vw, 26.5rem);
		margin: min(40 / 750 * 100vw, 2rem) auto min(20 / 750 * 100vw, 1rem);
	}
	.globalNav__list:nth-child(3),
	.globalNav__list:nth-child(5),
	.globalNav__list:nth-child(7) {
		display: unset;
	}
	.globalNav__btn.btn--link {
		min-height: min(100 / 750 * 100vw, 5rem);
		padding: min(10 / 750 * 100vw, .5rem) min(20 / 750 * 100vw, 1rem) min(10 / 750 * 100vw, .5rem) calc((min(20 / 750 * 100vw, 1rem)) * 1.2);
	}
	.globalNav__btn.btn--link .btn__text {
		font-size: 1.4rem;
	}
	.globalNav__btn.btn--link .icon--roundArrow {
		width: min(40 / 750 * 100vw, 2rem);
	}
	.siteNav__subList.siteNav__subList--globalNav {
		margin-top: min(40 / 750 * 100vw, 2rem);
	}
	.siteNav__subList.siteNav__subList--globalNav li:not(:last-child) {
		margin-bottom: min(30 / 750 * 100vw, 1.5rem);
	}
	.siteNav__subList.siteNav__subList--globalNav li .btn--link {
		margin-left: min(25 / 750 * 100vw, 1.25rem);
	}
	.globalNav__btn.btn--entry {
		display: flex;
		width: min(530 / 750 * 100vw, 26.5rem);
		margin: 0 auto;
	}
}
@media (max-width: 390px) {
	.globalNav__list:nth-child(3) {
		display: contents;
	}
}

/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
footer {
	padding-top: 7rem;
	padding-bottom: 2rem;
	background-color: var(--color-black);
}
.footer__inner {
	display: flex;
	flex-wrap: wrap;
	font-size: 1.4rem;
	line-height: var(--lineHeight-titleText);
	color: #FFF;
}
.corporateNav,
.siteNav {
	width: 50%;
	margin-bottom: 2rem;
	padding-bottom: 4.5rem;
	border-bottom: .1rem solid #646464;
}
.corporateNav__logo {
	width: 27.5rem;
	margin-bottom: 1.5rem;
}
.corporateNav__text {
	font-size: 1.6rem;
	margin-bottom: 4.5rem;
}
.corporateNav__list li:not(:last-child) {
	margin-bottom: 1.5rem;
}
.siteNav__list > li {
	display: inline-block;
	width: 50%;
}
.siteNav__list > li:nth-child(1) {
	float: left;
}
.siteNav__list > li:nth-child(2),
.siteNav__list > li:nth-child(3),
.siteNav__list > li:nth-child(4) {
	float: left;
	clear: left;
}
.siteNav__list > li:not(:last-child) {
	margin-bottom: 2.5rem;
}
.siteNav__list > li > a {
	font-size: 1.6rem;
}
.siteNav__subList {
	margin-top: 1.5rem;
}
.siteNav__subList li:not(:last-child) {
	margin-bottom: 1rem;
}
.siteNav__subList li a {
	display: flex;
}
.siteNav__subList li a::before {
	content: "−";
	vertical-align: top;
	width: fit-content;
	margin-right: .5rem;
}
.siteNav__subList li a div {
	flex: 1;
}
footer small {
  font-size: 1.3rem;
}

@media (max-width: 767px) {
	footer {
		padding-top: min(60 / 750 * 100vw, 3rem);
		padding-bottom: min(35 / 750 * 100vw, 1.75rem);
	}
	.footer__inner {
		flex-direction: column;
		font-size: 1.2rem;
	}
	.corporateNav {
		order: 2;
		width: 100%;
		margin-bottom: min(30 / 750 * 100vw, 1.5rem);
		padding-bottom: min(60 / 750 * 100vw, 3rem);
	}
	.siteNav {
		order: 1;
		width: 100%;
		margin-bottom: min(60 / 750 * 100vw, 3rem);
		padding-bottom: min(60 / 750 * 100vw, 3rem);
	}
	.corporateNav__logo {
		width: min(410 / 750 * 100vw, 20.5rem);
		margin-bottom: min(30 / 750 * 100vw, 1.5rem);
	}
	.corporateNav__text {
		font-size: 1.4rem;
		margin-bottom: min(60 / 750 * 100vw, 3rem);
	}
	.corporateNav__list li:not(:last-child) {
		margin-bottom: min(30 / 750 * 100vw, 1.5rem);
	}
	.siteNav__list > li {
		width: 100%;
		float: none;
		clear: none;
	}
	.siteNav__list > li:not(:last-child) {
		margin-bottom: min(40 / 750 * 100vw, 2rem);
	}
	.siteNav__list > li > a {
		font-size: 1.4rem;
	}
	.siteNav__subList {
		margin-top: min(40 / 750 * 100vw, 2rem);
	}
	.siteNav__subList li:not(:last-child) {
		margin-bottom: min(30 / 750 * 100vw, 1.5rem);
	}
	.siteNav__subList li a {
		display: flex;
		margin-left: min(25 / 750 * 100vw, 1.25rem);
	}
	footer small {
		order: 3;
		font-size: 1.05rem;
	}
	.siteNav__subList li a div .byWindowSize {
		display: none;
	}
}

/* ----------------------------------------------------------------------------------------------------
*  シンボルアニメーション
* --------------------------------------------------------------------------------------------------*/
.decoration {
	position: absolute;
	inset: 0;
	perspective: 800px;
}
.decoration__item {
	position: absolute;
	/* 初期状態 */
	transform: translateX(-50%) scale(1);
  transform-origin: center;
	opacity: 0;
	transition: transform .45s cubic-bezier(.2, .8, .2, 1), opacity .45s;
}
/* 表示 */
.decoration__item.is-visible {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}
/* ループアニメーション（通常） */
@keyframes float {
  0% {
    transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
  }
  50% {
    transform: translateX(-50%) translateY(-8px) rotate(6deg) scale(1);
  }
  100% {
    transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
  }
}
.decoration__item.is-loop:not(.is-rotate) {
  animation: float 4s ease-in-out infinite;
}

/* ループアニメーション（回転） */
@keyframes floatRotate {
  0% {
    transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
  }
  40% {
    transform: translateX(-50%) translateY(-6px) rotate(90deg) scale(1);
  }
  60% {
    transform: translateX(-50%) translateY(-6px) rotate(180deg) scale(1);
  }
  100% {
    transform: translateX(-50%) translateY(0) rotate(360deg) scale(1);
  }
}
.decoration__item.is-loop.is-rotate {
  animation: floatRotate 5s linear infinite;
}

/* ----------------------------------------------------------------------------------------------------
*  レイアウト
* --------------------------------------------------------------------------------------------------*/
*:has(> .inner) {
	width: 100%;
	padding-left: min(40 / 1366 * 100vw, 4rem);
	padding-right: min(40 / 1366 * 100vw, 4rem);
}
.inner {
	width: min(100%, 100rem);
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 767px) {
	*:has(> .inner) {
		padding-left: min(50 / 750 * 100vw, 2.5rem);
		padding-right: min(50 / 750 * 100vw, 2.5rem);
	}
	.inner {
		width: 100%;
	}
}
.marquee {
	position: absolute;
	width: 100%;
	overflow: visible;
}
.zIndex--0 {
	position: relative;
	z-index: 0;
}
.zIndex--1 {
	position: relative;
	z-index: 1;
}
.zIndex--2 {
	position: relative;
	z-index: 2;
}
.zIndex--3 {
	position: relative;
	z-index: 3;
}
.box {
	width: 100%;
}
.box dt {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 1rem 1rem 0 0;
}
.box dd {
	border-radius: 0 0 1rem 1rem;
	background-color: #FFF;
	padding: 2rem 3rem;
}
.box dd p {
	line-height: var(--lineHeight-text);
}
.box dt:not(:has(+ dd)) {
	border-radius: 1rem;
}
@media (max-width: 767px) {
	.box dt {
		border-radius: calc(10 / 750 * 100vw) calc(10 / 750 * 100vw) 0 0;
	}
	.box dd {
		border-radius: 0 0 calc(10 / 750 * 100vw) calc(10 / 750 * 100vw);
		padding: min(30 / 750 * 100vw, 1.5rem) min(50 / 750 * 100vw, 2.5rem);
	}
	.box dt:not(:has(+ dd)) {
		border-radius: calc(10 / 750 * 100vw);
	}
}

.subPage__content {
	position: relative;
	width: 100vw;
	height: 100%;
	background: url("../images/bg_subpage.svg") repeat-y center min(-45 / 1366 * 100vw) / 100%;
	padding-top: 7.5rem;
	padding-bottom: 10rem;
	overflow-x: hidden;
}
@media (max-width: 767px) {
	.subPage__content {
		padding-top: min(90 / 750 * 100vw, 4.5rem);
		padding-bottom: min(100 / 750 * 100vw, 5rem);
	}
}

@media (max-width: 767px) {
	.spOverallWidth {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
	}
}

/* ----------------------------------------------------------------------------------------------------
*  見出し
* --------------------------------------------------------------------------------------------------*/
.title {
	font-size: 7.5rem;
	margin-bottom: 1.5rem;
}
.title--small {
	font-size: 5rem;
	margin-bottom: .5rem;
}
.subTitle {
  font-size: 2rem;
	font-weight: 600;
	line-height: var(--lineHeight-titleText);
}
.subTitle:has(+ *) {
	margin-bottom: 3rem;
}
.read {
	line-height: var(--lineHeight-text);
	margin-bottom: 3.5rem;
}
@media (max-width: 767px) {
	.title {
		text-align: center;
		font-size: 5.35rem;
		margin-bottom: min(20 / 750 * 100vw, 1rem);
	}
	.title--small {
		font-size: 4rem;
		margin-bottom: min(10 / 750 * 100vw, .5rem);
	}
	.subTitle {
		text-align: center;
		font-size: 1.8rem;
	}
	.subTitle:has(+ *) {
		margin-bottom: min(50 / 750 * 100vw, 2.5rem);
	}
	.read {
		text-align: center;
		margin-bottom: min(60 / 750 * 100vw, 3rem);
	}
}

.subPage__header {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-height: 26rem;
	background: url("../../assets/images/bg_subpage_header.svg") no-repeat center center / cover;
	margin-top: 10rem;
}
.subPage__title,
.subPage__subTitle {
	text-align: center;
	color: #FFF;
}
@media (max-width: 767px) {
	.subPage__header {
		min-height: min(370 / 750 * 100vw, 18.5rem);
		background: url("../../assets/images/bg_subpage_header_sp.svg") no-repeat center center / cover;
		margin-top: min(120 / 750 * 100vw, 6rem);
		padding-top: min(20 / 750 * 100vw, 1rem);
		padding-bottom: min(20 / 750 * 100vw, 1rem);
	}
	.subPage__title {
		font-size: 4rem;
		margin-bottom: min(10 / 750 * 100vw, .5rem);
	}
	.subPage__subTitle {
		font-size: 1.6rem;
	}
}

.sectionHeader {
	margin-bottom: 3.5rem;
}
.sectionHeader > * {
	text-align: center;
}
@media (max-width: 767px) {
	.sectionHeader {
		margin-bottom: min(60 / 750 * 100vw, 3rem);
	}
}

/* ----------------------------------------------------------------------------------------------------
*  アンカーリンク
* --------------------------------------------------------------------------------------------------*/
.anchorNav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}
@media (max-width: 767px) {
	.anchorNav {
		display: grid;
	}
	.anchorNav__item {
		display: contents;
	}
}

/* ----------------------------------------------------------------------------------------------------
*  アコーディオン
* --------------------------------------------------------------------------------------------------*/
details > summary,
details[open] > summary {
	pointer-events: all;
	cursor: pointer;
	transition: .4s;
}
details > summary::marker {
	content: "";
}
details > summary .icon--roundPlus {
	width: 3.4rem;
	transition: .4s;
}
details[open] > summary .icon--roundPlus {
  background-color: var(--color-black);
}
details[open] > summary .icon--roundPlus::before {
  mask: url("../images/icon_minus.svg") no-repeat center center / cover;
  background-color: #FFF;
}
.accordion__header,
.accordion__content {
	padding-left: 3rem;
	padding-right: 3rem;
}
.accordion__content {
	pointer-events: none;
}
@media (max-width: 767px) {
	details > summary .icon--roundPlus {
		width: min(50 / 750 * 100vw, 2.5rem);
	}
	.accordion__header,
	.accordion__content {
		padding-left: min(30 / 750 * 100vw, 1.5rem);
		padding-right: min(30 / 750 * 100vw, 1.5rem);
	}
}

details::details-content {
	transition: height .4s, opacity .4s, content-visibility .4s allow-discrete;
	height: 0;
	opacity: 0;
	overflow: clip;
}
details[open]::details-content {
	opacity: 1;
}
@supports (interpolate-size: allow-keywords) {
  :root {
		interpolate-size: allow-keywords;
  }
  details[open]::details-content {
    height: auto;
  }
}
@supports not (interpolate-size: allow-keywords) {
  details[open]::details-content {
    height: 100%;
    overflow-y: scroll;
  }
}

/* ----------------------------------------------------------------------------------------------------
*  パンくず
* --------------------------------------------------------------------------------------------------*/
.breadcrumb {
	background-color: #FFF;
}
.breadcrumb__inner {
	display: flex;
	align-items: center;
	gap: 0 1rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.breadcrumb__item {
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	color: #969696;
	line-height: var(--lineHeight-titleText);
}
.breadcrumb__inner .breadcrumb__item:not(:last-child)::after {
	content: "";
	width: 1rem;
	aspect-ratio: 1 / 1;
	mask: url("../images/icon_arrow.svg") no-repeat center center / cover;
  background-color: #969696;
	margin-left: 1rem;
}
.breadcrumb__item.is-current {
	color: unset;
}
.breadcrumb__item.is-current a {
	pointer-events: none;
}
@media (max-width: 767px) {
	.breadcrumb__inner {
		gap: 0 min(20 / 750 * 100vw, 1rem);
		padding-top: min(20 / 750 * 100vw, 1rem);
		padding-bottom: min(20 / 750 * 100vw, 1rem);
	}
	.breadcrumb__item {
		font-size: 1.225rem;
	}
	.breadcrumb__inner .breadcrumb__item:not(:last-child)::after {
		width: min(20 / 750 * 100vw, 1rem);
		margin-left: min(20 / 750 * 100vw, 1rem);
	}
}

/* ----------------------------------------------------------------------------------------------------
*  図
* --------------------------------------------------------------------------------------------------*/
.workplace {
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.workplace::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	mask: url("../../images/icon_triangle.svg") no-repeat center center / 56.087%;
	background-color: #1e1e1e;
}
.workplace__item:has(> .itemBox--tcc) {
	width: 100%;
}
.workplace__item:has(> .itemBox--mainOffice),
.workplace__item:has(> .itemBox--overseas) {
	width: 50%;
}
.itemBox {
	display: flex;
	flex-direction: column;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	padding-top: 3rem;
	padding-bottom: 2rem;
	transition: .4s;
}
.itemBox.itemBox--tcc {
	width: 46.377%;
	margin: 0 auto;
	border: .2rem solid var(--color-pink);
}
.itemBox.itemBox--mainOffice {
	display: flex;
	width: 92.754%;
	border: .2rem solid var(--color-orange);
	margin-right: auto;
}
.itemBox.itemBox--overseas {
	display: flex;
	width: 92.754%;
	border: .2rem solid var(--color-skyBlue);
	margin-left: auto;
}
.itemBox__name {
	text-align: center;
	font-size: 2.2rem;
	color: #FFF;
	margin: 0 auto 1.5rem;
	transition: .4s;
}
.itemBox .icon--roundArrow {
  width: 4rem;
	margin: 0 auto;
}
.itemBox:hover {
	opacity: 1;
}

/* ----------------------------------------------------------------------------------------------------
*  ボタン
* --------------------------------------------------------------------------------------------------*/
/* 基本 */
.btn:hover {
	opacity: 1;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
	transition: .4s;
}
.btn > div {
  flex: 1;
  text-align: center;
}
.btn__text {
	font-size: 2rem;
	font-weight: 600;
	line-height: var(--lineHeight-titleText);
	transition: .4s;
}
.btn__enText {
	display: block;
  font-size: 4rem;
	margin-bottom: .5rem;
	transition: .4s;
}
.btn__icon {
	transition: .4s;
}
@media (max-width: 767px) {
	.btn__text {
		font-size: 1.8rem;
	}
	.btn__enText {
		font-size: 3.2rem;
		margin-bottom: min(5 / 750 * 100vw, 0.25rem);
	}
}

/* 詳細 */
.btn--link {
  min-height: 7rem;
	padding: 1rem 2rem 1rem calc(2rem * 1.2);
	border: .1rem solid var(--color-black);
	background-color: var(--color-black);
}
.btn--link .btn__text {
  color: #FFF;
}
.btn--link:hover {
	border: .1rem solid var(--color-basicRed);
  background-color: #FFF;
}
.btn--link:hover .btn__text {
  color: var(--color-basicRed);
}

.btn--anchor {
	position: relative;
  min-height: 4.4rem;
	padding: 1rem 1.5rem 1rem calc(1.5rem * 1.2);
  background-color: var(--color-beige);
}
.btn--anchor div,
.btn--anchor span {
	position: relative;
	z-index: 1;
}
.btn--anchor .btn__text {
	font-size: 1.6rem;
}
.btn--anchor::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	border-radius: 9999px;
	background-color: rgba(0, 0, 0, .4);
	mix-blend-mode: soft-light;
	transition: .4s;
	opacity: 0;
}
.btn--anchor:hover::after {
	opacity: 1;
}
.btn--anchor.btn--anchor-twoLines {
	padding: 0 1.5rem 0 calc(1.5rem * 1.2);
}
.btn--anchor.btn--anchor-twoLines .btn__text {
	line-height: 1.2;
}

.btn--entry {
  min-height: 9rem;
	padding: 1rem 2.5rem 1rem calc(2.5rem * 1.2);
	border: .1rem solid var(--color-basicRed);
  background-color: var(--color-basicRed);
}
.btn--entry .btn__text {
	color: #FFF;
	font-size: 1.6rem;
}
.btn--entry .btn__enText {
	color: #FFF;
	margin-bottom: 0;
}
.btn--entry:hover {
	border: .1rem solid var(--color-basicRed);
  background-color: #FFF;
}
.btn--entry:hover .btn__text,
.btn--entry:hover .btn__enText {
  color: var(--color-basicRed);
}
.btn--entry:hover .icon--blank {
	mask: url("../images/icon_blank.svg") no-repeat center center / contain;
	background-color: var(--color-basicRed);
}

.btn--large {
  min-height: 17rem;
  padding: 1rem 3rem 1rem 4rem;
  border-radius: 1rem;
  border: .2rem solid #FFF;
  background-color: #5b5a65;
	overflow: hidden;
}
.btn--large > div {
  text-align: left;
}
.btn--large .btn__text,
.btn--large .btn__enText {
  color: #FFF;
}
.btn--large:hover {
	border: .2rem solid var(--color-basicRed);
  background-color: #FFF;
}
.btn--large:hover .btn__text,
.btn--large:hover .btn__enText {
  color: var(--color-basicRed);
}
@media (max-width: 767px) {
	.btn--link {
		min-height: min(100 / 750 * 100vw, 5rem);
		padding: min(10 / 750 * 100vw, .5rem) min(30 / 750 * 100vw, 1.5rem) min(10 / 750 * 100vw, .5rem) calc((min(30 / 750 * 100vw, 1.5rem)) * 1.2);
	}
	.btn--anchor {
		min-height: min(100 / 750 * 100vw, 3.8rem);
		padding: min(10 / 750 * 100vw, .5rem) min(25 / 750 * 100vw, 1.25rem) min(10 / 750 * 100vw, .5rem) calc((min(25 / 750 * 100vw, 1.25rem)) * 1.2);
	}
	.btn--anchor .btn__text {
		font-size: 1.4rem;
	}
	.btn--anchor.btn--anchor-twoLines {
		padding: min(10 / 750 * 100vw, .5rem) min(25 / 750 * 100vw, 1.25rem) min(10 / 750 * 100vw, .5rem) calc((min(25 / 750 * 100vw, 1.25rem)) * 1.2);
	}
	.btn--anchor.btn--anchor-twoLines .btn__text {
		line-height: var(--lineHeight-titleText);
	}
	.btn--entry {
		min-height: min(150 / 750 * 100vw, 7.5rem);
		padding: min(10 / 750 * 100vw, .5rem) min(40 / 750 * 100vw, 2rem) min(10 / 750 * 100vw, .5rem) calc((min(40 / 750 * 100vw, 2rem)) * 1.2);
	}
	.btn--entry .btn__text {
		font-size: 1.4rem;
	}
	.btn--large {
		min-height: min(240 / 750 * 100vw, 12rem);
		border-radius: calc(10 / 750 * 100vw);
		padding: min(10 / 750 * 100vw, .5rem) min(30 / 750 * 100vw, 1.5rem) min(10 / 750 * 100vw, .5rem) min(50 / 750 * 100vw, 2.5rem);
	}
}

/* アイコン */
.btn--anchor .icon--arrow {
  width: 1.3rem;
  aspect-ratio: 1 / 1;
	mask: url("../images/icon_arrow.svg") no-repeat center center / cover;
	background-color: var(--color-basicRed);
  transform: rotate(90deg);
}
.btn--link .icon--roundArrow {
	width: 3.4rem;
  aspect-ratio: 1 / 1;
}
.btn--large .icon--roundArrow {
	width: 4rem;
  aspect-ratio: 1 / 1;
}
.btn--entry .icon--blank {
	width: 2rem;
  aspect-ratio: 1 / 1;
	mask: url("../images/icon_blank.svg") no-repeat center center / contain;
	background-color: #FFF;
}
@media (max-width: 767px) {
	.btn--anchor .icon--arrow {
		width: min(20 / 750 * 100vw, 1rem);
	}
	.btn--link .icon--roundArrow {
		width: min(50 / 750 * 100vw, 2.5rem);
	}
	.btn--large .icon--roundArrow {
		width: min(60 / 750 * 100vw, 3rem);
	}
	.btn--entry .icon--blank {
		width: min(34 / 750 * 100vw, 1.7rem);
	}
}

/* ----------------------------------------------------------------------------------------------------
*  その他
* --------------------------------------------------------------------------------------------------*/
.icon--roundArrow,
.icon--roundPlus {
  position: relative;
	width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
	background-color: var(--color-basicRed);
}
.icon--roundArrow::before,
.icon--roundPlus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	z-index: 2;
  width: 38.571%;
  aspect-ratio: 1 / 1;
}
.icon--roundArrow::before {
	mask: url("../images/icon_arrow.svg") no-repeat center center / cover;
  background-color: #FFF;
}
.icon--roundPlus::before {
	mask: url("../images/icon_plus.svg") no-repeat center center / cover;
  background-color: #FFF;
}
.icon--blank {
	display: inline-block;
	width: 1rem;
  aspect-ratio: 1 / 1;
	mask: url("../images/icon_blank.svg") no-repeat center center / contain;
	background-color: #FFF;
	margin-left: .75rem;
}

.symbol--01 {
	aspect-ratio: 218.1 / 48.3;
	mask: url("../images/symbol_01.svg") no-repeat center center / contain;
}
.symbol--02 {
	aspect-ratio: 1 / 1;
	mask: url("../images/symbol_02.svg") no-repeat center center / contain;
}
.symbol--03 {
	aspect-ratio: 1 / 1;
	mask: url("../images/symbol_03.svg") no-repeat center center / contain;
}
.symbol--04 {
	aspect-ratio: 1 / 1;
	mask: url("../images/symbol_04.svg") no-repeat center center / contain;
}
.symbol--05 {
	aspect-ratio: 75.75 / 151.5;
	mask: url("../images/symbol_05.svg") no-repeat center center / contain;
}
.symbol--06 {
	aspect-ratio: 1 / 1;
	mask: url("../images/symbol_06.svg") no-repeat center center / contain;
}
.symbol--07 {
	aspect-ratio: 1 / 1;
	mask: url("../images/symbol_07.svg") no-repeat center center / contain;
}
.symbol--08 {
	aspect-ratio: 154 / 137.3;
	mask: url("../images/symbol_08.svg") no-repeat center center / contain;
}
.symbol--09 {
	aspect-ratio: 191.2 / 94.4;
	mask: url("../images/symbol_09.svg") no-repeat center center / contain;
}
.symbol--10 {
	aspect-ratio: 114.6 / 139.2;
	mask: url("../images/symbol_10.svg") no-repeat center center / contain;
}
.symbol--11 {
	aspect-ratio: 127.59 / 15.71;
	background: url("../images/symbol_11.svg") no-repeat center center / contain;
}
.symbol--12 {
	aspect-ratio: 1 / 1;
	mask: url("../images/symbol_12.svg") no-repeat center center / contain;
}

.number {
	display: flex;
	flex-shrink: 0;
	position: relative;
	width: min(100%, 7rem);
	aspect-ratio: 1 / 1;
}
.number::after {
	content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	width: 100%;
	aspect-ratio: 1 / 1;
}
.number span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	z-index: 1;
	text-align: center;
	font-size: 4rem;
	white-space: nowrap;
}
.number--01 {
	color: var(--color-blue);
}
.number--01::after {
	mask: url("../images/symbol_04.svg") no-repeat center center / contain;
	background-color: var(--color-skyBlue);
}
.number--02 {
	color: var(--color-blueGreen);
}
.number--02::after {
	mask: url("../images/symbol_08.svg") no-repeat center center / contain;
	background-color: var(--color-yellow);
}
.number--03 {
	color: var(--color-red);
}
.number--03::after {
	mask: url("../images/symbol_03.svg") no-repeat center center / contain;
	background-color: var(--color-orange);
}
.number--04 {
	color: var(--color-purple);
}
.number--04::after {
	mask: url("../images/symbol_02.svg") no-repeat center center / contain;
	background-color: #FFF;
}
.number--05 {
	color: var(--color-orange);
}
.number--05::after {
	mask: url("../images/symbol_12.svg") no-repeat center center / contain;
	background-color: var(--color-blue);
}
.number--06 {
	color: var(--color-green);
}
.number--06::after {
	mask: url("../images/symbol_06.svg") no-repeat center center / contain;
	background-color: var(--color-blueGreen);
}
@media (max-width: 767px) {
	.number {
		width: min(115 / 750 * 100vw, 5.75rem);
	}
	.number span {
		font-size: 3.2rem;
	}
}

.indent {
	padding-left: 1em;
	text-indent: -1em;
}
.halfWidth {
	font-feature-settings: "chws", "palt";
}

.pcOnly {
	display: inline;
}
.spOnly {
	display: none;
}
@media (max-width: 767px) {
	.pcOnly {
		display: none;
	}
	.spOnly {
		display: inline;
	}
}

/* スクリーンリーダー用 */
.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}