/*=========================================================================
# reset css
========================================================================== */

* {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
	display: block;
}

img {
	border: none;
	vertical-align: bottom;
}

a {
	text-decoration: none;
	cursor: pointer;
}

/*=========================================================================
# Base
========================================================================== */

/* フォント読み込み */

@font-face {
	src: url("../fonts/BrittanySignature.ttf") format("truetype");
	font-family: "brittany";
}

body {
	background: #20201f; /*遷移アニメーションと同じ色を指定*/
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	font-family: "Montserrat", sans-serif;
}

/* ローディング画面(画面遷移) */

body.appear {
	background-color: #20201f; /*画面を開いた後の背景色を指定*/
}

a {
	color: inherit;
	transition: all 0.3s;
}

a:hover {
	opacity: 0.6;
}

img {
	width: 100%;
	max-width: 100%;
}

/*=========================================================================
# Layout
========================================================================== */

.l-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
	opacity: 0; /*画面遷移の後現れるコンテンツ設定(はじめは透過0に)*/
}

/*bodyにappearクラスがついたら出現*/

body.appear .l-wrapper {
	-webkit-animation-name: PageAnimeAppear;
	-webkit-animation-duration: 1s;
	-webkit-animation-delay: 0.2s;
	-webkit-animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
	animation-name: PageAnimeAppear;
	opacity: 0;
}

.l-splash {
	z-index: 300;
	position: fixed;
	width: 100%;
	height: 100%;
	background: #20201f;
	color: #fff;
	text-align: center;
}

.l-splash__logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.l-splash__logo img {
	width: 250px;
	height: 100%;
}

.l-main {
	flex: 1;
}

.l-footer {
	z-index: 10;
	position: relative;
	background-color: #817b64;
}

.l-inner {
	width: 100%;
	max-width: 925px;
	margin: 0 auto;
	padding: 0 20px;
}

.l-inner--wide {
	max-width: 1080px;
}

.l-tag {
	position: relative;
}

.l-tag__pattern1 {
	position: absolute;
	top: -70px;
	right: 0;
}

.l-tag__pattern2 {
	position: absolute;
	right: 0;
}

.l-top-content {
	position: relative;
}

.l-top-content::before {
	z-index: -1;
	position: absolute;
	top: -265px;
	left: -495px;
	width: 650px;
	height: 642px;
	transform: rotate(0deg);
	background: url(../img/pattern02.png) no-repeat center center/contain;
	content: "";
	opacity: 0.6;
}

.l-top-content::after {
	z-index: -1;
	position: absolute;
	right: -320px;
	bottom: -156px;
	width: 580px;
	height: 504px;
	transform: rotate(-4deg);
	background: url(../img/pattern01.png) no-repeat center center/contain;
	content: "";
	opacity: 0.6;
}

.l-services01-content {
	display: flex;
	position: relative;
	justify-content: space-between;
}

.l-services01-content::before {
	z-index: -1;
	position: absolute;
	top: -406px;
	left: -405px;
	width: 650px;
	height: 642px;
	transform: rotate(0deg);
	background: url(../img/pattern02.png) no-repeat center center/contain;
	content: "";
	opacity: 0.6;
}

.l-services01-content::after {
	z-index: -1;
	position: absolute;
	right: -320px;
	bottom: -156px;
	width: 580px;
	height: 504px;
	transform: rotate(-4deg);
	background: url(../img/pattern01.png) no-repeat center center/contain;
	content: "";
	opacity: 0.6;
}

.l-gallery-content {
	padding: 35px 0 140px;
}

.l-gallery-content__img {
	display: flex;
	padding: 0 30px;
}

.l-gallery-content__tag {
	margin-top: 80px;
}

.l-gallery-content__row {
	position: relative;
	width: 480px;
	max-width: 100%;
	margin: 300px auto 0;
}

.l-gallery-content__row::before {
	z-index: -1;
	position: absolute;
	top: -380px;
	left: -474px;
	width: 650px;
	height: 642px;
	transform: rotate(0deg);
	background: url(../img/pattern02.png) no-repeat center center/contain;
	content: "";
	opacity: 0.6;
}

.l-gallery-content__row::after {
	z-index: -1;
	position: absolute;
	right: -328px;
	bottom: -293px;
	width: 580px;
	height: 504px;
	transform: rotate(-4deg);
	background: url(../img/pattern01.png) no-repeat center center/contain;
	content: "";
	opacity: 0.6;
}

.l-services02-content {
	padding: 25px 0 60px;
	overflow: hidden;
}

.l-services02-content__img {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding: 0 15px;
}

.l-services02-content__img img {
	width: calc((100% - 30px) / 3);
	margin-left: 15px;
}

.l-services02-content__img img:nth-child(n+4) {
	margin-top: 15px;
}

.l-services02-content__img img:nth-child(1) {
	margin-left: 0;
}

.l-services02-content__img img:nth-child(4) {
	margin-left: 0;
}

.l-services02-content__tag {
	margin-top: 20px;
}

.l-services02-content__text {
	position: relative;
	margin-top: 230px;
}

.l-services02-content__text::before {
	z-index: -1;
	position: absolute;
	top: -380px;
	left: -474px;
	width: 650px;
	height: 642px;
	transform: rotate(0deg);
	background: url(../img/pattern02.png) no-repeat center center/contain;
	content: "";
	opacity: 0.6;
}

.l-services02-content__text::after {
	z-index: -1;
	position: absolute;
	right: -328px;
	bottom: -293px;
	width: 580px;
	height: 504px;
	transform: rotate(-4deg);
	background: url(../img/pattern01.png) no-repeat center center/contain;
	content: "";
	opacity: 0.6;
}

.l-wedo-content {
	position: relative;
	width: 100%;
	height: 103.39vw;
	background: url(../img/wedo.jpg) no-repeat center center/cover;
}

.l-wedo-row-item__logo {
	text-align: center;
}

.l-wedo-row-item__logo img {
	width: 180px;
}

.l-wedo-row-item__opening {
	margin-top: 30px;
}

.l-wedo-row-item__casting {
	margin-top: 30px;
}

.l-wedo-row-item__feature {
	margin-top: 30px;
}

/*=========================================================================
# Component
========================================================================== */

.c-section-mv {
	width: 100%;
	height: 680px;
	background: url(../img/top.jpg) no-repeat center center/cover;
}

.c-section-mv--services {
	height: 820px;
	background: url(../img/services.jpg) no-repeat center center/cover;
}

.c-content-list li {
	position: relative;
	padding-left: 15px;
	font-size: 1.25rem;
}

.c-content-list li::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 4px;
	height: 4px;
	transform: translateY(-50%);
	border-radius: 50%;
	background-color: #fff;
	content: "";
}

.c-content-d-list {
	font-size: 1.25rem;
}

.c-content-d-list dt {
	width: calc(100% - 85px);
}

.c-content-d-list dd {
	width: 85px;
	font-size: 1rem;
	font-family: "Renner", sans-serif;
}

.c-content-d-list__row {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.c-content-d-list__row:not(:first-child) {
	margin-top: 10px;
}

.c-content-d-list__text-en {
	font-size: 1.25rem;
	font-family: "Renner", sans-serif;
}

.c-content-d-list__text-jp {
	font-size: 0.9rem;
}

.c-section-title {
	color: #9f9874;
	font-size: 2.441rem;
	font-family: "brittany", cursive;
	text-align: left;
}

.c-section-title--la {
	font-size: 3.052em;
}

.c-text-en {
	font-size: 1.25rem;
	font-family: "Renner", sans-serif;
}

.c-text-jp {
	font-size: 0.9rem;
}

/*=========================================================================
# Project
========================================================================== */

.p-splashbg1,
.p-splashbg2 {
	display: none;
}

body.appear .p-splashbg1,
body.appear .p-splashbg2 {
	display: block;
}

/*右に消えるエリア*/

body.appear .p-splashbg1 {
	-webkit-animation-name: PageAnime;
	-webkit-animation-duration: 1.4s;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	z-index: 999;
	position: fixed;
	bottom: 50%;
	left: 0;
	width: 100%;
	height: 100vh;
	transform: scaleY(1);
	background-color: #20201f;
	content: "";
	animation-duration: 1.4s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	animation-name: PageAnime; /*伸びる背景色の設定*/
}

/*左に消えるエリア*/

body.appear .p-splashbg2 {
	-webkit-animation-name: PageAnime2;
	-webkit-animation-duration: 1.4s;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: forwards;
	z-index: 999;
	position: fixed;
	top: 50%;
	left: 0;
	width: 100%;
	height: 100vh;
	transform: scaleY(1);
	background-color: #20201f;
	content: "";
	animation-duration: 1.4s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	animation-name: PageAnime2; /*伸びる背景色の設定*/
}

.p-header {
	display: flex;
	z-index: 20;
	position: relative;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 200px;
	padding: 0 20px;
	background-color: #817b64;
}

.p-header__logo {
	position: relative;
	padding: 0 28%;
}

.p-header__logo::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 150px;
	height: 1.5px;
	transform: translateY(-50%);
	background-color: #20201f;
	content: "";
}

.p-header__logo::after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 150px;
	height: 1.5px;
	transform: translateY(-50%);
	background-color: #20201f;
	content: "";
}

.p-header__logo img {
	width: 100%;
	max-width: 250px;
}

.p-header__title {
	position: relative;
	padding: 0 25%;
	font-size: 64px;
	font-family: "brittany", cursive;
	text-align: center;
}

.p-header__title::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 150px;
	height: 1.5px;
	transform: translateY(-50%);
	background-color: #fff;
	content: "";
}

.p-header__title::after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 150px;
	height: 1.5px;
	transform: translateY(-50%);
	background-color: #fff;
	content: "";
}

.p-tag {
	width: 520px;
	height: 160px;
	padding: 20px 30px;
	border-radius: 80px 0 0 80px;
	background-color: #9f9874;
	font-size: 1.25rem;
	text-align: right;
}

.p-tag p {
	letter-spacing: 0.02em;
}

.p-tag__title {
	font-size: 2.441rem;
	line-height: 1.8;
	font-family: "brittany", cursive;
}

.p-tag__title--fz-lg {
	font-size: 3.815rem;
}

.p-iframe-wrapper {
	position: relative;
	padding-top: 35%;
}

.p-iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.p-gallery-img__left {
	width: 27.44%;
}

.p-gallery-img__left img:not(:first-child) {
	margin-top: 15px;
}

.p-gallery-img__right {
	width: 70.56%;
	margin-left: 2%;
}

.p-gallery-row-item:not(:first-child) {
	margin-left: 120px;
}

.p-wedo-row-item__title {
	text-align: center;
}

.p-wedo-row-item__text-en {
	margin-top: 30px;
	text-align: center;
}

.p-wedo-row-item__text-jp {
	margin-top: 30px;
	text-align: center;
}

.p-footer-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px 0;
}

.p-footer-nav__item:not(:first-child) {
	margin-left: 40px;
}

.p-footer-nav__link {
	display: block;
	position: relative;
	padding-left: 45px;
	font-size: 0.8rem;
	transition: all 0.3s;
}

.p-footer-nav__link:hover {
	opacity: 0.6;
}

.p-footer-nav__link::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 30px;
	transform: translateY(-50%);
	border-radius: 50%;
	background-color: #9f9874;
	content: "";
}

.p-footer-nav__link--tel::after {
	position: absolute;
	top: 50%;
	left: 7.5px;
	width: 15px;
	height: 15px;
	transform: translateY(-50%);
	background: url(../img/icon-tel.png) no-repeat center center/contain;
	content: "";
}

.p-footer-nav__link--mail::after {
	position: absolute;
	top: 50%;
	left: 7.5px;
	width: 15px;
	height: 15px;
	height: 4vw;
	transform: translateY(-50%);
	background: url(../img/icon-mail.png) no-repeat center center/contain;
	content: "";
}

.p-footer-nav__link--map::after {
	position: absolute;
	top: 50%;
	left: 7.5px;
	width: 15px;
	height: 15px;
	transform: translateY(-50%);
	background: url(../img/icon-map.png) no-repeat center center/contain;
	content: "";
}

/*=========================================================================
# Utility
========================================================================== */

/* 上余白 */

.u-mt40 {
	margin-top: 40px;
}

.u-mt30 {
	margin-top: 30px;
}

.u-mt20 {
	margin-top: 20px;
}

.u-mt10 {
	margin-top: 10px;
}

.u-mt5 {
	margin-top: 5px;
}

/* 左余白 */

.u-ml40 {
	margin-left: 40px;
}

/* ネガティブマージン */

.u-py-md {
	padding-top: 80px;
	padding-bottom: 80px;
}

.u-pb20 {
	padding-bottom: 20px;
}

.u-text-al-c {
	text-align: center;
}

.u-text-al-l {
	text-align: left;
}

.u-text-al-r {
	text-align: right;
}

@media screen and (min-width: 768px) {

.l-wedo-content__text {
	position: absolute;
	bottom: 100px;
	bottom: 8.475vw;
	left: 50%;
	transform: translateX(-50%);
}

.u-hidden-pc {
	display: none;
}

.u-mt-70 {
	margin-top: -70px;
}

}

@media screen and (max-width: 767px) {

.l-tag__pattern1 {
	top: -9.333vw;
}

.l-top-content {
	overflow: hidden;
}

.l-top-content::before {
	top: -12vw;
	left: -67.467vw;
	width: 120vw;
	height: 118.667vw;
}

.l-top-content::after {
	right: -42.667vw;
	bottom: -33.067vw;
	width: 112vw;
	height: 97.333vw;
}

.l-services01-content {
	display: block;
	overflow: hidden;
}

.l-services01-content::before {
	top: -10.667vw;
	left: -55.2vw;
	width: 120vw;
	height: 118.667vw;
}

.l-services01-content::after {
	right: -42.667vw;
	bottom: -33.067vw;
	width: 112vw;
	height: 97.333vw;
}

.l-services01-content__item:not(:first-child) {
	margin-top: 10.667vw;
}

.l-gallery-content {
	padding: 4vw 0 16vw;
	overflow: hidden;
}

.l-gallery-content__img {
	padding: 0 4vw;
}

.l-gallery-content__tag {
	margin-top: 6.667vw;
}

.l-gallery-content__row {
	width: 92vw;
	margin-top: 140px;
	margin-top: 37.3333333333vw;
}

.l-gallery-content__row::before {
	top: -55.733vw;
	left: -66.667vw;
	width: 120vw;
	height: 118.667vw;
}

.l-gallery-content__row::after {
	right: -40vw;
	bottom: -88vw;
	width: 112vw;
	height: 97.333vw;
}

.l-services02-content {
	padding: 15px 0 60px;
}

.l-services02-content__img img {
	width: calc((100% - 20px) / 3);
	margin-left: 10px;
}

.l-services02-content__img img:nth-child(n+4) {
	margin-top: 10px;
}

.l-services02-content__tag {
	margin-top: 20px;
	margin-top: 5.3333333333vw;
}

.l-services02-content__text {
	margin-top: 130px;
	margin-top: 34.6666666667vw;
}

.l-services02-content__text::before {
	top: -55.733vw;
	left: -66.667vw;
	width: 120vw;
	height: 118.667vw;
}

.l-services02-content__text::after {
	right: -40vw;
	bottom: -88vw;
	width: 112vw;
	height: 97.333vw;
}

.l-wedo-content {
	height: auto;
	padding: 26.667vw 0 10.667vw;
}

.l-wedo-row-item__logo img {
	width: 120px;
}

.l-wedo-row-item__opening {
	margin-top: 15px;
}

.c-section-mv {
	height: 66.667vw;
}

.c-section-mv--services {
	height: 80vw;
}

.c-content-list li {
	font-size: 14px;
	font-size: 3.7333333333vw;
}

.c-content-d-list dt {
	width: calc(100% - 16vw);
}

.c-content-d-list dd {
	width: 16vw;
	font-size: 14px;
	font-size: 3.7333333333vw;
}

.c-content-d-list__row:not(:first-child) {
	margin-top: 5px;
	margin-top: 1.3333333333vw;
}

.c-content-d-list__text-en {
	font-size: 14px;
	font-size: 3.7333333333vw;
}

.c-content-d-list__text-jp {
	font-size: 12px;
	font-size: 3.2vw;
}

.c-section-title {
	font-size: 31.25px;
	font-size: 8.3333333333vw;
}

.c-text-en {
	font-size: 14px;
	font-size: 3.7333333333vw;
}

.c-text-jp {
	font-size: 12px;
	font-size: 3.2vw;
}

.p-header {
	height: 21.333vw;
}

.p-header__logo {
	padding: 0 30%;
}

.p-header__logo::before {
	width: 75px;
	height: 1px;
}

.p-header__logo::after {
	width: 75px;
	height: 1px;
}

.p-header__logo img {
	min-width: 34.667vw;
	max-width: 34.667vw;
}

.p-header__title {
	padding: 0 30%;
	font-size: 8.533vw;
}

.p-header__title::before {
	width: 75px;
	height: 1px;
}

.p-header__title::after {
	width: 75px;
	height: 1px;
}

.p-tag {
	width: 58.933vw;
	height: 18.667vw;
	padding: 1.067vw 5.333vw;
	font-size: 10px;
	font-size: 2.6666666667vw;
}

.p-tag__title {
	font-size: 20px;
	font-size: 5.3333333333vw;
}

.p-tag__title--fz-lg {
	font-size: 31.25px;
	font-size: 8.3333333333vw;
}

.p-iframe-wrapper {
	padding-top: 56.25%;
}

.p-gallery-row-item:not(:first-child) {
	margin-top: 40px;
	margin-top: 10.6666666667vw;
	margin-left: 0;
}

.p-footer-nav {
	flex-direction: column;
	align-items: flex-start;
	width: 56vw;
	max-width: 100%;
	margin: 0 auto;
}

.p-footer-nav__item:not(:first-child) {
	margin-top: 15px;
	margin-top: 4vw;
	margin-left: 0;
}

.p-footer-nav__link {
	padding-left: 30px;
	padding-left: 8vw;
	font-size: 10px;
	font-size: 2.6666666667vw;
}

.p-footer-nav__link::before {
	width: 5.333vw;
	height: 5.333vw;
}

.p-footer-nav__link--tel::after {
	left: 1.333vw;
	width: 2.667vw;
	height: 2.667vw;
}

.p-footer-nav__link--mail::after {
	left: 1.333vw;
	width: 2.667vw;
	height: 2.667vw;
}

.p-footer-nav__link--map::after {
	left: 1.333vw;
	width: 2.667vw;
	height: 2.667vw;
}

.u-hidden-sp {
	display: none;
}

.u-ml40 {
	margin-left: 10.667vw;
}

.u-py-md {
	padding-top: 16vw;
	padding-bottom: 16vw;
}

.u-py-sm-sp {
	padding-top: 10.667vw;
	padding-bottom: 10.667vw;
}

}

@-webkit-keyframes PageAnimeAppear {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes PageAnimeAppear {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@-webkit-keyframes PageAnime {

0% {
	transform: scaleY(1);
	transform-origin: top;
}

100% {
	transform: scaleY(0);
	transform-origin: top;
}

}

@keyframes PageAnime {

0% {
	transform: scaleY(1);
	transform-origin: top;
}

100% {
	transform: scaleY(0);
	transform-origin: top;
}

}

@-webkit-keyframes PageAnime2 {

0% {
	transform: scaleY(1);
	transform-origin: bottom;
}

100% {
	transform: scaleY(0);
	transform-origin: bottom;
}

}

@keyframes PageAnime2 {

0% {
	transform: scaleY(1);
	transform-origin: bottom;
}

100% {
	transform: scaleY(0);
	transform-origin: bottom;
}

}

