/* -HEADER
--------------------------------------------------------------------------------------------- */
/* -togglemenu.css
--------------------------------------------------------------------------------------------- */
/**************************
ページヘッダー
**************************/
/**************************
ページヘッダー(ランダム)
**************************/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  color: #fff;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
header.view {
  color: #000;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}
header .c-nav1 a, header .c-link1, header .c-phone {
  -webkit-transition: color 0s;
  -o-transition: color 0s;
  transition: color 0s;
}
/* CONTAINER  */
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 48px 0;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
header.view .header__container {
  padding: 20px 0;
}
/* LOGO */
.header__logo {
  width: 229px;
}
.header__logo .logo-black {
  display: none;
}
.header_text001 {
  margin-bottom: 0;
  font-family: "Shippori Mincho", serif;
  margin-top: 5px;
  font-size: 0.87rem;
}
header.view .header_text001 {
  display: none;
}
header.view .logo-black {
  display: block;
}
header.view .logo-white {
  display: none;
}
/* NAV */
header .c-nav1 li + li {
  margin-left: 28px;
}
header .c-nav1 li.link-break {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 25px;
}
header .c-nav1 li.link-break::before {
  content: "";
  width: 1px;
  height: 18px;
  background-color: currentColor;
  opacity: 0.8;
  display: inline-block;
  margin-right: 28px;
}
header .c-nav1 li:nth-child(7) a, header .c-nav1 li:nth-child(8) a {
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .header_text001 {
    font-size: 0.9rem;
  }
}
/* TRIGGER */
.menu-trigger {
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 1001;
  cursor: pointer;
  color: currentColor;
  margin-left: 46px;
}
.menu-trigger::before, .menu-trigger__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.menu-trigger::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid currentColor;
  -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -o-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}
.menu-trigger.tgl-active::before {
  width: 342%;
  height: 342%;
  border-color: rgba(232, 232, 232, 0.26);
}
.menu-trigger__inner {
  width: 12px;
  height: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  -o-transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}
.menu-trigger.tgl-active .menu-trigger__inner {
  width: 20px;
  height: 20px;
}
.menu-trigger__inner div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.menu-trigger.tgl-active span.hide {
  opacity: 0;
}
.menu-trigger span {
  display: inline-block;
  width: 2px;
  height: 2px;
  background-color: currentColor;
  -webkit-transition: width 0.4s ease-in-out, height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  -o-transition: width 0.4s ease-in-out, height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.menu-trigger.tgl-active span {
  width: 4px;
  height: 4px;
}
@media screen and (max-width: 1300px) {
  header .c-nav1 li + li, header .c-nav1 li.link-break, .menu-trigger {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .header__logo {
    width: 190px;
  }
  header .c-nav1 li.link-break::before {
    content: none;
  }
  header .c-nav1 li + li, header .c-nav1 li.link-break, .menu-trigger {
    margin-left: 15px;
  }
}
@media screen and (max-width: 991px) {
  .header__logo {
    width: 229px;
  }
  header .c-nav1 {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .header__container {
    padding: 20px 0;
  }
  header.view .header__container {
    padding: 10px 0;
  }
  .header__logo {
    width: 200px;
  }
  .menu-trigger.tgl-active::before {
    width: 150%;
    height: 150%;
  }
}
/* MENU TOGGLE */
.menu-toggle {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  background-color: #1a1a1a;
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  color: #fff;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.menu-toggle::-webkit-scrollbar {
  display: none;
}
.menu-toggle.active {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
}
.menu-toggle__inner {
  padding: 58px 4.4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu-toggle .header__logo {
  margin-bottom: 152px;
}
.menu-toggle__group {
  width: 100%;
  max-width: 904px;
  margin-bottom: 88px;
}
/* TOGGLE NAV  */
.menu-toggle__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 0;
}
.menu-toggle .menu-toggle__nav + .menu-toggle__nav {
  margin-top: 60px;
}
.menu-toggle__nav .f-eng {
  font-weight: 300;
  letter-spacing: 0.03em;
}
.menu-toggle__nav .nav-title {
  -ms-flex-preferred-size: 145px;
  flex-basis: 145px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 145px;
  color: #bcbcbc;
  font-size: 1.286rem;
  margin-bottom: 0;
}
.menu-toggle__nav ul {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 9%;
  margin-bottom: 0;
}
.menu-toggle__nav ul li {
  margin-right: 60px;
  margin-bottom: 15px;
}
.menu-toggle__nav ul li:last-child {
  margin-right: 0;
}
.menu-toggle__nav a {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 1.357rem;
  letter-spacing: 0;
}
.menu-toggle__nav a:hover {
  color: #ededed;
}
.menu-toggle__nav a div {
  font-size: 0.929rem;
  margin-top: 5px;
}
.menu-toggle__nav2 {
  margin-top: 102px;
  margin-bottom: 0;
  text-align: right;
}
.menu-toggle__nav2 a {
  display: inline-block;
  color: #bcbcbc;
  font-weight: 400;
  font-size: 1.071rem;
  letter-spacing: -0.06em;
  margin-bottom: 10px;
}
.menu-toggle__nav2 a::after {
  content: "/";
  display: inline-block;
  margin: 0 12px;
}
.menu-toggle__nav2 a:last-child:after {
  content: none;
}
.menu-toggle .c-socials {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.menu-toggle .c-socials a + a {
  margin-left: 32px;
}
@media screen and (max-width: 991px) {
  .menu-toggle__inner {
    padding: 60px 5%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .menu-toggle__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .menu-toggle .menu-toggle__nav + .menu-toggle__nav {
    margin-top: 40px;
  }
  .menu-toggle__nav ul {
    padding-left: 0%;
  }
  .menu-toggle__nav .nav-title {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    width: auto;
    margin-bottom: 10px;
  }
  .menu-toggle__nav2 {
    text-align: left;
    margin-top: 80px;
  }
  .menu-toggle__nav2 a::after {
    margin: 0 8px;
  }
}
@media screen and (max-width: 576px) {
  .menu-toggle__inner {
    padding-bottom: 100px;
  }
  .menu-toggle .header__logo {
    margin-bottom: 70px;
  }
  .menu-toggle__group {
    margin-bottom: 50px;
  }
  .menu-toggle .menu-toggle__nav + .menu-toggle__nav {
    margin-top: 25px;
  }
  .menu-toggle__group .menu-toggle__nav:nth-child(4) {
    margin-top: 0;
  }
  .menu-toggle__group .menu-toggle__nav:nth-child(5) {
    margin-top: 0;
  }
  .menu-toggle__nav ul li {
    margin-right: 20px;
    margin-bottom: 10px;
  }
  .menu-toggle__nav2 {
    margin-top: 40px;
  }
}
/*2023/10/12メニューに追加*/
.toggle_model_block {
  width: 100%;
  max-width: 904px;
  margin-bottom: 4rem;
}
.toggle_model_block > ul {
  display: flex;
  justify-content: space-between;
}
.toggle_model_block > ul > li {
  width: 48%;
}
.toggle_model_item {
  display: block;
  position: relative;
  z-index: 0;
}
.toggle_model_item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.toggle_model_item::after {
  content: "";
  display: block;
  width: 98%;
  height: 95%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.toggle_model_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.toggle_model_txt span {
  display: block;
  font-size: 1rem;
}
.toggle_model_txt {
  width: 75%;
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  margin-bottom: 0;
  transition: all 0.5s;
}
.toggle_model_item:hover .toggle_model_txt {
  color: #1a1a1a;
  background-color: #fff;
  transition: all 0.5s;
}
@media screen and (max-width: 576px){
    .toggle_model_block{
        margin-bottom: 2rem;
    }
    .toggle_model_txt span {
  font-size: 0.8rem;
}
    .toggle_model_txt{
        width: 90%;
        font-size: 1rem;
    }
}
