* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dd, figure, fieldset, legend, input, textarea, select, button {
  margin: 0;
  padding: 0;
}

input, button, textarea, select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  width: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #000;
  letter-spacing: 0.07rem;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
@media print {
  body {
    zoom: 0.8;
  }
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 570px;
  }
}
@media screen and (max-width: 574px) {
  .container {
    max-width: 100%;
  }
}

.id-target {
  display: block;
  scroll-margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .id-target {
    scroll-margin-top: 7rem;
  }
}

br.pc {
  display: none;
}
@media screen and (max-width: 1400px) {
  br.pc {
    display: block;
  }
}
br.xl {
  display: none;
}
@media screen and (max-width: 1199px) {
  br.xl {
    display: block;
  }
}
br.lg {
  display: none;
}
@media screen and (max-width: 991px) {
  br.lg {
    display: block;
  }
}
br.md {
  display: none;
}
@media screen and (max-width: 767px) {
  br.md {
    display: block;
  }
}
br.sm {
  display: none;
}
@media screen and (max-width: 574px) {
  br.sm {
    display: block;
  }
}
br.xs {
  display: none;
}
@media screen and (max-width: 450px) {
  br.xs {
    display: block;
  }
}

@media screen {
  .blur {
    filter: blur(15px);
    opacity: 0;
    transition-duration: 1.3s;
  }
  .blur.is-show {
    filter: blur(0);
    opacity: 1;
  }
  .fadein {
    opacity: 0;
    transition-duration: 1s;
  }
  .fadein.is-show {
    opacity: 1;
  }
  .fadein_top {
    opacity: 0;
    transition-duration: 1.3s;
    transform: translateY(-35px);
  }
  .fadein_top.is-show {
    transform: translateY(0);
    opacity: 1;
  }
  .fadein_bottom {
    opacity: 0;
    transition-duration: 1.3s;
    transform: translateY(35px);
  }
  .fadein_bottom.is-show {
    transform: translateY(0);
    opacity: 1;
  }
  .fadein_left {
    opacity: 0;
    transition-duration: 1.3s;
    transform: translateX(-35px);
  }
  .fadein_left.is-show {
    transform: translateX(0);
    opacity: 1;
  }
  .fadein_right {
    opacity: 0;
    transition-duration: 1.3s;
    transform: translateX(35px);
  }
  .fadein_right.is-show {
    transform: translateX(0);
    opacity: 1;
  }
  .delay1 {
    transition-delay: 0.1s;
  }
  .delay2 {
    transition-delay: 0.2s;
  }
  .delay3 {
    transition-delay: 0.3s;
  }
  .delay4 {
    transition-delay: 0.4s;
  }
  .delay5 {
    transition-delay: 0.5s;
  }
  .delay6 {
    transition-delay: 0.6s;
  }
  .delay7 {
    transition-delay: 0.7s;
  }
  .delay8 {
    transition-delay: 0.8s;
  }
  .delay9 {
    transition-delay: 0.9s;
  }
  .delay10 {
    transition-delay: 1s;
  }
  .delay11 {
    transition-delay: 1.1s;
  }
  .delay12 {
    transition-delay: 1.2s;
  }
  .delay13 {
    transition-delay: 1.3s;
  }
  .delay14 {
    transition-delay: 1.4s;
  }
  .delay15 {
    transition-delay: 1.5s;
  }
  .delay16 {
    transition-delay: 1.6s;
  }
  .delay17 {
    transition-delay: 1.7s;
  }
  .delay18 {
    transition-delay: 1.8s;
  }
  .delay19 {
    transition-delay: 1.9s;
  }
  .delay20 {
    transition-delay: 2s;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  height: 13rem;
  padding: 0 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  header {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 991px) {
  header {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 574px) {
  header {
    height: 9rem;
    background: #fff;
  }
}
header.scroll {
  background: #fff;
}
header.scroll nav .dropdown ul {
  background: #fff;
  padding: 0 2rem 1rem;
  border-radius: 1rem;
}
@media screen and (max-width: 991px) {
  header.scroll nav .dropdown ul {
    background: none;
    padding: 0;
    border-radius: 0;
  }
}
header.is-products {
  background: #fff;
}
header.is-white {
  color: #fff;
}
header.is-white .logo .black {
  display: none;
}
header.is-white .logo .white {
  display: block;
}
header.is-white nav .dropdown ul li a .blank .white {
  display: block;
}
header.is-white nav .dropdown ul li a .blank .black {
  display: none;
}
header.is-white.scroll {
  color: #000;
}
header.is-white.scroll .logo .black {
  display: block;
}
header.is-white.scroll .logo .white {
  display: none;
}
header.is-white.scroll nav .dropdown ul li a .blank .white {
  display: none;
}
header.is-white.scroll nav .dropdown ul li a .blank .black {
  display: block;
}
header .logo {
  width: 24rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  header .logo {
    width: 18rem;
  }
}
@media screen and (max-width: 991px) {
  header .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 574px) {
  header .logo {
    width: 17rem;
  }
}
header .logo .white {
  display: none;
}
header nav {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 1199px) {
  header nav {
    gap: 2rem;
  }
}
@media screen and (max-width: 991px) {
  header nav {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    background: #e1dad7;
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
  }
  header nav.open {
    opacity: 1;
    pointer-events: all;
  }
}
header nav > a {
  transition: 0.3s;
}
@media (min-width: 992px) {
  header nav > a:hover {
    opacity: 0.7;
  }
}
header nav > a.soon {
  pointer-events: none;
  position: relative;
}
header nav > a.soon::after {
  content: "[Coming Soon]";
  font-size: 1.2rem;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -1.75rem;
  transform: translateX(-50%);
  white-space: nowrap;
}
header nav .dropdown {
  position: relative;
  padding: 2.5rem 0;
}
@media screen and (max-width: 991px) {
  header nav .dropdown {
    padding: 0;
    text-align: center;
  }
}
header nav .dropdown_ttl .angle {
  transform: rotate(90deg);
  display: inline-block;
  margin-left: 1rem;
  transition: 0.3s;
}
header nav .dropdown_ttl.is-active .angle {
  transform: rotate(-90deg);
}
@media (min-width: 992px) {
  header nav .dropdown:hover ul {
    opacity: 1;
    pointer-events: all;
  }
}
header nav .dropdown ul {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  header nav .dropdown ul {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: translate(0);
    display: none;
    transition: 0s;
  }
}
header nav .dropdown ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: 0.3s;
}
header nav .dropdown ul li a .blank {
  width: 1.3rem;
}
header nav .dropdown ul li a .blank .white {
  display: none;
}
header nav .dropdown ul li a .child {
  width: 9rem;
}
@media (min-width: 992px) {
  header nav .dropdown ul li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 991px) {
  header nav .dropdown ul li a {
    padding: 1rem 0;
  }
}
header nav .dropdown ul li.soon {
  padding-bottom: 2rem;
}
header nav .dropdown ul li.soon .blank {
  opacity: 0;
}
header nav .dropdown ul li.soon a {
  pointer-events: none;
  position: relative;
}
header nav .dropdown ul li.soon a::after {
  content: "[Coming Soon]";
  font-size: 1.2rem;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -1.75rem;
  transform: translateX(-50%);
  white-space: nowrap;
}
header .toggle {
  display: none;
  width: 3rem;
  height: 2rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 574px) {
  header .toggle {
    width: 2.2rem;
    height: 1.5rem;
  }
}
header .toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  transition-duration: 0.4s;
}
header .toggle span:nth-of-type(1) {
  top: 0;
}
header .toggle span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .toggle span:nth-of-type(3) {
  bottom: 0;
}
header .toggle.open span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
header .toggle.open span:nth-of-type(2) {
  opacity: 0;
}
header .toggle.open span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 991px) {
  header .toggle {
    display: block;
  }
}

main {
  overflow: hidden;
}

.is-skip-loading .loading {
  display: none !important;
  transition: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease, filter 1s ease, visibility 1s;
}
.loading_logo {
  opacity: 0;
  width: 30rem;
  margin-bottom: 5rem;
  transition: opacity 1s ease;
}
@media screen and (max-width: 574px) {
  .loading_logo {
    width: 20rem;
  }
}
.loading_bar {
  width: 30rem;
  height: 1px;
  background: #eee;
  position: relative;
}
@media screen and (max-width: 574px) {
  .loading_bar {
    width: 20rem;
  }
}
.loading_bar span {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background: #000;
}
.loading.is-loaded {
  opacity: 0;
  filter: blur(20px);
  visibility: hidden;
  pointer-events: none;
}

.title .en {
  font-size: 3.2rem;
  font-family: century-old-style-std, serif;
  font-weight: 400;
  letter-spacing: 0.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  color: #9a9a9a;
}
.title .en::before, .title .en::after {
  content: "";
  width: 13rem;
  height: 1px;
  background: #9a9a9a;
}
@media screen and (max-width: 991px) {
  .title .en::before, .title .en::after {
    width: 10rem;
  }
}
@media screen and (max-width: 574px) {
  .title .en::before, .title .en::after {
    width: 5rem;
  }
}
@media screen and (max-width: 574px) {
  .title .en {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
}
.title h2, .title h1 {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.7rem;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 574px) {
  .title h2, .title h1 {
    font-size: 2rem;
    margin-top: 0.5rem;
    letter-spacing: 0.4rem;
    font-weight: bold;
  }
}

.d-inline-block {
  display: inline-block;
}

.more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.5rem 0.8rem 4rem;
  background: #000;
  color: #fff;
  width: fit-content;
  gap: 5rem;
  line-height: 1;
  font-size: 1.7rem;
  transition: 0.3s;
}
@media screen and (max-width: 574px) {
  .more {
    font-weight: bold;
  }
}
.more .arrow {
  width: 1rem;
  padding-bottom: 2px;
  transition: 0.3s;
}
@media screen and (max-width: 574px) {
  .more .arrow {
    width: 1.2rem;
  }
}
@media (min-width: 992px) {
  .more:hover {
    color: #fff;
    background: #454545;
  }
  .more:hover .arrow {
    transform: translateX(5px);
  }
}
.more.white {
  background: #fff;
  color: #9d867c;
}
@media (min-width: 992px) {
  .more.white:hover {
    background: #fff;
    color: #9d867c;
    opacity: 0.8;
  }
}
.more.soon {
  pointer-events: none;
}

.footer {
  background: #55463c;
  color: #fff;
  padding: 6.5rem 0 15rem;
}
@media screen and (max-width: 991px) {
  .footer {
    padding: 6rem 0 10rem;
  }
}
@media screen and (max-width: 450px) {
  .footer {
    zoom: 0.8;
  }
}
.footer_inner {
  display: flex;
}
@media screen and (max-width: 991px) {
  .footer_inner {
    flex-direction: column;
    align-items: center;
    gap: 6rem;
  }
}
.footer_inner > * {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .footer_inner > * {
    width: 100%;
  }
}
.footer_left {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 991px) {
  .footer_left {
    gap: 6rem;
  }
}
.footer_left .logo {
  width: 26.7rem;
}
@media screen and (max-width: 574px) {
  .footer_left .logo {
    width: 20rem;
  }
}
.footer_left .logo img {
  display: block;
}
.footer_left .office_title {
  font-size: 1.7rem;
  letter-spacing: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #fff;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .footer_left .office_title {
    text-align: center;
  }
}
@media screen and (max-width: 574px) {
  .footer_left .office_title {
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
    font-weight: bold;
  }
}
.footer_left .office_list {
  margin-top: 1.5rem;
  font-size: 1.7rem;
}
@media screen and (max-width: 574px) {
  .footer_left .office_list {
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 0.2rem;
  }
}
.footer_right {
  display: flex;
  justify-content: flex-end;
  gap: 7rem;
}
@media screen and (max-width: 991px) {
  .footer_right {
    justify-content: center;
    gap: 4rem;
  }
}
@media screen and (max-width: 574px) {
  .footer_right{
    gap: 0;
    flex-wrap: wrap;
  }
}
.footer_nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 574px) {
  .footer_nav {
    width: 100%;
  }
  .footer_nav >li >span{
    display: none;
  }
  .footer_nav:first-of-type li ul{
    margin-top: 0;
  }
}
.footer_nav li {
  font-size: 1.8rem;
}
@media screen and (max-width: 574px) {
  .footer_nav li {
    text-align: center;
  }
}
.footer_nav li.soon a {
  pointer-events: none;
}
.footer_nav li.soon a::after {
  content: "[Coming Soon] ";
  font-size: 1.4rem;
  margin-left: 0.5rem;
  display: inline-block;
}
.footer_nav li ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-left: 2rem;
}
.footer_nav li ul li.sp_item{
  display: none;
}
@media screen and (max-width: 574px) {
  .footer_nav li ul {
    padding-left: 0;
    gap: 1.5rem;
  }
  .footer_nav li ul li.sp_item{
    display: list-item;
  }
  .footer_nav li ul li:not(.sp_item){
    display: none;
  }
}
.footer_nav li ul li a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
@media screen and (max-width: 574px) {
  .footer_nav li ul li a {
    font-size: 1.8rem;
    justify-content: center;
  }
  .footer_nav li ul li a .angle{
    display: none;
  }
}
.footer_nav li ul li.soon a {
  pointer-events: none;
}
.footer_nav li ul li.soon a::after {
  content: "[Coming Soon]";
  font-size: 1.4rem;
  margin-left: 0.5rem;
  display: inline-block;
}
.footer_nav li ul li.soon a .blank {
  display: none;
}
.footer_nav li ul .blank {
  width: 1.5rem;
  display: inline-block;
}

.pagetop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 5rem;
  z-index: 99;
}
@media screen and (max-width: 574px) {
  .pagetop {
    width: 4rem;
  }
}
.pagetop img, .pagetop a {
  display: block;
}

#top .mv {
  position: relative;
}
@media screen and (max-width: 574px) {
  #top .mv {
    height: 77.5rem;
    overflow: hidden;
  }
}
#top .mv_text {
  position: absolute;
  bottom: 5.5rem;
  left: 10rem;
  color: #fff;
}
@media screen and (max-width: 991px) {
  #top .mv_text {
    left: 5rem;
  }
}
@media screen and (max-width: 574px) {
  #top .mv_text {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row-reverse;
    top: 10rem;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, 0);
    z-index: 2;
    color: #000;
    width: 100%;
    gap: 5rem;
  }
}
#top .mv_text h1 {
  font-family: "Zen Old Mincho", serif;
  font-size: 8rem;
  font-weight: bold;
  margin-left: -4rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.75), 0 0 2px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 991px) {
  #top .mv_text h1 {
    font-size: 7rem;
  }
}
@media screen and (max-width: 574px) {
  #top .mv_text h1 {
    writing-mode: vertical-rl;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    font-size: 4.8rem;
    margin-left: 0;
  }
}
#top .mv_text p {
  font-size: 2.5rem;
  letter-spacing: 0.3rem;
  margin-top: 1rem;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.75), 0 0 2px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 991px) {
  #top .mv_text p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 574px) {
  #top .mv_text p {
    writing-mode: vertical-rl;
    font-size: 2.3rem;
    margin-top: 3rem;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
#top .mv_text.black {
  color: #000;
}
#top .mv_text.black h1 {
  text-shadow: 0px 3px 5px rgba(0, 0, 0, 0);
}
@media screen and (max-width: 574px) {
  #top .mv_text.black h1 {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
#top .mv_text.black p {
  text-shadow: 0px 6px 10px rgba(255, 255, 255, 0.67);
}
@media screen and (max-width: 574px) {
  #top .mv_text.black p {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
#top .mv .swiper {
  inline-size: 100%;
  block-size: 100%;
  height: 100vh;
  perspective: 1200px;
}
@media screen and (max-width: 991px) {
  #top .mv .swiper {
    height: 100%;
  }
}
#top .mv .swiper-slide {
  height: 100%;
  width: 100%;
}
#top .mv .swiper-slide img {
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 574px) {
  #top .mv .swiper-slide img {
    object-position: bottom;
  }
}
#top .mv .swiper-slide img.sp {
  display: none;
}
@media screen and (max-width: 574px) {
  #top .mv .swiper-slide img.sp {
    display: block;
  }
}
@media screen and (max-width: 574px) {
  #top .mv .swiper-slide img.pc {
    display: none;
  }
}
#top .mv .swiper-wrapper {
  inline-size: 100%;
  block-size: 100%;
}
#top .mv .swiper-slide {
  display: flex block;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#top .mv .swiper-slide .mv_text {
  opacity: 0;
  transition-delay: 1s;
  transition-duration: 0.5s;
}
#top .mv .swiper-pagination {
  bottom: 30px;
  z-index: 10;
  text-align: right;
  padding-right: 2rem;
}
#top .mv .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  transition: 0.3s;
}
#top .mv .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #eee;
  transform: scale(1.2);
}
#top .mv .swiper-slide img {
  display: block flow-root;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  transition: clip-path 1.2s ease-out;
  transform: scale(1);
}
#top .mv .swiper-slide-next img, #top .mv .swiper-slide-duplicate-next img {
  transform: scale(1.2);
}
#top .mv .swiper-slide-active img {
  animation: scaleIn 5.5s ease forwards;
}
#top .mv .swiper-slide-active .mv_text {
  opacity: 1;
  transition: opacity 0.8s ease 1s;
}
@keyframes scaleIn {
  0% {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
#top .news {
  margin-top: 10rem;
  padding: 8rem 0;
  background: #e1dad7;
}
@media screen and (max-width: 574px) {
  #top .news {
    padding: 4rem 0;
    margin-top: 7.5rem;
  }
}
#top .news_inner {
  max-width: 85rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 574px) {
  #top .news_inner {
    margin-top: 2.5rem;
  }
}
#top .news_more {
  margin-left: auto;
  display: block;
  width: 29rem;
  position: relative;
  padding-bottom: 1rem;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  transition: 0.3s;
}
@media screen and (max-width: 574px) {
  #top .news_more {
    font-size: 1.6rem;
    width: 20rem;
    padding-bottom: 0.4rem;
  }
}
#top .news_more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition: 0.3s;
}
#top .news_more::after {
  content: "";
  position: absolute;
  right: -0.2rem;
  bottom: 0.7rem;
  transform: rotate(-135deg);
  height: 1px;
  width: 1.8rem;
  background: #000;
  transition: 0.3s;
}
@media screen and (max-width: 574px) {
  #top .news_more::after {
    width: 0.9rem;
    bottom: 0.4rem;
  }
}
@media (min-width: 992px) {
  #top .news_more:hover {
    opacity: 0.6;
  }
  #top .news_more:hover::before {
    width: calc(100% + 1rem);
  }
  #top .news_more:hover::after {
    right: -1.2rem;
  }
}
#top .news .tab {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
@media screen and (max-width: 574px) {
  #top .news .tab {
    gap: 0.5rem;
  }
}
#top .news .tab li {
  width: calc(25% - 1.13rem);
  height: 4rem;
  background: #969187;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top .news .tab li.active {
  background: #666;
}
@media (min-width: 992px) {
  #top .news .tab li:hover {
    background: #666;
  }
}
@media screen and (max-width: 574px) {
  #top .news .tab li {
    height: 3rem;
    font-size: 1.2rem;
    width: calc(25% - 0.4rem);
    letter-spacing: 0;
  }
}
#top .news .tab_box_wrap {
  margin-top: 2rem;
}
#top .news .tab_box_wrap .tab_box {
  display: none;
}
#top .news .tab_box_wrap .tab_box.active {
  display: block;
}
#top .news .tab_box_wrap .tab_box ul li a {
  padding: 2rem 6rem 2rem 0;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  #top .news .tab_box_wrap .tab_box ul li a:hover .arrow {
    transform: translate(10px, -50%);
  }
}
@media screen and (max-width: 574px) {
  #top .news .tab_box_wrap .tab_box ul li a {
    padding: 1.5rem 3rem 1.5rem 0;
    flex-wrap: wrap;
  }
}
#top .news .tab_box_wrap .tab_box ul li a .arrow {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  width: 1.2rem;
  transition: 0.3s;
}
@media screen and (max-width: 574px) {
  #top .news .tab_box_wrap .tab_box ul li a .arrow {
    width: 0.45rem;
    right: 1rem;
  }
}
#top .news .tab_box_wrap .tab_box ul li a .date {
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  margin-right: 4rem;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  #top .news .tab_box_wrap .tab_box ul li a .date {
    font-size: 1.6rem;
    margin-right: 3rem;
  }
}
@media screen and (max-width: 574px) {
  #top .news .tab_box_wrap .tab_box ul li a .date {
    font-size: 1.2rem;
    margin-right: 2rem;
  }
}
#top .news .tab_box_wrap .tab_box ul li a .tag {
  width: 13rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 3.5rem;
  background: #969187;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  margin-right: 2rem;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  #top .news .tab_box_wrap .tab_box ul li a .tag {
    width: 10rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 574px) {
  #top .news .tab_box_wrap .tab_box ul li a .tag {
    font-size: 1.2rem;
    margin-right: 1rem;
    height: 2rem;
    width: 7rem;
  }
}
#top .news .tab_box_wrap .tab_box ul li a h3 {
  font-size: 2rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
  line-height: 1.5;
  width: calc(100% - 33.5rem);
}
@media screen and (max-width: 991px) {
  #top .news .tab_box_wrap .tab_box ul li a h3 {
    font-size: 1.7rem;
    width: calc(100% - 28.1rem);
  }
}
@media screen and (max-width: 574px) {
  #top .news .tab_box_wrap .tab_box ul li a h3 {
    font-size: 1.4rem;
    width: 100%;
    margin-top: 1rem;
  }
}
#top .company {
  padding: 20rem 0 17rem;
}
@media screen and (max-width: 574px) {
  #top .company {
    padding: 11rem 0;
  }
}
#top .company_inner {
  margin-top: 3rem;
  height: 85.5rem;
  background: url(../images/top/company.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 8rem;
  width: 100%;
}
@media screen and (max-width: 574px) {
  #top .company_inner {
    background: none;
    height: auto;
    padding: 0 1.5rem;
  }
}
#top .company .sp_image {
  display: none;
}
@media screen and (max-width: 574px) {
  #top .company .sp_image {
    display: block;
    margin-top: 2.5rem;
  }
}
#top .company_text {
  writing-mode: vertical-rl;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width: 574px) {
  #top .company_text {
    writing-mode: horizontal-tb;
    color: #000;
    text-align: center;
  }
}
#top .company_text h3 {
  font-size: 2.9rem;
  font-weight: 500;
  letter-spacing: 1.8rem;
  line-height: 2;
  text-shadow: 0px 6px 10px rgba(0, 0, 0, 0.5);
  margin-left: 10rem;
}
@media screen and (max-width: 574px) {
  #top .company_text h3 {
    margin: 0;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    font-size: 1.7rem;
    letter-spacing: 0.4rem;
    font-weight: 600;
  }
}
#top .company_text p {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.6rem;
  line-height: 2.3;
  text-shadow: 0px 6px 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 574px) {
  #top .company_text p {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    line-height: 1.8;
    margin-top: 1.7rem;
  }
}
@media screen and (max-width: 574px) {
  #top .company_text p .sp_none {
    display: none;
  }
}
#top .company .more {
  margin: 5rem auto 0;
}
@media screen and (max-width: 574px) {
  #top .company .more {
    margin-top: 4.5rem;
  }
}
#top .product {
  margin-bottom: 17rem;
}
@media screen and (max-width: 574px) {
  #top .product {
    margin-bottom: 6.5rem;
  }
}
#top .product_text {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (max-width: 574px) {
  #top .product_text {
    margin-top: 2.5rem;
  }
}
#top .product_text h3 {
  font-size: 2.9rem;
  letter-spacing: 0.4rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 574px) {
  #top .product_text h3 {
    margin: 0;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    font-size: 1.7rem;
    letter-spacing: 0.4rem;
    font-weight: 600;
  }
}
#top .product_text p {
  margin-top: 2.5rem;
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  #top .product_text p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 574px) {
  #top .product_text p {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    line-height: 1.8;
    margin-top: 1.7rem;
  }
}
#top .product .product_inner {
  position: relative;
  width: 100%;
  margin-top: 6rem;
}
@media screen and (max-width: 574px) {
  #top .product .product_inner {
    margin-top: 0;
  }
}
#top .product .product_inner .product_slider {
  padding: 4rem 0;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 65%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 574px) {
  #top .product .product_inner .product_slider {
    padding: 4rem 0 3rem;
    mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgb(0, 0, 0) 65%, rgb(0, 0, 0) 95%, rgb(0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 70%, rgb(0, 0, 0) 95%, rgb(0, 0, 0) 100%);
  }
}
#top .product .product_inner .product_card {
  position: relative;
  overflow: hidden;
}
#top .product .product_inner .product_card img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}
#top .product .product_inner .product_card .product-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 10px;
  color: #fff;
  text-align: center;
  z-index: 0;
  font-size: 2rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 991px) {
  #top .product .product_inner .product_card .product-caption {
    padding: 1rem;
    font-size: 1.6rem;
  }
}
#top .product .product_inner .product_card .product-caption::after {
  content: "";
  background-color: #666666;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#top .product .product_inner .swiper-button-prev,
#top .product .product_inner .swiper-button-next {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 574px) {
  #top .product .product_inner .swiper-button-prev,
  #top .product .product_inner .swiper-button-next {
    transform: translate(0);
  }
}
#top .product .product_inner .swiper-button-prev::after,
#top .product .product_inner .swiper-button-next::after {
  display: none;
}
#top .product .product_inner .swiper-button-prev img,
#top .product .product_inner .swiper-button-next img {
  width: 8px;
  height: auto;
}
#top .product .product_inner .swiper-button-prev {
  left: 5%;
}
#top .product .product_inner .swiper-button-next {
  right: 5%;
}
#top .product .more {
  margin: 2rem auto 0;
}
@media screen and (max-width: 574px) {
  #top .product .more {
    margin-top: 0;
  }
}
#top .showroom_text {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (max-width: 574px) {
  #top .showroom_text {
    margin-top: 4.5rem;
  }
}
#top .showroom_text h3 {
  font-size: 2.9rem;
  letter-spacing: 0.4rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 574px) {
  #top .showroom_text h3 {
    margin: 0;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    font-size: 1.7rem;
    letter-spacing: 0.4rem;
    font-weight: 600;
  }
}
#top .showroom_text p {
  margin-top: 2.5rem;
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  #top .showroom_text p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 574px) {
  #top .showroom_text p {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    line-height: 1.8;
    margin-top: 1.7rem;
  }
}
#top .showroom_list {
  margin: 6rem auto 0;
  max-width: 1275px;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  gap: 7.5rem;
}
@media screen and (max-width: 1199px) {
  #top .showroom_list {
    gap: 3rem;
  }
}
@media screen and (max-width: 574px) {
  #top .showroom_list {
    flex-direction: column;
    gap: 4.75rem;
    margin-top: 3.5rem;
  }
}
#top .showroom_item {
  width: calc(50% - 3.75rem);
}
@media screen and (max-width: 1199px) {
  #top .showroom_item {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 574px) {
  #top .showroom_item {
    width: 100%;
  }
}
#top .showroom .more.large {
  width: 100%;
  height: 5rem;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  justify-content: center;
  padding: 0 7rem 0 9rem;
  margin-top: 2rem;
}
#top .showroom .more.large .arrow {
  width: 13px;
}
@media screen and (max-width: 767px) {
  #top .showroom .more.large .arrow {
    width: 8px;
  }
}
@media screen and (max-width: 574px) {
  #top .showroom .more.large .arrow {
    width: 10px;
  }
}
@media screen and (max-width: 1199px) {
  #top .showroom .more.large {
    padding: 0 3rem 0 5rem;
  }
}
@media screen and (max-width: 991px) {
  #top .showroom .more.large {
    font-size: 1.6rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  #top .showroom .more.large {
    padding: 0 1rem;
    font-size: 1.3rem;
    gap: 2rem;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 574px) {
  #top .showroom .more.large {
    font-size: 1.8rem;
    gap: 4rem;
  }
}
#top .shop {
  margin: 23rem 0 25rem;
  background: #e1dad7;
  padding: 9rem 0 11rem;
}
@media screen and (max-width: 574px) {
  #top .shop {
    margin: 7rem 0 10rem;
    padding: 5rem 0;
  }
}
#top .shop_inner {
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 574px) {
  #top .shop_inner {
    margin-top: 6.5rem;
    gap: 1.7rem;
  }
}
#top .shop_item {
  display: flex;
}
#top .shop_image {
  width: 61%;
}
@media screen and (max-width: 991px) {
  #top .shop_image {
    width: 50%;
    height: 30rem;
  }
}
@media screen and (max-width: 574px) {
  #top .shop_image {
    width: 50%;
    height: auto;
    height: 18.5rem;
  }
}
#top .shop_image img {
  height: 100%;
  object-fit: cover;
}
#top .shop_text {
  width: 39%;
  background: #969187;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 991px) {
  #top .shop_text {
    width: 50%;
  }
}
@media screen and (max-width: 574px) {
  #top .shop_text {
    width: 50%;
  }
}
#top .shop_text h3 {
  font-family: century-old-style-std, serif;
  font-size: 3.7rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 574px) {
  #top .shop_text h3 {
    font-size: 2rem;
    font-weight: 600;
  }
}
#top .shop_text div {
  margin-top: 4rem;
}
@media screen and (max-width: 574px) {
  #top .shop_text div {
    margin-top: 2rem;
  }
}
#top .shop_text div p {
  font-size: 2rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 574px) {
  #top .shop_text div p {
    font-size: 1.2rem;
  }
}
#top .shop_text div h4 {
  margin-top: 0.5rem;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
}
@media screen and (max-width: 574px) {
  #top .shop_text div h4 {
    font-size: 1.6rem;
    margin-top: 0.5rem;
  }
}
#top .shop_text .more {
  margin-top: 3rem;
}
@media screen and (max-width: 574px) {
  #top .shop_text .more {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 574px) {
  #top .shop_text .more {
    width: 13.5rem;
    height: 3rem;
    font-size: 1.3rem;
    padding: 0;
    padding-left: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
}
@media screen and (max-width: 574px) {
  #top .shop_text .more .arrow {
    width: 0.8rem;
  }
}
#top .recruit_video {
  margin-top: 4.5rem;
  aspect-ratio: 16/9;
  position: relative;
}
@media screen and (max-width: 574px) {
  #top .recruit_video {
    margin-top: 4rem;
  }
}
#top .recruit_video video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 3rem;
}
@media screen and (max-width: 574px) {
  #top .recruit_video video {
    border-radius: 1rem;
  }
}
#top .recruit_video .video_play_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: pointer;
  pointer-events: none;
}
@media screen and (max-width: 574px) {
  #top .recruit_video .video_play_btn {
    width: 8rem;
    height: 8rem;
  }
}
#top .recruit_video.is-playing .video_play_btn {
  opacity: 0;
  visibility: hidden;
}
#top .recruit_text {
  margin-top: 7.5rem;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 574px) {
  #top .recruit_text {
    margin-top: 3rem;
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
  }
}
#top .recruit_more {
  margin: 7rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: linear-gradient(90deg, rgb(0, 140, 55) 0%, rgb(110, 210, 0) 100%);
  border-radius: 1.5rem;
  max-width: 55rem;
  height: 12rem;
  font-weight: bold;
  font-size: 2.9rem;
  letter-spacing: 0.05rem;
  color: #fff;
  gap: 2rem;
}
@media screen and (max-width: 574px) {
  #top .recruit_more {
    font-size: 1.4rem;
    max-width: 27.5rem;
    height: 6rem;
    gap: 1rem;
    border-radius: 1rem;
    margin-top: 3.5rem;
  }
}
@media screen and (max-width: 450px) {
  #top .recruit_more {
    zoom: 1.2;
  }
}
#top .recruit_more::after {
  content: "";
  width: 96%;
  height: 83%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 1.5rem;
  display: block;
}
@media screen and (max-width: 574px) {
  #top .recruit_more::after {
    border-width: 1px;
    border-radius: 1rem;
  }
}
#top .recruit_more span {
  display: block;
  width: 3.5rem;
}
@media screen and (max-width: 574px) {
  #top .recruit_more span {
    width: 2rem;
  }
}
#top .instagram {
  margin: 26rem 0 20rem;
}
@media screen and (max-width: 574px) {
  #top .instagram {
    margin: 10rem 0;
  }
}
#top .instagram_flex {
  max-width: 1300px;
  padding: 0 15px;
  margin: 10rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 0;
  justify-content: space-between;
}
@media screen and (max-width: 574px) {
  #top .instagram_flex {
    margin: 5rem 0;
  }
}
#top .instagram_item {
  background: #969187;
  color: #fff;
  padding: 4rem 3.5rem;
  display: flex;
  align-items: flex-start;
  width: calc(50% - 3rem);
}
@media screen and (max-width: 1199px) {
  #top .instagram_item {
    flex-direction: column;
  }
}
@media screen and (max-width: 991px) {
  #top .instagram_item {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 767px) {
  #top .instagram_item {
    width: 100%;
    flex-direction: row;
  }
}
@media screen and (max-width: 574px) {
  #top .instagram_item {
    padding: 0;
  }
}
@media screen and (max-width: 574px) {
  #top .instagram_item .overall_link {
    padding: 1.5rem;
    display: flex;
  }
}
#top .instagram_item a {
  transition: 0.3s;
}
@media (min-width: 992px) {
  #top .instagram_item a:hover {
    opacity: 0.7;
    align-items: flex-start;
  }
}
#top .instagram_image {
  width: 39.5%;
  display: block;
}
@media screen and (max-width: 1199px) {
  #top .instagram_image {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #top .instagram_image {
    width: 39.5%;
  }
}
@media screen and (max-width: 574px) {
  #top .instagram_image {
    width: 10rem;
  }
}
#top .instagram_wrap {
  width: 60.5%;
  padding-left: 2rem;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 1199px) {
  #top .instagram_wrap {
    width: 100%;
    padding: 0;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  #top .instagram_wrap {
    width: 60.5%;
    padding-left: 2rem;
    margin-top: 0;
  }
}
@media screen and (max-width: 574px) {
  #top .instagram_wrap {
    width: calc(100% - 10rem);
  }
}
#top .instagram_wrap h3 {
  width: 100%;
}
@media screen and (max-width: 574px) {
  #top .instagram_wrap h3 {
    font-size: 1.8rem;
    font-weight: bold;
  }
}
#top .instagram_text_wrap {
  width: calc(100% - 10rem);
  padding-right: 2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 574px) {
  #top .instagram_text_wrap {
    width: 100%;
    padding-right: 0;
    position: relative;
  }
}
@media screen and (max-width: 574px) {
  #top .instagram_text_wrap::after {
    content: "";
    width: 3rem;
    height: 3rem;
    background: url(../images/top/sp_btn.png) no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(20%, 20%);
  }
}
#top .instagram_text p {
  font-size: 1.6rem;
  letter-spacing: 0.02rem;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 574px) {
  #top .instagram_text p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
#top .instagram_acount {
  margin-top: 2.5rem;
}
@media screen and (max-width: 574px) {
  #top .instagram_acount {
    padding-right: 3rem;
    margin-top: 1.5rem;
  }
}
#top .instagram_acount p {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 574px) {
  #top .instagram_acount p {
    font-size: 1.4rem;
  }
}
#top .instagram_acount a, #top .instagram_acount span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 574px) {
  #top .instagram_acount a, #top .instagram_acount span {
    font-size: 1.3rem;
    word-break: break-all;
    line-height: 1.3;
    margin-top: 1rem;
  }
}
#top .instagram_code {
  width: 10rem;
}
@media screen and (max-width: 574px) {
  #top .instagram_code {
    display: none;
  }
}

.bottomPage {
  padding-top: 27rem;
}
@media screen and (max-width: 991px) {
  .bottomPage {
    padding-top: 20rem;
  }
}
@media screen and (max-width: 574px) {
  .bottomPage {
    padding-top: 16rem;
  }
}

@media screen and (max-width: 574px) {
  #company .container {
    padding: 0 3rem;
  }
}
#company .message {
  max-width: 830px;
  margin: 0 auto;
}
#company .message_lead {
  margin-top: 4.5rem;
  font-size: 2rem;
  letter-spacing: 0;
  text-align: justify;
  line-height: 2;
}
@media screen and (max-width: 991px) {
  #company .message_lead {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 574px) {
  #company .message_lead {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
}
#company .message .name {
  margin: 3rem auto 0;
  width: 32rem;
}
@media screen and (max-width: 574px) {
  #company .message .name {
    width: 25rem;
  }
}
#company .profile {
  padding: 15rem 0 16rem;
  max-width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 574px) {
  #company .profile {
    padding: 10rem 0;
  }
}
#company .profile_list {
  margin-top: 5rem;
}
#company .profile_list > ul > li {
  display: flex;
  gap: 7rem;
  padding: 13px 0;
  border-bottom: 1px solid #9a9a9a;
  justify-content: center;
  align-items: center;
}
#company .profile_list > ul > li:first-of-type {
  border-top: 1px solid #9a9a9a;
}
@media screen and (max-width: 574px) {
  #company .profile_list > ul > li {
    gap: 2rem;
    font-size: 1.4rem;
  }
}
#company .profile_list > ul > li .ttl {
  width: 9.5rem;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}
#company .profile_list > ul > li .ttl.small {
  letter-spacing: -0.1rem;
}
@media screen and (max-width: 574px) {
  #company .profile_list > ul > li .ttl {
    width: 8rem;
  }
}
#company .profile_list > ul > li div {
  width: 34.2rem;
  max-width: 100%;
}
@media screen and (max-width: 574px) {
  #company .profile_list > ul > li div {
    width: calc(100% - 10rem);
  }
}
#company .profile_list > ul > li div ul {
  padding-left: 1.5em;
}
#company .profile_list > ul > li div ul li {
  list-style: disc;
}
#company .history {
  max-width: 840px;
  margin: 0 auto 23rem;
}
@media screen and (max-width: 574px) {
  #company .history {
    margin-bottom: 13rem;
  }
}
#company .history_list {
  margin-top: 5rem;
}
#company .history_list > ul > li {
  display: flex;
  gap: 5rem;
  padding: 13px 30px;
  border-bottom: 1px solid #9a9a9a;
  align-items: center;
}
#company .history_list > ul > li:first-of-type {
  border-top: 1px solid #9a9a9a;
}
@media screen and (max-width: 574px) {
  #company .history_list > ul > li {
    gap: 2rem;
    font-size: 1.45rem;
    padding: 14px 3px;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
#company .history_list > ul > li .ttl {
  white-space: nowrap;
}
#company .history_list > ul > li .ttl_wrap {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 574px) {
  #company .history_list > ul > li .ttl_wrap {
    gap: 1.5rem;
  }
}
#company .history_list > ul > li .ttl_wrap .ja_year {
  width: 7rem;
}
@media screen and (max-width: 574px) {
  #company .history_list > ul > li .ttl_wrap .ja_year {
    width: 6rem;
  }
}
#company .history_list > ul > li div ul {
  padding-left: 1.5em;
}
#company .history_list > ul > li div ul li {
  list-style: disc;
}
#company .caption {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 574px) {
  #company .caption {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
#company .sales_wrap {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 3rem;
}
@media screen and (max-width: 767px) {
  #company .sales_wrap {
    gap: 3rem;
  }
}
@media screen and (max-width: 574px) {
  #company .sales_wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 3.5rem;
  }
}
#company .sales_item {
  width: calc(33.333% - 2.4rem);
}
@media screen and (max-width: 991px) {
  #company .sales_item {
    width: calc(33.333% - 2.1rem);
  }
}
@media screen and (max-width: 767px) {
  #company .sales_item {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width: 574px) {
  #company .sales_item {
    width: 35.5rem;
    max-width: 100%;
  }
}
#company .sales_image {
  display: block;
  transition: 0.3s;
}
@media (min-width: 992px) {
  #company .sales_image:hover {
    opacity: 0.7;
  }
}
#company .sales_text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 574px) {
  #company .sales_text {
    margin-top: 1.5rem;
  }
}
#company .sales_text h3 {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 574px) {
  #company .sales_text h3 {
    font-size: 1.8rem;
  }
}
#company .sales_text a {
  display: block;
  margin-top: 0.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 574px) {
  #company .sales_text a {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  #company .sales_text a:hover {
    opacity: 0.7;
  }
}
#company .sales_text a span {
  width: 1rem;
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: text-top;
}
#company .sales_text a span img {
  display: block;
}
#company .sales_text .tel {
  margin-top: 0.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 574px) {
  #company .sales_text .tel {
    font-size: 1.5rem;
  }
}
#company .showroom {
  margin-top: 16rem;
}
@media screen and (max-width: 574px) {
  #company .showroom {
    margin-top: 10rem;
  }
}
#company .showroom_wrap {
  max-width: 65rem;
  margin: 8.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
@media screen and (max-width: 574px) {
  #company .showroom_wrap {
    flex-direction: column;
    align-items: center;
    margin-top: 3.5rem;
  }
}
#company .showroom_item {
  flex: 1;
}
#company .showroom_image {
  transition: 0.3s;
  display: block;
}
@media (min-width: 992px) {
  #company .showroom_image:hover {
    opacity: 0.7;
  }
}
#company .showroom_text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 574px) {
  #company .showroom_text {
    margin-top: 1.5rem;
  }
}
#company .showroom_text h3 {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 574px) {
  #company .showroom_text h3 {
    font-size: 1.8rem;
  }
}
#company .showroom_text a {
  display: block;
  margin-top: 0.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 574px) {
  #company .showroom_text a {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  #company .showroom_text a:hover {
    opacity: 0.7;
  }
}
#company .showroom_text a span {
  width: 1rem;
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: text-top;
}
#company .showroom_text a span img {
  display: block;
}
#company .showroom_text .tel {
  margin-top: 0.5rem;
  letter-spacing: 0;
}
@media screen and (max-width: 574px) {
  #company .showroom_text .tel {
    font-size: 1.5rem;
  }
}
#company .shop {
  margin-bottom: 20rem;
}
@media screen and (max-width: 574px) {
  #company .shop {
    margin-bottom: 15rem;
  }
}

#news .news {
  margin-bottom: 20rem;
}
@media screen and (max-width: 574px) {
  #news .news {
    margin-bottom: 15rem;
  }
}
#news .news_inner {
  max-width: 85rem;
  margin: 0 auto;
}
@media screen and (max-width: 574px) {
  #news .news_inner {
    margin-top: 2.5rem;
  }
}
#news .news_more {
  margin-left: auto;
  display: block;
  width: 29rem;
  position: relative;
  padding-bottom: 1rem;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  transition: 0.3s;
}
@media screen and (max-width: 574px) {
  #news .news_more {
    font-size: 1.6rem;
    width: 20rem;
    padding-bottom: 0.4rem;
  }
}
#news .news_more::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition: 0.3s;
}
#news .news_more::after {
  content: "";
  position: absolute;
  right: -0.2rem;
  bottom: 0.7rem;
  transform: rotate(-135deg);
  height: 1px;
  width: 1.8rem;
  background: #000;
  transition: 0.3s;
}
@media screen and (max-width: 574px) {
  #news .news_more::after {
    width: 0.9rem;
    bottom: 0.4rem;
  }
}
@media (min-width: 992px) {
  #news .news_more:hover {
    opacity: 0.6;
  }
  #news .news_more:hover::before {
    width: calc(100% + 1rem);
  }
  #news .news_more:hover::after {
    right: -1.2rem;
  }
}
#news .news .tab {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
@media screen and (max-width: 574px) {
  #news .news .tab {
    gap: 1.5rem 3rem;
    max-width: 30rem;
    margin: 3rem auto 0;
  }
}
#news .news .tab li {
  width: calc(25% - 1.13rem);
}
@media screen and (max-width: 574px) {
  #news .news .tab li {
    width: calc(50% - 1.5rem);
  }
}
#news .news .tab li a {
  width: 100%;
  height: 4rem;
  background: #969187;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 574px) {
  #news .news .tab li a {
    height: 3rem;
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
@media (min-width: 992px) {
  #news .news .tab li a:hover {
    background: #666;
  }
}
#news .news .tab li.active a {
  background: #666;
}
#news .news .tab_box_wrap {
  margin-top: 7.5rem;
}
@media screen and (max-width: 574px) {
  #news .news .tab_box_wrap {
    margin-top: 3rem;
  }
}
#news .news .tab_box_wrap .tab_box .news_list {
  border-top: 1px solid #000;
}
#news .news .tab_box_wrap .tab_box .news_list li a {
  padding: 2rem 6rem 2rem 0;
  border-bottom: 1px solid #000;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  #news .news .tab_box_wrap .tab_box .news_list li a:hover .arrow {
    transform: translate(10px, -50%);
  }
}
@media screen and (max-width: 574px) {
  #news .news .tab_box_wrap .tab_box .news_list li a {
    padding: 1.5rem 3rem 1.5rem 0;
    flex-wrap: wrap;
  }
}
#news .news .tab_box_wrap .tab_box .news_list li a .arrow {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  width: 1.2rem;
  transition: 0.3s;
}
@media screen and (max-width: 574px) {
  #news .news .tab_box_wrap .tab_box .news_list li a .arrow {
    width: 0.45rem;
    right: 1rem;
  }
}
#news .news .tab_box_wrap .tab_box .news_list li a .date {
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  margin-right: 4rem;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  #news .news .tab_box_wrap .tab_box .news_list li a .date {
    font-size: 1.6rem;
    margin-right: 3rem;
  }
}
@media screen and (max-width: 574px) {
  #news .news .tab_box_wrap .tab_box .news_list li a .date {
    font-size: 1.2rem;
    margin-right: 2rem;
  }
}
#news .news .tab_box_wrap .tab_box .news_list li a .tag {
  width: 13rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 3.5rem;
  background: #969187;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  margin-right: 2rem;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  #news .news .tab_box_wrap .tab_box .news_list li a .tag {
    width: 10rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 574px) {
  #news .news .tab_box_wrap .tab_box .news_list li a .tag {
    font-size: 1.2rem;
    margin-right: 1rem;
    height: 2rem;
    width: 7rem;
  }
}
#news .news .tab_box_wrap .tab_box .news_list li a h3 {
  font-size: 2rem;
  letter-spacing: 0.1rem;
  font-weight: 500;
  line-height: 1.5;
  width: calc(100% - 33.5rem);
}
@media screen and (max-width: 991px) {
  #news .news .tab_box_wrap .tab_box .news_list li a h3 {
    font-size: 1.7rem;
    width: calc(100% - 28.1rem);
  }
}
@media screen and (max-width: 574px) {
  #news .news .tab_box_wrap .tab_box .news_list li a h3 {
    font-size: 1.4rem;
    width: 100%;
    margin-top: 1rem;
  }
}
#news .news .tab_box_wrap .nav-links {
  margin-top: 6rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #969187;
}
@media screen and (max-width: 574px) {
  #news .news .tab_box_wrap .nav-links {
    margin-top: 3rem;
  }
}
#news .news .tab_box_wrap .nav-links .current {
  color: #000;
}
#news .news .tab_box_wrap .nav-links a {
  transition: 0.3s;
}
@media (min-width: 992px) {
  #news .news .tab_box_wrap .nav-links a:hover {
    color: #000;
  }
}

#news_detail .news_detail_inner {
  margin-bottom: 10rem;
}
#news_detail .news_detail_inner .date {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
#news_detail .news_detail_inner h1 {
  margin-bottom: 4rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #000;
}
#news_detail .news_detail_inner .btn_back {
  margin-top: 3rem;
}
#news_detail .news_detail_inner .btn_back .more {
  padding: 0.8rem 5rem 0.8rem 1.5rem;
}
@media (min-width: 992px) {
  #news_detail .news_detail_inner .btn_back .more:hover .arrow {
    transform: translateX(-5px);
  }
}

#showroom .reserve {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: 0.4s;
  z-index: 99;
}
@media screen and (max-width: 991px) {
  #showroom .reserve {
    height: 6rem;
  }
}
#showroom .reserve_icon {
  width: 4.5rem;
}
@media screen and (max-width: 991px) {
  #showroom .reserve_icon {
    width: 3rem;
  }
}
#showroom .reserve p {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  #showroom .reserve p {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  #showroom .reserve:hover {
    opacity: 0.7;
  }
}
#showroom .showroom .caution {
  border: 2px solid #000;
  margin-top: 6rem;
}
#showroom .showroom .caution h2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  background: #000;
  color: #fff;
  gap: 1.5rem;
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  #showroom .showroom .caution h2 {
    height: 5rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .caution h2 {
    font-size: 1.6rem;
    gap: 1rem;
    position: relative;
    cursor: pointer;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .caution h2::after {
    content: "+";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-58%);
    font-size: 24px;
    font-weight: bold;
    transition: 0.3s;
    line-height: 1;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .caution h2.active::after {
    content: "-";
  }
}
#showroom .showroom .caution h2 img {
  display: block;
  width: 3rem;
}
@media screen and (max-width: 991px) {
  #showroom .showroom .caution h2 img {
    width: 2.2rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .caution h2 img {
    width: 2rem;
  }
}
#showroom .showroom .caution p {
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
  line-height: 2;
}
@media screen and (max-width: 1199px) {
  #showroom .showroom .caution p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  #showroom .showroom .caution p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .caution p {
    display: none;
    padding: 1.5rem;
    font-size: 1.4rem;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  #showroom .showroom .caution p .sp_none {
    display: none;
  }
}
#showroom .showroom .info {
  margin-top: 8.5rem;
}
@media screen and (max-width: 1199px) {
  #showroom .showroom .info {
    margin-top: 7rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .info {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .info .showroom_flex {
    position: relative;
    padding-top: 4rem;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .info .showroom_text h3 {
    position: absolute;
    left: 0;
    top: 0;
  }
}
#showroom .showroom_box h2 {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
  width: 100%;
  height: 5rem;
  background: #969187;
}
@media screen and (max-width: 574px) {
  #showroom .showroom_box h2 {
    font-size: 2rem;
  }
}
#showroom .showroom_flex {
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 574px) {
  #showroom .showroom_flex {
    flex-direction: column-reverse;
  }
}
#showroom .showroom_text {
  width: 50%;
}
@media screen and (max-width: 574px) {
  #showroom .showroom_text {
    width: 100%;
  }
}
#showroom .showroom_text h3 {
  font-size: 2.3rem;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  #showroom .showroom_text h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  #showroom .showroom_text h3 {
    font-size: 1.8rem;
  }
}
#showroom .showroom_text .address {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 2rem;
}
@media screen and (max-width: 991px) {
  #showroom .showroom_text .address {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom_text .address {
    font-size: 1.6rem;
  }
}
#showroom .showroom_text ul {
  margin-top: 3rem;
}
@media screen and (max-width: 574px) {
  #showroom .showroom_text ul {
    margin-top: 2rem;
  }
}
#showroom .showroom_text ul li {
  line-height: 1.8;
  display: flex;
  align-items: baseline;
  font-size: 2rem;
  gap: 0.5rem;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 991px) {
  #showroom .showroom_text ul li {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom_text ul li {
    font-size: 1.4rem;
  }
}
#showroom .showroom_text ul li .ttl {
  white-space: nowrap;
}
#showroom .showroom_text ul li .text small {
  display: block;
  font-size: 1.8rem;
}
@media screen and (max-width: 991px) {
  #showroom .showroom_text ul li .text small {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom_text ul li .text small {
    font-size: 1.3rem;
  }
}
#showroom .showroom_text .caption {
  margin-top: 4rem;
  font-size: 1.8rem;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 991px) {
  #showroom .showroom_text .caption {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom_text .caption {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
}
#showroom .showroom_image {
  padding-left: 3.5rem;
  width: 50%;
}
@media screen and (max-width: 574px) {
  #showroom .showroom_image {
    width: 100%;
    padding-left: 0;
  }
}
#showroom .showroom .calendar {
  margin: 11rem 0 10rem;
}
@media screen and (max-width: 767px) {
  #showroom .showroom .calendar {
    margin: 7rem 0;
  }
}
#showroom .showroom .calendar h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 574px) {
  #showroom .showroom .calendar h3 {
    font-size: 2rem;
  }
}
#showroom .showroom .calendar h3::before, #showroom .showroom .calendar h3::after {
  content: "";
  width: 17.5rem;
  height: 1px;
  background: #000;
  display: block;
}
@media screen and (max-width: 574px) {
  #showroom .showroom .calendar h3::before, #showroom .showroom .calendar h3::after {
    width: 10rem;
  }
}
#showroom .showroom .calendar_box {
  display: flex;
  max-width: 75rem;
  margin: 8.5rem auto 0;
  gap: 13rem;
}
@media screen and (max-width: 991px) {
  #showroom .showroom .calendar_box {
    gap: 7rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .calendar_box {
    margin-top: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  #showroom .showroom .calendar_item {
    width: 100%;
    max-width: 31rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #showroom .showroom .calendar_item:nth-of-type(2) {
    display: none;
  }
}
#showroom .showroom .calendar .eo-fullcalendar-reset.fc-unthemed .fc-today {
  background: none;
}
#showroom .showroom .calendar .eo-fullcalendar-reset.fc-unthemed .fc-today.category-nagano_holiday {
  background: #969187;
  color: #fff;
}
#showroom .showroom .calendar .eo-fullcalendar-reset.fc-unthemed .fc-today.category-matsumoto_holiday {
  background: #969187;
  color: #fff;
}
#showroom .showroom .calendar .eo-fullcalendar .fc-toolbar {
  margin-bottom: 2.5rem;
}
#showroom .showroom .calendar .fc table {
  border-collapse: separate;
  border-spacing: 1rem 0;
}
#showroom .showroom .calendar .fc-left {
  float: none;
  width: 100%;
  display: block;
}
#showroom .showroom .calendar .fc-left h2 {
  text-align: center;
  background: none;
  color: #000;
  padding: 0;
  height: auto;
  font-size: 1.8rem;
}
#showroom .showroom .calendar .fc-toolbar {
  position: relative;
}
#showroom .showroom .calendar .fc-toolbar .fc-right {
  display: none;
}
@media screen and (max-width: 767px) {
  #showroom .showroom .calendar .fc-toolbar .fc-right {
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 0;
  }
}
#showroom .showroom .calendar .fc-toolbar .fc-right .fc-button-group:last-of-type {
  display: none;
}
#showroom .showroom .calendar .fc-toolbar .fc-right .fc-button-group > * {
  padding: 0;
  background: none;
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  width: 3rem;
}
#showroom .showroom .calendar .fc td, #showroom .showroom .calendar .fc th {
  border: none;
}
#showroom .showroom .calendar .fc th {
  font-weight: bold;
}
#showroom .showroom .calendar .fc td {
  text-align: center;
  font-size: 1.8rem;
}
#showroom .showroom .calendar .eo-fullcalendar .fc-view > table > thead {
  background: none;
}
#showroom .showroom .calendar .fc-row .fc-content-skeleton tbody {
  display: none;
}
#showroom .showroom .calendar .fc-widget-content {
  margin-top: 1rem;
}
#showroom .showroom .calendar .fc-basic-view tbody .fc-row {
  min-height: 0;
  margin-bottom: 1rem;
}
#showroom .showroom .calendar .fc-ltr .fc-basic-view .fc-day-number {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  text-align: center;
  border-radius: 50%;
}
#showroom .showroom .calendar .fc-ltr .fc-basic-view .fc-day-number.category-nagano_holiday {
  background: #969187;
  color: #fff;
}
#showroom .showroom .calendar .fc-ltr .fc-basic-view .fc-day-number.category-matsumoto_holiday {
  background: #969187;
  color: #fff;
}
#showroom .showroom .calendar .calendar_text {
  text-align: center;
  font-size: 1.6rem;
}
#showroom .showroom .calendar .calendar_text .circle {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  border-radius: 1.4em;
  background: #969187;
  vertical-align: -0.3em;
  margin-right: 0.3em;
}
#showroom .showroom .map iframe {
  display: block;
  width: 100%;
  height: 73rem;
}
@media screen and (max-width: 991px) {
  #showroom .showroom .map iframe {
    height: 50rem;
  }
}
@media screen and (max-width: 767px) {
  #showroom .showroom .map iframe {
    height: 40rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .map iframe {
    height: 35rem;
  }
}
#showroom .showroom .can {
  margin: 23rem 0 18rem;
}
@media screen and (max-width: 991px) {
  #showroom .showroom .can {
    margin: 15rem 0 10rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .can {
    margin: 10rem 0 7rem;
  }
}
#showroom .showroom .can .showroom_flex {
  gap: 6rem 10rem;
}
@media screen and (max-width: 767px) {
  #showroom .showroom .can .showroom_flex {
    gap: 4rem 5rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .can .showroom_flex {
    flex-direction: column;
  }
}
#showroom .showroom_item {
  width: calc(50% - 5rem);
}
@media screen and (max-width: 767px) {
  #showroom .showroom_item {
    width: calc(50% - 2.5rem);
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom_item {
    width: 100%;
  }
}
#showroom .showroom_item .showroom_image {
  padding: 0;
  width: 100%;
}
#showroom .showroom_item .showroom_text {
  width: 100%;
  margin-top: 1.5rem;
}
#showroom .showroom_item .showroom_text p {
  margin-top: 1rem;
  font-size: 1.7rem;
  letter-spacing: 0.02rem;
}
#showroom .showroom .showroom_inner {
  position: relative;
  width: 100%;
  margin-top: 6rem;
  margin-bottom: 18rem;
}
@media screen and (max-width: 574px) {
  #showroom .showroom .showroom_inner {
    margin-top: 3rem;
    margin-bottom: 10rem;
  }
}
#showroom .showroom .showroom_inner .showroom_slider {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 65%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 574px) {
  #showroom .showroom .showroom_inner .showroom_slider {
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 2%, rgb(0, 0, 0) 65%, rgba(0, 0, 0, 0) 98%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 2%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 78%, rgba(0, 0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%);
  }
}
#showroom .showroom .showroom_inner .showroom_card {
  position: relative;
  overflow: hidden;
}
#showroom .showroom .showroom_inner .showroom_card img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}
#showroom .showroom .showroom_inner .showroom_card .showroom-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  color: #fff;
  z-index: 0;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  #showroom .showroom .showroom_inner .showroom_card .showroom-caption {
    padding: 1rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 574px) {
  #showroom .showroom .showroom_inner .showroom_card .showroom-caption {
    font-size: 1.4rem;
    padding: 10px 7px;
  }
}
#showroom .showroom .showroom_inner .showroom_card .showroom-caption small {
  display: inline-block;
  font-size: 1.3rem;
}
@media screen and (max-width: 574px) {
  #showroom .showroom .showroom_inner .showroom_card .showroom-caption small {
    font-size: 1rem;
  }
}
#showroom .showroom .showroom_inner .showroom_card .showroom-caption::after {
  content: "";
  background-color: #666666;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#showroom .showroom .showroom_inner .swiper-button-prev,
#showroom .showroom .showroom_inner .swiper-button-next {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 574px) {
  #showroom .showroom .showroom_inner .swiper-button-prev,
  #showroom .showroom .showroom_inner .swiper-button-next {
    transform: translate(0);
  }
}
#showroom .showroom .showroom_inner .swiper-button-prev::after,
#showroom .showroom .showroom_inner .swiper-button-next::after {
  display: none;
}
#showroom .showroom .showroom_inner .swiper-button-prev img,
#showroom .showroom .showroom_inner .swiper-button-next img {
  width: 8px;
  height: auto;
}
#showroom .showroom .showroom_inner .swiper-button-prev {
  left: 5%;
}
#showroom .showroom .showroom_inner .swiper-button-next {
  right: 5%;
}

#products {
  overflow: visible;
}
@media screen and (max-width: 574px) {
  #products {
    overflow: hidden;
  }
}
#products .page_menu {
  position: fixed;
  top: 13rem;
  left: 0;
  width: 100%;
  z-index: 99;
  display: none;
}
@media screen and (max-width: 767px) {
  #products .page_menu {
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
  }
  #products .page_menu.show {
    opacity: 1;
    pointer-events: all;
  }
}
@media screen and (max-width: 574px) {
  #products .page_menu {
    top: 9rem;
  }
}
#products .page_menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  background: #000;
  color: #fff;
  padding: 1.5rem 0;
}
@media screen and (max-width: 1400px) {
  #products .page_menu ul {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 1199px) {
  #products .page_menu ul {
    flex-wrap: wrap;
    gap: 1rem 2rem;
    padding: 1.5rem 3rem;
  }
}
@media screen and (max-width: 991px) {
  #products .page_menu ul {
    gap: 1rem 3rem;
  }
}
@media screen and (max-width: 767px) {
  #products .page_menu ul {
    background: #969187;
  }
}
@media screen and (max-width: 574px) {
  #products .page_menu ul {
    gap: 1.5rem 2rem;
    padding: 3rem 1rem;
  }
}
@media screen and (max-width: 1199px) {
  #products .page_menu ul li {
    width: calc(25% - 1.5rem);
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 991px) {
  #products .page_menu ul li {
    width: auto;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 574px) {
  #products .page_menu ul li {
    font-size: 1.3rem;
  }
}
#products .sp_show_btn {
  display: none;
}
@media screen and (max-width: 767px) {
  #products .sp_show_btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 1rem 3rem;
    background: #969187;
    color: #fff;
    z-index: 10;
  }
}
#products .sp_show_btn.show span {
  transform: rotate(180deg);
  display: inline-block;
}
#products .product_link {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 2rem;
}
@media screen and (max-width: 767px) {
  #products .product_link {
    display: none;
  }
}
#products .product .caption {
  margin-bottom: 10rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  #products .product .caption {
    margin-top: 0;
    margin-bottom: 7rem;
  }
}
@media screen and (max-width: 574px) {
  #products .product .caption li {
    font-size: 1.3rem;
  }
}
#products .product .sp_link {
  display: none;
  background: #969187;
  color: #fff;
  margin-top: 4rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  #products .product .sp_link {
    display: block;
  }
}
#products .product .sp_link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  padding: 3rem;
}
@media screen and (max-width: 574px) {
  #products .product .sp_link ul {
    gap: 1.5rem 2rem;
    padding: 3rem 1rem;
  }
}
@media screen and (max-width: 574px) {
  #products .product .sp_link ul li {
    font-size: 1.3rem;
  }
}
#products .product_item {
  width: calc(25% - 1.5rem);
  transition: 0.3s;
}
@media (min-width: 992px) {
  #products .product_item:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 991px) {
  #products .product_item {
    width: calc(33.333% - 1.3333rem);
  }
}
#products .product_item .link_btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3rem;
  background: #000;
  color: #fff;
  padding: 0 1.5rem;
}
#products .product_item .link_btn div {
  font-size: 1.5rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 1199px) {
  #products .product_item .link_btn div {
    font-size: 1.4rem;
  }
}
#products .product_item .link_btn div.space {
  letter-spacing: -0.15rem;
}
#products .product_item .link_btn .arrow {
  width: 0.75rem;
}
#products .product_item .link_btn .arrow img {
  display: block;
}
#products .product_box {
  margin-bottom: 15rem;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  #products .product_box {
    flex-wrap: wrap;
    margin-bottom: 10rem;
  }
}
#products .product_image {
  width: 30%;
  position: sticky;
  top: 20rem;
  left: 0;
}
@media screen and (max-width: 1199px) {
  #products .product_image {
    top: 24rem;
  }
}
@media screen and (max-width: 767px) {
  #products .product_image {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    position: static;
  }
}
#products .product_image p {
  display: flex;
  align-items: center;
  width: 100%;
  height: 4.5rem;
  background: #000;
  color: #fff;
  letter-spacing: 0.3rem;
  font-size: 1.9rem;
  padding: 0 3rem;
}
@media screen and (max-width: 1199px) {
  #products .product_image p {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 991px) {
  #products .product_image p {
    padding: 0 1rem;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  #products .product_image p {
    font-size: 1.9rem;
  }
}
#products .product_image p.compact {
  letter-spacing: -0.15rem;
}
#products .product_text {
  width: 70%;
  padding-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  #products .product_text {
    width: 100%;
    padding-left: 0;
    margin-top: 8rem;
  }
}
@media screen and (max-width: 574px) {
  #products .product_text {
    margin-top: 3rem;
  }
}
#products .product_text ul {
  border-top: 1px solid #000;
}
#products .product_text ul li {
  border-bottom: 1px solid #000;
}
@media (min-width: 992px) {
  #products .product_text ul li > a:hover {
    background: #e6e6e6;
  }
  #products .product_text ul li > a:hover span {
    opacity: 1;
    pointer-events: all;
  }
}
#products .product_text ul li > a, #products .product_text ul li > div {
  padding: 2rem 1.5rem;
  position: relative;
  display: block;
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  #products .product_text ul li > a, #products .product_text ul li > div {
    padding: 2rem 1.5rem 4.55rem;
  }
}
#products .product_text ul li > a span, #products .product_text ul li > div span {
  position: absolute;
  right: 1rem;
  top: 2rem;
  color: #808080;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  #products .product_text ul li > a span, #products .product_text ul li > div span {
    opacity: 1;
    font-size: 1.2rem;
    top: auto;
    bottom: 1.5rem;
  }
}
#products .product_text ul li > a span img, #products .product_text ul li > div span img {
  width: 1.3rem;
  margin-left: 0.5rem;
  display: block;
  padding-bottom: 0.3rem;
}
#products .product_text ul li > a h2, #products .product_text ul li > div h2 {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 574px) {
  #products .product_text ul li > a h2, #products .product_text ul li > div h2 {
    font-size: 1.6rem;
  }
}
#products .product_text ul li > a p, #products .product_text ul li > div p {
  font-size: 1.8rem;
  letter-spacing: -0.08rem;
}
@media screen and (max-width: 574px) {
  #products .product_text ul li > a p, #products .product_text ul li > div p {
    font-size: 1.6rem;
  }
}
#products .product .text_inner {
  margin-top: 3rem;
}
#products .product .text_inner:first-of-type {
  margin-top: 0;
}

#contact .container {
  max-width: 78rem;
}
#contact .contact {
  margin-bottom: 11rem;
}
#contact .contact_lead {
  margin-top: 8rem;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
#contact .contact_lead .red {
  color: #ed6f34;
}
#contact .contact .form {
  margin-top: 5.5rem;
}
#contact .contact .form .contact_table {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 0;
}
@media screen and (max-width: 574px) {
  #contact .contact .form .contact_table {
    gap: 1.5rem;
  }
}
#contact .contact .form .contact_table dt {
  width: 18rem;
  font-size: 1.8rem;
}
#contact .contact .form .contact_table dt .required_mark {
  color: #ed6f34;
}
@media screen and (max-width: 574px) {
  #contact .contact .form .contact_table dt {
    width: 100%;
    font-size: 1.6rem;
  }
}
#contact .contact .form .contact_table dd {
  width: calc(100% - 18rem);
}
@media screen and (max-width: 574px) {
  #contact .contact .form .contact_table dd {
    width: 100%;
  }
}
#contact .contact .form .contact_table dd input, #contact .contact .form .contact_table dd select, #contact .contact .form .contact_table dd textarea {
  border: 1px solid #000;
}
#contact .contact .form .contact_table dd input, #contact .contact .form .contact_table dd select {
  height: 5.5rem;
  padding: 0 1.5rem;
}
@media screen and (max-width: 574px) {
  #contact .contact .form .contact_table dd input, #contact .contact .form .contact_table dd select {
    height: 4rem;
  }
}
#contact .contact .form .contact_table dd textarea {
  padding: 1.5rem;
}
#contact .contact .form .contact_table dd input, #contact .contact .form .contact_table dd textarea {
  width: 100%;
}
#contact .contact .form .contact_table dd .note p {
  margin-top: 0.5rem;
}
@media screen and (max-width: 574px) {
  #contact .contact .form .contact_table dd .note p {
    font-size: 1.4rem;
  }
}
#contact .contact .form .contact_table dd select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/contact/arrow.png");
  background-repeat: no-repeat;
  background-size: 10px 6px;
  background-position: right 15px center;
  padding-right: 40px;
}
@media screen and (max-width: 574px) {
  #contact .contact .form .contact_table dd select {
    font-size: 1.4rem;
    padding: 0 3rem 0 1rem;
    max-width: 100%;
  }
}
#contact .contact .form .privacy {
  max-width: 75rem;
  width: 100%;
  margin: 8rem auto 0;
  padding: 4rem;
  max-height: 30rem;
  overflow-y: scroll;
  border: 1px solid #eee;
}
@media screen and (max-width: 574px) {
  #contact .contact .form .privacy {
    padding: 2rem;
  }
}
#contact .contact .form .privacy h2 {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 574px) {
  #contact .contact .form .privacy h2 {
    font-size: bold;
    font-size: 1.6rem;
  }
}
#contact .contact .form .privacy ol {
  padding-left: 1.5em;
  margin-top: 1rem;
}
#contact .contact .form .privacy ol li h3 {
  font-weight: 500;
  margin-top: 3rem;
}
@media screen and (max-width: 574px) {
  #contact .contact .form .privacy ol li h3 {
    font-size: bold;
    font-size: 1.5rem;
  }
}
#contact .contact .form .privacy ol li h4 {
  font-weight: 500;
  margin-top: 1.5rem;
}
@media screen and (max-width: 574px) {
  #contact .contact .form .privacy ol li h4 {
    font-size: bold;
    font-size: 1.5rem;
  }
}
#contact .contact .form .privacy p {
  margin-top: 0.5rem;
}
@media screen and (max-width: 574px) {
  #contact .contact .form .privacy p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 574px) {
  #contact .contact .form .btn-submit-custom {
    margin-top: 5rem;
  }
}
#contact .contact .form_confirm {
  margin-top: 5.5rem;
}
#contact .contact .form_confirm .contact_table {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
}
#contact .contact .form_confirm .contact_table dt {
  width: 18rem;
  font-size: 1.8rem;
  border-bottom: 1px solid #000;
  padding-bottom: 2rem;
}
#contact .contact .form_confirm .contact_table dt .required_mark {
  color: #ed6f34;
}
@media screen and (max-width: 574px) {
  #contact .contact .form_confirm .contact_table dt {
    font-size: 1.6rem;
    width: 100%;
    border-bottom: 0;
    padding-bottom: 0;
  }
}
#contact .contact .form_confirm .contact_table dd {
  width: calc(100% - 18rem);
  border-bottom: 1px solid #000;
  padding-bottom: 2rem;
}
@media screen and (max-width: 574px) {
  #contact .contact .form_confirm .contact_table dd {
    width: 100%;
    padding-left: 0;
    font-size: 1.5rem;
  }
}
#contact .contact .form_confirm form > p {
  display: flex;
  gap: 0 6rem;
  margin-top: 5rem;
}
@media screen and (max-width: 574px) {
  #contact .contact .form_confirm form > p {
    gap: 0 2rem;
  }
}
#contact .contact .form_confirm form > p br {
  display: none;
}
#contact .contact .form_confirm form > p .contact_submit, #contact .contact .form_confirm form > p .has-spinner {
  width: calc(50% - 3rem);
  letter-spacing: 0.4rem;
  display: flex !important;
  margin: 0;
}
@media screen and (max-width: 574px) {
  #contact .contact .form_confirm form > p .contact_submit, #contact .contact .form_confirm form > p .has-spinner {
    width: calc(50% - 1rem);
  }
}
#contact .contact .form_confirm form > p .wpcf7-spinner {
  display: none;
}
#contact .contact .btn-submit-custom, #contact .contact .has-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30.5rem;
  height: 5rem;
  color: #fff;
  background: #000;
  position: relative;
  margin: 10rem auto 0;
}
#contact .contact .btn-submit-custom .arrow, #contact .contact .has-spinner .arrow {
  width: 1.3rem;
  height: 1.9rem;
  background: url("../images/common/arrow_white.png") no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 574px) {
  #contact .contact .btn-submit-custom .arrow, #contact .contact .has-spinner .arrow {
    width: 1rem;
  }
}
#contact .contact .btn-back-custom, #contact .contact .contact_submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30.5rem;
  height: 5rem;
  color: #fff;
  background: #969187;
  position: relative;
  margin: 10rem auto 0;
}
#contact .contact .btn-back-custom .arrow, #contact .contact .contact_submit .arrow {
  width: 1.3rem;
  height: 1.9rem;
  background: url("../images/common/arrow_white_prev.png") no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 574px) {
  #contact .contact .btn-back-custom .arrow, #contact .contact .contact_submit .arrow {
    width: 1rem;
  }
}
#contact .contact .thanks {
  margin-top: 5rem;
  text-align: center;
}
#contact .contact .thanks h2 {
  font-weight: 500;
  font-size: 2.4rem;
}
@media screen and (max-width: 574px) {
  #contact .contact .thanks h2 {
    font-size: 2rem;
  }
}
#contact .contact .thanks p {
  margin-top: 3rem;
  line-height: 2;
}
@media screen and (max-width: 574px) {
  #contact .contact .thanks p {
    text-align: left;
    font-size: 1.4rem;
  }
}
#contact .contact .thanks .more {
  margin: 4rem auto 0;
}