@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&display=swap");
:root {
  --per: 1;
}

/*--------------------------------------------------------------
html, body
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* --- for small viewport --- */
@media (max-width: 374px) {
  html {
    font-size: 2.6666666667vw;
  }
}
/* --- for small viewport / tablet --- */
@media (min-width: 375px) and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}
/* --- for middle viewport --- */
@media screen and (min-width: 769px) and (max-width: 1439px) {
  html {
    font-size: 0.6944444444vw;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 1440px) {
  html {
    font-size: 62.5%;
  }
}
body {
  font-family: "Josefin Sans", sans-serif;
  font-family: "Zen Maru Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
body.menuon {
  overflow: hidden;
}

/*--------------------------------------------------------------
common
--------------------------------------------------------------*/
.inner {
  width: 134rem;
  margin: auto;
  padding: 0 2.8rem;
}
@media (max-width: 768px) {
  .inner {
    width: auto;
    padding: 0 5.641025641vw;
  }
}

@media (max-width: 768px) {
  ._pc {
    display: none !important;
  }
}
@media (min-width: 769px) {
  ._sp {
    display: none !important;
  }
}
.h_regular {
  font-size: 2.5rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .h_regular {
    font-size: 2rem;
  }
}

.shiver {
  -webkit-animation: shiveranim 3s infinite ease-in-out 0.8s alternate;
          animation: shiveranim 3s infinite ease-in-out 0.8s alternate;
}

@-webkit-keyframes shiveranim {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}

@keyframes shiveranim {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
.ib {
  display: inline-block;
}

/*--------------------------------------------------------------
loading, pagetop
--------------------------------------------------------------*/
#pagetop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  transition: 0.6s;
  transform: translateY(50px);
}
#pagetop.on {
  opacity: 1;
  transform: translateY(0);
}
#pagetop img {
  width: 5.6rem;
  -webkit-animation: pagetopanim 1s ease-in-out infinite alternate;
          animation: pagetopanim 1s ease-in-out infinite alternate;
}
@media (max-width: 768px) {
  #pagetop {
    right: 5.1282051282vw;
    bottom: 5.1282051282vw;
  }
  #pagetop img {
    width: 10.2564102564vw;
  }
}

@-webkit-keyframes pagetopanim {
  0% {
    transform: translateY(0rem);
  }
  100% {
    transform: translateY(-0.8rem);
  }
}

@keyframes pagetopanim {
  0% {
    transform: translateY(0rem);
  }
  100% {
    transform: translateY(-0.8rem);
  }
}
div#loading {
  position: fixed;
  background: #E83E34;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 20px;
  font-family: "Josefin Sans", sans-serif;
  color: #fff;
}
div#loading p {
  margin-top: 20px;
  letter-spacing: 0.1em;
}
div#loading .circle {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  top: 0;
  left: 0;
  stroke-dasharray: 1150px;
  stroke-dashoffset: 1100px;
}
div#loading.on {
  pointer-events: none;
  opacity: 0;
  left: 100%;
  transition: opacity 1s 2.99s, left 0s 4s;
}
div#loading.on .circle {
  stroke-dashoffset: 0px;
  transition: 2.9s linear;
}
div#loading.on .circle svg {
  opacity: 0;
  transform: scale(2) rotate(1deg);
  transition: opacity 1s 2.9s, transform 1s 2.7s, filter 1s 2.9s;
  filter: blur(18px);
}
div#loading.on img, div#loading.on p {
  opacity: 0;
  transition: 1s 2.5s;
}
@media (max-width: 768px) {
  div#loading {
    font-size: 1.2rem;
  }
  div#loading img {
    width: 23.0769230769vw;
  }
  div#loading p {
    margin-top: 10px;
  }
  div#loading .circle svg {
    width: 46.1538461538vw;
    height: 46.1538461538vw;
  }
}

/*--------------------------------------------------------------
footer
--------------------------------------------------------------*/
footer {
  margin-top: 13rem;
  background: url(../image/header_stripe.svg) center bottom repeat-x;
  background-size: auto 2.5rem;
  padding-bottom: 6rem;
}
footer figure {
  text-align: center;
}
footer figure img {
  width: 59rem;
  border-radius: 5rem;
}
footer address {
  margin-top: 4rem;
  display: block;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.2222222222;
}
footer .sns {
  margin-top: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
footer .sns li a {
  display: block;
}
footer .sns li a img, footer .sns li a svg {
  height: 2rem;
  width: auto;
  transition: 0.3s ease-in-out;
}
footer .sns li a:hover {
  fill: #E83E34;
}
footer small {
  margin-top: 3rem;
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.2rem;
  text-align: center;
}
@media (max-width: 768px) {
  footer {
    margin-top: 17.9487179487vw;
    background-size: auto 2.3076923077vw;
    padding-bottom: 7.6923076923vw;
  }
  footer figure img {
    width: 89.7435897436vw;
    border-radius: 10.2564102564vw;
  }
  footer address {
    margin-top: 5.1282051282vw;
    font-size: 1.2rem;
    line-height: 5.641025641vw;
  }
  footer address .com {
    font-size: 1.6rem;
  }
  footer .sns {
    margin-top: 17.9487179487vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  footer .sns li a {
    display: block;
  }
  footer .sns li a img, footer .sns li a svg {
    height: 1.4rem;
  }
  footer small {
    margin-top: 5.1282051282vw;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
header
--------------------------------------------------------------*/
header {
  z-index: 100;
}
header .btn {
  transition: 0.3s;
  z-index: 10;
  background: #fff;
  transition: 0.3s ease-out;
  width: 6.5rem;
  height: 6.5rem;
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
}
header .btn span {
  transition: top 0.2s 0.2s ease-out, bottom 0.2s 0.2s ease-out, transform 0.2s 0s ease-out;
  display: block;
  position: absolute;
  width: 3.3rem;
  height: 2px;
  background: #E83E34;
  left: calc(50% - 1.65rem);
  right: 0;
  top: calc(50% - 7px);
}
header .btn span:nth-child(2) {
  top: calc(50% + 6px);
}
@media (max-width: 768px) {
  header .btn {
    width: 12.8205128205vw;
    height: 12.8205128205vw;
  }
}
header nav {
  font-family: "Josefin Sans", sans-serif;
}
header nav .site a {
  position: relative;
}
header nav .site a::after {
  display: block;
  background: #E83E34;
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.7rem;
  width: 100%;
  height: 1px;
  opacity: 0;
  transition: 0.2s ease-in;
}
header nav .site a:hover::after {
  transition: 0.2s ease-out;
  bottom: 0;
  opacity: 1;
}

header.dis .inner {
  right: -71vw;
  transition: right 0;
}

header:not(.scrolled):not(.sp) {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  background: url(../image/header_stripe.svg) center top repeat-x;
  background-size: auto 2.5rem;
  height: 13rem;
  line-height: 3rem;
}
header:not(.scrolled):not(.sp) .btn {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.3s;
}
header:not(.scrolled):not(.sp) .inner {
  width: 100%;
  padding: 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5.5rem;
}
header:not(.scrolled):not(.sp) .logo {
  width: 27.6rem;
}
header:not(.scrolled):not(.sp) nav {
  display: flex;
  flex-direction: row;
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.9rem;
}
header:not(.scrolled):not(.sp) nav .lv1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
header:not(.scrolled):not(.sp) nav .lv1:not(.sns) {
  margin-top: -1rem;
}
header:not(.scrolled):not(.sp) nav .lv1:not(.sns) span, header:not(.scrolled):not(.sp) nav .lv1:not(.sns) a, header:not(.scrolled):not(.sp) nav .lv1:not(.sns) div {
  padding-top: 0.5rem;
}
header:not(.scrolled):not(.sp) nav .site {
  gap: 3rem;
}
header:not(.scrolled):not(.sp) nav .site a {
  display: inline-block;
  position: relative;
}
header:not(.scrolled):not(.sp) nav .sns {
  margin-left: 5rem;
}
header:not(.scrolled):not(.sp) nav .sns li {
  height: 100%;
  display: grid;
  place-content: center;
}
header:not(.scrolled):not(.sp) nav .sns li a {
  padding: 0 1em;
}
header:not(.scrolled):not(.sp) nav .sns img {
  vertical-align: bottom;
}
header:not(.scrolled):not(.sp) nav .sns .instagram img, header:not(.scrolled):not(.sp) nav .sns .instagram svg {
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1/1;
}
header:not(.scrolled):not(.sp) nav .sns .twitter img, header:not(.scrolled):not(.sp) nav .sns .twitter svg {
  width: 2.2rem;
  height: 1.8rem;
  aspect-ratio: 22/18;
}
header:not(.scrolled):not(.sp) nav .sns a path {
  transition: 0.2s ease-in-out;
}
header:not(.scrolled):not(.sp) nav .sns a:hover path {
  fill: #E83E34;
}
header:not(.scrolled):not(.sp) nav .stores {
  width: auto;
  margin-left: 1rem;
}
header:not(.scrolled):not(.sp) nav .stores > li {
  margin-left: -1px;
  width: auto;
  position: relative;
}
header:not(.scrolled):not(.sp) nav .stores > li > div {
  color: #E83E34;
  border-left: 1px solid #000;
}
header:not(.scrolled):not(.sp) nav .stores > li > div:hover {
  background: #E83E34;
  border-left: 1px solid #E83E34;
}
header:not(.scrolled):not(.sp) nav .stores > li > div .icon {
  display: none;
}
header:not(.scrolled):not(.sp) nav .stores a, header:not(.scrolled):not(.sp) nav .stores div {
  width: 12rem;
  display: block;
  height: 100%;
  cursor: pointer;
  padding-left: 2.5rem;
  transition: color 0.3s, background-color 0.3s;
}
header:not(.scrolled):not(.sp) nav .stores a:hover, header:not(.scrolled):not(.sp) nav .stores div:hover {
  color: #fff;
}
header:not(.scrolled):not(.sp) nav .stores .lv2 {
  padding-top: 1px;
  position: absolute;
  width: auto;
  left: 0;
  top: 100%;
}
header:not(.scrolled):not(.sp) nav .stores .lv2 li {
  opacity: 1;
  margin-top: 1px;
  margin-right: -2.5rem;
  display: block;
  transition: 0.3s;
}
header:not(.scrolled):not(.sp) nav .stores .lv2 li a {
  color: #fff;
  display: block;
  background: #F6B2AE;
}
header:not(.scrolled):not(.sp) nav .stores .lv2 li a:hover {
  color: #E83E34;
}
header:not(.scrolled):not(.sp) nav .stores > li:not(:hover) ul li {
  opacity: 0;
  margin-top: -3rem;
}

header.scrolled, header.sp {
  position: fixed;
  z-index: 1000;
  right: 0;
  top: 0;
}
header.scrolled .inner, header.sp .inner {
  border-top-left-radius: 7rem;
  border-bottom-left-radius: 7rem;
  width: auto;
  display: inline-grid;
  place-content: center;
  justify-content: flex-end;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0;
  right: -71rem;
  height: 100vh;
  padding: 0 13rem;
  overflow: scroll;
  transition: right 0.6s cubic-bezier(0.39, 0.77, 0.62, 0.98);
}
header.scrolled .inner .logo, header.sp .inner .logo {
  display: none;
}
header.scrolled .inner nav, header.sp .inner nav {
  font-size: 3.2rem;
  font-weight: 400;
  text-align: right;
  letter-spacing: 0.1em;
}
header.scrolled .inner nav .sns, header.sp .inner nav .sns {
  display: none;
}
header.scrolled .inner nav .site li + li::before, header.sp .inner nav .site li + li::before {
  content: "";
  display: block;
  height: 5rem;
  max-height: 5vh;
}
header.scrolled .inner nav .stores::before, header.sp .inner nav .stores::before {
  content: "";
  display: block;
  height: 10rem;
  max-height: 8vh;
}
header.scrolled .inner nav .stores .txt, header.sp .inner nav .stores .txt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #E83E34;
  gap: 1rem;
}
header.scrolled .inner nav .stores .lv2, header.sp .inner nav .stores .lv2 {
  display: flex;
  margin-top: 2rem;
  gap: 1rem;
}
header.scrolled .inner nav .stores .lv2 a, header.sp .inner nav .stores .lv2 a {
  display: flex;
  padding-top: 0.5rem;
  justify-content: center;
  align-items: center;
  font-size: 1.9rem;
  letter-spacing: normal;
  color: #E83E34;
  background: #fff;
  border-radius: 50px;
  width: 14rem;
  height: 4.5rem;
  border: 2px solid #E83E34;
  transition: 0.3s ease-out;
}
header.scrolled .inner nav .stores .lv2 a:hover, header.sp .inner nav .stores .lv2 a:hover {
  background: #E83E34;
  color: #fff;
}
header.scrolled.menuon .btn, header.sp.menuon .btn {
  background: rgba(255, 255, 255, 0);
}
header.scrolled.menuon .btn span, header.sp.menuon .btn span {
  transition: top 0.2s 0s ease-out, bottom 0.2s 0s ease-out, transform 0.2s 0.2s ease-out;
  transform: rotate(30deg);
  top: calc(50% - 0px);
}
header.scrolled.menuon .btn span:nth-child(2), header.sp.menuon .btn span:nth-child(2) {
  top: calc(50% + 0px);
  transform: rotate(-30deg);
}
header.scrolled.menuon .inner, header.sp.menuon .inner {
  transform: translateX(0);
  right: 0;
  transition: right 0.6s cubic-bezier(0.39, 0.77, 0.62, 0.98);
}

header.sp {
  background: url(../image/header_stripe.svg) center top repeat-x;
  background-size: auto 2.5641025641vw;
  width: 100vw;
  position: absolute;
}
header.sp .btn {
  transform: translateX(0);
  top: 2.5641025641vw;
  background: none;
  transition: transform 0.3s;
}
header.sp .logo {
  margin: 5.1282051282vw auto auto 2.5641025641vw;
}
header.sp .logo img {
  width: 33.0769230769vw;
}
header.sp .inner {
  position: fixed;
  top: 0;
  right: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 12.8205128205vw;
  border-bottom-right-radius: 12.8205128205vw;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  height: auto;
  padding: 0 0 15.3846153846vw;
  overflow: scroll;
  max-height: 100svh;
  transition: transform 0.6s cubic-bezier(0.39, 0.77, 0.62, 0.98);
  transform: translateX(0);
  transform: translateY(-100%);
}
header.sp .inner nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 2rem;
  text-align: left;
  letter-spacing: 0.1em;
}
header.sp .inner nav::before {
  content: "";
  display: block;
  height: 20.5128205128vw;
  max-height: 10vh;
}
header.sp .inner nav .site li + li::before {
  content: "";
  display: block;
  height: 7.6923076923vw;
  max-height: 5vh;
}
header.sp .inner nav .stores::before {
  content: "";
  display: block;
  height: 10rem;
  max-height: 8vh;
}
header.sp .inner nav .stores img {
  width: 6.4102564103vw;
}
header.sp .inner nav .stores .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #E83E34;
  gap: 1rem;
}
header.sp .inner nav .stores .lv2 {
  display: flex;
  flex-direction: column;
  margin-top: 3.8461538462vw;
  gap: 2.5641025641vw;
}
header.sp .inner nav .stores .lv2 a {
  padding-top: 0.5rem;
  justify-content: center;
  align-items: center;
  font-size: 5.1282051282vw;
  width: 14rem;
  height: 4.5rem;
}
header.sp.menuon .btn {
  background: rgba(255, 255, 255, 0);
}
header.sp.menuon .btn span {
  transition: top 0.2s 0s ease-out, bottom 0.2s 0s ease-out, transform 0.2s 0.2s ease-out;
  transform: rotate(30deg);
  top: calc(50% - 0px);
}
header.sp.menuon .btn span:nth-child(2) {
  top: calc(50% + 0px);
  transform: rotate(-30deg);
}
header.sp.menuon .inner {
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.39, 0.77, 0.62, 0.98);
}

/*--------------------------------------------------------------
mv
--------------------------------------------------------------*/
#mv {
  margin-top: 16rem;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  height: 79.5rem;
}
#mv .slider {
  width: calc(50vw + 51.5rem);
  height: 100%;
  border-top-left-radius: 7rem;
  border-bottom-left-radius: 7rem;
}
#mv .slider .slide-wrapper {
  width: 100%;
  height: 100%;
}
#mv .slider .slide {
  position: relative;
}
#mv .slider .slide figure {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#mv .slider .slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
#mv .slider .slide p {
  position: absolute;
  top: 6rem;
  left: 5rem;
  font-weight: 500;
  letter-spacing: 0.09em;
}
#mv .slider .slide p span {
  display: inline-block;
  background: #fff;
  font-size: 2.5rem;
  padding: 0.5rem 2rem;
  margin-bottom: 1.2rem;
  transform: translateX(-3rem);
  opacity: 0;
  transition: transform 1.5s, opacity 1.5s;
  transition-delay: 0.4s;
}
#mv .slider .slide p span:nth-of-type(2) {
  transition-delay: 0.8s;
}
#mv .slider .slide p span:nth-of-type(3) {
  transition-delay: 1.2s;
}
#mv .slider .slide.swiper-slide-active p span {
  transform: translateX(0);
  opacity: 1;
}
#mv .slider .swiper-pagination {
  position: absolute;
  top: auto;
  right: tuto;
  left: 6rem;
  bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#mv .slider .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
}
#mv .slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}
#mv .scroll {
  width: calc(50vw - 51.5rem);
  display: flex;
  flex-direction: row-reverse;
  padding-right: 12rem;
  font-family: "Josefin Sans", sans-serif;
}
#mv .scroll .scroll_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#mv .scroll .icon {
  width: 1.8rem;
}
#mv .scroll .line {
  width: 1px;
  height: 100px;
  background: #000;
  margin: 0.3rem auto 0.5rem;
  -webkit-animation: scrollanim 2s ease-in-out infinite alternate;
          animation: scrollanim 2s ease-in-out infinite alternate;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
#mv .scroll .txt {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  #mv {
    margin-top: 19.2307692308vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    height: auto;
  }
  #mv .slider {
    width: 100%;
    height: calc(100svh - 46.1538461538vw);
    min-height: 100vw;
    border-top-left-radius: 12.8205128205vw;
    border-bottom-left-radius: 12.8205128205vw;
  }
  #mv .slider .slide-wrapper {
    width: 100%;
    height: 100%;
  }
  #mv .slider .slide {
    position: relative;
  }
  #mv .slider .slide figure {
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  #mv .slider .slide figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    vertical-align: bottom;
  }
  #mv .slider .slide p {
    position: absolute;
    top: 15.3846153846vw;
    left: 5.1282051282vw;
  }
  #mv .slider .slide p span {
    font-size: 5.1282051282vw;
    padding: 1.2820512821vw 2.5641025641vw;
    margin-bottom: 2.5641025641vw;
    transform: translateX(5.1282051282vw);
  }
  #mv .slider .slide.swiper-slide-active p span {
    transform: translateX(0);
    opacity: 1;
  }
  #mv .slider .swiper-pagination {
    width: 100%;
    position: absolute;
    top: auto;
    right: tuto;
    left: 0;
    bottom: 3.8461538462vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5641025641vw;
  }
  #mv .scroll {
    height: 26.9230769231vw;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-end;
    padding: 0 0 3.8461538462vw;
  }
  #mv .scroll .scroll_inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #mv .scroll .icon {
    width: 1.5384615385vw;
  }
  #mv .scroll .line {
    height: 5.1282051282vw;
    margin: 0.5128205128vw auto;
    -webkit-animation: scrollanimsp 2s ease-in-out infinite alternate;
            animation: scrollanimsp 2s ease-in-out infinite alternate;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
  #mv .scroll .txt {
    font-size: 2.0512820513vw;
  }
}

@-webkit-keyframes scrollanim {
  0% {
    height: 100px;
  }
  100% {
    height: 0;
  }
}

@keyframes scrollanim {
  0% {
    height: 100px;
  }
  100% {
    height: 0;
  }
}
@-webkit-keyframes scrollanimsp {
  0% {
    height: 5.1282051282vw;
  }
  100% {
    height: 0;
  }
}
@keyframes scrollanimsp {
  0% {
    height: 5.1282051282vw;
  }
  100% {
    height: 0;
  }
}
/*--------------------------------------------------------------
abou
--------------------------------------------------------------*/
#about {
  padding: 8rem 0 6rem;
  margin-top: 16rem;
  background: url(../image/bg_texture.jpg) center top;
  position: relative;
}
#about .ilst {
  position: absolute;
  width: 100%;
  bottom: 10rem;
  height: 20rem;
  background: url(../image/about_ilst.png) repeat-x;
  z-index: 1;
  mix-blend-mode: multiply;
}
#about .about_inner {
  margin: auto;
  position: relative;
  width: 115rem;
  z-index: 2;
}
#about h2 {
  text-align: center;
}
#about .logo {
  text-align: center;
  margin-top: 7rem;
}
#about .logo img {
  width: 25rem;
}
#about .body {
  margin-top: -10rem;
  display: flex;
  justify-content: space-between;
}
#about .txt {
  width: calc(100% - 61rem);
}
#about .txt h3 {
  font-size: 3.7rem;
  font-weight: bold;
}
#about .txt p {
  font-size: 1.7rem;
  line-height: 1.8823529412;
  margin-top: 1rem;
}
#about .ph {
  width: 61rem;
  padding-top: 6rem;
}
#about .ph img {
  width: 100%;
}
@media (max-width: 768px) {
  #about {
    padding: 17.9487179487vw 0 38.4615384615vw;
    margin-top: 0;
    background-size: contain;
    position: relative;
  }
  #about .ilst {
    width: 100%;
    bottom: 5.1282051282vw;
    height: 20.5128205128vw;
    background: url(../image/about_ilst.png) repeat-x;
    background-size: auto 20.5128205128vw;
  }
  #about .about_inner {
    margin: auto;
    position: relative;
    width: auto;
  }
  #about h2 {
    text-align: center;
  }
  #about .logo {
    text-align: center;
    margin-top: 12.8205128205vw;
  }
  #about .logo img {
    width: 38.4615384615vw;
  }
  #about .body {
    margin-top: 10.2564102564vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  #about .txt {
    width: auto;
    text-align: center;
    padding: 0 5.1282051282vw;
  }
  #about .txt h3 {
    font-size: 1.8rem;
  }
  #about .txt p {
    font-size: 1.3rem;
  }
  #about .ph {
    width: 100%;
    text-align: center;
    padding-top: 10.2564102564vw;
  }
  #about .ph img {
    width: 70.5128205128vw;
  }
}

/*--------------------------------------------------------------
product
--------------------------------------------------------------*/
#product {
  position: relative;
  padding-top: 12rem;
  overflow: hidden;
}
#product section {
  margin-top: 8rem;
  padding: 1rem 0 8rem;
}
#product section + section {
  margin-top: 4rem;
}
#product section .upper {
  display: flex;
  height: 39rem;
  position: relative;
}
#product section .upper .hgroup {
  width: 43rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#product section .upper .hgroup h3 {
  font-family: "Zen Maru Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 6.5rem;
  color: #E83E34;
  font-weight: bold;
  line-height: 1;
}
#product section .upper .ph {
  position: absolute;
  width: calc(50vw + 21rem);
  height: 100%;
  top: 0;
  left: 44rem;
}
#product section .upper .ph img {
  border-top-left-radius: 7rem;
  border-bottom-left-radius: 7rem;
  width: 100%;
  max-width: calc(50vw + 21rem);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#product section .lower {
  margin-top: 4rem;
  display: flex;
  gap: 5rem;
}
#product section .lower .item {
  width: 81rem;
  display: flex;
  justify-content: space-between;
}
#product section .lower .item li {
  width: 25rem;
}
#product section .lower .item li a {
  display: block;
  width: 100%;
  position: relative;
}
#product section .lower .item li a .rect {
  position: absolute;
  top: 0;
  left: 0;
  stroke-dasharray: 1000px;
  stroke-dashoffset: 1000px;
  transition: 0.8s;
  width: 100%;
  height: 100%;
}
#product section .lower .item li a .rect svg {
  width: 100%;
  height: 100%;
}
#product section .lower .item li a:hover .rect {
  stroke-dashoffset: 0px;
}
#product section .lower .item li figure {
  aspect-ratio: 1/1;
  border-radius: 3rem;
  overflow: hidden;
}
#product section .lower .item li h4 {
  height: 11rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../image/deco_lines.png) center bottom no-repeat;
  background-size: contain;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
}
#product section .lower .bodycopy {
  padding-top: 1rem;
  width: 37rem;
  font-size: 1.6rem;
  line-height: 1.6875;
}
@media (min-width: 769px) {
  #product section#paper .upper .hgroup .icon {
    margin-left: 10rem;
    width: 2.9rem;
  }
  #product section#fabric {
    margin-top: 9rem;
  }
  #product section#fabric .upper .hgroup .icon {
    margin-left: 2.5rem;
    width: 20rem;
  }
  #product section#stationery, #product section#goods {
    position: relative;
    z-index: 2;
  }
  #product section#stationery::after, #product section#goods::after {
    z-index: -1;
    width: 100vw;
    height: 100%;
    background: url(../image/bg_texture.jpg);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    transform: skewY(-10deg);
  }
  #product section#stationery .upper, #product section#goods .upper {
    flex-direction: row-reverse;
    align-items: center;
  }
  #product section#stationery .upper .hgroup, #product section#goods .upper .hgroup {
    flex-direction: column-reverse;
  }
  #product section#stationery .upper .hgroup .icon img, #product section#goods .upper .hgroup .icon img {
    height: 12.5rem;
  }
  #product section#stationery .upper .ph, #product section#goods .upper .ph {
    position: absolute;
    width: calc(50vw + 22rem);
    height: 100%;
    top: 0;
    left: unset;
    right: 43rem;
  }
  #product section#stationery .upper .ph img, #product section#goods .upper .ph img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 7rem;
    border-bottom-right-radius: 7rem;
  }
  #product section#goods::after {
    height: calc(100% + 300px);
  }
}
@media (max-width: 768px) {
  #product {
    position: relative;
    padding: 17.9487179487vw 0 0vw;
  }
  #product #paper .upper .icon {
    position: absolute;
    bottom: 0;
    right: 15.3846153846vw;
  }
  #product #paper .upper .icon img {
    width: 3.8461538462vw;
  }
  #product #stationery .upper .icon {
    position: absolute;
    bottom: 0;
    right: 5.1282051282vw;
  }
  #product #stationery .upper .icon img {
    width: 23.0769230769vw;
  }
  #product #fabric .upper .icon {
    position: absolute;
    bottom: 0;
    right: 10.2564102564vw;
  }
  #product #fabric .upper .icon img {
    width: 30.7692307692vw;
  }
  #product #goods .upper .icon {
    position: absolute;
    bottom: 0;
    right: 17.9487179487vw;
  }
  #product #goods .upper .icon img {
    width: 19.2307692308vw;
  }
  #product section {
    margin-top: auto;
    padding: 25.641025641vw 0 0;
  }
  #product section + section {
    margin-top: 2.5641025641vw;
  }
  #product section .upper {
    display: block;
    height: auto;
  }
  #product section .upper .hgroup {
    position: relative;
    width: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
  #product section .upper .hgroup h3 {
    font-size: 3.7rem;
    line-height: 1;
  }
  #product section .upper .hgroup .icon {
    text-align: center;
  }
  #product section .upper .bodycopy {
    margin: 6.4102564103vw auto;
    font-size: 1.3rem;
    line-height: 1.7692307692;
  }
  #product section .upper .ph {
    position: static;
    width: 100vw;
    height: 97.4358974359vw;
    margin-left: -5.641025641vw;
  }
  #product section .upper .ph img {
    border-top-left-radius: 12.8205128205vw;
    border-bottom-left-radius: 12.8205128205vw;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }
  #product section .lower {
    margin-top: 12.3076923077vw;
    display: flex;
    flex-direction: column;
    gap: 5rem;
  }
  #product section .lower .item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 76.9230769231vw;
    margin: auto;
    gap: 7.6923076923vw;
  }
  #product section .lower .item li {
    margin: auto;
    width: 76.9230769231vw;
  }
  #product section .lower .item li a {
    display: block;
    width: 100%;
    position: relative;
  }
  #product section .lower .item li a .rect {
    position: absolute;
    top: 0;
    left: 0;
    stroke-dasharray: 1000px;
    stroke-dashoffset: 1000px;
    transition: 0.8s;
    width: 100%;
    height: 100%;
  }
  #product section .lower .item li a .rect svg {
    width: 100%;
    height: 100%;
  }
  #product section .lower .item li figure {
    border-radius: 10.2564102564vw;
  }
  #product section .lower .item li figure img {
    width: 100%;
  }
  #product section .lower .item li h4 {
    height: auto;
    font-size: 1.8rem;
    padding: 5.1282051282vw 0 8.2051282051vw;
    line-height: 1.3888888889;
  }
  #product section .lower .bodycopy {
    padding-top: 1rem;
    width: 37rem;
    font-size: 1.6rem;
    line-height: 1.6875;
  }
  #product section#stationery, #product section#goods {
    position: relative;
    z-index: 2;
    margin-top: 25.641025641vw;
    padding-bottom: 25.641025641vw;
  }
  #product section#stationery::after, #product section#goods::after {
    z-index: -1;
    width: 100vw;
    height: 100%;
    background: url(../image/bg_texture.jpg);
    background-size: cover;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    transform: skewY(-10deg);
  }
  #product section#stationery .upper .ph img, #product section#goods .upper .ph img {
    border-top-left-radius: 0vw;
    border-bottom-left-radius: 0vw;
    border-top-right-radius: 12.8205128205vw;
    border-bottom-right-radius: 12.8205128205vw;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }
  #product section#goods::after {
    height: calc(100% + 300px);
  }
}

/*--------------------------------------------------------------
remodal
--------------------------------------------------------------*/
.remodal-overlay {
  background: rgba(217, 217, 217, 0.5);
}

.remodal-wrapper .remodal-close {
  left: auto;
  right: 2rem;
  top: 2rem;
  background: #DEE3DA;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  transition: 0.3s;
}
.remodal-wrapper .remodal-close:hover {
  background: #E83E34;
}
.remodal-wrapper .remodal-close::before {
  content: "×";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 200;
  font-family: "Zen Maru Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.remodal-wrapper .popup {
  border-radius: 4rem;
  padding: 4.5rem 4rem;
}
.remodal-wrapper .popup figure {
  border-radius: 4rem;
  overflow: hidden;
}
.remodal-wrapper .popup figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.remodal-wrapper .popup h4 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 2rem;
}
.remodal-wrapper .popup .txt {
  margin-top: 2rem;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.625;
}
.remodal-wrapper .popup .btn_wrapper {
  margin-top: 2rem;
  text-align: center;
}
.remodal-wrapper .popup .btn_wrapper a {
  display: inline-flex;
  width: 100%;
  max-width: 24.5rem;
  height: 4.5rem;
  border-radius: 50px;
  font-size: 1.6em;
  background: #E83E34;
  color: #fff;
  justify-content: center;
  align-items: center;
  border: 1px solid #E83E34;
  transition: 0.3s ease-out;
}
.remodal-wrapper .popup .btn_wrapper a:hover {
  color: #E83E34;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .remodal-wrapper .popup {
    border-radius: 4rem;
    padding: 4.5rem 4rem;
  }
  .remodal-wrapper .popup figure {
    border-radius: 4rem;
    overflow: hidden;
  }
  .remodal-wrapper .popup h4 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 2rem;
  }
  .remodal-wrapper .popup .txt {
    margin-top: 2rem;
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .remodal-wrapper .popup .btn_wrapper {
    margin-top: 2rem;
    text-align: center;
  }
  .remodal-wrapper .popup .btn_wrapper a {
    display: inline-flex;
    width: 100%;
    max-width: 24.5rem;
    height: 4.5rem;
    border-radius: 50px;
    font-size: 1.6em;
    background: #E83E34;
    color: #fff;
    justify-content: center;
    align-items: center;
    border: 1px solid #E83E34;
    transition: 0.3s ease-out;
  }
  .remodal-wrapper .popup .btn_wrapper a:hover {
    color: #E83E34;
    background: #fff;
  }
}

/*--------------------------------------------------------------
gallery
--------------------------------------------------------------*/
#gallery {
  position: relative;
  z-index: 2;
  background: #fff;
  margin-top: 12rem;
  padding-top: 8rem;
  padding-bottom: 2rem;
  position: relative;
  padding-bottom: 6rem;
}
#gallery::before {
  width: 124rem;
  z-index: -1;
  border-radius: 7rem;
  height: 100%;
  content: "";
  display: block;
  background: url(../image/gallery_bg.jpg);
  position: absolute;
  top: 0;
  left: calc(50% - 62rem);
}
#gallery h2 {
  text-align: center;
}
#gallery .ttl {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 5rem;
}
#gallery .ttl h3 {
  display: inline-block;
  background: #fff;
  line-height: 1;
  padding: 1rem 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
#gallery .slider {
  margin: 5rem auto auto;
  width: 144rem;
}
#gallery .slider .wrapper {
  height: 55rem;
}
#gallery .slider .slide {
  text-align: center;
  height: 55rem;
  margin: auto;
}
#gallery .slider .slide h3 {
  height: 0;
  opacity: 0;
  display: inline-block;
  display: none;
  background: #fff;
  line-height: 1;
  padding: 1rem 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 5rem;
  letter-spacing: 0.1em;
}
#gallery .slider .slide figure {
  height: 55rem;
  overflow: hidden;
  margin: auto;
}
#gallery .slider .slide figure img {
  transition: 0.8s;
}
#gallery .slider .slide figure h3 {
  opacity: 0;
  transition: 0.8s;
}
#gallery .slider .slide.swiper-slide-active h3 {
  opacity: 1;
  transition: 0.8s;
}
#gallery .slider .slide.swiper-slide-prev h3 {
  opacity: 0;
}
#gallery .slider .swiper-pagination {
  display: none;
}
#gallery .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 7rem;
  right: calc(50% - 55rem);
  text-align: right;
  font-weight: bold;
  font-size: 0;
  line-height: 1;
}
#gallery .swiper-pagination span {
  font-size: 2.9rem;
}
#gallery .swiper-pagination .bar {
  height: 1px;
  width: 5rem;
  margin: auto 1.5rem;
  background: #fff;
  margin-bottom: 1.2rem;
  overflow: hidden;
}
#gallery .swiper-pagination .bar .black {
  width: 0;
  height: 1px;
  background: #000;
  transform: translateX(100%);
  transition: transform 0.5s linear, width 0s 0.9s linear;
}
#gallery .swiper-pagination.start .bar .black {
  width: 5rem;
  height: 100%;
  opacity: 1;
  transform: translateX(0);
  transition: transform 0s 0s, width 4s linear;
}
@media screen and (max-width: 768px) {
  #gallery {
    background: #fff;
    margin-top: 15.3846153846vw;
    padding-top: 15.3846153846vw;
    padding-bottom: 15.3846153846vw;
    padding-bottom: 10.2564102564vw;
  }
  #gallery::before {
    width: 76.9230769231vw;
    z-index: -1;
    border-radius: 12.8205128205vw;
    height: 100%;
    content: "";
    display: block;
    top: 0;
    left: 11.5384615385vw;
  }
  #gallery .ttl {
    z-index: 2;
    text-align: center;
    margin-top: 6.4102564103vw;
  }
  #gallery .ttl h3 {
    display: inline-block;
    background: #fff;
    line-height: 1;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  #gallery .slider {
    margin: 5rem auto auto;
    width: 100vw;
  }
  #gallery .slider .wrapper {
    height: 128.2051282051vw;
    max-height: 60svh;
  }
  #gallery .slider .slide {
    text-align: center;
    height: 128.2051282051vw;
    max-height: 60svh;
    margin: auto;
  }
  #gallery .slider .slide h3 {
    height: 0;
    opacity: 0;
    display: inline-block;
    display: none;
    background: #fff;
    line-height: 1;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 6.4102564103vw;
    letter-spacing: 0.1em;
  }
  #gallery .slider .slide figure {
    height: 55rem;
    overflow: hidden;
    margin: auto;
  }
  #gallery .slider .slide figure img {
    transition: 0.8s;
  }
  #gallery .slider .slide figure h3 {
    opacity: 0;
    transition: 0.8s;
  }
  #gallery .slider .slide.swiper-slide-active h3 {
    opacity: 1;
    transition: 0.8s;
  }
  #gallery .slider .slide.swiper-slide-prev h3 {
    opacity: 0;
  }
  #gallery .slider .swiper-pagination {
    display: none;
  }
  #gallery .swiper-pagination {
    margin-top: 7.6923076923vw;
    position: static;
  }
  #gallery .swiper-pagination span {
    font-size: 1.6rem;
  }
  #gallery .swiper-pagination .bar {
    height: 1px;
    width: 6.4102564103vw;
    margin: auto 1.5rem;
    margin-bottom: 0.8rem;
  }
}

/*--------------------------------------------------------------
news
--------------------------------------------------------------*/
#news {
  margin-top: 11rem;
  padding: 9rem 0 10rem;
  background: url(../image/bg_texture.jpg);
}
#news .articles {
  width: 90rem;
  margin: auto auto auto;
}
#news .articles ul li {
  padding-top: 2rem;
}
#news .articles ul li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  margin-top: 2rem;
}
#news .articles ul li details {
  height: auto;
  transition: 0.5s;
  overflow: visible;
}
#news .articles ul li summary {
  outline: none;
}
#news .articles ul li details[open] .content {
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
#news .articles ul li .hgroup {
  position: relative;
  cursor: pointer;
}
#news .articles ul li .hgroup .data {
  font-family: "Josefin Sans", sans-serif;
  display: flex;
  align-items: center;
}
#news .articles ul li .hgroup .data .date {
  font-size: 1.7rem;
  font-weight: 400;
}
#news .articles ul li .hgroup .data .category {
  margin-left: 1.5rem;
  font-size: 1.6rem;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 0.2rem 1rem 0;
  border-radius: 50px;
}
#news .articles ul li .hgroup h4 {
  font-size: 1.8em;
  line-height: 1.7;
  margin-top: 1rem;
}
#news .articles ul li .hgroup::after {
  position: absolute;
  top: -8px;
  right: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(232, 62, 52, 0.4);
  border: 1px solid rgba(232, 62, 52, 0);
  border-radius: 50%;
  content: "+";
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: #fff;
  transition: 0.3s;
  padding-bottom: 0.1rem;
}
#news .articles ul li details[open] .hgroup::after {
  content: "ー";
  border: 1px solid rgba(232, 62, 52, 0.4);
  color: #E83E34;
  background: rgba(255, 255, 255, 0.4);
}
#news .articles ul li .content {
  font-size: 1.6rem;
  line-height: 1.375;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  #news {
    margin-top: 17.9487179487vw;
    padding: 15.3846153846vw 0 20.5128205128vw;
  }
  #news .articles {
    width: auto;
    margin: 10.2564102564vw 3.8461538462vw auto;
  }
  #news .articles ul li {
    padding-top: 2rem;
  }
  #news .articles ul li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
  }
  #news .articles ul li details {
    height: auto;
    transition: 0.5s;
  }
  #news .articles ul li summary {
    outline: none;
  }
  #news .articles ul li details[open] .content {
    -webkit-animation: fadeIn 0.5s ease;
            animation: fadeIn 0.5s ease;
  }
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
  #news .articles ul li .hgroup {
    position: relative;
    cursor: pointer;
  }
  #news .articles ul li .hgroup .data .date {
    font-size: 1.6rem;
  }
  #news .articles ul li .hgroup .data .category {
    margin-left: 1.5rem;
    font-size: 1.5rem;
  }
  #news .articles ul li .hgroup h4 {
    font-size: 1.6em;
    line-height: 1.4;
  }
  #news .articles ul li details[open] .hgroup::after {
    content: "ー";
    border: 1px solid rgba(232, 62, 52, 0.4);
    color: #E83E34;
    background: rgba(255, 255, 255, 0.4);
  }
  #news .articles ul li .content {
    font-size: 1.3rem;
  }
}

details {
  transition: height 0.25s;
  overflow: hidden;
}

.hgroup::-webkit-details-marker {
  display: none;
}

/*--------------------------------------------------------------
contact
--------------------------------------------------------------*/
#contact {
  padding-top: 10rem;
  font-size: 1.6rem;
}
#contact.confirm {
  padding-top: 30rem;
}
#contact .inner_inner {
  width: 90rem;
  margin: 5rem auto auto;
  position: relative;
}
#contact .inner_inner .stamp {
  position: absolute;
  top: 0;
  right: 0;
}
#contact .inner_inner .stamp img {
  width: 30rem;
}
#contact .en {
  font-size: 118%;
  font-family: "Josefin Sans", sans-serif;
}
#contact .asterrisk {
  font-family: "Josefin Sans", sans-serif;
  color: #E83E34;
}
#contact .form_wrapper {
  margin-top: 5rem;
}
#contact .form_wrapper dl dt {
  margin-top: 4rem;
  position: relative;
}
#contact .form_wrapper dl dd {
  position: relative;
  border-bottom: 1px solid #000;
  margin-top: 1.5rem;
  border-left: 0.5rem solid #E83E34;
  padding: 0 0.5rem 1rem 1rem;
}
#contact .form_wrapper dl dd.type {
  width: 45rem;
}
#contact .form_wrapper dl dd:empty {
  height: 3.4rem;
}
#contact .form_wrapper dl .error {
  position: absolute;
  left: 0;
  bottom: -2.3rem;
  color: #E83E34;
  z-index: 3;
  font-size: 90%;
}
#contact .form_wrapper dl .error:nth-of-type(2) {
  z-index: 2;
}
#contact .form_wrapper input[type=text], #contact .form_wrapper select {
  width: 100%;
  font-size: 1.6rem;
}
#contact .form_wrapper select {
  background: url(../image/arrow_down.svg) right center no-repeat;
}
#contact .form_wrapper textarea {
  font-size: 1.6rem;
  line-height: 1.625;
  height: 16rem;
  width: 100%;
}
#contact .form_wrapper input[type=submit] {
  font-size: 1.8rem;
  line-height: 4.5rem;
}
#contact .form_wrapper .form_submit {
  text-align: center;
  margin-top: 5rem;
  display: flex;
  gap: 5rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #contact {
    padding-top: 17.9487179487vw;
    font-size: 1.3rem;
  }
  #contact.confirm {
    padding-top: 30.7692307692vw;
  }
  #contact .inner_inner {
    width: auto;
    position: relative;
    margin: auto;
  }
  #contact .inner_inner .stamp {
    margin: 10.2564102564vw auto 7.6923076923vw;
    position: static;
    text-align: center;
  }
  #contact .inner_inner .stamp img {
    width: 51.2820512821vw;
  }
  #contact .en {
    font-size: 118%;
    font-family: "Josefin Sans", sans-serif;
  }
  #contact .form_wrapper {
    margin-top: 5rem;
  }
  #contact .form_wrapper dl dt {
    margin-top: 10.2564102564vw;
    position: relative;
  }
  #contact .form_wrapper dl dd {
    margin-top: 3.8461538462vw;
  }
  #contact .form_wrapper dl dd.type {
    width: auto;
  }
  #contact .form_wrapper dl dd:empty {
    height: 3.4rem;
  }
  #contact .form_wrapper dl .error {
    position: absolute;
    left: 0;
    bottom: -2.3rem;
    color: #E83E34;
    z-index: 3;
    font-size: 90%;
  }
  #contact .form_wrapper dl .error:nth-of-type(2) {
    z-index: 2;
  }
  #contact .form_wrapper input[type=text], #contact .form_wrapper select {
    width: 100%;
    font-size: 1.6rem;
  }
  #contact .form_wrapper select {
    background: url(../image/arrow_down.svg) right center no-repeat;
  }
  #contact .form_wrapper textarea {
    font-size: 1.6rem;
    line-height: 1.625;
    height: 16rem;
    width: 100%;
  }
  #contact .form_wrapper input[type=submit] {
    font-size: 1.8rem;
    line-height: 4.5rem;
  }
  #contact .form_wrapper .form_submit {
    text-align: center;
    margin-top: 5rem;
    display: flex;
    gap: 5rem;
    justify-content: center;
    align-items: center;
  }
}
#contact .privacy {
  text-align: center;
  margin-top: 2rem;
}
#contact .privacy a {
  text-align: left;
  text-decoration: underline;
}

.button {
  cursor: pointer;
  color: #fff;
  background: #E83E34;
  border-radius: 50px;
  border: 2px solid #E83E34;
  transition: 0.3s;
  font-size: 1.8rem;
  display: inline-block;
  grid-auto-flow: row;
  place-items: center;
  padding: 0.5rem 3rem 0.7rem;
}
.button:hover {
  background: #fff;
  color: #E83E34;
}
.button.reverse {
  background: #fff;
  color: #E83E34;
}
.button.reverse:hover {
  color: #fff;
  background: #E83E34;
}
@media screen and (max-width: 768px) {
  .button {
    cursor: pointer;
    color: #fff;
    background: #E83E34;
    border-radius: 50px;
    border: 2px solid #E83E34;
    transition: 0.3s;
    font-size: 1.8rem;
    display: inline-block;
    grid-auto-flow: row;
    place-items: center;
    padding: 0.5rem 3rem 0.7rem;
  }
}

/*--------------------------------------------------------------
thanks
--------------------------------------------------------------*/
#thanks {
  padding-top: 26rem;
  text-align: center;
}
#thanks h2 {
  font-weight: bold;
  color: #E83E34;
  font-size: 6rem;
  padding-bottom: 2rem;
  background: url(../image/thanks_lines.png) center bottom no-repeat;
  width: 76.5rem;
  margin: auto;
}
#thanks h3 {
  font-size: 2.5em;
  margin-top: 5rem;
}
#thanks p {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 1.625;
}
#thanks .btn_wrapper {
  margin: 8rem auto;
}
@media screen and (max-width: 768px) {
  #thanks {
    padding-top: 25.641025641vw;
    text-align: center;
  }
  #thanks h2 {
    font-size: 3.7rem;
    padding-bottom: 2rem;
    background: url(../image/thanks_lines.png) center bottom no-repeat;
    width: auto;
    margin: auto;
  }
  #thanks h3 {
    font-size: 1.6em;
    margin-top: 5rem;
  }
  #thanks p {
    margin-top: 4rem;
    font-size: 1.3rem;
    line-height: 1.625;
  }
  #thanks .btn_wrapper {
    margin: 6rem auto 8rem;
  }
}

/*--------------------------------------------------------------
プライバシーポリシーー
--------------------------------------------------------------*/
#privacy {
  padding-top: 20rem;
}
#privacy .inner {
  width: 90rem;
  max-width: 90vw;
  font-size: 1.6rem;
  line-height: 1.8;
}
#privacy .inner h2 {
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 8rem;
}
#privacy .inner ul {
  margin-top: 5rem;
}
#privacy .inner ul li + li {
  margin-top: 4rem;
}
#privacy .inner ul h3 {
  font-weight: bold;
  margin-bottom: 1.5rem;
}
#privacy .inner ul p {
  margin-top: 1rem;
}
#privacy .inner ul ul {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  #privacy {
    padding-top: 30.7692307692vw;
  }
  #privacy .inner h2 {
    font-size: 1.7em;
    line-height: 1.5;
    margin-bottom: 5rem;
  }
}

/*--------------------------------------------------------------
profile
--------------------------------------------------------------*/
#profile {
  margin-top: 5rem;
  text-align: center;
  font-size: 1.8rem;
}
#profile .small {
  font-size: 85%;
}
#profile h2 {
  font-size: 120%;
}
#profile h2 span {
  font-size: 80%;
}
#profile table {
  margin: 2em auto auto;
  text-align: left;
  line-height: 1.8;
}
#profile table th {
  padding-right: 1.5em;
  font-size: 75%;
  text-align: right;
  font-weight: 400;
  opacity: 0.8;
}
#profile .tel {
  margin-top: 1.5em;
  line-height: 1.6;
}
#profile .tel .small {
  font-size: 85%;
}
#profile .original {
  margin-top: 3em;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0.02);
  padding: 1.5rem 2.5rem;
  border-radius: 1rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: bold;
}

/*--------------------------------------------------------------
sns
--------------------------------------------------------------*/
#sns {
  margin-top: 10rem;
}
#sns .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
}
#sns h3 {
  font-size: 2.5rem;
  display: flex;
  gap: 1rem;
  margin-bottom: 4rem;
}
#sns h3 img {
  width: 2.5rem;
  vertical-align: bottom;
}
#sns .instagram {
  width: 89rem;
}
#sns .instagram .timeline {
  border-right: 1px solid #ccc;
}
#sns .instagram .timeline ul {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
#sns .instagram .timeline ul li {
  border-radius: 3rem;
  background: #f5f5f5;
  width: 25rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
#sns .instagram .timeline ul li a {
  width: 100%;
  height: 100%;
  display: block;
}
#sns .instagram .timeline ul li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sns .twitter {
  width: 32rem;
  display: flex;
  justify-content: flex-end;
}
#sns .twitter .twitter_inner {
  width: 32rem;
}
#sns .twitter .twitter_inner .timeline {
  width: 325px;
  height: 53rem;
  transform: scale(var(--per));
  transform-origin: left top;
}
#sns .twitter .twitter_inner .timeline a {
  height: 53rem;
}
@media screen and (max-width: 768px) {
  #sns {
    margin-top: 25.641025641vw;
  }
  #sns .flex {
    display: flex;
    flex-direction: column;
    margin-top: 10.2564102564vw;
  }
  #sns h3 {
    font-size: 2rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  #sns h3 img {
    width: 2rem;
  }
  #sns .instagram {
    width: auto;
  }
  #sns .instagram .timeline {
    border-right: none;
    margin-top: auto;
  }
  #sns .instagram .timeline ul {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 4% 2px;
    flex-wrap: wrap;
  }
  #sns .instagram .timeline ul li {
    border-radius: 3rem;
    width: 48%;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-top: 4vw;
  }
  #sns .instagram .timeline ul li a {
    width: 100%;
    height: 100%;
    display: block;
  }
  #sns .instagram .timeline ul li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #sns .twitter {
    margin-top: 20.5128205128vw;
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  #sns .twitter .twitter_inner {
    width: 32rem;
  }
  #sns .twitter .twitter_inner .timeline {
    width: 100%;
    height: 365px;
    transform: scale(1);
    height: 365px;
  }
  #sns .twitter .twitter_inner .timeline a {
    height: 365px;
  }
}

/*--------------------------------------------------------------

--------------------------------------------------------------*/
/*# sourceMappingURL=style.css.map */