@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body, a, p {
  font-style: normal;
  text-decoration: none;
  line-height: 1;
}

body {
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-anchor: none;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

/*animation*/
/*--header--*/
.header-zoomin {
  animation-name: header-zoomin;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 1.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media (max-width: 768px) {
  .header-zoomin {
    animation-timing-function: all;
    animation-duration: 0.6s;
  }
}

@keyframes header-zoomin {
  0% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.header-clippath {
  animation-name: header-clippath;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 2.2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media (max-width: 768px) {
  .header-clippath {
    animation-timing-function: all;
    animation-duration: 0.6s;
  }
}

@keyframes header-clippath {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.header-slideup {
  animation-name: header-slideup;
  animation-duration: 0.3s;
  animation-timing-function: cubic-bezier(0.17, 0.67, 0.78, 0.71);
  animation-delay: 3.3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  will-change: transform;
}

@keyframes header-slideup {
  0% {
    transform: translateY(60px) rotate(4deg);
    transform-origin: left;
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
.header-fade {
  animation-name: header-fade;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.52, 0.48, 0.3, 0.81);
  animation-delay: 4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  opacity: 0;
  will-change: opacity;
}

@keyframes header-fade {
  0% {
    opacity: 0;
    filter: blur(6px);
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
/*animation*/
/*--main--*/
.clippath {
  opacity: 0;
}

.clippath.active {
  animation-name: clippath;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes clippath {
  0% {
    opacity: 1;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
}
.fade {
  opacity: 0;
}

.fade.active {
  animation-name: fade;
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  will-change: opacity;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slideup {
  opacity: 0;
}

.slideup.active {
  animation: slideup;
  animation-duration: 0.8s;
  animation-timing-function: ease-out;
  animation-delay: 0.6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@media (max-width: 768px) {
  .slideup.active {
    animation-delay: 0s;
  }
}

@keyframes slideup {
  0% {
    transform: translate(0, 80px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slideleft {
  opacity: 0;
}

.slideleft.active {
  animation: slideleft;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-delay: 0.8s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@media (max-width: 768px) {
  .slideleft.active {
    animation-delay: 0s;
  }
}

@keyframes slideleft {
  0% {
    transform: translate(-80px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.slideright {
  opacity: 0;
}

.slideright.active {
  animation: slideright;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-delay: 0.8s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@media (max-width: 768px) {
  .slideright.active {
    animation-delay: 0s;
  }
}

@keyframes slideright {
  0% {
    transform: translate(80px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.text-slide {
  display: flex;
  padding: 0 0.2em;
}

.text-slide span {
  display: block;
  margin-right: -0.2em;
  padding-right: 0.2em;
  transform: translate(0, 108%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.text-slide.active span {
  transform: translate(0, 0);
  transition-delay: 0.35s;
}

.text-slide span:nth-child(1) {
  transition-delay: 0.35s;
}

.text-slide span:nth-child(2) {
  transition-delay: 0.4s;
}

.text-slide span:nth-child(3) {
  transition-delay: 0.45s;
}

.text-slide span:nth-child(4) {
  transition-delay: 0.5s;
}

.text-slide span:nth-child(5) {
  transition-delay: 0.55s;
}

.text-slide span:nth-child(6) {
  transition-delay: 0.6s;
}

.text-slide span:nth-child(7) {
  transition-delay: 0.65s;
}

.text-slide span:nth-child(8) {
  transition-delay: 0.7s;
}

.text-slide span:nth-child(9) {
  transition-delay: 0.75s;
}

.text-slide span:nth-child(10) {
  transition-delay: 0.8s;
}

.text-slide span:nth-child(11) {
  transition-delay: 0.85s;
}

.text-slide span:nth-child(12) {
  transition-delay: 0.9s;
}

.text-slide span:nth-child(13) {
  transition-delay: 0.95s;
}

.text-slide span:nth-child(14) {
  transition-delay: 1s;
}

/*link*/
.link {
  width: 26.3671875vw;
  max-width: 400px;
  min-width: 260px;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .link {
    width: 90%;
    max-width: inherit;
    min-width: inherit;
    margin: 8% auto 0;
  }
}
.link .cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.link .cart:not(:last-child) {
  margin-bottom: 0.25em;
}
.link .cart__title {
  color: #231815;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: min(1vw, 16px);
  letter-spacing: 0.01rem;
}
@media (max-width: 768px) {
  .link .cart__title {
    font-size: 0.85rem;
  }
}
.link .cart__title span {
  display: inline-block;
}
.link .cart__price {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #231815;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: min(1vw, 16px);
}
@media (max-width: 768px) {
  .link .cart__price {
    font-size: 0.85rem;
  }
}
.link .cart__price--yen {
  letter-spacing: 0.08rem;
}
.link .cart__price--yen--line {
  text-decoration: line-through;
}
.link .cart__price--yen--special {
  margin-left: 0.5em;
  font-family: "yu-gothic-pr6n", sans-serif;
  color: #ff7795;
  white-space: nowrap;
}
.link .cart__price--yen--size {
  font-family: "yu-gothic-pr6n", sans-serif;
}
.link .cart__price--btn {
  position: relative;
  margin-left: 1em;
  padding: 0.5em 1em;
  color: #fff;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: 0.5vw;
  line-height: 1;
}
@media (max-width: 768px) {
  .link .cart__price--btn {
    margin-left: 0.5em;
    padding: 0.5em;
    font-size: 0.6rem;
  }
}
.link .cart__price--btn span img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  width: 1em;
  transition: 0.4s ease-in;
}
.link .cart:hover .cart__price--btn span {
  transform: translateX(-10%);
}
.link .cart__price--btn span {
  display: flex;
  transition: 0.4s ease-in;
}
.link .cart:hover .cart__price--btn span img {
  opacity: 1;
  margin-right: -1.2em;
}
.link .link__other {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #6e6e6e;
}
@media (max-width: 768px) {
  .link .link__other {
    margin-top: 0.5em;
    padding-top: 0.5em;
  }
}
.link .link__other .cart__price--btn {
  color: #000;
  border: 1px solid #000;
}
@media (max-width: 768px) {
  .link {
    display: block;
  }
}

/*other*/
.otheritem__inner {
  width: 68.359375%;
  min-width: 700px;
  margin: 10vw auto 0;
  padding: 4% 0;
}
@media (max-width: 768px) {
  .otheritem__inner {
    width: 100%;
    min-width: auto;
    padding: 6% 0 10%;
  }
}

@media (max-width: 768px) {
  .otheritem {
    margin-top: 4rem;
  }
}
.otheritem__title {
  width: auto;
  height: 2.5rem;
}
@media (max-width: 768px) {
  .otheritem__title {
    height: 7.6420234375vw;
    margin: 0 auto 6% 10%;
  }
}
.otheritem__itemtitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: ivymode, sans-serif;
  font-weight: 200;
  font-size: max(3.2vw, 34px);
  font-style: normal;
  text-align: center;
}
.otheritem__list {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .otheritem__list {
    flex-wrap: wrap;
    justify-content: space-between;
    width: 86%;
    margin: 6% auto 0;
  }
}
@media (max-width: 768px) {
  .otheritem__list--item {
    width: 46%;
  }
}
.otheritem__link {
  width: auto;
  max-width: inherit;
  min-width: inherit;
  margin-top: 0.5em;
}
.otheritem .otheritem__link .cart__price {
  justify-content: flex-start;
  margin-top: 0.5em;
}
@media (max-width: 768px) {
  .otheritem .otheritem__link .cart__price {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
  }
}
.otheritem .otheritem__link .cart__price--yen--special {
  margin-left: 0;
}
@media (max-width: 768px) {
  .otheritem .otheritem__link .cart__price--yen--special {
    display: block;
    margin-top: 0.25em;
    margin-bottom: 0.5em;
  }
}
.otheritem .otheritem__link .cart__price--yen--line {
  margin-left: 2em;
}
@media (max-width: 768px) {
  .otheritem .otheritem__link .cart__price--yen--line {
    margin-left: 1em;
  }
}
@media (max-width: 768px) {
  .otheritem .otheritem__link .cart__price--btn {
    margin-left: 0;
  }
}
.otheritem .otheritem__list--item a:hover .cart__price--btn span {
  transform: translateX(-10%);
}
.otheritem .otheritem__link .cart__price--btn span {
  display: flex;
  transition: 0.4s ease-in;
}
.otheritem .otheritem__list--item a:hover .cart__price--btn span img {
  opacity: 1;
  margin-right: -1.2em;
}
.otheritem .more__btn {
  margin: 3rem auto 0;
}
@media (max-width: 768px) {
  .otheritem .more__btn {
    margin-top: 10%;
  }
}
.otheritem .more__btn--link {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.5em 20%;
  color: #fff;
  font-family: ivymode, sans-serif;
  font-size: clamp(20px, 1.9vw, 28px);
}
@media (max-width: 768px) {
  .otheritem .more__btn--link {
    width: 80%;
    margin: 0 auto;
    padding: 0.5em 1em;
    text-align: center;
  }
}
.otheritem .more__btn--link::before, .otheritem .more__btn--link::after {
  content: "";
  display: block;
  height: 1px;
  width: 0.75em;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  transition: 1s all;
}
.otheritem .more__btn--link::after {
  transform: rotate(90deg);
}

.otheritem .more__btn--link:hover::before {
  transform: translateY(-50%) rotate(360deg);
}

.otheritem .more__btn--link:hover::after {
  transform: rotate(450deg);
}

/* 共通*/
.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.slide-box {
  overflow: hidden;
}

/*header*/
.header {
  position: relative;
  background: #e0ff71;
  width: 100%;
  padding-top: 58.59375%;
}
@media (max-width: 768px) {
  .header {
    padding-top: 177.2387578125%;
  }
}
.header--inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.header--photo01 {
  position: absolute;
  top: 0;
  left: 5.2%;
  width: 16.838984375%;
}
@media (max-width: 768px) {
  .header--photo01 {
    display: none;
  }
}
.header--photo02 {
  position: absolute;
  top: 4%;
  left: 31.5%;
  width: 12.8785429688%;
}
@media (max-width: 768px) {
  .header--photo02 {
    display: none;
  }
}
.header--photo03 {
  position: absolute;
  top: 0;
  left: 53.2%;
  width: 16.14534375%;
}
@media (max-width: 768px) {
  .header--photo03 {
    left: auto;
    right: 0;
    width: 38.653390625%;
  }
}
.header--photo04 {
  position: absolute;
  top: 0;
  right: 0;
  width: 22.843296875%;
}
@media (max-width: 768px) {
  .header--photo04 {
    right: auto;
    left: 0;
    width: 45.95296875%;
  }
}
.header--photo05 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 27.5873046875%;
}
@media (max-width: 768px) {
  .header--photo05 {
    width: 53.454703125%;
  }
}
.header--photo06 {
  position: absolute;
  bottom: 5.8%;
  left: 34%;
  width: 13.3383984375%;
}
@media (max-width: 768px) {
  .header--photo06 {
    display: none;
  }
}
.header--photo07 {
  position: absolute;
  bottom: 0;
  left: 55.1%;
  width: 17.2870351563%;
}
@media (max-width: 768px) {
  .header--photo07 {
    left: auto;
    right: 0;
    bottom: 19%;
    width: 25.7555390625%;
  }
}
.header--photo08 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18.6107226563%;
}
@media (max-width: 768px) {
  .header--photo08 {
    right: 12.4%;
    width: 25.465375%;
  }
}
.header-title01 img {
  position: absolute;
  top: 26.4%;
  left: 16.6%;
  width: 21.6436171875%;
}
@media (max-width: 768px) {
  .header-title01 img {
    top: 23.2%;
    left: 5.6%;
    width: 50.19821875%;
  }
}
.header-title02 {
  position: absolute;
  top: 36.8%;
  left: 21.4%;
  width: 56.9332695313%;
}
@media (max-width: 768px) {
  .header-title02 {
    top: 31.8%;
    left: 14%;
    width: 72.4639296875%;
  }
}
.header-title03 {
  position: absolute;
  top: 57.8%;
  left: 37.8%;
  width: 24.398328125%;
}
@media (max-width: 768px) {
  .header-title03 {
    top: 61.8%;
    left: 31.6%;
    width: 38.9698828125%;
  }
}
.header-title04 {
  position: absolute;
  top: 44.7%;
  left: 20.9%;
  display: flex;
  gap: 1.18vw;
}
@media (max-width: 768px) {
  .header-title04 {
    top: 43%;
    left: 11.9%;
    flex-direction: column;
    align-items: center;
    gap: 2.8vw;
  }
}
.header-title04 img {
  width: auto;
  height: 6.5vw;
}
@media (max-width: 768px) {
  .header-title04 img {
    height: 14vw;
  }
}
.header-title04 span {
  display: flex;
  gap: 1.1vw;
}
@media (max-width: 768px) {
  .header-title04 span {
    gap: 2.48vw;
  }
}
@media (max-width: 768px) {
  .header-title04 span:nth-child(2) {
    gap: 2.8vw;
  }
}
.header-title04-1 {
  animation-delay: 1s;
}
.header-title04-2 {
  margin-left: 0.2vw;
  animation-delay: 1.1s;
}
.header-title04-3 {
  animation-delay: 1.2s;
}
.header-title04-4 {
  animation-delay: 1.3s;
}
.header-title04-5 {
  animation-delay: 1.4s;
}
.header-title04-6 {
  animation-delay: 1.5s;
}
.header-title04-7 {
  margin-left: 1.8vw;
  animation-delay: 1.6s;
}
@media (max-width: 768px) {
  .header-title04-7 {
    margin-left: 0;
  }
}
.header-title04-8 {
  margin-left: -0.6vw;
  animation-delay: 1.7s;
}
@media (max-width: 768px) {
  .header-title04-8 {
    margin-left: -1.8vw;
  }
}
.header-title04-9 {
  margin-right: -0.3vw;
  animation-delay: 1.8s;
}
@media (max-width: 768px) {
  .header-title04-9 {
    margin-right: -0.3vw;
  }
}
.header-title04-10 {
  animation-delay: 1.9s;
}
.header-logo {
  position: absolute;
  top: 1%;
  right: 0.5%;
  width: 3.125%;
}
@media (max-width: 768px) {
  .header-logo {
    display: none;
  }
}

/*lead*/
.lead {
  position: relative;
  margin-top: 8%;
}
@media (max-width: 768px) {
  .lead {
    overflow: hidden;
    margin-top: 14%;
  }
}
.lead__logo {
  display: none;
}
@media (max-width: 768px) {
  .lead__logo {
    display: block;
    width: 17.96875%;
    margin: 0 auto;
  }
}

.lead__maintext {
  text-align: center;
  color: #627cf6;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: bold;
  font-size: clamp(21px, 1.62vw, 40px);
  line-height: 2.2;
  letter-spacing: 0.08rem;
}
@media (max-width: 768px) {
  .lead__maintext {
    margin-top: 10%;
    line-height: 1.6;
  }
}
.lead__maintext span {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: linear-gradient(transparent 55%, rgba(224, 255, 113, 0.5) 55%);
  font-family: "yu-gothic-pr6n", sans-serif;
  line-height: 1;
}
@media (max-width: 768px) {
  .lead__maintext span {
    line-height: 1.6;
  }
}
.lead__maintext span::before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background: #627cf6;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  left: -1em;
}
.lead__maintext span::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background: #627cf6;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: -1em;
}

.lead__text {
  color: #000;
  text-align: center;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 2.2;
  letter-spacing: 0.08rem;
}
@media (max-width: 768px) {
  .lead__text {
    margin-top: 4%;
  }
}

/*mainnav*/
.mainnav {
  width: 69.53125%;
  margin: 10% auto 0;
}
@media (max-width: 768px) {
  .mainnav {
    width: 80.625%;
    margin-top: 20%;
  }
}
.mainnav__title {
  width: 39.3258426966%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .mainnav__title {
    width: 62.5%;
  }
}

.mainnav__list {
  display: flex;
  gap: 3%;
  margin-top: 3%;
}
@media (max-width: 768px) {
  .mainnav__list {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    margin-top: 0;
  }
}
.mainnav__list--item {
  width: 46%;
}
@media (max-width: 768px) {
  .mainnav__list--item {
    margin-top: 10%;
  }
}
.mainnav__list--link {
  display: block;
  overflow: hidden;
}
.mainnav__list--link img {
  transform: scale(1);
  transition: 0.6s ease-in-out;
}
.mainnav__list--link:hover img {
  transform: scale(1.2);
}
.mainnav__list--number {
  position: relative;
  width: auto;
  height: 3.2312695313vw;
  margin: -11% auto 0 -4%;
  z-index: 2;
}
@media (max-width: 768px) {
  .mainnav__list--number {
    height: 7.631453125vw;
  }
}
.mainnav__list--title {
  width: auto;
  height: 3.319703125vw;
  margin: 3% auto 0;
}
@media (max-width: 768px) {
  .mainnav__list--title {
    height: 8.4375vw;
  }
}

/*item01*/
.item01 {
  position: relative;
  margin-top: 8%;
  padding-top: 12%;
}
@media (max-width: 768px) {
  .item01 {
    margin-top: 20%;
    padding-top: 0;
  }
}
.item01__sidetitle {
  position: sticky;
  top: 3rem;
  left: 3vw;
  width: 2.1608789063%;
  z-index: 99;
  margin-bottom: -32%;
  padding-bottom: 35%;
}
@media (max-width: 768px) {
  .item01__sidetitle {
    display: none;
  }
}
.item01__sectiontitle {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 3rem;
  margin-top: -60%;
}
.item01__sectiontitle--textarea {
  width: 80%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .item01__sectiontitle--textarea {
    width: 86%;
  }
}
.item01__sectiontitle--textarea::before {
  content: "";
  display: block;
  width: 4.8rem;
  max-width: 8vw;
  position: absolute;
  top: 50%;
  right: calc(50vw + 2em);
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .item01__sectiontitle--textarea::before {
    top: 0;
    left: 0;
    width: 10.4310625vw;
    max-width: inherit;
    transform: none;
  }
}
.item01__sectiontitle--textarea::after {
  content: "";
  display: block;
  width: 3.90625vw;
  height: 1px;
}
@media (max-width: 768px) {
  .item01__sectiontitle--textarea::after {
    width: 3em;
    margin-top: 2%;
  }
}
.item01__sectiontitle--textarea--text-en {
  color: #000;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(18px, 1.4vw, 23px);
}
@media (max-width: 768px) {
  .item01__sectiontitle--textarea--text-en {
    margin-top: 8%;
  }
}
.item01__sectiontitle--textarea--text-ja {
  margin-top: 0.1em;
  margin-bottom: 0.2em;
  color: #000;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(30px, 3.4vw, 42px);
}
@media (max-width: 768px) {
  .item01__sectiontitle {
    margin-top: 0;
  }
}
.item01__sectiontitle--textarea::before {
  content: url(../img/item01-number.svg);
}
.item01__sectiontitle--textarea::after {
  background: #627cf6;
}
.item01 .otheritem {
  background: rgba(98, 124, 246, 0.1);
}
.item01 .otheritem__itemtitle {
  color: #627cf6;
}
.item01 .link__main .cart__price--btn,
.item01 .otheritem__link .cart__price--btn {
  border: 1px solid #627cf6;
  background: #627cf6;
}
.item01 .otheritem .more__btn--link {
  background: #627cf6;
}

/*item01-1*/
.item01-1 {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .item01-1 {
    flex-direction: column-reverse;
  }
}

.item01-1__box01 {
  position: relative;
  width: 42.96875%;
  margin-left: -4%;
}
@media (max-width: 768px) {
  .item01-1__box01 {
    width: 100%;
    margin-left: auto;
  }
}
.item01-1__box01--link {
  position: absolute;
  bottom: 0;
  right: 14%;
}
@media (max-width: 768px) {
  .item01-1__box01--link {
    position: relative;
    bottom: auto;
    right: auto;
  }
}

.item01-1__box02 {
  position: relative;
  width: 33.90625%;
  max-width: 520px;
  z-index: 10;
}
@media (max-width: 768px) {
  .item01-1__box02 {
    width: 100%;
    max-width: inherit;
  }
}
.item01-1__box02--titlearea {
  margin: 5rem 0;
  text-align: right;
  color: #627cf6;
}
@media (max-width: 768px) {
  .item01-1__box02--titlearea {
    margin: 0 auto 6%;
  }
}
.item01-1__box02--titlearea .slide-box {
  margin-right: -0.8em;
}
@media (max-width: 768px) {
  .item01-1__box02--titlearea .slide-box {
    margin-right: auto;
    padding-right: 6%;
  }
}
.item01-1__box02--titlearea .slide-box:nth-child(2) {
  padding-bottom: 0.5em;
}
.item01-1__box02--titlearea--text-en {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  padding-right: 0.2em;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: max(3.8vw, 48px);
  z-index: 99;
}
.item01-1__box02--titlearea--text-ja {
  position: relative;
  margin-top: 0.6em;
  padding-top: 1em;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(19px, 1.25vw, 22px);
}
@media (max-width: 768px) {
  .item01-1__box02--titlearea--text-ja {
    margin-right: 6%;
    letter-spacing: 0.08rem;
  }
}
.item01-1__box02--titlearea--text-ja::before {
  content: "";
  display: block;
  width: 1.8em;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
}
.item01-1__box02--titlearea--text-ja::before {
  background: #627cf6;
}
.item01-1__box02--pointarea {
  position: relative;
  display: flex;
  padding: 4%;
  width: 91.935483871%;
  margin: 2rem 0 0 auto;
  background: rgba(98, 124, 246, 0.15);
  z-index: 2;
  background: rgba(98, 124, 246, 0.15);
}
@media (max-width: 768px) {
  .item01-1__box02--pointarea {
    flex-direction: column;
    width: 88%;
    margin: 0 auto;
  }
  .item01-1__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
}
.item01-1__box02--pointarea::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.703125vw solid transparent;
  border-bottom: 0.703125vw solid transparent;
  border-right: 1.171875vw solid transparent;
  border-left: 0;
  position: absolute;
  top: 50%;
  left: -1.1328125vw;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .item01-1__box02--pointarea::before {
    border-top: none;
    border-right: 3.90625vw solid transparent;
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid transparent;
    top: -4.609375vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .item01-1__box02--pointarea {
    position: relative;
  }
  .item01-1__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
  .item01-1__box02--pointarea:nth-child(odd)::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(98, 124, 246, 0.5);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.item01-1__box02--pointarea::before {
  border-right: 1.171875vw solid rgba(98, 124, 246, 0.15);
}
@media (max-width: 768px) {
  .item01-1__box02--pointarea::before {
    border-right: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid rgba(98, 124, 246, 0.15);
  }
}
@media (max-width: 768px) {
  .item01-1__box02--pointarea:nth-child(even)::before {
    display: none;
  }
}
.item01-1__box02 .iconarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.4438040346%;
}
@media (max-width: 768px) {
  .item01-1__box02 .iconarea {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    margin-top: -10%;
  }
}
.item01-1__box02 .iconarea__photo {
  border-radius: 50%;
}
@media (max-width: 768px) {
  .item01-1__box02 .iconarea__photo {
    width: 23.4375%;
    margin-right: 0.5em;
  }
}
.item01-1__box02 .iconarea span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item01-1__box02 .iconarea__name {
  margin-top: 0.5em;
  color: #000;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
}
@media (max-width: 768px) {
  .item01-1__box02 .iconarea__name {
    margin-top: 0;
    font-size: 0.9rem;
  }
}
.item01-1__box02 .iconarea__profession {
  margin-top: 0.25em;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .item01-1__box02 .iconarea__profession {
    margin: 0.25em auto 0.25em 0;
    font-size: 0.9rem;
  }
}
.item01-1__box02 .iconarea__photo {
  border: 2px solid #627cf6;
}
.item01-1__box02 .iconarea__profession {
  color: #627cf6;
}
.item01-1__box02 .textarea {
  width: 75.7925072046%;
  margin: 0 0 0 auto;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .item01-1__box02 .textarea {
    width: 86%;
    margin: 6% auto 0;
    padding-bottom: 6%;
  }
}
.item01-1__box02 .textarea__icon {
  width: 24.7148288973%;
}
.item01-1__box02 .textarea__text {
  color: #000;
  font-family: "yu-gothic-pr6n", sans-serif;
  text-align: justify;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .item01-1__box02 .textarea__text {
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}
.item01-1__box02 .textarea__text span {
  color: #627cf6;
}
.item01-1__box02--photo {
  margin: -9% auto 0 -13%;
}
@media (max-width: 768px) {
  .item01-1__box02--photo {
    width: 85.9375%;
    margin: 12% 0 0 auto;
  }
}

/*item01-2*/
.item01-2 {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  margin-top: 10vw;
}
@media (max-width: 768px) {
  .item01-2 {
    flex-direction: column-reverse;
    margin-top: 4rem;
  }
}

.item01-2__box01 {
  position: relative;
  width: 42.96875%;
}
@media (max-width: 768px) {
  .item01-2__box01 {
    width: 100%;
  }
}
.item01-2__box01--link {
  position: absolute;
  bottom: 0;
  left: -8%;
}
@media (max-width: 768px) {
  .item01-2__box01--link {
    position: relative;
    bottom: auto;
    left: auto;
  }
}

.item01-2__box02 {
  position: relative;
  width: 33.90625%;
  max-width: 520px;
  z-index: 10;
}
@media (max-width: 768px) {
  .item01-2__box02 {
    width: 100%;
    max-width: inherit;
  }
}
.item01-2__box02--titlearea {
  margin: 5rem 0;
  text-align: left;
  color: #627cf6;
}
@media (max-width: 768px) {
  .item01-2__box02--titlearea {
    margin: 0 auto 6%;
  }
}
.item01-2__box02--titlearea .slide-box {
  margin-left: -0.8em;
}
@media (max-width: 768px) {
  .item01-2__box02--titlearea .slide-box {
    margin-left: 6%;
  }
}
.item01-2__box02--titlearea--text-en {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0 0;
  padding-right: 0.2em;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: max(3.8vw, 48px);
  z-index: 99;
}
.item01-2__box02--titlearea--text-ja {
  position: relative;
  margin-top: 0.6em;
  padding-top: 1em;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(19px, 1.4vw, 22px);
}
@media (max-width: 768px) {
  .item01-2__box02--titlearea--text-ja {
    margin-left: 6%;
  }
}
.item01-2__box02--titlearea--text-ja::before {
  content: "";
  display: block;
  width: 2em;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
.item01-2__box02--titlearea--text-ja::before {
  background: #627cf6;
}
.item01-2__box02--pointarea {
  position: relative;
  display: flex;
  padding: 4%;
  width: 91.935483871%;
  margin: 2rem auto 0 0;
  background: rgba(98, 124, 246, 0.15);
  z-index: 2;
  background: rgba(98, 124, 246, 0.15);
}
@media (max-width: 768px) {
  .item01-2__box02--pointarea {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  .item01-2__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
}
.item01-2__box02--pointarea::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.703125vw solid transparent;
  border-bottom: 0.703125vw solid transparent;
  border-left: 1.171875vw solid transparent;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: -1.1328125vw;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .item01-2__box02--pointarea::before {
    border-top: none;
    border-right: 3.90625vw solid transparent;
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid transparent;
    top: -4.609375vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .item01-2__box02--pointarea {
    position: relative;
  }
  .item01-2__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
  .item01-2__box02--pointarea:nth-child(odd)::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(98, 124, 246, 0.5);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.item01-2__box02--pointarea::before {
  border-left: 1.171875vw solid rgba(98, 124, 246, 0.15);
}
@media (max-width: 768px) {
  .item01-2__box02--pointarea::before {
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid rgba(98, 124, 246, 0.15);
  }
}
@media (max-width: 768px) {
  .item01-2__box02--pointarea:nth-child(even)::before {
    display: none;
  }
}
.item01-2__box02 .iconarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.4438040346%;
}
@media (max-width: 768px) {
  .item01-2__box02 .iconarea {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    margin-top: -10%;
  }
}
.item01-2__box02 .iconarea__photo {
  border-radius: 50%;
}
@media (max-width: 768px) {
  .item01-2__box02 .iconarea__photo {
    width: 23.4375%;
    margin-right: 0.5em;
  }
}
.item01-2__box02 .iconarea span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item01-2__box02 .iconarea__name {
  margin-top: 0.5em;
  color: #000;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
}
@media (max-width: 768px) {
  .item01-2__box02 .iconarea__name {
    margin-top: 0;
    font-size: 0.9rem;
  }
}
.item01-2__box02 .iconarea__profession {
  margin-top: 0.25em;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .item01-2__box02 .iconarea__profession {
    margin: 0.25em auto 0.25em 0;
    font-size: 0.9rem;
  }
}
.item01-2__box02 .iconarea__photo {
  border: 2px solid #627cf6;
}
.item01-2__box02 .iconarea__profession {
  color: #627cf6;
}
.item01-2__box02 .textarea {
  width: 75.7925072046%;
  margin: 0 0 0 auto;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .item01-2__box02 .textarea {
    width: 86%;
    margin: 6% auto 0;
    padding-bottom: 6%;
  }
}
.item01-2__box02 .textarea__icon {
  width: 24.7148288973%;
}
.item01-2__box02 .textarea__text {
  color: #000;
  font-family: "yu-gothic-pr6n", sans-serif;
  text-align: justify;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .item01-2__box02 .textarea__text {
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}
.item01-2__box02 .textarea__text span {
  color: #627cf6;
}
.item01-2__box02--photo {
  margin: -9% 21% 0 -38%;
}
@media (max-width: 768px) {
  .item01-2__box02--photo {
    width: 90%;
    margin: 12% auto 0;
  }
}

/*item01-3*/
.item01-3 {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 10vw;
}
@media (max-width: 768px) {
  .item01-3 {
    flex-direction: column-reverse;
    margin-top: 4rem;
  }
}

.item01-3__box01 {
  position: relative;
  width: 42.96875%;
  margin-left: 10%;
}
@media (max-width: 768px) {
  .item01-3__box01 {
    width: 100%;
    margin-left: auto;
  }
}
.item01-3__box01--link {
  position: absolute;
  bottom: 0;
  right: 14%;
}
@media (max-width: 768px) {
  .item01-3__box01--link {
    position: relative;
    bottom: auto;
    right: auto;
  }
}

.item01-3__box02 {
  position: relative;
  width: 33.90625%;
  max-width: 520px;
  z-index: 10;
}
@media (max-width: 768px) {
  .item01-3__box02 {
    width: 100%;
    max-width: inherit;
  }
}
.item01-3__box02--titlearea {
  margin: 5rem 0;
  text-align: right;
  color: #627cf6;
}
@media (max-width: 768px) {
  .item01-3__box02--titlearea {
    margin: 0 auto 6%;
  }
}
.item01-3__box02--titlearea .slide-box {
  margin-right: -0.8em;
}
@media (max-width: 768px) {
  .item01-3__box02--titlearea .slide-box {
    margin-right: auto;
    padding-right: 6%;
  }
}
.item01-3__box02--titlearea .slide-box:nth-child(2) {
  padding-bottom: 0.5em;
}
.item01-3__box02--titlearea--text-en {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  padding-right: 0.2em;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: max(3.8vw, 48px);
  z-index: 99;
}
.item01-3__box02--titlearea--text-ja {
  position: relative;
  margin-top: 0.6em;
  padding-top: 1em;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(19px, 1.25vw, 22px);
}
@media (max-width: 768px) {
  .item01-3__box02--titlearea--text-ja {
    margin-right: 6%;
    letter-spacing: 0.08rem;
  }
}
.item01-3__box02--titlearea--text-ja::before {
  content: "";
  display: block;
  width: 1.8em;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
}
.item01-3__box02--titlearea--text-ja::before {
  background: #627cf6;
}
.item01-3__box02--pointarea {
  position: relative;
  display: flex;
  padding: 4%;
  width: 91.935483871%;
  margin: 2rem 0 0 auto;
  background: rgba(98, 124, 246, 0.15);
  z-index: 2;
  background: rgba(98, 124, 246, 0.15);
}
@media (max-width: 768px) {
  .item01-3__box02--pointarea {
    flex-direction: column;
    width: 88%;
    margin: 0 auto;
  }
  .item01-3__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
}
.item01-3__box02--pointarea::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.703125vw solid transparent;
  border-bottom: 0.703125vw solid transparent;
  border-right: 1.171875vw solid transparent;
  border-left: 0;
  position: absolute;
  top: 50%;
  left: -1.1328125vw;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .item01-3__box02--pointarea::before {
    border-top: none;
    border-right: 3.90625vw solid transparent;
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid transparent;
    top: -4.609375vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .item01-3__box02--pointarea {
    position: relative;
  }
  .item01-3__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
  .item01-3__box02--pointarea:nth-child(odd)::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(98, 124, 246, 0.5);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .item01-3__box02--pointarea:nth-child(even) {
    margin-top: 0;
  }
}
.item01-3__box02--pointarea::before {
  border-right: 1.171875vw solid rgba(98, 124, 246, 0.15);
}
@media (max-width: 768px) {
  .item01-3__box02--pointarea::before {
    border-right: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid rgba(98, 124, 246, 0.15);
  }
}
@media (max-width: 768px) {
  .item01-3__box02--pointarea:nth-child(even)::before {
    display: none;
  }
}
.item01-3__box02 .iconarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.4438040346%;
}
@media (max-width: 768px) {
  .item01-3__box02 .iconarea {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    margin-top: -10%;
  }
}
.item01-3__box02 .iconarea__photo {
  border-radius: 50%;
}
@media (max-width: 768px) {
  .item01-3__box02 .iconarea__photo {
    width: 23.4375%;
    margin-right: 0.5em;
  }
}
.item01-3__box02 .iconarea span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item01-3__box02 .iconarea__name {
  margin-top: 0.5em;
  color: #000;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
}
@media (max-width: 768px) {
  .item01-3__box02 .iconarea__name {
    margin-top: 0;
    font-size: 0.9rem;
  }
}
.item01-3__box02 .iconarea__profession {
  margin-top: 0.25em;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .item01-3__box02 .iconarea__profession {
    margin: 0.25em auto 0.25em 0;
    font-size: 0.9rem;
  }
}
.item01-3__box02 .iconarea__photo {
  border: 2px solid #627cf6;
}
.item01-3__box02 .iconarea__profession {
  color: #627cf6;
}
.item01-3__box02 .textarea {
  width: 75.7925072046%;
  margin: 0 0 0 auto;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .item01-3__box02 .textarea {
    width: 86%;
    margin: 6% auto 0;
    padding-bottom: 6%;
  }
}
.item01-3__box02 .textarea__icon {
  width: 24.7148288973%;
}
.item01-3__box02 .textarea__text {
  color: #000;
  font-family: "yu-gothic-pr6n", sans-serif;
  text-align: justify;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .item01-3__box02 .textarea__text {
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}
.item01-3__box02 .textarea__text span {
  color: #627cf6;
}
.item01-3__box02--photo {
  margin: 10% 8% 0 -13%;
}
@media (max-width: 768px) {
  .item01-3__box02--photo {
    width: 85.9375%;
    margin: 12% 0 0 auto;
  }
}

/*item02*/
.item02 {
  position: relative;
  margin-top: 9%;
  padding-top: 9%;
}
@media (max-width: 768px) {
  .item02 {
    margin-top: 20%;
    padding-top: 0;
  }
}
.item02__sidetitle {
  position: sticky;
  top: 3rem;
  left: 3vw;
  width: 2.1608789063%;
  z-index: 99;
  margin-bottom: -34%;
  padding-bottom: 32%;
}
@media (max-width: 768px) {
  .item02__sidetitle {
    display: none;
  }
}
.item02__sectiontitle {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 3rem;
  margin-top: -57%;
}
.item02__sectiontitle--textarea {
  width: 80%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .item02__sectiontitle--textarea {
    width: 86%;
  }
}
.item02__sectiontitle--textarea::before {
  content: "";
  display: block;
  width: 4.8rem;
  max-width: 8vw;
  position: absolute;
  top: 50%;
  right: calc(50vw + 2em);
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .item02__sectiontitle--textarea::before {
    top: 0;
    left: 0;
    width: 10.4310625vw;
    max-width: inherit;
    transform: none;
  }
}
.item02__sectiontitle--textarea::after {
  content: "";
  display: block;
  width: 3.90625vw;
  height: 1px;
}
@media (max-width: 768px) {
  .item02__sectiontitle--textarea::after {
    width: 3em;
    margin-top: 2%;
  }
}
.item02__sectiontitle--textarea--text-en {
  color: #000;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(18px, 1.4vw, 23px);
}
@media (max-width: 768px) {
  .item02__sectiontitle--textarea--text-en {
    margin-top: 8%;
  }
}
.item02__sectiontitle--textarea--text-ja {
  margin-top: 0.1em;
  margin-bottom: 0.2em;
  color: #000;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(30px, 3.4vw, 42px);
}
@media (max-width: 768px) {
  .item02__sectiontitle {
    margin-top: 0;
  }
}
.item02__sectiontitle--textarea::before {
  content: url(../img/item02-number.svg);
}
.item02__sectiontitle--textarea::after {
  background: #48ca00;
}
.item02 .otheritem {
  background: rgba(224, 255, 113, 0.1);
}
.item02 .otheritem__itemtitle {
  color: #48ca00;
}
.item02 .link__main .cart__price--btn,
.item02 .otheritem__link .cart__price--btn {
  border: 1px solid #48ca00;
  background: #48ca00;
}
.item02 .otheritem .more__btn--link {
  background: #48ca00;
}

/*item02-1*/
.item02-1-content01{
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .item02-1-content01{
    flex-direction: column-reverse;
  }
}

.item02-1__box01 {
  position: relative;
  width: 42.96875%;
}
@media (max-width: 768px) {
  .item02-1__box01 {
    width: 100%;
  }
}
.item02-1-content02{
  width: 42.96875%;
  margin: -12% auto 0 19%;
}
@media (max-width: 768px) {
  .item02-1-content02{
    width: 100%;
    margin: 0 auto;
  }
}
.item02-1__box01--link {
  margin: 1rem 0 0 auto;
}
@media (max-width: 768px) {
  .item02-1__box01--link {
    margin: 8% auto 0;
  }
}
.item02-1__box01--photo02 {
  width: 100%;
}
@media (max-width: 768px) {
  .item02-1__box01--photo02 {
    width: 85.9375%;
    margin: 6% auto 0 0;
  }
}

.item02-1__box02 {
  position: relative;
  width: 33.90625%;
  max-width: 520px;
  z-index: 10;
}
@media (max-width: 768px) {
  .item02-1__box02 {
    width: 100%;
    max-width: inherit;
  }
}
.item02-1__box02--titlearea {
  margin: 5rem 0;
  text-align: right;
  color: #48ca00;
}
@media (max-width: 768px) {
  .item02-1__box02--titlearea {
    margin: 0 auto 6%;
  }
}
.item02-1__box02--titlearea .slide-box {
  margin-right: -0.8em;
}
@media (max-width: 768px) {
  .item02-1__box02--titlearea .slide-box {
    margin-right: auto;
    padding-right: 6%;
  }
}
.item02-1__box02--titlearea .slide-box:nth-child(2) {
  padding-bottom: 0.5em;
}
.item02-1__box02--titlearea--text-en {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  padding-right: 0.2em;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: max(3.8vw, 48px);
  z-index: 99;
}
.item02-1__box02--titlearea--text-ja {
  position: relative;
  margin-top: 0.6em;
  padding-top: 1em;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(19px, 1.25vw, 22px);
}
@media (max-width: 768px) {
  .item02-1__box02--titlearea--text-ja {
    margin-right: 6%;
    letter-spacing: 0.08rem;
  }
}
.item02-1__box02--titlearea--text-ja::before {
  content: "";
  display: block;
  width: 1.8em;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
}
.item02-1__box02--titlearea--text-ja::before {
  background: #48ca00;
}
.item02-1__box02--pointarea {
  position: relative;
  display: flex;
  padding: 4%;
  width: 91.935483871%;
  margin: 2rem 0 0 auto;
  background: rgba(98, 124, 246, 0.15);
  z-index: 2;
  background: rgba(72, 202, 0, 0.15);
}
@media (max-width: 768px) {
  .item02-1__box02--pointarea {
    flex-direction: column;
    width: 88%;
    margin: 0 auto;
  }
  .item02-1__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
}
.item02-1__box02--pointarea::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.703125vw solid transparent;
  border-bottom: 0.703125vw solid transparent;
  border-right: 1.171875vw solid transparent;
  border-left: 0;
  position: absolute;
  top: 50%;
  left: -1.1328125vw;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .item02-1__box02--pointarea::before {
    border-top: none;
    border-right: 3.90625vw solid transparent;
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid transparent;
    top: -4.609375vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .item02-1__box02--pointarea {
    position: relative;
  }
  .item02-1__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
  .item02-1__box02--pointarea:nth-child(odd)::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(72, 202, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.item02-1__box02--pointarea::before {
  border-right: 1.171875vw solid rgba(72, 202, 0, 0.15);
}
@media (max-width: 768px) {
  .item02-1__box02--pointarea::before {
    border-right: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid rgba(72, 202, 0, 0.15);
  }
}
@media (max-width: 768px) {
  .item02-1__box02--pointarea:nth-child(even)::before {
    display: none;
  }
}
.item02-1__box02 .iconarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.4438040346%;
}
@media (max-width: 768px) {
  .item02-1__box02 .iconarea {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    margin-top: -10%;
  }
}
.item02-1__box02 .iconarea__photo {
  border-radius: 50%;
}
@media (max-width: 768px) {
  .item02-1__box02 .iconarea__photo {
    width: 23.4375%;
    margin-right: 0.5em;
  }
}
.item02-1__box02 .iconarea span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item02-1__box02 .iconarea__name {
  margin-top: 0.5em;
  color: #000;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
}
@media (max-width: 768px) {
  .item02-1__box02 .iconarea__name {
    margin-top: 0;
    font-size: 0.9rem;
  }
}
.item02-1__box02 .iconarea__profession {
  margin-top: 0.25em;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .item02-1__box02 .iconarea__profession {
    margin: 0.25em auto 0.25em 0;
    font-size: 0.9rem;
  }
}
.item02-1__box02 .iconarea__photo {
  border: 2px solid #48ca00;
}
.item02-1__box02 .iconarea__profession {
  color: #48ca00;
}
.item02-1__box02 .textarea {
  width: 75.7925072046%;
  margin: 0 0 0 auto;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .item02-1__box02 .textarea {
    width: 86%;
    margin: 6% auto 0;
    padding-bottom: 6%;
  }
}
.item02-1__box02 .textarea__icon {
  width: 24.7148288973%;
}
.item02-1__box02 .textarea__text {
  color: #000;
  font-family: "yu-gothic-pr6n", sans-serif;
  text-align: justify;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .item02-1__box02 .textarea__text {
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}
.item02-1__box02 .textarea__text span {
  color: #48ca00;
}
.item02-1__box02--photo {
  width: 84%;
  margin: 9% auto 0;
}
@media (max-width: 768px) {
  .item02-1__box02--photo {
    width: 70.3125%;
    margin: 12% 0 0 auto;
  }
}

/*item02-2*/
.item02-2 {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  margin-top: 10vw;
  margin-right: 6%;
}
@media (max-width: 768px) {
  .item02-2 {
    flex-direction: column-reverse;
    margin-right: auto;
    margin-top: 4rem;
  }
}

.item02-2__box01 {
  position: relative;
  width: 46.875%;
}
@media (max-width: 768px) {
  .item02-2__box01 {
    width: 100%;
  }
}
.item02-2__box01--photo {
  position: relative;
  z-index: 10;
}
.item02-2__box01--link {
  position: absolute;
  bottom: 0;
  left: 18%;
}
@media (max-width: 768px) {
  .item02-2__box01--link {
    position: relative;
    bottom: auto;
    left: auto;
  }
}

.item02-2__box02 {
  position: relative;
  width: 33.90625%;
  max-width: 520px;
  margin-right: -6%;
}
@media (max-width: 768px) {
  .item02-2__box02 {
    width: 100%;
    max-width: inherit;
  }
}
@media (max-width: 768px) {
  .item02-2__box02 {
    margin-right: auto;
  }
}
.item02-2__box02--titlearea {
  margin: 5rem 0;
  text-align: left;
  color: #48ca00;
}
@media (max-width: 768px) {
  .item02-2__box02--titlearea {
    margin: 0 auto 6%;
  }
}
.item02-2__box02--titlearea .slide-box {
  margin-left: -0.8em;
}
@media (max-width: 768px) {
  .item02-2__box02--titlearea .slide-box {
    margin-left: 6%;
  }
}
.item02-2__box02--titlearea--text-en {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0 0;
  padding-right: 0.2em;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: max(3.8vw, 48px);
  z-index: 99;
}
.item02-2__box02--titlearea--text-ja {
  position: relative;
  margin-top: 0.6em;
  padding-top: 1em;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(19px, 1.4vw, 22px);
}
@media (max-width: 768px) {
  .item02-2__box02--titlearea--text-ja {
    margin-left: 6%;
  }
}
.item02-2__box02--titlearea--text-ja::before {
  content: "";
  display: block;
  width: 2em;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
.item02-2__box02--titlearea--text-ja::before {
  background: #48ca00;
}
.item02-2__box02--pointarea {
  position: relative;
  display: flex;
  padding: 4%;
  width: 91.935483871%;
  margin: 2rem auto 0 0;
  background: rgba(98, 124, 246, 0.15);
  z-index: 2;
  background: rgba(72, 202, 0, 0.15);
  z-index: 10;
}
@media (max-width: 768px) {
  .item02-2__box02--pointarea {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  .item02-2__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
}
.item02-2__box02--pointarea::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.703125vw solid transparent;
  border-bottom: 0.703125vw solid transparent;
  border-left: 1.171875vw solid transparent;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: -1.1328125vw;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .item02-2__box02--pointarea::before {
    border-top: none;
    border-right: 3.90625vw solid transparent;
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid transparent;
    top: -4.609375vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .item02-2__box02--pointarea {
    position: relative;
  }
  .item02-2__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
  .item02-2__box02--pointarea:nth-child(odd)::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(72, 202, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.item02-2__box02--pointarea::before {
  border-left: 1.171875vw solid rgba(72, 202, 0, 0.15);
}
@media (max-width: 768px) {
  .item02-2__box02--pointarea::before {
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid rgba(72, 202, 0, 0.15);
  }
}
@media (max-width: 768px) {
  .item02-2__box02--pointarea:nth-child(even)::before {
    display: none;
  }
}
.item02-2__box02 .iconarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.4438040346%;
}
@media (max-width: 768px) {
  .item02-2__box02 .iconarea {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    margin-top: -10%;
  }
}
.item02-2__box02 .iconarea__photo {
  border-radius: 50%;
}
@media (max-width: 768px) {
  .item02-2__box02 .iconarea__photo {
    width: 23.4375%;
    margin-right: 0.5em;
  }
}
.item02-2__box02 .iconarea span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item02-2__box02 .iconarea__name {
  margin-top: 0.5em;
  color: #000;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
}
@media (max-width: 768px) {
  .item02-2__box02 .iconarea__name {
    margin-top: 0;
    font-size: 0.9rem;
  }
}
.item02-2__box02 .iconarea__profession {
  margin-top: 0.25em;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .item02-2__box02 .iconarea__profession {
    margin: 0.25em auto 0.25em 0;
    font-size: 0.9rem;
  }
}
.item02-2__box02 .iconarea__photo {
  border: 2px solid #48ca00;
}
.item02-2__box02 .iconarea__profession {
  color: #48ca00;
}
.item02-2__box02 .textarea {
  width: 75.7925072046%;
  margin: 0 0 0 auto;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .item02-2__box02 .textarea {
    width: 86%;
    margin: 6% auto 0;
    padding-bottom: 6%;
  }
}
.item02-2__box02 .textarea__icon {
  width: 24.7148288973%;
}
.item02-2__box02 .textarea__text {
  color: #000;
  font-family: "yu-gothic-pr6n", sans-serif;
  text-align: justify;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .item02-2__box02 .textarea__text {
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}
.item02-2__box02 .textarea__text span {
  color: #48ca00;
}
.item02-2__box02--photo {
  margin: 26% -2% 0 -13%;
}
@media (max-width: 768px) {
  .item02-2__box02--photo {
    width: 85.9375%;
    margin: 12% 0 0 auto;
  }
}

/*item02-3*/
.item02-3__inner01 {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 10vw;
}
@media (max-width: 768px) {
  .item02-3__inner01 {
    flex-direction: column-reverse;
    margin-top: 4rem;
  }
}

.item02-3__box01 {
  width: 42.96875%;
  margin-left: 14%;
}
@media (max-width: 768px) {
  .item02-3__box01 {
    width: 100%;
    margin-left: auto;
  }
}

.item02-3__box02 {
  position: relative;
  width: 33.90625%;
  max-width: 520px;
  margin-left: -6%;
  z-index: 10;
}
@media (max-width: 768px) {
  .item02-3__box02 {
    width: 100%;
    max-width: inherit;
  }
}
@media (max-width: 768px) {
  .item02-3__box02 {
    margin-left: auto;
  }
}
.item02-3__box02--titlearea {
  margin: 5rem 0;
  text-align: right;
  color: #48ca00;
}
@media (max-width: 768px) {
  .item02-3__box02--titlearea {
    margin: 0 auto 6%;
  }
}
.item02-3__box02--titlearea .slide-box {
  margin-right: -0.8em;
}
@media (max-width: 768px) {
  .item02-3__box02--titlearea .slide-box {
    margin-right: auto;
    padding-right: 6%;
  }
}
.item02-3__box02--titlearea .slide-box:nth-child(2) {
  padding-bottom: 0.5em;
}
.item02-3__box02--titlearea--text-en {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  padding-right: 0.2em;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: max(3.8vw, 48px);
  z-index: 99;
}
.item02-3__box02--titlearea--text-ja {
  position: relative;
  margin-top: 0.6em;
  padding-top: 1em;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(19px, 1.25vw, 22px);
}
@media (max-width: 768px) {
  .item02-3__box02--titlearea--text-ja {
    margin-right: 6%;
    letter-spacing: 0.08rem;
  }
}
.item02-3__box02--titlearea--text-ja::before {
  content: "";
  display: block;
  width: 1.8em;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
}
.item02-3__box02--titlearea--text-ja::before {
  background: #48ca00;
}
.item02-3__box02--pointarea {
  position: relative;
  display: flex;
  padding: 4%;
  width: 91.935483871%;
  margin: 2rem 0 0 auto;
  background: rgba(98, 124, 246, 0.15);
  z-index: 2;
  background: rgba(72, 202, 0, 0.15);
}
@media (max-width: 768px) {
  .item02-3__box02--pointarea {
    flex-direction: column;
    width: 88%;
    margin: 0 auto;
  }
  .item02-3__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
}
.item02-3__box02--pointarea::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.703125vw solid transparent;
  border-bottom: 0.703125vw solid transparent;
  border-right: 1.171875vw solid transparent;
  border-left: 0;
  position: absolute;
  top: 50%;
  left: -1.1328125vw;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .item02-3__box02--pointarea::before {
    border-top: none;
    border-right: 3.90625vw solid transparent;
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid transparent;
    top: -4.609375vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .item02-3__box02--pointarea {
    position: relative;
  }
  .item02-3__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
  .item02-3__box02--pointarea:nth-child(odd)::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(72, 202, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .item02-3__box02--pointarea:nth-child(even) {
    margin-top: 0;
  }
}
.item02-3__box02--pointarea::before {
  border-right: 1.171875vw solid rgba(72, 202, 0, 0.15);
}
@media (max-width: 768px) {
  .item02-3__box02--pointarea::before {
    border-right: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid rgba(72, 202, 0, 0.15);
  }
}
@media (max-width: 768px) {
  .item02-3__box02--pointarea:nth-child(even)::before {
    display: none;
  }
}
.item02-3__box02 .iconarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.4438040346%;
}
@media (max-width: 768px) {
  .item02-3__box02 .iconarea {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    margin-top: -10%;
  }
}
.item02-3__box02 .iconarea__photo {
  border-radius: 50%;
}
@media (max-width: 768px) {
  .item02-3__box02 .iconarea__photo {
    width: 23.4375%;
    margin-right: 0.5em;
  }
}
.item02-3__box02 .iconarea span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item02-3__box02 .iconarea__name {
  margin-top: 0.5em;
  color: #000;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
}
@media (max-width: 768px) {
  .item02-3__box02 .iconarea__name {
    margin-top: 0;
    font-size: 0.9rem;
  }
}
.item02-3__box02 .iconarea__profession {
  margin-top: 0.25em;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .item02-3__box02 .iconarea__profession {
    margin: 0.25em auto 0.25em 0;
    font-size: 0.9rem;
  }
}
.item02-3__box02 .iconarea__photo {
  border: 2px solid #48ca00;
}
.item02-3__box02 .iconarea__profession {
  color: #48ca00;
}
.item02-3__box02 .textarea {
  width: 75.7925072046%;
  margin: 0 0 0 auto;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .item02-3__box02 .textarea {
    width: 86%;
    margin: 6% auto 0;
    padding-bottom: 6%;
  }
}
.item02-3__box02 .textarea__icon {
  width: 24.7148288973%;
}
.item02-3__box02 .textarea__text {
  color: #000;
  font-family: "yu-gothic-pr6n", sans-serif;
  text-align: justify;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .item02-3__box02 .textarea__text {
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}
.item02-3__box02 .textarea__text span {
  color: #48ca00;
}
.item02-3__box02--photo {
  margin: 28% 16% 0 -23%;
}
@media (max-width: 768px) {
  .item02-3__box02--photo {
    margin: 0 auto;
  }
}

.item02-3__inner02 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 1rem;
  margin-left: 6%;
}
@media (max-width: 768px) {
  .item02-3__inner02 {
    flex-direction: column;
    margin-top: 0;
    margin-left: auto;
  }
}
.item02-3__inner02--photo {
  width: 35.15625%;
}
@media (max-width: 768px) {
  .item02-3__inner02--photo {
    width: 85.9375%;
    margin: 12% 0 0 auto;
  }
}

/*item03*/
.item03 {
  position: relative;
  margin-top: 10%;
  padding-top: 8%;
}
@media (max-width: 768px) {
  .item03 {
    margin-top: 18%;
    padding-top: 0;
  }
}
.item03__sidetitle {
  position: sticky;
  top: 3rem;
  left: 3vw;
  width: 2.1608789063%;
  z-index: 99;
  margin-bottom: -32%;
  padding-bottom: 32%;
}
@media (max-width: 768px) {
  .item03__sidetitle {
    display: none;
  }
}
.item03__sectiontitle {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 3rem;
  margin-top: -60%;
}
.item03__sectiontitle--textarea {
  width: 80%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .item03__sectiontitle--textarea {
    width: 86%;
  }
}
.item03__sectiontitle--textarea::before {
  content: "";
  display: block;
  width: 4.8rem;
  max-width: 8vw;
  position: absolute;
  top: 50%;
  right: calc(50vw + 2em);
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .item03__sectiontitle--textarea::before {
    top: 0;
    left: 0;
    width: 10.4310625vw;
    max-width: inherit;
    transform: none;
  }
}
.item03__sectiontitle--textarea::after {
  content: "";
  display: block;
  width: 3.90625vw;
  height: 1px;
}
@media (max-width: 768px) {
  .item03__sectiontitle--textarea::after {
    width: 3em;
    margin-top: 2%;
  }
}
.item03__sectiontitle--textarea--text-en {
  color: #000;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(18px, 1.4vw, 23px);
}
@media (max-width: 768px) {
  .item03__sectiontitle--textarea--text-en {
    margin-top: 8%;
  }
}
.item03__sectiontitle--textarea--text-ja {
  margin-top: 0.1em;
  margin-bottom: 0.2em;
  color: #000;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(30px, 3.4vw, 42px);
}
@media (max-width: 768px) {
  .item03__sectiontitle {
    margin-top: 0;
  }
}
.item03__sectiontitle--textarea::before {
  content: url(../img/item03-number.svg);
}
.item03__sectiontitle--textarea::after {
  background: #208fff;
}
.item03 .iconarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.4438040346%;
}
@media (max-width: 768px) {
  .item03 .iconarea {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    margin-top: -10%;
  }
}
.item03 .iconarea__photo {
  border-radius: 50%;
}
@media (max-width: 768px) {
  .item03 .iconarea__photo {
    width: 23.4375%;
    margin-right: 0.5em;
  }
}
.item03 .iconarea span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item03 .iconarea__name {
  margin-top: 0.5em;
  color: #000;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
}
@media (max-width: 768px) {
  .item03 .iconarea__name {
    margin-top: 0;
    font-size: 0.9rem;
  }
}
.item03 .iconarea__profession {
  margin-top: 0.25em;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .item03 .iconarea__profession {
    margin: 0.25em auto 0.25em 0;
    font-size: 0.9rem;
  }
}
.item03 .iconarea__photo {
  border: 2px solid #208fff;
}
.item03 .iconarea__profession {
  color: #208fff;
}
.item03 .textarea {
  width: 75.7925072046%;
  margin: 0 0 0 auto;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .item03 .textarea {
    width: 86%;
    margin: 6% auto 0;
    padding-bottom: 6%;
  }
}
.item03 .textarea__icon {
  width: 24.7148288973%;
}
.item03 .textarea__text {
  color: #000;
  font-family: "yu-gothic-pr6n", sans-serif;
  text-align: justify;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .item03 .textarea__text {
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}
.item03 .textarea__text span {
  color: #208fff;
}
.item03 .otheritem {
  background: rgba(32, 143, 255, 0.1);
}
.item03 .otheritem__itemtitle {
  color: #208fff;
}
.item03 .link__main .cart__price--btn,
.item03 .otheritem__link .cart__price--btn {
  border: 1px solid #208fff;
  background: #208fff;
}
.item03 .otheritem .more__btn--link {
  background: #208fff;
}

/*item03-1*/
.item03-1 {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .item03-1 {
    flex-direction: column-reverse;
  }
}

.item03-1__box01 {
  position: relative;
  width: 46.875%;
}
@media (max-width: 768px) {
  .item03-1__box01 {
    width: 100%;
  }
}
.item03-1__box01--photo {
  position: relative;
  z-index: 10;
}
.item03-1__box01--link {
  position: absolute;
  bottom: 0;
  left: 12%;
}
@media (max-width: 768px) {
  .item03-1__box01--link {
    position: relative;
    bottom: auto;
    left: auto;
  }
}

.item03-1__box02 {
  position: relative;
  width: 33.90625%;
  max-width: 520px;
}
@media (max-width: 768px) {
  .item03-1__box02 {
    width: 100%;
    max-width: inherit;
  }
}
.item03-1__box02--titlearea {
  margin: 5rem 0;
  text-align: left;
  margin: 8rem auto 5rem 1rem;
  color: #208fff;
}
@media (max-width: 768px) {
  .item03-1__box02--titlearea {
    margin: 0 auto 6%;
  }
}
.item03-1__box02--titlearea .slide-box {
  margin-left: -0.8em;
}
@media (max-width: 768px) {
  .item03-1__box02--titlearea .slide-box {
    margin-left: 6%;
  }
}
.item03-1__box02--titlearea--text-en {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0 0;
  padding-right: 0.2em;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: max(3.8vw, 48px);
  z-index: 99;
}
.item03-1__box02--titlearea--text-ja {
  position: relative;
  margin-top: 0.6em;
  padding-top: 1em;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(19px, 1.4vw, 22px);
}
@media (max-width: 768px) {
  .item03-1__box02--titlearea--text-ja {
    margin-left: 6%;
  }
}
.item03-1__box02--titlearea--text-ja::before {
  content: "";
  display: block;
  width: 2em;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
.item03-1__box02--titlearea--text-en {
  padding-left: 0;
}
.item03-1__box02--titlearea--text-ja::before {
  background: #208fff;
}
.item03-1__box02--pointarea {
  position: relative;
  display: flex;
  padding: 4%;
  width: 91.935483871%;
  margin: 2rem auto 0 0;
  background: rgba(98, 124, 246, 0.15);
  z-index: 2;
  background: rgba(32, 143, 255, 0.15);
}
@media (max-width: 768px) {
  .item03-1__box02--pointarea {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  .item03-1__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
}
.item03-1__box02--pointarea::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.703125vw solid transparent;
  border-bottom: 0.703125vw solid transparent;
  border-left: 1.171875vw solid transparent;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: -1.1328125vw;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .item03-1__box02--pointarea::before {
    border-top: none;
    border-right: 3.90625vw solid transparent;
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid transparent;
    top: -4.609375vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .item03-1__box02--pointarea {
    position: relative;
  }
  .item03-1__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
  .item03-1__box02--pointarea:nth-child(odd)::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(32, 143, 255, 0.5);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.item03-1__box02--pointarea::before {
  border-left: 1.171875vw solid rgba(32, 143, 255, 0.15);
}
@media (max-width: 768px) {
  .item03-1__box02--pointarea::before {
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid rgba(32, 143, 255, 0.15);
  }
}
@media (max-width: 768px) {
  .item03-1__box02--pointarea:nth-child(even)::before {
    display: none;
  }
}
.item03-1__box02--photo {
  margin: 20% -10% 0 -6%;
}
@media (max-width: 768px) {
  .item03-1__box02--photo {
    width: 90%;
    margin: 12% auto 0;
  }
}

/*item03-2*/
.item03-2__inner01 {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 10vw;
}
@media (max-width: 768px) {
  .item03-2__inner01 {
    flex-direction: column-reverse;
    margin-top: 4rem;
  }
}

.item03-2__box01 {
  width: 42.96875%;
}
@media (max-width: 768px) {
  .item03-2__box01 {
    width: 100%;
  }
}

.item03-2__box02 {
  position: relative;
  width: 33.90625%;
  max-width: 520px;
  z-index: 10;
}
@media (max-width: 768px) {
  .item03-2__box02 {
    width: 100%;
    max-width: inherit;
  }
}
.item03-2__box02--titlearea {
  margin: 5rem 0;
  text-align: right;
  color: #208fff;
}
@media (max-width: 768px) {
  .item03-2__box02--titlearea {
    margin: 0 auto 6%;
  }
}
.item03-2__box02--titlearea .slide-box {
  margin-right: -0.8em;
}
@media (max-width: 768px) {
  .item03-2__box02--titlearea .slide-box {
    margin-right: auto;
    padding-right: 6%;
  }
}
.item03-2__box02--titlearea .slide-box:nth-child(2) {
  padding-bottom: 0.5em;
}
.item03-2__box02--titlearea--text-en {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  padding-right: 0.2em;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: max(3.8vw, 48px);
  z-index: 99;
}
.item03-2__box02--titlearea--text-ja {
  position: relative;
  margin-top: 0.6em;
  padding-top: 1em;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(19px, 1.25vw, 22px);
}
@media (max-width: 768px) {
  .item03-2__box02--titlearea--text-ja {
    margin-right: 6%;
    letter-spacing: 0.08rem;
  }
}
.item03-2__box02--titlearea--text-ja::before {
  content: "";
  display: block;
  width: 1.8em;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
}
.item03-2__box02--titlearea--text-ja::before {
  background: #208fff;
}
.item03-2__box02--pointarea {
  position: relative;
  display: flex;
  padding: 4%;
  width: 91.935483871%;
  margin: 2rem 0 0 auto;
  background: rgba(98, 124, 246, 0.15);
  z-index: 2;
  background: rgba(32, 143, 255, 0.15);
}
@media (max-width: 768px) {
  .item03-2__box02--pointarea {
    flex-direction: column;
    width: 88%;
    margin: 0 auto;
  }
  .item03-2__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
}
.item03-2__box02--pointarea::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.703125vw solid transparent;
  border-bottom: 0.703125vw solid transparent;
  border-right: 1.171875vw solid transparent;
  border-left: 0;
  position: absolute;
  top: 50%;
  left: -1.1328125vw;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .item03-2__box02--pointarea::before {
    border-top: none;
    border-right: 3.90625vw solid transparent;
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid transparent;
    top: -4.609375vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .item03-2__box02--pointarea {
    position: relative;
  }
  .item03-2__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
  .item03-2__box02--pointarea:nth-child(odd)::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(32, 143, 255, 0.5);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.item03-2__box02--pointarea::before {
  border-right: 1.171875vw solid rgba(32, 143, 255, 0.15);
}
@media (max-width: 768px) {
  .item03-2__box02--pointarea::before {
    border-right: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid rgba(32, 143, 255, 0.15);
  }
}
@media (max-width: 768px) {
  .item03-2__box02--pointarea:nth-child(even)::before {
    display: none;
  }
}
.item03-2__box02 .textarea {
  width: 75.7925072046%;
  margin: 0 0 0 auto;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .item03-2__box02 .textarea {
    width: 86%;
    margin: 6% auto 0;
    padding-bottom: 6%;
  }
}
.item03-2__box02 .textarea__icon {
  width: 24.7148288973%;
}
.item03-2__box02 .textarea__text {
  color: #000;
  font-family: "yu-gothic-pr6n", sans-serif;
  text-align: justify;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .item03-2__box02 .textarea__text {
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}
.item03-2__box02 .textarea__text span {
  color: #208fff;
}
.item03-2__box02--photo {
  margin: 28% 16% 0 -23%;
}
@media (max-width: 768px) {
  .item03-2__box02--photo {
    margin: 0 auto;
  }
}

.item03-2__inner02 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .item03-2__inner02 {
    flex-direction: column-reverse;
    gap: 0;
    margin-top: 0;
  }
}
.item03-2__inner02--photo {
  width: 35.15625%;
}
@media (max-width: 768px) {
  .item03-2__inner02--photo {
    width: 85.9375%;
    margin: 12% 0 0 auto;
  }
}

/*item04*/
.item04 {
  position: relative;
  margin-top: 9%;
  padding-top: 10%;
}
@media (max-width: 768px) {
  .item04 {
    margin-top: 19%;
    padding-top: 0;
  }
}
.item04__sidetitle {
  position: sticky;
  top: 3rem;
  left: 3vw;
  width: 2.1608789063%;
  z-index: 99;
  margin-bottom: -34%;
  padding-bottom: 34%;
}
@media (max-width: 768px) {
  .item04__sidetitle {
    display: none;
  }
}
.item04__sectiontitle {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 3rem;
  margin-top: -60%;
}
.item04__sectiontitle--textarea {
  width: 80%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .item04__sectiontitle--textarea {
    width: 86%;
  }
}
.item04__sectiontitle--textarea::before {
  content: "";
  display: block;
  width: 4.8rem;
  max-width: 8vw;
  position: absolute;
  top: 50%;
  right: calc(50vw + 2em);
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .item04__sectiontitle--textarea::before {
    top: 0;
    left: 0;
    width: 10.4310625vw;
    max-width: inherit;
    transform: none;
  }
}
.item04__sectiontitle--textarea::after {
  content: "";
  display: block;
  width: 3.90625vw;
  height: 1px;
}
@media (max-width: 768px) {
  .item04__sectiontitle--textarea::after {
    width: 3em;
    margin-top: 2%;
  }
}
.item04__sectiontitle--textarea--text-en {
  color: #000;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(18px, 1.4vw, 23px);
}
@media (max-width: 768px) {
  .item04__sectiontitle--textarea--text-en {
    margin-top: 8%;
  }
}
.item04__sectiontitle--textarea--text-ja {
  margin-top: 0.1em;
  margin-bottom: 0.2em;
  color: #000;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(30px, 3.4vw, 42px);
}
@media (max-width: 768px) {
  .item04__sectiontitle {
    margin-top: 0;
  }
}
.item04__sectiontitle--textarea::before {
  content: url(../img/item04-number.svg);
}
.item04__sectiontitle--textarea::after {
  background: #c7a154;
}
.item04 .iconarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 18.4438040346%;
}
@media (max-width: 768px) {
  .item04 .iconarea {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    margin-top: -10%;
  }
}
.item04 .iconarea__photo {
  border-radius: 50%;
}
@media (max-width: 768px) {
  .item04 .iconarea__photo {
    width: 23.4375%;
    margin-right: 0.5em;
  }
}
.item04 .iconarea span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.item04 .iconarea__name {
  margin-top: 0.5em;
  color: #000;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
}
@media (max-width: 768px) {
  .item04 .iconarea__name {
    margin-top: 0;
    font-size: 0.9rem;
  }
}
.item04 .iconarea__profession {
  margin-top: 0.25em;
  font-family: "eb-garamond", serif;
  font-size: min(1vw, 16px);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .item04 .iconarea__profession {
    margin: 0.25em auto 0.25em 0;
    font-size: 0.9rem;
  }
}
.item04 .iconarea__photo {
  border: 2px solid #c7a154;
}
.item04 .iconarea__profession {
  color: #c7a154;
}
.item04 .textarea {
  width: 75.7925072046%;
  margin: 0 0 0 auto;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .item04 .textarea {
    width: 86%;
    margin: 6% auto 0;
    padding-bottom: 6%;
  }
}
.item04 .textarea__icon {
  width: 24.7148288973%;
}
.item04 .textarea__text {
  color: #000;
  font-family: "yu-gothic-pr6n", sans-serif;
  text-align: justify;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .item04 .textarea__text {
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}
.item04 .textarea__text span {
  color: #c7a154;
}
.item04 .otheritem {
  background: rgba(199, 161, 84, 0.1);
}
.item04 .otheritem__itemtitle {
  color: #c7a154;
}
.item04 .link__main .cart__price--btn,
.item04 .otheritem__link .cart__price--btn {
  border: 1px solid #c7a154;
  background: #c7a154;
}
.item04 .otheritem .more__btn--link {
  background: #c7a154;
}

/*item04-1*/
.item04-1__inner01 {
  position: relative;
  display: flex;
  justify-content: center;
  margin-left: -6%;
}
@media (max-width: 768px) {
  .item04-1__inner01 {
    flex-direction: column-reverse;
    margin-top: 4rem;
    margin-left: auto;
  }
}

.item04-1__box01 {
  width: 42.96875%;
}
@media (max-width: 768px) {
  .item04-1__box01 {
    width: 100%;
  }
}

.item04-1__box02 {
  position: relative;
  width: 33.90625%;
  max-width: 520px;
  z-index: 10;
}
@media (max-width: 768px) {
  .item04-1__box02 {
    width: 100%;
    max-width: inherit;
  }
}
.item04-1__box02--titlearea {
  margin: 5rem 0;
  text-align: right;
  margin-top: 11rem;
  color: #c7a154;
}
@media (max-width: 768px) {
  .item04-1__box02--titlearea {
    margin: 0 auto 6%;
  }
}
.item04-1__box02--titlearea .slide-box {
  margin-right: -0.8em;
}
@media (max-width: 768px) {
  .item04-1__box02--titlearea .slide-box {
    margin-right: auto;
    padding-right: 6%;
  }
}
.item04-1__box02--titlearea .slide-box:nth-child(2) {
  padding-bottom: 0.5em;
}
.item04-1__box02--titlearea--text-en {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  padding-right: 0.2em;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: max(3.8vw, 48px);
  z-index: 99;
}
.item04-1__box02--titlearea--text-ja {
  position: relative;
  margin-top: 0.6em;
  padding-top: 1em;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(19px, 1.25vw, 22px);
}
@media (max-width: 768px) {
  .item04-1__box02--titlearea--text-ja {
    margin-right: 6%;
    letter-spacing: 0.08rem;
  }
}
.item04-1__box02--titlearea--text-ja::before {
  content: "";
  display: block;
  width: 1.8em;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
}
.item04-1__box02--titlearea--text-ja::before {
  background: #c7a154;
}
.item04-1__box02--pointarea {
  position: relative;
  display: flex;
  padding: 4%;
  width: 91.935483871%;
  margin: 2rem 0 0 auto;
  background: rgba(98, 124, 246, 0.15);
  z-index: 2;
  background: rgba(199, 161, 84, 0.15);
}
@media (max-width: 768px) {
  .item04-1__box02--pointarea {
    flex-direction: column;
    width: 88%;
    margin: 0 auto;
  }
  .item04-1__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
}
.item04-1__box02--pointarea::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.703125vw solid transparent;
  border-bottom: 0.703125vw solid transparent;
  border-right: 1.171875vw solid transparent;
  border-left: 0;
  position: absolute;
  top: 50%;
  left: -1.1328125vw;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .item04-1__box02--pointarea::before {
    border-top: none;
    border-right: 3.90625vw solid transparent;
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid transparent;
    top: -4.609375vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .item04-1__box02--pointarea {
    position: relative;
  }
  .item04-1__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
  .item04-1__box02--pointarea:nth-child(odd)::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(199, 161, 84, 0.5);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.item04-1__box02--pointarea::before {
  border-right: 1.171875vw solid rgba(199, 161, 84, 0.15);
}
@media (max-width: 768px) {
  .item04-1__box02--pointarea::before {
    border-right: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid rgba(199, 161, 84, 0.15);
  }
}
@media (max-width: 768px) {
  .item04-1__box02--pointarea:nth-child(even)::before {
    display: none;
  }
}
.item04-1__box02 .textarea {
  width: 75.7925072046%;
  margin: 0 0 0 auto;
  mix-blend-mode: multiply;
}
@media (max-width: 768px) {
  .item04-1__box02 .textarea {
    width: 86%;
    margin: 6% auto 0;
    padding-bottom: 6%;
  }
}
.item04-1__box02 .textarea__icon {
  width: 24.7148288973%;
}
.item04-1__box02 .textarea__text {
  color: #000;
  font-family: "yu-gothic-pr6n", sans-serif;
  text-align: justify;
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .item04-1__box02 .textarea__text {
    width: 100%;
    max-width: inherit;
    min-width: inherit;
    margin: 0 auto;
    font-size: 0.9rem;
  }
}
.item04-1__box02 .textarea__text span {
  color: #c7a154;
}
.item04-1__box02--photo {
  margin: 28% 16% 0 -23%;
}
@media (max-width: 768px) {
  .item04-1__box02--photo {
    margin: 0 auto;
  }
}

.item04-1__inner02 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin: -6% 16% 0 auto;
}
@media (max-width: 768px) {
  .item04-1__inner02 {
    flex-direction: column;
    margin: 0 auto;
  }
}
.item04-1__inner02--photo {
  width: 42.96875%;
}
@media (max-width: 768px) {
  .item04-1__inner02--photo {
    width: 85.9375%;
    margin: 12% 0 0 auto;
  }
}

/*item04-2*/
.item04-2 {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  margin-top: 10vw;
}
@media (max-width: 768px) {
  .item04-2 {
    flex-direction: column-reverse;
    margin-top: 4rem;
  }
}

.item04-2__box01 {
  position: relative;
  width: 46.875%;
}
@media (max-width: 768px) {
  .item04-2__box01 {
    width: 100%;
  }
}
.item04-2__box01--link {
  position: absolute;
  bottom: 0;
  left: 12%;
}
@media (max-width: 768px) {
  .item04-2__box01--link {
    position: relative;
    bottom: auto;
    left: auto;
  }
}

.item04-2__box02 {
  position: relative;
  width: 33.90625%;
  max-width: 520px;
}
@media (max-width: 768px) {
  .item04-2__box02 {
    width: 100%;
    max-width: inherit;
  }
}
.item04-2__box02--titlearea {
  margin: 5rem 0;
  text-align: left;
  margin: 8rem auto 5rem 1rem;
  color: #c7a154;
}
@media (max-width: 768px) {
  .item04-2__box02--titlearea {
    margin: 0 auto 6%;
  }
}
.item04-2__box02--titlearea .slide-box {
  margin-left: -0.8em;
}
@media (max-width: 768px) {
  .item04-2__box02--titlearea .slide-box {
    margin-left: 6%;
  }
}
.item04-2__box02--titlearea--text-en {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0 0;
  padding-right: 0.2em;
  font-family: ivymode, sans-serif;
  font-style: italic;
  font-weight: 200;
  font-size: max(3.8vw, 48px);
  z-index: 99;
}
.item04-2__box02--titlearea--text-ja {
  position: relative;
  margin-top: 0.6em;
  padding-top: 1em;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-size: clamp(19px, 1.4vw, 22px);
}
@media (max-width: 768px) {
  .item04-2__box02--titlearea--text-ja {
    margin-left: 6%;
  }
}
.item04-2__box02--titlearea--text-ja::before {
  content: "";
  display: block;
  width: 2em;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
.item04-2__box02--titlearea--text-en {
  padding-left: 0;
}
.item04-2__box02--titlearea--text-ja::before {
  background: #c7a154;
}
.item04-2__box02--pointarea {
  position: relative;
  display: flex;
  padding: 4%;
  width: 91.935483871%;
  margin: 2rem auto 0 0;
  background: rgba(98, 124, 246, 0.15);
  z-index: 2;
  background: rgba(199, 161, 84, 0.15);
}
@media (max-width: 768px) {
  .item04-2__box02--pointarea {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  .item04-2__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
}
.item04-2__box02--pointarea::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.703125vw solid transparent;
  border-bottom: 0.703125vw solid transparent;
  border-left: 1.171875vw solid transparent;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: -1.1328125vw;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .item04-2__box02--pointarea::before {
    border-top: none;
    border-right: 3.90625vw solid transparent;
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid transparent;
    top: -4.609375vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media (max-width: 768px) {
  .item04-2__box02--pointarea {
    position: relative;
  }
  .item04-2__box02--pointarea:nth-child(odd) {
    margin-top: 10%;
  }
  .item04-2__box02--pointarea:nth-child(odd)::after {
    content: "";
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(199, 161, 84, 0.5);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.item04-2__box02--pointarea::before {
  border-left: 1.171875vw solid rgba(199, 161, 84, 0.15);
}
@media (max-width: 768px) {
  .item04-2__box02--pointarea::before {
    border-left: 3.90625vw solid transparent;
    border-bottom: 4.6875vw solid rgba(199, 161, 84, 0.15);
  }
}
@media (max-width: 768px) {
  .item04-2__box02--pointarea:nth-child(even)::before {
    display: none;
  }
}
.item04-2__box02--photo {
  margin: 20% -4% 0 -14%;
}
@media (max-width: 768px) {
  .item04-2__box02--photo {
    width: 85.9375%;
    margin: 12% 0 0 auto;
  }
}

/*banner*/
.banner {
  width: 40%;
  min-width: 670px;
  margin: 10vw auto 0;
}
@media (max-width: 768px) {
  .banner {
    width: 80%;
    min-width: auto;
  }
}
.banner-item {
  display: block;
  margin-top: 3%;
  transition: 0.6s ease-in-out;
}
.banner-item:not(:nth-child(1)) {
  border: 1px solid #ccc;
}
@media (max-width: 768px) {
  .banner-item:not(:nth-child(1)) {
    border: 1px solid #000;
  }
}
.banner-item:hover {
  opacity: 0.8;
}
.banner-item:not(:nth-child(1)):hover {
  border-color: #000;
}
@media (max-width: 768px) {
  .banner-item {
    margin-top: 6%;
  }
}
.banner-staff {
  margin: 6% auto 10%;
  font-size: 13px;
  font-family: "EB Garamond", serif;
  letter-spacing: 1px;
  line-height: 2.5em;
  text-align: center;
}
@media (max-width: 768px) {
  .banner-staff {
    margin-top: 10%;
    font-size: 0.75rem;
  }
}

/*footer*/
.footer {
  padding-bottom: 2%;
  text-align: center;
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 18%;
  }
}
.footer-sns {
  display: block;
  width: 2.5%;
  min-width: 30px;
  margin: 4% auto 0;
}
@media (max-width: 768px) {
  .footer-sns {
    margin-top: 10%;
  }
}
.footer-logo {
  display: block;
  width: 120px;
  margin: 3% auto 0;
}
@media (max-width: 768px) {
  .footer-logo {
    margin-top: 6%;
  }
}
.footer-copyright {
  font-family: "Helvetica", serif;
  font-size: 10px;
  letter-spacing: 0.02em;
  margin: 34px 0 0;
}

/*sidenav*/
.sidenav {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
}
.sidenav-list {
  display: flex;
  flex-direction: column;
  margin-top: -0.546875vw;
}
.sidenav-list-item {
  width: 3.90625vw;
  min-width: 60px;
  margin-top: 0.546875vw;
}
.sidenav-list-item a {
  transition: 0.6S ease-in-out;
}
.sidenav-list-item a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .sidenav {
    display: none;
  }
}

/*pagetop*/
.pagetop {
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: 35px;
  z-index: 99;
}
@media (max-width: 768px) {
  .pagetop {
    display: none;
  }
}

/*footnav*/
.footnav {
  display: none;
}
@media (max-width: 768px) {
  .footnav {
    position: fixed;
    bottom: 0;
    left: 0;
    display: block;
    background: #fff;
    z-index: 9999;
  }
}
.footnav-list {
  display: flex;
  align-items: flex-end;
}/*# sourceMappingURL=style.css.map */