@charset "UTF-8";

/*all----------------------------*/
html {
  font-size: 62.5%;
}


body {
  -webkit-tap-highlight-color: transparent;
}

#HeaderWrap {
  display: none;
}

#Wrap {
  width: auto;
}

#FooterWrap {
  display: none;
}

:root {
  --font_jpn: "Zen Kaku Gothic Antique", sans-serif;
  --font_eng: "Cinzel", serif;
  --font_mix: "Lora", "Zen Kaku Gothic Antique", sans-serif;
  --font_cursive: "Petit Formal Script", cursive;
  --color_01: #3B3F67;
  --color_02: #D5BC97;
  --color_03: #A08561;
  --color_bg: #CCD5E6;
}

.LP_page * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
  letter-spacing: .1em;
}

.LP_page {
  position: relative;
  z-index: 1;
  width: 100%;
  font-family: var(--font_jpn);
  color: var(--color_01);
  overflow-x: clip;
  opacity: 0;
  transition: opacity 1s;
}

.LP_page::before,
.page_inner::before,
.page_inner::after,
.loadingScreen::before,
.loadingScreen::after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100lvh;
  content: "";
}

.LP_page::before {
  background: var(--color_bg);
}

.page_inner::before,
.loadingScreen::before {
  background: url(../img/bg_001.jpg) center center / 33rem auto repeat;
  opacity: .5;
  mix-blend-mode: overlay;
}

.page_inner::after,
.loadingScreen::after {
  background: url(../img/bg_002_pc.png) center center / cover no-repeat;
}

.LP_page.active {
  opacity: 1;
}

.LP_page a {
  display: block;
}

.LP_page a:hover {
  opacity: 1 !important;
}

.LP_page img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*----------------------------all*/

/*診断----------------------------*/
.question_area {
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 7rem 0;
  transition: opacity 1s;
}

.question_area.hidden {
  display: none;
}

.question_area .loadingScreen:has(input[name="loading"]:checked) {
  display: none;
}

.question_area .loadingScreen {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100dvh;
  background: var(--color_bg);
}

.LP_page.active .question_area .loadingScreen {
  animation: loadingScreen 1s 2s forwards;
}

@keyframes loadingScreen {
  0% {
    opacity: 1;
    pointer-events: none;
  }

  100% {
    opacity: 0;
    pointer-events: none;
  }
}

.loadingScreen input {
  display: none;
}

.main_ttl_wrap .logo_cosmekitchen {
  width: 18.6rem;
  margin: 0 auto 4rem;
}

.main_ttl {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--color_01);
}

.main_ttl .txt_S {
  display: inline-block;
  width: 15rem;
  margin-right: 1.5rem;
  border-radius: .3rem;
  border: solid var(--color_01) .15rem;
  vertical-align: -.2em;
}

.main_ttl .txt_eng {
  display: block;
  margin-top: 2.5rem;
  font-family: var(--font_eng);
  font-size: 2.5rem;
  color: var(--color_03);
}

.question_area .txt_start {
  margin-top: 4rem;
  font-family: var(--font_eng);
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
}

.question_area .txt_start span {
  display: inline-block;
  opacity: 0;
  translate: 0 1rem;
}

.LP_page.active .question_area .txt_start span {
  animation: loadingText .8s ease-out forwards;
}

@keyframes loadingText {
  0% {
    opacity: 0;
    translate: 0 1rem;
  }

  100% {
    opacity: 1;
    translate: 0 0;
  }
}

.LP_page.active .question_area .txt_start span:nth-of-type(2) {
  animation-delay: .2s !important;
}

.LP_page.active .question_area .txt_start span:nth-of-type(3) {
  animation-delay: .4s !important;
}

.LP_page.active .question_area .txt_start span:nth-of-type(4) {
  animation-delay: .6s !important;
}

.LP_page.active .question_area .txt_start span:nth-of-type(5) {
  animation-delay: .7s !important;
}

.LP_page.active .question_area .txt_start span:nth-of-type(6) {
  animation-delay: .8s !important;
}

.question_area .area_inner .main_ttl_wrap {
  margin-bottom: 6rem;
}

.question_area .area_inner .main_ttl {
  font-size: 2.5rem;
}

.question_area .area_inner .main_ttl .txt_S {
  width: 11.7rem;
  margin-right: 1rem;
}

.question_area .area_inner .main_ttl .txt_eng {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.each_question {
  position: relative;
  width: 90rem;
  margin: 0 auto;
  transition: opacity 1s;
}

.each_question input[name="question"] {
  display: none;
}

.each_question:has(input[name="question"]:not(:checked)) {
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.each_question:has(input[name="question"]:checked) {
  opacity: 1;
  height: auto;
  overflow: visible;
  padding-bottom: 12rem;
}

.each_question .question_ttl_outside {
  position: relative;
  margin-bottom: 4rem;
  perspective: 1000rem;
}

.each_question .question_ttl_outside::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 8rem;
  height: 8rem;
  margin: 1.5rem 0 0 12rem;
  content: "";
  animation: rotate1 3s ease infinite;
}

.each_question:nth-of-type(1) .question_ttl_outside::before {
  background: url(../img/illust_001.svg) center center / cover no-repeat;
}

.each_question:nth-of-type(2) .question_ttl_outside::before {
  margin: .5rem 0 0 11.5rem;
  background: url(../img/illust_002.svg) center center / cover no-repeat;
}

.each_question:nth-of-type(3) .question_ttl_outside::before {
  background: url(../img/illust_003.svg) center center / cover no-repeat;
}

.each_question:nth-of-type(4) .question_ttl_outside::before {
  background: url(../img/illust_004.svg) center center / cover no-repeat;
}

@keyframes rotate1 {
  0%, 100% {
    rotate: 4deg;
  }

  40% {
    rotate: 14deg;
  }
}

.each_question .question_ttl_outside::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 4rem;
  height: 4rem;
  background: url(../img/shape_question.svg) center center / cover no-repeat;
  content: "";
  animation: rotateZ 6s infinite;
  rotate: 15deg;
}

.each_question:nth-of-type(1) .question_ttl_outside::after {
  margin: 0 0 0 15.5rem;
}

.each_question:nth-of-type(2) .question_ttl_outside::after {
  margin: 0 0 0 16rem;
}

.each_question:nth-of-type(3) .question_ttl_outside::after {
  margin: 0 0 0 16rem;
}

.each_question:nth-of-type(4) .question_ttl_outside::after {
  margin: .5rem 0 0 15.5rem;
}

@keyframes rotateZ {
  0%, 5%, 70%, 100% {
    transform: rotateY(0);
  }

  20%, 55% {
    transform: rotateY(360deg)
  }
}

.each_question .question_ttl_wrap {
  position: relative;
  padding-top: .5rem;
  overflow: clip;
}

.each_question .question_ttl_wrap::before {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 25rem;
  height: 25rem;
  border-radius: 50%;
  background: var(--color_01);
  content: "";
}

.each_question .question_num {
  position: relative;
  z-index: 1;
  width: 24rem;
  height: 6rem;
  margin: 0 auto;
  padding-top: 2rem;
  font-family: var(--font_eng);
  text-align: center;
  color: var(--color_02);
  overflow: hidden;
}

.each_question .question_num span {
  position: relative;
  padding: 0 4.5rem;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0;
}

.each_question .question_num span::before,
.each_question .question_num span::after {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 4rem;
  height: 4rem;
  content: "";
}

.each_question .question_num span::before {
  left: 0;
}

.each_question .question_num span::after {
  right: 0;
}

.each_question:nth-of-type(1) .question_num span::before,
.each_question:nth-of-type(1) .question_num span::after {
  background: url(../img/illust_006.svg) center center / cover no-repeat;
}

.each_question:nth-of-type(1) .question_num span::after {
  scale: -1 1;
}

.each_question:nth-of-type(2) .question_num span::before,
.each_question:nth-of-type(2) .question_num span::after {
  background: url(../img/illust_007.svg) center center / cover no-repeat;
}

.each_question:nth-of-type(2) .question_num span::after {
  scale: -1 1;
}

.each_question:nth-of-type(3) .question_num span::before {
  background: url(../img/illust_008.svg) center center / cover no-repeat;
}

.each_question:nth-of-type(3) .question_num span::after {
  background: url(../img/illust_009.svg) center center / cover no-repeat;
}

.each_question:nth-of-type(4) .question_num span::before {
  background: url(../img/illust_010.svg) center center / cover no-repeat;
}

.each_question:nth-of-type(4) .question_num span::after {
  background: url(../img/illust_011.svg) center center / cover no-repeat;
}

.each_question .question_num::after {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  height: 24rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: solid var(--color_02) .15rem;
  content: "";
  pointer-events: none;
}

.each_question .question_ttl {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 12rem;
  margin-top: -.55rem;
  background: var(--color_01);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}

.each_question .question_ttl::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  border: solid var(--color_02) .15rem;
  box-sizing: border-box;
  content: "";
}

.each_question .question_ttl::after {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 20.6rem;
  height: .4rem;
  margin-top: .4rem;
  background: var(--color_01);
  content: "";
}

.each_question .answer_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 0 4.2rem;
}

.each_question .answer_list li {
  box-shadow: 0 .3rem .6rem rgba(0, 0, 0, .2);
}

.each_question .answer_list li input {
  display: none;
}

.each_question .answer_list li label {
  display: block;
  height: 8rem;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  background: #fff;
  cursor: pointer;
  transition: background-color .3s, color .3s;
}

.each_question .answer_list li input:checked + label {
  background: var(--color_01);
  color: var(--color_02);
  font-weight: 700;
}

.each_question .each_btn {
  position: absolute;
  display: grid;
  place-items: center;
  bottom: 0;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: solid var(--color_01) .15rem;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: background-color .3s, color .3s;
}

.each_question .btn_back {
  right: 100%;
}

.each_question .btn_back:hover {
  background: #fff;
}

.each_question .btn_next {
  left: 100%;
  pointer-events: none;
}

.each_question .btn_next.clickable {
  background: var(--color_01);
  color: #fff;
  pointer-events: auto;
}

.each_question .each_btn span {
  position: relative;
  padding: .5rem 0 2rem;
  font-family: var(--font_eng);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
}

.each_question .each_btn span::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: -.5rem;
  mask-image: url(../img/arrow1.svg);
  mask-position: center center;
  mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/arrow1.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  background: var(--color_01);
  content: "";
  transition: background-color .3s;
}

.each_question .btn_next.clickable span::before {
  background: #fff;
}

.each_question .btn_back span::before {
  scale: -1 1;
}

.question_area .link_giftselection {
  position: fixed;
  z-index: 2;
  bottom: 0;
  left: 0;
  margin: 0 0 4rem 3rem;
  padding-left: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 1s;
}

.LP_page.active .question_area .link_giftselection {
  opacity: 1;
  transition-delay: 2s;
}

.question_area .link_giftselection::before,
.question_area .link_giftselection::after {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 1.2rem;
  height: .1rem;
  background: var(--color_01);
  content: "";
}

.question_area .link_giftselection::before {
  rotate: 45deg;
}

.question_area .link_giftselection::after {
  rotate: -45deg;
}
/*----------------------------診断*/

/*結果-----------------------------*/
.result_area {
  position: relative;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 1s;
}

.result_area.active {
  opacity: 1;
  height: auto;
  min-height: 100dvh;
  overflow: visible;
  pointer-events: auto;
}

.result_area.heightLimit {
  height: 100dvh;
  overflow: hidden;
}

.result_area .loadingScreen {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100dvh;
  background: var(--color_bg);
}

.result_area .loadingScreen.hidden {
  display: none;
}

.result_area.active .loadingScreen {
  animation: loadingScreen 1s 3.5s forwards;
}

.result_area.active .loadingScreen p {
  padding-left: 2rem;
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
}

.result_area.active .loadingScreen p span {
  display: block;
  margin-top: 3rem;
  font-family: var(--font_eng);
  font-size: 2rem;
  color: var(--color_03);
}

.loading_illust_wrap {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
}

.loading_illust {
  width: 7rem;
  opacity: 0;
}

.result_area.active .loading_illust {
  animation: loadingIllust 1.5s forwards;
}

.loading_illust:nth-of-type(1) {
  animation-delay: .6s !important;
}

.loading_illust:nth-of-type(2) {
  animation-delay: 1.2s !important;
}

.loading_illust:nth-of-type(3) {
  animation-delay: 1.8s !important;
}

.loading_illust:nth-of-type(4) {
  animation-delay: 2.4s !important;
}

@keyframes loadingIllust {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.eaach_result:has(input[name="result"]:not(:checked)) {
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.eaach_result:has(input[name="result"]:checked) {
  opacity: 1;
  height: auto;
  overflow: visible;
  padding: 8rem 0 0;
}

.eaach_result {
  width: 120rem;
  margin: 0 auto;
}

.eaach_result input {
  display: none;
}

.giftType_ttl {
  margin-bottom: 5rem;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
}

.giftType_ttl .txt_S {
  display: block;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.giftType_ttl .txt_eng {
  display: block;
  margin-top: 2rem;
  font-family: var(--font_cursive);
  font-size: 2.2rem;
  letter-spacing: 0;
  color: var(--color_03);
} 

.gift_list_wrap {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 11rem;
}

.gift_list_wrap::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 30rem;
  mask-image: url(../img/shape_heading_pc.svg);
  mask-position: center center;
  mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/shape_heading_pc.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  background: #fff;
  opacity: .6;
  content: "";
}

.gift_list_wrap::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 30rem);
  background: linear-gradient(rgba(255, 255, 255, .6) 60%, transparent);
  content: "";
}

.gift_list_wrap h3 {
  position: relative;
  width: 39rem;
  margin: 0 auto 2.5rem;
}

.gift_list_wrap h3 img {
  opacity: 0;
}

.gift_list_wrap h3::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask-image: url(../img/txt_002.svg);
  mask-position: center center;
  mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/txt_002.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  background: var(--color_03);
  content: "";
}

.gift_list_wrap h3::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 7rem;
  height: 7rem;
  margin-bottom: -1.5rem;
  mask-image: url(../img/illust_005.svg);
  mask-position: center center;
  mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/illust_005.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  background: var(--color_03);
  content: "";
}

.giftType_lead {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}

.mainitem_list_wrap {
  position: relative;
}

.gift_list_wrap > div::before,
.gift_list_wrap > div::after,
.gift_list_wrap > div > div::before,
.gift_list_wrap > div > div::after {
  margin-top: 10.3rem;
}

.gift_list_wrap > div::before,
.gift_list_wrap > div::after,
.gift_list_wrap > div > div::before,
.gift_list_wrap > div > div::after,
.mainitem_list_wrap::before,
.mainitem_list_wrap::after,
.mainitem_list_wrap > div::before,
.mainitem_list_wrap > div::after {
  position: absolute;
  width: 31rem;
  height: 25rem;
  content: "";
}

.gift_list_wrap > div::before,
.gift_list_wrap > div::after {
  top: 0;
  left: 0;
}

.gift_list_wrap > div > div::before,
.gift_list_wrap > div > div::after {
  top: 0;
  right: 0;
  scale: -1 1;
}

.mainitem_list_wrap::before,
.mainitem_list_wrap::after {
  bottom: 0;
  left: 0;
  scale: 1 -1;
}


.mainitem_list_wrap > div::before,
.mainitem_list_wrap > div::after {
  bottom: 0;
  right: 0;
  scale: -1 -1;
}

.gift_list_wrap > div::before,
.gift_list_wrap > div > div::after,
.mainitem_list_wrap::after,
.mainitem_list_wrap > div::before {
  background: url(../img/deco_sparkling1.svg) center center / cover no-repeat;
}

.gift_list_wrap > div::after,
.gift_list_wrap > div > div::before,
.mainitem_list_wrap::before,
.mainitem_list_wrap > div::after {
  background: url(../img/deco_sparkling2.svg) center center / cover no-repeat;
}

.gift_list_wrap > div::before,
.gift_list_wrap > div > div::before,
.mainitem_list_wrap::before,
.mainitem_list_wrap > div::before {
  animation: sparkling 4s infinite;
}

.gift_list_wrap > div::after,
.gift_list_wrap > div > div::after,
.mainitem_list_wrap::after,
.mainitem_list_wrap > div::after {
  animation: sparkling 4s 1s infinite reverse;
}


@keyframes sparkling {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  } 

  100% {
    opacity: 1;
  }
}

.mainitem_list_wrap > div {
  display: grid;
  place-items: center;
  min-height: 38rem;
  padding-bottom: 6rem;
}

.mainitem_list {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 9rem;
}


.mainitem_list.item_single {
  margin-top: 1rem;
}

.mainitem_list.item_double {
  margin-top: 5rem;
}

#Category4 .mainitem_list {
  margin-top: 2rem;
}

.mainitem_list li {
  display: flex;
}

.mainitem_list.item_single li {
  place-items: center;
}

.mainitem_list.item_double li {
  flex-direction: column;
  gap: 2.5rem;
  text-align: center;
}

.mainitem_list li .item_img {
  filter: drop-shadow(1.5rem 1rem .6rem rgba(0, 0, 0, .15));
}

#Category1 .mainitem_list li .item_img {
  height: 22rem;
}

#Category6 .mainitem_list li .item_img {
  height: 35rem;
}

#Category3 .mainitem_list li .item_img {
  height: 38rem;
  order: 2;
}

#Category2 .mainitem_list li .item_img {
  height: 35rem;
}

#Category4 .mainitem_list li .item_img {
  height: 32rem;
}

#Category5 .mainitem_list li .item_img {
  height: 25rem;
}

.mainitem_list li .item_img a {
  height: 100%;
}

.mainitem_list li .item_img img {
  width: auto;
  height: 100%;
}

#Category3 .mainitem_list li .txt_wrap {
  margin: 0 -8rem 12rem 0;
}

#Category2 .mainitem_list li .txt_wrap {
  margin: 20rem 0 0 -8rem;
}

#Category5 .mainitem_list li .txt_wrap {
  margin: 8rem 0 0 3rem;
}


.mainitem_list li .item_name {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .05em;
}

.mainitem_list li .item_name .item_brand {
  display: block;
  margin-bottom: .5rem;
  font-family: var(--font_mix);
  font-size: 1.5rem;
  letter-spacing: .05em;
}

.mainitem_list li .item_price_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mainitem_list li .item_price {
  font-family: var(--font_mix);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.mainitem_list li .item_price .txt_S {
  margin-left: .3rem;
  font-size: 1.1rem;
  letter-spacing: .05em;
}

.mainitem_list li .item_link {
  display: grid;
  place-items: center;
  width: 7.6rem;
  height: 2.6rem;
  padding-top: .2rem;
  border-radius: 10rem;
  background: var(--color_01);
  font-family: var(--font_eng);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.subitem_list_wrap {
  position: relative;
  margin-top: 2rem;
  padding: 5rem 5rem 0;
  perspective: 1000rem;
}

.subitem_list_wrap::before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  translate: -50% 0;
  width: 4rem;
  height: 4rem;
  background: url(../img/deco_sparkling3.svg) center center / cover no-repeat;
  content: "";
  animation: rotateZ 6s infinite;
}

.subitem_list_wrap h5 {
  margin-bottom: 3rem;
  font-size: 2.2rem;
  text-align: center;
}

.subitem_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5.5rem 3.5rem;
}

.subitem_list .item_img {
  margin-bottom: 1.2rem;
}

.subitem_list .item_name {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .05em;
}

.subitem_list .item_name .item_brand {
  display: block;
  margin-bottom: .6rem;
  font-family: var(--font_mix);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: .05em;
}

.subitem_list .item_price {
  font-family: var(--font_mix);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: .05em;
}

.subitem_list .item_price .txt_S {
  margin-left: .3rem;
  font-size: 1.1rem;
  letter-spacing: .05em;
}

.result_area .link_giftselection {
  width: fit-content;
  margin: 0 auto 9rem;
}

.result_area .link_giftselection a {
  display: grid;
  place-items: center;
  width: 33rem;
  height: 6rem;
  border-radius: 10rem;
  border: solid var(--color_01) .15rem;
  background: rgba(255, 255, 255, .5);
  transition: background-color .5s, color .5s;
}

.result_area .link_giftselection a:hover {
  background: var(--color_01);
  color: #fff;
}

.result_area .link_giftselection a span {
  position: relative;
  padding: .4rem 0 0 3rem;
  font-family: var(--font_mix);
  font-size: 1.6rem;
  font-weight: 500;
}

.result_area .link_giftselection a span::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 2.4rem;
  height: 2.4rem;
  mask-image: url(../img/arrow2.svg);
  mask-position: center center;
  mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/arrow2.svg);
  -webkit-mask-position: center center;
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  background: var(--color_01);
  content: "";
  transition: background-color .5s;
}

.result_area .link_giftselection a:hover span::before {
  background: #fff;
}

.bnr_holidayItem_wrap {
  position: relative;
  z-index: 1;
  padding: 25rem 0 13rem;
  margin-top: -3rem;
}

.bnr_holidayItem_wrap::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 18rem;
  background: url(../img/deco_holiday.svg) top left / 120rem auto repeat-x;
  content: "";
  opacity: .5;
}

.bnr_holidayItem_wrap::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 18rem);
  background: #fff;
  opacity: .5;
  content: "";
}

.bnr_holidayItem_wrap p {
  margin-bottom: 3rem;
  font-family: var(--font_mix);
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
}

.bnr_holidayItem {
  width: 90rem;
  margin: 0 auto;
  filter: drop-shadow(0 .3rem .6rem rgba(0, 0, 0, .15));
}

/*-----------------------------結果*/
/*SP----------------------------------------------------*/
@media screen and  (max-width:768px) {
#share {
  z-index: 10 !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s;
}

#share.active {
  opacity: 1;
  pointer-events: auto;
}

.share-txt {
  display: none;
}

.only_pc {
  display: none;
}

.page_inner::after,
.loadingScreen::after {
  background: url(../img/bg_002_sp.png) center center / cover no-repeat;
}

/*診断----------------------------*/
.question_area {
  padding: 3rem 0;
}

.main_ttl_wrap .logo_cosmekitchen {
  width: 14rem;
  margin: 0 auto 2.5rem;
}

.main_ttl {
  font-size: 2.2rem;
}

.main_ttl .txt_S {
  width: 8.5rem;
  margin-right: 1.2rem;
  border-radius: .2rem;
  border-width: .1rem;
  vertical-align: -.1em;
}

.main_ttl .txt_eng {
  margin-top: 1.5rem;
  font-size: 1.6rem;
}

.question_area .txt_start {
  margin-top: 3rem;
  font-size: 2.8rem;
}

.question_area .area_inner .main_ttl_wrap {
  margin-bottom: 2.5rem;
}

.question_area .area_inner .main_ttl {
  font-size: 1.8rem;
}

.question_area .area_inner .main_ttl .txt_S {
  width: 8rem;
  margin-right: .8rem;
  vertical-align: -.2em;
}

.question_area .area_inner .main_ttl .txt_eng {
  margin-top: 1.2rem;
  font-size: 1.4rem;
}

.each_question {
  width: 36rem;
}

.each_question:has(input[name="question"]:checked) {
  padding-bottom: 8rem;
}

.each_question .question_ttl_outside {
  margin-bottom: 2rem;
}

.each_question .question_ttl_outside::before {
  width: 6rem;
  height: 6rem;
  margin: .5rem 0 0 8rem;
}

.each_question:nth-of-type(2) .question_ttl_outside::before {
  margin: -.5rem 0 0 7.5rem;
}

.each_question .question_ttl_outside::after {
  width: 3rem;
  height: 3rem;
}

.each_question:nth-of-type(1) .question_ttl_outside::after {
  margin: -.5rem 0 0 10.7rem;
}

.each_question:nth-of-type(2) .question_ttl_outside::after {
  margin: -.5rem 0 0 11rem;
}

.each_question:nth-of-type(3) .question_ttl_outside::after {
  margin: 0 0 0 11.2rem;
}

.each_question:nth-of-type(4) .question_ttl_outside::after {
  margin: -.8rem 0 0 10rem;
}

.each_question .question_ttl_wrap {
  padding-top: .5rem;
}

.each_question .question_ttl_wrap::before {
  width: 17rem;
  height: 17rem;
}

.each_question .question_num {
  width: 16rem;
  height: 4rem;
  padding-top: 1.2rem;
}

.each_question .question_num span {
  padding: 0 3rem;
  font-size: 2.5rem;
}

.each_question .question_num span::before,
.each_question .question_num span::after {
  width: 2.5rem;
  height: 2.5rem;
}

.each_question .question_num::after {
  height: 16rem;
  border-width: .1rem;
}

.each_question .question_ttl {
  min-height: 7.5rem;
  font-size: 2rem;
}

.each_question:nth-of-type(2) .question_ttl {
  font-size: 1.7rem;
  letter-spacing: .05em;
}

.each_question .question_ttl::before {
  border-width: .1rem;
}

.each_question .question_ttl::after {
  width: 13.7rem;
  height: .4rem;
  margin-top: .4rem;
}

.each_question .answer_list {
  display: block;
  padding: 0 3.5rem;
}

.each_question .answer_list li:nth-of-type(n+2) {
  margin-top: 1rem;
}

.each_question .answer_list li label {
  height: 5.6rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.each_question .each_btn {
  width: 5.6rem;
  height: 5.6rem;
  border-width: .1rem;
}

.each_question .btn_back {
  right: auto;
  left: 0;
}

.each_question .btn_next {
  left: auto;
  right: 0;
}


.each_question .each_btn span {
  padding: .2rem 0 1.3rem;
  font-size: 1.2rem;
}

.each_question .each_btn span::before {
  width: 1.6rem;
  height: 1.6rem;
}

.question_area .link_giftselection {
  left: 50%;
  translate: -50% 0;
  margin: 0 0 3rem 0;
  padding-left: 1.8rem;
  font-size: 1.2rem;
}

.question_area .link_giftselection::before,
.question_area .link_giftselection::after {
  width: 1rem;
  height: .1rem;
}
/*----------------------------診断*/

/*結果-----------------------------*/
.result_area.active .loadingScreen p {
  padding-left: 1rem;
  font-size: 2.8rem;
}

.result_area.active .loadingScreen p span {
  margin-top: 2rem;
  font-size: 1.6rem;
}

.loading_illust_wrap {
  gap: 1rem;
  margin-top: 2.5rem;
}

.loading_illust {
  width: 5.5rem;
}

.eaach_result:has(input[name="result"]:checked) {
  padding: 5rem 0 0;
}

.eaach_result {
  width: 37rem;
}

.giftType_ttl {
  margin-bottom: 3rem;
  font-size: 3rem;
}

#Category3 .giftType_ttl {
  font-size: 2.7rem;
  letter-spacing: 0;
}

.giftType_ttl .txt_S {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.giftType_ttl .txt_eng {
  margin-top: 1.5rem;
  font-size: 1.4rem;
} 

.gift_list_wrap {
  padding: .6rem 0 7rem;
}

.gift_list_wrap::before {
  height: 18.4rem;
  mask-image: url(../img/shape_heading_sp.svg);
  -webkit-mask-image: url(../img/shape_heading_sp.svg);
}

.gift_list_wrap::after {
  height: calc(100% - 18.4rem);
}

.gift_list_wrap h3 {
  position: relative;
  width: 23rem;
  margin: 0 auto 4rem;
}

.gift_list_wrap h3::before {
  width: 5rem;
  height: 5rem;
  margin-bottom: -2.8rem;
}

.giftType_lead {
  font-size: 1.8rem;
}

.gift_list_wrap > div::before,
.gift_list_wrap > div::after,
.gift_list_wrap > div > div::before,
.gift_list_wrap > div > div::after {
  margin-top: 5.4rem;
}

.gift_list_wrap > div::before,
.gift_list_wrap > div::after,
.gift_list_wrap > div > div::before,
.gift_list_wrap > div > div::after,
.mainitem_list_wrap::before,
.mainitem_list_wrap::after,
.mainitem_list_wrap > div::before,
.mainitem_list_wrap > div::after {
  width: 16rem;
  height: 13.54rem;
}

.mainitem_list_wrap > div {
  min-height: 35rem;
  padding-bottom: 9rem;
}

.mainitem_list {
  gap: 2rem;
}

.mainitem_list.item_single {
  margin-top: 0;
}

.mainitem_list.item_double {
  margin-top: 2rem;
}

#Category4 .mainitem_list {
  margin-top: 2rem;
}

.mainitem_list.item_single li {
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mainitem_list.item_single li {
  gap: .5rem;
}

.mainitem_list.item_double li {
  gap: 2rem;
}

#Category1 .mainitem_list li .item_img {
  height: 11rem;
}

#Category6 .mainitem_list li .item_img {
  height: 22rem;
}

#Category3 .mainitem_list li .item_img {
  height: 30rem;
  order: unset;
}

#Category2 .mainitem_list li .item_img {
  height: 28rem;
}

#Category4 .mainitem_list li .item_img {
  height: 20rem;
}

#Category5 .mainitem_list li .item_img {
  height: 18rem;
}

#Category3 .mainitem_list li .txt_wrap {
  margin: 0;
}

#Category2 .mainitem_list li .txt_wrap {
  margin: 0;
}

#Category5 .mainitem_list li .txt_wrap {
  margin: 0;
}

.mainitem_list li .item_name {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.mainitem_list li .item_name .item_brand {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.mainitem_list li .item_price_wrap {
  gap: .8rem;
}

.mainitem_list li .item_price {
  font-size: 1.5rem;
}

.mainitem_list li .item_price .txt_S {
  margin-left: .2rem;
  font-size: 1rem;
}

.mainitem_list li .item_link {
  width: 5.2rem;
  height: 2rem;
  padding-top: .2rem;
  border-radius: 10rem;
  font-size: 1.1rem;
}

.subitem_list_wrap {
  margin-top: 1.5rem;
  padding: 3rem 1.8rem 0;
}

.subitem_list_wrap::before {
  width: 3rem;
  height: 3rem;
}

.subitem_list_wrap h5 {
  margin-bottom: 2.5rem;
  font-size: 1.8rem;
}

.subitem_list {
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.5rem;
}

.subitem_list .item_img {
  margin-bottom: 1rem;
}

.subitem_list .item_name {
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.subitem_list .item_name .item_brand {
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

.subitem_list .item_price {
  font-size: 1.5rem;
}

.subitem_list .item_price .txt_S {
  margin-left: .2rem;
  font-size: 1rem;
}

.result_area .link_giftselection {
  margin: 0 auto 7rem;
}

.result_area .link_giftselection a {
  width: 27rem;
  height: 4.8rem;
  border-width: .1rem;
}

.result_area .link_giftselection a span {
  padding: .3rem 0 0 2rem;
  font-size: 1.3rem;
}

.result_area .link_giftselection a span::before {
  width: 1.6rem;
  height: 1.6rem;
}

.bnr_holidayItem_wrap {
  padding: 12rem 0 7rem;
  margin-top: -3rem;
}

.bnr_holidayItem_wrap::before {
  height: 7.8rem;
  background: url(../img/deco_holiday.svg) top left / 52rem auto repeat-x;
}

.bnr_holidayItem_wrap::after {
  height: calc(100% - 7.8rem);
}

.bnr_holidayItem_wrap p {
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.bnr_holidayItem {
  width: 29rem;
}

/*-----------------------------結果*/

}
/*------------------------------------------------------SP*/


/*PC------------------------------------------------------*/
@media screen and  (min-width:769px) {
  .only_sp {
    display: none !important;
  }

}
/*------------------------------------------------------PC*/


/*レスポンシブ対応-------------------------------*/
@media screen and (max-width: 1600px) and (min-width: 769px) {
  html {
    font-size: calc(10 * (100vw / 1600));
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: calc(10 * (100vw / 390));
  }
}
/*-------------------------------レスポンシブ＆タブレット対応*/