@charset "utf-8";
/* ========================================================
	top.css => トップページ用CSS
======================================================== */
/* mv_area
------------------------------------------------------------- */
.main_title_area img {
      width: 100%;
}
/*a_line_area
--------------------------------------------------------------------------------------------------------------------------*/
.a_line_area {
      padding: 5em 0;
}
.a_line_inner {
      align-items: center;
      display: flex;
      justify-content: space-between;
      gap: 10%;
}
.a_line_inner .text_box {
      width: 50%;
}
.a_line_inner_logo {
      width: 19em;
}
.a_line_inner_logo img {
      width: 100%;
}
.a_line_inner .img {
      width: 50%;
}
@media screen and (max-width: 1000px) {
      .a_line_inner {
            max-width: 90%;
      }
      .a_line_inner .text_box .lead {
            font-size: 1.6rem;
      }
}
@media screen and (max-width: 680px) {
      .a_line_area {
            padding: 5em 0 0 0;
      }
      .a_line_inner {
            display: block;
            max-width: 100%;
      }
      .a_line_inner .text_box {
            width: 80%;
            margin: auto auto 3em auto;
      }
      .a_line_inner_logo {
            width: 17em;
            margin: auto;
      }
      .a_line_inner .img {
            width: 100%;
      }
}
/*merit_area
--------------------------------------------------------------------------------------------------------------------------*/
.merit_list {
      display: flex;
      justify-content: space-between;
      background: #fff;
      box-shadow: var(--box_shadow);
      padding: 2em;
}
.merit_list > li {
      width: calc(100% / 3);
      text-align: center;
      position: relative;
}
.merit_list > li:before {
      content: "";
      background: var(--col_gold);
      height: 100%;
      width: 1px;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translate(-0%, -50%);
}
.merit_list > li:first-child:before {
      content: none;
}
.merit_list > li .img {
      margin-bottom: 1em;
}
.merit_list > li .img img {
      height: 5.8em;
      width: 100%;
      object-fit: contain;
      object-position: center;
}
.merit_list > li a {
      text-decoration: underline;
      color: var(--col_gold);
      font-size: 0.9em;
}
@media screen and (min-width: 961px), print {
      .merit_list > li a:hover {
            text-decoration: none;
      }
}
@media screen and (max-width: 680px) {
      .merit_list {
            display: block;
            padding: 0em 2em;
      }
      .merit_list > li {
            width: auto;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--col_gold);
            gap: 0 5%;
            padding: 0.5em 0;
      }
      .merit_list > li:last-child {
            border-bottom: none;
      }
      .merit_list > li .img {
            height: auto;
            margin-bottom: auto;
            width: 4em;
      }
      .merit_list > li .text_box {
            width: calc(100% - 4em);
      }
      .merit_list > li:before {
            content: none;
      }
}
/*y_movie
--------------------------------------------------------------------------------------------------------------------------*/
.y_movie {
      width: 763px;
      margin: auto;
}
.y_movie iframe {
      aspect-ratio: 16/9;
      width: 100%;
      height: 100%;
}
/*features_area
--------------------------------------------------------------------------------------------------------------------------*/
.features_area {
      padding: 5em 0;
}
/*数字付き*/
ol.features_list {
      counter-reset: count 0;
}
.features_list > li {
      position: relative;
      list-style-type: none;
      list-style-position: inside;
      counter-increment: cnt;
      margin-bottom: 6rem;
}
.features_list > li:before {
      content: "｜0"counter(cnt);
      position: absolute;
      top: 0;
      /*   left: calc(35% + 0.5em);*/
      left: 42.5%;
      color: var(--col_gold);
      font-size: 2.4rem;
      font-weight: bold;
      font-family: "Roboto", sans-serif;
}
/*features_list_inner*/
.features_list_inner {
      display: flex;
      justify-content: space-between;
      gap: 0 5%;
}
.features_list_inner .img {
      width: 40%;
}
.features_list_inner .img img {
      width: 100%;
}
.features_list_inner .text_box {
      width: 60%;
}
.features_list_title {
      font-size: 2.0rem;
      font-weight: bold;
      padding-top: 2.5em;
      margin-bottom: 1em;
}
@media screen and (max-width: 680px) {
      .features_list > li {
            margin-bottom: 3rem;
      }
      .features_list > li:before {
            top: 21.2rem;
            left: -0.5em;
      }
      .features_list_inner {
            display: block;
      }
      .features_list_inner .img {
            width: auto;
            height: 20.2rem;
            overflow: hidden;
      }
      .features_list_inner .text_box {
            width: auto;
      }
      .features_list_title {
            margin-bottom: 0.5em;
      }
}
/*top_staff_area
--------------------------------------------------------------------------------------------------------------------------*/
/*モーダル*/
.modal-box {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.5);
      z-index: 1000;
      justify-content: center;
      align-items: center;
}
.modal-box.active {
      display: flex;
}
.modal-content {
      background: #fff;
      position: relative;
      width: 960px;
      border: solid 4px var(--col_main);
      border-radius: var(--b_rudius_pc);
}
@media screen and (max-width: 1000px) {
      .modal-content {
            width: 90%;
            height: 90vh;
      }
}
/*open colse*/
body.modal-open {
      overflow: hidden;
}
.close {
      position: absolute;
      top: -10px;
      right: -10px;
      cursor: pointer;
      width: 3.25em;
      aspect-ratio: 1;
}
.close img {
      width: 100%;
}
/*モーダル中身*/
.modal_content_flex {
      padding: 4em 2em 3em 2em;
      display: flex;
      justify-content: space-between;
      gap: 0 1em;
}
.modal_content_inner .img {
      width: 40%;
      text-align: center;
}
.modal_content_inner .img img {
      width: 60%;
}
.modal_content_inner .img .staff_list_title {
      margin-top: 1em;
}
.modal_content_inner .text_box {
      width: 60%;
      line-height: 2;
      letter-spacing: 2px;
}
@media screen and (max-width: 680px) {
      .modal_content_inner {
            overflow-y: scroll;
            height: 90vh;
      }
      .modal_content_flex {
            padding: 3em 1em 2em 1em;
            display: block;
            overflow-y: scroll;
      }
      .modal_content_inner .img {
            width: 50%;
            margin: auto auto 1em auto;
      }
      .modal_content_inner .img img {
            width: 100%;
      }
      .modal_content_inner .text_box {
            width: auto;
      }
}
/*QA*/
.qa_block details {
      background: var(--bg_main_l);
      border-radius: var(--b_rudius_pc);
      border: solid 4px var(--bg_main_l);
      box-shadow: var(--box_shadow);
      margin-bottom: 2em;
}
.qa_block summary p, .qa_block .faq_content {
      padding: 1.5em 4em 1.5em 5em;
      position: relative;
}
.qa_block .faq_content {
      padding: 1.5em 1.5em 1.5em 5em;
}
.qa_block summary:focus-visible {
      border: solid 1px #000;
}
.qa_block summary p span {
      font-size: 1.1em;
}
.qa_block summary p:after, .qa_block .faq_content:after {
      content: "";
      position: absolute;
      left: 1em;
      top: 0.4em;
      font-size: 2em;
      font-family: "Roboto", sans-serif;
      font-weight: 900;
}
.qa_block summary p:after {
      content: "Q";
      color: var(--col_main);
}
.qa_block .faq_content:after {
      content: "A";
      left: 1em;
      color: var(--col_yellow);
}
.qa_block details {
      position: relative !important;
      z-index: 0 !important;
}
.qa_block .faq_content {
      position: relative;
      z-index: 500 !important;
      cursor: pointer;
}
@media screen and (max-width: 680px) {
      .qa_block details {
            border-radius: var(--b_rudius_sp);
      }
      .qa_block summary p span {
            font-size: 1.6rem;
      }
      .qa_block summary p, .qa_block .faq_content {
            padding: 1.5em 3em 1.5em 3em;
            position: relative;
            padding-left: 3.0em;
      }
      .qa_block .faq_content {
            padding: 1.5em 1.5em 1.5em 3em;
      }
      .qa_block summary p:after, .qa_block .faq_content:after {
            left: 0.4em;
            font-size: 3.0rem;
      }
}
/*Q*/
.qa_block summary {
      font-weight: 700;
      cursor: pointer;
      list-style: none;
      position: relative;
      transition: all 0.3s ease;
      outline: none;
}
/* デフォルトの矢印を隠す */
summary::-webkit-details-marker {
      display: none;
}
.qa_block summary:before {
      content: '';
      background: url("../images/btn_arrow_main.svg") no-repeat;
      background-size: contain;
      position: absolute;
      width: 2em;
      aspect-ratio: 1;
      right: 1em;
      top: 1.5em;
      transition: transform 0.3s ease;
      transform: rotate(90deg);
}
/*.qa_block summary:hover {
      color: var(--col_main);
}*/
.qa_block details[open] summary::before {
      transform: rotate(-90deg);
}
@media screen and (max-width: 680px) {
      .qa_block summary:before {
            top: 1.5em;
            right: 0.5em;
      }
}
/*A*/
.qa_block details .faq_content {
      position: relative;
      z-index: -1;
      background: #fff;
      border-radius: 0 0 var(--b_rudius_pc) var(--b_rudius_pc);
}
.qa_block details[open] .faq_content > * {
      animation: qafadeIn 0.8s ease;
      transition: all 0.8s ease;
}
@keyframes qafadeIn {
      0% {
            opacity: 0;
            transform: translateY(-10px);
      }
      100% {
            opacity: 1;
            transform: translateY(-0px);
      }
}
/*lineup_area
--------------------------------------------------------------------------------------------------------------------------*/
.lineup_area {
      padding: 8em 0;
}
/*lineup_link_list
-------------------------------------------*/
.lineup_link_list_box {
      max-width: 1020px;
      margin: auto;
      padding-bottom: 3em;
}
.lineup_link_list {
      display: flex;
      gap: 0 3%;
      justify-content: center;
}
.lineup_link_list > li {
      width: 100%;
      border-bottom: 1px solid var(--col_gold);
}
.lineup_link_list > li a {
      display: block;
      text-align: center;
      font-size: 1.6em;
      font-weight: bold;
}
.lineup_link_list > li a .en {
      display: inline-block;
      position: relative;
      padding-left: 1.5em;
}
.lineup_link_list > li a .en:before {
      content: "";
      width: 0.7em;
      position: absolute;
      top: 55%;
      left: 0;
      transform: translate(-0%, -50%);
      background: url("../images/arrow.svg") no-repeat;
      background-size: contain;
      aspect-ratio: var(--arrow_aspect);
      filter: invert(54%) sepia(15%) saturate(838%) hue-rotate(355deg) brightness(87%) contrast(90%);
}
.lineup_link_list > li a .ja {
      font-size: 0.6em;
      position: relative;
      padding: 0 1.3em;
      display: inline-block;
      margin-left: 1em;
}
.lineup_link_list > li a .ja:before, .lineup_link_list > li a .ja:after {
      content: "";
      width: 1em;
      height: 1px;
      position: absolute;
      top: 50%;
      transform: translate(-0%, -50%);
      background: var(--col_basic);
}
.lineup_link_list > li a .ja:before {
      left: 0;
}
.lineup_link_list > li a .ja:after {
      right: 0;
}
@media screen and (max-width: 680px) {
      .lineup_link_list_box {
            display: none;
      }
}
/*lineup_main_v
-------------------------------------------*/
.lineup_main_v {
      position: relative;
}
.lineup_main_v img {
      width: 100%;
}
.lineup_main_v_title_block {
      position: absolute;
      top: 50%;
      right: 10%;
      transform: translate(-0%, -50%);
}
.lineup_main_v_title {
      text-align: center;
      color: #fff;
      font-size: 1.8rem;
}
.lineup_main_v_title .en {
      display: block;
      font-size: 3em;
      line-height: 1;
}
.lineup_main_v_title .ja {
      font-size: 1em;
      position: relative;
      padding: 0 1.3em;
      display: inline-block;
}
.lineup_main_v_title .ja:before, .lineup_main_v_title .ja:after {
      content: "";
      width: 1em;
      height: 1px;
      position: absolute;
      top: 50%;
      transform: translate(-0%, -50%);
      background: #fff;
}
.lineup_main_v_title .ja:before {
      left: 0;
}
.lineup_main_v_title .ja:after {
      right: 0;
}
.lineup_main_v_num {
      text-align: center;
      background: rgba(255, 255, 255, 0.8);
      margin-top: 1em;
}
.lineup_cont_acobtn {
      display: none;
}
@media screen and (max-width: 680px) {
      .lineup_main_v_title_block {
            right: auto;
            left: 50%;
            transform: translate(-50%, -50%);
      }
      /*アコーディオン*/
      /*	.lineup-main-aco-box{
		display: none;
	}*/
      .lineup_cont_acobtn {
            display: block;
            background: #2C2F32;
            text-align: center;
            color: #fff;
            position: relative;
            cursor: pointer;
            padding: 0.8em 0;
      }
      .lineup_cont_acobtn span {
            position: relative;
            display: inline-block;
            padding: 0 1.5em;
      }
      .lineup_cont_acobtn span:before {
            content: "";
            width: 1em;
            position: absolute;
            top: 55%;
            right: 0;
            transform: translate(-0%, -50%);
            background: url("../images/arrow.svg") no-repeat;
            background-size: contain;
            aspect-ratio: var(--arrow_aspect);
            filter: brightness(0) invert(1) !important;
            -webkit-transition: all 0.15s ease;
      }
      .lineup_cont_acobtn.active span:before {
            transform: translate(-0%, -50%) rotate(180deg);
      }
}
.lineup_cont + .lineup_cont {
      padding-top: 8em;
}
/*lineup_list
-------------------------------------------------*/
.lineup_list {
      padding-top: 3em;
      display: flex;
      gap: 1em 3%;
      flex-wrap: wrap;
}
.lineup_list li {
      width: calc((100% / 3) - (3% / 1.5));
}
.lineup_list.list_col_2 {
      gap: 1em 2%;
}
.lineup_list.list_col_2 li {
      width: 49%;
}
.lineup_list li img {
      width: 100%;
}
.lineup_list_name {
      color: #595757;
      font-size: 0.9em;
      line-height: 1.3;
}
.lineup_list .link_arrow, .lineup_list_name {
      padding-left: 2em;
}
@media screen and (max-width: 680px) {
      .lineup_list {
            padding-top: 1em;
            gap: 2em 2%;
      }
      .lineup_list li {
            width: 49%;
      }
}
/*link_arrow*/
.link_arrow a {
      display: inline-block;
      position: relative;
      padding-left: 1.2em;
}
.link_arrow a:before {
      content: "";
      width: 0.9em;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translate(-0%, -50%) rotate(-90deg);
      background: url("../images/arrow.svg") no-repeat;
      background-size: contain;
      aspect-ratio: var(--arrow_aspect);
}
/*limited_box*/
.limited_box {
      padding: 5em 0;
}
.limited_box .img {
      max-width: 17em;
      margin: auto auto 1em auto;
      text-align: center;
}
.limited_box .img img {
      width: 100%;
}
.limited_box .lineup_list {
      max-width: 90%;
      margin: auto;
}
/*nature_flex
-----------------------------------------------------------------------*/
.nature_flex {
      padding-top: 3em;
      gap: 3em 3%;
      display: flex;
      justify-content: space-between;
}
@media screen and (min-width: 681px), print {
      .nature_flex_box .lineup_list {
            padding-top: 0;
            display: block;
      }
      .nature_flex_box .lineup_list > li {
            width: 100%;
            margin-bottom: 2em;
      }
}
@media screen and (max-width: 680px) {
      .nature_flex {
            padding-top: 0em;
            display: block;
      }
      .nature_flex_box {
            padding-top: 5em;
      }
}
/*nature_title
-------------------------------------------------*/
.nature_title {
      font-weight: bold;
}
.nature_title span {
      font-weight: normal !important;
      margin-left: 1em;
      font-size: 0.6em;
}
.nature_flex_box .nature_title {
      text-align: center;
}
/*blend_main_flex
---------------------------------------------------------------------------------------------------------------------*/
.blend_main_flex {
      display: flex;
      gap: 0 8%;
}
.blend_main_flex .img {
      width: 50%;
}
.blend_main_flex .blend_list {
      width: 50%;
}
.blend_main_flex .lineup_list_name, .blend_list .lineup_list_name {
      padding-left: 0 !important;
}
@media screen and (max-width: 680px) {
      .blend_main_flex {
            display: block;
      }
      .blend_main_flex .img {
            width: auto;
      }
      .blend_main_flex .blend_list {
            width: auto;
      }
}
/*blend_inner_flex
-------------------------------------------------*/
.blend_inner_flex {
      display: flex;
      gap: 0 8%;
}
.blend_inner_flex > * {
      width: 50%;
}
.blend_inner_cont, .blend_main_inner {
      padding-top: 6em;
}
@media screen and (max-width: 680px) {
      .blend_inner_cont, .blend_main_inner {
            padding-top: 3em;
      }
      .blend_inner_flex {
            display: block;
      }
      .blend_inner_flex > * {
            width: auto;
      }
}
/*model_area
--------------------------------------------------------------------------------------------------------------------------*/
.model_area {}
.model_tab_btn {
      max-width: 966px;
      margin: auto;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      gap: 0 3%;
}
.model_tab_btn > * {
      text-align: center;
      width: 100%;
      border-bottom: 1px solid var(--col_gold);
      font-weight: bold;
      color: var(--col_d_gray);
      padding: 0.5em 0 2em 0;
      position: relative;
      line-height: 1.4;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
}
.model_tab_btn > * span {
      font-size: 1.25em;
      display: block;
}
.model_tab_btn > *.is-active {
      border-bottom: 3px solid var(--col_gold);
}
.model_tab_btn > *:before {
      content: "";
      width: 0.9em;
      position: absolute;
      bottom: 0.7em;
      left: 50%;
      transform: translate(-50%, -0%);
      background: url("../images/arrow.svg") no-repeat;
      background-size: contain;
      aspect-ratio: var(--arrow_aspect);
      filter: invert(54%) sepia(15%) saturate(838%) hue-rotate(355deg) brightness(87%) contrast(90%);
}
/*model_inner*/
.model_inner {
      padding: 3em 0 5em 0;
}
/*model_tab_list_inner*/
.model_tab_list_inner p + p {
      margin-top: 2em;
}
/*voice_list
--------------------------------------------------------------------------------------------------------------------------*/
.voice_list > li + li {
      padding-top: 3em;
}
/*flow_img*/
@media screen and (max-width: 680px) {
      .flow_img {
            width: 70%;
            margin: auto;
      }
}