@charset "UTF-8";
/* STYLES */
/* ====================
  basis(common)
==================== */
html {
  scroll-behavior: smooth;
  font-size: 0.6944444444vw;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
    scroll-padding-top: 6rem;
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #F0F0F0;
  background-image: url("../img/bg-texture-k5@2x.png");
  background-repeat: repeat;
  background-position: center;
  background-size: 50%;
  background-attachment: fixed;
}
@media screen and (min-width: 1440px) {
  body {
    padding: 5.6rem 0;
    margin: 0;
  }
}

.wrapper {
  background: #F8F8F8;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (min-width: 1440px) {
  .wrapper {
    border-radius: 2rem;
    overflow: hidden;
  }
}

/* loading */
#loading {
  width: 100dvw;
  height: 100dvh;
  transition: all 1s;
  background: linear-gradient(to right, #D798BD, #66CAE6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading .loading_logo {
  width: 200px;
}
#loading .spinner {
  margin: 0 auto;
  width: 70px;
  text-align: center;
}
#loading .spinner > div {
  width: 18px;
  height: 18px;
  background-color: #FFF;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
#loading .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
#loading .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* ====================
  header(common)
==================== */
header.header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  pointer-events: none;
}
header.header .header_inner {
  max-width: 128rem;
  padding: 1.6rem 2.4rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header.header .header_inner {
    padding: 1.2rem;
    justify-content: flex-start;
    gap: 1.2rem;
  }
}
header.header .header_inner .logo_chibiroid {
  pointer-events: auto;
  width: 13.6rem;
}
@media screen and (max-width: 768px) {
  header.header .header_inner .logo_chibiroid {
    width: 8rem;
  }
}
header.header .header_inner .logo_chibiroid a, header.header .header_inner .logo_chibiroid span {
  display: block;
}
header.header .header_inner .brand_title {
  pointer-events: auto;
  font-size: 1.6rem;
  padding: 0.5em 1em;
  background: #F8F8F8;
  border-radius: 100vh;
  color: rgba(0, 0, 0, 0.75);
}
@media screen and (max-width: 768px) {
  header.header .header_inner .brand_title {
    font-size: 1.2rem;
  }
}
header.header .header_inner .brand_title p br {
  display: none;
}
@media screen and (max-width: 768px) {
  header.header .header_inner .brand_title p br {
    display: block;
  }
}
header.header .header_inner input.drawer_hidden {
  display: none;
}
header.header .header_inner label.drawer_open {
  pointer-events: auto;
  display: none;
  width: 4.8rem;
  height: 4.8rem;
  background: linear-gradient(to right, #D798BD, #66CAE6);
  border-radius: 100vh;
  padding: 2.3rem 1.4rem;
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 30;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  header.header .header_inner label.drawer_open {
    display: block;
  }
}
header.header .header_inner label.drawer_open span, header.header .header_inner label.drawer_open span::before, header.header .header_inner label.drawer_open span:after {
  content: "";
  display: block;
  height: 0.2rem;
  width: 2rem;
  background-color: #FFF;
  border-radius: 100vh;
  transition: 0.2s;
  position: absolute;
}
header.header .header_inner label.drawer_open span::before {
  bottom: 0.6rem;
}
header.header .header_inner label.drawer_open span:after {
  top: 0.6rem;
}
header.header .header_inner #drawer-input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
header.header .header_inner #drawer-input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
header.header .header_inner #drawer-input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
header.header .header_inner #drawer-input:checked ~ .drawer-menu {
  bottom: 0;
  animation: drawerFadeIn 0.2s;
}
@keyframes drawerFadeIn {
  0% {
    opacity: 0;
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
@media screen and (max-width: 768px) {
  header.header .header_inner .drawer-menu {
    pointer-events: none;
    width: 100%;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.8);
    position: fixed;
    left: 0;
    bottom: -100dvh;
    padding: 7.2rem 1.2rem 0;
  }
}
header.header .header_inner nav.global_nav {
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  background: linear-gradient(to right, #D798BD, #66CAE6);
  border-radius: 100vh;
  line-height: 1;
  padding: 0.4rem 0.4rem 0.4rem 4rem;
}
@media screen and (max-width: 768px) {
  header.header .header_inner nav.global_nav {
    flex-direction: column;
    border-radius: 2rem;
    padding: 4rem;
  }
}
header.header .header_inner nav.global_nav .mobile_nav_logo {
  display: none;
}
@media screen and (max-width: 768px) {
  header.header .header_inner nav.global_nav .mobile_nav_logo {
    display: block;
    max-width: 21.6rem;
  }
}
header.header .header_inner nav.global_nav ul.main_nav {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 1.8rem;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 3.2rem;
}
@media screen and (max-width: 768px) {
  header.header .header_inner nav.global_nav ul.main_nav {
    flex-direction: column;
    gap: 3.2rem;
    font-size: 2.4rem;
  }
}
header.header .header_inner nav.global_nav ul.main_nav li {
  white-space: nowrap;
}
header.header .header_inner nav.global_nav ul.main_nav li a {
  display: block;
}
@media screen and (max-width: 768px) {
  header.header .header_inner nav.global_nav ul.main_nav li a {
    text-decoration: underline;
  }
  header.header .header_inner nav.global_nav ul.main_nav li a:hover {
    text-decoration: none;
  }
}
header.header .header_inner nav.global_nav .social_share {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.8rem;
  background: #FFF;
  border-radius: 100vh;
  padding: 1.6rem 2.4rem;
}
@media screen and (max-width: 768px) {
  header.header .header_inner nav.global_nav .social_share {
    font-size: 2rem;
    gap: 1.2rem;
  }
}
header.header .header_inner nav.global_nav .social_share p {
  white-space: nowrap;
}
header.header .header_inner nav.global_nav .social_share ul.social_share_list {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.2rem;
}
@media screen and (max-width: 768px) {
  header.header .header_inner nav.global_nav .social_share ul.social_share_list {
    font-size: 2.4rem;
    gap: 0 1.6rem;
  }
}
header.header .header_inner nav.global_nav .social_share ul.social_share_list li.sns_x a {
  color: #000;
}
header.header .header_inner nav.global_nav .social_share ul.social_share_list li.sns_line a {
  color: #06C755;
}
header.header .header_inner nav.global_nav .social_share ul.social_share_list li.sns_facebook a {
  color: #1877F2;
}

/* ====================
  key visual(@index)
==================== */
.kv {
  width: 100%;
  overflow-x: hidden;
}
.kv .kv_inner {
  background-image: url("../img/kv-bg.webp");
  background-size: cover;
  background-position: bottom 12rem center;
  background-repeat: no-repeat;
}
.kv .kv_inner .kv_copy {
  margin: 0 auto;
  padding: 15rem 0 0;
  max-width: 48rem;
}
@media screen and (min-width: 1440px) {
  .kv .kv_inner .kv_copy {
    padding: 9.6rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .kv .kv_inner .kv_copy {
    width: 80%;
    padding: 10rem 4rem 0;
  }
}
.kv .kv_inner .kv_products {
  display: flex;
  justify-content: center;
  align-items: top;
  padding: 5rem 0 0;
}
@media screen and (max-width: 768px) {
  .kv .kv_inner .kv_products {
    padding: 4rem 1.2rem 0;
  }
}
.kv .kv_inner .kv_products .product {
  width: 42rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .kv .kv_inner .kv_products .product {
    width: 50%;
  }
}
.kv .kv_inner .kv_products .product .product_img {
  width: 44rem;
}
@media screen and (max-width: 768px) {
  .kv .kv_inner .kv_products .product .product_img {
    width: 100%;
  }
}
.kv .kv_inner .kv_products .product .product_img img {
  margin-left: -1rem;
}
@media screen and (max-width: 768px) {
  .kv .kv_inner .kv_products .product .product_img img {
    margin-left: 0;
  }
}
.kv .kv_inner .kv_products .product .ico_new {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 2.4rem;
  color: #FFF;
  background-color: #EA6182;
  width: 8rem;
  height: 8rem;
  border-radius: 100vh;
  display: block;
  line-height: 8rem;
  text-align: center;
  position: absolute;
  left: 3.2rem;
  top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .kv .kv_inner .kv_products .product .ico_new {
    font-size: 3dvw;
    line-height: 10dvw;
    width: 10dvw;
    height: 10dvw;
    left: 4dvw;
    top: 42dvw;
  }
}
.kv .kv_inner .kv_products .product .product_txt {
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.kv .kv_inner .kv_products .product .product_txt p.model {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 1.6rem;
}
.kv .kv_inner .kv_products .product .product_txt p.character {
  font-weight: 800;
  font-size: 2.4rem;
}
.kv .kv_inner .kv_products .product .product_txt .btn.--to_detail {
  width: fit-content;
  line-height: 1;
}
.kv .kv_inner .kv_products .product .product_txt .btn.--to_detail a {
  display: block;
  padding: 0.5em 1em;
  border: 1px solid #EA6182;
  border-radius: 100vh;
  color: #EA6182;
  background: #FFF;
  font-size: 1.4rem;
}
.kv .kv_inner .kv_products .product .product_txt .btn.--to_detail a:hover {
  color: #FFF;
  background: #EA6182;
}

/*============================
  main_content(common)
============================*/
article.main_content h2.seciton_title span {
  display: block;
}
article.main_content h2.seciton_title span.en {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #EA6182;
}
@media screen and (max-width: 768px) {
  article.main_content h2.seciton_title span.en {
    font-size: 1.2rem;
  }
}
article.main_content h2.seciton_title span.jp {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}
@media screen and (max-width: 768px) {
  article.main_content h2.seciton_title span.jp {
    font-size: 2.4rem;
  }
}

/*============================
  ul.products_list(common)
============================*/
ul.products_list {
  display: flex;
  justify-content: left;
  align-items: stretch;
  gap: 3.2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  ul.products_list {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    margin-top: 2.4rem;
  }
}
ul.products_list li {
  background: #FFF;
  border-radius: 2rem;
  max-width: 40rem;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  ul.products_list li {
    max-width: 56rem;
  }
}
ul.products_list li .product_img {
  display: block;
}
ul.products_list li .ico_new {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 1.8rem;
  color: #FFF;
  background-color: #EA6182;
  width: 6rem;
  height: 6rem;
  border-radius: 100vh;
  display: block;
  line-height: 6rem;
  text-align: center;
  position: absolute;
  left: 2rem;
  top: 2rem;
}
@media screen and (max-width: 768px) {
  ul.products_list li .ico_new {
    font-size: 3dvw;
    line-height: 10dvw;
    width: 10dvw;
    height: 10dvw;
  }
}
ul.products_list li .product_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}
ul.products_list li .product_txt p.model {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
}
ul.products_list li .product_txt p.character {
  font-size: 1.4rem;
}
ul.products_list li .product_txt p.cv {
  font-size: 1.4rem;
}
ul.products_list li .product_txt .btn {
  width: 100%;
  line-height: 1.2;
}
ul.products_list li .product_txt .btn a {
  display: block;
  padding: 0.8em 1.2em;
  border: 0.2rem solid #333;
  border-radius: 100vh;
  color: #333;
  background: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
}
ul.products_list li .product_txt .btn.--to_detail a {
  border: 0.1rem solid #EA6182;
  color: #EA6182;
  background: #FFF;
}
ul.products_list li .product_txt .btn.--to_detail a:hover {
  color: #FFF;
  background: #EA6182;
}
ul.products_list li .product_txt .btn.--to_store a {
  color: #FFF;
  border: 0.1rem solid #000;
  background: #000;
}
ul.products_list li .product_txt .btn.--to_store a:hover {
  background: #EA6182;
  border: 0.1rem solid #EA6182;
}

/*============================
  main_content(@index)
============================*/
article.main_content.--index section.about {
  margin: 8rem auto 0;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.about {
    margin: 5.6rem auto 0;
  }
}
article.main_content.--index section.about .about_div_01 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0 0 0 8%;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.about .about_div_01 {
    padding: 0 1.2rem;
  }
}
article.main_content.--index section.about .about_div_01 .content_txt {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.about .about_div_01 .content_txt {
    width: 100%;
  }
}
article.main_content.--index section.about .about_div_01 .content_txt .img_in_txt {
  display: none;
  border-radius: 2rem 0 0 2rem;
  margin: 2.4rem -1.2rem 0 0;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.about .about_div_01 .content_txt .img_in_txt {
    display: block;
  }
}
article.main_content.--index section.about .about_div_01 .content_txt .img_in_txt::after {
  content: "※画像はイメージです。実際と異なる場合があります。";
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  text-align: right;
  pointer-events: none;
  font-size: 1.1rem;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
article.main_content.--index section.about .about_div_01 .content_txt p {
  margin-top: 2.4rem;
}
article.main_content.--index section.about .about_div_01 .content_txt p + p {
  margin-top: 1.2rem;
}
article.main_content.--index section.about .about_div_01 .content_txt h3 {
  font-weight: 500;
  font-size: 2.4rem;
  margin-top: 2.4rem;
  color: #000;
}
article.main_content.--index section.about .about_div_01 .content_txt h3 i {
  color: #EA6182;
}
article.main_content.--index section.about .about_div_01 .content_txt h3 + p {
  margin-top: 1.2rem;
}
article.main_content.--index section.about .about_div_01 .content_img {
  width: 55%;
  border-radius: 2rem 0 0 2rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.about .about_div_01 .content_img {
    display: none;
  }
}
article.main_content.--index section.about .about_div_01 .content_img img {
  height: 100%;
  object-fit: cover;
}
article.main_content.--index section.about .about_div_01 .content_img::after {
  content: "※画像はイメージです。実際と異なる場合があります。";
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  text-align: right;
  pointer-events: none;
  font-size: 1.1rem;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
}
article.main_content.--index section.about .about_div_02 {
  margin-top: 8rem;
  padding: 0 8% 0 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: row-reverse;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.about .about_div_02 {
    padding: 0 1.2rem;
    margin-top: 4rem;
  }
}
article.main_content.--index section.about .about_div_02 .content_txt {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.about .about_div_02 .content_txt {
    width: 100%;
  }
  article.main_content.--index section.about .about_div_02 .content_txt h2 br {
    display: none;
  }
}
article.main_content.--index section.about .about_div_02 .content_txt .img_in_txt {
  display: none;
  border-radius: 0 2rem 2rem 0;
  margin: 2.4rem 0 0 -1.2rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.about .about_div_02 .content_txt .img_in_txt {
    display: block;
  }
}
article.main_content.--index section.about .about_div_02 .content_txt .img_in_txt iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
article.main_content.--index section.about .about_div_02 .content_txt .img_in_txt video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
article.main_content.--index section.about .about_div_02 .content_txt p {
  margin-top: 2.4rem;
}
article.main_content.--index section.about .about_div_02 .content_txt p + p {
  margin-top: 1.2rem;
}
article.main_content.--index section.about .about_div_02 div.content_img {
  width: 70%;
  border-radius: 0 2rem 2rem 0;
  overflow: hidden;
  background: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.about .about_div_02 div.content_img {
    display: none;
  }
}
article.main_content.--index section.about .about_div_02 div.content_img img {
  height: 100%;
  object-fit: cover;
}
article.main_content.--index section.about .about_div_02 div.content_img iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
article.main_content.--index section.about .about_div_02 div.content_img video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
article.main_content.--index section.lineup {
  margin: 8rem auto 0;
  padding: 0 8%;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.lineup {
    padding: 0 1.2rem;
    margin: 5.6rem auto 0;
  }
}
article.main_content.--index section.special {
  margin: 8rem auto 0;
  padding: 0 10%;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.special {
    padding: 0 1.2rem;
    margin: 5.6rem auto 0;
  }
}
article.main_content.--index section.special .crphotoroom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem;
  background: #FFF;
  border: 0.4rem solid #EA6182;
  border-radius: 2rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.special .crphotoroom {
    flex-direction: column;
    padding: 2rem;
    gap: 2.4rem;
  }
}
article.main_content.--index section.special .crphotoroom .crphotoroom_txt {
  text-align: center;
  width: 32rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.special .crphotoroom .crphotoroom_txt {
    width: 100%;
  }
}
article.main_content.--index section.special .crphotoroom .crphotoroom_txt h2 {
  color: #EA6182;
  font-weight: 500;
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.special .crphotoroom .crphotoroom_txt h2 {
    width: 100%;
    font-size: 2.4rem;
  }
}
article.main_content.--index section.special .crphotoroom .crphotoroom_txt p {
  margin-top: 1.2rem;
}
article.main_content.--index section.special .crphotoroom .crphotoroom_img {
  width: calc(100% - 36rem);
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.special .crphotoroom .crphotoroom_img {
    width: 100%;
  }
}
article.main_content.--index section.special .crphotoroom .crphotoroom_img a {
  display: block;
}
article.main_content.--index section.extra_info {
  margin: 8rem auto 0;
  padding: 0 8%;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.extra_info {
    padding: 0 1.2rem;
    margin: 5.6rem auto 0;
  }
}
article.main_content.--index section.extra_info > p {
  margin-top: 2.4rem;
}
article.main_content.--index section.extra_info ul.extra_info_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--index section.extra_info ul.extra_info_list {
    grid-template-columns: 1fr;
    margin-top: 3.2rem;
    gap: 2.4rem;
  }
}
article.main_content.--index section.extra_info ul.extra_info_list li.extra_info_term {
  background: #FFF;
  border-radius: 2rem;
  overflow: hidden;
}
article.main_content.--index section.extra_info ul.extra_info_list li.extra_info_term .term_img a {
  display: block;
}
article.main_content.--index section.extra_info ul.extra_info_list li.extra_info_term .term_txt {
  padding: 0 2rem 2rem;
}
article.main_content.--index section.extra_info ul.extra_info_list li.extra_info_term .term_txt h3 {
  margin-top: 1.6rem;
  color: #000;
}
article.main_content.--index section.extra_info ul.extra_info_list li.extra_info_term .term_txt p {
  margin-top: 1.6rem;
}
article.main_content.--index section.extra_info ul.extra_info_list li.extra_info_term .term_txt p.link a {
  color: #EA6182;
  text-decoration: underline;
}
article.main_content.--index section.extra_info ul.extra_info_list li.extra_info_term .term_txt p.link a:hover {
  text-decoration: none;
}

/*============================
  aside.sub_nav(common)
============================*/
aside.sub_nav {
  background: linear-gradient(to right, #D798BD, #66CAE6);
  margin-top: 8rem;
  padding: 8rem 8%;
}
@media screen and (max-width: 768px) {
  aside.sub_nav {
    padding: 2.4rem 1.2rem;
    margin-top: 5.6rem;
  }
}
aside.sub_nav .sub_nav-inner {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  aside.sub_nav .sub_nav-inner {
    flex-direction: column;
    gap: 1.6rem;
  }
}
aside.sub_nav .sub_nav-inner .brand_info {
  background: #FFF;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  padding: 2.4rem;
  width: 40rem;
}
@media screen and (max-width: 768px) {
  aside.sub_nav .sub_nav-inner .brand_info {
    width: 100%;
  }
}
aside.sub_nav .sub_nav-inner .brand_info p.copy {
  font-size: 2.4rem;
  font-weight: 800;
  color: #EA6182;
}
@media screen and (max-width: 768px) {
  aside.sub_nav .sub_nav-inner .brand_info p.copy {
    font-size: 4.8dvw;
  }
}
@media screen and (max-width: 768px) {
  aside.sub_nav .sub_nav-inner .brand_info p.brand_logo {
    max-width: 56rem;
    width: 90%;
  }
}
aside.sub_nav .sub_nav-inner .brand_info p.root_brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
}
aside.sub_nav .sub_nav-inner .brand_info p.root_brand span.logo_hagoromo6 {
  width: 25%;
}
aside.sub_nav .sub_nav-inner .brand_info p.root_brand span.logo_hagoromo6 a {
  display: block;
}
aside.sub_nav .sub_nav-inner .brand_info p.root_brand span.logo_hagoromo6 a img {
  width: 100%;
}
aside.sub_nav .sub_nav-inner .brand_info p.root_brand span.txt {
  font-family: "Quicksand";
  font-size: 2rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.3);
}
aside.sub_nav .sub_nav-inner .brand_info p.root_brand span.logo_yupiteru {
  width: 35%;
}
aside.sub_nav .sub_nav-inner .brand_info p.root_brand span.logo_yupiteru a {
  display: block;
}
aside.sub_nav .sub_nav-inner .brand_info p.root_brand span.logo_yupiteru a img {
  width: 100%;
}
aside.sub_nav .sub_nav-inner .links_products {
  display: flex;
  align-items: stretch;
  width: calc(100% - 40rem);
}
@media screen and (max-width: 768px) {
  aside.sub_nav .sub_nav-inner .links_products {
    width: 100%;
  }
}
aside.sub_nav .sub_nav-inner .links_products ul.products_list {
  margin: 0;
  gap: 2.4rem;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  aside.sub_nav .sub_nav-inner .links_products ul.products_list {
    flex-direction: row;
    gap: 1.2rem;
  }
}
aside.sub_nav .sub_nav-inner .links_products ul.products_list li {
  justify-content: center;
  align-items: center;
  padding: 2rem 1.2rem;
}
aside.sub_nav .sub_nav-inner .links_products ul.products_list li .ico_new {
  left: 1.6rem;
  top: 1.6rem;
}
@media screen and (max-width: 768px) {
  aside.sub_nav .sub_nav-inner .links_products ul.products_list li .ico_new {
    left: 1.6rem;
    top: 1.6rem;
  }
}
aside.sub_nav .sub_nav-inner .links_products ul.products_list li .product_txt {
  margin-top: 1.6rem;
}
aside.sub_nav .sub_nav-inner .links_products ul.products_list li .product_txt p.model {
  font-size: 2.4rem;
}
aside.sub_nav .sub_nav-inner .links_products ul.products_list li .product_txt p.character {
  font-size: 1.2rem;
}
aside.sub_nav .sub_nav-inner .links_products ul.products_list li .product_txt .btn a {
  font-size: 1.4rem;
}

/*============================
  footer(common)
============================*/
footer.footer {
  background: #000;
  color: #FFF;
}
footer.footer .footer_inner {
  margin: 0 auto;
  padding: 4rem 8%;
}
@media screen and (max-width: 768px) {
  footer.footer .footer_inner {
    padding: 4rem 1.2rem;
  }
}
footer.footer .footer_inner .footer_nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4.8rem;
  padding: 0 0 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  footer.footer .footer_inner .footer_nav {
    padding: 0 1.2rem 4rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
footer.footer .footer_inner .footer_nav .links_hagoromo6 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 4.8rem;
}
@media screen and (max-width: 768px) {
  footer.footer .footer_inner .footer_nav .links_hagoromo6 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2.4rem;
  }
}
footer.footer .footer_inner .footer_nav .links_hagoromo6 .logo_hagoromo6 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 16.4rem;
}
footer.footer .footer_inner .footer_nav .links_hagoromo6 .logo_hagoromo6 a {
  display: block;
}
footer.footer .footer_inner .footer_nav .links_hagoromo6 .sns p.sns_title {
  font-family: "Quicksand";
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  footer.footer .footer_inner .footer_nav .links_hagoromo6 .sns p.sns_title {
    text-align: center;
  }
}
footer.footer .footer_inner .footer_nav .links_hagoromo6 .sns ul.sns_list {
  display: flex;
  justify-content: flex-start;
  gap: 1.6rem;
  margin-top: 1rem;
}
footer.footer .footer_inner .footer_nav .links_hagoromo6 .sns ul.sns_list li {
  font-size: 3.2rem;
  line-height: 1;
}
footer.footer .footer_inner .footer_nav .links_hagoromo6 .sns ul.sns_list li a {
  display: block;
  color: #FFF;
}
footer.footer .footer_inner .footer_nav ul.footer_nav_links {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  footer.footer .footer_inner .footer_nav ul.footer_nav_links {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 3.2rem;
  }
}
footer.footer .footer_inner .footer_nav ul.footer_nav_links li {
  font-size: 1.4rem;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  footer.footer .footer_inner .footer_nav ul.footer_nav_links li {
    font-size: 1.6rem;
  }
}
footer.footer .footer_inner .footer_nav ul.footer_nav_links li a {
  display: block;
  text-decoration: underline;
}
footer.footer .footer_inner .footer_nav ul.footer_nav_links li a:hover {
  text-decoration: none;
}
footer.footer .footer_inner div.footer_copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.2rem 0 0;
}
@media screen and (max-width: 768px) {
  footer.footer .footer_inner div.footer_copyright {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: center;
    gap: 3.2rem;
  }
}
footer.footer .footer_inner div.footer_copyright p.copyright {
  font-family: "Quicksand";
  font-size: 1.2rem;
  line-height: 1;
}
footer.footer .footer_inner div.footer_copyright p.corporate {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1em;
}
footer.footer .footer_inner div.footer_copyright p.corporate span.txt {
  font-family: "Quicksand";
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  footer.footer .footer_inner div.footer_copyright p.corporate span.txt {
    font-size: 1rem;
  }
}
footer.footer .footer_inner div.footer_copyright p.corporate span.logo_yupiteru {
  display: block;
}
footer.footer .footer_inner div.footer_copyright p.corporate span.logo_yupiteru a {
  display: block;
}
footer.footer .footer_inner div.footer_copyright p.corporate span.logo_yupiteru a img {
  width: 11rem;
}

.to_pagetop {
  pointer-events: none;
  position: fixed;
  z-index: 10;
  right: 2.4rem;
  bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .to_pagetop {
    right: 1.2rem;
    bottom: 1.2rem;
  }
}
@media screen and (min-width: 1440px) {
  .to_pagetop {
    max-width: 144rem;
    margin: 0 auto;
    padding: 0 4rem;
    left: 0;
    bottom: 4rem;
    display: flex;
    justify-content: flex-end;
  }
}
.to_pagetop a {
  pointer-events: auto;
  display: block;
  background: #FFF;
  border: 0.1rem solid rgba(255, 255, 255, 0.4);
  border-radius: 100vh;
  color: #FFF;
  background: #000;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  text-align: center;
  line-height: 4rem;
}
.to_pagetop a:hover {
  opacity: 0.7;
}

/*============================
  product page
============================*/
article.main_content.--product {
  padding-top: 16rem;
}
@media screen and (min-width: 1440px) {
  article.main_content.--product {
    padding-top: 10rem;
  }
}
@media screen and (max-width: 768px) {
  article.main_content.--product {
    padding-top: 10rem;
  }
}
article.main_content.--product section.product_main {
  margin: 0 auto;
}
article.main_content.--product section.product_main .product_main_inner {
  padding: 0 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.product_main .product_main_inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}
article.main_content.--product section.product_main .product_main_inner .product_visual {
  width: 560px;
  background: #FFF;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.product_main .product_main_inner .product_visual {
    width: 100%;
    max-width: 56rem;
  }
}
article.main_content.--product section.product_main .product_main_inner .product_visual .cloudimage-360-view-360-icon {
  margin: 0 auto 0 1rem;
  width: 10rem;
  height: 10rem;
}
article.main_content.--product section.product_main .product_main_inner .product_visual::after {
  display: block;
  content: "左右ドラッグで360度回転します";
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  bottom: 1rem;
}
article.main_content.--product section.product_main .product_main_inner .product_main_info {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt {
    align-items: center;
  }
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt .ico_new {
  width: fit-content;
  display: block;
  padding: 0.3em 1em;
  border-radius: 100vh;
  background: #FFF;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Quicksand";
  font-weight: 700;
  color: #FFF;
  background: #EA6182;
  margin-bottom: 1.6rem;
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt h1.product_name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt h1.product_name {
    align-items: center;
  }
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt h1.product_name span.brand {
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt h1.product_name span.brand {
    font-size: 1.6rem;
  }
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt h1.product_name span.model {
  margin-top: 0.8rem;
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 6.4rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt h1.product_name span.model {
    font-size: 4.8rem;
  }
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt h1.product_name span.character {
  margin-top: 1.6rem;
  font-weight: 400;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt h1.product_name span.character {
    font-size: 1.6rem;
  }
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt p.cv {
  margin-top: 0.8rem;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.product_main .product_main_inner .product_main_info .product_main_txt p.cv {
    font-size: 1.6rem;
  }
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .sample_voice ul.audio_list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.product_main .product_main_inner .product_main_info .sample_voice ul.audio_list {
    align-items: center;
  }
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .sample_voice ul.audio_list li {
  line-height: 1;
  font-family: "Quicksand";
  font-weight: 700;
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .sample_voice ul.audio_list li button {
  cursor: pointer;
  width: 19rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #EA6182;
  padding: 0.6em 1em;
  margin: 0;
  background: #FFF;
  border: 0.2rem solid #EA6182;
  border-radius: 100vh;
  display: flex;
  justify-content: space-between;
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .sample_voice ul.audio_list li button:hover {
  color: #FFF;
  background: #EA6182;
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .sample_voice ul.audio_list li button::after {
  content: "\f144";
  font-family: "Font Awesome 7 Free";
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .sample_voice ul.audio_list li button.active {
  color: #FFF;
  background: #EA6182;
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .sample_voice ul.audio_list li button.active::after {
  content: "\f28b";
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.product_main .product_main_inner .product_main_info .price {
    text-align: center;
  }
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .price p {
  font-size: 2rem;
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .btn.--to_store a {
  width: fit-content;
  display: block;
  padding: 0.8em 1.2em;
  border: 0.2rem solid #333;
  border-radius: 100vh;
  color: #333;
  background: #FFF;
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
  border: 0.1rem solid #000;
  background: #000;
}
article.main_content.--product section.product_main .product_main_inner .product_main_info .btn.--to_store a:hover {
  background: #EA6182;
  border: 0.1rem solid #EA6182;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.product_main .product_main_inner .product_main_info .btn.--to_store a {
    font-size: 1.8rem;
  }
}
article.main_content.--product section.block {
  margin: 8rem auto 0;
  padding: 0 8%;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block {
    margin: 5.6rem auto 0;
    padding: 0 1.2rem;
  }
}
article.main_content.--product section.block .character_introduction {
  padding: 4rem 47rem 4rem 4rem;
  min-height: 84.5rem;
  margin-top: 2.4rem;
  background-color: #FFF;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .character_introduction {
    padding: 2.4rem 1.6rem 1.6rem;
    min-height: auto;
  }
}
article.main_content.--product section.block .character_introduction.--lei {
  background-image: url("../img/character-lei-tall@2x.webp");
  background-size: 45rem 76rem;
  background-position: top 4rem right;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .character_introduction.--lei {
    background-size: calc(100% - 1.6rem);
    background-position: top 4rem right;
  }
}
article.main_content.--product section.block .character_introduction.--sakura {
  background-image: url("../img/character-sakura-tall@2x.webp");
  background-size: 45rem 76rem;
  background-position: top 4rem right;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .character_introduction.--sakura {
    background-size: calc(100% - 1.6rem);
    background-position: top 4rem right;
  }
}
article.main_content.--product section.block .character_introduction h3.character_name {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  gap: 1.6rem;
  color: #000;
}
article.main_content.--product section.block .character_introduction h3.character_name span.jp {
  font-size: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .character_introduction h3.character_name span.jp {
    font-size: 2.4rem;
  }
}
article.main_content.--product section.block .character_introduction h3.character_name span.en {
  font-size: 2rem;
  font-family: "Quicksand";
  font-weight: 800;
}
article.main_content.--product section.block .character_introduction .character_img {
  pointer-events: none;
}
article.main_content.--product section.block .character_introduction .character_img .lei_img_01 {
  width: 36rem;
  position: absolute;
  left: 65rem;
  top: 6rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .character_introduction .character_img .lei_img_01 {
    position: static;
    width: 75.6dvw;
    margin-left: -4dvw;
    margin-top: 12dvw;
  }
}
article.main_content.--product section.block .character_introduction .character_img .lei_img_02 {
  width: 38rem;
  position: absolute;
  left: 64rem;
  top: 38rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .character_introduction .character_img .lei_img_02 {
    position: static;
    width: 79.8dvw;
    margin-left: -8dvw;
    margin-top: -4dvw;
  }
}
article.main_content.--product section.block .character_introduction .character_img .sakura_img_01 {
  width: 36rem;
  position: absolute;
  left: 65rem;
  top: 6rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .character_introduction .character_img .sakura_img_01 {
    position: static;
    width: 75.6dvw;
    margin-left: -6dvw;
    margin-top: 12dvw;
  }
}
article.main_content.--product section.block .character_introduction .character_img .sakura_img_02 {
  width: 36rem;
  position: absolute;
  left: 65rem;
  top: 38rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .character_introduction .character_img .sakura_img_02 {
    position: static;
    width: 75.6dvw;
    margin-left: -4dvw;
    margin-top: -4dvw;
  }
}
article.main_content.--product section.block .character_introduction .character_description p {
  margin-top: 3.2rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .character_introduction .character_description p {
    margin-top: 2.4rem;
  }
}
article.main_content.--product section.block .character_introduction .actor_introduction {
  background: #F8FAF6;
  border-radius: 2rem;
  margin-top: 3.2rem;
  padding: 2.4rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .character_introduction .actor_introduction {
    margin-top: 2.4rem;
    padding: 1.6rem;
  }
}
article.main_content.--product section.block .character_introduction .actor_introduction div.actor_img {
  float: left;
  padding: 0 0 2rem 0;
}
@media screen and (max-width: 560px) {
  article.main_content.--product section.block .character_introduction .actor_introduction div.actor_img {
    padding: 0 1.2rem 0 0;
  }
}
article.main_content.--product section.block .character_introduction .actor_introduction div.actor_img img {
  width: 16rem;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 560px) {
  article.main_content.--product section.block .character_introduction .actor_introduction div.actor_img img {
    width: 12rem;
  }
}
article.main_content.--product section.block .character_introduction .actor_introduction h4.actor_name {
  margin-left: 18.4rem;
}
@media screen and (max-width: 560px) {
  article.main_content.--product section.block .character_introduction .actor_introduction h4.actor_name {
    margin-left: 0;
  }
}
article.main_content.--product section.block .character_introduction .actor_introduction h4.actor_name span {
  display: block;
}
article.main_content.--product section.block .character_introduction .actor_introduction h4.actor_name span.en {
  font-family: "Quicksand";
  font-weight: 500;
  font-size: 1.2rem;
  color: #EA6182;
}
article.main_content.--product section.block .character_introduction .actor_introduction h4.actor_name span.jp {
  font-weight: 500;
  font-size: 2rem;
}
article.main_content.--product section.block .character_introduction .actor_introduction .actor_works {
  margin-left: 18.4rem;
}
@media screen and (max-width: 560px) {
  article.main_content.--product section.block .character_introduction .actor_introduction .actor_works {
    margin-left: 0;
  }
}
article.main_content.--product section.block .character_introduction .actor_introduction .actor_works h5 {
  font-weight: 500;
  font-size: 1.2rem;
  color: rgba(0, 0, 0, 0.5);
  margin: 1rem 0 0 0;
}
article.main_content.--product section.block .character_introduction .actor_introduction .actor_works h6 {
  font-weight: 800;
  font-size: 1.2rem;
  color: rgb(0, 0, 0);
  margin: 1rem 0 0 0;
}
article.main_content.--product section.block .character_introduction .actor_introduction .actor_works ul li {
  font-size: 1.4rem;
}
article.main_content.--product section.block .character_introduction .actor_introduction .actor_info {
  margin-top: 1rem;
  margin-left: 18.4rem;
}
@media screen and (max-width: 560px) {
  article.main_content.--product section.block .character_introduction .actor_introduction .actor_info {
    margin-left: 0;
  }
}
article.main_content.--product section.block .character_introduction .actor_introduction .actor_info ul li {
  font-size: 1.4rem;
}
article.main_content.--product section.block .character_introduction .actor_introduction .actor_info ul li a {
  color: #EA6182;
  text-decoration: underline;
}
article.main_content.--product section.block .character_introduction .actor_introduction .actor_info ul li a:hover {
  text-decoration: none;
}
article.main_content.--product section.block .data_block {
  margin-top: 2.4rem;
}
article.main_content.--product section.block .data_block.--type_2col {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .data_block.--type_2col {
    flex-direction: column;
    gap: 0;
  }
}
article.main_content.--product section.block .data_block.--type_2col .data_group {
  width: 50%;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .data_block.--type_2col .data_group {
    width: 100%;
  }
  article.main_content.--product section.block .data_block.--type_2col .data_group ~ .data_group table tr:first-child th, article.main_content.--product section.block .data_block.--type_2col .data_group ~ .data_group table tr:first-child td {
    border-top: none;
  }
  article.main_content.--product section.block .data_block.--type_2col .data_group ~ .data_group .data_table.--has_title h3 {
    border-top: none;
  }
}
article.main_content.--product section.block .data_block.--type_2col .data_group .data_table {
  width: 100%;
}
article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--has_title {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--has_title h3 {
  margin: 0;
  padding: 1em 1em 1em 0;
  font-size: 1.4rem;
  width: 25%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--has_title h3 {
    min-width: 7em;
  }
}
article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--has_title table th {
  width: 70%;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--has_title table th {
    width: auto;
  }
}
article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--has_title table td {
  width: 30%;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--has_title table td {
    width: 6em;
  }
}
article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--functions_etc table th {
  width: 76%;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--functions_etc table th {
    width: auto;
  }
}
article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--functions_etc table td {
  width: 24%;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--functions_etc table td {
    width: 6em;
  }
}
article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--functions_etc table tr:first-child th, article.main_content.--product section.block .data_block.--type_2col .data_group .data_table.--functions_etc table tr:first-child td {
  border-top: none;
}
article.main_content.--product section.block .data_block.--type_2col .data_group .data_table table {
  width: 100%;
}
article.main_content.--product section.block .data_block.--type_2col .data_group .data_table table th {
  min-width: 10em;
}
article.main_content.--product section.block .data_block.--type_1col table {
  font-size: 1.6rem;
  width: 60%;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .data_block.--type_1col table {
    width: 100%;
  }
}
article.main_content.--product section.block .data_block.--type_1col table th {
  width: 40%;
}
article.main_content.--product section.block .data_block table {
  font-size: 1.4rem;
  text-align: left;
  border-collapse: collapse;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
article.main_content.--product section.block .data_block table a {
  color: #EA6182;
  text-decoration: underline;
}
article.main_content.--product section.block .data_block table a:hover {
  text-decoration: none;
}
article.main_content.--product section.block .data_block table th {
  font-weight: 500;
  vertical-align: top;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1em 1em 1em 0;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block .data_block table th {
    width: 10em;
  }
}
article.main_content.--product section.block .data_block table td {
  vertical-align: top;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1em 0;
}
article.main_content.--product section.block .data_block table td ul {
  margin-left: 0.5em;
}
article.main_content.--product section.block .data_block table td ul li {
  list-style-type: "-";
}
article.main_content.--product section.block ul.gps_target_list {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.4rem;
}
@media screen and (max-width: 768px) {
  article.main_content.--product section.block ul.gps_target_list {
    grid-template-columns: 1fr 1fr;
  }
}
article.main_content.--product section.block ul.gps_target_list li {
  font-size: 1.6rem;
  padding: 0.5em;
  border-radius: 0.5em;
  background: rgba(255, 255, 255, 0.8);
}
article.main_content.--product section.block dl {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  gap: 0.5em;
}
article.main_content.--product section.block dl dt {
  width: 1em;
}
article.main_content.--product section.block dl dd {
  width: calc(100% - 1.5em);
}/*# sourceMappingURL=style.css.map */