@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%; /* iphoneで文字サイズが変わる対策 */
  -ms-text-size-adjust: 100%;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

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

.clearfix:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px; /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

.both {
  clear: both;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* ここからWordpress用初期設定 */
/* 本文中の画像 */
article img {
  border: none;
  max-width: 100%;
  height: auto;
}

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

         COMMON

-----------------------*/
/* リセット */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

a:hover,
a:focus {
  opacity: 0.8;
  text-decoration: none;
  color: inherit;
}

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

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

.pc {
  display: block;
}

.sp {
  display: none;
}

.text-c {
  text-align: center;
}

.text-l {
  text-align: left;
}

.text-r {
  text-align: right;
}

.text-j {
  text-align: justify;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input,
button,
textarea,
select,
.entry input[type=url],
input[type=email],
.entry input[type=text] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

:root {
  --mainColor01: #525C8A;
  --mainColor02: #978870;
  --mainColor03: #696764;
  --mainColor04: #7298C0;
  --baseColor: #323232;
  --colorW: #fff;
  --subColor: #EDCA92;
  --accentColor: #99C5FF;
  --time: "Times New Roman", serif;
}

html {
  scroll-padding-top: 12rem;
  font-size: 0.5208333333vw;
}
@media only screen and (max-width: 559px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  width: 100%;
  color: var(--baseColor);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  background-image: url(../images/bg.webp);
  background-repeat: repeat-y;
}
@media only screen and (max-width: 559px) {
  body {
    font-size: 1.4rem;
  }
}

main {
  overflow: hidden;
}

.pc {
  display: block;
}
@media only screen and (max-width: 559px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 559px) {
  .sp {
    display: block;
  }
}

.primary-ttl {
  text-align: center;
  font-size: 3.8rem;
  font-weight: 600;
}
@media only screen and (max-width: 559px) {
  .primary-ttl {
    font-size: 2rem;
  }
}
.primary-ttl__area {
  text-align: center;
}
.primary-ttl__img {
  width: 11.6rem;
  height: 3.8rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 559px) {
  .primary-ttl__img {
    width: 8rem;
    height: auto;
  }
}

.o-card {
  display: grid;
}
.o-card--2wrap {
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
}
.o-card--3wrap {
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media only screen and (max-width: 559px) {
  .o-card--3wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.o-card--4wrap {
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 559px) {
  .o-card--4wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.o-card--5wrap {
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media only screen and (max-width: 559px) {
  .o-card--5wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.o-flex {
  display: flex;
  gap: 6rem;
}
@media only screen and (max-width: 559px) {
  .o-flex {
    flex-direction: column;
    gap: 3rem;
  }
}
.o-flex--c {
  justify-content: center;
}
.o-flex--b {
  justify-content: space-between;
}
.o-flex--e {
  justify-content: flex-end;
}
@media only screen and (max-width: 559px) {
  .o-flex--rev {
    flex-direction: column-reverse;
  }
}
.o-flex__item {
  width: calc((100% - 6rem) / 2);
}
@media only screen and (max-width: 559px) {
  .o-flex__item {
    width: 100%;
  }
}
.o-flex__item--1 {
  width: calc((100% - 6rem) / 3);
}
.o-flex__item--2 {
  width: calc((100% - 6rem) / 3 * 2);
}

.l-hdr {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .l-hdr {
    top: 0.8rem;
    left: 0.8rem;
  }
}
.l-hdr__logoimg {
  width: 22.1rem;
  height: 4.8rem;
}
@media only screen and (max-width: 768px) {
  .l-hdr__logoimg {
    width: 11rem;
    height: 2.4rem;
  }
}

.l-ftr {
  padding: 16rem 0 9rem;
}

@media only screen and (max-width: 768px) {
  .l-ftr {
    padding: 8rem 0 3.5rem;
  }
}
.l-ftr__wrap {
  width: 80rem;
  margin-inline: auto;
}

@media only screen and (max-width: 768px) {
  .l-ftr__wrap {
    width: 32rem;
  }
}
.l-ftr__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 4.8rem;
  padding-bottom: 4.8rem;
  border-bottom: 1px solid;
}

@media only screen and (max-width: 559px) {
  .l-ftr__list {
    gap: 4rem;
    margin-bottom: 6.5rem;
    padding-bottom: 5.5rem;
  }
}
.l-ftr__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60rem;
  height: 8rem;
  font-size: 2rem;
  border: 1px solid;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .l-ftr__link {
    width: 28rem;
    font-size: 1.4rem;
    height: 6.4rem;
  }
}
.l-ftr__link::after {
  content: "";
  background: url(../images/next.webp) no-repeat center center/contain;
  width: 1.2rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
}

@media only screen and (max-width: 768px) {
  .l-ftr__link::after {
    width: 0.7rem;
    height: 1.4rem;
    right: 1.5rem;
  }
}
.l-ftr__link.time {
  font-size: 2.1rem;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 768px) {
  .l-ftr__link.time {
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    line-height: 2;
  }
}
@media only screen and (max-width: 768px) {
  .l-ftr__link--large {
    height: 7.6rem;
  }
}
.l-ftr__link span {
  color: var(--mainColor04);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 768px) {
  .l-ftr__link span {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-ftr__banner img {
    width: 28rem;
    height: auto;
  }
}
.l-ftr__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4.8rem;
}

@media only screen and (max-width: 559px) {
  .l-ftr__sns {
    gap: 4.3rem;
    margin-bottom: 6.3rem;
  }
}
.l-ftr__snsitem {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1px solid #b9b9b9;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .l-ftr__snsitem {
    width: 6.4rem;
    height: 6.4rem;
  }
}
.l-ftr__snsimg--01 {
  width: 3.2rem;
  height: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .l-ftr__snsimg--01 {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.l-ftr__snsimg--02 {
  width: 3.3rem;
  height: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .l-ftr__snsimg--02 {
    width: 2.6rem;
    height: 2.5rem;
  }
}
.l-ftr__logo {
  margin-bottom: 1.6rem;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .l-ftr__logo {
    margin-bottom: 2.1rem;
  }
}
.l-ftr__logoimg {
  width: 18.7rem;
  height: 4rem;
}

@media only screen and (max-width: 768px) {
  .l-ftr__logoimg {
    width: 18.7rem;
    height: 4rem;
  }
}
.l-ftr__copy small {
  font-size: 1rem;
  font-family: var(--time);
  display: block;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .l-ftr__copy small {
    font-size: 0.8rem;
  }
}
.l-ftr__flex {
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin-bottom: 10rem;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-ftr__flex {
    gap: 2.2rem;
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 768px) {
  .l-ftr__flex a {
    text-align: center;
  }
}
.l-ftr__banner {
  width: 96rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .l-ftr__banner {
    width: 28rem;
  }
}

.floating {
  position: fixed;
  top: 0;
  right: 7.8rem;
  box-sizing: border-box;
  height: auto;
  padding-block: 3rem;
  opacity: 0;
  transition: opacity 0.5s;
}
@media only screen and (max-width: 768px) {
  .floating {
    display: none;
  }
}
.floating.is-visible {
  opacity: 1;
}
.floating__list {
  justify-content: center;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  height: 100%;
  list-style: none;
}
.floating__item {
  display: grid;
  place-items: center;
  width: auto;
  max-height: none;
  line-height: 0;
}
.floating__item img {
  width: 12.4rem;
  height: auto;
}

@media only screen and (max-width: 768px) {
  .hero {
    height: 66.7rem;
  }
}
.hero__visu {
  position: relative;
  height: 108rem;
  overflow: hidden;
  background-color: var(--colorW);
  opacity: 0;
}
.hero__visu::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  width: 2px;
  height: 140%;
  background: transparent;
  transform: translateX(-50%) rotate(15deg);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.hero__visu.is-show::after {
  opacity: 1;
  transition: opacity 0.25s ease;
}
.hero__visuimg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__masuku {
  position: absolute;
  inset: 0;
  background-color: var(--colorW);
  z-index: 2;
  pointer-events: none;
}
.hero__cont {
  position: absolute;
  top: 25.5rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .hero__cont {
    top: 38.5rem;
    width: 100%;
  }
}
.hero__line {
  position: absolute;
  height: 10.3rem;
  top: 4.5rem;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .hero__line {
    height: 3.9rem;
    top: 1.7rem;
  }
}
.hero__line--before {
  width: 20.2rem;
  left: 17rem;
  background: url(../images/hero__bk01.webp) no-repeat center center/contain;
}
@media only screen and (max-width: 768px) {
  .hero__line--before {
    width: 10.2rem;
    background: url(../images/hero__bk01_sp.webp) no-repeat center center/contain;
    left: 18rem;
  }
}
.hero__line--after {
  width: 26.6rem;
  right: 24rem;
  background: url(../images/hero__bk02.webp) no-repeat center center/contain;
}
@media only screen and (max-width: 768px) {
  .hero__line--after {
    width: 7.8rem;
    right: 23.4rem;
    background: url(../images/hero__bk02_sp.webp) no-repeat center center/contain;
  }
}
.hero__textimg {
  width: 96.9rem;
  height: 58.1rem;
}
@media only screen and (max-width: 768px) {
  .hero__textimg {
    width: 37.5rem;
    height: auto;
  }
}
.hero__switch {
  position: relative;
}
.hero__switchimg {
  position: absolute;
  inset: 0;
  width: 37.5rem;
  height: 66.7rem;
  opacity: 0;
}
.hero__switchimg:first-child {
  opacity: 1;
}

.summary {
  padding: 9.6rem 0 16rem;
}
@media only screen and (max-width: 768px) {
  .summary {
    padding: 6.4rem 0 10.4rem;
  }
}
.summary__wrap {
  width: 120rem;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .summary__wrap {
    width: 100%;
    padding-inline: 1.8rem;
  }
}
.summary__ttl {
  text-align: center;
  margin-bottom: 7.5rem;
}
@media only screen and (max-width: 768px) {
  .summary__ttl {
    margin-bottom: 6rem;
  }
}
.summary__ttl img {
  width: 59rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .summary__ttl img {
    width: 32rem;
  }
}
.summary__subttl {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 4.5rem;
}
@media only screen and (max-width: 768px) {
  .summary__subttl {
    font-size: 1.8rem;
    margin-bottom: 3.5rem;
  }
}
.summary__text {
  text-align: center;
  font-size: 2.2rem;
  line-height: 2.5454545455;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .summary__text {
    font-size: 1.4rem;
    line-height: 2.2;
  }
}
.summary__text span {
  font-size: 2.6rem;
  line-height: 2.1538461538;
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .summary__text span {
    font-size: 1.6rem;
  }
}
.summary__text span::after {
  content: "";
  width: 100%;
  height: 1.6rem;
  background: rgba(237, 202, 146, 0.5);
  position: absolute;
  left: 0;
  bottom: 0.7rem;
  z-index: -1;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .summary__text span::after {
    height: 0.8rem;
  }
}

.style {
  padding-bottom: 12rem;
}
@media only screen and (max-width: 768px) {
  .style {
    padding-bottom: 8rem;
  }
}
.style__wrap {
  width: 123.6rem;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .style__wrap {
    width: 100%;
    padding-inline: 3.4rem;
  }
}
.style__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8.8rem;
}
@media only screen and (max-width: 768px) {
  .style__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0rem 3rem;
  }
}
.style__ttl {
  text-align: center;
}
.style figure {
  position: relative;
  margin-bottom: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .style figure {
    margin-bottom: 2rem;
  }
}
.style figure::after {
  content: "";
  border: 1px solid #f36;
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .style figure::after {
    top: 0.5rem;
    left: 0rem;
  }
}
.style__item figure img {
  width: 24rem;
  height: 42rem;
}
@media only screen and (max-width: 768px) {
  .style__item figure img {
    width: 13.3rem;
    height: auto;
  }
}
.style__item:nth-child(even) {
  margin-top: 9.6rem;
}
@media only screen and (max-width: 768px) {
  .style__item:nth-child(even) {
    margin-top: 2.4rem;
  }
}
.style__item:nth-child(1) .style__ttl img {
  width: 17.4rem;
  height: 7.8rem;
}
@media only screen and (max-width: 768px) {
  .style__item:nth-child(1) .style__ttl img {
    width: 9.7rem;
    height: 4.2rem;
  }
}
.style__item:nth-child(1) figure::after {
  border: 1px solid var(--mainColor01);
}
.style__item:nth-child(2) .style__ttl img {
  width: 21.2rem;
  height: 7.9rem;
}
@media only screen and (max-width: 768px) {
  .style__item:nth-child(2) .style__ttl img {
    width: 11.8rem;
    height: 4.4rem;
  }
}
.style__item:nth-child(2) figure::after {
  border: 1px solid var(--mainColor02);
}
.style__item:nth-child(3) .style__ttl img {
  width: 24.8rem;
  height: 11.3rem;
}
@media only screen and (max-width: 768px) {
  .style__item:nth-child(3) .style__ttl img {
    width: 13.8rem;
    height: 6.3rem;
  }
}
.style__item:nth-child(3) figure::after {
  border: 1px solid var(--mainColor03);
}
.style__item:nth-child(4) .style__ttl img {
  width: 17.4rem;
  height: 6.9rem;
}
@media only screen and (max-width: 768px) {
  .style__item:nth-child(4) .style__ttl img {
    width: 9.7rem;
    height: 3.8rem;
  }
}
.style__item:nth-child(4) figure::after {
  border: 1px solid var(--mainColor04);
}

.point {
  padding: 7rem 0 12rem;
  background: #f8f7f6;
  height: 111.7rem;
}
@media only screen and (max-width: 559px) {
  .point {
    padding: 6.8rem 0 6.4rem;
    height: auto;
  }
}
.point__ttl {
  text-align: center;
  margin-bottom: 14.7rem;
}
@media only screen and (max-width: 768px) {
  .point__ttl {
    margin-bottom: 4rem;
  }
}
.point__ttl img {
  width: 38.2rem;
  height: 11rem;
}
@media only screen and (max-width: 768px) {
  .point__ttl img {
    width: 22.9rem;
    height: 6.6rem;
  }
}
.point__visu {
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .point__visu {
    margin-bottom: 2.5rem;
  }
}
.point__visuimg {
  width: 78rem;
  height: 64.8rem;
}
@media only screen and (max-width: 768px) {
  .point__visuimg {
    width: 32.1rem;
    height: auto;
  }
}
.point__subimg {
  position: absolute;
  top: 14rem;
  right: 13rem;
  width: 16rem;
  height: 16rem;
}
@media only screen and (max-width: 768px) {
  .point__subimg {
    width: 8rem;
    height: 8rem;
    position: relative;
    top: inherit;
    right: 1rem;
    bottom: -0.6rem;
  }
}
.point__item {
  text-align: center;
  width: fit-content;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .point__item {
    text-align: left;
    display: flex;
    gap: 1.6rem;
    align-items: center;
    width: 100%;
  }
}
.point__number {
  margin-bottom: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .point__number {
    flex: 0 0 4.6rem;
    margin-bottom: 0;
  }
}
.point__number img {
  width: 4.6rem;
  height: 4.6rem;
}
.point__text {
  padding-bottom: 1.6rem;
  width: fit-content;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .point__text {
    font-size: 1.4rem;
    border-bottom: 1px solid;
    padding-bottom: 1rem;
    flex: 1;
    line-height: 1.8;
    position: relative;
    top: 0.5rem;
  }
}
.point__wrap {
  width: 116.8rem;
  margin-inline: auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .point__wrap {
    width: 100%;
    padding-inline: 3.6rem;
  }
}
.point__item {
  --line-before: 0;
  --line-after: 0;
}
.point__item::before {
  position: absolute;
  content: "";
  width: 100%;
  background: var(--baseColor);
  height: 1px;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .point__item::before {
    display: none;
  }
}
.point__item::after {
  content: "";
  height: 1px;
  position: absolute;
  background: var(--baseColor);
}
@media only screen and (max-width: 768px) {
  .point__item::after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .point__item:not(:last-child) {
    margin-bottom: 1.7rem;
  }
}
.point__item:nth-child(1) {
  position: absolute;
  top: 25.9rem;
  left: -3.5rem;
}
@media only screen and (max-width: 768px) {
  .point__item:nth-child(1) {
    position: relative;
    top: inherit;
    left: inherit;
  }
}
.point__item:nth-child(1)::after {
  width: 8rem;
  bottom: 0rem;
  right: -8rem;
  transform: rotate(21deg);
}
.point__item:nth-child(2) {
  position: absolute;
  top: 62%;
  left: -5rem;
}
@media only screen and (max-width: 768px) {
  .point__item:nth-child(2) {
    position: relative;
    top: inherit;
    left: inherit;
  }
}
.point__item:nth-child(2)::after {
  width: 6rem;
  bottom: 0rem;
  right: -6rem;
  transform: rotate(330deg);
}
.point__item:nth-child(3) {
  position: absolute;
  top: 88.3%;
  left: 14rem;
}
@media only screen and (max-width: 768px) {
  .point__item:nth-child(3) {
    position: relative;
    top: inherit;
    left: inherit;
  }
}
.point__item:nth-child(3)::after {
  width: 16.5rem;
  bottom: 0rem;
  right: -16.5rem;
  transform: rotate(306deg);
}
.point__item:nth-child(4) {
  position: absolute;
  top: 19.2%;
  right: 33.7%;
}
@media only screen and (max-width: 768px) {
  .point__item:nth-child(4) {
    position: relative;
    top: inherit;
    right: inherit;
  }
}
.point__item:nth-child(5) {
  position: absolute;
  top: 27%;
  right: 10.2%;
}
@media only screen and (max-width: 768px) {
  .point__item:nth-child(5) {
    position: relative;
    top: inherit;
    right: inherit;
  }
}
.point__item:nth-child(5)::after {
  width: 5rem;
  bottom: 0rem;
  left: -5rem;
  transform: rotate(312deg);
}
.point__item:nth-child(6) {
  position: absolute;
  top: 67%;
  right: 5rem;
}
@media only screen and (max-width: 768px) {
  .point__item:nth-child(6) {
    position: relative;
    top: inherit;
    right: inherit;
  }
}
.point__item:nth-child(6)::after {
  width: 16rem;
  bottom: 0rem;
  left: -16rem;
  transform: rotate(42deg);
}
.point__item::before {
  transform: scaleX(var(--line-before));
  transform-origin: left center;
}
.point__item::after {
  transform-origin: left center;
}
.point__item:nth-child(1)::after {
  transform: rotate(21deg) scaleX(var(--line-after));
}
.point__item:nth-child(2)::after {
  transform: rotate(330deg) scaleX(var(--line-after));
}
.point__item:nth-child(3)::after {
  transform: rotate(306deg) scaleX(var(--line-after));
}
.point__item:nth-child(5)::after {
  transform: rotate(312deg) scaleX(var(--line-after));
}
.point__item:nth-child(6)::after {
  transform: rotate(42deg) scaleX(var(--line-after));
}
.point__item:nth-child(5)::before, .point__item:nth-child(6)::before {
  transform-origin: right center;
}
.point__item:nth-child(5)::after, .point__item:nth-child(6)::after {
  transform-origin: right center;
}

.color__ttl {
  text-align: center;
  margin-bottom: 8.4rem;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .color__ttl {
    margin-bottom: 3.2rem;
  }
}
.color__ttl img {
  width: 38.8rem;
  height: 16.9rem;
}
@media only screen and (max-width: 768px) {
  .color__ttl img {
    width: 24.6rem;
    height: auto;
  }
}
.color__text {
  text-align: center;
  font-size: 2.4rem;
  line-height: 2.3333333333;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 768px) {
  .color__text {
    font-size: 1.4rem;
  }
}

.color01 {
  padding-top: 12rem;
  border-right: 1px solid var(--mainColor01);
  border-left: 1px solid var(--mainColor01);
  margin-inline: 4.8rem;
  padding-bottom: 16rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .color01 {
    margin-inline: 0.8rem;
    padding-bottom: 6.4rem;
    padding-top: 6.4rem;
  }
}
.color01__tag {
  position: absolute;
  top: 21rem;
  left: -5rem;
}
@media only screen and (max-width: 768px) {
  .color01__tag {
    display: none;
  }
}
.color01__tagimg {
  width: 8rem;
  height: 45.4rem;
}
.color01__flex {
  display: flex;
  justify-content: center;
  gap: 9.6rem;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 559px) {
  .color01__flex {
    flex-direction: column;
    padding-inline: 1rem;
    gap: 7.2rem;
    margin-bottom: 6.4rem;
  }
}
.color01__figure {
  margin-bottom: 6.5rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .color01__figure {
    margin-bottom: 2.8rem;
  }
}
.color01__figuretext {
  position: absolute;
  bottom: 0;
  left: 1.6rem;
  width: 42rem;
  height: 7.2rem;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .color01__figuretext {
    width: 24.4rem;
    height: auto;
    left: 0.9rem;
  }
}
.color01__figuretext--right {
  width: 45.6rem;
  left: inherit;
  right: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .color01__figuretext--right {
    width: 27.8rem;
    height: auto;
    right: 0.9rem;
  }
}
.color01__img {
  width: 56rem;
  height: auto;
}
.color01__item {
  position: relative;
}
.color01__item:last-child {
  padding-top: 14.6rem;
}
@media only screen and (max-width: 768px) {
  .color01__item:last-child {
    padding-top: 0;
  }
}
.color01__text {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 768px) {
  .color01__text {
    margin-bottom: 4rem;
  }
}
.color01 .detail__link {
  background-color: var(--mainColor01);
}
.color01 .detail__link--border {
  background-color: var(--colorW);
  border-color: var(--mainColor01);
  color: var(--mainColor01);
}
.color01 .detail__link--border:hover {
  background-color: var(--mainColor01);
  color: var(--colorW);
}
.color01 .detail__wrap {
  margin-inline: auto;
}
.color01__holder {
  background-color: var(--mainColor01);
  width: 144rem;
  margin-inline: auto;
  padding: 8rem 0;
}
@media only screen and (max-width: 768px) {
  .color01__holder {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 4rem 0 7rem;
  }
}
.color01__secflex {
  display: flex;
  justify-content: flex-end;
  gap: 8rem;
  width: 101.5rem;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .color01__secflex {
    width: 100%;
    gap: 8.1rem;
    flex-direction: column;
  }
}
.color01__secfigure {
  position: relative;
  margin-bottom: 4.5rem;
}
@media only screen and (max-width: 768px) {
  .color01__secfigure {
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 3.2rem;
  }
}
.color01__secfigure::before, .color01__secfigure::after {
  content: "";
  width: 7.4rem;
  height: 7.4rem;
}
@media only screen and (max-width: 768px) {
  .color01__secfigure::before, .color01__secfigure::after {
    width: 4.7rem;
    height: 4.7rem;
  }
}
.color01__secfigure::before {
  border-top: 1px solid white;
  border-left: 1px solid white;
  position: absolute;
  top: -1.3rem;
  left: -1.3rem;
}
@media only screen and (max-width: 768px) {
  .color01__secfigure::before {
    top: -0.8rem;
    left: -0.8rem;
  }
}
.color01__secfigure::after {
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  position: absolute;
  bottom: -1.3rem;
  right: 1.3rem;
}
@media only screen and (max-width: 768px) {
  .color01__secfigure::after {
    bottom: -0.8rem;
    right: -0.8rem;
  }
}
.color01__secttl {
  text-align: center;
  color: var(--colorW);
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 5.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .color01__secttl {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin-bottom: 4rem;
  }
}
.color01__sectext {
  position: absolute;
  width: 4rem;
  height: 20.3rem;
  bottom: 0;
  left: -4.8rem;
}
@media only screen and (max-width: 768px) {
  .color01__sectext {
    width: 3.2rem;
    height: 16.2rem;
    left: -4rem;
  }
}
.color01__sectext--right {
  bottom: inherit;
  top: 0;
  left: inherit;
  right: -2.8rem;
}
@media only screen and (max-width: 768px) {
  .color01__sectext--right {
    right: -4rem;
  }
}
.color01__secimg {
  width: 42.2rem;
  height: 52.8rem;
}
@media only screen and (max-width: 768px) {
  .color01__secimg {
    width: 28.2rem;
    height: 35.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .color01__secitem {
    text-align: center;
  }
}
.color01__sec .detail {
  color: var(--colorW);
}
.color01__sec .detail__link {
  background-color: var(--colorW);
  color: var(--mainColor01);
}
.color01__sec .detail__link--border {
  border-color: var(--colorW);
  color: var(--colorW);
  background-color: var(--mainColor01);
}
.color01__sec .color__ttl {
  margin-bottom: 9.3rem;
}
@media only screen and (max-width: 768px) {
  .color01__sec .color__ttl {
    margin-bottom: 4.8rem;
  }
}
.color01__sec .color__ttl img {
  width: 32.5rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .color01__sec .color__ttl img {
    width: 19.5rem;
  }
}

.color02 {
  background: #f8f7f6;
  padding: 13.1rem 0 15.9rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .color02 {
    padding: 6.4rem 0;
  }
}
.color02__tag {
  position: absolute;
  top: 20rem;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .color02__tag {
    display: none;
  }
}
.color02__tagimg {
  width: 8rem;
  height: 47.6rem;
}
.color02__wrap {
  width: 139.7rem;
  margin-left: 18rem;
}
@media only screen and (max-width: 768px) {
  .color02__wrap {
    width: 100%;
    margin-left: 0;
    gap: 3rem;
  }
}
.color02__flex {
  display: flex;
  gap: 14.5rem;
  margin-bottom: 10.8rem;
}
@media only screen and (max-width: 768px) {
  .color02__flex {
    flex-direction: column;
    gap: 3.2rem;
    margin-bottom: 6.4rem;
  }
}
.color02__figure {
  position: relative;
}
.color02__figure figure img {
  width: 67.2rem;
  height: 96rem;
}
@media only screen and (max-width: 768px) {
  .color02__figure figure img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .color02__cont {
    padding-inline: 2.8rem;
  }
}
.color02__onoff {
  position: absolute;
  right: 1.6rem;
  bottom: 0;
  width: 45.6rem;
  height: 7.2rem;
}
@media only screen and (max-width: 768px) {
  .color02__onoff {
    width: 25.4rem;
    height: 4rem;
    right: 0.9rem;
  }
}
.color02__ttl {
  margin-bottom: 11rem;
  padding-top: 11.6rem;
}
@media only screen and (max-width: 768px) {
  .color02__ttl {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 0;
  }
}
.color02__ttlimg {
  width: 47.3rem;
  height: 17.7rem;
}
@media only screen and (max-width: 768px) {
  .color02__ttlimg {
    width: 28.4rem;
    height: auto;
  }
}
.color02__text {
  font-size: 2.4rem;
  line-height: 2.3333333333;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 7.3rem;
}
@media only screen and (max-width: 768px) {
  .color02__text {
    font-size: 1.4rem;
    margin-bottom: 4rem;
  }
}
.color02 .detail__link {
  background-color: var(--mainColor02);
}
.color02 .detail__link--border {
  background-color: transparent;
  border-color: var(--mainColor02);
  color: var(--mainColor02);
}
.color02 .detail__link--border:hover {
  background-color: var(--mainColor02);
  color: transparent;
}
.color02__box {
  position: relative;
  margin-bottom: 9.6rem;
}
@media only screen and (max-width: 768px) {
  .color02__box {
    margin-bottom: 8rem;
  }
}
.color02__boxcont {
  position: absolute;
  left: 35rem;
  top: 21rem;
}
@media only screen and (max-width: 768px) {
  .color02__boxcont {
    top: 1.6rem;
    left: 0rem;
  }
}
.color02__boxttl {
  margin-bottom: 6.3rem;
}
@media only screen and (max-width: 768px) {
  .color02__boxttl {
    margin-bottom: 1.2rem;
  }
}
.color02__boxttlimg {
  width: 64.3rem;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .color02__boxttlimg {
    width: 30.5rem;
  }
}
.color02__boxtext {
  font-size: 2.4rem;
  line-height: 2.3333333333;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--colorW);
}
@media only screen and (max-width: 768px) {
  .color02__boxtext {
    font-size: 1.4rem;
    position: relative;
    left: 1rem;
    line-height: 1.9;
  }
}
.color02__sec {
  display: flex;
  justify-content: center;
  gap: 13.3rem;
}
@media only screen and (max-width: 768px) {
  .color02__sec {
    flex-direction: column;
    gap: 7.6rem;
    padding-inline: 2.7rem;
  }
}
.color02__sectext {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
}
.color02__secttl {
  margin-bottom: 5rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .color02__secttl {
    margin-bottom: 4.2rem;
  }
}
.color02__secttlimg--left {
  width: 24.6rem;
  height: 8.1rem;
}
@media only screen and (max-width: 768px) {
  .color02__secttlimg--left {
    width: 14.8rem;
    height: 4.8rem;
  }
}
.color02__secttlimg--right {
  width: 43.3rem;
  height: 8.7rem;
}
@media only screen and (max-width: 768px) {
  .color02__secttlimg--right {
    width: 26rem;
    height: 5.2rem;
  }
}
.color02__secitem:last-child {
  padding-top: 15.4rem;
}
@media only screen and (max-width: 768px) {
  .color02__secitem:last-child {
    padding-top: 0;
  }
}
.color02__secfigure {
  margin-bottom: 4.5rem;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .color02__secfigure {
    text-align: center;
    margin-bottom: 4.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .color02__secfigure figure {
    width: fit-content;
    text-align: center;
    margin-inline: auto;
  }
}
.color02__secfigure::before, .color02__secfigure::after {
  content: "";
  width: 7.4rem;
  height: 7.4rem;
}
@media only screen and (max-width: 768px) {
  .color02__secfigure::before, .color02__secfigure::after {
    width: 4.7rem;
    height: 4.7rem;
  }
}
.color02__secfigure::before {
  border-top: 1px solid var(--mainColor02);
  border-left: 1px solid var(--mainColor02);
  position: absolute;
  top: -1.3rem;
  left: -1.3rem;
}
@media only screen and (max-width: 768px) {
  .color02__secfigure::before {
    top: -1rem;
    left: 1rem;
  }
}
.color02__secfigure::after {
  border-bottom: 1px solid var(--mainColor02);
  border-right: 1px solid var(--mainColor02);
  position: absolute;
  bottom: -1.3rem;
  right: 1.3rem;
}
@media only screen and (max-width: 768px) {
  .color02__secfigure::after {
    bottom: -1rem;
    right: 1rem;
  }
}
.color02__secstyle {
  position: absolute;
  width: 3.2rem;
  height: 22.9rem;
  bottom: 0;
  left: -4.8rem;
}
@media only screen and (max-width: 768px) {
  .color02__secstyle {
    width: 2.4rem;
    height: 17.2rem;
    left: -1.4rem;
  }
}
.color02__secstyle--right {
  bottom: inherit;
  top: 0;
  left: inherit;
  right: -2.8rem;
  width: 4rem;
  height: 20.3rem;
}
@media only screen and (max-width: 768px) {
  .color02__secstyle--right {
    width: 3.2rem;
    height: 16.2rem;
    right: -2.2rem;
  }
}
.color02__secimg {
  width: 42.2rem;
  height: 52.8rem;
}
@media only screen and (max-width: 768px) {
  .color02__secimg {
    width: 28.2rem;
    height: 35.2rem;
  }
}
.color02__sectext {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 5.6rem;
}
@media only screen and (max-width: 768px) {
  .color02__sectext {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin-bottom: 4rem;
  }
}

.color03 {
  position: relative;
  padding-bottom: 15.9rem;
  border-right: 1px solid var(--mainColor03);
  border-left: 1px solid var(--mainColor03);
  margin-inline: 4.8rem;
}
@media only screen and (max-width: 768px) {
  .color03 {
    margin-inline: 0.8rem;
    padding-bottom: 7.2rem;
  }
}
.color03__tag {
  position: absolute;
  top: 67rem;
  left: -4.9rem;
}
@media only screen and (max-width: 768px) {
  .color03__tag {
    display: none;
  }
}
.color03__tagimg {
  width: 8rem;
  height: 60.5rem;
}
.color03__ttlwrap {
  background-color: var(--mainColor03);
  padding: 10rem 0 19rem;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  padding: 10rem 0 19.6rem;
}
@media only screen and (max-width: 768px) {
  .color03__ttlwrap {
    padding: 6.3rem 0 14rem;
  }
}
.color03__ttl {
  text-align: center;
}
.color03__ttl img {
  width: 79.7rem;
  height: 17.7rem;
}
@media only screen and (max-width: 768px) {
  .color03__ttl img {
    width: 32.3rem;
    height: 7.2rem;
  }
}
.color03__flex {
  display: flex;
  justify-content: flex-start;
  gap: 5.6rem;
  margin-top: -11rem;
  margin-bottom: 8.8rem;
  margin-left: 34rem;
}
@media only screen and (max-width: 768px) {
  .color03__flex {
    gap: 2.3rem;
    margin-top: -9.3rem;
    flex-direction: column;
    margin-bottom: 9rem;
    justify-content: center;
    margin-left: 0;
  }
}
.color03 .tate {
  color: var(--mainColor03);
  background-color: var(--colorW);
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: absolute;
  font-size: 2.4rem;
  line-height: 1.1666666667;
  letter-spacing: 0.14em;
  padding: 2rem 1rem;
}
@media only screen and (max-width: 768px) {
  .color03 .tate {
    font-size: 1.4rem;
    line-height: 1.1428571429;
    padding: 1rem 0.6rem;
  }
}
.color03 .tate01 {
  top: -1.6rem;
  right: 4rem;
}
@media only screen and (max-width: 768px) {
  .color03 .tate01 {
    top: -1.4rem;
    right: 2.2rem;
  }
}
.color03 .tate02 {
  bottom: 15rem;
  left: 9.6rem;
}
@media only screen and (max-width: 768px) {
  .color03 .tate02 {
    bottom: 7.7rem;
    left: 5.8rem;
  }
}
.color03 .tate03 {
  bottom: 7.4rem;
  left: 3rem;
}
@media only screen and (max-width: 768px) {
  .color03 .tate03 {
    bottom: 3.6rem;
    left: 2.3rem;
  }
}
.color03__item:first-child {
  margin-top: 32rem;
}
@media only screen and (max-width: 768px) {
  .color03__item:first-child {
    margin-top: 0;
    order: 2;
    text-align: right;
  }
}
@media only screen and (max-width: 768px) {
  .color03__item:last-child {
    display: contents;
  }
}
.color03__item:last-child figure {
  margin-bottom: 5.6rem;
}
@media only screen and (max-width: 768px) {
  .color03__item:last-child figure {
    text-align: center;
    margin-bottom: 0;
  }
}
.color03__item:last-child figure img {
  width: 70rem;
  height: 100rem;
}
@media only screen and (max-width: 768px) {
  .color03__item:last-child figure img {
    width: 34rem;
    height: auto;
  }
}
.color03__item:last-child .mask {
  margin-left: 2.3rem;
  order: 3;
}
@media only screen and (max-width: 768px) {
  .color03__item:last-child .mask {
    margin-left: 0rem;
    margin-top: 2rem;
  }
}
.color03__item figure {
  position: relative;
}
.color03__figure {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .color03__figure {
    order: 1;
  }
}
.color03__figure figure img {
  width: 50.4rem;
  height: 72rem;
}
@media only screen and (max-width: 768px) {
  .color03__figure figure img {
    width: 28rem;
    height: 40rem;
    right: 0.8rem;
    position: relative;
  }
}
.color03__text01 {
  position: absolute;
  top: 0;
  left: -12rem;
  width: 8.7rem;
  height: 43.3rem;
}
@media only screen and (max-width: 768px) {
  .color03__text01 {
    left: 2rem;
    width: 4rem;
    height: 19.8rem;
  }
}
.color03__text02 {
  position: absolute;
  bottom: 1.3rem;
  right: 2.1rem;
  width: 21.3rem;
  height: 4.2rem;
}
@media only screen and (max-width: 768px) {
  .color03__text02 {
    width: 11.8rem;
    height: 2.3rem;
    right: 0.9rem;
    bottom: 0.7rem;
  }
}
.color03__box {
  display: flex;
  justify-content: center;
  gap: 11.2rem;
}
@media only screen and (max-width: 768px) {
  .color03__box {
    gap: 7.3rem;
    flex-direction: column;
  }
}
.color03__boxfigure {
  margin-bottom: 4rem;
  position: relative;
}
.color03__boxfigure figure {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .color03__boxfigure figure {
    width: fit-content;
    margin-inline: auto;
  }
}
.color03__boxfigure figure::before, .color03__boxfigure figure::after {
  content: "";
  width: 7.4rem;
  height: 7.4rem;
}
@media only screen and (max-width: 768px) {
  .color03__boxfigure figure::before, .color03__boxfigure figure::after {
    width: 4.7rem;
    height: 4.7rem;
  }
}
.color03__boxfigure figure::before {
  border-top: 1px solid var(--mainColor03);
  border-left: 1px solid var(--mainColor03);
  position: absolute;
  top: -1rem;
  left: -1rem;
}
.color03__boxfigure figure::after {
  border-bottom: 1px solid var(--mainColor03);
  border-right: 1px solid var(--mainColor03);
  position: absolute;
  bottom: -1rem;
  right: -1rem;
}
.color03__boxfigure figure img {
  width: 42.2rem;
  height: 52.8rem;
}
@media only screen and (max-width: 768px) {
  .color03__boxfigure figure img {
    width: 28.2rem;
    height: 35.2rem;
  }
}
.color03__text03 {
  position: absolute;
  width: 3.2rem;
  height: 22.9rem;
  bottom: 0;
  left: -5rem;
}
@media only screen and (max-width: 768px) {
  .color03__text03 {
    width: 2.2rem;
    height: 15.8rem;
    left: 1rem;
  }
}
.color03__text04 {
  position: absolute;
  width: 4rem;
  height: 20.3rem;
  top: 0;
  right: -5rem;
}
@media only screen and (max-width: 768px) {
  .color03__text04 {
    width: 2.8rem;
    height: 14.2rem;
    right: 0.5rem;
  }
}
.color03__subttl {
  text-align: center;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .color03__subttl {
    margin-bottom: 3.9rem;
  }
}
.color03__subttlimg01 {
  width: 29.2rem;
  height: 8.1rem;
}
@media only screen and (max-width: 768px) {
  .color03__subttlimg01 {
    width: 17.5rem;
    height: 4.8rem;
  }
}
.color03__subttlimg02 {
  width: 24.6rem;
  height: 8.1rem;
}
@media only screen and (max-width: 768px) {
  .color03__subttlimg02 {
    width: 14.8rem;
    height: 4.8rem;
  }
}
.color03__subtext {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 5.6rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .color03__subtext {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin-bottom: 4.5rem;
  }
}
.color03 .detail__link {
  background-color: var(--mainColor03);
}
.color03 .detail__link--border {
  background-color: transparent;
  border-color: var(--mainColor03);
  color: var(--mainColor03);
}
.color03 .detail__link--border:hover {
  background-color: var(--mainColor03);
  color: transparent;
}

.color04 {
  background: #f9fcff;
  padding: 8rem 0 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .color04 {
    padding: 6.5rem 0 0;
  }
}
.color04__tag {
  position: absolute;
  top: 14.5rem;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .color04__tag {
    display: none;
  }
}
.color04__tagimg {
  width: 8rem;
  height: 42.6rem;
}
.color04__flex {
  display: flex;
  justify-content: center;
  gap: 12.9rem;
  margin-bottom: 14rem;
}
@media only screen and (max-width: 768px) {
  .color04__flex {
    flex-direction: column;
    gap: 0;
    margin-bottom: 8.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .color04__item:first-child {
    display: contents;
  }
}
@media only screen and (max-width: 768px) {
  .color04__item:last-child {
    order: 3;
    margin-bottom: 4.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .color04__item .mask:nth-child(2) {
    order: 2;
  }
}
@media only screen and (max-width: 768px) {
  .color04__item .mask:nth-child(3) {
    order: 4;
  }
}
.color04__ttl {
  margin-bottom: 8.7rem;
  padding-top: 14.1rem;
}
@media only screen and (max-width: 768px) {
  .color04__ttl {
    text-align: center;
    margin-bottom: 3.9rem;
    padding-top: 0;
    order: 1;
  }
}
.color04__ttl img {
  width: 38.8rem;
  height: 15.4rem;
}
@media only screen and (max-width: 768px) {
  .color04__ttl img {
    width: 23.2rem;
    height: 9.2rem;
  }
}
.color04__text {
  font-size: 2rem;
  line-height: 2.3333333333;
  letter-spacing: 0.04em;
  margin-bottom: 10.6rem;
}
@media only screen and (max-width: 768px) {
  .color04__text {
    font-size: 1.4rem;
    line-height: 2.2857142857;
    margin-bottom: 4rem;
    text-align: center;
  }
}
.color04__figure {
  position: relative;
  order: 3;
}
.color04__figure figure img {
  width: 68rem;
  height: 98rem;
}
@media only screen and (max-width: 768px) {
  .color04__figure figure img {
    width: 100%;
    height: auto;
  }
}
.color04__text01 {
  position: absolute;
  width: 45.6rem;
  height: 7.2rem;
  bottom: 0;
  right: 1.5rem;
  z-index: 100;
}
@media only screen and (max-width: 768px) {
  .color04__text01 {
    width: 25.1rem;
    height: 3.9rem;
    right: 0.9rem;
  }
}
.color04__box {
  display: flex;
  justify-content: center;
  gap: 12rem;
  position: relative;
  z-index: 0;
  padding-bottom: 16rem;
  background: var(--mainColor04);
}
@media only screen and (max-width: 768px) {
  .color04__box {
    flex-direction: column;
    gap: 7.4rem;
    padding-bottom: 6.4rem;
  }
}
.color04__box::before {
  content: "";
  width: 100%;
  height: 37rem;
  background: #f9fcff;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .color04__box::before {
    height: 24.2rem;
  }
}
.color04__box .detail {
  color: var(--colorW);
}
.color04__box .detail .detail__link {
  background-color: var(--colorW);
  color: var(--mainColor04);
}
.color04__box .detail .detail__link--border {
  background-color: var(--mainColor04);
  border-color: var(--colorW);
  color: var(--colorW);
}
.color04__subttl {
  text-align: center;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .color04__subttl {
    width: fit-content;
    margin-inline: auto;
  }
}
.color04__boxfigure {
  margin-bottom: 4.5rem;
  position: relative;
}
.color04__boxfigure figure {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .color04__boxfigure figure {
    width: fit-content;
    margin-inline: auto;
  }
}
.color04__boxfigure figure::before, .color04__boxfigure figure::after {
  content: "";
  width: 7.4rem;
  height: 7.4rem;
}
@media only screen and (max-width: 768px) {
  .color04__boxfigure figure::before, .color04__boxfigure figure::after {
    width: 4.7rem;
    height: 4.7rem;
  }
}
.color04__boxfigure figure::before {
  border-top: 1px solid var(--mainColor04);
  border-left: 1px solid var(--mainColor04);
  position: absolute;
  top: -1.3rem;
  left: -1.3rem;
}
@media only screen and (max-width: 768px) {
  .color04__boxfigure figure::before {
    top: -1rem;
    left: -1rem;
  }
}
.color04__boxfigure figure::after {
  border-bottom: 1px solid white;
  border-right: 1px solid white;
  position: absolute;
  bottom: -1.3rem;
  right: 1.3rem;
}
@media only screen and (max-width: 768px) {
  .color04__boxfigure figure::after {
    bottom: -1rem;
    right: -1rem;
  }
}
.color04__boxfigure figure img {
  width: 42.2rem;
  height: 52.8rem;
}
@media only screen and (max-width: 768px) {
  .color04__boxfigure figure img {
    width: 28.2rem;
    height: 35.2rem;
  }
}
.color04__subtext {
  text-align: center;
  color: var(--colorW);
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 5.6rem;
}
@media only screen and (max-width: 768px) {
  .color04__subtext {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin-bottom: 4rem;
  }
}
.color04__text02 {
  width: 2.8rem;
  height: 20.1rem;
  position: absolute;
  bottom: 0;
  left: -4rem;
}
@media only screen and (max-width: 768px) {
  .color04__text02 {
    width: 2.4rem;
    height: 17.2rem;
    left: 2rem;
  }
}
.color04__text03 {
  width: 2.8rem;
  height: 20.1rem;
  position: absolute;
  top: 0;
  right: -3rem;
}
@media only screen and (max-width: 768px) {
  .color04__text03 {
    width: 2.4rem;
    height: 17.2rem;
    right: 1rem;
  }
}
.color04 .detail__link {
  background-color: var(--mainColor04);
}
.color04 .detail__link--border {
  background-color: transparent;
  border-color: var(--mainColor04);
  color: var(--mainColor04);
}
.color04 .detail__link--border:hover {
  background-color: var(--mainColor04);
  color: transparent;
}
.color04__subttlimg01 {
  width: 24.6rem;
  height: 8.1rem;
}
@media only screen and (max-width: 559px) {
  .color04__subttlimg01 {
    width: 14.8rem;
    height: 4.8rem;
  }
}
.color04__subttlimg02 {
  width: 43.3rem;
  height: 8.7rem;
}
@media only screen and (max-width: 559px) {
  .color04__subttlimg02 {
    width: 26rem;
    height: 5.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .color04__boxitem:last-child .color04__boxfigure figure::before {
    border-color: var(--colorW);
  }
}

.detail__wrap {
  width: 45rem;
}
@media only screen and (max-width: 768px) {
  .detail__wrap {
    width: 32rem;
    margin-inline: auto;
  }
}
.detail__ttl {
  font-size: 1.4rem;
  line-height: 1;
}
.detail__item {
  margin-bottom: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .detail__item {
    margin-bottom: 1rem;
    display: none;
  }
}
.detail__item:last-child {
  margin-bottom: 0;
}
.detail__item--border {
  border-bottom: 1px solid;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  display: block;
}
@media only screen and (max-width: 559px) {
  .detail__item--border {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
  }
}
.detail__list.open .detail__item {
  display: block;
}
.detail__flex {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.detail__price {
  font-size: 1.6rem;
  font-family: var(--time);
}
@media only screen and (max-width: 768px) {
  .detail__price {
    font-size: 1.4rem;
  }
}
.detail__price span {
  font-size: 1rem;
  padding-left: 1rem;
}
@media only screen and (max-width: 768px) {
  .detail__price span {
    font-size: 0.9rem;
  }
}
.detail__cont {
  display: flex;
  gap: 1.6rem;
  justify-content: flex-end;
  align-items: center;
}
.detail__cont--first {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .detail__cont--first {
    margin-bottom: 1rem;
    gap: 1.3rem;
  }
}
.detail__sizelist {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.detail__size {
  font-size: 1rem;
  font-family: var(--time);
  height: 2rem;
  padding-inline: 0.5rem;
  border: 1px solid;
  line-height: 2rem;
  border-radius: 2px;
}
@media only screen and (max-width: 768px) {
  .detail__size {
    padding-inline: 0.2rem;
    height: 1.6rem;
    line-height: 1.6rem;
  }
}
.detail__link {
  background-color: #f398aa;
  color: var(--colorW);
  font-family: var(--time);
  font-size: 1.1rem;
  width: 7.2rem;
  height: 2.2rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .detail__link {
    width: 5rem;
    height: 2.4rem;
    font-size: 1rem;
  }
}
.detail__link:hover {
  color: var(--colorW);
}
.detail__link--border {
  background-color: transparent;
  color: var(--baseColor);
  border: 1px solid;
  transition: 0.5s;
}
.detail__link--border:hover {
  background-color: var(--baseColor);
  color: var(--colorW);
}
.detail__toggle {
  font-size: 1.3rem;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .detail__toggle {
    padding-bottom: 1rem;
  }
}
.detail__toggle::after {
  content: "";
  background: url(../images/arrow.webp) no-repeat center center/contain;
  width: 2rem;
  height: 1rem;
  position: relative;
  display: inline-block;
}
.detail__toggle.open {
  margin-bottom: 2rem;
}
.detail__toggle.open::after {
  transform: rotate(180deg);
}

.detail.wh .detail__toggle::after {
  background: url(../images/arrow-w.webp) no-repeat center center/contain;
}

.accessory {
  padding: 16rem 0 10rem;
}
@media only screen and (max-width: 768px) {
  .accessory {
    padding: 7.8rem 0 1.6rem;
  }
}
.accessory__wrap {
  width: 129.6rem;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .accessory__wrap {
    width: 100%;
    padding-inline: 0.65rem;
  }
}
.accessory__ttl {
  text-align: center;
  font-size: 2.9rem;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 768px) {
  .accessory__ttl {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 4rem;
  }
}
.accessory__ttl img {
  margin-top: 3rem;
  width: 45.3rem;
  height: 8.1rem;
}
@media only screen and (max-width: 768px) {
  .accessory__ttl img {
    width: 21.7rem;
    height: 3.9rem;
    margin-top: 1.3rem;
  }
}
.accessory__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .accessory__grid {
    gap: 0.8rem 0.4rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.accessory figure {
  margin-bottom: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .accessory__item:nth-child(9) {
    display: none;
  }
}
.accessory__name {
  font-size: 1.6rem;
  line-height: 1.6rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 768px) {
  .accessory__name {
    font-size: 1.2rem;
    line-height: 1.1666666667;
    margin-bottom: 0.4rem;
  }
}
.accessory__price {
  font-size: 1.6rem;
  line-height: 1.6rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
@media only screen and (max-width: 768px) {
  .accessory__price {
    font-size: 1.2rem;
    line-height: 1.1666666667;
  }
}
.accessory__item img {
  width: 24rem;
  height: 32rem;
}
@media only screen and (max-width: 768px) {
  .accessory__item img {
    width: 100%;
    height: auto;
  }
}

.fadeup {
  opacity: 0;
  position: relative;
  transform: translateY(2.5rem);
  transition: all 0.8s ease-out;
}

.fadeup.on {
  opacity: 1;
  transform: translateY(0);
}

.faderight {
  opacity: 0;
  position: relative;
  transform: translateX(-3.5rem);
  transition: all 0.8s ease-out;
}

.faderight.on {
  opacity: 1;
  transform: translateX(0);
}

.fadeleft {
  opacity: 0;
  position: relative;
  transform: translateX(3.5rem);
  transition: all 0.8s ease-out;
}

.fadeleft.on {
  opacity: 1;
  transform: translateX(0);
}

.fadedown {
  overflow: hidden;
}

.mask {
  overflow: hidden;
}

.imgSwitch {
  position: relative;
  overflow: hidden;
}

.imgSwitch__img {
  display: block;
}

.imgSwitch__img--over {
  position: absolute;
  inset: 0;
  z-index: 2;
  will-change: transform;
  opacity: 0;
}

.tate {
  display: inline-block;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}
/*# sourceMappingURL=style.css.map */
