@charset "UTF-8";
/* =====================================================
  1.0 - Foundation
===================================================== */
/* 游ゴシック体 */
/* 游明朝体 */
/* 源ノ角ゴシック */
/* Optima */
/* Nunito */
/* =====================================================
  1.0 - Foundation
===================================================== */
/* =====================================================
  1.0 - Foundation
===================================================== */
/*
  base
-----------------------------------------------------*/
html {
  box-sizing: border-box;
  height: 100%;
  word-break: break-all;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  background-color: #EFEAE4;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #666666;
  font-size: 1rem;
  height: 100%;
  line-height: 1.5;
  width: 100%;
}

figure {
  margin: 0;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
strong {
  font-weight: bold;
}

input,
textarea {
  font-family: inherit;
  font-size: 100%;
}

._border_ {
  border: 0.09375rem solid #707070;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.slick-arrow.slick-prev,
.slick-arrow.slick-next {
  width: 2.1875rem;
  height: 2.1875rem;
  background: #666666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.slick-arrow.slick-prev:before,
.slick-arrow.slick-next:before {
  content: "";
  display: block;
  background-color: #fff;
  width: 0.78125rem;
  height: 0.9375rem;
  opacity: 1;
}
.slick-arrow.slick-prev:hover, .slick-arrow.slick-prev:focus,
.slick-arrow.slick-next:hover,
.slick-arrow.slick-next:focus {
  background: #666666;
}

.slick-arrow.slick-prev {
  left: 0.375rem;
}
.slick-arrow.slick-prev:before {
  clip-path: polygon(100% 0%, 0% 50%, 100% 100%);
  margin-right: 0.125rem;
}

.slick-arrow.slick-next {
  right: 0.375rem;
}
.slick-arrow.slick-next:before {
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  margin-left: 0.125rem;
}

.slick-slide {
  margin-inline: 1.40625rem;
}

@keyframes extendAnime {
  10% {
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes slideText {
  100% {
    transform: translateX(0);
  }
}
.js-mvFade,
.js-mvFadeUp,
.js-fade,
.js-fadeUp {
  opacity: 0;
  visibility: hidden;
}

.js-fadeUp,
.js-mvFadeUp {
  transform: translateY(30px);
}

.c-rotation {
  animation: 0.9s ease-out rotation;
}

@keyframes rotation {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.js-mvFade {
  opacity: 0;
  visibility: hidden;
}

.js-mvFadeUp {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
}

.upMove {
  animation: UpAnime 0.6s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(300px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.downMove {
  animation: DownAnime 1s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(300px);
  }
}
/* =====================================================
  2.0 - Layout
===================================================== */
/* =====================================================
  1.0 - Foundation
===================================================== */
.l-contents {
  max-width: 23.4375rem;
  width: 100%;
  margin-inline: auto;
  background-color: #FFFBF5;
  overflow: hidden;
  position: relative;
  z-index: 900;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .l-contents {
    max-width: 34.375rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.l-fixed {
  position: fixed;
  min-height: 100vh;
  max-width: 80rem;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr 34.375rem 1fr;
}
@media screen and (max-width: 1023px) {
  .l-fixed {
    display: none;
  }
}

.l-fixed__left,
.l-fixed__right {
  position: relative;
}
@media screen and (max-width: 425px) {
  .l-fixed__left,
  .l-fixed__right {
    display: none;
  }
}

.l-fixed__right {
  grid-column: 3;
  display: flex;
  justify-content: center;
  padding-inline: 1rem;
  padding-top: 11.72vw;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.l-inner {
  max-width: 20.625rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-inner {
    max-width: 28.125rem;
  }
}

/* =====================================================
3.0 - Object
===================================================== */
/*
3.1 - Component
----------------------------------------------------- */
/* =====================================================
  1.0 - Foundation
===================================================== */
.c-colorList {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  position: relative;
}
.c-colorList:before, .c-colorList:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #666666;
  top: 50%;
  transform: translateY(-50%);
}
.c-colorList:before {
  width: 0.09375rem;
  height: 19.75rem;
  left: -0.875rem;
}
.c-colorList:after {
  width: 1rem;
  height: 0.09375rem;
  left: -1.8125rem;
}

.c-colorList__item {
  background-color: #fff;
  padding: 0.3125rem;
  padding-left: 1rem;
  display: grid;
  grid-template-columns: 1fr 4.375rem;
  gap: 0.3125rem;
  position: relative;
}
.c-colorList__item:before {
  content: "";
  display: block;
  position: absolute;
  background-color: #666666;
  width: 0.875rem;
  height: 0.09375rem;
  top: 50%;
  transform: translateY(-50%);
  left: -0.875rem;
}

.c-colorList__itemType {
  font-size: 0.625rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.c-colorList__itemType span {
  display: block;
  font-size: 0.9375rem;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
}

.c-colorList__link {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.c-colorList__btn {
  display: block;
  color: #fff;
  border-radius: 1.75rem;
  width: 100%;
  line-height: 1.25rem;
  font-size: 0.625rem;
  font-weight: 700;
  position: relative;
  max-width: 85px;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .c-colorList__btn:hover {
    opacity: 0.8;
  }
}
.c-colorList__btn:after {
  content: "";
  display: block;
  background-color: #fff;
  width: 0.3125rem;
  height: 0.375rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  right: 0.375rem;
  top: 50%;
  transform: translateY(-50%);
}
.c-colorList__btn._pink_ {
  background-color: #E8ABA4;
  padding-inline: 0.5rem;
}
.c-colorList__btn._gray_ {
  background-color: #9D9D9D;
  text-align: center;
}

.c-colorList__itemImg {
  position: relative;
  z-index: 2;
}
.c-colorList__itemImg img {
  aspect-ratio: 7/9;
  object-fit: cover;
}
.c-colorList__itemImg._spring_ {
  --color: #FFFBE8;
}
.c-colorList__itemImg._summer_ {
  --color: #EFF9FF;
}
.c-colorList__itemImg._autumn_ {
  --color: #FFF0EB;
}
.c-colorList__itemImg._winter_ {
  --color: #F5EFFD;
}
.c-colorList__itemImg:before {
  content: "";
  width: 4.375rem;
  height: 4.375rem;
  display: block;
  position: absolute;
  top: 0;
  background-color: var(--color);
  border-radius: 50%;
  z-index: -1;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-title {
  margin-inline: auto;
  overflow: hidden;
  font-weight: 500;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.875rem;
}
.c-title._skeletal_ {
  width: 9.0625rem;
  letter-spacing: 0.1em;
}
.c-title._color_ {
  width: 19.375rem;
}
.c-title._color2_ {
  width: 16.875rem;
  font-size: 1.5625rem;
}

.c-title__wrap {
  background-color: #fff;
  border: 1px solid #DE8479;
  line-height: 2.5rem;
  color: #DE8479;
  height: 2.5rem;
  overflow: hidden;
  text-align: center;
  position: relative;
  opacity: 0;
  width: 0;
}
.c-title._skeletal_ .c-title__wrap {
  animation: extendAnime 1s ease-in-out 0.2s forwards;
}
.c-title._color_ .c-title__wrap {
  animation: extendAnime 1.4s ease-in-out 0.2s forwards;
}

.c-title__text {
  position: absolute;
  width: 100%;
  display: block;
  transform: translateX(30%);
}
.c-title._skeletal_ .c-title__text {
  width: 9.0625rem;
  animation: slideText 1s ease-in-out 0.2s forwards;
}
.c-title._color_ .c-title__text {
  width: 19.375rem;
  animation: slideText 1.4s ease-in-out 0.2s forwards;
}
.c-title._color2_ .c-title__text {
  width: 16.875rem;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-type {
  position: relative;
}

.c-type__item._dashed_ {
  background-image: linear-gradient(to right, #666666, #666666 3px, transparent 3px, transparent 6px);
  background-size: 6px 1px;
  background-position: left top;
  background-repeat: repeat-x;
  padding-top: 1px;
}

.c-type__heading {
  padding-block: 0.8125rem 1.3125rem;
  position: relative;
}
.c-type__heading:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(to right, #666666, #666666 3px, transparent 3px, transparent 6px);
  background-size: 6px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.c-type__heading._none_:after {
  content: none;
}
.c-type__heading._straight_ {
  background: linear-gradient(#fffaf7 0%, #ffdfdb 100%);
}
.c-type__heading._wave_ {
  background: linear-gradient(#fcf9ef 0%, #eae5c3 100%);
}
.c-type__heading._natural_ {
  background: linear-gradient(#e8f7e7 0%, #c2d6cb 100%);
}
.c-type__heading._spring_ {
  background: linear-gradient(#fffdf8 0%, #ffeebf 100%);
}
.c-type__heading._summer_ {
  background: linear-gradient(#f8fdff 0%, #bfe9ff 100%);
}
.c-type__heading._autumn_ {
  background: linear-gradient(rgba(245, 240, 240, 0.94) 0%, #ffc8b4 97.04%, #ffb2b2 100%);
}
.c-type__heading._winter_ {
  background: linear-gradient(#faeffc 0%, #d3cbfc 100%);
}

.c-type__content {
  display: flex;
  flex-direction: column;
  padding-block: 1.125rem 2.5rem;
  background-color: #fff;
}

.c-type__img {
  margin-inline: auto;
  width: 100%;
}

.c-type__feature {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}

.c-type__text {
  max-width: 280px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.c-type._skeletal_ .c-type__content {
  gap: 1rem;
  height: 29rem;
}
@media screen and (min-width: 1024px) {
  .c-type._skeletal_ .c-type__content {
    height: 34.375rem;
  }
}
.c-type._skeletal_ .c-type__img {
  width: calc(100% - 2.3125rem);
}
@media screen and (min-width: 1024px) {
  .c-type._skeletal_ .c-type__img {
    max-width: 390px;
  }
}
.c-type._skeletal_ .c-type__text {
  gap: 1rem;
}

.c-type._color_ .c-type__content {
  gap: 1.3125rem;
  height: 37.375rem;
}
@media screen and (min-width: 1024px) {
  .c-type._color_ .c-type__content {
    height: 44.625rem;
  }
}
.c-type._color_ .c-type__img {
  width: calc(100% - 2rem);
}
@media screen and (min-width: 1024px) {
  .c-type._color_ .c-type__img {
    max-width: 390px;
  }
}
.c-type._color_ .c-type__text {
  gap: 1.3125rem;
  margin-top: auto;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-typeName {
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.225;
  font-family: "Cinzel", serif;
}
.c-typeName span {
  display: block;
  font-weight: 500;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 0.875rem;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-moreBtn {
  margin-top: auto;
}
.c-moreBtn a {
  font-family: "Nunito", sans-serif;
  text-transform: uppercase;
  background-color: #666666;
  color: #fff;
  font-size: 0.625rem;
  line-height: 1.25rem;
  width: 5.3125rem;
  display: block;
  margin-inline: auto;
  border-radius: 1.75rem;
  text-align: center;
  position: relative;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .c-moreBtn a:hover {
    opacity: 0.8;
  }
}
.c-moreBtn a:after {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  width: 0.375rem;
  height: 0.3125rem;
  display: block;
  right: 0.375rem;
}

.c-btn a {
  background-color: #E49B91;
  border-radius: 0.625rem;
  color: #fff;
  height: 5rem;
  width: 15.625rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  transition: opacity 0.3s ease-out;
}
.c-btn a:after {
  content: "";
  display: block;
  width: 0.6875rem;
  height: 0.8125rem;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  right: 0.625rem;
  transform: translateY(-50%);
  top: 50%;
}
@media (hover: hover) and (pointer: fine) {
  .c-btn a:hover {
    opacity: 0.8;
  }
}

.c-fixedBtn {
  position: fixed;
  bottom: 0;
  height: 5.625rem;
  width: 23.4375rem;
  z-index: 200;
  opacity: 0;
  transform: translateY(300px);
}
.c-fixedBtn a {
  width: 100%;
  height: 100%;
  background-color: #E49B91;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .c-fixedBtn a:hover {
    background-color: #fff;
    color: #DE8479;
  }
}
.c-fixedBtn span {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-box {
  position: relative;
}

.c-box__title {
  padding-bottom: 1rem;
  background-image: linear-gradient(to right, #666666, #666666 3px, transparent 3px, transparent 6px);
  background-size: 6px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.c-box__inner {
  position: absolute;
  top: 0;
  width: 100%;
  padding-block: 1.3125rem 1.125rem;
}

.c-box__contents {
  display: grid;
  grid-template-columns: 1fr 11.25rem;
  align-items: center;
  padding-top: 0.9375rem;
  padding-inline: 0.9375rem;
  gap: 2.5rem;
}
@media screen and (min-width: 1024px) {
  .c-box__contents {
    grid-template-columns: 1fr 12.5rem;
    padding-top: 3.75rem;
    padding-inline: 1.875rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-times {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  display: block;
}
.c-times:before, .c-times:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #333333;
  height: 1.25rem;
  width: 1px;
}
.c-times:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-times:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.c-nav {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1023px) {
  .c-nav__block + .c-nav__block {
    margin-top: 2.25rem;
  }
}

.c-nav__title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.2em;
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 1024px) {
  .c-nav__title {
    padding-bottom: 0.375rem;
    border-bottom: 1px solid #666666;
  }
}

.c-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 1023px) {
  .c-nav__list._color_ {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 0.75rem;
  }
}

.c-nav__item {
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.1;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 1024px) {
  .c-nav__item {
    font-size: 1.25rem;
    line-height: 1.15;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-nav__item:hover {
    opacity: 0.8;
  }
}
.c-nav__item span {
  font-size: 0.625rem;
  line-height: 1.7;
  font-weight: 500;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.c-nav__link {
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .c-nav__link:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1023px) {
  .c-nav__link {
    line-height: 1.2;
  }
}
@media screen and (max-width: 1023px) {
  .c-nav__link._skeletal_ {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
}

.c-nav__btn {
  margin-top: 1.625rem;
}
@media screen and (min-width: 1024px) {
  .c-nav__btn {
    display: none;
  }
}
.c-nav__btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 11.25rem;
  height: 3.375rem;
  color: #DE8479;
  background-color: #fff;
  font-weight: 500;
  font-size: 0.625rem;
}
.c-nav__btn span {
  font-size: 0.875rem;
}

/*
3.2 - Project
----------------------------------------------------- */
/* =====================================================
  1.0 - Foundation
===================================================== */
.p-header {
  background-color: transparent;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: #EAE8E8;
  max-width: 34.375rem;
  position: absolute;
}
@media screen and (max-width: 1023px) {
  .p-header {
    position: fixed;
    max-width: 23.4375rem;
    transition: 0.3s ease-out;
  }
}
.p-header._top_ {
  background-color: transparent;
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0.625rem;
}

.p-header__logo {
  width: 5.625rem;
}
@media screen and (min-width: 1024px) {
  .p-header__logo {
    width: 5.625rem;
  }
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-header__hamburger {
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 999;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-header__hamburger:hover {
    cursor: pointer;
  }
}
.p-header__hamburger span {
  position: absolute;
  background-color: #DE8479;
  height: 0.0625rem;
  width: 1.25rem;
  transition: 0.3s ease-out;
}
.p-header__hamburger span:first-child {
  top: 0.375rem;
}
.p-header__hamburger span:nth-child(2) {
  top: 0.875rem;
}
.p-header__hamburger span:nth-child(3) {
  top: 1.375rem;
}
.p-header__hamburger.is-active span {
  transition: 0.3s ease-out;
  background-color: #fff;
  width: 1.75rem;
}
.p-header__hamburger.is-active span:first-child {
  top: 0.5625rem;
  transform: rotate(45deg);
}
.p-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.p-header__hamburger.is-active span:nth-child(3) {
  top: 0.5625rem;
  transform: rotate(-45deg);
}

@media screen and (min-width: 1024px) {
  .p-header__menu {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .p-header__menu {
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    width: 15rem;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }
  .p-header__menu.is-active {
    visibility: visible;
  }
  .p-header__menu.is-active .p-header__nav {
    right: 0;
  }
}

@media screen and (max-width: 1023px) {
  .p-header__nav {
    padding-inline: 1.875rem 1rem;
    margin-bottom: 1.875rem;
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    background-color: rgba(228, 155, 145, 0.95);
    right: -120%;
    transition: 0.4s ease-out;
    padding-top: 3.375rem;
    color: #fff;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-footer {
  padding-block: 3.625rem;
  background-color: #EAE8E8;
  width: 100%;
  margin-inline: auto;
  position: relative;
  z-index: 100;
  max-width: 23.4375rem;
}
@media screen and (min-width: 1024px) {
  .p-footer {
    max-width: 34.375rem;
  }
}

.p-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 275px;
  margin-inline: auto;
  margin-bottom: 3.0625rem;
}

.p-footer__copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #333333;
  font-family: "Nunito", sans-serif;
}

.p-footer__logo {
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-footer__logo:hover {
    opacity: 0.8;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-mv {
  padding-block: 4.3125rem 1.875rem;
  position: relative;
}
.p-mv:after {
  position: absolute;
  background-color: #FFD2CC;
  content: "";
  bottom: 0;
  height: 6.375rem;
  width: 100%;
}

.p-mv__catch {
  max-width: 248px;
  margin-inline: auto;
  margin-bottom: 0.5rem;
  position: relative;
}
.p-mv__catch:before, .p-mv__catch:after {
  position: absolute;
  content: "";
  background-color: #DE8479;
  height: 0.0625rem;
  width: 2.875rem;
  display: block;
  top: 2.375rem;
}
.p-mv__catch:before {
  transform: rotate(45deg);
  left: -1.6875rem;
}
.p-mv__catch:after {
  transform: rotate(-45deg);
  right: -1.75rem;
}

.p-mv__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}

.p-mv__check {
  max-width: 15.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-mv__check {
    max-width: 21rem;
  }
}

.p-mv__img {
  max-width: 20.375rem;
  margin-inline: auto;
  margin-top: -1.75rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .p-mv__img {
    max-width: 28.125rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-menu {
  width: 13.75rem;
  background-color: rgba(255, 255, 255, 0.8);
  height: 100%;
  margin-inline: auto;
  padding: 3.125rem 1.25rem;
  gap: 3.125rem;
  color: #666666;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-main {
  text-align: center;
  color: #666666;
}

.p-main__catch {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.2222222222;
  margin-bottom: 1.875rem;
  position: relative;
}
.p-main__catch:before, .p-main__catch:after {
  position: absolute;
  content: "";
  background-color: #666666;
  height: 0.09375rem;
  width: 3.75rem;
  display: block;
  top: 2.375rem;
}
.p-main__catch:before {
  transform: rotate(60deg);
  left: 0.25rem;
}
.p-main__catch:after {
  transform: rotate(-60deg);
  right: 0.4375rem;
}

.p-main__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.875rem;
  margin-bottom: 2.625rem;
}
.p-main__title p {
  background-color: #fff;
  border: 1px solid #666666;
  line-height: 2.5rem;
  padding-inline: 0.375rem;
}
.p-main__title p:first-child {
  padding-inline: 0.5rem;
  letter-spacing: 0.1em;
}

.p-main__btn a {
  margin-inline: auto;
  background-color: #E49B91;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  height: 5.625rem;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-main__btn a:hover {
    background-color: #fff;
    color: #DE8479;
  }
}
.p-main__btn span {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-text {
  font-family: "Noto Sans JP", sans-serif, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 0.875rem;
  color: #333333;
  line-height: 2;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-intro__inner {
  padding-block: 2.8125rem 4.375rem;
  background-image: linear-gradient(to right, #DE8479, #DE8479 3px, transparent 3px, transparent 6px);
  background-size: 6px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.p-intro__text {
  margin-bottom: 2.75rem;
  padding-inline: 0.9375rem;
}

.p-intro__btn {
  margin-bottom: 0.9375rem;
}
.p-intro__btn a {
  margin-inline: auto;
  background-color: rgba(222, 132, 121, 0.8);
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  height: 5.625rem;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-intro__btn a:hover {
    background-color: #fff;
    color: #DE8479;
  }
}
.p-intro__btn span {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
}

.p-intro__notice {
  margin-bottom: 3.75rem;
  font-size: 0.6875rem;
  text-align: center;
}

.p-intro__resultText {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75rem;
  margin-bottom: 3.25rem;
  text-align: center;
  position: relative;
}
.p-intro__resultText:before, .p-intro__resultText:after {
  position: absolute;
  content: "";
  background-color: #666666;
  height: 0.125rem;
  width: 3.75rem;
  display: block;
  top: 2.375rem;
}
.p-intro__resultText:before {
  transform: rotate(60deg);
  left: 1.875rem;
}
.p-intro__resultText:after {
  transform: rotate(-60deg);
  right: 1.875rem;
}

.p-intro__resultTypes {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media screen and (min-width: 1024px) {
  .p-intro__resultTypes {
    max-width: 400px;
    margin-inline: auto;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-skeletal__inner {
  padding-block: 3.75rem 5rem;
  background-image: linear-gradient(to right, #DE8479, #DE8479 3px, transparent 3px, transparent 6px);
  background-size: 6px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.p-skeletal__title {
  margin-bottom: 2.5rem;
}

.p-skeletal__text {
  padding-inline: 0.9375rem;
  margin-bottom: 3.75rem;
  letter-spacing: 0.04em;
}

.p-skeletal__types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 3.75rem;
}

.p-skeletal__type {
  padding: 1.25rem 0.75rem;
  display: flex;
  flex-direction: column;
}
.p-skeletal__type:not(:last-child) {
  position: relative;
}
.p-skeletal__type:not(:last-child):after {
  background-image: linear-gradient(to bottom, #666666, #666666 4px, transparent 4px, transparent 8px);
  background-size: 1px 8px;
  background-position: right top;
  background-repeat: repeat-y;
  content: "";
  display: block;
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  right: 0;
}
.p-skeletal__type:first-child {
  background-image: linear-gradient(rgba(255, 250, 247, 0.5) 0%, rgba(255, 223, 219, 0.5) 100%);
}
.p-skeletal__type:nth-child(2) {
  background-image: linear-gradient(rgba(242, 240, 231, 0.5) 0%, rgba(234, 229, 195, 0.5) 100%);
}
.p-skeletal__type:nth-child(3) {
  background-image: linear-gradient(rgba(232, 247, 231, 0.5) 0%, rgba(194, 214, 203, 0.5) 100%);
}

.p-skeletal__imgs {
  width: 4.625rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 0.875rem;
}

.p-skeletal__img {
  mix-blend-mode: multiply;
}

.p-skeletal__name {
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-family: "Cinzel", serif;
}

.p-skeletal__slider {
  margin-inline: -1.40625rem;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-color__inner {
  padding-block: 3.75rem 4.6875rem;
}

.p-color__title {
  margin-bottom: 2.25rem;
}

.p-color__text {
  padding-inline: 0.9375rem;
  margin-bottom: 4.0625rem;
  letter-spacing: 0.04em;
}

.p-color__types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 3.75rem;
  background-color: #fff;
  margin-inline: 0.3125rem;
}
@media screen and (min-width: 1024px) {
  .p-color__types {
    margin-inline: 0.625rem;
  }
}

.p-color__container {
  padding: 1.5rem 1.25rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.p-color__container:first-child {
  background-image: linear-gradient(to bottom, #666666, #666666 4px, transparent 4px, transparent 8px);
  background-size: 1px 8px;
  background-position: right top;
  background-repeat: repeat-y;
}

.p-color__type {
  display: flex;
  flex-direction: column;
}

.p-color__btn {
  margin-top: auto;
}
.p-color__btn a {
  text-transform: uppercase;
  background-color: #666666;
  color: #fff;
  font-size: 0.625rem;
  line-height: 1.25rem;
  width: 5.3125rem;
  display: block;
  margin-inline: auto;
  border-radius: 1.75rem;
  text-align: center;
  position: relative;
}
.p-color__btn a:after {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  width: 0.375rem;
  height: 0.3125rem;
  display: block;
  right: 0.375rem;
}

.p-color__base {
  font-size: 0.75rem;
  line-height: 1.4;
}
.p-color__base span {
  line-height: 1.2;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  display: block;
  text-transform: uppercase;
}

.p-color__name {
  font-size: 0.625rem;
  line-height: 1.2;
  margin-bottom: 0.625rem;
}
.p-color__name span {
  font-family: "Cinzel", serif;
  font-size: 1.5625rem;
  display: block;
  text-transform: uppercase;
}

.p-color__img {
  width: 6.5rem;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.p-color__img._spring_ {
  --color: #FFFBE8;
}
.p-color__img._summer_ {
  --color: #EFF9FF;
}
.p-color__img._autumn_ {
  --color: #FFF0EB;
}
.p-color__img._winter_ {
  --color: #F5EFFD;
}
.p-color__img:before {
  content: "";
  width: 6.25rem;
  height: 6.25rem;
  display: block;
  position: absolute;
  top: 0;
  background-color: var(--color);
  border-radius: 50%;
  z-index: -1;
}

.p-color__btn {
  margin-top: auto;
}

.p-color__slider {
  margin-inline: -1.40625rem;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-section {
  padding-block: 2.8125rem 5rem;
  text-align: center;
}
.p-section._supervise_ {
  background-color: #FFEBE8;
}
.p-section._illustration_ {
  background-color: #F8EFE1;
}
.p-section a {
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-section a:hover {
    opacity: 0.8;
  }
}

.p-section__inner {
  padding-inline: 1.875rem;
}

.p-section__enTitle {
  font-family: "Cinzel", serif;
  font-size: 2.1875rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 400;
}

.p-section__title {
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  font-weight: 600;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  margin-bottom: 2.1875rem;
}

.p-section__img {
  width: 10.625rem;
  margin-bottom: 2.125rem;
  margin-inline: auto;
}

.p-section__name {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 0.875rem;
}
.p-section__name ._kanji_ {
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
  line-height: 1.1363636364;
}
.p-section__name ._kana_ {
  font-size: 0.75rem;
  line-height: 2.0833333333;
}

.p-section__text {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6923076923;
  letter-spacing: 0.03em;
  text-align: left;
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-result {
  padding-top: 6.25rem;
}

.p-result__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.75rem;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 2.5rem;
}

.p-result__times {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.p-result__contents {
  background-color: #fff;
}

.p-result__content {
  padding-block: 2.1875rem 3.125rem;
}

.p-result__imgs {
  display: grid;
  grid-template-columns: 3.875rem 1fr;
  align-items: center;
  margin-inline: auto;
  gap: 0.5625rem;
  max-width: 14.375rem;
  margin-bottom: 2.0625rem;
}
@media screen and (min-width: 1024px) {
  .p-result__imgs {
    grid-template-columns: 5rem 1fr;
    max-width: 17.5rem;
  }
}

/* =====================================================
  1.0 - Foundation
===================================================== */
.p-styling {
  text-align: center;
  padding-block: 3.75rem 4.8125rem;
}

.p-styling__title {
  color: #DE8479;
  margin-bottom: 1.625rem;
}

.p-styling__text {
  margin-bottom: 2.1875rem;
}

.p-styling__img {
  aspect-ratio: 33/44;
  margin-bottom: 3.125rem;
}

.p-styling__btn {
  margin-bottom: 1.875rem;
}
.p-styling__btn a {
  background-color: #E49B91;
  border-radius: 0.625rem;
  color: #fff;
  height: 5rem;
  width: 15.625rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
}
.p-styling__btn a:after {
  content: "";
  display: block;
  width: 0.6875rem;
  height: 0.8125rem;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  right: 0.625rem;
  transform: translateY(-50%);
  top: 50%;
}

.p-styling__link a {
  text-decoration: underline;
  transition: opacity 0.3s ease-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-styling__link a:hover {
    opacity: 0.8;
  }
}

/*
  3.2 - Utility
----------------------------------------------------- */
/* =====================================================
  1.0 - Foundation
===================================================== */
@media screen and (min-width: 1024px) {
  .u-display-sp-only {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .u-display-tab {
    display: none;
  }
}

.u-display-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-display-pc {
    display: block;
  }
}

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