@charset "UTF-8";
* {
  list-style: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media (max-width: 1300px) {
  html {
    scroll-padding-top: 0px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: 100%;
  height: 100%;
  color: #000000;
  background-color: #F4F2F0;
  letter-spacing: 0.025em;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
}
@media (max-width: 790px) {
  body {
    font-size: 3.5vw;
  }
}

main {
  overflow-x: hidden;
}
@media (max-width: 790px) {
  main {
    overflow: hidden;
  }
}

.en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
}

img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.5;
}

button {
  cursor: pointer;
}

h2 {
  font-size: 8.125rem;
  font-weight: 400;
  color: #D8C7B4;
  line-height: 1;
  position: relative;
  z-index: 3;
}
@media (max-width: 790px) {
  h2 {
    font-size: 11vw;
  }
}

.mw_wrap {
  max-width: calc(1440px + 6vw);
  padding: 0 3vw;
  margin: auto;
  position: relative;
}
@media (max-width: 790px) {
  .mw_wrap {
    max-width: 100%;
    padding: 0;
  }
}

.content_wrap {
  width: 100%;
  padding: 120px calc((100% - 1000px) / 2);
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .content_wrap {
    padding: 60px 10vw;
  }
}
@media (max-width: 790px) {
  .content_wrap {
    padding: 40px 4vw;
  }
}

.note {
  font-size: 0.8125rem;
}

.dot li {
  margin-left: 1em;
  position: relative;
}
.dot li::before {
  content: "・";
  position: absolute;
  left: -1em;
}

header {
  padding: 30px 50px;
  position: fixed;
  width: 100%;
  z-index: 999;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .gNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .gNav .gNav_btn {
  display: none;
}
header .gNav nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
header .gNav nav ul li a {
  font-size: 1.125rem;
  color: #000000;
}
header .gNav nav ul li.contact a {
  color: #fff;
  background-color: #7EA3AF;
  padding: 4px 20px 6px;
  border-radius: 20vw;
}
@media (max-width: 790px) {
  header {
    padding: 20px;
  }
  header .gNav .gNav_btn {
    display: inline-block;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 999;
  }
  header .gNav .gNav_btn a {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
  }
  header .gNav .gNav_btn a span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000000;
    margin: 8px 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  header .gNav .gNav_btn.active {
    position: fixed;
  }
  header .gNav .gNav_btn.active a span {
    display: block;
  }
  header .gNav .gNav_btn.active a span:nth-child(1) {
    -webkit-transform: translateY(11px) rotate(45deg);
            transform: translateY(11px) rotate(45deg);
  }
  header .gNav .gNav_btn.active a span:nth-child(2) {
    opacity: 0;
  }
  header .gNav .gNav_btn.active a span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
  header .gNav .logo {
    width: 12vw;
  }
  header .gNav nav {
    display: none;
  }
  header .gNav nav.active {
    position: fixed;
    width: 100%;
    height: 100dvh;
    background-color: #F4F2F0;
    z-index: 998;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    left: 0;
    top: 0;
  }
  header .gNav nav.active ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .gNav nav.active ul li a {
    font-size: 4vw;
  }
}

#top .top_wrap {
  position: relative;
}
#top .top_wrap .mv_wrap {
  position: relative;
  max-height: 1000px;
  overflow: hidden;
}
@media (max-width: 790px) {
  #top .top_wrap .mv_wrap {
    height: 125vw;
  }
}
#top .top_wrap .mv_wrap::before {
  content: "";
  background-color: rgba(248, 242, 235, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#top .top_wrap .mv_wrap video {
  width: 100%;
}
@media (max-width: 790px) {
  #top .top_wrap .mv_wrap video {
    width: auto;
    height: 125vw;
  }
}
#top .top_wrap .top_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 6vw;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  #top .top_wrap .top_inner {
    gap: 20px;
  }
}
@media (max-width: 790px) {
  #top .top_wrap .top_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media screen and (max-width: 1100px) {
  #top .top_wrap .top_inner .ttl {
    width: 40%;
  }
}
@media (max-width: 790px) {
  #top .top_wrap .top_inner .ttl {
    width: 80%;
  }
}
#top .top_wrap .top_inner .ttl .logo {
  width: 260px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1100px) {
  #top .top_wrap .top_inner .ttl .logo {
    width: 80%;
  }
}
@media (max-width: 790px) {
  #top .top_wrap .top_inner .ttl .logo {
    width: 55%;
    margin: 0 auto 5vw;
  }
}
#top .top_wrap .top_inner .ttl h1 {
  width: 530px;
  font-size: 0;
}
@media screen and (max-width: 1100px) {
  #top .top_wrap .top_inner .ttl h1 {
    width: auto;
  }
}
@media (max-width: 790px) {
  #top .top_wrap .top_inner .ttl h1 {
    width: 100%;
    margin: 0;
  }
}
#top .top_wrap .top_inner .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}
@media screen and (max-width: 1100px) {
  #top .top_wrap .top_inner .product {
    width: 60%;
    gap: 7vw;
  }
}
@media (max-width: 790px) {
  #top .top_wrap .top_inner .product {
    gap: 12vw;
  }
}
#top .top_wrap .top_inner .product img {
  height: 38vw;
  max-height: 600px;
  width: auto;
}
@media (max-width: 790px) {
  #top .top_wrap .top_inner .product img {
    height: 75vw;
  }
}
#top .top_wrap .top_inner .product img.product_01 {
  height: 32.5vw;
  max-height: 500px;
  -webkit-filter: drop-shadow(2px 0px 2px rgba(46, 46, 46, 0.6)) drop-shadow(7px 4px 3px rgba(159, 160, 160, 0.8));
          filter: drop-shadow(2px 0px 2px rgba(46, 46, 46, 0.6)) drop-shadow(7px 4px 3px rgba(159, 160, 160, 0.8));
}
@media (max-width: 790px) {
  #top .top_wrap .top_inner .product img.product_01 {
    height: 64vw;
  }
}
#top .top_wrap .top_inner .product img.product_02 {
  -webkit-filter: drop-shadow(2px 0px 2px rgba(46, 46, 46, 0.6)) drop-shadow(9px 4px 4px rgba(85, 106, 114, 0.5019607843));
          filter: drop-shadow(2px 0px 2px rgba(46, 46, 46, 0.6)) drop-shadow(9px 4px 4px rgba(85, 106, 114, 0.5019607843));
}
#top .top_wrap .top_inner .product img.product_03 {
  -webkit-filter: drop-shadow(2px 0px 2px rgba(46, 46, 46, 0.4)) drop-shadow(7px 4px 3px rgb(210, 197, 176));
          filter: drop-shadow(2px 0px 2px rgba(46, 46, 46, 0.4)) drop-shadow(7px 4px 3px rgb(210, 197, 176));
}
#top .top_wrap .top_inner .product img.product_04 {
  -webkit-filter: drop-shadow(2px 0px 2px rgba(46, 46, 46, 0.4)) drop-shadow(7px 4px 3px rgba(139, 138, 135, 0.6));
          filter: drop-shadow(2px 0px 2px rgba(46, 46, 46, 0.4)) drop-shadow(7px 4px 3px rgba(139, 138, 135, 0.6));
}

#story {
  position: relative;
  margin: 170px auto 150px;
}
@media (max-width: 1300px) {
  #story {
    margin: 170px auto 20vw;
  }
}
@media (max-width: 790px) {
  #story {
    margin: 70px auto 25vw;
  }
}
#story .line_anime img {
  position: absolute;
  z-index: -1;
}
#story .line_anime img.pc {
  width: 2140px;
  top: -230px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 790px) {
  #story .line_anime img.pc {
    display: none;
  }
}
#story .line_anime img.sp {
  display: none;
}
@media (max-width: 790px) {
  #story .line_anime img.sp {
    display: block;
    width: 160vw;
    top: auto;
    bottom: 12vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#story h2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  right: -90px;
  top: 0;
}
@media (max-width: 790px) {
  #story h2 {
    right: -7.5vw;
  }
}
#story .story_wrap {
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
}
@media (max-width: 1300px) {
  #story .story_wrap {
    padding-top: 20vw;
    padding-bottom: 5vw;
  }
}
@media (max-width: 790px) {
  #story .story_wrap {
    padding-top: 5vw;
    padding-bottom: 28vw;
  }
}
#story .story_wrap .img_inner img {
  position: absolute;
}
@media (max-width: 790px) {
  #story .story_wrap .img_inner img {
    position: relative;
  }
}
#story .story_wrap .img_inner .story_01 {
  width: 31.25rem;
  top: 0;
  left: -3vw;
}
@media (max-width: 1300px) {
  #story .story_wrap .img_inner .story_01 {
    width: 38vw;
    top: 0;
    left: -3vw;
  }
}
@media (max-width: 790px) {
  #story .story_wrap .img_inner .story_01 {
    width: 70%;
    top: auto;
    left: -4vw;
  }
}
#story .story_wrap .img_inner .story_02 {
  width: 16.25rem;
  top: 390px;
  left: 330px;
}
@media (max-width: 1300px) {
  #story .story_wrap .img_inner .story_02 {
    width: 20vw;
    top: 35vw;
    left: 17vw;
  }
}
@media (max-width: 790px) {
  #story .story_wrap .img_inner .story_02 {
    width: 40%;
    top: -18vw;
    left: auto;
    right: -45vw;
  }
}
#story .story_wrap .img_inner .story_03 {
  width: 21.875rem;
  bottom: 290px;
  left: 20px;
}
@media (max-width: 1300px) {
  #story .story_wrap .img_inner .story_03 {
    width: 25vw;
    bottom: auto;
    top: 52vw;
    left: 0;
  }
}
@media (max-width: 790px) {
  #story .story_wrap .img_inner .story_03 {
    width: 50%;
    bottom: auto;
    top: 22vw;
    left: -32vw;
  }
}
#story .story_wrap .img_inner .story_04 {
  width: 20.625rem;
  bottom: 0px;
  left: 200px;
}
@media (max-width: 1300px) {
  #story .story_wrap .img_inner .story_04 {
    width: 25vw;
    bottom: auto;
    top: 75vw;
    left: 9vw;
  }
}
@media (max-width: 790px) {
  #story .story_wrap .img_inner .story_04 {
    width: 60%;
    bottom: auto;
    top: 18vw;
    left: auto;
    right: -20vw;
  }
}
#story .story_wrap .text_inner {
  width: 55%;
  max-width: 500px;
  margin-left: auto;
}
@media (max-width: 790px) {
  #story .story_wrap .text_inner {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20vw;
  }
}
#story .story_wrap .text_inner h3 {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 40px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
#story .story_wrap .text_inner h3 span {
  width: 18.75rem;
  margin-bottom: 30px;
  display: block;
}
@media (max-width: 790px) {
  #story .story_wrap .text_inner h3 {
    font-size: 7vw;
    margin-bottom: 30px;
  }
  #story .story_wrap .text_inner h3 span {
    width: 55vw;
    margin-bottom: 40px;
  }
}
#story .story_wrap .text_inner p {
  font-size: 1rem;
  line-height: 3;
  margin-bottom: 30px;
}
#story .story_wrap .text_inner p:last-child {
  margin-bottom: 0;
}
@media (max-width: 790px) {
  #story .story_wrap .text_inner p {
    font-size: 4.3vw;
    line-height: 2.6;
    margin-bottom: 20px;
  }
}
#story .story_wrap .text_inner br.sp {
  display: none;
}
@media (max-width: 790px) {
  #story .story_wrap .text_inner br.sp {
    display: block;
  }
}

#product {
  position: relative;
  margin: 80px auto 0;
  overflow: hidden;
}
@media (max-width: 790px) {
  #product {
    margin: 80px auto 0;
  }
}
#product .ink_datail {
  position: relative;
  padding-bottom: 0;
  z-index: 1;
}
@media (max-width: 790px) {
  #product .ink_datail {
    padding-top: 40px;
  }
}
#product .ink_datail::before {
  content: "";
  position: absolute;
  top: -4.5em;
  left: -5vw;
  width: 80%;
  height: 90%;
  background: #E8E8E8;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  z-index: -1;
}
@media (max-width: 790px) {
  #product .ink_datail::before {
    top: -1.5em;
    left: 0;
    width: 100%;
    height: 95%;
    margin: auto;
  }
}
#product .ink_datail h3 {
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
}
@media (max-width: 790px) {
  #product .ink_datail h3 {
    font-size: 6vw;
    margin-bottom: 30px;
  }
}
#product .ink_datail h3 span {
  font-weight: 500;
  background: #7EA3AF;
  color: #fff;
  padding: 5px 12px 5px 15px;
  margin-right: 0.2em;
}
#product .ink_datail > p {
  line-height: 2.4;
}
#product .ink_datail > p br.sp {
  display: none;
}
@media (max-width: 790px) {
  #product .ink_datail > p br.sp {
    display: block;
  }
}
#product .ink_datail .ink_wrap {
  margin: 20px auto;
  padding: 240px 0 110px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1300px) {
  #product .ink_datail .ink_wrap {
    padding: 19vw 0 8vw;
  }
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap {
    padding: 43vw 0 35vw;
    margin: 30px auto;
  }
}
#product .ink_datail .ink_wrap .ink_img {
  position: relative;
}
#product .ink_datail .ink_wrap .ink_img .ink {
  width: 280px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 1300px) {
  #product .ink_datail .ink_wrap .ink_img .ink {
    width: 21vw;
  }
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .ink_img .ink {
    width: 38vw;
  }
}
#product .ink_datail .ink_wrap .ink_img .ink_img_pic img {
  display: none;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: auto;
  width: 30%;
  max-width: 280px;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1300px) {
  #product .ink_datail .ink_wrap .ink_img .ink_img_pic img {
    width: 21vw;
    max-width: inherit;
  }
}
#product .ink_datail .ink_wrap .ink_img img.ink.dimmed {
  opacity: 0.2;
}
#product .ink_datail .ink_wrap .ink_img_pic img.active {
  display: block;
  opacity: 1;
}
#product .ink_datail .ink_wrap .button_wrap button {
  position: absolute;
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  width: 230px;
  height: 230px;
  border-radius: 50%;
}
@media screen and (max-width: 1300px) {
  #product .ink_datail .ink_wrap .button_wrap button {
    width: 18vw;
    height: 18vw;
  }
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .button_wrap button {
    max-width: inherit;
    max-height: inherit;
    width: 40vw;
    height: 40vw;
  }
}
#product .ink_datail .ink_wrap .button_wrap button::before {
  content: "";
  height: 1px;
  background-color: #000;
  display: block;
  position: absolute;
  z-index: 3;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .button_wrap button::before {
    height: 1px;
  }
}
#product .ink_datail .ink_wrap .button_wrap button .non_hover h4 {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1300px) {
  #product .ink_datail .ink_wrap .button_wrap button .non_hover h4 {
    font-size: 1vw;
  }
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .button_wrap button .non_hover h4 {
    font-size: 2.5vw;
  }
}
#product .ink_datail .ink_wrap .button_wrap button .non_hover h4 span {
  font-size: 1.125rem;
  display: block;
}
@media screen and (max-width: 1300px) {
  #product .ink_datail .ink_wrap .button_wrap button .non_hover h4 span {
    font-size: 1.5vw;
  }
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .button_wrap button .non_hover h4 span {
    font-size: 3.7vw;
  }
}
#product .ink_datail .ink_wrap .button_wrap button .non_hover p {
  font-size: 0.8125rem;
  font-weight: 700;
  background-color: #000;
  color: #fff;
  padding: 5px 40px;
  margin-top: 1em;
  border-radius: 20vw;
  display: inline-block;
}
@media screen and (max-width: 1300px) {
  #product .ink_datail .ink_wrap .button_wrap button .non_hover p {
    font-size: 1vw;
    padding: 5px 3vw;
  }
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .button_wrap button .non_hover p {
    margin-top: 5px;
    padding: 5px 5vw;
    font-size: 2.8vw;
  }
}
#product .ink_datail .ink_wrap .button_wrap button .non_hover br.sp {
  display: none;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .button_wrap button .non_hover br.sp {
    display: block;
  }
}
#product .ink_datail .ink_wrap .button_wrap button .on_hover {
  display: none;
}
#product .ink_datail .ink_wrap .button_wrap button:hover .non_hover {
  display: none;
}
#product .ink_datail .ink_wrap .button_wrap button:hover .on_hover {
  display: block;
  width: 100%;
  height: 100%;
}
#product .ink_datail .ink_wrap .button_wrap button:hover .on_hover p {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
#product .ink_datail .ink_wrap .button_wrap button:hover .on_hover p img {
  width: 120%;
  left: 55%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .button_wrap button:hover .non_hover {
    display: block;
  }
  #product .ink_datail .ink_wrap .button_wrap button:hover .on_hover {
    display: none;
  }
}
#product .ink_datail .ink_wrap .button_wrap .btn_01 {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#product .ink_datail .ink_wrap .button_wrap .btn_01::before {
  width: 80px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  bottom: -10px;
  left: 0;
  right: 10px;
  margin: auto;
}
@media screen and (max-width: 1300px) {
  #product .ink_datail .ink_wrap .button_wrap .btn_01::before {
    width: 5vw;
    bottom: -10px;
  }
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .button_wrap .btn_01::before {
    width: 11vw;
    bottom: -2vw;
    right: 0;
  }
}
#product .ink_datail .ink_wrap .button_wrap .btn_02 {
  bottom: 0;
  right: 140px;
}
@media screen and (max-width: 1300px) {
  #product .ink_datail .ink_wrap .button_wrap .btn_02 {
    right: 9vw;
  }
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .button_wrap .btn_02 {
    right: -2vw;
  }
}
#product .ink_datail .ink_wrap .button_wrap .btn_02::before {
  width: 90px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 60px;
  left: -60px;
}
@media screen and (max-width: 1300px) {
  #product .ink_datail .ink_wrap .button_wrap .btn_02::before {
    width: 6vw;
    top: 5vw;
    left: -4vw;
  }
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .button_wrap .btn_02::before {
    width: 15vw;
    top: -1vw;
    left: 2vw;
  }
}
#product .ink_datail .ink_wrap .button_wrap .btn_03 {
  bottom: 0;
  left: 140px;
}
@media screen and (max-width: 1300px) {
  #product .ink_datail .ink_wrap .button_wrap .btn_03 {
    left: 9vw;
  }
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .button_wrap .btn_03 {
    left: -2vw;
  }
}
#product .ink_datail .ink_wrap .button_wrap .btn_03::before {
  width: 110px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 30px;
  right: -70px;
}
@media screen and (max-width: 1300px) {
  #product .ink_datail .ink_wrap .button_wrap .btn_03::before {
    width: 8vw;
    top: 2vw;
    right: -4vw;
  }
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap .button_wrap .btn_03::before {
    width: 21vw;
    top: -3vw;
    right: 0vw;
  }
}
#product .ink_datail .ink_wrap dialog {
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  border: none;
}
#product .ink_datail .ink_wrap dialog .dialog_wrap {
  padding: 60px 120px;
  position: relative;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap dialog .dialog_wrap {
    padding: 40px 30px;
  }
}
#product .ink_datail .ink_wrap dialog .dialog_wrap h5 {
  font-size: 1.5625rem;
  font-weight: 500;
  margin-bottom: 40px;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap dialog .dialog_wrap h5 {
    font-size: 3.5vw;
  }
}
#product .ink_datail .ink_wrap dialog .dialog_wrap h5 span {
  font-size: 1.875rem;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap dialog .dialog_wrap h5 span {
    font-size: 4.5vw;
  }
}
#product .ink_datail .ink_wrap dialog .dialog_wrap h5 sup {
  font-size: 0.9375rem;
  top: -1.5em;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap dialog .dialog_wrap h5 sup {
    font-size: 3.2vw;
    top: -0.5em;
  }
}
#product .ink_datail .ink_wrap dialog .dialog_wrap img {
  width: 400px;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap dialog .dialog_wrap img {
    width: 80%;
  }
}
#product .ink_datail .ink_wrap dialog .dialog_wrap p {
  margin-top: 40px;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap dialog .dialog_wrap p {
    margin-top: 20px;
  }
}
#product .ink_datail .ink_wrap dialog .dialog_wrap p span {
  font-weight: 800;
}
#product .ink_datail .ink_wrap dialog .dialog_wrap br.pc {
  display: block;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap dialog .dialog_wrap br.pc {
    display: none;
  }
}
#product .ink_datail .ink_wrap dialog .dialog_wrap .note {
  font-size: 0.75rem;
  text-align: left;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap dialog .dialog_wrap .note {
    font-size: 2vw;
  }
}
#product .ink_datail .ink_wrap dialog .dialog_wrap .closeButton {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  font-size: 0;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap dialog .dialog_wrap .closeButton {
    width: 8vw;
    height: 8vw;
    top: 2vw;
    right: 2vw;
  }
}
#product .ink_datail .ink_wrap dialog .dialog_wrap .closeButton::before, #product .ink_datail .ink_wrap dialog .dialog_wrap .closeButton::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 2px;
  background-color: #000;
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (max-width: 790px) {
  #product .ink_datail .ink_wrap dialog .dialog_wrap .closeButton::before, #product .ink_datail .ink_wrap dialog .dialog_wrap .closeButton::after {
    width: 6vw;
  }
}
#product .ink_datail .ink_wrap dialog .dialog_wrap .closeButton::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
#product .ink_datail .ink_wrap dialog .dialog_wrap .closeButton::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
#product .ink_datail .movie {
  text-align: center;
  margin: 120px auto 0;
  width: 100%;
  aspect-ratio: 16/9;
}
@media (max-width: 790px) {
  #product .ink_datail .movie {
    margin: 60px auto 0;
  }
}
#product .ink_datail .movie iframe {
  width: 100%;
  height: 100%;
}
#product .line_anime img {
  position: absolute;
  z-index: -2;
}
#product .line_anime img.pc {
  width: 3040px;
  bottom: -710px;
  left: 102%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1300px) {
  #product .line_anime img.pc {
    bottom: -62vw;
    left: 114%;
  }
}
@media (max-width: 790px) {
  #product .line_anime img.pc {
    display: none;
  }
}
#product .line_anime img.sp {
  display: none;
}
@media (max-width: 790px) {
  #product .line_anime img.sp {
    display: block;
    width: 110vw;
    bottom: -85vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#product .product_list {
  position: relative;
  margin: 60px auto;
}
@media screen and (max-width: 1100px) {
  #product .product_list {
    margin: 40px auto 80px;
  }
}
@media (max-width: 790px) {
  #product .product_list {
    margin: 40px auto;
  }
}
#product .product_list .content_wrap {
  padding: 80px calc((100% - 1000px) / 2);
}
@media screen and (max-width: 1300px) {
  #product .product_list .content_wrap {
    padding: 80px 9vw;
  }
}
@media screen and (max-width: 1100px) {
  #product .product_list .content_wrap {
    padding: 60px 10vw 20px;
  }
}
@media (max-width: 790px) {
  #product .product_list .content_wrap {
    padding: 20px 10vw;
  }
}
#product .swiper {
  overflow: visible;
}
#product .swiper-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 790px) {
  #product .swiper-wrapper {
    margin-bottom: 5vw;
  }
}
#product .swiper-wrapper .swiper-slide {
  width: 1100px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1100px) {
  #product .swiper-wrapper .swiper-slide {
    width: 100vw;
  }
}
@media (max-width: 790px) {
  #product .swiper-wrapper .swiper-slide {
    width: 100vw;
    text-align: center;
  }
}
#product .swiper-wrapper .swiper-slide .img_wrap {
  text-align: center;
}
@media screen and (max-width: 1100px) {
  #product .swiper-wrapper .swiper-slide .img_wrap {
    margin-bottom: 50px;
  }
}
@media (max-width: 790px) {
  #product .swiper-wrapper .swiper-slide .img_wrap {
    margin-bottom: 20px;
  }
}
#product .swiper-wrapper .swiper-slide .img_wrap h4 {
  font-size: 4.0625rem;
  letter-spacing: -0.05em;
  color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1100px) {
  #product .swiper-wrapper .swiper-slide .img_wrap h4 {
    font-size: 6vw;
  }
}
@media (max-width: 790px) {
  #product .swiper-wrapper .swiper-slide .img_wrap h4 {
    font-size: 9vw;
  }
}
#product .swiper-wrapper .swiper-slide .img_wrap img {
  width: 400px;
  margin-top: -60px;
}
@media screen and (max-width: 1300px) {
  #product .swiper-wrapper .swiper-slide .img_wrap img {
    width: 350px;
  }
}
@media screen and (max-width: 1100px) {
  #product .swiper-wrapper .swiper-slide .img_wrap img {
    width: 35vw;
    max-width: initial;
    margin-top: -5vw;
  }
}
@media (max-width: 790px) {
  #product .swiper-wrapper .swiper-slide .img_wrap img {
    width: 50vw;
    max-width: initial;
    margin-top: -8vw;
  }
}
#product .swiper-wrapper .swiper-slide .text_wrap {
  width: 320px;
  text-align: left;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -50px;
  padding: 0 10px;
}
@media screen and (max-width: 1100px) {
  #product .swiper-wrapper .swiper-slide .text_wrap {
    width: 100%;
    position: relative;
    top: 0%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    left: 0;
  }
}
@media (max-width: 790px) {
  #product .swiper-wrapper .swiper-slide .text_wrap {
    width: 100%;
    position: relative;
    top: 0%;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    left: 0;
    padding: 0;
  }
}
#product .swiper-wrapper .swiper-slide .text_wrap h5 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 790px) {
  #product .swiper-wrapper .swiper-slide .text_wrap h5 {
    font-size: 4vw;
    margin-bottom: 10px;
  }
}
#product .swiper-wrapper .swiper-slide .text_wrap p {
  line-height: 2.2;
}
#product .swiper-wrapper .swiper-slide .text_wrap .em {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (max-width: 790px) {
  #product .swiper-wrapper .swiper-slide .text_wrap .em {
    font-size: 3.5vw;
  }
}
#product .swiper-wrapper .swiper-slide .text_wrap a {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  letter-spacing: 0.2em;
}
@media (max-width: 790px) {
  #product .swiper-wrapper .swiper-slide .text_wrap a {
    margin-top: 20px;
  }
}
#product .swiper-wrapper .swiper-slide .text_wrap a::after {
  content: "";
  width: 100px;
  height: 7px;
  border-bottom: solid 1px;
  border-right: solid 1px;
  -webkit-transform: skew(60deg);
          transform: skew(60deg);
  margin-top: 0.5em;
}
#product .swiper-wrapper .swiper-slide .img_pen img {
  position: absolute;
  width: 180px;
  bottom: 0;
  right: 150px;
}
@media screen and (max-width: 1300px) {
  #product .swiper-wrapper .swiper-slide .img_pen img {
    width: 22%;
    max-width: 220px;
    right: 70px;
  }
}
@media screen and (max-width: 1100px) {
  #product .swiper-wrapper .swiper-slide .img_pen img {
    width: 18vw;
    right: 5vw;
    bottom: auto;
    top: 12vw;
  }
}
@media (max-width: 790px) {
  #product .swiper-wrapper .swiper-slide .img_pen img {
    width: 22vw;
    right: 8vw;
    bottom: auto;
    top: 19vw;
  }
}
#product .swiper-wrapper .standard .text_wrap {
  background-color: #f4f2f0;
}
#product .swiper-wrapper .standard .color_lineup {
  margin-top: 30px;
}
@media (max-width: 790px) {
  #product .swiper-wrapper .standard .color_lineup {
    margin-top: 15px;
  }
}
#product .swiper-wrapper .standard .color_lineup h6 {
  font-size: 1rem;
}
@media (max-width: 790px) {
  #product .swiper-wrapper .standard .color_lineup h6 {
    font-size: 3.3vw;
  }
}
#product .swiper-wrapper .standard .color_lineup dl div {
  margin-top: 10px;
}
@media (max-width: 790px) {
  #product .swiper-wrapper .standard .color_lineup dl div {
    margin-top: 5px;
  }
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul li {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: block;
}
@media (max-width: 790px) {
  #product .swiper-wrapper .standard .color_lineup dl div dd ul li {
    width: 4vw;
    height: 4vw;
  }
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_01 {
  background-color: #A09FA4;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_02 {
  background-color: #F89980;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_03 {
  background-color: #E5D1DC;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_04 {
  background-color: #D6D9E8;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_05 {
  background-color: #86AEAE;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_06 {
  background-color: #A37E70;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_07 {
  background-color: #2C395C;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_08 {
  background-color: #E3D3A6;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_09 {
  background-color: #EDDAD8;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_10 {
  background-color: #DEE7E0;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_11 {
  background-color: #DF87AA;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_12 {
  background-color: #515151;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_13 {
  background-color: #313E52;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_14 {
  background-color: #53342E;
}
#product .swiper-wrapper .standard .color_lineup dl div dd ul .color_15 {
  background-color: #EBE4EA;
}
#product .swiper_option {
  position: relative;
}
#product .swiper_option .swiper-pagination {
  position: relative;
  bottom: auto;
}
#product .swiper_option .swiper-pagination-bullet {
  width: 0.9375rem;
  height: 0.9375rem;
}
@media (max-width: 790px) {
  #product .swiper_option .swiper-pagination-bullet {
    width: 2vw;
    height: 2vw;
  }
}
#product .swiper_option .swiper-pagination-bullet-active {
  background-color: #7EA3AF;
}
#product .swiper_option .swiper-button {
  color: #7EA3AF;
  margin: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#product .swiper_option .swiper-button::after {
  font-size: 1.5625rem;
  font-weight: bold;
}
@media (max-width: 790px) {
  #product .swiper_option .swiper-button::after {
    font-size: 4vw;
  }
}
#product .swiper_option .swiper-button-next {
  right: 0px;
  left: 250px;
}
@media (max-width: 790px) {
  #product .swiper_option .swiper-button-next {
    left: 35vw;
  }
}
#product .swiper_option .swiper-button-prev {
  right: 250px;
  left: 0px;
}
@media (max-width: 790px) {
  #product .swiper_option .swiper-button-prev {
    right: 35vw;
  }
}

#movie {
  position: relative;
  margin: 0 auto;
  background-color: #fff;
}
#movie h2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
  left: -135px;
  top: 200px;
}
@media (max-width: 790px) {
  #movie h2 {
    left: -12vw;
    top: 25vw;
  }
}
#movie .content_wrap {
  padding: 220px calc((100% - 1000px) / 2);
}
@media (max-width: 790px) {
  #movie .content_wrap {
    padding: 25vw 13vw;
  }
}
#movie .content_wrap .soon {
  font-size: 5rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 790px) {
  #movie .content_wrap .soon {
    font-size: 7vw;
  }
}

#news h2 {
  text-align: center;
  margin-bottom: 40px;
}
#news .soon {
  font-size: 5rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 790px) {
  #news .soon {
    font-size: 7vw;
  }
}

footer .footer_wrap {
  color: #3C3C3C;
  background-color: #fff;
}
footer .footer_wrap h2 {
  font-size: 3.75rem;
  margin-bottom: 40px;
}
footer .footer_wrap .content_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
  footer .footer_wrap .content_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .footer_wrap .content_inner div h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  margin-bottom: 10px;
}
footer .footer_wrap .content_inner div a {
  color: #3C3C3C;
}
footer .footer_wrap .content_inner div .tel {
  font-size: 2.375rem;
}
@media (max-width: 790px) {
  footer .footer_wrap .content_inner div .tel {
    font-size: 8vw;
  }
}
footer .footer_wrap .content_inner div .link {
  display: inline-block;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #3C3C3C;
}
footer .copyright {
  font-size: 1.0625rem;
  text-align: center;
  margin: 20px auto;
}
@media (max-width: 790px) {
  footer .copyright {
    font-size: 3vw;
    padding: 0 20px;
  }
}

#top .top_inner .anime_fade,
#top .top_inner .is-lineanime {
  opacity: 0;
}
#top .top_inner .anime_fade {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-animation: fadeInUp 1s ease-out 2.5s forwards;
          animation: fadeInUp 1s ease-out 2.5s forwards;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#top .top_inner .is-lineanime.is-animated {
  -webkit-animation: revealAndHide 2s linear forwards;
          animation: revealAndHide 2s linear forwards;
}
@-webkit-keyframes revealAndHide {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes revealAndHide {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

#story .is-lineanime,
#story .anime_fade {
  opacity: 0;
}
#story .anime_fade.is-animated {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUp 2s ease-out forwards;
          animation: fadeInUp 2s ease-out forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#story .is-lineanime.pc.is-animated {
  -webkit-animation: revealFromTop 7s linear forwards;
          animation: revealFromTop 7s linear forwards;
}
#story .is-lineanime.sp.is-animated {
  -webkit-animation: revealFromTop 4s linear forwards;
          animation: revealFromTop 4s linear forwards;
}
@-webkit-keyframes revealFromTop {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes revealFromTop {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

#product .is-lineanime,
#product .anime_fade,
#product .button_wrap button {
  opacity: 0;
}
#product .is-lineanime.pc.is-animated {
  -webkit-animation: revealFromTop 6s linear forwards;
          animation: revealFromTop 6s linear forwards;
}
#product .is-lineanime.sp.is-animated {
  -webkit-animation: revealFromTop 2s linear forwards;
          animation: revealFromTop 2s linear forwards;
}
@keyframes revealFromTop {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
#product .anime_fade.is-animated {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUp 0.5s ease-out forwards;
          animation: fadeInUp 0.5s ease-out forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}