@charset "UTF-8";
.delay01 {
  transition-delay: 0.1s !important;
}

.delay02 {
  transition-delay: 0.2s !important;
}

.delay03 {
  transition-delay: 0.3s !important;
}

.delay04 {
  transition-delay: 0.4s !important;
}

.delay05 {
  transition-delay: 0.5s !important;
}

.delay06 {
  transition-delay: 0.6s !important;
}

.delay07 {
  transition-delay: 0.7s !important;
}

.delay08 {
  transition-delay: 0.8s !important;
}

.delay09 {
  transition-delay: 0.9s !important;
}

.delay10 {
  transition-delay: 1s !important;
}

.delay11 {
  transition-delay: 1.1s !important;
}

.delay12 {
  transition-delay: 1.2s !important;
}

.delay13 {
  transition-delay: 1.3s !important;
}

.delay14 {
  transition-delay: 1.4s !important;
}

.delay15 {
  transition-delay: 1.5s !important;
}

.delay16 {
  transition-delay: 1.6s !important;
}

.delay17 {
  transition-delay: 1.7s !important;
}

.delay18 {
  transition-delay: 1.8s !important;
}

.delay19 {
  transition-delay: 1.9s !important;
}

.delay20 {
  transition-delay: 2s !important;
}

.delay21 {
  transition-delay: 2.1s !important;
}

.delay22 {
  transition-delay: 2.2s !important;
}

.delay23 {
  transition-delay: 2.3s !important;
}

.delay24 {
  transition-delay: 2.4s !important;
}

/* スクロール時のアニメーション */
.laser {
  position: relative;
  overflow: hidden;
}
.laser::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 3s ease;
  transition: all 3s ease;
}
.laser .hide {
  opacity: 0;
  transition: all 3s ease;
  transition-delay: 1s !important;
}
.laser.inview-on::after {
  left: 100%;
}
.laser.inview-on .hide {
  opacity: 1;
}

/* fade in */
.fade-in {
  opacity: 0;
  transition: all 1.5s ease;
}
.fade-in.inview-on {
  opacity: 1;
}

.inview-on .fade-in {
  opacity: 1;
}

/* fade in zoom */
.fade-in-zoom {
  transform: scale(0.8);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-zoom.inview-on {
  transform: scale(1);
  opacity: 1;
}

.inview-on .fade-in-zoom {
  transform: scale(1);
  opacity: 1;
}

/* fade in up */
.fade-in-up {
  transform: translateY(20px);
  opacity: 0;
  transition: all 1.5s ease;
}
.fade-in-up.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.inview-on .fade-in-up {
  transform: translateY(0px);
  opacity: 1;
}

/* fade in down */
.fade-in-down {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.inview-on .fade-in-down {
  transform: translateY(0px);
  opacity: 1;
}

/* fade in left */
.fade-in-left {
  transform: translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-left.inview-on {
  transform: translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-left {
  transform: translateX(0px);
  opacity: 1;
}

/* fade in right */
.fade-in-right {
  transform: translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-right.inview-on {
  transform: translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-right {
  transform: translateX(0px);
  opacity: 1;
}

/* fade in up left */
.fade-in-up-left {
  transform: translateY(20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in up right */
.fade-in-up-right {
  transform: translateY(20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-up-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-up-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down left */
.fade-in-down-left {
  transform: translateY(-20px) translateX(20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-left.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-left {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

/* fade in down right */
.fade-in-down-right {
  transform: translateY(-20px) translateX(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down-right.inview-on {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

.inview-on .fade-in-down-right {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?e4vfqk");
  src: url("../fonts/icomoon.eot?e4vfqk#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?e4vfqk") format("truetype"), url("../fonts/icomoon.woff?e4vfqk") format("woff"), url("../fonts/icomoon.svg?e4vfqk#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
  content: "\e900";
}

.icon-formdl:before {
  content: "\e901";
}

@media screen and (max-width: 767px) {
  .header-inner .logo {
    display: none;
  }
  #header.fixed .header-inner .logo {
    display: block;
  }
}
.mv {
  position: relative;
  width: 100vw;
  /*height: 90vh;
  overflow: hidden;*/
  margin-top: -0.5rem;
  /*下からの距離が変化して丸の全体が上から下に動く*/
  /*上から下にかけて丸が透過→不透明→透過する*/
}
@media screen and (max-width: 767px) {
  .mv {
    height: 70vh;
  }
  .mv .logo {
    width: 3rem;
    position: absolute;
    top: 1rem;
    left: 0.3rem;
    z-index: 3;
  }
}
.mv:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.mv video {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv video {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    object-position: top;
  }
}
.mv .scrolldown {
  position: absolute;
  bottom: -0.5rem;
  left: 2rem;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .mv .scrolldown {
    left: 3.75rem;
  }
}
.mv .scrolldown span {
  position: absolute;
  left: -0.4rem;
  top: -2.6rem;
  color: #ffffff;
  font-size: 0.32rem;
  font-family: "EB Garamond", serif;
}
@media screen and (max-width: 767px) {
  .mv .scrolldown span {
    left: -0.34rem;
    top: -2rem;
  }
}
.mv .scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  background: #eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
}
@media screen and (max-width: 767px) {
  .mv .scrolldown:before {
    animation: circlemoveSP 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
  }
}
.mv .scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 1px;
  height: 2rem;
  background: #eee;
}
@media screen and (max-width: 767px) {
  .mv .scrolldown:after {
    height: 1rem;
    bottom: 0.3rem;
  }
}
@keyframes circlemove {
  0% {
    top: -2.2rem;
  }
  100% {
    top: 0;
  }
}
@keyframes circlemoveSP {
  0% {
    top: -1.5rem;
  }
  100% {
    top: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

.concept {
  position: relative;
  z-index: 2;
  margin-top: -0.2rem;
  background: url(../images/concept_bg.jpg) no-repeat center;
  background-size: cover;
}
.concept .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .concept .grid {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }
}
.concept .grid .cont {
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .concept .grid .cont {
    padding: 0 0.6rem;
  }
}
.concept .grid .cont .text {
  margin-top: 1rem;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .concept .grid .cont .text {
    margin-top: 0.6rem;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .concept .grid .image {
    padding-right: 0.8rem;
    margin-top: 1rem;
  }
  .concept .grid .image img {
    width: 100%;
    height: 7.5rem;
    object-fit: cover;
    object-position: top;
  }
}
@media screen and (min-width: 768px) {
  .concept .order1 {
    order: 1;
  }
  .concept .order2 {
    order: 2;
  }
}

.r1 {
  background: #661330;
}
.r1 .grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}
@media screen and (max-width: 767px) {
  .r1 .grid {
    grid-template-columns: 1fr;
  }
}
.r1 .grid .cont {
  padding: 3rem 2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .r1 .grid .cont {
    padding: 1.5rem 0.6rem;
  }
}
.r1 .grid .cont .inner {
  width: 100%;
  max-width: 680px;
}
.r1 .grid .cont .en {
  opacity: 0.5;
  color: #ffffff;
}
.r1 .grid .cont .text {
  margin-top: 0.6rem;
}
.r1 .grid .cont .image {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .r1 .grid .cont .image {
    margin-top: 1rem;
    margin-left: -0.4rem;
    margin-right: -0.4rem;
  }
}
.r1 .grid .cont .image figcaption {
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
  margin-top: 0.4rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .r1 .grid .cont .image figcaption {
    margin-top: 0.2rem;
  }
}
.r1 .grid > .image {
  background: url(../images/r1_01.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .r1 .grid > .image {
    height: 7.5rem;
    background-position: center;
  }
}

.news {
  background: #ffffff;
}
@media screen and (min-width: 768px) {
  .news .wrap {
    width: 24rem;
  }
}
.news .grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}
@media screen and (max-width: 767px) {
  .news .grid {
    grid-template-columns: 1fr;
  }
}
.news .grid .left {
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .news .grid .left {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .news .grid .right {
    margin-top: 1rem;
    font-size: 0.24rem;
  }
}
.news .grid .right .post {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.news .grid .right .post:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.news .grid .right .post .date {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .news .grid .right .post .date {
    font-size: 0.2rem;
  }
}
.news .btn_wrap {
  margin-top: 1rem;
}

@media screen and (max-width: 767px) {
  .products {
    padding-bottom: 2rem;
  }
}
.products .ttl_wrap2 {
  text-align: center;
}
.products .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem 1rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .products .grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.4rem;
    margin-top: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .products .grid.wrap {
    width: 24rem;
  }
}
.products .grid .image {
  height: 8rem;
}
@media screen and (max-width: 767px) {
  .products .grid .image {
    height: 4rem;
  }
}
.products .grid .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products .grid .tag {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
  margin-top: 0.3rem;
}
@media screen and (max-width: 767px) {
  .products .grid .tag {
    grid-template-columns: 1fr 1fr;
    gap: 0.1rem;
    margin-top: 0.2rem;
  }
}
.products .grid .tag span {
  color: #ffffff;
  background: #35453F;
  font-size: 0.24rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .products .grid .tag span {
    font-size: 0.2rem;
  }
}
.products .grid .tag span.new {
  background: #971C47;
}
.products .grid .ttl {
  font-size: 0.4rem;
  font-family: "Shippori Mincho", serif;
  margin-top: 0.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .products .grid .ttl {
    font-size: 0.28rem;
    margin-top: 0.3rem;
  }
}
.products .grid .price {
  font-size: 0.4rem;
  font-family: "EB Garamond", serif;
  letter-spacing: 0;
  margin-top: 0.1rem;
}
.products .btn_wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .products .btn_wrap {
    margin-top: 1rem;
  }
}
.products .category {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .products .category {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    margin-top: 1.5rem;
  }
}
.products .category a {
  background: #35453F;
  color: #E1E3D9;
  border-radius: 5rem;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1.5;
  font-family: "Shippori Mincho", serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .products .category a {
    font-size: 0.24rem;
    height: 1rem;
  }
}
.products .category a:before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0.6rem;
  width: 0.15rem;
  height: 0.15rem;
  background: #E1E3D9;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .products .category a:before {
    width: 0.1rem;
    height: 0.1rem;
    top: 0.45rem;
    left: 0.4rem;
  }
}

.other {
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .other {
    padding-top: 0;
    padding-bottom: 2.6rem;
  }
}
.other .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
}
@media screen and (max-width: 767px) {
  .other .grid {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    gap: 0;
  }
}
.other .grid .box {
  position: relative;
}
.other .grid .box .inner {
  position: absolute;
  bottom: 1rem;
  left: 0.6rem;
}
@media screen and (max-width: 767px) {
  .other .grid .box .inner {
    bottom: 0.7rem;
  }
}
.other .grid .box .ttl_wrap2 {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .other .grid .box .ttl_wrap2 {
    text-align: left;
  }
}
.other .grid .box .ttl_wrap2 .jp {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .other .grid .box .ttl_wrap2 .jp {
    font-size: 0.24rem;
  }
}
@media screen and (min-width: 768px) {
  .other .grid .box .ttl_wrap2 .en {
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .other .grid .box .ttl_wrap2 .en {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .other .grid .box .btn_wrap {
    justify-content: flex-start;
  }
}
.other .grid .box .btn_wrap .btn {
  margin-top: 1rem;
  background: #ffffff;
  border: none;
  padding: 0.3rem 0.4rem;
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .other .grid .box .btn_wrap .btn {
    margin-top: 0.7rem;
    width: 3rem;
    font-size: 0.2rem;
    padding: 0.3rem;
  }
}
.other .grid .box .btn_wrap .btn .arrow {
  right: 0.4rem;
}
@media screen and (max-width: 767px) {
  .other .grid .box .btn_wrap .btn .arrow {
    right: 0.3rem;
    top: 0.37rem;
  }
}
.other .access {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .other .access {
    margin-top: 1.5rem;
  }
}
.other .access .prepend {
  display: flex;
  align-items: end;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .other .access .prepend {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }
}
.other .access .prepend .text {
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .other .access .prepend .text {
    text-align: center;
  }
}
.other .access .map {
  padding-right: 2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .other .access .map {
    padding: 0;
    margin-right: 0.4rem;
    margin-left: 0.4rem;
  }
}
.other .access .map iframe {
  width: 100%;
  height: 11rem;
}
@media screen and (max-width: 767px) {
  .other .access .map iframe {
    height: 6rem;
  }
}/*# sourceMappingURL=top.css.map */