html, body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  color: #333;
  line-height: 2;
}

p {
  margin: 0;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
  padding: 0;
}

.wrap {
  max-width: 80vw;
  padding: 0 5vw;
  margin: 0 auto;
}

.rwd_show {
  display: none;
}

@media screen and (max-width: 700px) {
  .wrap {
    max-width: none;
  }
  .rwd_show {
    display: inline;
  }
}
body {
  letter-spacing: 0.1em;
}

.site_header {
  padding: 5rem;
  z-index: 100;
}

main {
  width: 100%;
  position: relative;
  overflow: hidden;
}

@keyframes left_to_right {
  0% {
    transform: translate3d(-50vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.left_to_right {
  opacity: 0;
}

.left_to_right.active {
  animation: left_to_right 0.6s ease forwards;
  opacity: 1;
}

.left_to_rights > * {
  opacity: 0;
}

.left_to_rights.active > * {
  animation: left_to_right 0.6s ease forwards;
}

.left_to_rights.active > *:nth-child(2) {
  animation-delay: 0.2s;
}

.left_to_rights.active > *:nth-child(3) {
  animation-delay: 0.4s;
}

.left_to_rights.active > *:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes right_to_left {
  0% {
    transform: translate3d(50vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.right_to_left {
  opacity: 0;
}

.right_to_left.active {
  animation: right_to_left 0.6s ease forwards;
  opacity: 1;
}

@keyframes bottom_to_top {
  0% {
    transform: translate3d(0, 3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.bottom_to_top {
  opacity: 0;
}

.bottom_to_top.active {
  animation: bottom_to_top 0.6s ease forwards;
}

.site_header {
  /* mix-blend-mode: exclusion; */
  position: absolute;
  width: 100%;
  padding: 1rem 0 0;
  box-sizing: border-box;
  left: 0;
  top: 0;
  color: #fff;
}
.site_header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.site_header h1 {
  width: 15rem;
}
.site_header ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site_header ul a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 2rem;
}

.mv {
  background-color: #000;
  position: relative;
}
.mv .movie {
  width: 100%;
  height: 100dvh;
}
.mv video {
  opacity: 0.5;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .movie {
  position: relative;
  z-index: 1;
}
.mv .text {
  color: #fff;
  font-size: 150%;
  font-weight: 500;
  width: 100%;
  line-height: 2;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
.mv .text h2 {
  font-size: 150%;
  margin-bottom: 0;
  text-align: center;
}

.sb {
  padding: 8rem 0;
}
.sb header {
  margin-bottom: 40px;
  text-align: center;
}
.sb header h2 {
  text-align: center;
  font-size: 230%;
  margin-bottom: 2rem;
  display: inline-block;
  position: relative;
  padding: 0 2rem;
}
.sb header h2:before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background-color: #000;
  position: absolute;
  right: 100%;
  top: 50%;
}
.sb header h2:after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 100%;
  top: 50%;
}
.sb header p {
  font-weight: bold;
  font-size: 130%;
}

.bottomSb.about {
  padding-top: 16rem;
  transform: none;
}
.bottomSb.about .wrap {
  transform: none;
}
.bottomSb.about .wrap > div table {
  width: 100%;
}
.bottomSb.about .wrap > div table th {
  padding: 1rem 0;
  border-bottom: 2px solid #e70012;
  text-align: left;
  width: 150px;
}
.bottomSb.about .wrap > div table td {
  padding: 1rem;
  border-bottom: 2px solid #efc7cb;
}

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

.business {
  padding-bottom: 10rem;
}
.business ul {
  display: flex;
  gap: 2rem;
  row-gap: 3rem;
  flex-wrap: wrap;
}
.business ul > li {
  flex: 0 1 calc((100% - 4rem) / 3);
  padding: 0 1rem;
  box-sizing: border-box;
}
.business ul > li figure {
  height: 13rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.business ul > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: contain;
}

.site_footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  margin-bottom: 3em;
  justify-content: center;
}
.site_footer ul li a {
  display: block;
  padding: 0 3em;
  text-decoration: none;
  color: #000;
}

.about {
  background-color: #f8e6e7;
  transform: skew(0, -7deg);
  padding-bottom: 18rem;
  padding-top: 7rem;
  padding-top: 10rem;
}
.about .wrap {
  transform: skew(0, 7deg);
}
.about .wrap > div {
  width: 60%;
  margin: 0 auto;
}
.about .wrap > div p {
  margin-bottom: 2rem;
}
.about .wrap > div p:last-child {
  margin-bottom: 0;
}
.about figure {
  width: 30%;
  margin: 0 auto;
  margin-bottom: 0;
}

.other {
  padding-top: 0;
}

.site_footer {
  position: relative;
  z-index: 10;
  margin-top: -10rem;
  background-color: #000;
  background: linear-gradient(to bottom right, #bb000f, #a1000d);
  text-align: center;
  color: #fff;
  padding-top: 3rem;
}
.site_footer ul {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.site_footer ul li a {
  display: block;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #fff;
}

.site_footerUnder {
  margin-top: 0;
}

.copy {
  text-align: center;
  font-size: 80%;
  padding: 1rem;
}/*# sourceMappingURL=style.css.map */

/* PLUS */
h3 {
    font-size: 130%;
    margin-bottom: 20px;
    text-align: center;
    color: #a1000d;
}

a {
    color: #6b3c73;
}

a:hover {
    opacity:0.8;
}

.sub_page ul li a {
    color: #000;
}

.sub_page {
    /* mix-blend-mode: initial; */
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  color: #333;
  line-height: 2;
}

p {
  margin: 0;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

figure {
  margin: 0;
  padding: 0;
}

.wrap {
  max-width: 80vw;
  padding: 0 5vw;
  margin: 0 auto;
}

.rwd_show {
  display: none;
}

.menu-btn {
  display: none;
}

@media (max-width: 1300px) {
.site_header .wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 100px;
  margin-top: 0;
  padding: 0 0 10px 0;
  clear: both;
  /* background: var(--background-navbar); */
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
  background-color: rgb(18 5 3 / 95%);
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #ddd;
  opacity: 0;
  transition: 0.5s;
}

.menu li {
  border-top: 1px solid rgb(75, 75, 75);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  margin: 0;
}

.menu-icon {
  display: inline-block;
  position: absolute;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  right: 0;
}

.navicon {
  background: #ddd;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #ddd;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}
nav.menu ul {
    display: block;
}
.site_header {
  mix-blend-mode: initial;
  padding: 20px 0 0;
}
.menu.sub_page {
    background-color: rgb(234 170 174);
}

.menu.sub_page ul li {
    border-top: 1px solid #d85b63;
}
.sub_page .navicon {
    background: #e70012;
}

.sub_page .navicon:before,
.sub_page .navicon:after {
    background: #e70012 !important;!i;!;
}
}

@media (max-width: 768px) {
  .site_header {
    padding: 0;
  }
  .site_header h1 {
    width: 12rem;
  }
  .site_header ul a {
    padding: 0.5rem 1rem;
  }

  .business ul {
    flex-direction: column;
    gap: 1rem;
  }
  .business ul > li {
    flex: 0 1 100%;
    padding: 0;
    margin-bottom: 2rem;
  }

.site_header .wrap {
    display: flex
;
    justify-content: center;
    align-items: flex-end;
}
.mv .text h2 {
    font-size: 120%;
    margin-bottom: 0;
    text-align: center;
    padding: 0 20px;
}
.sb {
    padding: 5rem 0;
}
.business ul > li figure {
    height: 10rem;
    overflow: hidden;
    margin-bottom: 1rem;
}
.about figure {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0;
}
.about .wrap > div {
    width: 100%;
    margin: 0 auto;
}
.site_footer {
    margin-top: -30px;
    padding-top: 3rem;
}
footer.site_footer nav {
    display: block;
}
.site_footer ul {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-flow: row wrap;
}
.menu {
  top: 70px;
}
.bottomSb.about {
    padding-top: 10rem;
    transform: none;
}
.bottomSb.about .wrap > div table td {
    padding: 1rem 0;
}
.bottomSb.about .wrap > div table {
    width: 100%;
    font-size: 16px;
}
.wrap {
    max-width: 90vw;
}
.sb header h2 {
    text-align: center;
    font-size: 200%;
    margin-bottom: 2rem;
    display: inline-block;
    position: relative;
    padding: 0 2rem;
    line-height: 1.5;
}
}