@charset "UTF-8";
/*---------------------------------------

   function

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

	constructure

-----------------------------------------*/
/* responsive
-----------------------------------------*/
* {
  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;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: min(3.7333333333vw, 14px);
  font-weight: 400;
  line-height: 1.8;
  width: 100%;
  height: 100%;
  color: #000;
  background-color: #fff;
  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 (min-width: 450px) {
  body {
    font-size: 14px;
    background-color: #fcfcfd;
  }
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
  -ms-touch-action: none;
      touch-action: none;
}

main {
  overflow: hidden;
  background-color: #fff;
}

.en {
  font-family: "Syne", sans-serif !important;
  font-weight: 400;
}

.pcwrap {
  z-index: 999;
  position: relative;
  background-color: #fff;
}
@media (min-width: 450px) {
  .pcwrap {
    max-width: 450px;
    margin: auto;
    overflow-x: hidden;
  }
}

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

a {
  text-decoration: underline;
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.5;
}

.note {
  font-size: min(3.2vw, 12px);
}
@media (min-width: 450px) {
  .note {
    font-size: 12px;
  }
}

.ttl {
  display: inline;
  font-size: min(6.9333333333vw, 26px);
  font-weight: 700;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  border-left: none;
  border-radius: 0 20vw 20vw 0;
  padding: 5px 20px;
  margin-left: -5vw;
  z-index: 20;
  position: relative;
}
@media (min-width: 450px) {
  .ttl {
    margin-left: -30px;
  }
}

.wrap_area {
  padding: 40px 5vw;
}
@media (min-width: 450px) {
  .wrap_area {
    padding: 50px 30px;
  }
}

.header_wrap {
  display: none;
}
@media (min-width: 450px) {
  .header_wrap {
    display: block;
  }
  .header_wrap .logo,
.header_wrap header {
    width: calc((100% - 500px) / 2);
    height: 100%;
    position: fixed;
    top: 0;
    padding: 0 20px;
  }
  .header_wrap .logo {
    left: 0;
  }
  .header_wrap .logo img {
    width: 50%;
    min-width: 180px;
    max-width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header_wrap header {
    right: 0;
  }
  .header_wrap header ul {
    right: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .header_wrap header ul li {
    font-size: min(6.4vw, 24px);
    font-weight: 600;
    line-height: 3.1;
  }
  .header_wrap header ul li:last-child {
    margin-bottom: 0;
  }
  .header_wrap header ul li a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header_wrap header ul li a:hover {
    opacity: 0.3;
  }
}
@media screen and (max-width: 980px) {
  .header_wrap {
    display: none;
  }
}

#opanime {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100%;
  background: #fff;
  padding: 30px 0 0;
  z-index: 9999;
  -webkit-transition: opacity 1.5s ease, visibility 1.5s ease;
  transition: opacity 1.5s ease, visibility 1.5s ease;
  opacity: 1;
  visibility: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 450px) {
  #opanime {
    width: 500px;
    margin: auto;
  }
}
#opanime.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#opanime .log {
  width: 40vw;
  margin: 0 auto 20px;
  display: block;
  z-index: 99;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (min-width: 450px) {
  #opanime .log {
    width: 200px;
  }
}
#opanime .op_img {
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  opacity: 1;
  overflow: hidden;
}
#opanime .op_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#top {
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 450px) {
  #top {
    max-height: 860px;
    min-height: 660px;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
#top .logo {
  width: 40vw;
  margin: 30px auto 10px;
  z-index: 99;
  position: relative;
}
@media (min-width: 450px) {
  #top .logo {
    width: 200px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 30px auto 50px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .logo {
    margin: 30px auto 50px;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .logo {
    margin: 30px auto auto;
  }
}
#top .pen-gallery-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 10vw;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
#top .pen-gallery-wrapper:has(.top-flash.is-anim) .pen-container li.pen-item img {
  -webkit-animation: none !important;
          animation: none !important;
}
@media (min-width: 450px) {
  #top .pen-gallery-wrapper {
    padding: 0 50px;
    max-width: 100%;
  }
}
#top .pen-gallery-wrapper .top-flash {
  display: none;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000;
  pointer-events: none;
}
#top .pen-gallery-wrapper .top-flash span {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  font-size: min(3.7333333333vw, 14px);
  font-weight: 700;
  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;
  line-height: 1.4;
  width: min(33.3333333333vw, 125px);
  height: min(33.3333333333vw, 125px);
  border-radius: 50%;
  text-align: center;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#top .pen-gallery-wrapper .top-flash.is-anim {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: flash-slow-blink 6s ease-in-out forwards;
          animation: flash-slow-blink 6s ease-in-out forwards;
}
#top .pen-gallery-wrapper .top_before {
  position: absolute;
  left: -90px;
  bottom: -120px;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}
@media (max-height: 860px) {
  #top .pen-gallery-wrapper .top_before {
    bottom: -13vh;
  }
}
@media (max-height: 750px) {
  #top .pen-gallery-wrapper .top_before {
    bottom: -11vh;
  }
}
@media (max-height: 660px) {
  #top .pen-gallery-wrapper .top_before {
    bottom: -90px;
  }
}
#top .pen-gallery-wrapper .top_before.is-visible {
  opacity: 1;
  pointer-events: auto;
}
#top .pen-gallery-wrapper .top_before span {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  font-size: min(4vw, 15px);
  font-weight: 700;
  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;
  line-height: 1.4;
  width: min(60vw, 225px);
  height: min(60vw, 225px);
  border-radius: 50%;
  text-align: center;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding-left: 40px;
  padding-bottom: 50px;
}
#top .pen-gallery-wrapper .pen-container {
  list-style: none;
  padding: 0;
  margin: 0 0 6vw 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 450px) {
  #top .pen-gallery-wrapper .pen-container {
    margin-bottom: 30px;
  }
}
#top .pen-gallery-wrapper .pen-container:last-of-type {
  margin-bottom: 30px;
}
#top .pen-gallery-wrapper .pen-container li.pen-item {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#top .pen-gallery-wrapper .pen-container li.pen-item:hover {
  opacity: 0.5 !important;
}
#top .pen-gallery-wrapper .pen-container li.pen-item img {
  width: auto;
  height: 42vw;
  will-change: opacity;
}
@media (min-width: 450px) {
  #top .pen-gallery-wrapper .pen-container li.pen-item img {
    height: 200px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .pen-gallery-wrapper .pen-container li.pen-item img {
    height: 23vh;
    max-height: 200px;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .pen-gallery-wrapper .pen-container li.pen-item img {
    height: 152px;
  }
}
#top .pen-gallery-wrapper .pen-container li.pen-item.is-blinking img {
  -webkit-animation: pen-blink 2s ease-in-out forwards;
          animation: pen-blink 2s ease-in-out forwards;
}
#top .pen-gallery-wrapper .pen-container.is-visible li.pen-item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (min-width: 450px) {
  #top .pen-gallery-wrapper .pen-row-3 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 80px;
  }
}
#top .pen-gallery-wrapper .pen-row-3 li {
  width: calc((100% - (4vw * 2)) / 3);
}
@media (min-width: 450px) {
  #top .pen-gallery-wrapper .pen-row-3 li {
    width: 40px;
  }
}
@media (min-width: 450px) {
  #top .pen-gallery-wrapper .pen-row-5 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 60px;
  }
}
#top .pen-gallery-wrapper .pen-row-5 li {
  width: calc((100% - (3vw * 4)) / 5);
}
@media (min-width: 450px) {
  #top .pen-gallery-wrapper .pen-row-5 li {
    width: 40px;
  }
}
#top .top_wrap {
  position: relative;
  width: 100%;
}
#top .top_wrap.is-active .pen-gallery-wrapper {
  opacity: 0.1;
  pointer-events: none;
}
#top .top_wrap.is-active .pen-gallery-wrapper .top_before {
  opacity: 0 !important;
}
#top .top_wrap.is-active .pen-gallery-wrapper .pen-container li.pen-item img {
  -webkit-animation: none !important;
          animation: none !important;
}
#top .top_wrap .selected-view {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view {
    padding: 0 25px;
  }
}
#top .top_wrap .selected-view.is-overlay-visible {
  opacity: 1;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
#top .top_wrap .selected-view.is-overlay-visible .selected-view-wrap,
#top .top_wrap .selected-view.is-overlay-visible .back-button {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 1.2s ease 0.8s, -webkit-transform 1.2s ease 0.8s;
  transition: opacity 1.2s ease 0.8s, -webkit-transform 1.2s ease 0.8s;
  transition: opacity 1.2s ease 0.8s, transform 1.2s ease 0.8s;
  transition: opacity 1.2s ease 0.8s, transform 1.2s ease 0.8s, -webkit-transform 1.2s ease 0.8s;
}
#top .top_wrap .selected-view .background-shape_01, #top .top_wrap .selected-view .background-shape_02, #top .top_wrap .selected-view .background-shape_03 {
  display: none;
}
#top .top_wrap .selected-view.is-refill-5 .background-shape_01 {
  display: block;
}
#top .top_wrap .selected-view.is-refill-3 .background-shape_02 {
  display: block;
}
#top .top_wrap .selected-view.is-refill-4 .background-shape_03 {
  display: block;
}
#top .top_wrap .selected-view.is-color-clear .background-shape_01 .fuzzy-circle {
  background: #d9e1e8;
}
#top .top_wrap .selected-view.is-color-clear .background-shape_02 .fuzzy-circle_03 {
  background: #d9e1e8;
}
#top .top_wrap .selected-view.is-color-clear .background-shape_03 .fuzzy-circle:not(.fuzzy-circle_07) {
  border: 1px solid #d9e1e8;
  background: transparent;
}
#top .top_wrap .selected-view.is-color-clear .background-shape_03 .fuzzy-circle_07 {
  background: #d9e1e8;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
#top .top_wrap .selected-view.is-color-clear .fuzzy-circle_05::after {
  content: "";
  border-right: 1px solid #d9e1e8;
  height: 70vw;
  position: absolute;
  top: -55vw;
  left: 14vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view.is-color-clear .fuzzy-circle_05::after {
    height: 300px;
    top: -260px;
    left: 55px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view.is-color-clear .fuzzy-circle_05::after {
    height: 35vh;
    top: -28vh;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view.is-color-clear .fuzzy-circle_05::after {
    height: 231px;
    top: -185px;
  }
}
#top .top_wrap .selected-view.is-color-limeyellow .background-shape_01 .fuzzy-circle {
  background: #FDFBD9;
}
#top .top_wrap .selected-view.is-color-limeyellow .background-shape_02 .fuzzy-circle_03 {
  background: #FDFBD9;
}
#top .top_wrap .selected-view.is-color-limeyellow .background-shape_03 .fuzzy-circle:not(.fuzzy-circle_07) {
  border: 1px solid #FDFBD9;
  background: transparent;
}
#top .top_wrap .selected-view.is-color-limeyellow .background-shape_03 .fuzzy-circle_07 {
  background: #FDFBD9;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
#top .top_wrap .selected-view.is-color-limeyellow .fuzzy-circle_05::after {
  content: "";
  border-right: 1px solid #FDFBD9;
  height: 70vw;
  position: absolute;
  top: -55vw;
  left: 14vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view.is-color-limeyellow .fuzzy-circle_05::after {
    height: 300px;
    top: -260px;
    left: 55px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view.is-color-limeyellow .fuzzy-circle_05::after {
    height: 35vh;
    top: -28vh;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view.is-color-limeyellow .fuzzy-circle_05::after {
    height: 231px;
    top: -185px;
  }
}
#top .top_wrap .selected-view.is-color-lilac .background-shape_01 .fuzzy-circle {
  background: #e2d9e8;
}
#top .top_wrap .selected-view.is-color-lilac .background-shape_02 .fuzzy-circle_03 {
  background: #e2d9e8;
}
#top .top_wrap .selected-view.is-color-lilac .background-shape_03 .fuzzy-circle:not(.fuzzy-circle_07) {
  border: 1px solid #e2d9e8;
  background: transparent;
}
#top .top_wrap .selected-view.is-color-lilac .background-shape_03 .fuzzy-circle_07 {
  background: #e2d9e8;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
#top .top_wrap .selected-view.is-color-lilac .fuzzy-circle_05::after {
  content: "";
  border-right: 1px solid #e2d9e8;
  height: 70vw;
  position: absolute;
  top: -55vw;
  left: 14vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view.is-color-lilac .fuzzy-circle_05::after {
    height: 300px;
    top: -260px;
    left: 55px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view.is-color-lilac .fuzzy-circle_05::after {
    height: 35vh;
    top: -28vh;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view.is-color-lilac .fuzzy-circle_05::after {
    height: 231px;
    top: -185px;
  }
}
#top .top_wrap .selected-view.is-color-nailpink .background-shape_01 .fuzzy-circle {
  background: #ffeee5;
}
#top .top_wrap .selected-view.is-color-nailpink .background-shape_02 .fuzzy-circle_03 {
  background: #ffeee5;
}
#top .top_wrap .selected-view.is-color-nailpink .background-shape_03 .fuzzy-circle:not(.fuzzy-circle_07) {
  border: 1px solid #ffeee5;
  background: transparent;
}
#top .top_wrap .selected-view.is-color-nailpink .background-shape_03 .fuzzy-circle_07 {
  background: #ffeee5;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
#top .top_wrap .selected-view.is-color-nailpink .fuzzy-circle_05::after {
  content: "";
  border-right: 1px solid #ffeee5;
  height: 70vw;
  position: absolute;
  top: -55vw;
  left: 14vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view.is-color-nailpink .fuzzy-circle_05::after {
    height: 300px;
    top: -260px;
    left: 55px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view.is-color-nailpink .fuzzy-circle_05::after {
    height: 35vh;
    top: -28vh;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view.is-color-nailpink .fuzzy-circle_05::after {
    height: 231px;
    top: -185px;
  }
}
#top .top_wrap .selected-view.is-color-scarlet .background-shape_01 .fuzzy-circle {
  background: #f2bd9a;
}
#top .top_wrap .selected-view.is-color-scarlet .background-shape_02 .fuzzy-circle_03 {
  background: #f2bd9a;
}
#top .top_wrap .selected-view.is-color-scarlet .background-shape_03 .fuzzy-circle:not(.fuzzy-circle_07) {
  border: 1px solid #f2bd9a;
  background: transparent;
}
#top .top_wrap .selected-view.is-color-scarlet .background-shape_03 .fuzzy-circle_07 {
  background: #f2bd9a;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
#top .top_wrap .selected-view.is-color-scarlet .fuzzy-circle_05::after {
  content: "";
  border-right: 1px solid #f2bd9a;
  height: 70vw;
  position: absolute;
  top: -55vw;
  left: 14vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view.is-color-scarlet .fuzzy-circle_05::after {
    height: 300px;
    top: -260px;
    left: 55px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view.is-color-scarlet .fuzzy-circle_05::after {
    height: 35vh;
    top: -28vh;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view.is-color-scarlet .fuzzy-circle_05::after {
    height: 231px;
    top: -185px;
  }
}
#top .top_wrap .selected-view.is-color-saxeblue .background-shape_01 .fuzzy-circle {
  background: #d5d5eb;
}
#top .top_wrap .selected-view.is-color-saxeblue .background-shape_02 .fuzzy-circle_03 {
  background: #d5d5eb;
}
#top .top_wrap .selected-view.is-color-saxeblue .background-shape_03 .fuzzy-circle:not(.fuzzy-circle_07) {
  border: 1px solid #d5d5eb;
  background: transparent;
}
#top .top_wrap .selected-view.is-color-saxeblue .background-shape_03 .fuzzy-circle_07 {
  background: #d5d5eb;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
#top .top_wrap .selected-view.is-color-saxeblue .fuzzy-circle_05::after {
  content: "";
  border-right: 1px solid #d5d5eb;
  height: 70vw;
  position: absolute;
  top: -55vw;
  left: 14vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view.is-color-saxeblue .fuzzy-circle_05::after {
    height: 300px;
    top: -260px;
    left: 55px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view.is-color-saxeblue .fuzzy-circle_05::after {
    height: 35vh;
    top: -28vh;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view.is-color-saxeblue .fuzzy-circle_05::after {
    height: 231px;
    top: -185px;
  }
}
#top .top_wrap .selected-view.is-color-soywhite .background-shape_01 .fuzzy-circle {
  background: #f5eacf;
}
#top .top_wrap .selected-view.is-color-soywhite .background-shape_02 .fuzzy-circle_03 {
  background: #f5eacf;
}
#top .top_wrap .selected-view.is-color-soywhite .background-shape_03 .fuzzy-circle:not(.fuzzy-circle_07) {
  border: 1px solid #f5eacf;
  background: transparent;
}
#top .top_wrap .selected-view.is-color-soywhite .background-shape_03 .fuzzy-circle_07 {
  background: #f5eacf;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
#top .top_wrap .selected-view.is-color-soywhite .fuzzy-circle_05::after {
  content: "";
  border-right: 1px solid #f5eacf;
  height: 70vw;
  position: absolute;
  top: -55vw;
  left: 14vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view.is-color-soywhite .fuzzy-circle_05::after {
    height: 300px;
    top: -260px;
    left: 55px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view.is-color-soywhite .fuzzy-circle_05::after {
    height: 35vh;
    top: -28vh;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view.is-color-soywhite .fuzzy-circle_05::after {
    height: 231px;
    top: -185px;
  }
}
#top .top_wrap .selected-view.is-color-powderblue .background-shape_01 .fuzzy-circle {
  background: #cfe0e0;
}
#top .top_wrap .selected-view.is-color-powderblue .background-shape_02 .fuzzy-circle_03 {
  background: #cfe0e0;
}
#top .top_wrap .selected-view.is-color-powderblue .background-shape_03 .fuzzy-circle:not(.fuzzy-circle_07) {
  border: 1px solid #cfe0e0;
  background: transparent;
}
#top .top_wrap .selected-view.is-color-powderblue .background-shape_03 .fuzzy-circle_07 {
  background: #cfe0e0;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
#top .top_wrap .selected-view.is-color-powderblue .fuzzy-circle_05::after {
  content: "";
  border-right: 1px solid #cfe0e0;
  height: 70vw;
  position: absolute;
  top: -55vw;
  left: 14vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view.is-color-powderblue .fuzzy-circle_05::after {
    height: 300px;
    top: -260px;
    left: 55px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view.is-color-powderblue .fuzzy-circle_05::after {
    height: 35vh;
    top: -28vh;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view.is-color-powderblue .fuzzy-circle_05::after {
    height: 231px;
    top: -185px;
  }
}
#top .top_wrap .selected-view.is-color-froggreen .background-shape_01 .fuzzy-circle {
  background: #c9dcd0;
}
#top .top_wrap .selected-view.is-color-froggreen .background-shape_02 .fuzzy-circle_03 {
  background: #c9dcd0;
}
#top .top_wrap .selected-view.is-color-froggreen .background-shape_03 .fuzzy-circle:not(.fuzzy-circle_07) {
  border: 1px solid #c9dcd0;
  background: transparent;
}
#top .top_wrap .selected-view.is-color-froggreen .background-shape_03 .fuzzy-circle_07 {
  background: #c9dcd0;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
#top .top_wrap .selected-view.is-color-froggreen .fuzzy-circle_05::after {
  content: "";
  border-right: 1px solid #c9dcd0;
  height: 70vw;
  position: absolute;
  top: -55vw;
  left: 14vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view.is-color-froggreen .fuzzy-circle_05::after {
    height: 300px;
    top: -260px;
    left: 55px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view.is-color-froggreen .fuzzy-circle_05::after {
    height: 35vh;
    top: -28vh;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view.is-color-froggreen .fuzzy-circle_05::after {
    height: 231px;
    top: -185px;
  }
}
#top .top_wrap .selected-view.is-color-camelliapink .background-shape_01 .fuzzy-circle {
  background: rgb(255, 212, 221);
}
#top .top_wrap .selected-view.is-color-camelliapink .background-shape_02 .fuzzy-circle_03 {
  background: rgb(255, 212, 221);
}
#top .top_wrap .selected-view.is-color-camelliapink .background-shape_03 .fuzzy-circle:not(.fuzzy-circle_07) {
  border: 1px solid rgb(255, 212, 221);
  background: transparent;
}
#top .top_wrap .selected-view.is-color-camelliapink .background-shape_03 .fuzzy-circle_07 {
  background: rgb(255, 212, 221);
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
#top .top_wrap .selected-view.is-color-camelliapink .fuzzy-circle_05::after {
  content: "";
  border-right: 1px solid rgb(255, 212, 221);
  height: 70vw;
  position: absolute;
  top: -55vw;
  left: 14vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view.is-color-camelliapink .fuzzy-circle_05::after {
    height: 300px;
    top: -260px;
    left: 55px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view.is-color-camelliapink .fuzzy-circle_05::after {
    height: 35vh;
    top: -28vh;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view.is-color-camelliapink .fuzzy-circle_05::after {
    height: 231px;
    top: -185px;
  }
}
#top .top_wrap .selected-view.is-color-dimgray .background-shape_01 .fuzzy-circle {
  background: #dddddd;
}
#top .top_wrap .selected-view.is-color-dimgray .background-shape_02 .fuzzy-circle_03 {
  background: #dddddd;
}
#top .top_wrap .selected-view.is-color-dimgray .background-shape_03 .fuzzy-circle:not(.fuzzy-circle_07) {
  border: 1px solid #dddddd;
  background: transparent;
}
#top .top_wrap .selected-view.is-color-dimgray .background-shape_03 .fuzzy-circle_07 {
  background: #dddddd;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}
#top .top_wrap .selected-view.is-color-dimgray .fuzzy-circle_05::after {
  content: "";
  border-right: 1px solid #dddddd;
  height: 70vw;
  position: absolute;
  top: -55vw;
  left: 14vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view.is-color-dimgray .fuzzy-circle_05::after {
    height: 300px;
    top: -260px;
    left: 55px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view.is-color-dimgray .fuzzy-circle_05::after {
    height: 35vh;
    top: -28vh;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view.is-color-dimgray .fuzzy-circle_05::after {
    height: 231px;
    top: -185px;
  }
}
#top .top_wrap .selected-view .back-button {
  all: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: #000;
  color: #fff;
  font-size: min(4vw, 15px);
  font-weight: 500;
  display: block;
  border-radius: 20vw;
  text-align: center;
  padding: 0 30px 0 60px;
  z-index: 1000;
  position: absolute;
  bottom: 13vw;
  left: -50px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .back-button {
    line-height: normal;
    padding: 2px 30px 2px 60px;
    bottom: 20px;
    left: -45px;
  }
}
#top .top_wrap .selected-view .back-button::before {
  content: "";
  background: url("../../images/icn_undo.png") no-repeat center/contain;
  width: min(2.6666666667vw, 10px);
  height: min(2.6666666667vw, 10px);
  position: absolute;
  right: 10px;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#top .top_wrap .selected-view .selected-view-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
#top .top_wrap .selected-view .selected-view-wrap .pen_img_content {
  position: relative;
  z-index: 20;
}
#top .top_wrap .selected-view .selected-view-wrap .pen_img_content .lead {
  font-size: min(4.5333333333vw, 17px);
  text-align: center;
  margin: 10px auto 0;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .pen_img_content .lead {
    font-size: min(5.3333333333vw, 20px);
    margin: 10px auto 0;
  }
}
#top .top_wrap .selected-view .selected-view-wrap .pen_img_content .selected-pen-large {
  width: auto;
  height: 103vw;
  inset: 0;
  margin: 3vw auto;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .pen_img_content .selected-pen-large {
    height: 480px;
    margin: 20px auto;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view .selected-view-wrap .pen_img_content .selected-pen-large {
    height: 58vh;
    max-height: 480px;
    margin: 2vh auto;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view .selected-view-wrap .pen_img_content .selected-pen-large {
    height: 383px;
    margin: 13px auto;
  }
}
#top .top_wrap .selected-view .selected-view-wrap .pen_img_content .pen-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: min(6.6666666667vw, 25px);
  color: #2f2f2f;
  white-space: nowrap;
  text-align: center;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .pen_img_content .pen-name {
    font-size: min(6.1333333333vw, 23px);
  }
}
#top .top_wrap .selected-view .selected-view-wrap .selected_dataili {
  width: 6vw;
  position: absolute;
  top: 15vw;
  left: 0vw;
  z-index: 20;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .selected_dataili {
    width: 25px;
    top: 60px;
  }
}
#top .top_wrap .selected-view .selected-view-wrap .selected_dataili img {
  width: 100%;
}
#top .top_wrap .selected-view .selected-view-wrap .selected_count {
  width: 11vw;
  position: absolute;
  top: 10vw;
  right: 0vw;
  z-index: 2;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .selected_count {
    width: 50px;
    top: 60px;
  }
}
#top .top_wrap .selected-view .selected-view-wrap .selected_count img {
  width: 100%;
}
#top .top_wrap .selected-view .selected-view-wrap .pen_refill .refill-previews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: absolute;
  right: -10vw;
  top: 2vw;
  z-index: 80;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .pen_refill .refill-previews {
    right: -50px;
    top: 30px;
  }
}
#top .top_wrap .selected-view .selected-view-wrap .pen_refill .refill-previews img {
  width: 1.9vw;
  height: auto;
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
  margin-top: -55vw;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
#top .top_wrap .selected-view .selected-view-wrap .pen_refill .refill-previews img:first-child {
  margin-top: 0;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .pen_refill .refill-previews img {
    width: 8px;
    margin-top: -220px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view .selected-view-wrap .pen_refill .refill-previews img {
    margin-top: -230px;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view .selected-view-wrap .pen_refill .refill-previews img {
    margin-top: -230px;
  }
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_01, #top .top_wrap .selected-view .selected-view-wrap .background-shape_02, #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_01 .fuzzy-circle, #top .top_wrap .selected-view .selected-view-wrap .background-shape_01 .fuzzy-circle_03, #top .top_wrap .selected-view .selected-view-wrap .background-shape_02 .fuzzy-circle, #top .top_wrap .selected-view .selected-view-wrap .background-shape_02 .fuzzy-circle_03, #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle, #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_03 {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_01.is-anim-visible .fuzzy-circle, #top .top_wrap .selected-view .selected-view-wrap .background-shape_01.is-anim-visible .fuzzy-circle_03, #top .top_wrap .selected-view .selected-view-wrap .background-shape_02.is-anim-visible .fuzzy-circle, #top .top_wrap .selected-view .selected-view-wrap .background-shape_02.is-anim-visible .fuzzy-circle_03, #top .top_wrap .selected-view .selected-view-wrap .background-shape_03.is-anim-visible .fuzzy-circle, #top .top_wrap .selected-view .selected-view-wrap .background-shape_03.is-anim-visible .fuzzy-circle_03 {
  opacity: 0.6;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 1.5s ease-out 1.8s, -webkit-transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.8s;
  transition: opacity 1.5s ease-out 1.8s, -webkit-transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.8s;
  transition: opacity 1.5s ease-out 1.8s, transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.8s;
  transition: opacity 1.5s ease-out 1.8s, transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.8s, -webkit-transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.8s;
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_01.is-anim-visible .fuzzy-circle_04, #top .top_wrap .selected-view .selected-view-wrap .background-shape_01.is-anim-visible .fuzzy-circle_05, #top .top_wrap .selected-view .selected-view-wrap .background-shape_01.is-anim-visible .fuzzy-circle_06, #top .top_wrap .selected-view .selected-view-wrap .background-shape_02.is-anim-visible .fuzzy-circle_04, #top .top_wrap .selected-view .selected-view-wrap .background-shape_02.is-anim-visible .fuzzy-circle_05, #top .top_wrap .selected-view .selected-view-wrap .background-shape_02.is-anim-visible .fuzzy-circle_06, #top .top_wrap .selected-view .selected-view-wrap .background-shape_03.is-anim-visible .fuzzy-circle_04, #top .top_wrap .selected-view .selected-view-wrap .background-shape_03.is-anim-visible .fuzzy-circle_05, #top .top_wrap .selected-view .selected-view-wrap .background-shape_03.is-anim-visible .fuzzy-circle_06 {
  opacity: 1;
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_01 .fuzzy-circle {
  -webkit-filter: blur(60px);
          filter: blur(60px);
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_01 .fuzzy-circle_01 {
  width: 70vw;
  height: 70vw;
  top: -15%;
  right: -15%;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_01 .fuzzy-circle_01 {
    width: 400px;
    height: 400px;
    top: -30px;
    right: -140px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_01 .fuzzy-circle_01 {
    width: 50vh;
    height: 50vh;
    top: -5%;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_01 .fuzzy-circle_01 {
    width: 330px;
    height: 330px;
  }
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_01 .fuzzy-circle_02 {
  width: 90vw;
  height: 90vw;
  bottom: 5%;
  left: -20%;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_01 .fuzzy-circle_02 {
    width: 490px;
    height: 490px;
    bottom: 40px;
    left: -110px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_01 .fuzzy-circle_02 {
    width: 60vh;
    height: 60vh;
    bottom: 5%;
    left: -10%;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_01 .fuzzy-circle_02 {
    width: 396px;
    height: 396px;
  }
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_02 .fuzzy-circle_03 {
  -webkit-filter: blur(60px);
          filter: blur(60px);
  width: 140vw;
  height: 140vw;
  bottom: -50vw;
  left: -20vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_02 .fuzzy-circle_03 {
    width: 490px;
    height: 580px;
    bottom: -110px;
    left: -45px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_02 .fuzzy-circle_03 {
    width: 60vh;
    height: 70vh;
    bottom: -15%;
    left: -5%;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_02 .fuzzy-circle_03 {
    width: 396px;
    height: 462px;
  }
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_02.is-anim-visible .fuzzy-circle_03 {
  opacity: 0.85;
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_03.is-anim-visible .fuzzy-circle_06 {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_03.is-anim-visible .fuzzy-circle_04 {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_03.is-anim-visible .fuzzy-circle_07 {
  -webkit-transition-delay: 2.7s;
          transition-delay: 2.7s;
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_04 {
  width: 35vw;
  height: 90vw;
  top: 30vw;
  left: 28vw;
  border-radius: 50vw;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_04 {
    width: 190px;
    height: 470px;
    top: 130px;
    left: 105px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_04 {
    width: 22vh;
    height: 55vh;
    top: 15%;
    left: 28.5%;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_04 {
    width: 158px;
    height: 400px;
    left: 120px;
  }
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_05 {
  width: 30vw;
  height: 30vw;
  top: 20vw;
  left: 5vw;
  border-radius: 50%;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_05 {
    width: 120px;
    height: 120px;
    top: 70px;
    left: 40px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_05 {
    width: 15vh;
    height: 15vh;
    top: 4vh;
    left: 9%;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_05 {
    width: 110px;
    height: 110px;
    top: 50px;
    left: 40px;
  }
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_06 {
  width: 80vw;
  height: 80vw;
  bottom: -20vw;
  right: -35vw;
  border-radius: 50%;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_06 {
    width: 370px;
    height: 370px;
    bottom: -150px;
    right: -190px;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_06 {
    width: 45vh;
    height: 45vh;
    bottom: -16vh;
    right: -22vh;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_06 {
    width: 297px;
    height: 297px;
    bottom: -130px;
    right: -130px;
  }
}
#top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_07 {
  width: 50vw;
  height: 50vw;
  top: 35vw;
  right: 20vw;
  border-radius: 50%;
}
@media (min-width: 450px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_07 {
    width: 180px;
    height: 180px;
    top: 240px;
    right: 0;
    left: 0;
    margin: auto;
  }
}
@media (min-width: 450px) and (max-height: 860px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_07 {
    width: 22vh;
    height: 22vh;
    top: 30%;
  }
}
@media (min-width: 450px) and (max-height: 660px) {
  #top .top_wrap .selected-view .selected-view-wrap .background-shape_03 .fuzzy-circle_07 {
    width: 145px;
    height: 145px;
  }
}

@-webkit-keyframes pen-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes pen-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
@-webkit-keyframes flash-slow-blink {
  0%, 30%, 60%, 90%, 100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.95);
            transform: translate(-50%, -50%) scale(0.95);
  }
  10%, 40%, 70% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes flash-slow-blink {
  0%, 30%, 60%, 90%, 100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.95);
            transform: translate(-50%, -50%) scale(0.95);
  }
  10%, 40%, 70% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
#concept {
  background: url("../../images/bg_01.webp") no-repeat;
  background-size: cover;
  width: 100%;
  padding: 40px 7vw;
  position: relative;
  z-index: 0;
}
@media (min-width: 450px) {
  #concept {
    padding: 40px 30px;
  }
}
#concept .concept_wrap {
  padding: 30px 5vw;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  text-align: center;
}
@media (min-width: 450px) {
  #concept .concept_wrap {
    padding: 40px 35px;
  }
}
#concept .concept_wrap::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.07);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.07);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#concept .concept_wrap.is-inview {
  -webkit-animation: fadeInUp 5s cubic-bezier(0.22, 0.9, 0.32, 1) forwards;
          animation: fadeInUp 5s cubic-bezier(0.22, 0.9, 0.32, 1) forwards;
}
#concept .concept_wrap p, #concept .concept_wrap img {
  position: relative;
  z-index: 1;
}
#concept .concept_wrap p {
  font-weight: 500;
  color: #000;
  line-height: 2.9rem;
  margin-bottom: 60px;
  display: inline-block;
  text-align: left;
}
#concept .concept_wrap img {
  width: 50%;
  margin: auto;
}
@media (min-width: 450px) {
  #concept .concept_wrap img {
    width: 160px;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#use {
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: #fbfffd;
}
#use .use_concept_wrap {
  position: relative;
  width: 100%;
}
#use .use_wrap {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100dvh;
  padding-top: 80px;
  padding-bottom: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
@media (min-width: 450px) {
  #use .use_wrap {
    position: relative;
    top: auto;
    height: 100vh;
    max-height: 860px !important;
    min-height: 660px;
    padding: 50px 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: visible;
  }
}
#use .use_wrap .ttl {
  position: absolute;
  top: 40px;
  z-index: 10;
  left: 0;
}
@media (min-width: 450px) {
  #use .use_wrap .ttl {
    top: 50px;
    margin-left: -30px;
  }
}
#use .use_wrap .use_img {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 450px) {
  #use .use_wrap .use_img {
    height: 40vh;
    margin: 0;
    overflow-x: clip;
  }
}
#use .use_wrap .use_img li {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}
@media (min-width: 450px) {
  #use .use_wrap .use_img li {
    display: block;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
#use .use_wrap .use_img li .item_wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
#use .use_wrap .use_img li .item_wrap img {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: auto;
  width: auto;
  max-width: 95vw;
  max-height: 65vh;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 450px) {
  #use .use_wrap .use_img li .item_wrap img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: initial;
    height: clamp(484px, 73.26vh, 630px);
  }
}
#use .use_wrap .use_img li .item_wrap .txt_wrap {
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
@media (min-width: 450px) {
  #use .use_wrap .use_img li .item_wrap .txt_wrap {
    right: 0;
    bottom: clamp(-180px, 50% - 430px, 0px);
  }
}
#use .use_wrap .use_img li .item_wrap .txt_wrap h3 {
  font-family: "Roboto", sans-serif;
  font-size: min(18.6666666667vw, 70px);
  font-weight: 700;
  color: #4A68DF;
  line-height: normal;
}
#use .use_wrap .use_img li .item_wrap .txt_wrap p {
  font-size: min(4.5333333333vw, 17px);
  font-weight: 700;
}
#use .use_wrap .use_img li .item_wrap .txt_wrap p span {
  background-color: #4A68DF;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 0.5em;
}
#use .use_wrap .use_img li.use_item_01 .item_wrap .txt_wrap p::after {
  content: " ";
  display: block;
  padding: 5px 10px;
  margin-bottom: 0.5em;
  visibility: hidden;
  font-size: inherit;
  line-height: inherit;
}
#use .use-counter {
  position: absolute;
  left: -4vw;
  top: calc(15vw + 60px);
  z-index: 50;
  width: auto;
  pointer-events: none;
}
@media (min-width: 450px) {
  #use .use-counter {
    left: -20px;
    top: 130px;
  }
}
#use .use-counter .use-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
#use .use-counter .use-steps .use-step {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 21vw;
  height: 15vw;
  background-image: url("../../images/icn_use.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50% 50%;
  opacity: 1;
  margin-top: -5vw;
}
#use .use-counter .use-steps .use-step:first-child {
  margin-top: 0;
}
@media (min-width: 450px) {
  #use .use-counter .use-steps .use-step {
    width: 80px;
    height: 60px;
    margin-top: -20px;
  }
}
#use .use-counter .use-steps .use-step.is-active {
  background-image: url("../../images/icn_use_active.webp");
}

#lineup {
  background: #fff;
}
#lineup .lineup_wrap {
  margin: 20px auto 50px;
}
#lineup .lineup_wrap:last-child {
  margin-bottom: 0;
}
#lineup .lineup_wrap .holder_type {
  font-size: min(4.5333333333vw, 17px);
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  text-align: center;
}
#lineup .lineup_wrap .holder_type span {
  font-weight: 500;
}
#lineup .lineup_wrap .pen_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5vw;
  margin: 0 6vw 50px;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .pen_wrap {
    gap: 20px;
    margin: 0 40px 30px;
  }
}
#lineup .lineup_wrap .pen_wrap img {
  width: calc((100% - 20vw) / 5);
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .pen_wrap img {
    width: calc((100% - 80px) / 5);
  }
}
#lineup .lineup_wrap .pen_holder_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .pen_holder_wrap {
    gap: 15px;
    margin: 0 10px;
  }
}
#lineup .lineup_wrap .pen_holder_wrap .holder_box {
  text-align: center;
}
#lineup .lineup_wrap .pen_holder_wrap .holder_box .pen_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2vw;
  margin: 0 1vw 30px;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .pen_holder_wrap .holder_box .pen_wrap {
    gap: 10px;
    margin: 0 10px 30px;
  }
}
#lineup .lineup_wrap .pen_holder_wrap .holder_box .pen_wrap img {
  width: calc((100% - 4vw) / 3);
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .pen_holder_wrap .holder_box .pen_wrap img {
    width: calc((100% - 20px) / 3);
  }
}
#lineup .lineup_wrap .lineup_inner .holder_dateil {
  background-color: #EFEFEF;
  padding: 30px 7vw;
  text-align: center;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .holder_dateil {
    padding: 30px 20px;
  }
}
#lineup .lineup_wrap .lineup_inner .holder_dateil h3 {
  font-size: min(3.4666666667vw, 13px);
  line-height: normal;
  background-color: #fff;
  text-align: center;
  display: inline-block;
  padding: 3px 20px;
  border: 1px solid #000;
  border-radius: 20vw;
  margin-bottom: 30px;
}
#lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation {
  position: relative;
}
#lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .holder_img {
  width: 8vw;
  margin: auto;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .holder_img {
    width: 35px;
  }
}
#lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div {
  position: absolute;
  text-align: left;
  width: 36%;
  z-index: 1;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div {
    width: 36%;
  }
}
#lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div dt {
  font-size: min(3.4666666667vw, 13px);
  line-height: normal;
  background-color: #fff;
  text-align: center;
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #000;
  border-radius: 20vw;
  position: relative;
}
#lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div dt::before, #lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div dt::after {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
}
#lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div dt::before {
  top: 1.4vw;
  height: 1.3vw;
  width: 1.3vw;
  background: #000;
  border-radius: 50%;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div dt::before {
    top: 7.5px;
    height: 5px;
    width: 5px;
  }
}
#lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div dt::after {
  border-bottom: 1px solid #000;
  top: 2vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div dt::after {
    top: 9.3px;
  }
}
#lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div dd {
  font-size: min(2.9333333333vw, 11px);
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: justify;
  word-break: break-all;
  margin-top: 0.3em;
}
#lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div dd span {
  font-size: min(2.4vw, 9px);
}
#lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div dd img {
  width: min(12vw, 45px);
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div dd img {
    width: 45px;
  }
}
#lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div.right_area {
  right: 0;
}
#lineup .lineup_wrap .lineup_inner .holder_dateil .holder_explanation .txt_wrap div.left_area {
  left: 0;
}
#lineup .lineup_wrap .lineup_inner .meister_wrap {
  margin-bottom: 40px;
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_01 {
  top: -2vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_01 {
    top: -12px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_01 dt::before {
  left: -11.6vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_01 dt::before {
    left: -53px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_01 dt::after {
  width: 23vw;
  left: -11vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_01 dt::after {
    width: 80px;
    left: -50px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_02 {
  top: 2.5vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_02 {
    top: 13px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_02 dt::before {
  right: -15vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_02 dt::before {
    right: -75px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_02 dt::after {
  width: 20vw;
  right: -15vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_02 dt::after {
    width: 80px;
    right: -74px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_03 {
  top: 21vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_03 {
    top: 87px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_03 dt::before {
  left: 37vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_03 dt::before {
    left: 172px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_03 dt::after {
  width: 30vw;
  left: 9vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_03 dt::after {
    width: 130px;
    left: 40px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_03 dd.img_wrap {
  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;
  margin-top: 2vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_03 dd.img_wrap {
    margin-top: 10px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_03 dd.img_wrap p {
  position: relative;
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_03 dd.img_wrap p::before {
  content: "";
  width: 5vw;
  height: 1px;
  background-color: #000;
  display: block;
  position: absolute;
  right: -5.5vw;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_03 dd.img_wrap p::before {
    width: 50px;
    right: -55px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_03 dd.img_wrap img {
  position: relative;
  z-index: 1;
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_04 {
  top: 50.5vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_04 {
    top: 220px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_04 dt::before {
  right: 25vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_04 dt::before {
    right: 99px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_04 dt::after {
  width: 15vw;
  right: 11vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_04 dt::after {
    width: 80px;
    right: 21px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_04 dd.img_wrap {
  margin-top: 5vw;
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_04 dd.img_wrap img {
  position: relative;
  z-index: 1;
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_05 {
  bottom: 2vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_05 {
    bottom: 50px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_05 dt::before {
  left: 37vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_05 dt::before {
    left: 168px;
  }
}
#lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_05 dt::after {
  width: 31vw;
  left: 7vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .meister_wrap .holder_explanation .txt_wrap div.txt_05 dt::after {
    width: 150px;
    left: 20px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap {
  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;
  width: 100%;
  gap: 20px;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap {
    gap: 10px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation {
  width: 50%;
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation img {
  width: 9vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation img {
    width: 45px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation.stylefit_01 img {
  margin-right: 0;
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation.stylefit_02 img {
  margin-left: 0;
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div {
  width: 64%;
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_01 {
  top: 14vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_01 {
    top: 74px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_01 dt::before {
  left: 30.5vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_01 dt::before {
    left: 145px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_01 dt::after {
  width: 23vw;
  left: 8vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_01 dt::after {
    width: 110px;
    left: 40px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_02 {
  top: 48vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_02 {
    top: 240px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_02 dt::before {
  left: 30.5vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_02 dt::before {
    left: 145px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_02 dt::after {
  width: 23vw;
  left: 8vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_02 dt::after {
    width: 140px;
    left: 5px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_03 {
  top: -1vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_03 {
    top: -3px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_03 dt::before {
  right: 18vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_03 dt::before {
    right: 74px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_03 dt::after {
  width: 11vw;
  right: 8vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_03 dt::after {
    width: 40px;
    right: 37px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_04 {
  bottom: 23vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_04 {
    bottom: 110px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_04 dt::before {
  right: 19.5vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_04 dt::before {
    right: 87px;
  }
}
#lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_04 dt::after {
  width: 13vw;
  right: 7vw;
}
@media (min-width: 450px) {
  #lineup .lineup_wrap .lineup_inner .stylefit_wrap .holder_wrap .holder_explanation .txt_wrap div.txt_04 dt::after {
    width: 50px;
    right: 40px;
  }
}

#select {
  --grid-color: #94cda1;
  --grid-size: 25px;
  --line-thickness: 1px;
  background-color: #fff9f5;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), to(var(--grid-color))), -webkit-gradient(linear, left bottom, left top, from(transparent), to(var(--grid-color)));
  background-image: linear-gradient(90deg, transparent calc(var(--grid-size) - var(--line-thickness)), var(--grid-color) var(--grid-size)), linear-gradient(0deg, transparent calc(var(--grid-size) - var(--line-thickness)), var(--grid-color) var(--grid-size));
  background-size: var(--grid-size) var(--grid-size);
  width: 100%;
}
@media (min-width: 450px) {
  #select {
    background-attachment: fixed;
  }
}
#select .ttl {
  background: #fff9f5;
}
#select #slick-wrap {
  margin-top: 2vw;
}
@media (min-width: 450px) {
  #select #slick-wrap {
    margin-top: 20px;
  }
}
#select #gallery .select-carousel {
  position: relative;
}
#select #gallery .select-carousel .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#select #gallery .select-carousel .slide-item {
  height: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#select #gallery .select-carousel .slide-item .slide_inner {
  background: #fff9f5;
  position: relative;
  height: 100%;
  padding: 20px 3vw;
  position: relative;
  height: 100%;
}
@media (min-width: 450px) {
  #select #gallery .select-carousel .slide-item .slide_inner {
    padding: 20px;
  }
}
#select #gallery .select-carousel .slide-item .slide_inner .img {
  position: relative;
  padding: 5vw;
}
@media (min-width: 450px) {
  #select #gallery .select-carousel .slide-item .slide_inner .img {
    padding: 30px;
  }
}
#select #gallery .select-carousel .slide-item .slide_inner .img .img_01 {
  width: 78%;
  border-radius: 0 0 150px 150px;
  margin-left: 0;
}
#select #gallery .select-carousel .slide-item .slide_inner .img .img_02 {
  width: 35%;
  position: absolute;
  left: 0;
  top: 0;
}
#select #gallery .select-carousel .slide-item .slide_inner .img .img_03 {
  height: 85vw;
  position: absolute;
  right: 0;
  top: 7vw;
}
@media (min-width: 450px) {
  #select #gallery .select-carousel .slide-item .slide_inner .img .img_03 {
    height: 350px;
    top: 5px;
  }
}
#select #gallery .select-carousel .slide-item .slide_inner .select_datail {
  margin-top: -10vw;
  z-index: 2;
  position: relative;
}
@media (min-width: 450px) {
  #select #gallery .select-carousel .slide-item .slide_inner .select_datail {
    margin-top: -60px;
  }
}
#select #gallery .select-carousel .slide-item .slide_inner .select_datail h3 {
  font-size: min(4vw, 15px);
  font-weight: 700;
  color: #fff;
  display: inline-block;
  line-height: normal;
  padding: 0px 10px 2px;
  margin-left: -3vw;
}
@media (min-width: 450px) {
  #select #gallery .select-carousel .slide-item .slide_inner .select_datail h3 {
    font-size: 17px;
    margin-left: -20px;
  }
}
#select #gallery .select-carousel .slide-item .slide_inner .select_datail h3 span {
  font-size: min(6.9333333333vw, 26px);
  margin-left: 0.3em;
}
@media (min-width: 450px) {
  #select #gallery .select-carousel .slide-item .slide_inner .select_datail h3 span {
    font-size: 28px;
  }
}
#select #gallery .select-carousel .slide-item .slide_inner .select_datail h4 {
  font-size: min(5.3333333333vw, 20px);
  font-weight: 700;
}
@media (min-width: 450px) {
  #select #gallery .select-carousel .slide-item .slide_inner .select_datail h4 {
    font-size: 24px;
  }
}
#select #gallery .select-carousel .slide-item .slide_inner .select_datail h4 span {
  font-size: min(6.4vw, 24px);
  margin-left: 0.3em;
}
@media (min-width: 450px) {
  #select #gallery .select-carousel .slide-item .slide_inner .select_datail h4 span {
    font-size: 28px;
  }
}
#select #gallery .select-carousel .slide-item .slide_inner .select_datail .txt_wrap {
  line-height: 1.4;
}
#select #gallery .select-carousel .slide-item .slide_inner .select_datail .txt_wrap h5 {
  font-size: min(3.4666666667vw, 13px);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 5px;
}
@media (min-width: 450px) {
  #select #gallery .select-carousel .slide-item .slide_inner .select_datail .txt_wrap h5 {
    font-size: 14px;
  }
}
#select #gallery .select-carousel .slide-item .slide_inner .select_datail .txt_wrap p {
  font-size: min(3.2vw, 12px);
}
@media (min-width: 450px) {
  #select #gallery .select-carousel .slide-item .slide_inner .select_datail .txt_wrap p {
    font-size: 13px;
  }
}
#select #gallery .select-carousel .slide-item .slide_inner .pen_select {
  margin-top: 2em;
}
@media (min-width: 450px) {
  #select #gallery .select-carousel .slide-item .slide_inner .pen_select {
    margin-top: 2em;
  }
}
#select #gallery .select-carousel .item_01 .slide_inner {
  border: 1px solid #DC0000;
}
#select #gallery .select-carousel .item_01 .slide_inner h3 {
  background: #DC0000;
}
#select #gallery .select-carousel .item_02 .slide_inner {
  border: 1px solid #2F2F2F;
}
#select #gallery .select-carousel .item_02 .slide_inner h3 {
  background: #2F2F2F;
}
#select #gallery .select-carousel .item_03 .slide_inner {
  border: 1px solid #F7A306;
}
#select #gallery .select-carousel .item_03 .slide_inner h3 {
  background: #F7A306;
}
#select #gallery .select-carousel .item_04 .slide_inner {
  border: 1px solid #2E65E0;
}
#select #gallery .select-carousel .item_04 .slide_inner h3 {
  background: #2E65E0;
}
#select #gallery .arrow {
  position: absolute;
  top: 42%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 8vw;
  height: 8vw;
  background-color: #000;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 450px) {
  #select #gallery .arrow {
    top: 40%;
    width: 40px;
    height: 40px;
  }
}
#select #gallery .arrow:hover {
  background-color: #000;
}
#select #gallery .prev-arrow {
  left: -4vw;
}
@media (min-width: 450px) {
  #select #gallery .prev-arrow {
    left: -20px;
  }
}
#select #gallery .next-arrow {
  right: -4vw;
}
@media (min-width: 450px) {
  #select #gallery .next-arrow {
    right: -20px;
  }
}
#select #gallery .arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#select #gallery .prev-arrow::before {
  width: 2.5vw;
  height: 3vw;
  left: 47%;
  background-color: #fff;
  -webkit-clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
          clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}
@media (min-width: 450px) {
  #select #gallery .prev-arrow::before {
    width: 15px;
    height: 15px;
    -webkit-clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
            clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
  }
}
#select #gallery .next-arrow::before {
  width: 2.5vw;
  height: 3vw;
  left: 56%;
  background-color: #fff;
  -webkit-clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
          clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
}
@media (min-width: 450px) {
  #select #gallery .next-arrow::before {
    width: 15px;
    height: 15px;
    -webkit-clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
            clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
  }
}
#select #gallery .slick-dots {
  bottom: -35px;
}
#select #gallery .slick-dots li {
  width: 10px;
  height: 10px;
}
#select #gallery .slick-dots li button:before {
  opacity: 1;
  color: transparent;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
#select #gallery .slick-dots li.slick-active button:before {
  background-color: #000;
}

#link {
  background: #EFEFEF;
}
#link .link_inner {
  background: #fff;
  border-radius: 60px;
  padding: 10vw 5vw 20px;
  margin-top: -5vw;
}
@media (min-width: 450px) {
  #link .link_inner {
    padding: 50px 60px 40px;
    margin-top: -25px;
  }
}
#link .link_inner p {
  text-align: center;
  margin-bottom: 40px;
}
#link .link_inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (min-width: 450px) {
  #link .link_inner ul {
    gap: 40px;
  }
}
#link .link_inner ul li img {
  width: 70vw;
  margin-bottom: 5px;
}
@media (min-width: 450px) {
  #link .link_inner ul li img {
    width: 100%;
    margin-bottom: 15px;
  }
}
#link .link_inner ul li a {
  display: block;
  position: relative;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  border-bottom: 1px solid #000;
  margin: 0 2rem;
}
#link .link_inner ul li a::before {
  content: "";
  background: url("../../images/icn_arrow.png") no-repeat center/contain;
  width: min(3.2vw, 12px);
  height: min(3.2vw, 12px);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#link .link_inner ul li:last-child img {
  width: 60vw;
}
@media (min-width: 450px) {
  #link .link_inner ul li:last-child img {
    width: 85%;
    margin: 0 auto 10px;
  }
}
#link .site {
  background: #fff;
  border-radius: 60px;
  padding: 20px 5vw;
  margin-top: 20px;
}
@media (min-width: 450px) {
  #link .site {
    padding: 20px 60px;
  }
}
#link .site a {
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid #000;
  width: 55vw;
  display: block;
  margin: auto;
}
@media (min-width: 450px) {
  #link .site a {
    width: 100%;
  }
}
#link .site a::before {
  content: "";
  background: url("../../images/icn_arrow.png") no-repeat center/contain;
  width: min(3.2vw, 12px);
  height: min(3.2vw, 12px);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

footer .logo {
  width: 40%;
  margin: 50px auto 30px;
}
footer .footer_wrap p {
  font-size: min(2.6666666667vw, 10px);
  text-align: right;
  padding: 10px 5px 30px;
}