@charset "UTF-8";
/*-- foundation --*/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*-- global直下 --*/
/*-- settingフォルダ --*/
/*-- mixinフォルダ --*/
/*-- global直下 --*/
/*****Case.01 min-width
.elements {
  @include mq {
    color:red;
  }
  @include mq(L) {
    color:red;
  }
}
--------outpu↓--------

@media screen and (min-width: 768px) {
  .elements {
    color:red;
  }
}
@media screen and (min-width: 1024px) {
 .elements {
    color:red;
 }
}

#############################################

/*****Case.02 max-width
.elements {
  @include mq(S, max) {
    color:red;
  }
  @include mq(L, max, true) {
    color:red;
  }
}
--------outpu↓--------

@media screen and (max-width: 600px) {
  .elements {
    color:red;
  }
}
@media screen and (max-width: 1024px) {
 .elements {
   color:red;
 }
}

#############################################

/*****Case.03 min and max
.elements {
  @include mq {
    color:red;

    @include g.mq(L, max, true) {
      color:red;
    }

  }
}
--------outpu↓--------

@media screen and (min-width: 768px) {
  .elements {
    color:red;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .elements {
    color:red;
  }
}
*/
/*-- global直下 --*/
/*-- mixinフォルダ --*/
/*-- global直下 --*/
/*-- mixinフォルダ --*/
/*-- global直下 --*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
body {
	font-family: "Noto Serif JP", serif;
}

.mb50th-img,
.topimage {
	width: 100%;
	height: auto;
	vertical-align: top;
}

.mb50th__text-img {
	width: 178px;
}

@media screen and (max-width: 600px) {
	.mb50th__text-img {
		width: 113px;
	}
}

a {
	text-decoration: none;
	cursor: pointer;
}
a.disabled {
	pointer-events: none;
}

ul {
	list-style: none;
	padding: 0;
}


@media screen and (max-width: 600px) {
	.topimage {
		display: none;
	}
}
.topimage-sp {
	display: none;
}
@media screen and (max-width: 600px) {
	.topimage-sp {
		display: block;
	}
}
.topimage_wrapper {
	padding: 85px 0 2em 0;
	align-items: center;
	margin: 0 auto;
}
@media screen and (max-width: 600px) {
	.topimage_wrapper {
		padding: 52px 0 0px 0;
	}
}
.topimage_wrapper img {
	width: 100%;
}

/*-- layout --*/
.l-container {
	margin: 0;
	min-height: 100vh;
	animation: fadeIn 1.5s ease 0s 1 normal;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
	background-color: rgb(0, 0, 0);
	color: #fff;
}

/*-- vendors --*/
.drawer-container {
	max-width: 100%;
}

.drawer-navbar {
	width: auto;
	border-bottom: none;
	height: auto;
}

.drawer-menu-item {
	font-size: 1em;
}

.drawer-navbar .drawer-navbar-header {
	border: none;
	background-color: transparent;
}

.drawer-hamburger-icon {
	height: 2px;
	margin-top: 20px;
}
.drawer-hamburger-icon:before {
	top: -7px;
}
.drawer-hamburger-icon:after {
	top: 7px;
}
@media screen and (max-width: 600px) {
	.drawer-hamburger-icon {
		margin-top: 10px;
	}
}

@media (min-width: 834px) {
	.drawer--sidebar .drawer-hamburger {
		display: none;
		visibility: hidden;
	}
	.drawer--sidebar .drawer-nav {
		display: block;
		-webkit-transform: none;
		transform: none;
		position: fixed;
		width: 12.5rem;
		height: 100%;
	}
	.drawer--sidebar.drawer--left .drawer-nav {
		left: 0;
		border-right: 1px solid #ddd;
	}
	.drawer--sidebar.drawer--left .drawer-contents {
		margin-left: 12.5rem;
	}
	.drawer--sidebar.drawer--right .drawer-nav {
		right: 0;
		border-left: 1px solid #ddd;
	}
	.drawer--sidebar.drawer--right .drawer-contents {
		margin-right: 12.5rem;
	}
	.drawer--sidebar .drawer-container {
		max-width: 48rem;
	}
}
@media (min-width: 834px) {
	.drawer-navbar {
		height: 3.75rem;
		border: none;
		background-color: transparent;
	}
	.drawer-navbar .drawer-navbar-header {
		position: relative;
		display: block;
		float: left;
		width: auto;
		padding: 0;
		border: 0;
		border: none;
		background-color: transparent;
	}
	.drawer-navbar .drawer-menu--right {
		float: right;
	}
	.drawer-navbar .drawer-menu-item {
		line-height: 3.75rem;
		padding-top: 0;
		padding-bottom: 0;
	}
	.drawer-navbar .drawer-hamburger {
		display: none;
	}
	.drawer-navbar .drawer-dropdown-menu {
		position: absolute;
		width: 16.25rem;
		border: 1px solid #ddd;
	}
	.drawer-navbar .drawer-dropdown-menu-item {
		padding-left: 0.75rem;
	}
}
@media (min-width: 834px) {
	.drawer-container {
		max-width: 60rem;
	}
}
/*-- component --*/
header {
	width: 100%;
	height: auto;
	background-color: #080808;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 22px 0;
	position: absolute;
	z-index: 99999;
}
@media screen and (max-width: 600px) {
	header {
		padding: 18px 16px;
		display: flex;
	}
}

.header-logo {
	width: 128px;
	height: 100%;
}
@media screen and (max-width: 600px) {
	.header-logo {
		width: 50px;
	}
}

.header-logo a img {
	display: block;
}
@media screen and (max-width: 600px) {
	.header-logo a img {
		width: 100%;
	}
}

.header-icon-text {
	position: absolute;
	width: 224px;
	right: 24px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
@media screen and (max-width: 600px) {
	.header-icon-text {
		width: 136px;
		right: 8px;
	}
}

.header-icon-line img {
	width: 24px;
	display: block;
}
@media screen and (max-width: 600px) {
	.header-icon-line img {
		width: 12px;
	}
}

.header-icon-sns a {
	display: flex;
	width: 22px;
}
@media screen and (max-width: 600px) {
	.header-icon-sns a {
		width: 11px;
	}
}

.header-icon-sns a:before {
	content: "";
	position: absolute;
	right: 0;
	bottom: -6px;
	width: 10%;
	height: 1px;
	background: white;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.4s;
}

.header-icon-sns a:hover:before {
	transform: scale(1);
}

.header-icon img {
	display: block;
}

.c-item_container {
	margin-top: 8em;
}
@media screen and (max-width: 1024px) {
	.c-item_container {
		margin-top: 6em;
	}
}
@media screen and (max-width: 600px) {
	.c-item_container {
		margin-top: 4em;
	}
}
.c-item_num > img {
	height: 20px;
	margin-bottom: 24px;
}

.c-item_wrap {
	display: flex;
	gap: 6px;
	width: 90%;
	margin: 0 auto;
	margin-bottom: 10em;
	justify-content: space-between;
}

.c-item_wrap:nth-of-type(2n) {
	flex-direction: row-reverse;
}
.c-item_wrap:nth-of-type(2n) > .c-item_data {
	border-right: transparent;
	border-left: solid;
	border-top: transparent;
	border-width: thin;
	border-color: #fff;
}

.c-item_wrap:last-child {
	margin-bottom: 0;
	padding-bottom: 10em;
}

@media screen and (max-width: 600px) {
	.c-item_wrap:nth-of-type(2n) > .c-item_data {
		border: none;
	}
}
@media screen and (max-width: 1024px) {
	.c-item_wrap {
		flex-direction: column;
		gap: 24px;
	}
	.c-item_wrap:nth-of-type(2n) {
		flex-direction: column;
	}
}
@media screen and (max-width: 600px) {
	.c-item_wrap {
		margin-bottom: 5em;
	}
	.c-item_wrap:last-child {
		margin-bottom: 0;
		padding-bottom: 5em;
	}
}
.c-item_picture {
	display: flex;
	gap: 6px;
	justify-content: space-between;
	flex-basis: 66.6666666666%;
}
@media screen and (max-width: 1024px) {
	.c-item_picture {
		margin-bottom: 22px;
	}
}
@media screen and (max-width: 600px) {
	.c-item_picture {
		display: none !important;
	}
}
.c-item_feature > a > img {
	transition: 1s;
}
.c-item_data {
	flex-basis: 33.3333333333%;
	display: flex;
	border: solid;
	border-left: transparent;
	border-top: transparent;
	border-width: thin;
	border-color: #fff;
	justify-content: center;
	align-items: center;
	padding: 0 4em;
}
@media screen and (max-width: 1024px) {
	.c-item_data {
		border-right: transparent;
		border-left: solid;
		border-top: transparent;
		border-width: thin;
		border-color: #bbb;
		padding: 0 6em;
		padding-bottom: 58px;
	}
}
@media screen and (max-width: 600px) {
	.c-item_data {
		border: none;
		padding: 0 0em;
	}
}
@media screen and (max-width: 1024px) {
	.c-item_data_wrap {
		width: 80%;
	}
}
@media screen and (max-width: 600px) {
	.c-item_data_wrap {
		width: 100%;
	}
}
.c-item_data_text {
	font-feature-settings: "palt" 1;
	letter-spacing: 0.08em;
	line-height: 1.7;
	width: auto;
}
.c-item_data_text_heading {
	width: 100%;
	font-size: 1em;
	margin-bottom: 1.3em;
	font-weight: 600;
	text-align: justify;
	text-justify: inter-ideograph;
	line-height: 1.7;
}
@media screen and (max-width: 1024px) {
	.c-item_data_text_heading {
		font-size: 0.8em;
		margin-bottom: 1.7em;
	}
}
.c-item_data_caption > p {
	font-size: 0.8em;
	line-height: 2em;
	letter-spacing: normal;
	color: #707070;
}
@media screen and (max-width: 1024px) {
	.c-item_data_caption > p {
		text-align: center;
		font-size: 0.5em;
	}
}
@media screen and (max-width: 600px) {
	.c-item_data_caption > p {
		font-size: 0.7em;
	}
}
.c-item_data_caption > p > a {
	display: inline-block;
	position: relative;
	color: #707070;
	line-height: 1.75em;
}
.c-item_data_caption > p > a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.4s;
}
.c-item_data_caption > p > a:hover {
	opacity: 1;
	color: #fff;
}
.c-item_data_caption > p > a:hover:before {
	transform: scale(1);
}
.c-item_data_caption > p > span {
	color: #707070;
}
.c-item_data_caption_tax {
	margin-top: 1.7em;
}
.c-item_data_caption_tax > span {
	font-size: 0.5em;
}
.c-item_swiper {
	display: none;
}
@media screen and (max-width: 600px) {
	.c-item_swiper {
		display: block;
	}
}

.slidein-left {
	visibility: hidden; /* 初期状態で非表示 */
	opacity: 0;
	transform: translateX(-100%);
	transition: all 0.5s ease;
	display: flex;
}
@media screen and (max-width: 1024px) {
	.slidein-left {
		justify-content: center;
	}
}
.slidein-left-fast {
	visibility: hidden; /* 初期状態で非表示 */
	opacity: 0;
	transform: translateX(-100%);
	transition: all 0.5s ease;
	display: flex;
}

/* Scroll Animation */
.scrollAnimeSlideinLeft {
	animation-fill-mode: both;
	animation-duration: 1.5s;
	animation-name: scrollAnimeSlideinLeft;
	visibility: visible;
}
.scrollAnimeSlideinLeft-fast {
	animation-fill-mode: both;
	animation-duration: 1.5s;
	animation-name: scrollAnimeSlideinLeft;
	visibility: visible;
}

@-webkit-keyframes scrollAnimeSlideinLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2em);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}
@keyframes scrollAnimeSlideinLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2em);
		-ms-transform: translateX(-2em);
		transform: translateX(-2em);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}
.swiper-container {
	padding-bottom: 2.5em;
}

.swiper-button-white {
	text-shadow: 0 0 1.5em rgba(0, 0, 0, 0.5);
}

.swiper-button-prev:after,
.swiper-button-next:after {
	font-size: 2em !important;
}

.swiper-pagination {
	position: static !important;
}

.swiper-pagination-bullet {
	background: #707070 !important;
	opacity: 1 !important;
}

.swiper-pagination-bullet-active {
	background: #fff !important;
}

/*-- project --*/
.p-mb25ss-lead {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	margin-top: 4em;
	z-index: 100;
}
.p-mb25ss-lead_ttl {
	font-size: 1.6em;
	line-height: 1.25em;
	font-weight: 500;
	margin-bottom: 0.7em;
	letter-spacing: 0.08em;
}
.p-mb25ss-lead_txt {
	font-size: 1em;
	line-height: 1.8;
	font-weight: 600;
	font-feature-settings: "palt" 1;
	letter-spacing: 0.08em;
	-webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 600px) {
	.p-mb25ss-lead_txt {
		font-size: 0.8em;
	}
}
.p-mb25ss_swiper-pagination {
	position: static !important;
	margin-top: 14px;
}

/*-- scope --*/
/*-- scope --*/
/*-- utility --*/
.u-grp {
	display: inline-block;
}

/*
 * object/utility/_display.scss
 */
.u-pc-only {
	display: block;
}
@media screen and (max-width: 834px) {
	.u-pc-only {
		display: none;
	}
}

.u-tb-only {
	display: none;
}
@media screen and (max-width: 834px) {
	.u-tb-only {
		display: block;
	}
}
@media screen and (max-width: 600px) {
	.u-tb-only {
		display: none;
	}
}

.u-sp-only {
	display: none;
}
@media screen and (max-width: 600px) {
	.u-sp-only {
		display: block;
	}
}

.u-objectFitImg {
	object-fit: cover;
	font-family: "object-fit: cover;";
}

/*
* object/utility/_position.scss
*/
/*
 * object/utility/_dimension.scss
 */
/*
 * object/utility/_clearfix.scss
 */
.u-cf:before,
.u-cf:after {
	content: "";
	display: table;
}

.u-cf:after {
	clear: both;
}

.u-cf {
	*zoom: 1;
}

.u-clear {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
} /*# sourceMappingURL=style.css.map */