@charset "UTF-8";

/* ------------- COMMON ------------- */
/*  Setting
================ */
:root {
  --white: #FFF;
  --l-gray: #F0F0F0;
  --gray: #AAA;
  --d-gray: #888;
  --black: #313131;
  --border1: #EDE7E2;
  --color1: #A0A0A0;
  --beige: #DBD1C8;
  --red: #FF0000;

  --font1: 'Oswald', sans-serif;
  --mincho: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
/*  Loading
================ */
body #container::before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 105;
  transition: 1s .4s cubic-bezier(.39, .575, .565, 1);
}
body.loaded #container::before {
  opacity: 0;
  pointer-events: none;
}
/*  Animation
================ */
.iv { opacity: 0; }
/*  Base
================ */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-size: 3.475vw;
  font-family: sans-serif;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--black);
}
@media (min-width: 375px) {
  body { font-size: calc(76% + .125vw); }
}
@media (min-width: 576px) {
  body { font-size: 76%; }
}
@media (min-width: 992px) {
  body {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  }
}
@media (min-width: 1440px) {
  body { font-size: 93.8%; }
}

#container {
  width: 100%;
  overflow: hidden;
}

/*  Header
================ */
#siteHeader {
  color: var(--black);
  height: 68px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background .6s, color .6s, height .6s; }
body.teaser #siteHeader {
	background: rgba(255,255,255,0);
  color: var(--white); }
body:not(.gNavOpen) #siteHeader.is-fixed {
  background: rgba(255,255,255,1);
  color: var(--black);
}
body:not(.teaser) #siteHeader .gNav,
body:not(.teaser) #siteHeader .nav-btn {
	display: none;
}

.inner-header {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }

#logo {
  margin: 0;
  flex: 0 1 140px;
  max-width: 140px;
  margin: 0 5%;
  position: relative;
  z-index: 999;
}
#logo .logo__inner {
  display: block;
  color: inherit;
  position: relative;
}
#logo .logo__inner img,
#logo .logo__inner svg {
	width: 100%;
	height: auto;
	max-height: 68px;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

@media (min-width: 992px) {
  #siteHeader {
    height: 115px;
  }
  #siteHeader.is-fixed {
	  height: 80px;
	}
  #logo {
    flex: 0 0 12.615em;
    max-width: 12.615em;
    transition: transform .6s;
  }
  #siteHeader.is-fixed #logo {
    transform: scale(0.8);
	}
}



#siteHeader .icon-links {
	height: 68px;
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	right: calc(5vw - 17px + 68px);
	z-index: 2;
	transition: top .6s;
}
#siteHeader .icon-links a {
	display: block;
	padding: .5em;
	transition: color .1s;
}
#siteHeader .icon-links a svg {
	fill: currentColor;
	vertical-align: middle;
}
@media (min-width: 992px){
	#siteHeader .icon-links {
		top: calc((115px - 68px)/2);
		margin-right: 1em;
	}
	#siteHeader.is-fixed .icon-links {
	  top: calc((80px - 68px)/2);
	}
	#siteHeader .icon-links a {
		padding: 1em;
	}
}


/*  Global Navi
================ */
nav a {
  display: block;
  text-decoration: none; }
nav ul {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0;
  margin: 0; }
nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 1.25;
  padding: .75em 1em; }
nav ul li a span,
nav ul li a em {
  display: block;
  font-style: normal; }

.gNav {
  flex: 1 1 100%;
  max-width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;

  display: none; 
}
.gNav .gNav__overlay {
	width: 100%;
	height: 100%;
	background: transparent;
	position: absolute;
  top: 0;
  right: 0;
}
.gNav__inner {
  display: flex;
  width: 100%;
  height: 100vh;
  background: var(--black) url(img/gnav_bg.jpg) no-repeat center center / cover;
  color: var(--white);
  position: absolute;
  top: 0;
  right: 0;
    
  opacity: 0;
  transition: all 1s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
.gNav__inner::before {
  content: '';
  display: block;
  background: rgba(0,0,0,.8);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.gNav .navBar {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
.gNav .navBar ul {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}
.gNav .navBar > ul {
  flex-direction: column;
  margin: 30px;
}
.gNav .navBar > ul > li {
  margin: .5em 0;
  opacity: 0;
  transform: translate3d(0,-1em,0);
  transition: transform 1.6s cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 1s;
}
.gNav .navBar > ul > li:nth-of-type(1) { transition-delay: 0.4s; }
.gNav .navBar > ul > li:nth-of-type(2) { transition-delay: 0.5s; }
.gNav .navBar > ul > li:nth-of-type(3) { transition-delay: 0.6s; }
.gNav .navBar > ul > li:nth-of-type(4) { transition-delay: 0.7s; }
.gNav .navBar > ul > li:nth-of-type(5) { transition-delay: 0.8s; }
.gNav .navBar > ul > li:nth-of-type(6) { transition-delay: 0.9s; }
.gNav .navBar > ul > li:nth-of-type(7) { transition-delay: 1.0s; }
.gNav .navBar > ul > li:nth-of-type(8) { transition-delay: 1.1s; }
.gNav .navBar > ul > li:nth-of-type(9) { transition-delay: 1.2s; }

.gNav .navBar ul li a {
  padding: 1em 0;
  letter-spacing: 0.06em;
}
.gNav .navBar ul li a span {
  display: block;
  font-family: var(--font1);
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: .35em;
}

/* OPEN */
.gNav.on .gNav__inner{
  opacity: 1;
}
.gNav.on .navBar > ul > li {
  opacity: 1;
  transform: translate3d(0,0,0);
}

/* Nav Btn */
.nav-btn {
  background: transparent;
  color: currentColor;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  padding: 15px;
  position: absolute;
  top: 0;
  right: calc(5vw - 17px);
  z-index: 2;
  transition: top .6s;
}
.nav-btn i {
  display: block;
  background: currentColor;
  height: 1px;
  position: absolute;
  right: 17px;
  left: 17px;
  margin-top: -0.5px;
  transition: transform .3s, background .4s;
}
.nav-btn i:nth-of-type(1){
  top: 50%;
}
.nav-btn i:nth-of-type(2){
  top: 24px;
  transition: top .3s .35s, transform .3s .1s;
}
.nav-btn i:nth-of-type(3){
  top: 44px;
  transition: top .3s .35s, transform .3s .1s;
}
.nav-btn.on i:nth-of-type(1){
  transform: scaleX(0);
}
.nav-btn.on i:nth-of-type(2){
  top: 50%;
  transform: rotate(30deg);
  transition: top .3s .1s, transform .3s .35s;
}
.nav-btn.on i:nth-of-type(3){
  top: 50%;
  transform: rotate(-30deg);
  transition: top .3s .1s, transform .3s .35s;
}

@media(min-width: 992px){
  .gNav .navBar ul li a span {
    font-size: 1.875rem;
  }
  .nav-btn {
    top: calc((115px - 68px)/2);
  }
  #siteHeader.is-fixed .nav-btn {
	  top: calc((80px - 68px)/2);
	}
}

/*  Footer
================ */
#siteFooter {
  clear: both;
  overflow: hidden;
  background: var(--white);
}
#siteFooter .inner-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#siteFooter .logo__inner {
  display: inline-block;
  color: inherit;
}
#siteFooter .footer-bottom {
	padding-top: 4.25em;
  background: var(--white);
}
#siteFooter .footer-bottom__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#siteFooter .footer-bottom #footerLogo img,
#siteFooter .footer-bottom #footerLogo svg {
  width: 12.615em;
  margin-bottom: .25em;
  fill: currentColor;
}
#siteFooter .footer-bottom .navBar ul li {
	font-size: .923em;
	position: relative;
}
#siteFooter .footer-bottom .navBar ul li:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: .8em;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#siteFooter .copyright {
  font-size: .846em;
  text-align: center;
}

/*  Set
================ */
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s, background .2s, opacity .2s;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
p { margin-top: 1em; margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
@media (min-width: 992px) {
	p.read {
		font-size: 1.077em;
	}
}
h2,h3 {
	line-height: 1.75;
	margin-bottom: .75em;
}
h4,h5,h6 {
	line-height: 1.75;
	margin-bottom: 1em;
}
h2 { font-size: 1.846em; }
h3 { font-size: 1.7em; }
h4 { font-size: 1.538em; }
h5 { font-size: 1.385em; }
h6 { font-size: 1.231em; }
@media (min-width: 992px){
	h2 { font-size: 2.769em; }
}
.ttl, .mincho {
	font-family: var(--mincho);
	font-weight: 500 !important;
}
.font1, .en_ttl {
	font-family: var(--font1);
	font-weight: 400;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }

@media (min-width: 576px) {
  .text-sm-left { text-align: left !important; }
  .text-sm-right { text-align: right !important; }
  .text-sm-center { text-align: center !important; }
}
@media (min-width: 768px) {
  .text-md-left { text-align: left !important; }
  .text-md-right { text-align: right !important; }
  .text-md-center { text-align: center !important; }
}
@media (min-width: 992px) {
  .text-lg-left { text-align: left !important; }
  .text-lg-right { text-align: right !important; }
  .text-lg-center { text-align: center !important; }
}
@media (min-width: 1200px) {
  .text-xl-left { text-align: left !important; }
  .text-xl-right { text-align: right !important; }
  .text-xl-center { text-align: center !important; }
}

.bg-l-gray {
	background-color: var(--l-gray);
}

body .container {
	padding-right: 10.6%;
	padding-left: 10.6%;
}
@media (min-width: 576px) {
	body .container {
		padding-right: 40px;
		padding-left: 40px;
	}
}
@media (min-width: 1200px) {
	body .container {
		max-width: 1080px;
	}
}
@media (min-width: 1440px) {
	body .container {
		max-width: 1400px;
	}
}


.section {
  margin-top: 3.5em;
  margin-bottom: 3.5em;
}
.section-padding {
  padding-top: 3.5em;
  padding-bottom: 3.5em;
}
.content {
  margin-top: 2.25em;
  margin-bottom: 2.25em;
}

@media (min-width: 992px) {
  .section {
    margin-top: 4.25em;
    margin-bottom: 4.25em;
  }
  .section-padding {
    padding-top: 4.25em;
    padding-bottom: 4.25em;
  }
  .content {
    margin-top: 3.25em;
    margin-bottom: 3.25em;
  }
}

.section__header .en_ttl {
	line-height: 1;
	margin-bottom: .25em;
}
.section__header h2.en_ttl {
	font-size: 2.308em;
}
.en_ttl + .ja_ttl {
	font-size: 1.077em;
}


/* ------------- MAIN ------------- */

/* ============================
   MV
=============================== */
#mv {
	height: 100vh;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	color: var(--white);
}
#mv::before {
	content: '';
	background: rgba(0,0,0,0.2);
	mix-blend-mode: multiply;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
#mv .mv__inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
#mv .mv__inner .mv-txt {
	font-size: .923em;
	margin-top: 1.25em;
}
@media (min-width: 992px){
	#mv .mv__inner .mv-txt {
		font-size: 1.214em;
	}
}
@media (orientation: landscape){
	#mv .mv__inner .mv-txt-img .h {
		width: 56.28em;
	}
	#mv .mv__inner .mv-txt-img .v {
		display: none;
	}
}
@media (orientation: portrait){
	#mv {
		background-position: center;
	}
	#mv .mv__inner .mv-txt-img .v {
		width: 19em;
	}
	#mv .mv__inner .mv-txt-img .h {
		display: none;
	}
}


.scrolldown{
	width: 70px;
	height: 73px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.scrolldown::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	transform: translateX(-50%);
	animation:
	 circlemove 2s ease-in-out infinite,
	 cirlemovehide 2s ease-out infinite;
}
@keyframes circlemove {
	0%,40% { bottom: 66px; }
	100% { bottom: -7px; }
}
@keyframes cirlemovehide {
	0% { opacity: 0; }
	40%,100% { opacity: 1; }
}

.scrolldown::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 70px;
	background: currentColor;
	transform: translateX(-50%);
}
/* ============================
   Intro
=============================== */
#intro .container {
	position: relative;
}
#intro .ttlBox {
	text-align: center;
	position: absolute;
	right: 3%;
	left: 3%;
	z-index: 3;
	/*mix-blend-mode: color-dodge;*/
}
#intro .ttlBox .ttl_1 {
	width: 59%;
	margin-bottom: -3%;
}
#intro .imgBox {
	padding-top: 25%;
}
@media (max-width: 767px) {
	#intro .imgBox figure {
		margin-right: 0 !important;
	}
}
@media (max-width: 767px) {
	#intro .txtBox p br {
		display: none;
	}
}
@media (min-width: 768px) {
	#intro .ttlBox {
		text-align: left;
		right: auto;
		left: 1.75%;
	}
	#intro .ttlBox .ttl_1 {
		width: 41.5%;
		margin-bottom: -1.75%;
	}
	#intro .ttlBox .ttl_2 {
		width: 68.75%;
		margin-left: 4.5%;
	}
	#intro .imgBox {
		padding-top: 6%;
		min-height: 100%;
	}
	#intro .imgBox div,
	#intro .imgBox figure {
		height: calc(100% - 1.5em);
	}
	#intro .imgBox figure img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#intro .txtBox {
		padding-top: 25%;
	}
}
@media (min-width: 992px) {
	#intro .ttlBox {
		left: -3%;
	}
	#intro .imgBox {
		padding-left: 0;
	}
}


/* ============================
   About
=============================== */
#about {
	background: var(--l-gray);
	position: relative;
	z-index: 1;
}
#about::before {
	content: '';
	display: block;
	height: 80vw;
	background: var(--white);
	position: absolute;
	right: 5%;
	bottom: 0;
	left: 0;
	z-index: -1;
}
#about .about-top {
	color: var(--white);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	padding-top: calc(66.666vw - 1.35em);
	position: relative;
}
#about .about-top .container {
	position: relative;
	z-index: 2;
}
#about .about_2 figure {
	text-align: right;
}
#about .rossi .en_ttl {
	font-size: 14px;
}
#about .rossi p {
	font-size: 11px;
}
@media (max-width: 767px) {
	#about .about-top {
		color: inherit;
		background-color: var(--beige);
}
	#about .about-top::after {
		content: '';
		display: block;
		background: var(--beige);
		position: absolute;
		top: 66.666vw;
		right: 0;
		bottom: -55vw;
		left: 0;
	}
	#about .about-top .section__header {
		margin-top: 0;
	}
	#about .about_2 figure {
		margin: 3.75em 0 2em;
	}
	#about .about_2 figure img {
		width: 80%;
		max-width: 30em;
	}
	#about .about_2 figure.architecture img {
		width: 100%;
		max-width: 30em;
	}
}
@media (max-width: 575px) {
	#about .about-top .container h3 br {
		display: none;
	}
}
@media (max-width: 991px) {
	#about .about-top p br {
		display: none;
	}
}
@media (min-width: 576px) {
	#about::before {
		height: 67.5vw;
	}
	#about .about-top::after {
		bottom: -23em;
	}
	#about .rossi .over-left {
		margin-left: 0 !important;
	}
}
@media (min-width: 768px) {
	#about .about-top {
		background-size: cover;
		padding-top: 19vw;
		padding-bottom: 12.5vw;
		margin-bottom: -10%;
	}
	#about .about-top::before {
		content: '';
		display: block;
		background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
		opacity: .53;
		mix-blend-mode: multiply;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	#about .about_2 .txtBox {
		padding-top: 16%;
	}
	#about .about_2 figure.architecture {
		margin: 3em 0 0 0;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#about .about-top p {
		max-width: 58.333333%;
		padding-right: 15px;
	}
}
@media (min-width: 992px) {
	#about .about-top {
		padding-bottom: 7.5vw;
	}
}

#about .splide__arrow--prev { left: calc(10% - 15px); }
#about .splide__arrow--next { right: calc(10% - 15px); }
@media (min-width: 576px) {
	#about .splide__arrow--prev { left: calc(15% - 15px); }
	#about .splide__arrow--next { right: calc(15% - 15px); }
}
@media (min-width: 768px) {
	#about .splide__arrow--prev { left: calc(22.5% - 15px); }
	#about .splide__arrow--next { right: calc(22.5% - 15px); }
}
@media (min-width: 992px) {
	#about .splide__arrow--prev { left: calc(22.5% - 1.625em - 15px); }
	#about .splide__arrow--next { right: calc(22.5% - 1.625em - 15px); }
}

/* ============================
   Costume
=============================== */
#costume {
	background: var(--l-gray);
	padding-bottom: 15vw;
	position: relative;
	z-index: 1;
}
#costume::before {
	content: '';
	display: block;
	border-radius: 0 0 10vw 0;
	background: var(--white);
	position: absolute;
	top: 0;
	right: 5%;
	bottom: 5vw;
	left: 0;
	z-index: -1;
}
#costume .txtBox p {
	max-width: 49em;
}
#costume .slider-wrapper {
	margin-right: calc(((100vw - 100%)/2)*-1);
}
#costume .splide__track {
	padding-right: 37.5% !important;
}
@media (min-width: 576px) {
	#costume .splide__track {
		padding-right: 10% !important;
	}
}

#costume .splide__pagination {
   padding: 0;
   right: auto;
   bottom: -2.25em;
}
#costume .splide__arrow--prev { left: -15px; }
#costume .splide__arrow--next { right: calc(10.6vw - 15px); }
@media (min-width: 576px) {
	#costume .splide__arrow--next { right: calc(10% - 15px - .25em); }
}

/* ============================
   Access
=============================== */
.ggmap {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 80%;
	filter: grayscale(100%);
}
.ggmap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (min-width: 576px) {
	.ggmap {
		padding-top: 40%;
	}
}

#access {
  position: relative;
}
#access .ttlBox {
	width: 89.4%;
	position: absolute;
	right: 0;
	z-index: -1;
}
#access .map-link {
	display: inline-block;
	font-size: .923em;
	padding-left: 2em;
	background: url(img/icon-pin.svg) no-repeat left bottom / 1.2em;
	position: relative;
}
#access .map-link span {
	display: inline-block;
	border-bottom: 1px solid;
}
#access .access dl {
	margin-top: 3em;
}
#access .access dl dt {
	font-weight: 600;
	border-bottom: 1px solid var(--border1);
	padding-bottom: .25em;
	margin-top: 2em;
	margin-bottom: .75em;
}
@media (min-width: 576px) {
	#access .ttlBox {
		width: 60%;
	}
}
@media (min-width: 768px) {
	#access .ttlBox {
		width: 52.5%;
		margin-top: -1%;
	}
}
@media (min-width: 992px) {
	#access .access {
		display: flex;
		justify-content: flex-end;
	}
	#access .access dl {
		min-width: 44em;
		margin-top: -7em;
	}
}
/* ============================
   Contact
=============================== */
#contact {
	background: var(--l-gray);
}
#contact .section__header {
	text-align: center;
}
#contact .txtBox {
	padding-bottom: .75em;
}
#contact .mail-link {
	display: inline-block;
	font-size: 1.077em;
	padding-left: 2em;
	margin: .5em 20px 0;
	border-bottom: 1px solid;
	background: url(img/icon-mail.svg) no-repeat left center / 1.2em;
	position: relative;
}
#contact .mail-link span {
	display: inline-block;
}
#contact .tel-link {
	display: inline-block;
	font-size: 1.077em;
	/*padding-left: 2em;*/
	margin: .5em 20px 0;
	border-bottom: 1px solid;
	/*background: url(img/icon-mail.svg) no-repeat left center / 1.2em;*/
	position: relative;
}
#contact .tell-link span {
	display: inline-block;
}
@media (max-width: 767px) {
	#contact .mail-link {
		margin: .5em 10px 0 0;
	}
	#contact .tel-link {
		margin: .5em 0 0 10px;
	}
}
@media (min-width: 768px) {
	#contact .txtBox {
		text-align: center;
	}
}


#contact.confirm .telBtn {
	display: none;
}

/* ==========================================================================
   Form
========================================================================== */
.form-box {
	font-size: .875rem;
  text-align: left;
}
.form-box .form-group {
  margin-bottom: 12px;
  padding-bottom: 12px;
}
.form-box .row {
  margin-bottom: 15px;
}
.form-box .form-label {
	display: block;
  font-weight: 700;
  margin-bottom: .5em;
  position: relative;
}
.form-box .form-label .req {
  display: inline-block;
  color: var(--red);
	vertical-align: top;
	margin-left: .5em;
}
.form-box .form-label .any {
  background: var(--gray);
}
.form-box .button {
  margin-top: 15px;
}
.form-box .button-back {
  color: var(--color1);
  background: var(--l-gray);
  border-color: var(--l-gray);
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  background-color: var(--white);
  border: 1px solid transparent;
  border-radius: 0;
  outline: 0;
  box-sizing: border-box;
  font-size: 1rem;
  color: inherit;
  max-width: 100%;
  transition: border 0.2s ease-out;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--border1);
}
label {
  cursor: pointer;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"] {
	width: 100%;
  height: 58px;
  padding: 0 14px;
}
input[type="radio"], input[type="checkbox"] {
  margin-top: 0;
  margin-bottom: 0;
}
input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  background-color: var(--white);
  border: 1px solid transparent;
  border-radius: 0;
  outline: 0;
  box-sizing: border-box;
  color: inherit;
  width: 30px;
  height: 30px;
  margin: 0 1em 0 0 !important;
  position: relative;
}
input[type="checkbox"]:before {
  position: absolute;
  top: 4px;
  left: 10px;
  transform: rotate(50deg);
  width: 8px;
  height: 16px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  content: '';
  transition: border 0.2s ease-out;
}
input[type="checkbox"]:checked:before {
  border-color: var(--black);
}
textarea {
  padding: 14px;
  width: 100%;
  height: auto;
}
select {
  height: 40px;
  padding: 0 10% 0 14px;
  font-size: .75rem;
  font-weight: 700;
  background-image: url(../img/icon-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center right 10%;
  background-size: 11px;
}
select::-ms-expand {
  display: none;
}
.form-box .form-field label {
  display: flex;
  align-items: center;
}
.form-box .form-field .form-help {
  margin: 5px 0;
  font-size: .75rem;
  line-height: 1.75;
}
.form-box .form-group.privacy-check .form-label {
  margin-bottom: 1em;
}
::placeholder {
  color: var(--gray);
  font-size: .75rem;
  font-weight: 700;
}
::-ms-input-placeholder {
  color: var(--gray);
  font-size: .75rem;
  font-weight: 700;
}
:-ms-input-placeholder {
  color: var(--gray);
  font-size: .75rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .form-box .form-group {
    display: flex;
    margin-bottom: 20px;
  	padding-bottom: 20px;
  }
  .form-box .form-group.form-block {
    display: block;
    padding-bottom: 0;
  }
  .form-box .form-group .form-label {
    flex: 0 0 17em;
    margin-bottom: 0;
  }
  .mw_wp_form_input .form-box .form-group .form-label {
    line-height: 40px;
    padding-top: 9px;
  }
  .form-box .form-group .form-field {
    flex-basis: 100%;
  }
  .form-box .form-group.privacy-check .form-label {
	  line-height: 2;
	  margin-bottom: 0.5em;
	}
	.form-box .form-field .form-help {
	  font-size: .875rem;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.form-box .form-group.form-buttons .form-label {
		display: none;
	}
}
.privacy-check a {
  text-decoration: underline;
}
.form-scroll-field > * {
  margin: 0 0 .75rem;
}
.mw_wp_form_send_error {
  text-align: center;
}
.mw_wp_form .error {
  color: var(--red);
  font-family: var(--gothic);
  font-size: .923em;
  line-height: 1.25;
  margin: 5px 0;
}
.input-only, .confirm-only {
  display: none;
}
.mw_wp_form_input .input-only {
  display: block;
}
.mw_wp_form_confirm .confirm-only {
  display: block;
}
.mw_wp_form_confirm .form-label {
  line-height: inherit;
}
.mwform-radio-field:first-of-type {
  margin-top: 6px;
}
.mwform-radio-field:last-of-type {
  margin-bottom: 6px;
}
.horizontal-item {
  display: inline-flex;
}
.mwform-radio-field-text,
.mwform-checkbox-field-text {
  font-weight: 700;
  font-size: .75rem;
  padding-right: .5em;
  margin-right: 1em;
  line-height: 30px;
}
@media (min-width: 768px) {
	.mwform-radio-field-text,
	.mwform-checkbox-field-text {
	  font-size: .875rem;
	}
}
/* ==========================================================================
   Button
========================================================================== */
.button,
input[type="button"],
input[type="submit"] {
  display: inline-block;
  text-align: center;
  font-size: 1rem;
  font-family: inherit;
  letter-spacing: .05em;
  line-height: 1.5;
  font-weight: 600;
  padding: 1em 2.5em;
  width: 100%;
  min-width: 196px;
  background-color: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
  text-decoration: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: .2s;
}
.button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background-color: transparent;
  color: var(--black);
}




/* ============================
   Splide slider
=============================== */
main .splide__pagination__page {
   background: var(--l-gray);
   width: 8px;
   height: 8px;
   opacity: 1;
}
main .splide__pagination__page.is-active {
   background: var(--black);
   transform: scale(1);
}
main .splide__arrow {
	font-size: inherit;
	width: 30px;
	height: 30px;
   background: var(--black);
   opacity: 1;
}
main .splide__arrow svg {
   fill: var(--white);
	height: 8px;
	width: 8px;
}
