@charset "UTF-8";
/* ====================================
	            common
===================================== */
html {}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-size: 1.1rem;
}
img {
  width: 100%;
  height: auto;
}
section {
  padding: 2rem 0;
}
sup {
  color: #00a0e9;
}
.wrap, .wrap-l {
  width: 90%;
  margin: 0 auto;
}
.articleContents {
  min-width: 960px;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 1.2rem;
  }
  .wrap {
    width: 95%;
    max-width: 900px;
  }
  .wrap-l {
    width: 100%;
    max-width: 1000px;
  }
  .pconly {
    display: block;
  }
  .sponly {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  section {
    padding: 2rem 0;
  }
  .articleContents {
    min-width: 100%;
  }
  .pconly {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/* ====================================
	            menu
===================================== */
@media only screen and (max-width: 1023px) {
  /* ページナビ */
  #pageNavi {
    width: 100%;
  }
  #pageNavi .navi-container {
    padding: 6px 0 6px 6px;
  }
  .navi-title {
    display: flex;
    align-items: center;
  }
  .navi-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 195px;
    height: 100%;
    padding-right: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: #515855;
  }
  .navi-btn-menu {
    padding: 6px;
    background-color: #515855;
  }
  .btn-trigger {
    width: 20px;
    padding-top: 88%;
    cursor: pointer;
    position: relative;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
  }
  .btn-trigger, .btn-trigger span {
    display: block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 44%;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .open .btn-trigger span:nth-of-type(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .open .btn-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .open .btn-trigger span:nth-of-type(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  #pageNavi ul.list-navi {
    display: none;
    height: calc(100vh - 60px);
    font-size: 1.6rem;
  }
  #pageNavi ul.list-navi li {
    margin-bottom: 1.5em;
  }
  #pageNavi ul.list-navi li, #pageNavi ul.list-navi a {
    width: 100%;
    text-align: center;
    text-decoration: none;
  }
  #pageNavi.open ul.list-navi {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    animation: show .2s linear .3s;
    animation-fill-mode: both;
  }
  #pageNavi.open ul.list-navi a {
    color: #fff;
  }
#pageNavi.open {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	background-color: rgba(119, 119, 119, 0.9);
	animation: show .2s linear 0s;
	animation-fill-mode: both;
}
#pageNavi.open .navi-logo a {
	color: #fff;
}
}
@media only screen and (min-width: 1024px) {
  /* ページナビ */
  #pageNavi {
    width: 100%;
    background-color: #f4f4f4;
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 10%);
  }
  .navi-logo a {
    font-size: 1.3rem;
    font-weight: 600;
    color: #515855;
    text-decoration: none;
  }
  .navi-btn-menu {
    display: none;
  }
  #pageNavi .navi-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
  }
  #pageNavi .navi-title {
    width: 280px;
    margin-right: auto;
    margin-left: 1rem;
  }
  #pageNavi ul.list-navi {
    display: flex;
  }
  #pageNavi ul.list-navi li {
    font-size: 1.1rem;
    font-weight: 500;
  }
  #pageNavi ul.list-navi li a {
    display: block;
    padding: 0 1.5em;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
    color: #515855;
  }
  #pageNavi ul.list-navi li a.active, #pageNavi ul.list-navi li a:hover {
    text-decoration: none;
  }
  #pageNavi ul.list-navi li a:hover {
    text-decoration: underline;
    /* transition: all 0.5s ease-in-out; */
  }
}

/* ====================================
	コンテンツ末尾バナーエリア
===================================== */
.global__search--btn dl {
  display: table;
  margin: 0 auto;
}
.contEtcAreaWrap {
	padding: 5rem 0;
	background-color: #fff;
}
.contEtcArea {
  background-color: #eae9d8;
}
.contEtcArea .btnArea {
  margin: 1rem auto 1rem auto;
}
.pagetopWrap {
	background-color: #fff;
	padding: 2em 0;
}
.pagetop {
	margin: 0;
}
#global__footer {
	padding-bottom: 0;
}

@media screen and (max-width: 767px) {
.contEtcAreaWrap .contEtcArea {
	margin: 0;
}
.pagetopWrap {
	padding: 0;
}
}


/* ====================================
	Header GNavi
===================================== */
.articleContents {
	background-color: transparent;
}
#global__pagetitle--title {
	display: none;
}
#global__header {
	background-color: #fff;
}
.navi-logo {
	font-weight: 600;
}
#pageNavi ul.list-navi li {
	font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
#global__pagetitle {
	display: none;
}
.navi-btn-menu {
	background-color: #145a46;
}
}
@media screen and (min-width: 768px) {
#pageNavi {
	width: 100%;
	height: 60px;
	overflow: hidden;
	background-color: #145a46;
	color: #fff;
}
#pageNavi a {
	color: #fff;
}
#pageNavi ul.list-navi {
	height: 60px;
}
#pageNavi ul.list-navi li:first-child {
	margin-left: 1em;
}
#pageNavi ul.list-navi li:last-child {
	margin-right: 0;
}
#pageNavi ul.list-navi li a {
	display: block;
	width: 10em;
	height: 60px;
	line-height: 60px;
	color: #fff;
	padding: 0.25em 2.5em;
	position: relative;
}
#pageNavi ul.list-navi li a::after {
	content: '';
	display: block;
	width: 0.4em;
	height: 0.4em;
	border-top: #fff 2px solid;
	border-right: #fff 2px solid;
	transform: rotate(135deg);
	position: absolute;
	right: 1em;
	top: 0;
	bottom: 0;
	margin: auto;
}
}


/* ====================================
	グローバルナビ
===================================== */
/* 初期は画面外＆非表示 */
.globalNavi__wrap{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .5s ease, opacity .5s ease;
  /* 必要に応じて */
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(150%) blur(6px);
}
/* 表示状態：上からヌルっと出る */
.globalNavi__wrap.is-visible{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
/* SP */
@media screen and (max-width: 767px) {
#globalHeaderNaviClose,
#global__header--navbtn_spMenu {
	height: 55px;
	box-sizing: border-box;
}
#globalHeaderNaviClose img,
#global__header--navbtn_spMenu img {
	vertical-align: top;
	height: 22px;
}
.navi-title {
	justify-content: space-between;
}
.navi-btn-menu {
	margin-right: 6px;
}
}

/* ====================================
	メインビジュアル-動画
===================================== */
body {
	width: 100%;
	overflow-x: hidden;
}
#videoBg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: -1;
	pointer-events: none;
}
/* 画面いっぱいに収める（トリミング不可・余白可） */
.video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000; /* 余白が出る場合に背景で埋める */
}
.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain; /* 全体表示、余白あり */
  transform: translate(-50%, -50%);
}
/* 画面いっぱい重視（余白不可・トリミング可） */
/* .video-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
} */
@media screen and (max-width: 767px) {
.video-background {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: 100%;
}
.video-background video {
	position: relative;
	left: 0;
	top: 0;
	transform: none;
}
}








/* ====================================
	メインコンテンツ イントロ
===================================== */
#contentMainArea {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 56.25%;
}
#contentMainArea section {
	margin: 0;
	padding: 0;
}
#contentMainArea section:not(#intro) {
	background-color: #fff;
}
#contentMainArea #intro {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url("../images/intro_bg.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 100% auto;
}
#introInner {
	text-align: center;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
#introInner::before,
#introInner::after {
	content: '';
	display: block;
	position: absolute;
}
#introInner::before {
	border-left: #000 1px solid;
	border-top: #000 1px solid;
	left: 0;
	top: 0;
}
#introInner::after {
	border-right: #000 1px solid;
	border-bottom: #000 1px solid;
	right: 0;
	bottom: 0;
}
.introTtl {
	font-family: "Shippori Mincho", serif;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1em;
}
.introTxtArea p {
	font-family: "Shippori Mincho", serif;
	line-height: 2;
}
@media screen and (max-width: 767px) {


#contentMainArea #intro {
	margin-top: -30%;
	padding: 35% 5% 5%;
	box-sizing: border-box;
	background-position: center top;
	background-size: cover;
}
#introInner {
	width: 100%;
	padding: 2.5%;
	box-sizing: border-box;
}
#introInner::before,
#introInner::after {
	width: 50px;
	height: 50px;
}
.introTtl {
	font-size: 2rem;
}
}
@media screen and (min-width: 768px) {
#contentMainArea #intro {
	padding: 20% 0 5%;
}
#introInner {
	max-width: 1200px;
	padding: 20px;
}
#introInner::before,
#introInner::after {
	width: 100px;
	height: 100px;
}
.introTtl {
	font-size: 4.28rem;
}
.introTxtArea p {
	font-size: 1.4rem;
}
}

/* ====================================
	Scroll Down
===================================== */
.scroll-indicatorWrap {
	width: 100%;
	position: relative;
}
.scroll-indicator {
	position: absolute;
	right: 2.5vw;
	bottom: 2.5vh;
}
.scroll-text {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	margin-top: 10px;
	color: #fff;
	animation: fade-text 2s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
.scroll-indicatorWrap {
	aspect-ratio: 16 / 9;
	width: 100vw;
	height: auto;
	position: absolute;
	left: 0;
	top: 0;
}
.scroll-indicator {
	position: absolute;
	right: 2.5%;
	bottom: 2.5%;
	text-align: center;
	z-index: 2;
	transition: opacity 0.5s ease;
	margin: auto;
}
.scroll-indicator.hidden {
	opacity: 0;
	pointer-events: none;
}
.scroll-line::before {
	content: "";
	width: 1px;
	height: 50px;
	background-color: #000;
	left: 0;
	right: 0;
	bottom: 30px;
	margin: auto;
	position: absolute;
	z-index: 2;
	animation: scroll 2s infinite;
}
.scroll-line::after {
	content: "";
	width: 1px;
	height: 50px;
	background-color: #fff;
	bottom: 30px;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
}
}
@media screen and (min-width: 768px) {
.scroll-indicator.hidden {
	opacity: 0;
	pointer-events: none;
}
.scroll-line::before {
	content: "";
	width: 1px;
	height: 100px;
	background-color: #fff;
	left: 0;
	right: 0;
	bottom: 30px;
	margin: auto;
	position: absolute;
	z-index: 2;
	animation: scroll 2s infinite;
}
.scroll-line::after {
	content: "";
	width: 1px;
	height: 100px;
	background-color: #000;
	bottom: 30px;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
}
}
@keyframes fade-text {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}

/* ====================================
	イントロ
===================================== */
.mgbLine {
	margin-bottom: 1em !important;
}
@media screen and (max-width: 767px) {
}
@media screen and (min-width: 768px) {
}

/* ====================================
	Concept Movie
===================================== */
.youtube-container {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
	position: relative;
	z-index: 2;
}
.youtube iframe {
	width: 100%;
	height: 100%;
}
.conceptMovieTtl {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 1.5em;
	gap: 1em; /* テキストとラインの余白 */
	margin-bottom: 1em;
}
.conceptMovieTtl::before,
.conceptMovieTtl::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #000;
}
@media screen and (max-width: 767px) {
#contentMainArea #conceptMovie {
	padding: 10% 0;
}
}
@media screen and (min-width: 768px) {
.youtube-container {
	max-width: 800px;
	padding: 110px 0 80px;
}
.conceptMovieTtl {
	font-size: 2.57rem;
}
}

/* ====================================
	コンテンツ
===================================== */
#contentMainArea img {
	width: auto;
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}
/* ====================================
	さらにつながる
===================================== */
.moreKvBgWrap {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.moreKvBgBand {
	width: 100%;
	position: relative;
}
.moreKvBgimg {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
#contentMainArea .moreKvBgBand img,
#contentMainArea .moreKvBgimg img {
	width: 100% !important;
	height: auto;
}
.moreContent {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	box-sizing: border-box;
}
.moreTtl {
	display: inline-block;
	background-color: #145a46;
	color: #fff;
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	line-height: 1;
	padding: 0.25em 0.5em;
}
.moreLead p {
	font-weight: 500;
	line-height: 1.8;
}
.cocoro-office {
	position: relative;
	z-index: 3;
}
.cocoro-officeTtl {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	border-top: #000 1px solid;
	border-bottom: #000 1px solid;
	padding-top: 0.75em;
	padding-bottom: 0.8em;
	margin-bottom: 1em;
}
.cocoro-officeTtl span {
	display: inline-block;
	vertical-align: middle;
}
.cocoro-officeTtl .logo {
	margin-right: 1em;
}
.cocoro-officeTtl .logo img {
	height: 2.5em !important;
	width: auto !important;
}
.moreList > li .moreListPanel {
	background-color: #3a7464;
}
.moreList > li:nth-child(even) .moreListPanel {
	background-color: #145a46;
}
.moreList.cocoro-officeList > li .moreListPanel {
	background-color: #dcdcdc;
}
.moreList.cocoro-officeList > li:nth-child(even) .moreListPanel {
	background-color: #f0f0f0;
}
.moreListPanel > dt {
	text-align: center;
	font-weight: 500;
	color: #fff;
	padding: 0.25em 0.5em;
	margin-bottom: 1em;
}
.moreListPanel .txt {
	color: #fff;
	font-weight: 500;
	margin-bottom: 1em;
}
.moreListPanel sup {
	color: #fff;
	font-size: 0.75em;
}
.moreListNote {
	margin-top: 1em;
	color: #fff;
	padding-left: 1em;
	text-indent: -1em;
}
.moreListNote.noIndent {
	padding-left: 0;
	text-indent: 0;
}
.cocoro-office .moreListNote {
	color: #000;
}
.moreList.cocoro-officeList > li .moreListPanel > dt {
	border: none;
	background-color: #be6ea0;
}
.moreList.cocoro-officeList > li .moreListPanel .txt {
	color: #000;
}
.moreList .btn {
	margin-top: 1em;
	margin-left: auto;
	margin-right: auto;
	width: 62.5%;
}
.moreList .btn a {
	display: block;
	background-color: #000;
	border-radius: 2em;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-weight: 500;
	padding: 0.5em 3em;
	position: relative;
}
.moreList .btn a::after {
	content: '';
	display: block;
	width: 0.4em;
	height: 0.4em;
	border-top: #fff 2px solid;
	border-right: #fff 2px solid;
	transform: rotate(45deg);
	position: absolute;
	right: 1.5em;
	top: 0;
	bottom: 0;
	margin: auto;
}
.mask-reveal-right img {
  mask-image: linear-gradient(to right, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
  mask-size: 0% 100%;
  -webkit-mask-size: 0% 100%;
  mask-position: left top;
  -webkit-mask-position: left top;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: mask-size 0.5s ease-out 0.3s, -webkit-mask-size 0.5s ease-out 0.3s;
}

.mask-animate-right img {
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}
.mask-reveal-left img {
  mask-image: linear-gradient(to left, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
  mask-size: 0% 100%;
  -webkit-mask-size: 0% 100%;
  mask-position: right top;
  -webkit-mask-position: right top;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: mask-size 0.5s ease-out 0.3s, -webkit-mask-size 0.5s ease-out 0.3s;
}

.mask-animate-left img {
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.fade-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.5s ease-out, transform 0.3s ease-out;
}
.fade-right.is-show {
  opacity: 1;
  transform: translateX(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.5s ease-out, transform 0.3s ease-out;
}
.fade-left.is-show {
  opacity: 1;
  transform: translateX(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up-delay.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
#contentMainArea #more-connect {
	padding-bottom: 10%;
}
.moreContent {
	position: relative;
	margin-top: -43%;
}
#more-connect .moreTtl {
	margin-left: 10%;
}
.moreLead {
	padding-top: 43%;
	margin-top: -1.8rem;
	padding-bottom: 5%;
}
#more-connect .moreLead {
	padding-left: 20%;
	padding-right: 5%;
}
.moreTtl {
	font-size: 1.8rem;
}
.moreList > li .moreListPanel {
	padding: 5%;
}
.moreListPanel > dt {
	font-size: 1.3rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.moreListPanel .txt {
	margin-bottom: 1em;
}
.moreListNote {
	font-size: 1rem;
}
.moreList .btn {
	margin-top: 2em;
}
.moreList.cocoro-officeList {
	margin-bottom: 2em;
}
.cocoro-officeTtl .logo {
	padding-bottom: 0.75em;
}
}
@media screen and (min-width: 768px) {
#contentMainArea #more-connect {
	padding-bottom: 120px;
}
.moreKvBgBand {
	padding-top: 8.8vw;
}
.moreTtl {
	font-size: 3.4vw;
}
.moreContent {
	aspect-ratio: 180 / 99;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 7.7vw;
}
#more-connect .moreContent,
#more-kindness .moreContent {
	padding-left: 16.6vw;
	padding-right: 3.8vw;
}
#more-safety .moreContent {
	padding-left: 3.8vw;
	padding-right: 16.6vw;
}
#more-safety .moreTtl {
	margin-left: auto;
	margin-right: 0;
}
.moreLead {
	margin-bottom: 8vw;
	margin-top: auto;
}
.moreLead p {
	font-size: 1.28rem;
}
#more-connect .moreLead,
#more-kindness .moreLead {
	margin-left: 40vw;
}
#more-safety .moreLead {
	margin-right: 40vw;
}
.cocoro-office {
	margin-top: -1.9vw;
}
.cocoro-officeTtl {
	max-width: 1200px;
	font-size: 1.71rem;
	margin-bottom: 60px;
}
.moreList {
	display: flex;
	justify-content: space-between;
}
.moreList > li {
	width: calc(100% / 3);
}
.moreList > li .moreListPanel {
	padding: 10%;
}
.moreListPanel > dt {
	font-size: 1.7rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.moreListPanel .txt {
	font-size: 1.14rem;
	margin-bottom: 2em;
}
.moreListNote {
	font-size: 1rem;
}
.moreList .btn {
	margin-top: 2em;
}
.moreList .btn a {
	font-size: 1.28rem;
}
.moreList.cocoro-officeList {
	margin-bottom: 120px;
}
}
/* ====================================
	さらにあんしん
===================================== */
#more-safety .moreListWrap {
	position: relative;
	z-index: 3;
}
#more-safety .moreList > li .moreListPanel {
	background-color: #145a46;
}
#more-safety .moreList > li:nth-child(even) .moreListPanel {
	background-color: #3a7464;
}
.font-s {
	font-size: 0.8em;
}
@media screen and (max-width: 767px) {
#contentMainArea #more-safety {
	padding-bottom: 10%;
}
#more-safety .moreTtl {
	display: block;
	width: fit-content;
	margin-right: 10%;
	margin-left: auto;
}
#more-safety .moreLead {
	padding-right: 20%;
	padding-left: 5%;
}
}
@media screen and (min-width: 768px) {
#contentMainArea #more-safety {
	padding-bottom: 120px;
}
#more-safety .moreListWrap {
	margin-top: -1.9vw;
}
}

/* ====================================
	さらにやさしく
===================================== */
@media screen and (max-width: 767px) {
#contentMainArea #more-kindness {
	padding-bottom: 10%;
}
#more-kindness .moreTtl {
	margin-left: 10%;
}
#more-kindness .moreLead {
	padding-left: 20%;
	padding-right: 5%;
}
}
@media screen and (min-width: 768px) {
#contentMainArea #more-kindness {
	padding-bottom: 40px;
}
}

/* ====================================
	LINE UP
===================================== */
.lineupTtl,
.lineupListWrap {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.lineupList > li a {
	display: block;
	text-decoration: none;
}
.lineupTtl {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 1.5em;
	gap: 1em; /* テキストとラインの余白 */
	margin-bottom: 2em;
	position: relative;
}
.lineupTtl .ttl {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}
.lineupTtl::before,
.lineupTtl::after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #000;
}
.lineupTtl .sub {
	position: absolute;
	left: auto;
	right: auto;
	bottom: -1em;
}
.lineupList .img,
.lineupList .category,
.lineupList .model {
	margin-bottom: 1em;
}
.lineupList .category {
	background-color: #000;
	color: #fff;
	font-weight: 500;
	text-align: center;
	padding: 0.25em;
}
.lineupList .model {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
}
.lineupList .spec {
	border-top: #c8c8c8 1px solid;
	padding-top: 0.5em;
}
.lineupList .spec .speed {
	margin-bottom: 0.5em;
}
.lineupList .spec .speed span {
	display: inline-block;
	vertical-align: middle;
}
.lineupList .spec .speed .icon {
	margin-right: 0.25em;
}
.lineupList .spec .speed .icon img {
	height: 1.25em !important;
	width: auto;
	vertical-align: middle !important;
}
@media screen and (max-width: 767px) {
.lineupTtl .sub {
	font-size: 1rem;
}
.lineupList > li {
	margin-bottom: 2em;
}
.lineupList > li:last-child {
	margin-bottom: 0;
}
}
@media screen and (min-width: 768px) {
#contentMainArea #lineup {
	padding-top: 120px;
}
.lineupTtl,
.lineupListWrap {
	max-width: 1200px;
}
.lineupTtl {
	font-size: 4.2rem;
}
.lineupTtl .sub {
	font-size: 1.7rem;
}
.lineupList {
	display: flex;
	flex-wrap: wrap;
}
.lineupList > li {
	width: 30.8%;
	margin-right: 3.8%;
	margin-top: 3.8%;
}
.lineupList > li:nth-child(3n) {
	margin-right: 0;
}
.lineupList > li:nth-child(-n + 3) {
	margin-top: 0;
}
.lineupList .category,
.lineupList .model {
	font-size: 1.28rem;
}
.lineupList .spec {
	font-size: 1.14rem;
}
}


/* ====================================
	animation style
===================================== */
@keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition-property: opacity, transform;
  transition-duration: 1.2s;
  transition-timing-function: ease-out;
  transition-delay: 0.5s;
}
.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
@keyframes maskRevealRight {
  to {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
}

/* SPより広くてPC未満 → 中間サイズ */
@media screen and (min-width: 429px) and (max-width: 767px) {
}
/* タブレット */
@media screen and (min-width: 768px) and (max-width: 1024px) {
.scroll-indicatorWrap {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}
#contentMainArea {
	padding-top: 5vw;
	margin-top: -5vw;
	background: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 0.5%, rgba(255, 255, 255, 1) 100%);
}
#contentMainArea #intro {
	padding: 8vw 0 4vw;
	margin-top: 0;
}
.introTtl {
	font-size: 6vw;
}
.moreTtl {
	font-size: 4vw;
}
.moreLead p {
	font-size: 2.1vw;
}
.moreListPanel > dt {
	font-size: 2.8vw;
}
.moreList .btn {
	width: 90%;
}
.lineupTtl {
	font-size: 6vw;
}
}

@media (hover: hover) {
.moreList .btn a {
	border: #000 2px solid;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.moreList .btn a::before {
	background: #fff;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}
.moreList .btn a:hover {
	color: #000;
}
.moreList .btn a:hover::after {
	border-top: #000 2px solid;
	border-right: #000 2px solid;
}
.moreList .btn a:hover::before {
	transform: scale(1, 1);
}
#pageNavi ul.list-navi li a {
	text-decoration: none;
	z-index: 1;
	overflow: hidden;
}
#pageNavi ul.list-navi li a::before {
	background: rgba(255,255,255,0.2);
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 60px;
	transform: scale(1, 0);
	transform-origin: top left;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}
#pageNavi ul.list-navi li a:hover {
	text-decoration: none;
}
#pageNavi ul.list-navi li a:hover::after {
}
#pageNavi ul.list-navi li a:hover::before {
transform: scale(1, 1);
}
.lineupList > li a {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lineupList > li a:hover {
	transform: translateY(-5px);
}
}
/* アンカーリンク対策 */
@media screen and (max-width: 767px) {
#contentMainArea #more-connect,
#contentMainArea #more-safety,
#contentMainArea #more-kindness {
	padding-top: 100px;
	margin-top: -100px;
}
}
@media screen and (min-width: 768px) {
#contentMainArea #more-connect,
#contentMainArea #more-safety,
#contentMainArea #more-kindness {
	padding-top: 144px;
	margin-top: -144px;
}
}