@charset "UTF-8";
/* ====================================================================================================
   import
==================================================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* ====================================================================================================
   foundation
==================================================================================================== */
/* --------------------------------------------------
variables
*/
/* maxWidth */
/* mediaScreen */
/* font */
/* color */
/* colorBg */
/* colorBorder */
/* colorFont */
/* other */
/* --------------------------------------------------
reset
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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;
}

/* --------------------------------------------------
basic
*/
html {
  position: relative;
  font-size: 6px;
  font-weight: 400;
  overflow-y: scroll;
}
@media (min-width: 720px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #231815;
  background-color: #eee;
}

hr {
  border: none;
}

a {
  color: #231815;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

/* scrollbar */
::-webkit-scrollbar {
  display: none;
}

/* fontSet */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Jost", "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small {
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1rem;
  color: #00807D;
}

p {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2rem;
}

/* ====================================================================================================
   layout
==================================================================================================== */
/* --------------------------------------------------
l-header
*/
.l-header .l-header__top {
  padding: 3rem 0;
}
.l-header .l-header__top .l-header__top__in {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.l-header .l-header__top .l-header__top__in .l-header__logo {
  width: auto;
}
.l-header .l-header__top .l-header__top__in .l-header__nav {
  display: none;
}
@media (min-width: 1080px) {
  .l-header .l-header__top .l-header__top__in .l-header__nav {
    display: block;
    margin-left: auto;
  }
}
.l-header .l-header__top .l-header__top__in .l-header__contactBtn {
  margin-left: auto;
}
@media (min-width: 1080px) {
  .l-header .l-header__top .l-header__top__in .l-header__contactBtn {
    margin-left: 3rem;
  }
}
.l-header .l-header__top .l-header__top__in .l-header__btn {
  position: relative;
  z-index: 1001;
  margin-left: 3rem;
}

.l-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background-color: #00807D;
}
.l-loading > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30vw;
  height: auto;
}
@media (min-width: 720px) {
  .l-loading > img {
    width: 15vw;
  }
}

.l-closeNav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background-color: #231815;
}
.l-closeNav ul {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
}
.l-closeNav ul li {
  display: block;
}
.l-closeNav ul li + li {
  margin-top: 4rem;
}
.l-closeNav ul li a {
  display: block;
  font-family: "Jost", "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 3rem;
  color: white;
}

/* --------------------------------------------------
l-contents
*/
.l-contents {
  overflow: hidden;
}

/* --------------------------------------------------
l-footer
*/
.l-footer {
  width: auto;
  background-color: #00807D;
}
.l-footer .l-footer__top {
  padding: 10rem 0;
}
.l-footer .l-footer__top .l-footer__top__in {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.l-footer .l-footer__top .l-footer__top__in .l-footer__logo {
  width: auto;
}
.l-footer .l-footer__top .l-footer__top__in .l-footer__nav {
  display: none;
}
@media (min-width: 1080px) {
  .l-footer .l-footer__top .l-footer__top__in .l-footer__nav {
    display: block;
    margin-left: auto;
  }
}
.l-footer .l-footer__top .l-footer__top__in .l-footer__contactBtn {
  margin-left: auto;
}
@media (min-width: 1080px) {
  .l-footer .l-footer__top .l-footer__top__in .l-footer__contactBtn {
    margin-left: 3rem;
  }
}

/* --------------------------------------------------
l-section
*/
.l-section {
  padding: 10rem 0;
}

.l-section--main {
  position: relative;
  height: calc(100vh - 11.3rem);
}
.l-section--main .l-section--main__bg01, .l-section--main .l-section--main__bg02 {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 50%;
  z-index: 10;
  transform: translateX(-50%);
  display: block;
  width: 0%;
  height: 50%;
  aspect-ratio: 1/0.8660254038;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: all 2s ease-out;
  overflow: hidden;
}
.l-section--main .l-section--main__bg01 > img, .l-section--main .l-section--main__bg02 > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.l-section--main .l-section--main__bg02 {
  top: 50%;
  bottom: 0;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.l-section--main .l-section--main__bg03, .l-section--main .l-section--main__bg04 {
  position: absolute;
  top: 0;
  right: 50%;
  bottom: 0;
  display: block;
  width: 0%;
  transition: all 1s ease-out;
  overflow: hidden;
}
.l-section--main .l-section--main__bg03 > img, .l-section--main .l-section--main__bg04 > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.l-section--main .l-section--main__bg04 {
  right: auto;
  left: 50%;
}
.l-section--main h1 {
  position: absolute;
  top: 50%;
  z-index: 30;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  font-size: 8rem;
  line-height: 8rem;
  text-align: center;
  color: white;
  opacity: 0;
  transition: all 2s ease-out;
}
.l-section--main h1 span {
  display: block;
  margin-top: 2rem;
  font-size: 3rem;
  line-height: 3rem;
}
.l-section--main:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: block;
  background-color: rgba(35, 24, 21, 0.3);
  opacity: 0;
  transition: all 0.5s ease-out;
}
.l-section--main.active .l-section--main__bg01,
.l-section--main.active .l-section--main__bg02,
.l-section--main.active .l-section--main__bg03,
.l-section--main.active .l-section--main__bg04 {
  width: 50%;
}
.l-section--main.active h1 {
  opacity: 1;
}
.l-section--main.active:after {
  opacity: 1;
}

.l-section--concept {
  position: relative;
  height: 100vh;
  padding: 0;
}
.l-section--concept .l-section--concept__bg01 > img,
.l-section--concept .l-section--concept__bg02 > img,
.l-section--concept .l-section--concept__bg03 > img,
.l-section--concept .l-section--concept__bg04 > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.l-section--concept .l-section--concept__bg01 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 66.666%;
  display: block;
  width: 0;
  transition: all 1s ease-out;
  overflow: hidden;
}
@media (min-width: 1080px) {
  .l-section--concept .l-section--concept__bg01 {
    right: 50%;
    bottom: 0;
  }
}
.l-section--concept .l-section--concept__bg02 {
  position: absolute;
  top: 33.333%;
  bottom: 33.333%;
  left: 0;
  display: block;
  width: 0;
  transition: all 1s ease-out;
  overflow: hidden;
}
@media (min-width: 1080px) {
  .l-section--concept .l-section--concept__bg02 {
    top: 0;
    bottom: 50%;
    left: 50%;
  }
}
.l-section--concept .l-section--concept__bg03 {
  position: absolute;
  top: 66.666%;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  transition: all 1s ease-out;
  overflow: hidden;
}
@media (min-width: 1080px) {
  .l-section--concept .l-section--concept__bg03 {
    top: 50%;
    left: 50%;
    bottom: 0;
  }
}
.l-section--concept .l-section--concept__bg04 {
  position: absolute;
  top: 66.666%;
  left: 50%;
  bottom: 0;
  display: block;
  width: 0;
  transition: all 1s ease-out;
  overflow: hidden;
}
@media (min-width: 1080px) {
  .l-section--concept .l-section--concept__bg04 {
    top: 50%;
    left: 75%;
    bottom: 0;
  }
}
.l-section--concept:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: block;
  background-color: rgba(35, 24, 21, 0.3);
  opacity: 0;
  transition: all 0.5s ease-out;
}
.l-section--concept.active .l-section--concept__bg01,
.l-section--concept.active .l-section--concept__bg02 {
  width: 100%;
}
@media (min-width: 1080px) {
  .l-section--concept.active .l-section--concept__bg01,
  .l-section--concept.active .l-section--concept__bg02 {
    width: 50%;
  }
}
.l-section--concept.active .l-section--concept__bg03,
.l-section--concept.active .l-section--concept__bg04 {
  width: 50%;
}
@media (min-width: 1080px) {
  .l-section--concept.active .l-section--concept__bg03,
  .l-section--concept.active .l-section--concept__bg04 {
    width: 25%;
  }
}
.l-section--concept.active:after {
  opacity: 1;
}

/* --------------------------------------------------
l-grid
*/
.l-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  box-sizing: border-box;
  margin: -1rem;
}
.l-grid > * {
  display: block;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: all 0.5s ease-out;
}
@media (min-width: 720px) {
  .l-grid > * {
    width: 50%;
  }
}
@media (min-width: 1080px) {
  .l-grid > * {
    width: 25%;
  }
}
.l-grid .l-grid--rev {
  flex-direction: row-reverse;
}

.l-grid--service {
  margin: -1.5rem;
}
@media (min-width: 1080px) {
  .l-grid--service {
    margin: -3rem;
  }
}
.l-grid--service > * {
  padding: 1.5rem;
}
@media (min-width: 720px) {
  .l-grid--service > * {
    width: 33.333%;
  }
  .l-grid--service > *:nth-child(3n+2) {
    margin-top: 8rem;
  }
  .l-grid--service > *:nth-child(3n+3) {
    margin-top: 16rem;
  }
}
@media (min-width: 1080px) {
  .l-grid--service > * {
    padding: 3rem;
  }
}

.l-grid--sec {
  margin: -3rem;
}
.l-grid--sec > * {
  padding: 3rem;
}
@media (min-width: 720px) {
  .l-grid--sec > * {
    width: 50%;
  }
}

@media (min-width: 720px) {
  .l-grid--M {
    margin: -2rem;
  }
}
@media (min-width: 720px) {
  .l-grid--M > * {
    padding: 2rem;
  }
}

@media (min-width: 720px) {
  .l-grid--L {
    margin: -3rem;
  }
}
@media (min-width: 720px) {
  .l-grid--L > * {
    padding: 3rem;
  }
}

/* ====================================================================================================
   object
==================================================================================================== */
/* --------------------------------------------------
c-breadCrumb
*/
.c-breadCrumb > * {
  display: inline-block;
}
.c-breadCrumb > * + *:before {
  content: "｜";
  margin: 0 0.5em;
}

/* --------------------------------------------------
c-badge
*/
.c-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 2rem;
}

/* --------------------------------------------------
c-button
*/
.c-button, .c-form input[type=submit] {
  position: relative;
  z-index: 10;
  display: inline-block;
  width: auto;
  padding: 1.5rem 3rem;
  font-family: "Jost", "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 2rem;
  border: solid 1px #DDDDDD;
  border-radius: 100rem;
  overflow: hidden;
  transition: all 0.5s ease-out;
}
.c-button > span, .c-form input[type=submit] > span {
  display: inline-block;
  color: #00807D;
  transition: all 1s ease-out;
}
.c-button > span:after, .c-form input[type=submit] > span:after {
  content: "／";
  margin: 0 1rem;
}
.c-button:before, .c-form input[type=submit]:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: 0% 0% 0;
  z-index: -10;
  width: 0;
  height: 0;
  background-color: #231815;
  transition: all 1s ease-out;
}
.c-button:hover, .c-form input[type=submit]:hover {
  cursor: pointer;
  color: white;
}
.c-button:hover > span, .c-form input[type=submit]:hover > span {
  color: white;
}
.c-button:hover:before, .c-form input[type=submit]:hover:before {
  width: 100rem;
  height: 100rem;
}

.c-button--white {
  color: white;
}

.c-button--large {
  display: block;
  padding: 2rem;
  font-size: 2rem;
  line-height: 2rem;
}
.c-button--large > span {
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1rem;
  color: #00807D;
  transition: all 1s ease-out;
}
.c-button--large > span:after {
  display: none;
}

.c-button--iconMail {
  padding-left: 6rem;
}
.c-button--iconMail:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../images/icon_mail01.svg) no-repeat;
  background-position: center center;
  background-size: contain;
  transition: all 0.5s ease-out;
}
.c-button--iconMail:hover:after {
  background: url(../images/icon_mail02.svg) no-repeat;
  background-position: center center;
  background-size: contain;
}
.c-button--iconMail.c-button--white:after {
  background: url(../images/icon_mail02.svg) no-repeat;
  background-position: center center;
  background-size: contain;
}

/* --------------------------------------------------
c-navBar
*/
.c-navBar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.c-navBar > * + * {
  margin-left: 0.5rem;
}
.c-navBar > * > a {
  display: block;
  padding: 1rem 1.5rem;
  font-family: "Jost", "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  background-color: transparent;
  border-radius: 100rem;
  transition: all 0.5s ease-out;
}
.c-navBar > * > a:hover {
  color: white;
  background-color: #231815;
}

.c-navBar--white > * > a {
  color: white;
}

/* --------------------------------------------------
c-panel
*/
.c-panel {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}

/* --------------------------------------------------
c-media
*/
.c-media {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.c-media > .c-media__img > img {
  display: block;
}
.c-media > .c-media__body {
  width: auto;
}

/* rev */
.c-media--rev {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* --------------------------------------------------
c-tableView
*/
.c-tableView {
  display: block;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.c-tableView > * {
  padding: 2rem;
}
.c-tableView > * + * {
  border-top: solid 1px #DDDDDD;
}

/* --------------------------------------------------
c-card
*/
.c-card {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
}
.c-card > .c-card__img {
  width: auto;
}
.c-card > .c-card__body {
  padding: 2rem;
}

/* --------------------------------------------------
c-hamburger
*/
.c-hamburgerBtn {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 1rem;
  transition: all 0.5s ease-out;
}
.c-hamburgerBtn > * {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #00807D;
  border-radius: 2rem;
  transition: all 0.5s ease-out;
}
.c-hamburgerBtn > *:nth-of-type(1) {
  top: 0;
}
.c-hamburgerBtn > *:nth-of-type(2) {
  bottom: 0;
  width: 50%;
}
.c-hamburgerBtn:hover {
  cursor: pointer;
}

/* animation */
.c-hamburgerBtn.active *:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.c-hamburgerBtn.active *:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 100%;
}

/* --------------------------------------------------
c-form
*/
.c-form * {
  /* reset */
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  /* color */
}
.c-form *:-ms-clear {
  visibility: hidden;
}
.c-form *:-ms-reveal {
  visibility: hidden;
}
.c-form *:-moz-placeholder-shown {
  color: #231815;
}
.c-form *:placeholder-shown {
  color: #231815;
}
.c-form *::-webkit-input-placeholder {
  color: #231815;
}
.c-form *:-moz-placeholder {
  opacity: 1;
  color: #231815;
}
.c-form *::-moz-placeholder {
  opacity: 1;
  color: #231815;
}
.c-form *:-ms-input-placeholder {
  color: #231815;
}
.c-form input[type=text],
.c-form input[type=password],
.c-form input[type=email],
.c-form textarea {
  width: 100%;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 2rem;
}
.c-form select {
  width: 100%;
  padding: 1.5rem;
  background-color: #ffffff;
  border-radius: 2rem;
}
.c-form select:hover {
  cursor: pointer;
}
.c-form input[type=checkbox],
.c-form input[type=radio] {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-color: #ffffff;
  transition: all 0.5s ease-out;
}
.c-form input[type=checkbox]:before,
.c-form input[type=radio]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  transition: all 0.5s ease-out;
}
.c-form input[type=checkbox]:hover,
.c-form input[type=radio]:hover {
  cursor: pointer;
}
.c-form input[type=checkbox]:checked:before,
.c-form input[type=radio]:checked:before {
  background-color: #231815;
}
.c-form input[type=radio] {
  border-radius: 100%;
}
.c-form input[type=radio]:before {
  border-radius: 100%;
}
/* --------------------------------------------------
c-secTitle
*/
.c-secTitle {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  font-family: "Jost", "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
  color: #00807D;
}
.c-secTitle > span {
  display: block;
  width: 100%;
  padding-left: 4rem;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #231815;
}
.c-secTitle:before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-right: 2rem;
  border-radius: 2rem;
  background-color: #00807D;
}

/* --------------------------------------------------
c-fontSet
*/
.c-fontSet h1 + * {
  margin-top: 5rem;
}
.c-fontSet h1 {
  font-size: 8rem;
  line-height: 8rem;
  text-align: center;
  color: #00807D;
}
.c-fontSet p {
  font-size: 1.6rem;
  line-height: 2.5rem;
}
.c-fontSet table tr th,
.c-fontSet table tr td {
  padding: 1rem;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2rem;
}
.c-fontSet table tr th {
  font-family: "Jost", "Noto Serif JP", serif;
  font-weight: 500;
  text-align: left;
}

/* ====================================================================================================
   utility
==================================================================================================== */
/* --------------------------------------------------
u-taX
*/
.u-taR {
  text-align: right;
}

.u-taC {
  text-align: center;
}

.u-taL {
  text-align: left;
}

/* --------------------------------------------------
u-clearfix
*/
.u-clearfix, .u-innerL, .u-innerM, .u-innerS {
  display: block;
  min-height: 1%;
}
.u-clearfix:after, .u-innerL:after, .u-innerM:after, .u-innerS:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
}

* html .u-clearfix, * html .u-innerL, * html .u-innerM, * html .u-innerS {
  height: 1%;
}

/* --------------------------------------------------
u-flX
*/
.u-flL {
  float: left;
}

.u-flR {
  float: right;
}

/* --------------------------------------------------
u-hover
*/
.u-hover {
  transition: all 0.5s ease-out;
}
.u-hover:hover {
  cursor: pointer;
}
@media (min-width: 1080px) {
  .u-hover:hover {
    opacity: 0.5;
  }
}

/* --------------------------------------------------
u-img
*/
.u-imgMaxW {
  max-width: 100%;
  height: auto;
}

.u-imgThumb {
  display: block;
  border-radius: 2rem;
  overflow: hidden;
}
.u-imgThumb > img {
  width: 100%;
  height: 25vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1080px) {
  .u-imgThumb > img {
    height: 50vh;
  }
}

.u-imgOver {
  position: relative;
}
.u-imgOver:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(35, 24, 21, 0.2);
}

.u-imgCrop {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-imgHeaderLogo {
  width: auto;
  height: 5rem;
}

/* --------------------------------------------------
u-inner
*/
.u-innerS {
  box-sizing: content-box;
  max-width: 64rem;
  margin: 0 auto;
}

.u-innerM {
  box-sizing: content-box;
  max-width: 96rem;
  margin: 0 auto;
}

.u-innerL {
  box-sizing: content-box;
  max-width: 120rem;
  margin: 0 auto;
}

.u-innerGarter {
  padding: 0 4rem;
}

.u-innerGarterS {
  padding: 0 1rem;
}

.u-innerGarterM {
  padding: 0 2rem;
}

.u-innerGarterL {
  padding: 0 4rem;
}

/* --------------------------------------------------
u-vr
*/
.u-vrS > * + * {
  margin-top: 1rem;
}

.u-vrM > * + *, .c-fontSet > * + * {
  margin-top: 3rem;
}

.u-vrL > * + * {
  margin-top: 5rem;
}

.u-vrLL > * + * {
  margin-top: 10rem;
}

/* --------------------------------------------------
u-color
*/
/* ====================================================================================================
   effect
==================================================================================================== */
/* --------------------------------------------------
e-fadeTop
*/
.e-fadeTop {
  opacity: 0;
  transform: translate(0, 5rem);
  transition: all 0.5s ease-out;
}

.e-action {
  opacity: 1;
  transform: translate(0, 0);
}

.e-delay:nth-child(2), .e-fadeTop:nth-child(2) {
  transition-delay: 200ms;
}
.e-delay:nth-child(3), .e-fadeTop:nth-child(3) {
  transition-delay: 400ms;
}
.e-delay:nth-child(4), .e-fadeTop:nth-child(4) {
  transition-delay: 600ms;
}
.e-delay:nth-child(5), .e-fadeTop:nth-child(5) {
  transition-delay: 800ms;
}
.e-delay:nth-child(6), .e-fadeTop:nth-child(6) {
  transition-delay: 1000ms;
}
.e-delay:nth-child(7), .e-fadeTop:nth-child(7) {
  transition-delay: 1200ms;
}
.e-delay:nth-child(8), .e-fadeTop:nth-child(8) {
  transition-delay: 1400ms;
}
.e-delay:nth-child(9), .e-fadeTop:nth-child(9) {
  transition-delay: 1600ms;
}

/* ====================================================================================================
   vender
==================================================================================================== *//*# sourceMappingURL=common.css.map */