@charset "utf-8";

@media screen and (max-width:1200px) {}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {}
/*==================================================
$common
==================================================*/
:root {
  --fsize-h1: 35px;
  --fsize-h2: 20px;
  --fsize-h3: 15px;
  --fsize-lead: 15px;
  --fsize-normal: 14px;
  --fsize-sup: 12px;
  --red: #D70019;
  --gray: #E6E6E6;
  --beige: #F9F2E8;
  --light-gray: #F4F3F2;
  --light-ocher: #FCF8F3;
  --point-color: #958979;
  --light-point: #CAC4BC;
  --footer-color: #DFDCD7;
  --inner: 960px;
  --large-inner: 1120px;
  --max-inner: 1240px;
  --small-inner: 880px;
  --header-height: 60px;
  --footer-upper-height: 60px;
  --footer-under-height: 50px;
  --space: 50px;
  --middle-space: 30px;
  --small-space: 18px;
  --large-space: 70px;
  --line-space: 20px;
  --text-space: 10px;
}
*,
*::before,
*::after {
  transition: ease-in-out .3s;
}
.mt_space {margin-top: var(--space) !important;}
.mb_space {margin-bottom: var(--space) !important;}
.mt_middle_space {margin-top: var(--middle-space) !important;}
.mb_middle_space {margin-bottom: var(--middle-space) !important;}
.mt_small_space {margin-top: var(--small-space) !important;}
.mb_small_space {margin-bottom: var(--small-space) !important;}
.mt_large_space {margin-top: var(--large-space) !important;}
.mb_large_space {margin-bottom: var(--large-space) !important;}
.mt_line_space {margin-top: var(--line-space) !important;}
.mb_line_space {margin-bottom: var(--line-space) !important;}
.mt_text_space {margin-top: var(--text-space) !important;}
.mb_text_space {margin-bottom: var(--text-space) !important;}
body {
	margin: 0 auto;
	padding: 0;
	line-height: 1.7;
	position: relative;
	color: #333;
  font-size: var(--fsize-normal);
	font-family: "Roboto", sans-serif;
	text-align: left;
}
body.hidden {
  overflow: hidden;
}
a {color: inherit;text-decoration: none;}
.pc {display: none !important;}
img {max-width: 100%;}
.inner {
  max-width: var(--inner);
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 3%;
}
main {
  min-height: calc(100vh - var(--header-height) - var(--footer-upper-height) - var(--footer-under-height));
  position: relative;
}
.btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: var(--fsize-normal);
  min-height: 33px;
  width: 200px;
  border-radius: 100vw;
  color: var(--point-color);
  border: 1px solid var(--point-color);
  padding: 0 10px;
  line-height: 1;
  background: #fff;
}
.outlink {
  text-decoration: underline;
}
.outlink::after {
  content: "";
  width: 16px;
  min-width: 16px;
  height: 16px;
  background: url(../img/common/icon_link.svg) no-repeat center/contain;
  filter: brightness(0) saturate(100%) invert(90%) sepia(1%) saturate(645%) hue-rotate(314deg) brightness(90%) contrast(97%);
  display: inline-block;
  margin-left: 1em;
  margin-bottom: -2px;
}
.breadcrumb {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  width: 100%;
  padding: 0 20px;
  line-height: 1.3;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumb ul li {
  margin-right: 0.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumb ul li:not(:last-child)::after {
  content: ">";
  margin-left: 0.5em;
}
.breadcrumb ul li a {
  font-size: var(--fsize-sup);
}
.breadcrumb ul li:last-child a {
  pointer-events: none;
}
.page_title {
  height: 175px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  background: #fff;
  margin-bottom: 20px;
}
.page_title .inner {
  max-width: var(--large-inner);
}
.page_title .inner span {
  font-size: var(--fsize-h1);
  font-weight: 500;
  color: var(--point-color);
  line-height: 1.3;
}
.page_title .inner span::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--point-color);
  border-radius: 100vw;
  position: absolute;
  bottom: -20px;
  left: 5px;
}
.section_heading {
  font-size: var(--fsize-h2);
  font-weight: 500;
  color: var(--point-color);
  padding-bottom: 10px;
  margin-bottom: var(--line-space);
  border-bottom: 1px solid #000;
  width: 100%;
  line-height: 1.3;
}
/*==================================================
$header
==================================================*/
header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  background: #fff;
  box-shadow: 0 8px 8px rgba(0,0,0,.1);
  height: var(--header-height);
}
header .logo {
  max-width: 148px;
  width: 40%;
}
header .logo a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.burger,
.burger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.burger {
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 100;
  position: relative;
}
.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--point-color);
  border-radius: 4px;
}
.burger span:nth-of-type(1) {
  top: 0;
}
.burger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.burger span:nth-of-type(3) {
  bottom: 0;
}
.burger.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg);
}
.burger.active span:nth-of-type(2) {
  opacity: 0;
}
.burger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}
header nav {
  width: 100vw;
  font-size: var(--fsize-sup);
  position: fixed;
  top: var(--header-height);
  left: 40%;
  z-index: 100;
  background: #fff;
  height: calc(100vh - var(--header-height));
  background: var(--light-ocher);
  opacity: 0;
  pointer-events: none;
  overflow-x: auto;
  padding-bottom: var(--space);
}
header nav.open {
  left: 0;
  opacity: 1;
  pointer-events: auto;
}
header nav .nav {
  width: 100%;
  margin-bottom: var(--line-space);
}
header nav .nav>li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
header nav .nav>li>a {
  line-height: 1.3;
  padding: 3%;
  font-size: var(--fsize-normal);
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--point-color);
}
header nav .nav>li>a::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--red);
  opacity: 0;
}
header nav .nav>li.active>a {
  color: var(--red);
}
header nav .nav>li.active>a::after {
  opacity: 1;
}
header nav .nav>li .plus {
  display: none;
}
header nav .nav .global a {
  width: calc(100% - 40px);
}
header nav .nav .global .plus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  position: relative;
  border-bottom: 1px solid var(--point-color);
}
header nav .nav .global .plus::before,
header nav .nav .global .plus::after {
  content: "";
  width: 30%;
  height: 2px;
  background: var(--point-color);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 1;
}
header nav .nav .global .plus::after {
  transform: rotate(90deg);
}
header nav .nav .global .plus.active::after {
  opacity: 0;
}
header nav .nav .global .submenu {
  width: 100%;
  transition: none;
  display: none;
}
header nav .nav .global .submenu .inner {
  padding: 0;
}
header nav .nav .global .submenu .inner strong {
  display: none;
}
header nav .nav .global .submenu .inner ul li {
  width: 100%;
}
header nav .nav .global .submenu .inner ul li a {
  font-size: var(--fsize-normal);
  padding: 2% 6%;
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--point-color);
}
header nav .nav .global .submenu .inner ul li a span {
  display: none;
}
header nav .subnav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
}
header nav .subnav .showrooms {
  margin-right: 20px;
}
header nav .subnav .showrooms a {
  color: var(--point-color);
  border: 0.5px solid var(--point-color);
  min-height: 32px;
  padding: 0 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background: #fff;
}
header nav .subnav .showrooms a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 0.5px solid var(--point-color);
  border-right: 0.5px solid var(--point-color);
  transform: rotate(45deg);
  margin-right: 1em;
}
header nav .subnav .language a {
  background: var(--gray);
  min-height: 32px;
  padding: 0 10px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 100vw;
  width: 120px;
}
/*==================================================
$footer
==================================================*/
footer {
  background: var(--point-color);
}
footer .totop {
  position: fixed;
  bottom: 10%;
  right: 5%;
  z-index: 100;
  width: 50px;
  height: 50px;
  background: var(--point-color);
  border-radius: 100vw;
  overflow: hidden;
}
footer .totop::before {
  content: "";
  width: 30%;
  height: 30%;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 15%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
footer .totop img {
  display: none;
}
footer .upper {
  font-size: var(--fsize-sup);
  background: var(--footer-color);
  padding: 20px 0;
}
footer .upper .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
footer .upper .inner ul::after {
  content: "";
  width: 32%;
}
footer .upper .inner ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  width: 32%;
  line-height: 1.3;
}
@media screen and (max-width:400px) {
  footer .upper .inner ul li {
    width: 48%;
  }
}
footer .under {
  font-size: var(--fsize-sup);
  background: var(--point-color);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: var(--footer-under-height);
}
footer .under span {
  color: #fff;
}
.cookie-consent {
  position: fixed;
  bottom: -200px;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 1000px;
  width: 98%;
  font-size: var(--fsize-lead);
  padding: var(--text-space) var(--line-space);
  border: 1px solid var(--gray);
  transition: .5s;
  color: #fff;
  z-index: 100;
}
.cookie-consent::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  background: var(--point-color);
  opacity: 0.8;
  pointer-events: none;
}
.cookie-consent.cc-popup2 {
  bottom: 20px;
}
.cookie-consent.cc-hide1 {
  display: none;
}
.cookie-text {
  width: 100%;
  word-break: keep-all;
}
.cookie-text a {
  color: #fff;
  text-decoration: underline;
}
.cookie-agree {
  color: #fff;
  background: #d70019;
  padding: .5em 3.0em;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 135px;
  height: 35px;
  margin: 5px auto 0;
}
.cookie-consent:not(.cc-hide1) + footer {
  padding-bottom: 230px;
}
/*==================================================
$top_page
==================================================*/
.mv_wrap {
  position: relative;
  margin-bottom: var(--large-space);
}
.mv_wrap .mv_text {
  color: var(--point-color);
  font-size: 10vw;
  font-weight: 500;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
  padding: 0 6.25vw;
  pointer-events: none;
  line-height: 1.2;
}
.mv_wrap .mv_text:not(.slide-1) {
  color: #fff;
  text-shadow: 0 0 10px rgba(0,0,0,.2);
}
.mv_wrap .mv_text .inner {
  max-width: var(--large-inner);
}
.mv_wrap .mv {
  position: relative;
  max-height: calc(100vh - var(--header-height));
  overflow: hidden;
  width: 100%;
}
.mv_wrap .mv .mv_item {
  height: 100%;
  position: relative;
  padding: 66vw 0;
}
.mv_wrap .mv .mv_item img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.mv_wrap .mv .slick-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  margin: auto;
}
.mv_wrap .mv .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border-radius: 100vw;
  background: #B3B3B3;
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  cursor: pointer;
}
.mv_wrap .mv .slick-dots li.slick-active {
  background: #fff;
}
.mv_wrap .mv .slick-dots li button {
  opacity: 0;
  width: 100%;
  height: 100%;
}
.top_block {
  margin-bottom: var(--large-space);
}
.top_block section {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: var(--space);
}
.top_block section .text {
  width: 100%;
  order: 2;
}
.top_block section .text .heading {
  font-size: var(--fsize-h2);
  font-weight: 500;
  display: block;
}
.top_block section .text p {
  margin-top: var(--text-space);
}
.top_block section .text .btn {
  margin-top: 30px;
}
.top_block section .image {
  width: 100%;
  order: 1;
  margin-bottom: var(--small-space);
}
.top_info {
  background: var(--light-gray);
  padding: var(--space) 0 var(--large-space);
}
.top_info .heading {
  display: block;
  text-align: center;
  font-size: var(--fsize-h2);
  font-weight: 500;
  padding-bottom: 10px;
}
.top_info ul {
  padding: 15px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
}
.top_info ul li {
  max-width: var(--small-inner);
}
.top_info ul li:not(:last-child) {
  border-bottom: 1px dashed #000;
}
.top_info ul li a {
  position: relative;
  padding: 10px 0;
  display: block;
}
.top_info ul li a::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/common/icon_link.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  filter: brightness(0) saturate(100%) invert(90%) sepia(1%) saturate(645%) hue-rotate(314deg) brightness(90%) contrast(97%);
}
.top_info ul li a .date {
  display: block;
  width: 100%;
}
.top_info ul li a .headline {
  display: block;
  width: 100%;
}
.top_info .inner>span {
  display: block;
  text-align: right;
  font-weight: 500;
}
/*==================================================
$about
==================================================*/
/* about */
.category_menu .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.category_menu .inner li {
  width: 48%;
  margin-bottom: 4%;
}
.category_menu .inner li a .image {
  display: block;
  position: relative;
  padding: 38% 0;
  overflow: hidden;
  margin-bottom: 5px;
  background: var(--gray);
}
.category_menu .inner li a .image img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.category_menu .inner li a .text {
  display: block;
  text-align: center;
  font-size: var(--fsize-lead);
}
.category_menu.pattern01 {
  background: var(--light-ocher);
  padding: var(--space) 0 var(--large-space);
  margin-top: var(--large-space);
}
.category_menu.pattern01 .inner {
  max-width: var(--large-inner);
  flex-wrap: wrap;
  justify-content: space-between;
}
.category_menu.pattern01 .inner::after {
  content: "";
  width: 32%;
}
.category_menu.pattern01 .inner li {
  width: 32%;
  margin-bottom: 5%;
}
@media screen and (max-width:400px) {
  .category_menu.pattern01 .inner::after {
    width: 48%;
  }
  .category_menu.pattern01 .inner li {
    width: 48%;
  }
}
.category_menu.pattern01 .inner li a .text {
  font-size: var(--fsize-sup);
  line-height: 1.3;
}
.category_menu.pattern02 {
  background: var(--light-gray);
  padding: var(--small-space) 0 var(--middle-space);
}
.category_menu.pattern02 .inner {
  justify-content: space-between;
}
.category_menu.pattern02 .inner::after {
  content: "";
  width: 48%;
  margin: 0 1% 3%;
}
.category_menu.pattern02 .inner li {
  width: 48%;
  margin: 0 1% 3%;
}
.category_menu.pattern02 .inner li a .text {
  font-size: var(--fsize-sup);
  line-height: 1.3;
}
.category_menu.pattern02 .inner li a .btn {
  min-height: 24px;
  margin: 10px auto 0;
  font-size: var(--fsize-sup);
  background: none;
  width: 100%;
}
.category_menu.pattern02 + .category_menu.pattern01 {
  margin-top: 0;
}
.about_page .category_menu {
  margin-bottom: var(--large-space);
}
/* message */
.message_block .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.message_block .inner .heading {
  display: block;
  font-size: var(--fsize-lead);
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  width: 100%;
  margin-bottom: var(--line-space);
}
.message_block .inner .text {
  width: 100%;
  order: 3;
}
.message_block .inner .text p {
  margin-bottom: var(--line-space);
}
.message_block .inner .text .name {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.message_block .inner .text .name p {
  margin-bottom: 10px;
  font-size: var(--fsize-sup);
}
.message_block .inner .text .name p strong {
  font-weight: 500;
  font-size: var(--fsize-lead)
}
.message_block .inner .text .name img {
  max-width: 200px;
}
.message_block .inner .image {
  max-width: 320px;
  width: 100%;
  order: 2;
  margin: 0 auto var(--small-space);
}
/* overview */
.overview_block .inner>span {
  display: block;
  text-align: right;
  font-size: var(--fsize-sup)
}
.about_table {
  width: 100%;
}
.about_table tbody tr th {
  font-size: var(--fsize-lead);
  font-weight: 500;
  background: var(--light-point);
  padding: 20px 10px;
  border-bottom: 2px solid #fff;
  vertical-align: middle;
  width: 130px;
}
.about_table tbody tr td {
  font-size: var(--fsize-normal);
  padding: 15px 10px;
  border-bottom: 2px solid var(--light-point);
  vertical-align: middle;
}
.about_table tbody tr:last-child th,
.about_table tbody tr:last-child td {
  border: none;
}
.about_table tbody tr td dl {
  border-bottom: 2px dotted var(--light-point);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.about_table tbody tr td dl:last-child {
  margin-bottom: 0;
}
.about_table tbody tr td dl dt {
  width: 100%;
  margin-bottom: 10px;
}
.about_table tbody tr.in_list th {
  vertical-align: top;
  padding-top: 12px;
  padding-bottom: 0;
  border: none;
}
.about_table tbody tr.in_list td {
  padding-bottom: 0;
  border: none;
}
/* segment */
.category_submenu .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.category_submenu .inner li {
  width: 100%;
  margin-bottom: 4%;
}
.category_submenu .inner li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 30% 0;
}
.category_submenu .inner li a strong {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  text-align: center;
  font-size: var(--fsize-h3);
  font-weight: 500;
  color: #fff;
  background: linear-gradient(to bottom,  rgba(149,137,121,1) 0%,rgba(0,0,0,0) 100%);
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  line-height: 1.3;
}
.category_submenu .inner li a .image img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.products_page .category_submenu .inner li:nth-child(2) a .image img {
  width: 145%;
  height: 105%;
  top: 54%;
  left: 61%;
}
.products_page .category_submenu .inner li:nth-child(3) a .image img {
  width: 214%;
  height: 135%;
  top: 34%;
  left: 74%;
}
.segments_page .category_submenu .inner li:nth-child(1) a .image img {
  width: 124%;
  height: 170%;
  top: 67%;
  left: 61%;
}
.segments_page .category_submenu .inner li:nth-child(2) a .image img {
  height: 140%;
  top: 70%;
}
.segments_page .category_submenu .inner li:nth-child(3) a .image img {
  width: 150%;
  height: 170%;
  top: 15%;
  left: 50%;
}
.category_submenu .inner li a .btn {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  margin: auto;
  border: none;
  width: 90%;
  max-width: 200px;
}
.segment_upper {
  margin-bottom: var(--space);
}
.segment_upper .inner div:not(:first-child) {
  margin-top: var(--line-space);
}
.segment_upper .inner .text {
  font-size: var(--fsize-normal);
}
.segment_upper .inner .text p:not(:last-child) {
  margin-bottom: var(--text-space);
}
.segment_box {
  max-width: var(--large-inner);
  margin: 0 auto var(--space);
  background: var(--beige);
}
.segment_box .inner>li {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--space) 0;
}
.segment_box .inner>li:not(:last-child) {
  border-bottom: 1px solid #000;
}
.segment_box .inner>li .heading {
  width: 100%;
  font-size: var(--fsize-h2);
  font-weight: 500;
  margin-bottom: var(--line-space);
}
.segment_box .inner>li .image {
  width: 100%;
  order: 2;
  margin-bottom: var(--line-space);
}
.segment_box .inner>li .text {
  width: 100%;
}
.segment_box .inner>li .text p:not(:first-child) {
  margin-top: var(--text-space);
}
.segment_box .inner>li .inbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.segment_box .inner>li .inbox .image {
  width: 100%;
  margin-top: var(--small-space);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  font-size: var(--fsize-normal);
  font-weight: 500;
  line-height: 1.3;
}
.segment_box .inner>li .inbox .image>span {
  width: 50%;
}
.segment_box .inner>li .inbox .image img + span {
  width: 100%;
  margin-top: 10px;
  display: block;
  font-size: var(--fsize-sup)
}
.segment_box .inner>li .inbox .image span span {
  display: block;
  margin-top: 5px;
  font-size: var(--fsize-sup);
  line-height: 1.5;
}
.segment_box .inner>li .images ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: var(--line-space);
}
.segment_box .inner>li .images ul li {
  width: 48%;
  font-size: var(--fsize-normal);
  font-weight: 500;
  line-height: 1.3;
}
.segment_box .inner>li .images ul li:nth-child(n+3) {
  margin-top: 4%;
}
.segment_box .inner>li .images ul li span:nth-child(2) {
  display: block;
  margin-top: 5px;
  font-size: var(--fsize-sup);
  line-height: 1.5;
}
.segment_box.row_list .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: var(--space);
  padding-bottom: var(--space);
}
.segment_box.row_list .inner li {
  width: 100%;
  align-items: flex-start;
  border: none;
  position: relative;
  padding: 0;
  height: auto;
  margin-bottom: var(--line-space);
  padding-bottom: var(--line-space);
}
.segment_box.row_list .inner li:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #000;
}
.segment_box.row_list .inner li .heading {
  font-size: var(--fsize-lead);
  font-weight: normal;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.3;
  min-height: 2.6em;
  margin-bottom: 0;
}
.segment_box.row_list .inner li .heading::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--point-color);
  margin-right: 0.5em;
  margin-top: 0.3em;
}
.segment_box.row_list .inner li .image,
.segment_box.row_list .inner li .text {
  width: 100%;
  margin-top: var(--text-space);
}
.segment_box.row_list .inner li .text {
  height: 100%;
}
.segment_box.row_list .inner li.coming_soon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: var(--gray);
  color: #fff;
  font-size: 20px;
  padding: 0;
  height: 80px;
  margin-bottom: 0;
}
/* history */
.history_upper {
  margin-bottom: var(--space);
}
.history_upper .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.history_upper .inner .box {
  width: 100%;
  margin-top: var(--small-space);
}
.history_upper .inner .box .heading {
  width: 100%;
  min-height: 40px;
  background: var(--point-color);
  color: #fff;
  font-size: var(--fsize-lead);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.history_upper .inner .box .text strong {
  display: block;
  margin-top: var(--text-space);
  font-weight: 500;
  font-size: var(--fsize-lead);
}
.history_upper .inner .box .text p {
  margin-top: var(--text-space);
  font-size: var(--fsize-normal);
}
.history_list .inner table thead tr th:not(:first-child) {
  width: 50%;
  background: var(--point-color);
  font-size: var(--fsize-lead);
  color: #fff;
  text-align: center;
  vertical-align: middle;
  padding: 5px 10px;
  line-height: 1.3;
}
.history_list .inner table thead tr th:nth-child(2),
.history_list .inner table tbody tr td:nth-child(2) {
  border-right: 8px solid #fff;
}
.history_list .inner table tbody tr {
  position: relative;
  border-bottom: 1px solid #000;
}
.history_list .inner table tbody tr:last-child {
  border: none;
}
.history_list .inner table tbody tr strong {
  font-weight: bold;
}
.history_list .inner table tbody tr th {
  font-size: var(--fsize-normal);
  vertical-align: middle;
  padding: 10px 5px 10px 0;
  line-height: 1.3;
}
.history_list .inner table tbody tr th .border {
  display: none;
}
.history_list .inner table tbody tr td:nth-of-type(1) {
  background: var(--light-ocher);
}
.history_list .inner table tbody tr td:nth-of-type(2) {
  background: var(--light-gray);
}
.history_list .inner table tbody tr td {
  padding: 10px 10px;
  font-size: var(--fsize-sup);
  position: relative;
}
.history_list .inner table tbody tr td p {
  padding-left: 1em;
  text-indent: calc(-1em + 2px);
}
.history_list .inner table tbody tr td p::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  background: var(--point-color);
  border-radius: 100vw;
  margin-right: 3px;
}
.history_list .inner table tbody tr td .image {
  width: 100%;
  margin: 0 0 10px;
}
.history_list .inner table tbody tr td[colspan="2"] {
  background: none;
  border: none;
}
.history_list .inner table tbody tr.col td[colspan="2"] {
  font-size: var(--fsize-normal);
  text-align: center;
  border: none;
}
.history_list .inner table tbody tr.col th[colspan="3"] {
  font-size: var(--fsize-lead);
  background: var(--red);
  text-align: center;
  color: #fff;
  border: none;
}
/* group */
.group_upper {
  margin-bottom: var(--space);
}
.group_upper .inner .chart>*:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}
.group_upper .inner .chart div ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.group_upper .inner .chart>div>div,
.group_upper .inner .chart>div>ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  min-height: 64px;
  position: relative;
  line-height: 1.3;
}
.group_upper .inner .chart>div>ul li>span {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: var(--fsize-normal);
  color: #000;
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.group_upper .inner .chart>div>ul li>span::before {
  content: "";
  width: 2px;
  height: 40px;
  background: var(--point-color);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.group_upper .inner .chart>div>ul li>span::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--point-color) transparent transparent transparent;
  border-width: 13px 7px 0px 7px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.group_upper .inner .chart .holdings div {
  width: 100%;
  justify-content: center;
  background: var(--point-color);
  color: #fff;
  font-size: var(--fsize-lead);
}
.group_upper .inner .chart .subsidiary li {
  width: 46%;
  background: var(--light-point);
  color: #fff;
  font-size: var(--fsize-lead);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.group_upper .inner .chart .subsidiary li:first-child:after {
  content: "";
  width: 2px;
  height: 20px;
  background: var(--point-color);
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
}
.group_upper .inner .chart .subsidiary li:nth-child(1) span span {
  margin-right: 60px;
}
.group_upper .inner .chart .subsidiary li:nth-child(2) span span {
  margin-left: 60px;
}
.group_upper .inner .chart .others {
  margin-bottom: 20px;
  position: relative;
}
.group_upper .inner .chart .others::before {
  content: "";
  width: 27%;
  height: 2px;
  background: var(--point-color);
  position: absolute;
  top: -20px;
  left: -27%;
  right: 0;
  margin: auto;
}
.group_upper .inner .chart .others::after {
  content: "";
  height: calc(85.3% + 20px);
  width: 2px;
  background: var(--point-color);
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
}
.group_upper .inner .chart .others + .others::before {
  display: none;
}
.group_upper .inner .chart .others li {
  font-size: var(--fsize-sup);
  border: 1px solid var(--point-color);
  width: 40%;
  min-height: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5px;
  margin-bottom: 20px;
}
.group_upper .inner .chart .others li:not(.sp)>span {
  height: 0;
  top: 0;
  bottom: 0;
  width: 25.5%;
}
.group_upper .inner .chart .others li:not(.sp):nth-child(odd)>span {
  left: auto;
  right: -25.5%;
}
.group_upper .inner .chart .others li:not(.sp):nth-child(even)>span {
  left: -25%;
  right: auto;
}
.group_upper .inner .chart .others li:not(.sp):nth-child(odd)>span::after {
  transform: rotate(90deg);
  top: 0;
  right: auto;
}
.group_upper .inner .chart .others li:not(.sp):nth-child(even)>span::after {
  transform: rotate(-90deg);
  top: 0;
  left: auto;
}
.group_upper .inner .chart .others li:not(.sp)>span::before {
  height: 2px;
  width: 100%;
}
.group_upper .inner .chart .others li:not(.sp)>span span {
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: auto;
}
.group_upper .inner .chart .others li.sp>span {
  height: 20px;
  top: -20px;
}
.group_upper .inner .chart .others li.sp>span::before {
  height: 20px;
}
.group_upper .inner .chart .others li.sp>span span {
  margin-left: 60px;
}
.group_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: var(--space);
}
.group_btn::after {
  content: "";
  width: 32%;
}
.group_btn li {
  width: 32%;
  margin-bottom: 2%;
}
@media screen and (max-width:400px) {
  .group_btn::after {
    width: 48%;
  }
  .group_btn li {
    width: 48%;
  }
}
.group_btn li a {
  border: 1px solid #000;
  width: 100%;
  height: 64px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.group_btn li a img {
  width: 90%;
  height: 40px;
  object-fit: contain;
}
.group_btn li a[href="#francebed"] img,
.group_btn li a[href="#tsubasa"] img,
.group_btn li a[href="#tokyo"] img {
  height: 20px;
}
.group_btn li a[href="#tsubasa"] img {
  height: 25px;
}
.group_btn li a[href="#jiangsu"] img {
  height: 60px;
  padding-bottom: 5px;
}
.group_data {
  position: relative;
  margin-bottom: var(--space);
}
.group_data .heading {
  border-bottom: 1px solid var(--point-color);
  margin-bottom: var(--line-space);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 10px;
  width: 100%;
  overflow: hidden;
}
.group_data .heading>* {
  width: 100%;
}
.group_data .heading .name {
  width: 100%;
  order: 2;
  font-size: var(--fsize-lead);
  font-weight: 500;
}
.group_data .heading .logo {
  width: 50%;
  order: 1;
  overflow: hidden;
  margin-bottom: 5px;
  max-width: 300px;
}
.group_data .heading .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.group_data#holdings .heading .logo {
  width: 80%;
  max-width: none;
  margin-left: -1.1%;
}
.group_data#furniture .heading .logo {
  margin-left: -2%;
  margin-bottom: -5px;
}
.group_data#tomonokai .heading .logo {
  margin-left: -2%;
  margin-bottom: -3px;
}
.group_data#tokyo .heading .logo {
  max-width: 200px;
}
.group_data#tsubasa .heading .logo {
  margin-left: -5%;
}
.group_data#kashidasu .heading .logo {
  margin-left: -2.5%;
  margin-bottom: -10px;
}
.group_data#jiangsu .heading .logo {
  max-width: 200px;
  width: auto;
  margin-left: -20px;
  margin-bottom: -10px;
}
.group_data#medical .heading .logo {
  width: 80%;
  max-width: none;
}
.group_data .heading .link {
  order: 3;
}
.group_data .heading .link a {
  background: var(--point-color);
  color: #fff;
  padding: 0 10px;
  line-height: 1.2;
  font-size: var(--fsize-sup);
  border: 1px solid var(--point-color);
}
.group_data .heading .link a[href=""] {
  display: none;
}
/*==================================================
$information
==================================================*/
.info_list {
  padding-bottom: var(--large-space);
}
.info_list .inner .block {
  margin-bottom: 25px;
}
.info_list .inner .block .year {
  display: block;
  font-size: var(--fsize-h2);
  font-weight: 500;
  line-height: 1;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  position: relative;
  cursor: pointer;
}
.info_list .inner .block .year::before,
.info_list .inner .block .year::after {
  content: "";
  width: 16px;
  height: 3px;
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  opacity: 1;
}
.info_list .inner .block .year::after {
  transform: rotate(90deg);
}
.info_list .inner .block .year.active::after {
  opacity: 0;
}
.info_list .inner .block ul {
  padding: var(--line-space) 0 0;
  transition: none;
  display: none;
}
.info_list .inner .block .pattern01 li,
.info_list .inner .block .pattern01 li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  line-height: 1.3;
  position: relative;
  width: 100%;
}
.info_list .inner .block .pattern01 li {
  padding: var(--line-space) 0;
  border-bottom: 1px dashed #333;
}
.info_list .inner .block .pattern01 li:first-child {
  padding-top: 0;
}
.info_list .inner .block .pattern01 li:last-child {
  border: none;
}
.info_list .inner .block .pattern01 li a::after {
  content: "";
  filter: brightness(0) saturate(100%) invert(16%) sepia(1%) saturate(5%) hue-rotate(320deg) brightness(103%) contrast(91%);
  width: 16px;
  height: 16px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../img/common/icon_link.svg) no-repeat center/contain;
}
.info_list .inner .block .pattern01 li .image {
  max-width: 168px;
  width: 20%;
  height: 96px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #F2F2F2;
  margin-right: 30px;
}
.info_list .inner .block .pattern01 li .image img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.info_list .inner .block .pattern01 li .heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: var(--fsize-lead);
  font-weight: 500;
  width: calc(80% - 30px);
}
.info_list .inner .block .pattern01 li .detail {
  font-size: var(--fsize-sup);
  width: 100%;
  margin-top: var(--small-space);
}
.info_list .inner .block .pattern01 li .detail div {
  position: relative;
  padding-left: 25px;
}
.info_list .inner .block .pattern01 li .detail div::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.info_list .inner .block .pattern01 li .detail div:nth-child(1)::before {
  background: url(../img/info/icon_clock.svg) no-repeat center/contain;
}
.info_list .inner .block .pattern01 li .detail div:nth-child(2)::before {
  background: url(../img/info/icon_pin.svg) no-repeat center/contain;
}
.info_list .inner .block .pattern01 li .detail div:not(:last-child)  {
  margin-bottom: 15px;
}
.info_list .inner .block .pattern01 li .detail div dl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}
.info_list .inner .block .pattern01 li .detail div dl dt {
  margin-right: 0.5em;
  white-space: nowrap;
}
.info_list .inner .block .pattern02 li {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 40px;
}
.info_list .inner .block .pattern02 li:first-child {
  margin-top: 0;
}
.info_list .inner .block .pattern02 li::before {
  content: "";
  width: 15px;
  min-width: 15px;
  height: 15px;
  background: url(../img/info/icon_ribon.svg) no-repeat center/contain;
  filter: brightness(0) saturate(100%) invert(60%) sepia(8%) saturate(732%) hue-rotate(355deg) brightness(90%) contrast(87%);
  margin: 5px 5px 0;
}
.info_list .inner .block .pattern02 li .date {
  margin-right: 40px;
  min-width: 75px;
}
.info_list .inner .block .pattern02 li .heading {
  width: 100%;
}
/*==================================================
$sitemap
==================================================*/
.sitemap_list {
  margin-bottom: var(--large-space);
}
.sitemap_list .inner .block:not(:last-child) {
  margin-bottom: var(--line-space);
}
.sitemap_list .inner .block dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.sitemap_list .inner .block dl dt {
  width: 100%;
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--point-color);
}
.sitemap_list .inner .block dl dt a {
  display: inline-block;
  color: var(--point-color);
  font-size: var(--fsize-h2);
  font-weight: 500;
}
.sitemap_list .inner .block dl dt a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--point-color);
  border-right: 2px solid var(--point-color);
  transform: rotate(45deg);
  margin-left: 15px;
  margin-bottom: 2px;
}
.sitemap_list .inner .block dl dd {
  width: 100%;
  margin-bottom: var(--text-space);
}
.sitemap_list .inner .block dl dd>a {
  font-size: var(--fsize-lead);
  font-weight: 500;
}
.sitemap_list .inner .block dl dd>a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  margin-left: 20px;
  margin-bottom: 2px;
}
.sitemap_list .inner .block dl dd ul {
  margin-top: var(--text-space);
}
.sitemap_list .inner .block dl dd ul li a {
  font-size: var(--fsize-normal);
}
/*==================================================
$terms
==================================================*/
.terms_list {
  margin-bottom: var(--large-space);
}
.terms_list .inner>ol {
  counter-reset: terms-number 0;
}
.terms_list .inner>ol>li {
  margin-bottom: var(--space);
}
.terms_list .inner>ol>li>*:not(:first-child) {
  margin-top: var(--line-space);
}
.terms_list .inner>ol>li .section_heading::before {
  counter-increment: terms-number 1;
  content: counter(terms-number) ". ";
}
.terms_list .inner>ol>li p + p {
  margin-top: 10px !important;
}
.terms_list .inner>ol>li div .subheading {
  font-size: var(--fsize-lead);
  font-weight: 500;
  margin-bottom: var(--text-space);
}
.terms_list .inner>ol>li ol {
  counter-reset: terms-in-number 0;
}
.terms_list .inner>ol>li ol li {
  padding-left: 1em;
  text-indent: -1em;
}
.terms_list .inner>ol>li ol li::before {
  counter-increment: terms-in-number 1;
  content: counter(terms-in-number) ". ";
}
/*==================================================
$privacy
==================================================*/
.privacy_block {
  margin-bottom: var(--large-space);
}
.privacy_block .inner>*:not(:last-child) {
  margin-bottom: var(--space);
}
.privacy_block .inner .privacy_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
  max-width: var(--small-inner);
  margin-left: auto;
  margin-right: auto;
}
.privacy_block .inner .privacy_btn li {
  max-width: 400px;
  width: 100%;
  height: 65px;
  margin-top: var(--small-space);
}
.privacy_block .inner .privacy_btn li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 100vw;
  border: 1px solid var(--point-color);
  width: 100%;
  height: 100%;
  color: var(--point-color);
  text-align: center;
  line-height: 1.3;
  font-size: var(--fsize-lead);
  position: relative;
}
.privacy_block .inner .privacy_btn li a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--point-color);
  border-right: 2px solid var(--point-color);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 3px;
  right: 20px;
  margin: auto;
}
.privacy_block .inner section {
  font-size: var(--fsize-normal);
}
.privacy_block .inner section a {
  text-decoration: underline;
}
.privacy_block .inner section p {
  margin-top: 15px;
}
.privacy_block .inner section p + p {
  margin-top: 10px;
}
.privacy_block .inner section>ol {
  margin-top: var(--line-space);
}
.privacy_block .inner section>ol>li:not(:last-child) {
  margin-bottom: var(--line-space);
}
.privacy_block .inner section>ol>li .subheading {
  font-size: var(--fsize-h3);
  font-weight: 500;
  padding: 0 10px;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.privacy_block .inner section>ol>li .subheading::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--point-color);
  z-index: -1;
  opacity: 0.2;
}
.privacy_block .inner section>ol>li .inbox {
  padding: 40px;
  border: 1px solid #000;
  width: 100%;
  margin-top: 25px;
}
.privacy_block .inner section>ol>li .inbox .inboxheading {
  font-size: var(--fsize-h3);
  color: var(--point-color);
  margin-bottom: 25px;
}
.privacy_block .inner section>ol>li .inbox ul li {
  margin-top: 10px;
  padding-left: 0.8em;
  position: relative;
}
.privacy_block .inner section>ol>li .inbox ul li::before {
  content: "*";
  display: inline-block;
  margin-right: 0.3em;
  position: absolute;
  top: 0;
  left: 0;
}
/*==================================================
$cookie
==================================================*/
.cookie_block {
  margin-bottom: var(--large-space);
}
.cookie_block .inner>p {
  margin-bottom: var(--middle-space);
}
.cookie_block .inner>ol>li {
  margin-top: var(--space);
}
.cookie_list01 li {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.cookie_list01 li:not(:first-child) {
  margin-top: 10px;
}
.cookie_list01 li div {
  text-indent: 0;
  margin: var(--line-space) 0;
}
.cookie_list01 li div strong {
  display: block;
  font-size: var(--fsize-h3);
  font-weight: 500;
  margin-bottom: 10px;
}
.cookie_list02>li {
  margin-bottom: var(--line-space);
}
.cookie_list02>li>*:not(:last-child) {
  margin-bottom: var(--line-space);
}
.cookie_list02>li strong {
  display: block;
  margin-bottom: var(--text-space) !important;
  font-weight: 500;
}
.cookie_list02>li ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.cookie_list02>li ul li {
  margin-right: 6.75%;
}
.cookie_list02>li table {
  width: 100%;
}
.cookie_list02>li table tbody tr th {
  background: var(--light-point);
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
  padding: 10px;
  line-height: 1.3;
}
.cookie_list02>li table tbody tr th:nth-child(1) {
  width: 22%;
}
.cookie_list02>li table tbody tr th:nth-child(2) {
  width: 39%;
}
.cookie_list02>li table tbody tr th:nth-child(3) {
  width: 39%;
}
.cookie_list02>li table tbody tr th:not(:last-child),
.cookie_list02>li table tbody tr td:not(:last-child) {
  border-right: 1px solid var(--point-color);
}
.cookie_list02>li table tbody tr td {
  padding: 10px;
  border-bottom: 1px solid var(--point-color);
  vertical-align: middle;
}
.cookie_list02>li table tbody tr td .outlink {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
/*==================================================
$award
==================================================*/
.award_block {
  margin-bottom: var(--large-space);
}
.award_block .inner>p {
  margin-bottom: var(--middle-space);
}
.award_block .award_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-bottom: 3px solid var(--point-color);
  margin-bottom: var(--middle-space);
}
.award_block .award_btn li {
  width: 50%;
  max-width: 480px;
}
.award_block .award_btn li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  font-size: var(--fsize-h3);
  border: 1px solid #fff;
  background: #fff;
  color: var(--light-point);
  min-height: 64px;
  padding: 10px;
}
.award_block .award_btn li a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--light-point);
  border-right: 2px solid var(--light-point);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 3px;
  right: 10px;
  margin: auto;
}
.award_block .award_btn li.active a {
  background: var(--point-color);
  color: #fff;
  border: 1px solid var(--point-color);
}
.award_block .award_btn li.active a::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.award_block .inner ul {
  display: none;
}
.award_block .inner ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: var(--small-space);
}
.award_block .inner ul li .year {
  margin-bottom: var(--line-space);
}
.award_block .inner ul li article {
  width: 100%;
  margin-bottom: var(--middle-space);
}
.award_block .inner ul li article>*:not(:first-child) {
  margin-top: 10px;
}
.award_block .inner ul li article .award_heading {
  font-size: var(--fsize-h3);
  font-weight: 500;
}
/*==================================================
$electric
==================================================*/
.electric_page .breadcrumb li {
  color: #fff;
}
.electric_wrap .electric_mv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: var(--middle-space);
}
.electric_wrap .electric_mv .image {
  width: 100%;
  padding: 30% 0;
  position: relative;
  overflow: hidden;
}
.electric_wrap .electric_mv .image img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.electric_wrap .electric_mv .text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: var(--fsize-h1);
  font-weight: 500;
  color: #fff;
  max-width: var(--small-inner);
  text-align: justify;
  padding: 0 35px;
}
@media screen and (max-width:880px) {
  .electric_wrap .electric_mv .text {
    font-size: 5.11vw;
    line-height: 1.3;
  }
}
.electric_wrap .upper {
  margin-bottom: var(--space);
}
.electric_wrap .upper .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.electric_wrap .upper .inner .text {
  width: 100%;
  order: 2;
}
.electric_wrap .upper .inner .text .heading {
  font-size: var(--fsize-h2);
  font-weight: 500;
  margin-bottom: var(--small-space);
}
.electric_wrap .upper .inner .text p {
  margin-bottom: 10px;
  font-size: var(--fsize-lead);
}
.electric_wrap .upper .inner .image {
  width: 100%;
  max-width: 400px;
  margin: 0 auto var(--small-space);
  order: 1;
}
.electric_btn .inner {
  padding-top: var(--space);
  padding-bottom: var(--space);
  border-top: 1px solid #000;
}
.electric_btn .inner>p {
  text-align: center;
  margin-bottom: var(--line-space);
  font-size: var(--fsize-h3);
  font-weight: 500;
}
.electric_btn .inner ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.electric_btn .inner ul li {
  width: 32%;
}
@media screen and (max-width:600px) {
  .electric_btn .inner ul {
    flex-wrap: wrap;
  }
  .electric_btn .inner ul li {
    width: 100%;
    margin-bottom: 5%;
  }
}
.electric_btn .inner ul li a {
  position: relative;
  display: block;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  background: var(--light-point);
  border-radius: 100vw;
  font-size: var(--fsize-h3);
  font-weight: 500;
}
.electric_btn .inner ul li:nth-child(2) a {
  background: #f4d6c6;
}
.electric_btn .inner ul li:nth-child(3) a {
  background: var(--beige);
}
/* .electric_btn .inner ul li a::before {
  content: "";
  width: 64px;
  height: 32px;
  border-radius: 100vw;
  background: #fff;
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  margin: auto;
}
.electric_btn .inner ul li a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-bottom: 1px solid var(--point-color);
  border-right: 1px solid var(--point-color);
  transform: rotate(45deg);
  position: absolute;
  bottom: 37px;
  left: 0;
  right: 0;
  margin: auto;
} */
.electric_btn .inner ul li a .heading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  text-align: center;
  font-size: var(--fsize-h3);
  font-weight: 500;
  color: #fff;
  background: linear-gradient(to bottom,  rgba(149,137,121,1) 0%,rgba(0,0,0,0) 100%);
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}
.electric_btn .inner ul li p {
  margin-top: 10px;
  display: none;
}
.electric_btn .inner span {
  display: block;
  margin-top: var(--small-space);
  font-size: var(--fsize-sup);
  display: none;
}
.electric_block {
  padding: var(--space) 0 var(--small-space);
}
.electric_block.bg01 {
  background: var(--light-gray);
}
.electric_block.bg02 {
  background: var(--light-ocher);
}
.electric_block .inner div .heading {
  margin-bottom: var(--small-space);
  font-weight: 500;
  font-size: var(--fsize-h3);
}
.electric_block .inner div p {
  margin-top: 10px;
}
.electric_block .inner ul {
  padding: var(--middle-space) 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.electric_block .inner ul li {
  width: 32%;
}
.electric_block .inner ul li .heading {
  font-weight: 500;
  margin-bottom: 5px;
}
.electric_block .inner ul li .text {
  margin-top: 5px;
}
@media screen and (max-width:500px) {
  .electric_block .inner ul li {
    width: 100%;
    margin-bottom: var(--small-space);
  }
  .electric_block .inner ul li:last-child {
    margin-bottom: 0;
  }
}
.electric_block .inner>a {
  font-size: var(--fsize-normal);
  max-width: 200px;
  width: 90%;
  min-height: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--point-color);
  color: var(--point-color);
  text-align: center;
  border-radius: 100vw;
  margin: auto;
}
/*==================================================
$origin
==================================================*/
.origin_wrap .headline {
  padding: var(--space) 5%;
}
.origin_wrap .headline .heading {
  font-size: var(--fsize-h1);
  font-weight: 500;
  display: block;
  margin-bottom: var(--space);
  color: var(--point-color);
  line-height: 1.3;
}
.origin_wrap .headline .heading span {
  font-size: calc(var(--fsize-h1) - 1pt);
}
.origin_wrap .headline p {
  font-size: var(--fsize-lead);
  font-weight: 500;
}
.origin_block {
  padding-top: var(--small-space);
  padding-bottom: var(--small-space);
}
.origin_block:nth-of-type(odd) {
  background: #fcfaf5;
}
.origin_block .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.origin_block .inner .text {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: var(--small-space);
}
.origin_block .inner .text div .heading {
  font-size: var(--fsize-h2);
  font-weight: 500;
  margin-bottom: var(--small-space);
}
.origin_block .inner .text div .subheading {
  margin-top: 10px;
  font-weight: 500;
  font-size: var(--fsize-h3);
}
.origin_block .inner .text div p {
  margin-top: 10px;
}
.origin_block .inner .image {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: var(--small-space);
}
.origin_block .inner .image div {
  width: 48%;
}
.origin_block .inner .image div span {
  display: block;
  margin-top: 5px;
  font-size: var(--fsize-sup);
  line-height: 1.5;
}
.origin_block .inner .image.pattern03 {
  align-items: flex-start;
}
.origin_block .inner .image.pattern03 div:nth-child(1) {
  width: 100%;
  margin-bottom: var(--small-space);
}
.origin_block .inner .text {
  order: 2;
}
.origin_block .inner .image {
  order: 1;
}
.origin_block:nth-of-type(1) .inner .image {
  order: 2;
}
.origin_block:nth-of-type(1) .inner .text {
  order: 1;
  margin-top: 0;
}
.origin_block:nth-of-type(2) .inner>div:nth-child(1) {
  order: 2;
}
.origin_block:nth-of-type(2) .inner>div:nth-child(2) {
  order: 1;
  margin-top: 0;
}
.origin_block:nth-of-type(2) .inner>div:nth-child(3) {
  order: 3;
}
.origin_block:nth-of-type(2) .inner>div:nth-child(4) {
  order: 4;
}
.origin_block:nth-of-type(2) .inner>div:nth-child(5) {
  order: 6;
}
.origin_block:nth-of-type(2) .inner>div:nth-child(6) {
  order: 5;
}
.origin_block:nth-of-type(3) .inner .image {
  order: 2;
}
.origin_block:nth-of-type(3) .inner .text {
  order: 1;
  margin-top: 0;
}
.origin_vision {
  padding: var(--small-space) 0 var(--large-space);
}
.origin_vision .inner .upper>*:not(:last-child) {
  margin-bottom: var(--small-space);
}
.origin_vision .inner .upper .heading {
  font-size: var(--fsize-h2);
  font-weight: 500;
  text-align: center;
  display: block;
}
.origin_vision .inner .upper ul {
  padding-left: 30px;
}
.vision_block {
  margin-top: var(--middle-space);
}
.vision_block .section_heading {
  color: #000;
}
.vision_block ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.vision_block ul li {
  width: 32%;
}
@media screen and (max-width:500px) {
  .vision_block ul li {
    width: 48%;
    margin-bottom: var(--small-space);
  }
}
.vision_block ul li .heading {
  font-weight: 500;
  margin-bottom: 5px;
}
.vision_block ul li .text p {
  margin-top: 5px;
  line-height: 1.5;
}
.vision_map {
  margin-top: var(--line-space);
  padding: var(--middle-space) var(--line-space);
  background: #fcfaf5;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  border-radius: 30px;
}
.vision_map .map {
  max-width: 440px;
  width: 100%;
  margin: 0 auto var(--line-space);
}
.vision_map .map span {
  display: block;
  text-align: right;
  font-size: var(--fsize-sup);
}
.vision_map .inbox {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: var(--text-space);
}
.vision_map .inbox:last-child {
  margin-bottom: 0;
}
.vision_map .inbox .map_heading {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #000;
  font-size: var(--fsize-normal);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.vision_map .inbox .map_heading::before {
  content: "";
  width: 16px;
  min-width: 16px;
  height: 16px;
  border-radius: 100vw;
  background: #000;
  margin-right: 0.5em;
}
.vision_map .inbox.showrooms .map_heading::before {
  background: #d60019;
}
.vision_map .inbox.pr_studios .map_heading::before {
  background: #eb7f8b;
}
.vision_map .inbox.care_shops .map_heading::before {
  background: #007ec7;
}
.vision_map .inbox.service_centers .map_heading::before {
  background: #7fbee3;
}
.vision_map .inbox.production_facilities .map_heading::before {
  background: #00a868;
}
.vision_map .inbox div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
.vision_map .inbox ul {
  display: block;
}
.vision_map .inbox ul:not(:last-child) {
  margin-right: var(--line-space);
}
.vision_map .inbox ul li {
  width: 100%;
  font-size: var(--fsize-sup);
  margin-bottom: 10px;
}
@media screen and (max-width:450px) {
  .vision_map .inbox div {
    flex-wrap: wrap;
  }
  .vision_map .inbox ul {
    width: 100%;
  }
}
/*==================================================
$sustainability
==================================================*/
.sustainability_wrap .inner .headline {
  margin-bottom: var(--space);
}
.sustainability_wrap .inner .headline .heading {
  display: block;
  font-size: var(--fsize-h3);
  font-weight: 500;
  color: var(--point-color);
  margin-bottom: var(--small-space);
}
.sustainability_wrap .inner .headline ul {
  margin-top: var(--line-space);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.sustainability_wrap .inner .headline ul li {
  width: 32%;
}
.sustainability_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: var(--space);
}
.sustainability_block>*:last-child {
  margin-bottom: 0 !important;
}
.sustainability_block .image {
  width: 100%;
  order: 1;
  margin-bottom: var(--line-space);
}
.sustainability_block .text {
  width: 100%;
  order: 2;
}
.sustainability_block .text .subheading {
  font-size: var(--fsize-h3);
  font-weight: 500;
}
.sustainability_block .text .subheading.square {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.sustainability_block .text .subheading.square::before {
  content: "";
  width: 0.475em;
  min-width: 0.475em;
  height: 0.475em;
  background: var(--point-color);
  margin-right: 0.5em;
  margin-top: 0.6em;
}
.sustainability_block .text p {
  margin-top: 10px;
}
.sustainability_block .inblock {
  margin-bottom: var(--space);
  width: 100%;
  overflow: hidden;
}
.sustainability_block .inblock .text {
  width: 100%;
}
.sustainability_block .inblock .text ul {
  margin-top: 10px;
  padding-left: var(--line-space);
}
.sustainability_block .inblock .inbox {
  margin-top: var(--line-space);
  background: var(--light-ocher);
  padding: var(--middle-space) 5%;
}
.sustainability_block .inblock .inbox .heading {
  font-size: var(--fsize-h3);
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--small-space);
  width: 100%;
}
.sustainability_block .inblock .inbox .cycle_wrap {
  width: 100%;
  overflow-x: auto;
  position: relative;
}
.sustainability_block .inblock .inbox .cycle_wrap.swipe::before {
  content: "";
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,.7) url(../img/common/icon_swipe.svg) no-repeat center/85%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  border-radius: 10px;
  transform: scale(-1,1);
  border: 1px solid #000;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
}
.sustainability_block .inblock .inbox .cycle_wrap.swipe.off::before {
  opacity: 0;
}
.sustainability_block .inblock .inbox .cycle {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 600px;
}
.sustainability_block .inblock .inbox .cycle li {
  width: calc((100% - 40px) / 2);
  margin-bottom: 40px;
  padding: var(--small-space);
  border-radius: 30px;
  min-height: 428px;
  position: relative;
}
.sustainability_block .inblock .inbox .cycle li::after {
  content: "";
  width: 40px;
  height: 60px;
  position: absolute;
  margin: auto;
  background: url(../img/sustainability/arrow.svg) no-repeat center/contain;
}
.sustainability_block .inblock .inbox .cycle li:nth-child(1) {
  background: #DFDCD7;
}
.sustainability_block .inblock .inbox .cycle li:nth-child(1)::after {
  top: 0;
  bottom: 0;
  right: -39px;
  filter: brightness(0) saturate(100%) invert(83%) sepia(0%) saturate(2404%) hue-rotate(4deg) brightness(108%) contrast(92%);
}
.sustainability_block .inblock .inbox .cycle li:nth-child(2) {
  background: var(--light-point);
}
.sustainability_block .inblock .inbox .cycle li:nth-child(2)::after {
  bottom: -48px;
  left: 0;
  right: 0;
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%) invert(98%) sepia(4%) saturate(845%) hue-rotate(324deg) brightness(83%) contrast(87%);
}
.sustainability_block .inblock .inbox .cycle li:nth-child(3) {
  background: var(--light-point);
  order: 4;
}
.sustainability_block .inblock .inbox .cycle li:nth-child(3)::after {
  top: 0;
  bottom: 0;
  left: -39px;
  transform: scale(-1,1);
  filter: brightness(0) saturate(100%) invert(93%) sepia(13%) saturate(145%) hue-rotate(355deg) brightness(86%) contrast(84%);
}
.sustainability_block .inblock .inbox .cycle li:nth-child(4) {
  background: #958979;
  order: 3;
}
.sustainability_block .inblock .inbox .cycle li:nth-child(4)::after {
  top: -48px;
  left: 0;
  right: 0;
  transform: rotate(-90deg);
  filter: brightness(0) saturate(100%) invert(67%) sepia(4%) saturate(1460%) hue-rotate(355deg) brightness(81%) contrast(85%);
}
.sustainability_block .inblock .inbox .cycle li .cycle_heading {
  font-size: var(--fsize-sup);
  font-weight: 500;
  background: #fff;
  text-align: center;
  min-height: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.sustainability_block .inblock .inbox .cycle li img {
  display: block;
  margin-bottom: 16px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.sustainability_block .inblock .inbox .cycle li p {
  font-size: var(--fsize-sup);
}
.sustainability_block .inblock .text>span {
  display: block;
  font-size: var(--fsize-sup);
  margin-top: 10px;
}
.sustainability_block .inblock .inbox .intext {
  width: 100%;
  padding-top: var(--line-space);
  margin-bottom: var(--line-space);
}
.sustainability_block .inblock .inbox .intext h4 {
  max-width: 280px;
  width: 100%;
  margin: 0 auto var(--line-space);
}
.sustainability_block .inblock .inbox .inimage {
  width: 90%;
  margin: 0 auto var(--line-space);
}
.sustainability_block .inblock .inbox .moreliy_list {
  background: #83C5B9;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: var(--small-space) 10px;
  border-radius: 30px;
  color: #fff;
}
.sustainability_block .inblock .inbox .moreliy_list li {
  width: 100%;
  padding: 0 10px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.sustainability_block .inblock .inbox .moreliy_list li:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.sustainability_block .inblock .inbox .moreliy_list li .heading {
  text-align: center;
  line-height: 1.3;
  font-size: var(--fsize-normal);
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  width: 100%;
}
.sustainability_block .inblock .inbox .moreliy_list li .icon {
  height: 64px;
  width: 100px;
  margin-right: 20px;
}
.sustainability_block .inblock .inbox .moreliy_list li .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sustainability_block .inblock .inbox .moreliy_list li p {
  font-size: var(--fsize-sup);
  width: calc(100% - 100px - 20px);
}
@media screen and (max-width:400px) {
  .sustainability_block .inblock .inbox .moreliy_list li .icon {
    margin: 0 auto 20px;
  }
  .sustainability_block .inblock .inbox .moreliy_list li p {
    width: 100%;
  }
}
.sustainability_block>p {
  font-weight: 500;
  margin-bottom: var(--middle-space);
}
.sustainability_block .inblock.beside {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.sustainability_block .inblock.beside .text {
  width: 100%;
  order: 1;
  margin-bottom: var(--small-space);
}
.sustainability_block .inblock .images {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  order: 2;
}
.sustainability_block .inblock .images div {
  width: 48%;
}
.sustainability_block .inblock .images div span {
  font-size: var(--fsize-sup);
}
.sustainability_block .inblock .images + .inbox {
  order: 3;
}
.sustainability_block .inblock .inbox .subheading {
  text-align: center;
  font-size: var(--fsize-h3);
  font-weight: 500;
  margin-bottom: var(--small-space);
  display: block;
  width: 100%;
}
.sustainability_block .inblock .inbox table {
  width: 100%;
}
.sustainability_block .inblock .inbox table tbody tr:not(:last-child) {
  border-bottom: 1px solid #000;
}
.sustainability_block .inblock .inbox table tbody tr th {
  font-size: var(--fsize-normal);
  font-weight: 500;
  vertical-align: middle;
  padding: 12px var(--line-space) 12px 0;
  width: 35%;
}
.sustainability_block .inblock .inbox table tbody tr td {
  vertical-align: middle;
  padding: 12px 0;
  width: 65%;
  font-size: var(--fsize-sup);
}
/*==================================================
$showrooms
==================================================*/
.showrooms_wrap .inner>div {
  margin-bottom: var(--space);
}
.showrooms_wrap .inner>div p {
  font-size: var(--fsize-lead);
  font-weight: 500;
  margin-bottom: 10px;
}
.showrooms_block {
  margin-bottom: var(--space);
}
.showrooms_block p {
  margin-top: 10px;
}
.showrooms_block ul li {
  margin-top: var(--middle-space);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.showrooms_block ul li .image {
  width: 45%;
}
.showrooms_block ul li .text {
  width: 55%;
  position: relative;
  font-size: var(--fsize-sup);
  padding-left: 10px;
}
.showrooms_block ul li .text .name {
  font-size: var(--fsize-h3);
  font-weight: 500;
  margin-bottom: 16px;
}
.showrooms_block ul li .text p,
.showrooms_block ul li .text span {
  display: block;
  margin-top: 5px;
}
.showrooms_block ul li .text a {
  font-size: var(--fsize-sup);
  max-width: 170px;
  padding: 5px 10px;
  display: block;
  color: var(--point-color);
  border: 1px solid var(--point-color);
  border-radius: 100vw;
  margin: var(--text-space) 0 0 auto;
  text-align: center;
  line-height: 1.3;
}
.showrooms_block ul li .map {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: var(--small-space);
}
.showrooms_block ul li .map div {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 20% 0;
}
.showrooms_block ul li .map iframe {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.showrooms_block ul li .map a {
  font-size: var(--fsize-sup);
  font-weight: 500;
  display: block;
  text-align: right;
  width: 100%;
}
/*==================================================
$contact
==================================================*/
.contact_block {
  margin-bottom: var(--space);
}
.contact_block .required {
  color: var(--point-color);
}
.contact_block>div {
  margin-bottom: var(--small-space);
}
.contact_block form table {
  margin-bottom: var(--small-space);
  width: 100%;
}
.contact_block form table tbody tr th {
  font-size: var(--fsize-h3);
  padding: 10px 20px;
  background: var(--light-gray);
  width: 100%;
  float: left;
}
.contact_block form table tbody tr td {
  width: 100%;
  padding: 10px 0;
  vertical-align: middle;
  float: left;
}
.contact_block form table tbody tr td label {
  display: block;
  line-height: 1.3;
}
.contact_block form table tbody tr td label:not(:first-child) {
  margin-top: 10px;
}
.contact_block form table tbody tr td label span {
  font-size: var(--fsize-normal);
}
.contact_block form table tbody tr td input {
  padding: 6px;
  font-size: 16px;
  border: 1px solid #808080;
  width: 100%;
}
.contact_block form table tbody tr td textarea {
  padding: 6px;
  font-size: 16px;
  border: 1px solid #808080;
  width: 100%;
  height: 96px;
}
.contact_block form table tbody tr.email td label span {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.contact_block form table tbody tr.email td label span::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #000 transparent transparent transparent;
  border-width: 8px 8px 0px 8px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}
.contact_block form .form_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.contact_block form button,
.contact_block form .back {
  display: block;
  font-size: var(--fsize-normal);
  text-align: center;
  color: var(--point-color);
  border: 1px solid var(--point-color);
  border-radius: 100vw;
  width: 90%;
  max-width: 200px;
  min-height: 32px;
  background: #fff;
  margin: auto;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.contact_block form .form_btn .back {
  background: var(--point-color);
  color: #fff;
}
.contact_info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: var(--large-space);
}
.contact_info .data {
  width: 100%;
  order: 2;
}
.contact_info .data>div {
  position: relative;
  padding: 20px 0 20px 50px;
}
.contact_info .data>div:not(:last-child) {
  border-bottom: 1px dotted #000;
}
.contact_info .data>div::before {
  content: "";
  width: 40px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.contact_info .data .address::before {
  background: url(../img/contact/icon_pin.svg) no-repeat center/contain;
}
.contact_info .data .call::before {
  background: url(../img/contact/icon_call.svg) no-repeat top 25px center/contain;
}
.contact_info .data .contact::before {
  background: url(../img/contact/icon_mail.svg) no-repeat center/contain;
}
.contact_info .data .call a {
  font-size: 30px;
  font-weight: 500;
}
.contact_info .data .contact {
  font-size: var(--fsize-lead);
  font-weight: 500;
}
.contact_info .data .contact a {
  padding: 10px 0;
  display: inline-block;
}
.contact_info .map {
  width: 100%;
  order: 1;
  position: relative;
  overflow: hidden;
  padding: 50% 0;
}
.contact_info .map iframe {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
/*==================================================
$products
==================================================*/
.products_wrap {
  margin-bottom: var(--small-space);
}
.products_list {
  padding: var(--small-space) 0 var(--middle-space);
  background: var(--light-ocher);
}
.products_list .inner .section_heading {
  color: #000;
}
.products_list .inner div {
  line-height: 1.3;
}
.products_list .inner div dl {
  width: 100%;
  margin-top: var(--line-space);
}
.products_list .inner div dl dt {
  font-size: var(--fsize-h3);
  font-weight: 500;
  margin-bottom: 15px;
}
.products_list .inner div dl dd {
  margin-top: 10px;
}
.products_item_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.products_item_list ul::after {
  content: "";
  width: 32%;
}
.products_item_list ul li {
  width: 48%;
  margin-bottom: 10px;
}
.products_item_list ul li a {
  display: block;
}
.products_item_list ul li a .text {
  margin-top: 3px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
}
.products_item_list ul li a .text p {
  font-size: var(--fsize-lead);
  text-align: center;
  line-height: 1.3;
}
.products_item_block {
  margin-bottom: var(--middle-space);
}
.products_item_block .section_heading {
  color: #000;
}
.products_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.products_item .products_item_slider {
  width: 100%;
  border: 1px solid #000;
  order: 1;
  height: 300px;
}
.products_item .products_item_slider * {
  transition: none;
}
.products_item .products_item_slider .slick-list,
.products_item .products_item_slider .slick-track {
  height: 100%;
}
.products_item .products_item_slider .products_item_slider_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.products_item .products_item_slider .products_item_slider_item img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  margin: auto;
}
.products_item .text {
  width: 100%;
  margin-top: var(--line-space);
  order: 3;
}
.products_item .text .heading {
  margin-bottom: var(--text-space);
  color: var(--point-color);
  font-size: var(--fsize-h3);
}
.products_item_thumb {
  margin-top: var(--line-space);
  position: relative;
  padding: 0 5%;
  width: 100%;
  order: 2;
}
.products_item_thumb * {
  transition: none;
}
.products_item_thumb .slick-list {
  margin-left: 5px;
}
.products_item_thumb .products_item_slider_item {
  border: 1px solid #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  cursor: pointer;
  height: 80px;
}
.products_item_thumb .products_item_slider_item img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  margin: auto;
}
.products_item_thumb .slick-track {
  min-width: 100%;
}
.products_item_thumb .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff url(../img/products/icon_arrow.svg) no-repeat center/contain;
  width: 5vw;
  height: 5vw;
  cursor: pointer;
  border-radius: 100vw;
  z-index: 2;
}
.products_item_thumb .arrow.prev {
  left: 0;
}
.products_item_thumb .arrow.next {
  right: 0;
  transform: scale(-1,1);
}
.products_item_details {
  background: var(--light-ocher);
  padding: var(--small-space) var(--line-space);
  border-radius: 30px;
  margin-top: var(--middle-space);
}
.products_item_details div {
  padding: var(--small-space) 0;
  border-bottom: 1px solid #000;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.products_item_details div:last-child {
  border: none;
}
.products_item_details div::before {
  content: "";
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin-right: 20px;
}
.products_item_details .target::before {
  background: url(../img/products/icon_target.svg) no-repeat center/contain;
}
.products_item_details .features::before {
  background: url(../img/products/icon_features.svg) no-repeat center/contain;
}
.products_item_details .technical::before {
  background: url(../img/products/icon_technical.svg) no-repeat center/contain;
}
.products_item_details div ul li {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.products_item_details div ul li::before {
  content: "";
  width: 5px;
  min-width: 5px;
  height: 5px;
  border-radius: 100vw;
  background: #000;
  margin-top: 0.6em;
  margin-right: 0.6em;
}
.products_item_details div .subheading {
  font-size: var(--fsize-h3);
  font-weight: 500;
  margin-bottom: 10px;
}
.products_item_movie {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  border-radius: 30px;
  margin-top: var(--middle-space);
}
.products_item_movie div {
  margin: auto;
  max-width: 490px;
  height: 0;
  padding: 28% 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.products_item_movie div iframe {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.other_item_list {
  max-width: var(--large-inner);
  margin: 0 auto var(--small-space);
  position: relative;
  padding: 0 5%;
}
.other_item_list .slick-list {
  margin: 0 -5px 0 5px;
}
.other_item_list .slick-slide {
  margin: 0 5px;
}
.other_item_list ul * {
  transition: none;
}
.other_item_list ul .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff url(../img/products/icon_arrow.svg) no-repeat center/contain;
  width: 6vw;
  height: 6vw;
  cursor: pointer;
  z-index: 2;
  border-radius: 100vw;
}
.other_item_list ul .arrow.prev {
  left: -8%;
}
.other_item_list ul .arrow.next {
  right: -8%;
  transform: scale(-1,1);
}
.other_item_list ul li {
  line-height: 1.3;
}
.other_item_list ul li p {
  margin-top: 3px;
}
.other_item_list ul li:first-child {
  margin-left: 0;
}
.products_special_headline .mv {
  padding: 25px 0;
  position: relative;
  background: #f5f5f5;
  width: 100%;
  overflow: hidden;
}
.products_special_headline .mv.bg {
  background: url(../img/products/tsubo-healther/mv_bg.jpg) no-repeat center/cover;
}
.products_special_headline .mv::after {
  content: "";
  width: 55px;
  height: 44px;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/products/scroll.svg) no-repeat center/contain;
  filter: drop-shadow(0 0 5px rgba(0,0,0,.8));
}
.products_special_headline .mv.bg::after {
  filter: drop-shadow(0 0 5px rgba(0,0,0,.5));
}
.products_special_headline .mv .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: var(--large-inner);
  position: relative;
  transition: none;
  padding: var(--line-space) 0;
  margin-top: 2%;
}
.products_special_headline .mv .inner .name {
  color: var(--point-color);
  font-size: var(--fsize-h2);
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.5;
}
.products_special_headline .mv .inner .name strong {
  font-size: var(--fsize-h1);
  line-height: 1.3;
}
.products_special_headline .mv .inner .name strong span {
  font-size: 31px
}
.products_special_headline .mv .inner .image {
  width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.powered-turning-bed .products_special_headline .mv .inner .image {
  width: 85%;
  top: -10%;
  right: -5%;
}
.products_special_headline .mv .inner .award {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: var(--line-space);
}
.products_special_headline .mv .inner .award img {
  width: 100px;
  margin-right: 10px;
}
.products_special_headline .mv .inner .award p {
  font-size: var(--fsize-normal);
  line-height: 1.3;
}
.products_special_headline .mv .inner .label {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 30%;
  right: 5%;
}
@media screen and (max-width:500px) {
  .products_special_headline .mv .inner .label {
    width: 22vw;
    height: 22vw;
    top: 36%;
  }
}
.products_special_headline .headline {
  padding: var(--line-space) 0 0;
}
.products_special_headline .headline .inner .text {
  width: 100%;
  margin-bottom: var(--small-space);
}
.products_special_headline .headline .inner .text .heading {
  display: block;
  font-size: var(--fsize-h2);
  font-weight: 500;
  margin-bottom: var(--small-space);
}
.products_special_headline .headline .inner .text p {
  margin-top: 10px;
}
.products_special_headline .headline .inner .image {
  width: 100%;
}
.products_special_headline .headline.pattern02 {
  padding: var(--middle-space) 0;
}
.products_special_headline .headline.pattern02 .inner {
  display: block;
}
.products_special_headline .headline.pattern02 .inner .text {
  width: 100%;
}
.products_special_headline .headline.pattern02 .inner .text p {
  text-align: center;
  font-size: var(--fsize-h2);
  font-weight: 500;
  width: 100%;
}
.products_special_headline .headline.pattern02 .inner .image {
  margin: var(--line-space) auto 0;
  position: relative;
  max-width: var(--small-inner);
  overflow: auto;
}
.products_special_headline .headline.pattern02 .inner .image.swipe::before {
  content: "";
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,.7) url(../img/common/icon_swipe.svg) no-repeat center/85%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  border-radius: 10px;
  transform: scale(-1,1);
  border: 1px solid #000;
  opacity: 1;
  pointer-events: none;
}
.products_special_headline .headline.pattern02 .inner .image.swipe.off::before {
  opacity: 0;
}
.products_special_headline .headline.pattern02 .inner .image img {
  max-width: none;
  display: block;
  margin-left: auto;
  width: 700px;
}
.products_special_headline .headline.pattern02 .inner .image li {
  position: absolute;
  line-height: 1.3;
  font-size: var(--fsize-sup);
  width: 200px;
}
.powered-turning-bed .products_special_headline .headline.pattern02 .inner .image img {
  width: 800px;
  padding-left: 50px;
  padding-bottom: 30px;
}
.powered-turning-bed .products_special_headline .headline.pattern02 .inner .image li:nth-child(1) {
  top: 26px;
  left: 0;
}
.powered-turning-bed .products_special_headline .headline.pattern02 .inner .image li:nth-child(2) {
  top: 257px;
  left: 55px;
}
.powered-turning-bed .products_special_headline .headline.pattern02 .inner .image li:nth-child(3) {
  top: 292px;
  left: 232px;
}
.powered-turning-bed .products_special_headline .headline.pattern02 .inner .image li:nth-child(4) {
  top: 160px;
  left: 660px;
}
.powered-turning-bed .products_special_headline .headline.pattern02 .inner .image + span {
  display: block;
  text-align: right;
  font-size: var(--fsize-sup);
}
.multi-fit-bed .products_special_headline .headline.pattern02 .inner .image li {
  width: 200px;
}
.multi-fit-bed .products_special_headline .headline.pattern02 .inner .image li:nth-child(1) {
  top: 20px;
  left: 96px;
}
.multi-fit-bed .products_special_headline .headline.pattern02 .inner .image li:nth-child(2) {
  top: 20px;
  left: 333px;
}
.multi-fit-bed .products_special_headline .headline.pattern02 .inner .image li:nth-child(3) {
  top: 80px;
  left: 383px;
}
.multi-fit-bed .products_special_headline .headline.pattern02 .inner .image li:nth-child(4) {
  top: 323px;
  left: 203px;
}
.multi-fit-bed .products_special_headline .headline.pattern02 .inner .image li:nth-child(5) {
  top: 323px;
  left: 336px;
}
.multi-fit-bed .products_special_headline .headline.pattern02 .inner .image li:nth-child(6) {
  top: 323px;
  left: 463px;
}
.products_point_wrap {
  background: var(--light-point);
  padding-bottom: var(--small-space);
}
.products_point_wrap .heading_block {
  max-width: 1360px;
  width: 100%;
  margin: auto;
  padding: var(--line-space) 0;
  position: relative;
  z-index: 2;
}
.products_point_wrap .heading_block .heading span {
  display: block;
  max-width: 400px;
  width: 50%;
  margin: auto;
}
.products_point_wrap .heading_block .heading strong {
  display: block;
  font-size: var(--fsize-h2);
  color: #fff;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 0 10px rgba(0,0,0,.3);
}
.products_point_wrap .heading_block .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  width: 100%;
}
.products_point_wrap .heading_block .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products_point_wrap .inner {
  max-width: var(--large-inner);
}
.products_point_wrap .inner ol li {
  background: #fff;
  padding: 0 5% var(--small-space);
  margin-bottom: var(--small-space);
}
.products_point_wrap .inner ol li .heading {
  margin-bottom: var(--small-space);
}
.products_point_wrap .inner ol li .heading span {
  max-width: 210px;
  width: 80%;
  display: block;
  margin: 0 auto var(--small-space);
}
.products_point_wrap .inner ol li .heading strong {
  width: 100%;
  font-size: var(--fsize-h2);
  font-weight: 500;
  text-align: center;
  display: block;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  line-height: 1.3;
}
.products_point_wrap .inner ol li .heading.no_border {
  margin-bottom: var(--line-space);
}
.products_point_wrap .inner ol li .heading.no_border strong {
  border: none;
  padding-bottom: 0;
}
.products_point_wrap .inner ol li .heading + p {
  font-size: var(--fsize-lead);
  font-weight: 500;
  text-align: center;
  margin-top: 0;
  margin-bottom: var(--small-space);
}
.products_point_wrap .inner ol li .inblock {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.products_point_wrap .inner ol li .inblock .inbox {
  width: 100%;
  margin-bottom: var(--middle-space);
}
.products_point_wrap .inner ol li .inblock .inbox:last-child {
  margin-bottom: 0;
}
.products_point_wrap .inner ol li .inblock .text .subheading {
  font-size: var(--fsize-h3);
  font-weight: 500;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.3;
  margin-bottom: var(--text-space);
}
.products_point_wrap .inner ol li .inblock .text .subheading::before {
  content: "";
  width: 8px;
  min-width: 8px;
  height: 8px;
  background: var(--point-color);
  margin-right: 0.5em;
  margin-top: 0.45em;
}
.products_point_wrap .inner ol li .inblock .text p:not(:first-child) {
  margin-top: 10px;
}
.products_point_wrap .inner ol li .inblock .inbox .image {
  margin-top: var(--text-space);
}
.products_point_wrap .inner ol li .inblock>table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--small-space);
  line-height: 1.3;
}
.products_point_wrap .inner ol li .inblock>table thead th {
  height: 40px;
  vertical-align: middle;
  text-align: center;
  font-size: var(--fsize-h3);
  background: #efedeb;
  padding: 5px;
}
.products_point_wrap .inner ol li .inblock>table tbody th {
  color: var(--point-color);
  padding: 5px;
  vertical-align: middle;
}
.products_point_wrap .inner ol li .inblock>table tbody td {
  padding: 5px;
  vertical-align: middle;
}
.products_point_wrap .inner ol li .inblock>table tbody tr {
  border-bottom: 1px solid var(--point-color);
}
.products_point_wrap .inner ol li .inblock>table tr *:not(:first-child):not(:last-child) {
  border-right: 1px solid var(--point-color);
}
.products_point_wrap .inner ol li .inblock>table tbody tr td:not(:nth-child(2)) {
  text-align: center;
}
.products_point_wrap .inner ol li .inblock.pattern02 .inbox {
  background: var(--light-ocher);
}
.products_point_wrap .inner ol li .inblock.pattern02 .inbox .image {
  height: 150px;
  margin: 0 20px 10px 0;
  float: left;
}
.products_point_wrap .inner ol li .inblock.pattern02 .inbox .image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.products_point_wrap .inner ol li .inblock.pattern02 .inbox .text {
  flex: 1;
  padding: 15px;
  font-size: var(--fsize-normal);
}
.products_point_wrap .inner ol li .inblock.pattern02 .inbox .text p span {
  font-size: var(--fsize-sup);
}
.products_point_wrap .inner ol li .inblock.pattern03 {
  display: block;
}
.products_point_wrap .inner ol li .inblock.pattern03 .text {
  display: block;
  width: 100%;
  text-align: center;
}
.products_point_wrap .inner ol li .inblock.pattern03 .images {
  width: 100%;
  max-width: var(--small-inner);
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.products_point_wrap .inner ol li .inblock.pattern03 .images img {
  width: 100%;
  margin-top: 10px;
}
.products_point_wrap .inner ol li .inblock.pattern04 .text {
  order: 2;
}
.products_point_wrap .inner ol li .inblock.pattern04 .image {
  order: 1;
}
.tsubo-helther .products_point_wrap .inner ol li:nth-child(4) .inblock.pattern04 .text {
  order: 1;
}
.tsubo-helther .products_point_wrap .inner ol li:nth-child(4) .inblock.pattern04 .image {
  order: 2;
  margin-top: var(--text-space);
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox:not(:last-child) {
  padding-bottom: var(--line-space);
  margin-bottom: var(--line-space);
  border-bottom: 1px solid #000;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .text {
  width: 100%;
  order: 1;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .text .subheading {
  font-size: var(--fsize-h2);
  align-items: center;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .text .subheading::before {
  width: 16px;
  min-width: 16px;
  height: 16px;
  background: url(../img/products/icon_square.svg) no-repeat center/contain;
  margin-top: 0;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .text + span {
  font-size: var(--fsize-sup);
  margin-top: 10px;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .image {
  width: 100%;
  order: 3;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox>span {
  order: 2;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .text_box {
  width: 100%;
  border: 1px solid var(--point-color);
  border-radius: 30px;
  padding: var(--small-space) 5%;
  margin-top: var(--line-space);
  order: 4;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .text_box .sub-subheading {
  font-size: var(--fsize-h3);
  font-weight: 500;
  display: block;
  border-bottom: 1px solid var(--point-color);
  padding: 10px;
  margin-bottom: var(--small-space);
  width: 100%;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .text_box .sub-subheading strong {
  font-size: var(--fsize-h2);
  display: block;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .text_box .beside>div {
  width: 100%;
  padding: 0 0 var(--small-space);
  border-bottom: 1px dashed #000;
  margin-bottom: var(--small-space);
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .text_box .beside>div:last-child {
  border: none;
  margin-bottom: 0;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .text_box .beside>div strong {
  font-size: var(--fsize-h3);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .text_box .beside>div .frame {
  display: block;
  width: 100%;
  text-align: center;
  color: #808080;
  background: var(--light-gray);
  line-height: 1.3;
  padding: 5px;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .text_box .beside>div p span {
  font-size: var(--fsize-sup);
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .detail_box {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: var(--small-space) var(--line-space);
  background: var(--light-ocher);
  border-radius: 30px;
  margin-top: var(--line-space);
  order: 5;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .detail_box .image {
  width: 140px;
  min-width: 140px;
  height: 140px;
  margin-right: var(--small-space);
  border-radius: 100vw;
  background: #fff;
  order: 1;
}
@media screen and (max-width:600px) {
  .products_point_wrap .inner ol li .inblock.pattern05 .inbox .detail_box {
    flex-wrap: wrap;
    padding: var(--small-space) 5%;
  }
  .products_point_wrap .inner ol li .inblock.pattern05 .inbox .detail_box .image {
    margin: 0 auto var(--small-space);
  }
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .detail_box .text {
  width: 100%;
  order: 2;
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .detail_box .text>strong {
  font-size: var(--fsize-h3);
  color: var(--point-color);
  font-weight: 500;
  margin-bottom: var(--small-space);
}
.products_point_wrap .inner ol li .inblock.pattern05 .inbox .detail_box .text p strong {
  font-weight: 500;
  font-size: var(--fsize-h3);
}
.products_point_wrap .inner ol li .inblock.pattern06 .inbox {
  width: 100%;
  margin: 0 0 var(--small-space);
  position: relative;
}
.products_point_wrap .inner ol li .inblock.pattern06 .inbox .text .subheading {
  margin-bottom: var(--text-space);
}
.products_point_wrap .inner ol li .inblock.pattern06 .inbox .image img {
  width: 100%;
}
.products_point_wrap .inner ol li .inblock.pattern07 .inbox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: var(--small-space);
}
.products_point_wrap .inner ol li .inblock.pattern07 .inbox .image {
  width: 100%;
  order: 2;
}
.multi-fit-bed .products_point_wrap .inner ol li:nth-child(2) .inblock.pattern07 .inbox .text {
  order: 2;
  margin-top: var(--text-space);
}
.multi-fit-bed .products_point_wrap .inner ol li:nth-child(2) .inblock.pattern07 .inbox .image {
  order: 1;
  margin-top: 0;
}
.products_point_wrap .inner ol li .inblock.pattern08 .inbox {
  position: relative;
}
.products_point_wrap .tab_block {
  max-width: var(--small-inner);
  margin: var(--line-space) auto 0;
  width: 100%;
}
.products_point_wrap .tab_block .tab_btn {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.products_point_wrap .tab_block .tab_btn li {
  margin: 0;
  padding: 0;
  min-height: 80px;
  border-right: 1px solid var(--light-point);
  color: var(--light-point);
  text-align: center;
  width: 33.33%;
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.products_point_wrap .tab_block .tab_btn li.active {
  color: #fff;
  background: var(--point-color);
}
.products_point_wrap .tab_block .tab_btn li:last-child {
  border: none;
}
.products_point_wrap .tab_block .tab_btn li span {
  font-size: var(--fsize-h3);
  font-weight: 500;
  display: block;
}
.products_point_wrap .tab_block .tab_contents {
  border: 3px solid var(--point-color);
  background: var(--light-gray);
}
.products_point_wrap .tab_block .tab_contents li {
  background: var(--light-gray);
  padding: var(--line-space) 20px;
  margin: 0;
  display: none;
}
.products_point_wrap .tab_block .tab_contents li.active {
  display: block;
}
.products_point_wrap .tab_block .tab_contents li p {
  font-size: var(--fsize-lead);
  font-weight: 500;
  min-height: 2.8em;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.3;
}
.products_point_wrap .tab_block .tab_contents li table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
  margin-top: var(--text-space);
}
.products_point_wrap .tab_block .tab_contents li table tbody tr th {
  vertical-align: middle;
  text-align: center;
  padding: 0 5px;
  color: #fff;
  background: #000;
}
.products_point_wrap .tab_block .tab_contents li table tbody tr th:not(:last-child) {
  border-right: 1px solid #fff;
}
.products_point_wrap .tab_block .tab_contents li table tbody tr td {
  vertical-align: middle;
  text-align: center;
  padding: 0 5px;
  border: 1px solid #000;
}
.products_point_wrap .tab_block .tab_contents li .balloon {
  margin: var(--text-space) 0 40px;
  width: 100%;
  height: 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: var(--point-color);
  border-radius: 10px;
  position: relative;
  margin-top: var(--small-space);
}
.products_point_wrap .tab_block .tab_contents li .balloon::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: var(--point-color) transparent transparent transparent;
  border-width: 40px 8px 0px 8px;
  position: absolute;
  bottom: -38px;
  left: 41%;
}
.products_point_wrap .tab_block .tab_contents li:nth-child(2) .balloon::after {
  left: 43%;
}
.products_point_wrap .tab_block .tab_contents li:nth-child(3) .balloon::after {
  left: 45%;
}
.products_point_wrap .tab_block .tab_contents li .image {
  clear: both;
  display: block;
  margin:  0 0 0 auto;
  width: 100%;
}

.products_point_wrap .inner ol li.heading_only {
  padding-bottom: var(--line-space);
}
.products_point_wrap .inner ol li.heading_only .heading {
  margin-bottom: 0;
}
.products_point_wrap .inner ol li.heading_only .heading strong {
  border: none;
  padding-bottom: 0;
}
.products_point_wrap .inner ol li .movie_block {
  background: var(--light-gray);
  padding: var(--line-space);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.products_point_wrap .inner ol li .movie_block .inbox {
  width: 100%;
}
.products_point_wrap .inner ol li .movie_block .inbox:not(:last-child) {
  margin-bottom: var(--line-space);
}
.products_point_wrap .inner ol li .movie_block .inbox .name {
  font-size: var(--fsize-h3);
  font-weight: 500;
  text-align: center;
  width: 100%;
  min-height: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--text-space);
  color: var(--point-color);
  border: 1px solid var(--point-color);
}
.products_point_wrap .inner ol li .movie_block .inbox .movie {
  position: relative;
  overflow: hidden;
  padding: 28% 0;
  width: 100%;
}
.products_point_wrap .inner ol li .movie_block .inbox .movie iframe {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.products_point_wrap .inner ol li .movie_block .inbox p {
  margin-top: var(--text-space);
  text-align: center;
}
.products_point_wrap .inner ol li .movie_block .inbox p span {
  font-size: var(--fsize-sup);
}
.products_movie {
  padding: var(--small-space) 0;
  background: var(--light-gray);
}
.products_movie .inner .inbox:not(:last-child) {
  margin-bottom: var(--line-space);
}
.products_movie .inner .inbox .heading {
  display: block;
  text-align: center;
  font-size: var(--fsize-h2);
  font-weight: 500;
  margin-bottom: var(--line-space);
  width: 100%;
  line-height: 1.3;
}
.products_movie .inner .inbox {
  width: 100%;
}
.products_movie .inner .inbox:not(:first-of-type) {
}
.products_movie .inner .inbox .movie {
  width: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  max-width: 490px;
  height: 250px;
}
.products_movie .inner .inbox .movie iframe {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.products_specifications {
  padding: var(--small-space) 0;
}
.products_specifications .heading {
  display: block;
  text-align: center;
  font-size: var(--fsize-h2);
  font-weight: 500;
  margin-bottom: var(--small-space);
}
.products_specifications table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #000;
  margin-bottom: var(--small-space);
}
.products_specifications table tbody tr {
  border-bottom: 1px solid #000;
}
.products_specifications table tbody tr th {
  font-size: var(--fsize-h3);
  font-weight: 500;
  vertical-align: middle;
  background: #F0F1F1;
  padding: 5px 10px;
  max-width: 280px;
  width: 30%;
  line-height: 1.3;
}
.products_specifications table tbody tr td {
  vertical-align: middle;
  padding: 5px 10px;
  background: #fff;
}
.products_specifications .manual_list .subheading {
  font-size: var(--fsize-h3);
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: var(--small-space);
  border-bottom: 1px solid #000;
}
.products_specifications .manual_list ul {
}
.products_specifications .manual_list ul li {
  width: 100%;
  margin-top: var(--text-space);
}
.products_specifications .box {
  max-width: var(--large-inner);
  background: var(--light-ocher);
  border-radius: 30px;
  margin: auto;
  padding: var(--small-space) 5%;
}
.products_specifications .box .text {
  width: 100%;
}
.products_specifications .box .text .heading {
  color: var(--point-color);
  font-size: var(--fsize-h2);
  font-weight: 500;
  margin-bottom: var(--text-space);
}
.products_specifications .box .text p {
  font-size: var(--fsize-lead);
  color: var(--point-color);
}
.products_specifications .box .image {
  max-width: 480px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.products_specifications .box .image + * {
  margin-top: var(--line-space);
}
.multi-position-bed .products_specifications .box .image {
  max-width: 350px;
}
.products_specifications .box + .inner {
  margin-top: var(--small-space);
}
.products_specifications .box + .inner table {
  margin-bottom: 0;
}
.products_inquiries {
  background: #F8E6DD;
  padding: var(--small-space) 0;
}
.products_inquiries .inner .heading {
  font-size: var(--fsize-h2);
  font-weight: 500;
  text-align: center;
  margin-bottom: var(--line-space);
}
.products_inquiries .inner .inblock .call {
  width: 100%;
  background: #fff;
  border-radius: 30px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100px;
  box-shadow: 5px 5px 0 rgba(0,0,0,.2);
}
.products_inquiries .inner .inblock .call dt {
  width: 23%;
  min-width: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-right: 2px solid #F8E6DD;
}
.products_inquiries .inner .inblock .call dt img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  max-width: 100px;
}
.products_inquiries .inner .inblock .call dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 3%;
  width: 77%;
}
.products_inquiries .inner .inblock .call dd a {
  display: inline-block;
  font-size: 6vw;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 10px;
}
.products_inquiries .inner .inblock .call dd span {
  font-size: var(--fsize-normal);
  display: block;
}
.products_inquiries .inner .inblock .email {
  background: #fff;
  width: 100%;
  border-radius: 30px;
  box-shadow: 5px 5px 0 rgba(0,0,0,.2);
  margin-top: var(--text-space);
}
.products_inquiries .inner .inblock .email dl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  min-height: 100px;
}
.products_inquiries .inner .inblock .email dl dt {
  width: 23%;
  min-width: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-right: 2px solid #F8E6DD;
}
.products_inquiries .inner .inblock .email dl dt img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  max-width: 100px;
}
.products_inquiries .inner .inblock .email dl dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 77%;
}
.products_inquiries .inner .inblock .email dl dd a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 45px;
  width: 25%;
}
.products_reputation {
  background: var(--light-ocher);
  padding: var(--space) 0 var(--small-space);
}
.products_reputation .inner .heading {
  display: block;
  font-size: var(--fsize-h2);
  text-align: center;
}
.products_reputation .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  margin-top: var(--line-space);
}
.products_reputation .inner ul li {
  width: 100%;
  background: #fff;
  padding: var(--line-space) 0 var(--line-space);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.products_reputation .inner ul li dl {
  width: 100%;
}
.products_reputation .inner ul li dl dt {
  font-size: var(--fsize-h3);
  width: 100%;
  padding-left: 50px;
  position: relative;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: var(--small-space);
}
.products_reputation .inner ul li dl dt::before {
  content: "";
  width: 20px;
  height: 25px;
  background: url(../img/products/powered-turning-bed/q.svg) no-repeat center/contain;
  position: absolute;
  top: 6px;
  left: 20px;
}
.products_reputation .inner ul li dl dd .a {
  font-size: var(--fsize-h3);
  width: 100%;
  padding-left: 50px;
  position: relative;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: var(--small-space);
}
.products_reputation .inner ul li dl dd .a::before {
  content: "";
  width: 20px;
  height: 25px;
  background: url(../img/products/powered-turning-bed/a.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 20px;
}
.products_reputation .inner ul li dl dd .graph {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.products_reputation .inner ul li:nth-child(3) dl dd .graph {
  width: 260px;
}
.products_reputation .inner ul li dl dd .graph img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.products_reputation .inner ul li strong {
  background: var(--point-color);
  color: #fff;
  font-size: var(--fsize-lead);
  line-height: 1.5;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: var(--space);
  position: relative;
  padding: var(--text-space);
}
.products_reputation .inner ul li strong::before {
  content: "";
  width: 23px;
  height: 23px;
  transform: rotate(45deg);
  border-bottom: 1px solid var(--point-color);
  border-right: 1px solid var(--point-color);
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
}
.products_reputation .inner ul li strong br {
  display: none;
}