@charset "utf-8";

/* base
-------------------------------------------------------- */
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: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
	display: block;
}
html {
	line-height: 1;
}
ul, ol {
	list-style-type: none;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
a img {
	border: none;
}
img {
	vertical-align: bottom;
	border: none;
	max-width: 100%;
	height: auto;
}
img[src*=".svg"] {
	width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font: inherit;
	border: none;
	border-radius: 0;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}

/* --------------------------------------------------------
	フォントと背景
-------------------------------------------------------- */
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	font-family: YuGothic, "Yu Gothic", "游ゴシック体", "游ゴシック", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
	color: #313131;
	font-size: 1.6em;
	font-weight: 500;
	background: #fff;
	letter-spacing: 0;
	line-height: 1.6;
}

/* フォント */
.ff_yakuHan { font-family: YakuHanMP, sans-serif; }
.ff_cormorant {
	font-family: "Cormorant", serif;
	font-optical-sizing: auto;
	font-weight: 300;
}
.ff_a-otf-ud-reimin {
	font-family: a-otf-ud-reimin-pr6n, sans-serif;
	font-weight: 300;
}
.bold { font-weight: 700; }
.heavy { font-weight: 900; }
.tal { text-align: left; }
.tac { text-align: center; }
.tar { text-align: right; }

/* 文字色 */
.fc_rd { color: #e6324e; }
.fc_bl { color: #22488A; }

/* マーカー */

/* 背景 */

@media screen and (max-width: 768px) {
body { font-size: 1.4em; }
}


/* --------------------------------------------------------
	リンク
-------------------------------------------------------- */
a {
	color: inherit;
	transition: .5s;
}
a:hover { opacity: 0.5; }
::-moz-selection {
	color: #fff;
	background: #2e3445;
}
::selection {
	color: #fff;
	background: #2e3445;
}
/* テキストリンク
-------------------------------------------------------- */
a.underline { text-decoration: underline; }
a.underline:hover {
	text-decoration: none;
	opacity: 1;
}

/* アンカーリンク
-------------------------------------------------------- */
.anchor {
	margin-top: -90px;
	padding-top: 90px;
}
@media screen and (max-width: 1024px) {
.anchor {
	margin-top: -200px;
	padding-top: 200px;
}
}
@media screen and (max-width: 768px) {
.anchor {
	margin-top: -68px;
	padding-top: 68px;
}
}



/* --------------------------------------------------------
	共通
-------------------------------------------------------- */
.inner {
	max-width: 1200px;
	width: 94.6666%;
	margin: auto;
}
.inner.mw1000 { max-width: 1000px; }

@media screen and (max-width: 768px) {
.inner.is_wide { width: 100%; }
}


/* iframe */
.iframe { position: relative; }
.iframe.youtube { padding-top: 56.25%; }
.iframe iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}


/* flex */
.flex {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.nowrap { flex-wrap: nowrap; }
.fd_c {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.fd_rr {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}
.ai_fs {
	-webkit-box-align: start;
	align-items: flex-start;
}
.ai_fe {
	-webkit-box-align: end;
	align-items: flex-end;
}
.ai_c {
	-webkit-box-align: center;
	align-items: center;
}
.jc_fs {
	-webkit-box-pack: start;
	justify-content: flex-start;
}
.jc_fe {
	-webkit-box-pack: end;
	justify-content: flex-end;
}
.jc_c {
	-webkit-box-pack: center;
	justify-content: center;
}
.jc_sb {
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.jc_sa {
	justify-content: space-around;
}
.order1 {
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
}
.order2 {
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}

/* --------------------------------------------------------
	アニメーション
-------------------------------------------------------- */
.trigger {
	opacity: 0;
}
/* 下から上へ */
.animation.animation01 {
	animation: fadeup .8s ease forwards;
}
/* 左から右へ */
.animation.animation02 {
	animation: faderight .8s ease forwards;
}
/* 右から左へ */
.animation.animation03 {
	animation: fadeleft .8s ease forwards;
}

@keyframes fadeup{
	from {
		opacity: 0;
		transform: translateY(2em);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes faderight{
	from {
		opacity: 0;
		transform: translateX(-2em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes fadeleft{
	from {
		opacity: 0;
		transform: translateX(2em);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes maskSlide {
	0% {
		clip-path: inset(0 100% 0 0);
	}
	15% {
		clip-path: inset(0 0% 0 0);
	}
	45% {
		clip-path: inset(0 0% 0 0);
	}
	65% {
		clip-path: inset(0 0% 0 100%);
	}
	100% {
		clip-path: inset(0 100% 0 100%);
	}
}
@keyframes maskSlideReverse {
	0% {
		clip-path: inset(0 0 0 100%);
	}
	15% {
		clip-path: inset(0 0 0 0);
	}
	45% {
		clip-path: inset(0 0 0 0);
	}
	65% {
		clip-path: inset(0 100% 0 0);
	}
	100% {
		clip-path: inset(0 100% 0 100%);
	}
}
/* --------------------------------------------------------
	title
-------------------------------------------------------- */
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}

/* --------------------------------------------------------
	btn
-------------------------------------------------------- */
.c-btn01 {
	max-width: 320px;
	width: 100%;
	border: solid 1px #2e3445;
	display: -webkit-box;
	display: flex;
	padding: 16px 38px;
}
.c-btn01 > span {
	display: inline-block;
	padding-left: 44px;
	position: relative;
}
.c-btn01 > span::before {
	content: "";
	width: 22px;
	height: 15px;
	background-image: url("../img/icon_mail_bk.svg");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 7.5px);
	left: 0;
}
@media screen and (max-width: 768px) {
}


/* --------------------------------------------------------
	リスト
-------------------------------------------------------- */

/* --------------------------------------------------------
	テーブル
-------------------------------------------------------- */

/* --------------------------------------------------------
	余白
-------------------------------------------------------- */


/* --------------------------------------------------------
	PC SP
-------------------------------------------------------- */
.is_sp { display: none; }
@media screen and (max-width: 768px) {
	.is_pc { display: none; }
	.is_sp { display: block; }
}


/* --------------------------------------------------------
	header
-------------------------------------------------------- */
header {
	width: 100%;
	height: min(6.9vw, 90px);
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	padding: 0 18px;
	position: absolute;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: 10;
}
header.is_scrolled {
	height: min(4.6vw, 60px);
	background: #fff;
	position: fixed;
	top: -180px;
}
.is_scroll header.is_scrolled { top: 0; }
.hdr_logo a {
	white-space: nowrap;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: end;
	align-items: flex-end;
}
.hdr_logo .en {
	font-size: min(2.85vw, 4rem);
	letter-spacing: 0.1em;
	line-height: 1;
}
.hdr_logo .ja {
	font-size: min(1.142vw, 1.6rem);
	letter-spacing: 0.54em;
	margin: 0 0 4px 4px;
}
header.is_square .hdr_logo {
	width: min(12.5vw, 150px);
	height: min(12.5vw, 150px);
	position: absolute;
	top: 0;
	left: 0;
}
header.is_square .hdr_logo a {
	width: 100%;
	height: 100%;
	background: #fff;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
}
header.is_square .hdr_logo .ja { margin: 4px 0 0; }
.hdr_nav {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	flex: 1 1 auto;
}
.hdr_nav ul {
	font-size: min(1.142vw, 1.6rem);
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	justify-content: flex-end;
}
.hdr_nav ul li:not(:last-child) {
	margin: 0 min(3vw, 48px) 0 0;
}
.hdr_nav ul li a {
	display: inline-block;
	position: relative;
}
.hdr_nav ul li a::after {
	content: "";
	width: min(9.5vw, 123px);
	height: min(3.8vw, 50px);
	background-image: url("../img/circle.svg");
	background-repeat: no-repeat;
	background-size: contain;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: .5s;
}
header.is_scrolled .hdr_nav ul li a::after {
	background-image: url("../img/circle_bl.svg");
}
.hdr_nav ul li a:hover,
.hdr_nav ul li a:hover::after {
	opacity: 1;
}
header .c-btn01 {
	max-width: min(22.8vw, 320px);
	font-size: min(1.142vw, 1.6rem);
	margin: 0 0 0 min(2.5vw, 40px);
	padding: 10px min(1.428vw, 20px);
}
header .c-btn01 > span {
	padding-left: 32px;
}
header.is_square .hdr_nav,
header.is_square .c-btn01 {
	color: #fff;
}
header.is_square .c-btn01 {
	border-color: #fff;
}
header.is_square .c-btn01 > span::before {
	background-image: url("../img/icon_mail_wh.svg");
}
header.is_scrolled .c-btn01 {
	color: #fff;
	background: #2e3445;
}
header.is_scrolled .c-btn01 > span::before {
	background-image: url("../img/icon_mail_wh.svg");
}
.menu_head {
	height: 80px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: end;
	justify-content: flex-end;
}
.is_scroll .menu_head {
	height: 60px;
}
.hamb {
	width: 118px;
	height: 80px;
	border-radius: 50%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
}
header .hamb { display: none; }
.hamb .hamb_icon {
	width: 50px;
	height: 13px;
	position: relative;
}
.hamb .hamb_icon span {
	width: 100%;
	height: 1px;
	background: #000;
	display: block;
	cursor: pointer;
	position: absolute;
	left: 0;
	transition: .5s;
}
.hamb .hamb_icon span:nth-child(1) {
	top: 0;
}
.hamb .hamb_icon span:nth-child(2) {
	top: calc(100% - 1px);
}

.is_hamb_open { overflow: hidden; }
.is_hamb_open #menu {
	right: 0;
}
#menu {
	color: #fff;
	max-width: 480px;
	width: 100%;
	min-height: 100vh;
	height: 100%;
	background: #2e3445;
	overflow: auto;
	position: fixed;
	top: 0;
	right: -480px;
	transition: .5s;
	z-index: 20;
}
#menu .hamb {
	position: relative;
}
#menu .hamb span {
	background: #fff;
}
#menu .hamb span:nth-child(1),
#menu .hamb span:nth-child(2) {
	top: 6px;
}
#menu .hamb .hamb_icon span:nth-child(1) {
	transform: rotate(45deg);
}
#menu .hamb .hamb_icon span:nth-child(2) {
	transform: rotate(-45deg);
}
.menu_nav,
.menu_btn {
	margin: 40px 0 0;
	padding: 0 5.333%;
}
.menu_nav ul li:not(:last-child) {
	margin: 0 0 24px;
}
.menu_btn .c-btn01 {
	max-width: inherit;
	border-color: #fff;
}
.menu_btn .c-btn01 > span::before {
	background-image: url("../img/icon_mail_wh.svg");
}
.menu_bg {
	width: 100%;
	height: 100%;
	background: #707a9e;
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: 15;
}
.is_hamb_open .menu_bg {
	visibility: inherit;
	opacity: .5;
}
@media screen and (max-width: 1024px) {
header {
	height: 80px;
	-webkit-box-pack: end;
	justify-content: flex-end;
	padding-right: 118px;
}
header.is_scrolled {
	height: 60px;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
header.is_square {
	position: relative;
}
.hdr_logo .en {
	font-size: 4rem;
}
.hdr_logo .ja {
	font-size: 1.6rem;
}
header.is_square .hdr_logo {
	width: 150px;
	height: 150px;
}
.hdr_nav,
header .c-btn01 > span span { display: none; }
header .c-btn01 {
	font-size: 0;
	max-width: inherit;
	width: auto;
	border: none;
	margin: 0;
	padding: 0;
}
header .c-btn01 > span {
	padding-left: 0;
}
header .c-btn01 > span::before {
	width: 27px;
	height: 18px;
	display: inline-block;
	position: static;
}
header.is_square .c-btn01 > span::before {
	background-image: url("../img/icon_mail_bk.svg");
}
header.is_scrolled .c-btn01 {
	background: none;
}
header.is_scrolled .c-btn01 > span::before {
	background-image: url("../img/icon_mail_bk.svg");
}
header.is_scrolled .hamb {
	height: 60px;
}
header .hamb {
	display: -webkit-box;
	display: flex;
}
}
@media screen and (max-width: 768px) {
header {
	height: 60px;
	padding-right: 60px;
}
header.is_scrolled {
	height: 50px;
}
header.is_square .hdr_logo {
	width: 100px;
	height: 100px;
}
.hdr_logo .en {
	font-size: 2rem;
}
.hdr_logo .ja {
	font-size: .8rem;
}
header .c-btn01 > span::before {
	width: 18px;
	height: 13px;
}
.hamb {
	width: 60px;
	height: 60px;
}
header.is_scrolled .hamb {
	height: 50px;
}
.hamb .hamb_icon {
	width: 25px;
	height: 8px;
	position: relative;
}
.menu_head {
	height: 60px;
}
.is_scroll .menu_head {
	height: 50px;
}
.is_hamb_open .hamb .hamb_icon span:nth-child(1),
.is_hamb_open .hamb .hamb_icon span:nth-child(2) {
	top: 4px;
}
}


/* --------------------------------------------------------
	footer
-------------------------------------------------------- */
footer {
	color: #fff;
	background: #2e3445;
	padding: 40px 0;
}
.ftr_logo {
	text-align: center;
	position: relative;
}
.ftr_logo::after {
	content: "";
	width: 100%;
	height: 2px;
	background: url("../img/pattern01.gif") repeat-x;
	background-size: contain;
	display: block;
	margin: 24px 0 0;
}
.ftr_logo .en {
	font-size: 4rem;
}
.ftr_logo .ja {
	letter-spacing: 0.54em;
	margin: -10px 0 0;
}
#copyright {
	color: #959595;
	text-align: center;
	margin: 16px 0 0;
}
@media screen and (max-width: 768px) {
footer {
	padding: 24px 0;
}
.ftr_logo::after {
	margin: 12px 0 0;
}
.ftr_logo .en {
	font-size: 3rem;
}
.ftr_logo .ja {
	font-size: 1.2rem;
	margin: -5px 0 0;
}
#copyright {
	font-size: 1rem;
}
}

.section_title > div {
	position: relative;
	z-index: 0;
}
.section_title .en {
	color: #f1f5f8;
	font-size: min(15vw, 20rem);
	line-height: 1;
}
.section_title.is_wh .en {
	color: #fff;
}
.section_title .ja {
	color: #2e3445;
	font-size: min(2.8vw, 3.6rem);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.section_title.tate .ja {
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
.section_title.tate {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: sideways;
}
}
@media screen and (max-width: 1024px) {
.section_title .en {
	font-size: min(19.53125vw, 20rem);
}
.section_title.tate .ja {
	font-size: min(3.515625vw, 3.6rem);
	top: 50%;
	transform: translateY(-50%);
}
}
@media screen and (max-width: 768px) {
.section_title .en {
	font-size: 7.5rem;
}
.section_title .ja {
	font-size: 1.8rem;
}
}
@media screen and (max-width: 480px) {
.section_title .en {
	font-size: 20vw;
}
.section_title .ja {
	font-size: 4.8vw;
}
}


/* --------------------------------------------------------
	メインビジュアル
-------------------------------------------------------- */
#mv {
	height: min(78.125vw, 800px);
	padding: 0 0 0 4.7%;
	position: relative;
}
#mv .line,
#mv .line img {
	width: 100%;
}
#mv .line {
	clip-path: inset(0 0 0 100%);
	animation: maskSlideReverse 5.5s ease-in-out infinite;
	position: absolute;
	bottom: 4%;
	left: 0;
	z-index: 1;
}
#mv > div:not(.line) {
	height: 100%;
	position: relative;
}
.mv_list {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.mv_list_img {
	width: 100%;
	height: 100%;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.mv_list_img.img01 {
	background-image: url("../img/main01.jpg?250902");
}
.mv_list_img.img02 {
	background-image: url("../img/main02.jpg?250902");
}
.mv_textWrap {
	color: #fff;
	width: 100%;
	letter-spacing: 0.1rem;
	text-align: center;
	padding: 0 0 0 4%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
}
.mv_title {
	font-size: min(15vw, 18rem);
	line-height: .9;
}
.mv_text {
	font-size: min(3.333vw, 4rem);
	text-shadow: 
		rgba(46, 52, 69, .3) 1px 1px 10px, rgba(46, 52, 69, .3) -1px 1px 10px,
		rgba(46, 52, 69, .3) 1px -1px 10px, rgba(46, 52, 69, .3) -1px -1px 10px;
}
.mv_list_img.img02 .mv_text {
	color: #2e3445;
	text-shadow: 
		rgba(255, 255, 255, .3) 1px 1px 10px, rgba(255, 255, 255, .3) -1px 1px 10px,
		rgba(255, 255, 255, .3) 1px -1px 10px, rgba(255, 255, 255, .3) -1px -1px 10px;
}

@media screen and (max-width: 768px) {
#mv {
	height: auto;
	padding: 0;
}
#mv > div {
	padding-top: 106.6666%;
}
.mv_list_img.img01 {
	background-image: url("../img/main01_sp.jpg?250902");
}
.mv_list_img.img02 {
	background-image: url("../img/main02_sp.jpg?250902");
}
.mv_title {
	font-size: 9rem;
}
.mv_text {
	font-size: 3rem;
}
}
@media screen and (max-width: 480px) {
.mv_title {
	font-size: 24vw;
}
.mv_text {
	font-size: 8vw;
}
}


/* --------------------------------------------------------
	SAZUKERUとは
-------------------------------------------------------- */
#intro {
	padding: min(8.333vw, 100px) 0;
}
#intro .inner {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
}
.intro_title {
	color: #2e3445;
	font-size: min(6vw, 7.2rem);
	letter-spacing: 0.1em;
	line-height: 1.6;
	margin: 0 min(1.333vw, 16px) 0 0;
}
.intro_title span {
	font-size: min(5vw, 6rem);
	letter-spacing: 0.05em;
}
.intro_text {
	font-size: min(2.5vw, 3rem);
	line-height: 2;
}
@media screen and (max-width: 768px) {
	#intro {
		padding: 56px 0 40px;
	}
#intro .inner {
	max-width: 400px;
	width: 87%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: start;
	align-items: flex-start;
}
.intro_title,
.intro_title span {
	font-size: 3.6rem;
}
.intro_title span {
	display: inline-block;
	margin-left: -32px;
}
.intro_title {
	margin: 0 0 16px;
}
.intro_text {
	font-size: 1.5rem;
	width: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
}
}
@media screen and (max-width: 480px) {
.intro_title,
.intro_title span {
	font-size: 9.6vw;;
}
.intro_text {
	font-size: 4vw;
}
}


/* --------------------------------------------------------
	SAZUKERUについて
-------------------------------------------------------- */
#aboutus {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
#aboutus .section_title {
	width: 100%;
	text-align: center;
	opacity: .2;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1;
}
#aboutus > div {
	color: #fff;
	width: 33.3333%;
	background-position: center;
	background-size: cover;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-pack: center;
	justify-content: center;
	overflow: hidden;
	padding: min(12.25vw, 196px) min(6vw, 96px);
	position: relative;
}
#aboutus > div::after {
	content: "";
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	transition: .5s;
	z-index: 0;
}
#aboutus .aboutus01::after {
	background-image: url("../img/aboutus01.jpg");
}
#aboutus .aboutus02::after {
	background-image: url("../img/aboutus02.jpg");
}
#aboutus .aboutus03::after {
	background-image: url("../img/aboutus03.jpg");
}
#aboutus > div:hover::after {
	transform: scale(1.2);
}
.aboutus_title,
.aboutus_text {
	position: relative;
	z-index: 2;
}
.aboutus_title {
	font-size: min(2.1vw, 3rem);
	margin: 0 0 16px;
}
.aboutus_text {
	font-size: min(1.23vw, 1.6rem);
	line-height: 2.25;
}
@media screen and (max-width: 1024px) {
#aboutus .section_title {
	height: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: sideways;
}
#aboutus > div {
	width: 100%;
	min-height: 478px;
}
.aboutus_title {
	font-size: 3rem;
}
.aboutus_text {
	font-size: 1.6rem;
}
}
@media screen and (max-width: 768px) {
#aboutus .section_title .en {
	font-size: 10rem;
}
#aboutus > div {
	min-height: 334px;
}
#aboutus .aboutus01 {
	background-image: url("../img/aboutus01_sp.jpg");
}
#aboutus .aboutus02 {
	background-image: url("../img/aboutus02_sp.jpg");
}
#aboutus .aboutus03 {
	background-image: url("../img/aboutus03_sp.jpg");
}
.aboutus_title {
	font-size: 2.4rem;
}
.aboutus_text {
	font-size: 1.4rem;
}
}
@media screen and (max-width: 480px) {
#aboutus .section_title .en {
	font-size: 26.6666vw;
}
}


/* --------------------------------------------------------
	事業内容
-------------------------------------------------------- */
#business {
	padding: 72px 0;
}
#business .section_title .ja {
	right: min(11vw, 175px);
	left: inherit;
	transform: translateY(-50%);
}
.business_flow {
	margin-top: max(-4.5vw, -72px);
	margin-bottom: min(4.5vw, 72px);
}
.business_flow_list {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	position: relative;
}
.business_flow_list::before,
.business_flow_list::after {
	content: "";
	width: calc(50% - 260px);
	height: 1px;
	background: #2e3445;
	position: absolute;
	top: 50%;
}
.business_flow_list::before {
	left: 140px;
}
.business_flow_list::after {
	right: 140px;
}
.business_flow_list li {
	color: #2e3445;
	position: relative;
}
.business_flow_list li::before,
.business_flow_list li::after {
	content: "";
	width: 10px;
	height: 10px;
	background: #2e3445;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.business_flow_list li::before {
	left: -5px;
}
.business_flow_list li::after {
	right: -5px;
}
.business_flow_list li:nth-child(1)::before,
.business_flow_list li:nth-child(3)::after {
	content: none;
}
.business_flow_list_text,
.business_flow_list_logo {
	width: 100%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.business_flow_list_text {
	font-size: 2.4rem;
}
.business_flow_list_logo {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
.business_flow_list_logo .en {
	font-size: 4rem;
	line-height: 1.1;
}
.business_flow_list_logo .ja {
	letter-spacing: 0.54em;
	margin: 4px 0 0;
}
.business_flow_list_circle {
	width: 140px;
	height: 140px;
	border: solid 1px #2e3445;
	border-radius: 50%;
}
.business_flow_list li:nth-child(2),
.business_flow_list li:nth-child(2) .business_flow_list_circle {
	width: 240px;
	height: 240px;
}
.business_flow_list li:nth-child(2) .business_flow_list_circle {
	border: none;
	animation: spin 3s infinite linear;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@keyframes spin {
	0% {
		-webkit-transform: translate(-50%, -50%) rotate(0deg);
		transform: translate(-50%, -50%) rotate(0deg);
		opacity: 1;
	}
	50% {
		-webkit-transform: translate(-50%, -50%) rotate(180deg);
		transform: translate(-50%, -50%) rotate(180deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: translate(-50%, -50%) rotate(360deg);
		transform: translate(-50%, -50%) rotate(360deg);
		opacity: 1;
	}
}
@media screen and (max-width: 1024px) {
#business .section_title .ja {
	right: min(17vw, 175px);
}
.business_flow {
	margin-top: max(-7vw, -72px);
	margin-bottom: min(7vw, 72px);
}
}
@media screen and (max-width: 768px) {
#business {
	padding: 56px 0;
}
#business .section_title .ja {
	right: 8px;
}
.business_flow {
	margin-top: max(-5.3vw, -40px);
	margin-bottom: 36px;
}
.business_flow_list {
	width: 88%;
	margin: auto;
}
.business_flow_list::before,
.business_flow_list::after {
	width: calc(50% - 130px);
}
.business_flow_list::before {
	left: 70px;
}
.business_flow_list::after {
	right: 70px;
}
.business_flow_list li::before,
.business_flow_list li::after {
	width: 5px;
	height: 5px;
}
.business_flow_list li::before {
	left: -2.5px;
}
.business_flow_list li::after {
	right: -2.5px;
}
.business_flow_list_text {
	font-size: 1.2rem;
}
.business_flow_list_logo .en {
	font-size: 2rem;
}
.business_flow_list_logo .ja {
	font-size: .8rem;
}
.business_flow_list_circle {
	width: 70px;
	height: 70px;
}
.business_flow_list li:nth-child(2),
.business_flow_list li:nth-child(2) .business_flow_list_circle {
	width: 120px;
	height: 120px;
}
}
@media screen and (max-width: 480px) {
.business_flow_list::before,
.business_flow_list::after {
	width: calc(50% - 35vw);
}
.business_flow_list::before {
	left: 19vw;
}
.business_flow_list::after {
	right: 19vw;
}
.business_flow_list_text {
	font-size: 3.2vw;
}
.business_flow_list_logo .en {
	font-size: 5.3333vw;
}
.business_flow_list_logo .ja {
	font-size: 2.1333vw;
}
.business_flow_list_circle {
	width: 19vw;
	height: 19vw;
}
.business_flow_list li:nth-child(2),
.business_flow_list li:nth-child(2) .business_flow_list_circle {
	width: 32vw;
	height: 32vw;
}
}

#business .list_wrap {
	position: relative;
}
#business .list_wrap .line,
#business .list_wrap .line img {
	width: 100%;
}
#business .list_wrap .line {
	clip-path: inset(0 100% 0 0);
	animation: maskSlide 6s ease-in-out infinite;
	position: absolute;
	top: 34%;
	left: 0;
	z-index: 0;
}
.business_list {
	max-width: 1600px;
	width: 100%;
	margin: auto;
	position: relative;
	z-index: 1;
}
.business_list > li {
	width: 50%;
}
.business_list_img {
	padding-top: 52.5%;
	position: relative;
}
.business_list_img_num {
	color: #fff;
	font-size: min(6.25vw, 10rem);
	line-height: .8;
	position: absolute;
	top: min(1.125vw, 18px);
	z-index: 1;
}
.business_list_img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	z-index: 0;
}
.business_list_title {
	font-size: 2.4rem;
	margin: 0 0 16px;
}
.business_list ul li {
	padding-left: 20px;
	position: relative;
}
.business_list ul li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.business_list ul li:not(:last-child) {
	margin: 0 0 4px;
}

@media screen and (min-width: 769px) {
.business_list > li:nth-child(2n) {
	margin-top: min(12.5vw, 200px);
}
.business_list > li:not(:nth-child(2n)) .business_list_img_num {
	left: min(1vw, 16px);
}
.business_list > li:nth-child(2n) .business_list_img_num {
	right: min(1vw, 16px);
}
.business_list_textWrap {
	padding: 24px min(5.625vw, 90px) 32px;
}
}
@media screen and (max-width: 768px) {
#business .list_wrap .line {
	top: 15%;
}
.business_list {
	width: 94.6666%;
}
.business_list > li {
	width: 100%;
}
.business_list > li:not(:last-child) {
	margin: 0 0 56px;
}
.business_list_img {
	padding-top: 63.38%;
}
.business_list_img_num {
	font-size: 4.5rem;
	top: 10px;
	left: 10px;
}
.business_list_textWrap {
	padding: 24px 4% 0;
}
.business_list_title {
	font-size: 1.8rem;
}
}
@media screen and (max-width: 480px) {
.business_list_title {
	font-size: 4.8vw;
}
}


/* --------------------------------------------------------
	実績紹介
-------------------------------------------------------- */
#works {
	background: #f1f4f7;
	padding: 64px 0 56px;
}
.works_list {
	margin-top: max(-4.3vw, -56px);
}
.works_list li {
	position: relative;
}
.works_list li:nth-child(odd) {
	padding: 64px 6.25% 64px 0;
}
.works_list li:nth-child(even) {
	padding: 64px 0 64px 6.25%;
}
.works_list li::before,
.works_list li::after {
	content: "";
	background: #fff;
	position: absolute;
	top: 0;
}
.works_list li::before {
	width: 93.75%;
	height: 4px;
}
.works_list li:nth-child(odd)::before {
	left: 0;
}
.works_list li:nth-child(even)::before {
	right: 0;
}
.works_list li::after {
	width: 4px;
	height: 100%;
}
.works_list li:nth-child(odd)::after {
	right: 6.25%;
}
.works_list li:nth-child(even)::after {
	left: 6.25%;
}
.works_list li:not(:last-child) {
	margin: 0 0 56px;
}
.works_list .inner {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
.works_list li:nth-child(even) .inner {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}
.works_list_img {
	width: 37.5%;
}
.works_list li:nth-child(odd) .works_list_img {
	margin: 0 5% 0 0;
}
.works_list li:nth-child(even) .works_list_img {
	margin: 0 0 0 5%;
}
.swiper.works_list_img_list .swiper-pagination {
	margin: 10px 0 0;
	position: static;
}
.swiper.works_list_img_list .swiper-pagination-bullet {
	color: #bfbfbf;
	width: auto;
	height: auto;
	background: none;
	opacity: 1;
	margin: 0;
	padding: 0 20px;
	position: relative;
}
.swiper.works_list_img_list .swiper-pagination-bullet:not(:last-child)::after {
	content: "";
	width: 1px;
	height: calc(100% - 8px);
	background: #bfbfbf;
	position: absolute;
	top: 4px;
	right: 0;
}
.swiper.works_list_img_list .swiper-pagination-bullet-active {
	color: #004986;
}
.works_list_textWrap {
	width: 57.5%;
}
.works_list_change {
	font-size: 1.8rem;
	margin: 0 0 12px;
}
.works_list_name {
	font-size: 2.4rem;
	margin: 0 0 10px;
}
.works_list_name span {
	font-size: 3.6rem;
}
.works_list_text {
	line-height: 2.25;
}
.works_list_text p:not(:last-child) {
	margin: 0 0 16px;
}
@media screen and (max-width: 1024px) {
.works_list {
	margin-top: max(-5.46875vw, -56px);
}
}
@media screen and (max-width: 768px) {
#works {
	padding: 56px 0;
}
.works_list {
	margin-top: 0;
}
.works_list .inner,
.works_list li:nth-child(even) .inner {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
}
.works_list li:nth-child(odd),
.works_list li:nth-child(even) {
	padding: 24px 4% 56px;
}
.works_list li::before {
	width: 97.3333%;
	height: 2px;
}
.works_list li::after {
	width: 2px;
}
.works_list li:nth-child(odd)::after {
	right: 2.6666%;
}
.works_list li:nth-child(even)::after {
	left: 2.6666%;
}
.works_list_img {
	max-width: 450px;
	width: 60%;
}
.works_list li:nth-child(odd) .works_list_img,
.works_list li:nth-child(even) .works_list_img {
	margin: 0 0 24px;
}
.works_list li:not(:last-child) {
	margin: 0 0 40px;
}
.works_list_textWrap {
	width: 100%;
}
.works_list_change {
	font-size: 1.4rem;
	margin: 0 0 2px;
}
.works_list_name span {
	font-size: 3rem;
}
.works_list_text {
	line-height: 2.1;
}
}


/* --------------------------------------------------------
	代表メッセージ
-------------------------------------------------------- */
#message {
	background: #2e3445;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	flex-direction: row-reverse;
}
#message > div {
	width: 50%;
}
#message .img { position: relative; }
#message .img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
#message .text_wrap {
	color: #fff;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	padding: 0 4% 0 0;
}
#message .section_title {
	margin: 0 64px 0 0;
}
#message .section_title .en {
	color: #444a58;
	line-height: .7;
}
#message .section_title .ja {
	color: #fff;
}
#message .text_flexWrap {
	display: -webkit-box;
	display: flex;
	flex: 1 1 auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
}
#message .name_wrap {
	font-size: min(1.23vw, 1.6rem);
	margin: 0 0 40px;
}
#message .name {
	font-size: min(2.76vw, 3.6rem);
	margin: 0 0 10px;
}
#message .job {
	max-width: 360px;
	line-height: 2.25;
}
#message .text {
	font-size: min(1.23vw, 1.6rem);
	max-width: 390px;
	line-height: 2.875;
}
@media screen and (max-width: 1024px) {
#message {
	padding: 72px 0;
}
#message > div { width: 100%; }
#message .img.is_pc { display: none; }
#message .img.is_sp {
	width: 100%;
	display: block;
	margin: 0 0 40px;
	padding-top: 85.333%;
}
#message .text_wrap {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: start;
	align-items: flex-start;
	padding: 0;
}
#message .section_title {
	width: 100%;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	margin: 0;
}
#message .section_title .ja {
	right: 2.4%;
	left: inherit;
}
#message .text_flexWrap {
	padding: 0 3.73333%;
}
#message .name_wrap,
#message .text {
	font-size: 1.6rem;
}
#message .name {
	font-size: 3.6rem;
}
}
@media screen and (max-width: 768px) {
#message {
	padding: 56px 0;
}
#message .name_wrap,
#message .text {
	font-size: 1.4rem;
}
#message .name_wrap {
	margin: 0 0 16px;
}
#message .name {
	font-size: 2.4rem;
}
}

/* --------------------------------------------------------
	会社概要
-------------------------------------------------------- */
#company {
	overflow: hidden;
	padding: 116px 0 160px;
	position: relative;
}
#company .section_title {
	position: absolute;
	top: 0;
	right: max(-3vw, -40px);
	z-index: 0;
}
#company .inner {
	position: relative;
	z-index: 1;
}
.company_tbl th,
.company_tbl td {
	border-bottom: solid 1px #bfbfbf;
	padding: 24px 20px;
}
.company_tbl tr:last-child th,
.company_tbl tr:last-child td {
	border-bottom: none;
	padding-bottom: 0;
}
.company_tbl th {
	font-weight: 700;
	width: 312px;
}
.company_tbl ol {
	counter-reset: number 0;
}
.company_tbl ol li {
	padding-left: 32px;
	position: relative;
}
.company_tbl ol li::before {
	counter-increment: number 1;
	content: counter(number) ".";
	position: absolute;
	top: 0;
	left: 0;
}
.company_tbl ol.pb_on li:not(:last-child) {
	margin: 0 0 4px;
}
.company_tbl .btn_wrap {
	margin: 24px 0 0;
}
.company_tbl .c-btn01 {
	max-width: 336px;
}
@media screen and (max-width: 1024px) {
#company {
	padding: 72px 0;
}
#company .section_title {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: start;
	align-items: flex-start;
	position: relative;
	right: 0;
}
#company .section_title .ja {
	left: 20px;
}
}
@media screen and (max-width: 768px) {
#company {
	padding: 56px 0;
}
.company_tbl th,
.company_tbl td {
	width: 100%;
	display: block;
	padding: 16px 0;
}
.company_tbl th {
	border-bottom: none;
	padding-bottom: 0;
}
.company_tbl td {
	padding-top: 8px;
}
.company_tbl .btn_wrap {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
}
}

/* --------------------------------------------------------
	無限スクロール
-------------------------------------------------------- */
.infinite_scroll {
	position: relative;
}
.infinite_scroll .line,
.infinite_scroll .line img {
	width: 100%;
}
.infinite_scroll .line {
	clip-path: inset(0 0 0 100%);
	animation: maskSlideReverse 7s ease-in-out infinite;
	position: absolute;
	bottom: 12.8%;
	left: 0;
	z-index: 1;
}
.infinite_scroll_list {
	z-index: 0;
}
.infinite_scroll_list .swiper-wrapper {
	transition-timing-function: linear;
}
.infinite_scroll_list img {
	width: 100%;
}
@media screen and (max-width: 768px) {
.infinite_scroll .line {
	bottom: 20%;
}
}

/* --------------------------------------------------------
	お問い合わせ
-------------------------------------------------------- */
#contact {
	background: #f1f4f7;
	padding: min(9.2vw, 120px) 0 120px;
	position: relative;
}
#contact > .section_title {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
#contact > .section_title .en {
	line-height: .8;
}
#contact .inner {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}
#contact.thanks .inner {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
}
#contact .head {
	width: 42%;
}
#contact .head .section_title {
	margin: 0 0 10px;
}
#contact.thanks .section_title {
	margin: 0 0 24px;
}
#contact .head .section_title .ja,
#contact.thanks .section_title .ja {
	position: static;
	transform: none;
}
.contactform {
	width: 58%;
}
.contactform_tbl > div:not(:last-child) {
	margin: 0 0 24px;
}
.contactform_tbl dt {
	font-weight: 700;
	margin: 0 0 6px;
}
.required {
	color: #7d0000;
	font-weight: 400;
}
.form_radio_list > li:not(:last-child) {
	margin: 0 0 6px;
}
.form_privacy {
	font-size: 1.4rem;
	max-height: 200px;
	background: #fff;
	border-radius: 10px;
	overflow: auto;
	margin: 0 0 16px;
	padding: 16px;
}
.form_privacy_list > div:not(:last-child) {
	margin: 0 0 24px;
}
.form_privacy_list dt {
	font-weight: 700;
	margin: 0 0 4px;
}
.form_privacy_list dd:not(:first-of-type) {
	margin: 10px 0 0;
}
.form_privacy_list a {
	color: #004986;
	text-decoration: underline;
}
.form_privacy_list a:hover {
	opacity: 1;
	text-decoration: none;
}
#contact.thanks .btn_wrap {
	margin: 24px 0 0;
}
@media screen and (max-width: 1024px) {
#contact {
	padding: min(11.7vw, 120px) 0 120px;
}
#contact .head,
.contactform {
	width: 100%;
}
#contact .head {
	margin: 0 0 24px;
}
}
@media screen and (max-width: 768px) {
#contact {
	padding: 40px 0 56px;
}
#contact.thanks .section_title {
	margin: 0 0 16px;
}
.form_privacy {
	font-size: 1.2rem;
	max-height: 150px;
	border-radius: 5px;
	padding: 14px 10px;
}
#contact.thanks .btn_wrap {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
}
}


#mailformpro input[type="text"],
#mailformpro input[type="email"],
#mailformpro input[type="tel"],
#mailformpro select,
#mailformpro textarea {
	font-size: 16px;
	width: 100% !important;
	background: #fff;
	border: solid 1px #dcdcdc;
	border-radius: 0;
	box-shadow: none;
	padding: 10px 16px;
	box-sizing: border-box;
}
#mailformpro input.mfp_element_all,
#mailformpro textarea.mfp_element_all {
	max-width: 100% !important;
}
#mailformpro textarea {
	height: 230px !important;
}
#mailformpro .radio,
#mailformpro .checkbox {
	display: inline-block;
	margin: 0;
	position: relative;
	cursor: pointer;
}
#mailformpro .radio {
	padding: 0 0 0 28px;
}
#mailformpro .radio::before,
#mailformpro .radio::after {
	content: "";
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: .5s;
}
#mailformpro .radio::before {
	width: 12px;
	height: 12px;
	background: #7086a9;
	opacity: 0;
	left: 4px;
	z-index: 1;
}
#mailformpro .radio::after {
	width: 20px;
	height: 20px;
	background: #fff;
	left: 0;
	z-index: 0;
}

#mailformpro .checkbox {
	padding-left: 32px;
}
#mailformpro .checkbox::before,
#mailformpro .checkbox::after {
	content: "";
	position: absolute;
	left: 0;
	transition: .5s;
}
#mailformpro .checkbox::before {
	width: 25px;
	height: 25px;
	background: #fff;
	border: solid 1px #7086a9;
	top: -1px;
}
#mailformpro .checkbox::after {
	width: 20px;
	height: 16px;
	background: url(../img/icon_check_bl.svg) no-repeat;
	background-size: contain;
	opacity: 0;
	top: 4px;
	left: 4px;
}

#mailformpro input[type=radio]:checked ~ label::before,
#mailformpro input[type=checkbox]:checked ~ label::after {
	opacity: 1;
}
#mailformpro .btn_wrap {
	margin: 30px 0 0;
}
#mailformpro .c-btn01 {
	color: #fff;
	background: #2e3445;
	border-radius: 0;
	box-shadow: none;
	-webkit-box-pack: center;
	justify-content: center;
	text-shadow: none;
	position: relative;
}
#mailformpro .c-btn01::before {
	content: "";
	width: 22px;
	height: 15px;
	background-image: url(../img/icon_mail_wh.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 7.5px);
	left: 32px;
}
@media screen and (max-width: 768px) {
#mailformpro input[type="text"],
#mailformpro input[type="email"],
#mailformpro input[type="tel"],
#mailformpro select,
#mailformpro textarea {
	font-size: 14px;
}
#mailformpro textarea {
	height: 150px !important;
}
#mailformpro .checkbox::before {
	width: 20px;
	height: 20px;
	top: 1px;
}
#mailformpro .checkbox::after {
	width: 15.5px;
	height: 11.5px;
}
}


