@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}

html,
body {
  /* height: 100%; */
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form,
figure {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  letter-spacing: 0;
}

@media print, screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (max-width: 1080px) {
  html {
    font-size: 0.926vw;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  position: relative;
  color: #333;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  word-break: break-word;
  line-break: strict;
}
body.is-fixed {
  overscroll-behavior-y: none;
  overflow: hidden;
}
body > .bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100lvh;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, 0, -1px);
}

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

.container {
  max-width: 400px;
  margin: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: #f1f1f1;
}
@media print, screen and (max-width: 1080px) {
  .container {
    max-width: 37.5rem;
  }
}
@media screen and (max-width: 750px) {
  .container {
    max-width: 100%;
  }
}

a {
  text-decoration: none;
  color: inherit;
}
@media print, screen and (min-width: 751px) {
  a {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.6;
  }
}

img {
  width: 100%;
  height: auto;
}

sup {
  font-size: 60%;
}

.is-fadeUp {
  transition: all 0.8s ease-in-out;
  opacity: 0;
  transform: translateY(30px);
}

.is-fadeUp.is-active,
.is-active .is-fadeUp {
  opacity: 1;
  transform: translateY(0);
}

.is-fadeUpLeft {
  transition: all 0.8s ease-in-out;
  opacity: 0;
  transform: translateX(-30px);
}

.is-fadeUpLeft.is-active {
  opacity: 1;
  transform: translateX(0);
}

.is-fadeUpRight {
  transition: all 0.8s ease-in-out;
  opacity: 0;
  transform: translateX(30px);
}

.is-fadeUpRight.is-active {
  opacity: 1;
  transform: translateX(0);
}

.header {
  position: relative;
  z-index: 1;
}
.header__logo {
  position: fixed;
  top: 4rem;
  transform: translateX(-50%);
  left: calc(50% - 40rem);
  width: 20rem;
}
.header__menuList {
  position: fixed;
  left: calc(50% + 38.6rem);
  transform: translateX(-50%);
  bottom: 7rem;
}
.header__menuItem.is-btns {
  margin-top: 2.2rem;
}
.header__menuItem > a {
  color: #6395e1;
  padding: 0.85rem 0 0.85rem 1.2em;
  display: block;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  font-weight: 500;
  text-indent: -1.2em;
  white-space: nowrap;
  font-weight: 500;
}
.header__menuItem__btns {
  width: 22rem;
}
.header__menuItem__btns .btns__btn {
  width: 100%;
  display: grid;
  background-color: #8faedd;
  border-radius: 1000px;
  min-height: 5rem;
  border: none;
  color: #fff;
  place-content: center;
  font-size: 1.4rem;
  position: relative;
}
.header__menuItem__btns .btns__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2rem;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.header__menuItem__btns .btns__btn.modal {
  font-size: 1.2rem;
  letter-spacing: -0.05em;
}
.header__menuItem__btns .btns__btn + .btns__btn {
  margin-top: 2rem;
}

.btns__btn {
  cursor: pointer;
}
@media print, screen and (min-width: 751px) {
  .btns__btn {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .btns__btn:hover {
    opacity: 0.6;
  }
}

.footer {
  padding: 4rem 0 14rem;
  background-color: #fcfcfc;
}
.footer__txt {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  text-align: center;
}
.footer__copyrights {
  margin-top: 5rem;
  font-size: 1.4rem;
  text-align: center;
}
.footer .btn-wrapper {
  margin: 3rem auto 0;
  max-width: 36rem;
}

.c-btn {
  background-color: #000;
  color: #fff;
  border-radius: 1000px;
  min-height: 8rem;
  display: grid;
  place-content: center;
  position: relative;
  border: 2px solid #000;
  font-size: 2rem;
  line-height: 1.75;
  transition: 0.3s background-color, 0.3s color;
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 1 !important;
    background-color: #fff;
    color: #000;
  }
  .c-btn:hover::after {
    border-color: #000;
  }
}
.c-btn::after {
  transition: 0.3s border-color;
  content: "";
  position: absolute;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 3rem;
  transform: translateY(-50%) rotate(45deg);
}

.color-main {
  color: #235d8f;
}

.color-white {
  color: #fff;
}

.txt {
  font-size: 1.6rem;
  line-height: 2.25;
}

.center {
  text-align: center;
}

.btn-search {
  display: grid;
  filter: brightness(1) drop-shadow(4px 5px 4px rgba(0, 0, 0, 0.1));
  transition: 0.3s filter;
}
@media (any-hover: hover) {
  .btn-search:hover {
    opacity: 1 !important;
    filter: brightness(1.05) drop-shadow(4px 5px 4px rgba(0, 0, 0, 0.1));
  }
}
.btn-search img {
  width: 100%;
  grid-area: 1/1;
  grid-row: 1/1;
}
.btn-search p {
  grid-area: 1/1;
  grid-row: 1/1;
  position: relative;
  z-index: 2;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
  color: #fff;
  padding-top: 2rem;
  padding-left: 12rem;
  text-shadow: 0px 0px 6px rgba(119, 0, 0, 0.5);
}

.kv h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sec01 {
  padding-top: 5rem;
  background: url(../img/bg_sec01.jpg) top center/100% 100%;
}
.sec01 .section__ttl {
  text-align: center;
  color: #235d8f;
  font-size: 2.4rem;
  line-height: 1.6666666667;
  font-weight: 600;
}
.sec01 .txt {
  margin-top: 1.6rem;
}
.sec01 .note {
  font-size: 1.1rem;
  line-height: 1.2;
  padding-top: 0.5rem;
  text-align: center;
}
.sec01 .list {
  margin-top: 1.5rem;
}
.sec01 .list li {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.3333333333;
  font-weight: 500;
  color: #235d8f;
}
.sec01 .ttl02 {
  text-align: center;
  color: #6395e1;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
}
.sec01 .ttl02 span {
  font-weight: 600;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 71%, rgba(255, 237, 0, 0.4) 70%, rgba(255, 237, 0, 0.4) 100%);
}
.sec01 .ttl02::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 1rem);
  left: 50%;
  width: 7.1rem;
  height: 1.8rem;
  background: url(../img/line.svg) no-repeat center/contain;
  transform: translateX(-50%);
}

.recommend {
  padding: 2rem 0.5rem 3.4rem;
  background-color: #fff;
  box-shadow: 5px 5px 15px -5px #b0b0b0;
  position: relative;
  margin: 2.2rem 2rem 8rem;
  border-radius: 2rem;
}
.recommend::after {
  content: "";
  position: absolute;
  top: calc(100% - 15px);
  left: 50%;
  height: 5.2rem;
  width: 6px;
  background: url(../img/dots.svg) no-repeat center/contain;
  transform: translateX(-50%);
}
.recommend .ttl {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.6666666667;
  color: #235d8f;
}
.recommend .ttl span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 71%, rgba(143, 174, 221, 0.4) 70%, rgba(143, 174, 221, 0.4) 100%);
}
.recommend ul {
  width: fit-content;
  margin: 2rem auto 0;
}
.recommend li {
  position: relative;
  padding-left: 3rem;
}
.recommend li span {
  font-weight: 600;
}
.recommend li {
  font-size: 1.6rem;
  font-weight: 500;
}
.recommend li + li {
  margin-top: 2.4rem;
}
.recommend li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  background: url(../img/icn_check.svg) no-repeat center/contain;
  top: -0.05em;
}

.sec02 {
  background: url(../img/bg_sec02.jpg) no-repeat top center/100% 100%;
  padding-inline: 2rem;
  padding-bottom: 4.3rem;
}
.sec02 .txt {
  letter-spacing: 0.03em;
  padding-inline: 1rem;
}
.sec02 .note {
  margin-top: 1rem;
  font-size: 1.1rem;
}
.sec02 .ttl {
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.6363636364;
  font-weight: 400;
  color: #235d8f;
  margin-top: 0.5rem;
}
.sec02 .img {
  margin-block: 2rem;
}
.sec02 .img img {
  width: 100%;
}
.sec02 .morning {
  padding-bottom: 6rem;
}
.sec02 .daytime {
  padding-bottom: 3.5rem;
}
.sec02 .daytime .memo::before {
  left: auto;
  right: 1.5rem;
}
.sec02 .memo {
  border-radius: 2rem;
  padding: 4.2rem 1.8rem 2.4rem 2.2rem;
  position: relative;
  background-image: url(../img/img_mesh.png);
  background-repeat: repeat;
  background-size: 360px 370px;
  box-shadow: 0px 7px 15px -5px rgba(0, 0, 0, 0.2);
  margin-top: 3.5rem;
}
.sec02 .memo.pink {
  background-color: #f6e3ed;
}
.sec02 .memo.pink .ttl-point {
  color: #b2819c;
}
.sec02 .memo.pink .ttl-point span::after {
  background-color: #b2819c;
}
.sec02 .memo.pink .ttl-situation {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 55%, rgba(241, 176, 217, 0.25) 55%, rgba(241, 176, 217, 0.25) 100%);
}
.sec02 .memo.blue {
  background-color: #d4e3f3;
}
.sec02 .memo.blue .ttl-point {
  color: #6590a4;
}
.sec02 .memo.blue .ttl-point span::after {
  background-color: #6590a4;
}
.sec02 .memo.blue .ttl-situation span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 55%, rgba(99, 149, 225, 0.15) 55%, rgba(99, 149, 225, 0.15) 100%);
}
.sec02 .memo.purple {
  background-color: #ead7ef;
}
.sec02 .memo.purple .ttl-point {
  color: #5b3b8c;
}
.sec02 .memo.purple .ttl-point span::after {
  background-color: #5b3b8c;
}
.sec02 .memo.purple .ttl-situation span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 55%, rgba(171, 133, 228, 0.2) 55%, rgba(171, 133, 228, 0.2) 100%);
}
.sec02 .memo::before {
  content: "";
  position: absolute;
  width: 9rem;
  height: 4rem;
  background: url(../img/memo_parts.png) no-repeat center/contain;
  bottom: calc(100% - 1rem);
}
.sec02 .memo .item {
  background-color: #fff;
  position: relative;
  border-radius: 1rem;
  padding: 2.6rem 1.1rem 1rem 2rem;
}
.sec02 .memo .item:nth-of-type(even) {
  padding-top: 2rem;
}
.sec02 .memo .item:nth-of-type(even) .ttl-point {
  right: 0;
  left: auto;
}
.sec02 .memo .item + .item {
  margin-top: 4rem;
}
.sec02 .memo .item .ttl-point {
  font-size: 1.8rem;
  width: fit-content;
  background-color: #fff;
  position: absolute;
  border-radius: 1rem;
  bottom: calc(100% - 1.4rem);
  padding: 0.9rem 2rem 1rem 2rem;
  left: 0;
  z-index: 10;
}
.sec02 .memo .item .ttl-point span {
  position: relative;
}
.sec02 .memo .item .ttl-point span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: -2px;
}
.sec02 .memo .item .ttl-situation {
  font-size: 1.8rem;
  line-height: 1.1111111111;
  font-weight: 500;
  width: fit-content;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.sec02 .memo .item .list-txt {
  font-size: 1.4rem;
  line-height: 2;
}
.sec02 .btn-wrapper {
  margin-top: 3.7rem;
}

.sec03 {
  padding: 4rem 2rem 4.5rem;
  background: url(../img/bg_sec03.jpg) no-repeat top center/100% 100%;
}
.sec03 .main-ttl {
  max-width: 30rem;
  margin: 2rem auto 0;
}
.sec03 .catch {
  margin-block: 2rem 2.5rem;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.6666666667;
  color: #6395e1;
  font-weight: 400;
}
.sec03 .catch span {
  font-weight: 500;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 71%, rgba(143, 174, 221, 0.4) 70%, rgba(143, 174, 221, 0.4) 100%);
}
.sec03 .note {
  font-size: 1.1rem;
  text-align: center;
}
.sec03 .content {
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 2rem;
  position: relative;
}
.sec03 .content.c01 {
  padding-top: 0.8rem;
  padding-bottom: 1.8rem;
  margin-top: 6.5rem;
}
.sec03 .content.c01 .img-wrapper {
  width: 15rem;
}
.sec03 .content.c01 .ttl-wrapper {
  margin-top: -1rem;
  display: flex;
}
.sec03 .content.c01 .ttl-wrapper p {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.sec03 .content.c01 .ttl-wrapper p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../img/dots_g.svg) no-repeat top center/auto 100%;
  height: 100%;
  width: 2px;
}
.sec03 .content.c02 {
  padding: 3.5rem 2rem 3.2rem;
  margin-top: 6rem;
}
.sec03 .content.c02 .ttl {
  max-width: 30rem;
  margin-inline: auto;
}
.sec03 .content.c02 .txt {
  margin-top: 1.2rem;
  line-height: 2;
}
.sec03 .content.c02 .note {
  margin-top: 1.4rem;
}
.sec03 .content.c02 .img-wrapper.img01 {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.sec03 .content.c02 .img-wrapper.img02 {
  margin-top: 1rem;
}
.sec03 .content.c02 .txt-reason {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
  text-align: center;
  color: #6395e1;
  margin-top: 1.6rem;
  font-weight: 400;
}
.sec03 .content.c02 .txt-reason span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 71%, rgba(99, 149, 225, 0.15) 70%, rgba(99, 149, 225, 0.15) 100%);
}
.sec03 .check {
  position: absolute;
  width: 12rem;
  top: -3rem;
  left: -1rem;
}
.sec03 .hari-ttl {
  width: fit-content;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #6395e1;
  margin: 0 0 0 2.6rem;
  font-weight: 400;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 71%, rgba(143, 174, 221, 0.4) 70%, rgba(143, 174, 221, 0.4) 100%);
}
.sec03 .component.cpn01 {
  position: absolute;
  right: 0;
  top: -4rem;
}
.sec03 .component.cpn01 .c-ttl {
  text-align: right;
  margin-right: 1.8rem;
}
.sec03 .component.cpn01 .c-ttl .main {
  color: #235d8f;
}
.sec03 .component.cpn01 .c-ttl .sub {
  margin-right: -1rem;
}
.sec03 .component.cpn01 .img-wrapper {
  margin-left: auto;
}
.sec03 .component.cpn02 {
  margin-top: 1.2rem;
}
.sec03 .component.cpn02 .c-ttl {
  margin-left: 1.8rem;
}
.sec03 .component.cpn02 .c-ttl .main {
  color: #b19d62;
}
.sec03 .component .c-ttl .main {
  font-size: 2rem;
}
.sec03 .component .c-ttl .sub {
  display: block;
  width: fit-content;
  font-size: 1.4rem;
  margin-top: 1rem;
}

.ttl-dotline {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 300;
  color: #6395e1;
  position: relative;
  padding-bottom: 1.6rem;
}
.ttl-dotline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  max-width: 20rem;
  bottom: 0;
  height: 2px;
  background-image: radial-gradient(circle, #6395e1 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 7px 2px;
  margin-inline: auto;
}

.sec04 {
  padding: 5.5rem 2rem 4.7rem;
  background: url(../img/bg_sec04.jpg) no-repeat top center/100% 100%;
}
.sec04 .note {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-top: 2rem;
  padding-left: 1em;
  text-indent: -1em;
}
.sec04 .note + .note {
  margin-top: 0;
}
.sec04 .btn-wrapper {
  margin-top: 3rem;
}
.sec04 .main-ttl {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 2.4rem;
  line-height: 1.6666666667;
  color: #235d8f;
}
.sec04 .main-ttl + .txt {
  margin-top: 2rem;
}
.sec04 .txt {
  line-height: 2;
}
.sec04 .img-products {
  margin: 3rem -2rem;
}

.ttl-found {
  max-width: 30rem;
  margin-inline: auto;
}

.ttl-guide {
  color: #6395e1;
  margin-top: 2rem;
}
.ttl-guide .en {
  font-size: 2.4rem;
  display: block;
  text-align: center;
}
.ttl-guide .jp {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-size: 1.6rem;
}

.graph {
  margin-top: 2.6rem;
  position: relative;
}
.graph a {
  position: absolute;
  display: block;
  width: 10.4rem;
  height: 10.4rem;
}
.graph a.prdct01 {
  top: 1.5rem;
  left: 6.7rem;
}
.graph a.prdct02 {
  bottom: 5.9rem;
  right: 1.9rem;
}
.graph a.prdct03 {
  top: 5.1rem;
  right: 5.3rem;
}
.graph a.prdct04 {
  bottom: 8.9rem;
  left: 8.9rem;
}
.graph img {
  width: 100%;
}

.product {
  margin-top: 8.5rem;
  border-radius: 5rem;
  background-color: #fff;
  box-shadow: 4px 9px 22px -9px #a1a1a1;
  display: block;
}
@media (any-hover: hover) {
  .product a:hover {
    opacity: 1 !important;
  }
}
.product.purple .product-ttl {
  color: #6d6d84;
}
.product.purple .list {
  margin-left: 1rem;
}
.product.purple .list li i {
  color: #9696af;
}
@media (any-hover: hover) {
  .product.purple a:hover .link-txt {
    background-color: #8383af;
  }
}
.product.purple .link-txt {
  background-color: #9696af;
}
.product.yellow .product-ttl {
  color: #b19d62;
}
.product.yellow .list {
  margin-right: 1em;
}
.product.yellow .list li i {
  color: #eacf81;
}
@media (any-hover: hover) {
  .product.yellow a:hover .link-txt {
    background-color: #c5a13a;
  }
}
.product.yellow .link-txt {
  background-color: #eacf81;
}
.product.blue .product-ttl {
  color: #235d8f;
}
.product.blue .list li i {
  color: #6395e1;
}
@media (any-hover: hover) {
  .product.blue a:hover .link-txt {
    background-color: #6395e1;
  }
}
.product.blue .link-txt {
  background-color: #8faedd;
}
.product.green .product-ttl {
  color: #5e9f85;
}
.product.green .list {
  margin-left: 0.5em;
}
.product.green .list li i {
  color: #8bc7af;
}
@media (any-hover: hover) {
  .product.green a:hover .link-txt {
    background-color: #68c09d;
  }
}
.product.green .link-txt {
  background-color: #8bc7af;
}
.product .link-txt {
  display: grid;
  min-height: 6rem;
  background-color: pink;
  place-content: center;
  border-bottom-right-radius: 5rem;
  border-bottom-left-radius: 5rem;
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  transition: 0.3s background-color;
}
.product .link-txt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.6rem;
  transform: translateY(-50%) rotate(45deg);
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.product-inner {
  padding: 2.2rem 2rem 2.4rem;
}
.product-inner .img-ttl-wrapper {
  display: flex;
  align-items: flex-end;
  column-gap: 1rem;
  margin-top: -6.4rem;
}
.product-inner .product-img {
  width: 12.8rem;
  flex-shrink: 0;
}
.product-inner .ttl-wrapper {
  padding-bottom: 1.8rem;
}
.product-inner .product-ttl {
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 500;
}
.product-inner .price {
  font-size: 1.6rem;
  margin-top: 0.8rem;
}
.product-inner .price span {
  font-size: 1.2rem;
}
.product-inner .info {
  margin-top: 0.8rem;
  font-size: 1.2rem;
}
.product-inner .list {
  margin-top: 2.8rem;
}
.product-inner .list li i {
  font-style: normal;
  flex-shrink: 0;
}
.product-inner .list li {
  display: flex;
  font-size: 1.6rem;
  line-height: 1.25;
}
.product-inner .list li + li {
  margin-top: 1.5rem;
}

.component-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.8rem;
  row-gap: 1rem;
}
.component-list li {
  width: 15.3rem;
  position: relative;
  z-index: 1;
  height: 2.8rem;
  display: grid;
  align-items: center;
  text-align: center;
  padding-bottom: 0.2rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
.component-list li.black {
  background-image: url(../img/frame_black.svg);
}
.component-list li.blue {
  color: #6395e1;
  background-image: url(../img/frame_blue.svg);
}
.component-list li.yellow {
  color: #dbb33f;
  background-image: url(../img/frame_yellow.svg);
}
.component-list li span {
  position: relative;
  z-index: 1;
}

.sec05 {
  background: url(../img/bg_sec05.jpg) no-repeat top center/100% 100%;
  padding-block: 5rem 6.6rem;
}
.sec05 .main-ttl {
  text-align: center;
  font-size: 2.4rem;
  color: #6395e1;
  margin-top: 2.4rem;
}
.sec05 .img {
  max-width: 25rem;
  margin: 2rem auto 0;
}
.sec05 .ttl-onepoint {
  display: flex;
  column-gap: 1.8rem;
  align-items: center;
  margin-top: 3rem;
  justify-content: center;
}
.sec05 .ttl-onepoint i {
  flex-shrink: 0;
  width: 9rem;
}
.sec05 .ttl-onepoint {
  font-size: 2.2rem;
  line-height: 1.4545454545;
}
.sec05 .ttl-onepoint span {
  display: block;
  width: fit-content;
  padding: 0.2rem;
}
.sec05 .ttl-onepoint .border {
  border: 0.5px solid #6395e1;
  color: #6395e1;
  line-height: 1;
  display: block;
  font-weight: 500;
  padding-bottom: 0.4rem;
}
.sec05 .txt {
  font-size: 1.6rem;
  line-height: 1.875;
  max-width: 30rem;
  margin: 2.5rem auto 0;
}

.sec06 {
  padding: 7rem 2rem 2.3rem;
  background-color: #fff;
}
.sec06 .series {
  border: 1px solid #b19d62;
  border-radius: 2rem;
  position: relative;
  padding-block: 3.7rem 3.8rem;
  background: linear-gradient(146deg, rgba(255, 255, 255, 0) 57%, rgba(210, 184, 110, 0.468) 86%);
}
.sec06 .series .txt {
  margin-top: 2.4rem;
  text-align: center;
  font-size: 1.8rem;
}
.sec06 .ttl {
  font-size: 2.4rem;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  background-color: #fff;
  width: fit-content;
  margin-inline: auto;
  font-family: "Noto Serif JP", serif;
  color: #b19d62;
  position: absolute;
  top: -1em;
  left: 0;
  right: 0;
  margin-inline: auto;
  padding-inline: 0.6em;
}
.sec06 .img {
  width: 28rem;
  margin-inline: auto;
}
.sec06 .ttl-series {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  color: #7e7044;
  font-size: 2.4rem;
  font-weight: 600;
}
.sec06 .btn-wrapper {
  width: 32rem;
  margin: 2.8rem auto 0;
}
.sec06 .note {
  margin-top: 2rem;
  font-size: 1.1rem;
  line-height: 1.2;
}

.series-btn {
  min-height: 6rem;
  border-radius: 0.5rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 600;
  display: grid;
  place-content: center;
  box-shadow: 1px 10px 15px -9px #a1a1a1;
  background: linear-gradient(90deg, rgb(137, 110, 35) 0%, rgb(195, 165, 80) 100%);
  position: relative;
}
.series-btn::before {
  border-radius: 0.5rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(105, 100, 83) 0%, rgb(53, 50, 42) 100%);
  opacity: 0;
  transition: 0.3s opacity;
}
.series-btn span {
  position: relative;
  z-index: 10;
}
@media (any-hover: hover) {
  .series-btn:hover {
    opacity: 1 !important;
  }
  .series-btn:hover::before {
    opacity: 1;
  }
}

.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  padding: 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.3s opacity;
}
.fixed.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fixed__btn {
  width: 17.6rem;
  height: 8rem;
  border-radius: 1000px;
  border: 1px solid #6395e1;
  display: flex;
}
.fixed__btn.white {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  color: #6395e1;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding-top: 0.6rem;
}
.fixed__btn.white span {
  font-size: 0.9rem;
  line-height: 2.2222222222;
  font-weight: 400;
  letter-spacing: 0;
}
.fixed__btn.blue {
  background-color: #6395e1;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
  column-gap: 1rem;
}

/* ------------------------------
    clearfix
------------------------------ */
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* End Hack */
.modal-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  display: none;
  z-index: 1000;
}
.modal-content.is-show {
  display: block;
}

.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 5;
}

.modal-inner {
  position: relative;
  background-color: #fff;
  width: 37.5rem;
  margin-inline: auto;
  padding: 2.5rem;
  border-radius: 1rem;
  z-index: 10;
}

.popup__ttl {
  text-align: center;
  font-size: 1.6rem;
}

.popup__list {
  margin-top: 1.7rem;
}

.popup__item + .popup__item {
  margin-top: 1rem;
}
.popup__item a {
  border-radius: 100px;
  background-color: #6395e1;
  color: #fff;
  font-size: 1.4rem;
  padding: 1.8rem 2.3rem;
  display: block;
  position: relative;
}
.popup__item a::after {
  content: "";
  position: absolute;
  width: 1.7rem;
  height: 1.7rem;
  background: url(../img/popup_icon.svg) no-repeat center/contain;
  right: 2.4rem;
  transform: translateY(-50%);
  top: 50%;
}

.popup__note {
  margin-top: 1.8rem;
  font-size: 1.2rem;
  line-height: 1.6666666667;
}

.modal-close {
  background-color: transparent;
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 1rem;
  right: 1rem;
  border: none;
}
@media print, screen and (min-width: 751px) {
  .modal-close {
    cursor: pointer;
    transition: opacity 0.3s;
  }
  .modal-close:hover {
    opacity: 0.6;
  }
}
.modal-close {
  cursor: pointer;
}
.modal-close::before, .modal-close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #707070;
  top: 50%;
  left: 0;
  right: 0;
}
.modal-close::before {
  transform: rotate(45deg);
}
.modal-close::after {
  transform: rotate(-45deg);
}/*# sourceMappingURL=index.css.map */