@charset "UTF-8";

/*

 base.css

*/
/* -----------------------------------------------

= base

----------------------------------------------- */
:root {
	--radius: 0.8rem;
	--spacing-xs: 0.8rem;
	--spacing-sm: 1.2rem;
	--spacing-md: 2.4rem;
	--spacing-lg: 3.2rem;
	--color-key: #024059;
	--color-base: #1b1b1b;
	--color-blue: #007BAC;
	--bg-gray-gr: linear-gradient(0deg, #e2e2e2 0%, #fff 100%);
	--bg-gray-gr-2: linear-gradient(0deg, #e2e2e2 0%, #fafafa 100%);

	--shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.05);
	--shadow--sm: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.15);
	--transition: 0.3s ease;
	--max-width--sm: 90rem;
	--max-width--md: 120rem;
	--max-width--lg: 140rem;
}
html {
	line-height: 2;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	width: 100%;
	color: #1b1b1b;
	font-family: "times-new-roman", '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro', serif;
	font-weight: 400;
	font-style: normal;
	font-weight: 400;
}
img {
	max-width: 100%;
	vertical-align: top;
}
a {
	text-decoration: none;
  	color: #1b1b1b;
	cursor: pointer;
	transition: all 0.2s;
}
a.underline {
	text-decoration: underline;
}
p a {
  color: var(--color-key);
}
#wrapper {
  position: relative;
  overflow: clip;
}
.bg__keyColor {
	background: var(--color-key);
}
.bg__gray {
	background: var(--bg-gray-gr);
}
.bg__gray--2 {
	background: var(--bg-gray-gr-2);
}
h1,h2,h3,h4 {
	line-height: 1.2;
	font-weight: 600;
}
/* アニメーション */
.fadeIn {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1.2s ease, transform 1.2s ease;
	will-change: opacity, transform;
}
.fadeIn.is-visible {
	opacity: 1;
	transform: translateY(0);
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	html {
		min-width: 1140px;
	}
	body {
		line-height: 1.6;
		font-size: 1.8rem;
	}
	.sp {
		display: none !important;
	}
	#wrapper {
		margin-top: 8rem;
	}
	.inner {
		padding: 0 var(--spacing-lg);
		margin: 0 auto;
	}
	.inner--sm {
		max-width: var(--max-width--sm);
	}
	.inner--md {
		max-width: var(--max-width--md);
	}
	.inner--lg {
		max-width: var(--max-width--lg);
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  	html {
		font-size: calc(100vw / 37.5);
	}
	body {
		line-height: 1.9;
		font-size: 1.5rem;
	}
	.pc {
		display: none !important;
	}
	#wrapper {
		margin-top: 6.9rem;
	}
	.inner {
		padding: 0 var(--spacing-md);
	}
	.inner--sp0 {
		padding: 0 !important;
	}
	/* cookie同意 */
	.cc-color-override-1991272497.cc-window {
		padding: 1rem !important;
    	font-size: 1.2rem !important;
	}
}
/*--------------------------------------------------

  = Slick slider

--------------------------------------------------*/
.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus{
    outline: none;
}
.slick-list.dragging{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track{
    visibility: hidden;
}
.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide{
    float: right;
}
.slick-slide img{
    display: block;
}
.slick-slide.slick-loading img{
    display: none;
}
.slick-slide.dragging img{
    pointer-events: none;
}
.slick-initialized .slick-slide{
    display: block;
}
.slick-loading .slick-slide{
    visibility: hidden;
}
.slick-vertical .slick-slide{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
.slick-prev, .slick-next {
	position: absolute;
    background: url(../img/arrow_circle01.svg) no-repeat 50% / 100% !important;
    width: 4rem;
    height: 4rem;
    display: block;
    color: transparent;
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
    box-shadow: none !important;
    font-size: 0;
    z-index: 3;
}
.slick-next {
    transform: translateY(-50%);
    top: 50%;
    right: 3rem;
}
.slick-prev {
    transform: scale(-1, 1) translateY(-50%);
    top: 50%;
    left: 3rem;
}
.slick-dots {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 90%;
	height: auto;
	position: absolute;
	z-index: 10;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	bottom: 2.5vw;
	}
	.slick-dots li {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	margin: 0 0.7rem;
	border-radius: 50%;
	background: #ccc;
	text-indent: -9999px;
	vertical-align: middle;
	cursor: pointer;
	}
	.slick-dots li.slick-active {
		background: #222;
	}
	.slick-slide img {
		width: 100%;
		object-fit: cover;
	}
.slick-slide.noSize img {
		height: auto;
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.slick-next {
		right: 1rem;
	}
	.slick-prev {
		left: 1rem;
	}
	.slick-dots li {
		display: inline-block;
		width: 0.6rem;
		height: 0.6rem;
	}
	.slick-dots {
		bottom: 1rem;
	}
	.slick-prev, .slick-next {
		width: 2.6rem;
		height: 2.6rem;
	}
}
/* -----------------------------------------------

= header

----------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--color-key);
  transition: all .2s;
}
.header__in {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header__menu > li > a {
	color: #fff;
	font-weight: 500;
}
.header .header__menu>li .menu--sub li .menu--sub {
	display: none !important;
}
.header__logoLink,
.header__logoImg {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.header .header__info {
	display: flex;
	align-items: center;
	gap: 1.6rem;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.header {
		min-width: 1100px;
	}
	.header__in {
		padding: 0 40px 0 60px;
	}
	.header .header__logo {
		width: 160px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		margin-right: 20px;
	}
	.header .nav {
		display: flex;
		justify-content: space-between;
	}
	.header .header__menu {
		display: flex;
		padding: 0 3.5rem;
	}
	.header .header__menu>li {
		position: relative;
		padding: 0 1.75rem;
	}
	.header .header__menu>li>a {
		position: relative;
		display: flex;
		align-items: center;
		height: 8rem;
		line-height: 1.2;
	}
	.header .header__menu>li>a::before,
	.header .header__menu>li>a::after {
		content: "";
		position: absolute;
		width: 100%;
		left: 0;
	}
	.header .header__menu>li>a::before {
		background-color: var(--color-blue);
		height: 2px;
		bottom: 0;
		transform-origin: 100% 50%;
		transform: scaleX(0);
		transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
	}
	/* サブメニューアイコン */
	.header .header__menu>li:has(ul) {
		padding-right: 30px;
	}
	.header .header__menu>li:has(ul)::before,
	.header .header__menu>li:has(ul)::after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto;
		width: 10px;
		height: 1px;
		background: var(--color-blue);
		border-radius: inherit;
		transition: all .2s;
	}
	.header .header__menu>li:has(ul)::after {
		transform: rotate(90deg);
	}
	/* hover */
	.header .header__menu>li:hover::after {
		transform: rotate(0);
	}
	.header .header__menu>li>a:hover {
		color: var(--color-blue);
	}
	.header .header__menu>li>a:hover::before {
		transform-origin: 0% 50%;
		transform: scaleX(1);
	}
	.header .header__menu>li .menu--sub {
		display: none;
		position: absolute;
		top: 8rem;
		left: 1.75rem;
		width: 27rem;
		padding: 4rem 2rem;
		border-radius: 10px;
		background: #FFF;
		box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
		box-sizing: border-box;
	}
	.header .header__menu>li .menu--sub li a {
		position: relative;
		display: block;
		line-height: 1.66;
		padding-left: 1.5rem;
	}
	.header .header__menu>li .menu--sub li a:hover {
		text-decoration: underline;
	}
	.header .header__menu>li .menu--sub li+li {
		margin-top: 1.5rem;
	}
	.header .header__menu>li .menu--sub li.sp+li {
		margin-top: 0;
	}
	.header .header__menu>li .menu--sub li.hnav_none {
		display: none;
	}
}
/* = PC (1300px以下 768px以上)
----------------------------------------------- */
@media print, screen and (max-width: 1300px) and (min-width: 768px) {
	.header .header__menu>li {
		padding: 0 1rem;
	}
	.header .header__menu>li .menu--sub {
		left: 1rem;
	}
	.header.fixed .header__menu>li .menu--sub {
		left: 1rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .header__in {
    padding: 1rem 1rem 1rem 2rem;
  }
	.header .header__logo {
		width: 11rem;
		margin-right: 1rem;
	}
	.header .header__nav--flex {
		display: flex;
		align-items: center;
		gap: 1rem;
	}
	.header .header__navBtn button {
		position: relative;
		top: 0;
		right: 0;
		z-index: 1010;
		width: 5rem;
		height: 5rem;
		display: block;
		cursor: pointer;
	}
	.header .header__navBtn button .drawer__bar {
		display: block;
		position: absolute;
		width: 3rem;
		height: 0.1rem;
		left: 0;
		right: 0;
		margin: auto;
		background: #fff;
		border-radius: 0.2rem;
		transition: all 0.2s;
	}
	.header .header__navBtn button .drawer__bar--1 {
		top: 1.5rem;
	}
	.header .header__navBtn button .drawer__bar--2 {
		top: 2.3rem;
	}
	.header .header__navBtn button .drawer__text {
		width: 100%;
		position: absolute;
		top: 2.8rem;
		left: 0;
		color: #fff;
		line-height: 1;
		font-size: 0.9rem;
		text-align: center;
	}
	.header .header__navBtn button .drawer__close {
		display: none;
	}
	.header .nav {
		display: none;
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		bottom: 0;
		width: 100%;
		padding: 3rem 0;
		background: var(--color-key);
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		box-sizing: border-box;
		z-index: 999;
	}
	.header .header__info {
		gap: 1.2rem;
	}
	.header .nav .header__menu,
  	.header .nav .header__info {
		padding: 4rem 3.5rem 2.5rem;
	}
	.js-gnav_opened .nav {
		display: block;
		top: 0rem;
		transform: translateY(0);
	}
	.js-gnav_opened .header__navBtn button .drawer__bar {
    top: 1.5rem;
    width: 2rem;
	}
	.js-gnav_opened .header__navBtn button .drawer__bar--1 {
		transform: rotate(-45deg);
	}
	.js-gnav_opened .header__navBtn button .drawer__bar--2 {
		transform: rotate(45deg);
	}
	.js-gnav_opened .header__navBtn button .drawer_menu_text {
		display: none;
	}
	.js-gnav_opened .header__navBtn button .drawer__close {
		display: block;
	}
}
/* -----------------------------------------------

= header footer 共通

----------------------------------------------- */
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.sp__accordion .nav__1st>li {
		position: relative;
    	border-bottom: 1px solid rgba(255,255,255,0.2);
	}
	.sp__accordion .nav__1st>li a {
		display: block;
		letter-spacing: 0.04em;
	}
	.sp__accordion .nav__1st>li>a {
		padding: 2.2rem 0;
		font-size: 1.8rem;
	}
  /* 子メニューを持っているとき */
	.sp__accordion .nav__1st>li:has(ul)>a::before,
  	.sp__accordion .nav__1st>li:has(ul)>a::after {
		content: "";
        position: absolute;
        top: 3.8rem;
        right: 1rem;
        margin: auto;
        width: 2rem;
        height: 1px;
        background: var(--color-blue);
        border-radius: inherit;
        transition: all .2s;
	}
	.sp__accordion .nav__1st>li:has(ul)>a::after {
		transform: rotate(90deg);
	}
	.sp__accordion .nav__1st>li.open {
		padding-bottom: 1rem;
	}
	.sp__accordion .nav__1st>li.open>a::after {
		transform: rotate(0);
	}
	.sp__accordion .nav__1st>li>.menu--sub {
		display: none;
		padding: 2rem;
		border-radius: 0.7rem;
    	background: #FFF;
		box-sizing: border-box;
    	border: 1px solid #d7d7d7;
	}
	.sp__accordion .nav__1st>li>.menu--sub>li+li {
		margin-top: 1rem;
	}
	.sp__accordion .nav__1st>li>.menu--sub li a {
		position: relative;
		line-height: 1.66;
		font-size: 1.5rem;
    	padding: 0.8rem 0;
	}
}
/* -----------------------------------------------

= footer

----------------------------------------------- */
.footer {
	position: relative;
    z-index: 1;
	color: #fff;
	background-color: #222;
}
.footer a {
	color: #fff;
	text-decoration: underline;
}
.footer__main {
	background-color: #333;
}
.copyright a {
  color: #262626;
  text-decoration: underline;
}
.footer__title {
	font-weight: 600;
	font-size: 2.4rem;
	margin-bottom: 2rem;
}
.footer__sns img {
	width: 3rem;
}
.footer__sns .footer__sns--x {
	width: 2.6rem;
}
.footer__sns .footer__sns--yt {
	width: 3.5rem;
}
.footer__privacy p,
.copyright {
	font-size: 1.4rem;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.footer__main {
		padding: 8rem 0;
	}
	.footer__privacy,
	.copyright {
		padding: 3rem 0;
	}
	/* hover */
	.footer a:hover {
		text-decoration: none;
	}
	.footer__sns a:hover {
		opacity: .8;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.footer__main {
		padding: 5rem 0;
	}
	.footer__privacy,
	.copyright {
		padding: 2rem 0;
	}
}

/* -----------------------------------------------

  = button

----------------------------------------------- */
.button__link {
	display: inline-block;
	background: #fff;
	color: var(--color-base);
	text-align: center;
	border-radius: 3rem;
	padding: 1.2rem 2rem;
	font-size: 1.8rem;
	line-height: 1.5;
	box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
	transition: all .3s;
}
.button__link--key {
	color: #fff;
	background: var(--color-key);
}
.button__global {
	display: block;
    position: relative;
    line-height: 1;
	color: #fff;
	padding: 1rem 0 1rem 2rem;
}
.button__global::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 1.6rem;
    height: 1.6rem;
	transform: translateY(-50%);
	background: no-repeat center / 100%;
	background-image: url(../img/icon_global.svg);
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.button__link--lg {
		font-size: 2.4rem;
	}
	/* hover */
	.button__link:hover {
		color: #fff;
		background-color: var(--color-blue);
	}
	.button__global:hover {
		text-decoration: underline;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.button__link {
        padding: 1.8rem 2rem;
        min-width: 20rem;
	}
	.button__global {
		font-size: 1.2rem;
	}
	.button__link--small {
		min-width: auto;
		font-size: 1.2rem;
		padding: .8rem 1.5rem;
	}
}
/* -----------------------------------------------

  = hero

----------------------------------------------- */
.hero__movie {
	position: relative;
    min-height: auto;
    aspect-ratio: 1920 / 980;
    overflow: hidden;
}
.hero__movie video {
	max-width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	pointer-events: none;
}
.hero__btn {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 12;
	cursor: pointer;
}
.hero__btn .on {
	display: block;
}
.hero__btn .off {
	display: none;
}
.hero__btn.is-voice_on .on {
	display: none;
}
.hero__btn.is-voice_on .off {
	display: block;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.hero__movie {
		aspect-ratio: 1920 / 1800;
	}
}
/* -----------------------------------------------

  = message / products

----------------------------------------------- */
.message__title {
	line-height: 1;
	font-weight: 600;
	letter-spacing: -0.03em;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.message {
		padding: 12rem 0 7rem;
	}
	.message .inner {
		margin-bottom: 7rem;
	}
	.message__title {
		font-size: 10rem;
		margin-bottom: 6rem;
	}
	.message__text {
		font-size: 1.8rem;
	}
	.products {
		padding-bottom: 12rem;
	}
	.products .flex {
		padding: 0 3%;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.message {
		padding: 4.8rem 0;
	}
	.message .inner {
		padding: 0 2.4rem;
	}
	.message__title {
		font-size: 3.2rem;
		margin-bottom: 4rem;
	}
	.message__text {
		font-size: 1.5rem;
	}
	.products {
		padding: 0 0 8rem;
	}
	.products .flex {
		padding: 0 2.4rem;
	}
}
/* -----------------------------------------------

  = results

----------------------------------------------- */
.results__text {
	color: var(--color-key);
	line-height: 1;
}
.results__text--big {
	display: block;
	font-weight: bold;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.results {
		padding: 10rem 0;
	}
	.results__text {
		font-size: 5rem;
	}
	.results__text--big {
		font-size: 7rem;
	}
	.results .flex__item {
		padding: 0 4rem;
	}
	.results .flex__item + .flex__item {
		border-left: 1px solid #bbb;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.results {
		padding: 2rem 2.8rem;
	}
	.results__text {
		font-size: 3.6rem;
	}
	.results__text--big {
		font-size: 6rem;
	}
	.results .flex__item {
		padding: 4rem 0;
	}
	.results .flex__item + .flex__item {
		border-top: 1px solid #bbb;
	}
}
/* -----------------------------------------------

  = features

----------------------------------------------- */
.features__title {
	font-weight: 600;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.features__textBox {
		padding: 5%;
	}
	.flex .features__textBox {
		width: 44%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.flex .features__img {
		flex: 1;
	}
	.flex:nth-of-type(even) .features__textBox {
		order: 2;
	}
	.flex:nth-of-type(even) .features__img {
		order: 1;
	}
	.features__title {
		font-size: 4.8rem;
		margin-bottom: 2.4rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.features__textBox {
		padding: 4rem 2.4rem;
	}
	.flex .features__img {
		flex: 1;
	}
	.flex .features__textBox {
		order: 2;
	}
	.features__title {
		font-size: 2.4rem;
		margin-bottom: 1.6rem;
	}
}
/* -----------------------------------------------

  = recruit

----------------------------------------------- */
.recruit {
	color: #fff;
}
.recruit__title {
	/* font-weight: bold; */
}
.recruit__lead {
	line-height: 1.2;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.recruit {
		padding: 9rem 0;
	}
	.recruit__title {
		font-size: 6rem;
	}
	.recruit__lead {
		font-size: 3.6rem;
		margin-bottom: 2.4rem;
	}
	.flex .recruit__titleBox {
		width: 44%;
		padding-left: 10%;
	}
	.flex .recruit__textBox {
		flex: 1;
		padding-right: 9%;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.recruit {
		padding: 7rem 0;
	}
	.recruit__title {
		font-size: 5rem;
		margin-bottom: 3.2rem;
	}
	.recruit__lead {
		font-size: 2.8rem;
		margin-bottom: 6rem;
	}
}
/* -----------------------------------------------

  = card

----------------------------------------------- */
.card {
    background: #fff;
    border: 1px solid #e0e1e4;
	box-shadow: var(--shadow);
	border-radius: var(--radius);
    overflow: hidden;
}
.card__figure {
	border-radius: var(--radius);
	overflow: hidden;
}
.card__figure img {
	aspect-ratio: 3/2.2;
	width: 100%;
    object-fit: cover;
    transition: all .3s;
}
.card__actions {
	display: block;
    position: relative;
    font-weight: 600;
    line-height: 1.5;
}
.card__actions::before,
.card__actions::after {
	content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.card__actions::before {
	right: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 1px solid #D9DDE7;
}
.card__actions::after {
	right: 1rem;
    border: 0.5rem solid transparent;
    border-left: 0.8rem solid #024059;
}
/* カードバリエーション */
.card--feature {
	background: var(--color-key);
	color: #fff;
	border-color: transparent;
}
.card--minimal {
	background: transparent;
	border: 1px solid rgba(31,45,58,0.08);
	box-shadow: none;
}
.card--borderless {
	border: none;
	box-shadow: 0 0.6rem 1.6rem rgba(31,45,58,0.08);
}
.card--with-image {
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.card--with-image .card__media {
	width: 100%;
	display: block;
}
.card--with-image .card__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}
.card--with-image .card__content {
	padding: var(--spacing-md);
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.card__body {
		padding: 2.5rem;
	}
	.card__actions {
		font-size: 3rem;
		padding: 1rem 5rem 1rem 1rem;
	}
	/* hover */
	.card a:hover .card__figure img {
		transform: scale(1.1);
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.card__body {
		padding: 2.5rem 1.5rem;
	}
	.card__actions {
		font-size: 2.6rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {

}
/* -----------------------------------------------

  = 見出し

----------------------------------------------- */
.header__title {
  padding: var(--spacing-lg) 0;
}
.heading {
	margin: 0 0 var(--spacing-sm);
	font-weight: 600;
	line-height: 1.3;
  }
  .heading__title {
	display: block;
	line-height: 1.2;
  }
  .heading__subtitle {
	margin-top: 0.4rem;
	line-height: 1.2;
  }
  .heading--secondary {
	font-size: 2.4rem;
	line-height: 1.2;
  }
  .heading--tertiary {
	font-size: 1.8rem;
	line-height: 1.2;
  }
.heading--white {
	color: #fff;
}
/* 背景ありページタイトル */
.header__title--bg .heading {
	text-shadow: var(--shadow--sm);
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.header__title {
		height: 50rem;
	}
	.heading__title {
		font-size: 9rem;
	}
	.heading__subtitle {
		font-size: 3.2rem;
	}
	.heading--h2,
	.heading--h3 {
		margin-bottom: 3.2rem;
	}
	.heading--h4 {
		margin-bottom: 2rem;
	}
	.heading--h2 {
		font-size: 4.6rem;
	}
	.heading--h3 {
		font-size: 3.2rem;
	}
	.heading--h4 {
		font-size: 2.8rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.header__title {
		height: 20rem;
	}
	.heading__title {
		font-size: 3.6rem;
	}
	.heading__subtitle {
		font-size: 2rem;
	}
	.heading--h2,
	.heading--h3 {
		margin-bottom: 2.4rem;
	}
	.heading--h4 {
		margin-bottom: 1.6rem;
	}
	.heading--h2 {
		font-size: 3.2rem;
	}
	.heading--h3 {
		font-size: 2.4rem;
	}
	.heading--h4 {
		font-size: 2rem;
	}
}
/* -----------------------------------------------

  = cases

----------------------------------------------- */
.js-cases__slider .slider__img {
	display: block;
	object-fit: cover;
	overflow: hidden;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.cases {
		/* max-width: 800px; */
		margin: 0 auto;
	}
	.js-cases__slider .slider__img {
		aspect-ratio: 3/2;
		border-radius: var(--radius);
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.js-cases__slider .slider__img {
		aspect-ratio: 3/3;
	}
}
/* -----------------------------------------------

  = details

----------------------------------------------- */
.details {
	line-height: 1.6;
}
.details .flex .details__title {
	width: 35%;
}
.details .flex .details__text {
	flex: 1;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {

}
/* -----------------------------------------------

  = 

----------------------------------------------- */

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {

}

/*--------------------------------------------------

  = Print

--------------------------------------------------*/
@media print {
	html {
		width: 100%;
		zoom: 95%;
	}
	body {
		max-width: 1300px;
		margin: 0 auto;
	}
	.headerDrw_btn {
		position: absolute;
	}
	#pagetop {
		display: block !important;
		position: absolute !important;
	}
}