@charset "UTF-8";
/*============
header
=============*/
header {
  position: fixed;
  z-index: 3;
  width: 100%;
}

.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 86px;
}

.l-header_logo img {
  max-width: 376px;
  width: 100%;
  margin-left: 2.0625rem;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .l-header_logo img {
    max-width: 12rem;
  }
}
.l-header_logo img:hover {
  opacity: 0.6;
}

/* hamburger */
.hamburger {
  display: block;
  position: absolute;
  width: 90px;
  height: 25px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background-size: cover;
  cursor: pointer;
  z-index: 300;
}

.hamburger_line {
  position: absolute;
  right: 0;
  width: 90px;
  height: 1px;
  background: #D9D9D9;
  transition: all 0.6s;
}

.hamburger_line-1 {
  top: 0;
  width: 30px;
}

.hamburger_line-2 {
  top: 12px;
  width: 60px;
}

.hamburger_line-3 {
  bottom: 0;
  width: 90px;
}

.black-bg {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  cursor: pointer;
  background: #0A1108;
}

/* 表示された時用のCSS */
.nav-open .global__nav {
  display: flex;
  opacity: 1;
  visibility: visible;
}
.nav-open .hamburger_line-1 {
  transform: rotate(45deg);
  top: 22px;
  width: 45px;
  background: #FFF;
}
.nav-open .hamburger_line-2 {
  width: 0;
  right: 50%;
}
.nav-open .hamburger_line-3 {
  transform: rotate(-45deg);
  top: 22px;
  width: 45px;
  background: #FFF;
}

/* globalnav */
.global__nav {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  background: #302F2F;
  transition: all 0.6s;
  z-index: 200;
  overflow-y: auto;
  display: block;
}
@media screen and (max-width: 1024px) {
  .global__nav {
    background: #242424;
  }
}

.global_nav-left {
  position: relative;
  width: 57%;
  /*&:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .2;

    @include cf.mq(lg) {
      display: none;
    }
  }*/
}
@media screen and (max-width: 1024px) {
  .global_nav-left {
    width: 5rem;
    border-right: 1px solid #404040;
  }
}
.global_nav-left:before {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  left: 0;
  width: 105px;
  height: 102%;
  background: url(../img/common/gloval_logo.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .global_nav-left:before {
    top: 4px;
    width: 65px;
    height: 100%;
    background: url(../img/common/gloval_logo_sp.png) no-repeat;
    background-size: contain;
  }
}
.global_nav-left .is_text {
  position: absolute;
  top: 30px;
  right: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.25rem;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

.global_nav {
  width: 44%;
  padding: 86px 73px !important;
  background: #000000;
  overflow: scroll;
}
@media screen and (max-width: 1024px) {
  .global_nav {
    width: 100%;
    background: #242424;
  }
}
@media screen and (max-width: 1210px) {
  .global_nav {
    padding-top: 5.375rem !important;
    padding-right: 1.625rem !important;
    padding-bottom: 5.375rem !important;
    padding-left: 2rem !important;
  }
}
@media screen and (max-width: 1024px) {
  .global_nav {
    flex: 2;
  }
}
.global_nav li:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .global_nav li:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.global_nav li a {
  color: #808080;
  text-decoration: none;
  transition: 0.4s;
}
.global_nav li a:hover {
  color: #FFF;
}
.global_nav li a span:nth-of-type(1) {
  display: block;
  font-size: 32px;
  font-size: clamp(14px, 1.5vw, 16px);
}
@media screen and (max-width: 768px) {
  .global_nav li a span:nth-of-type(1) {
    font-size: 1rem;
  }
}
.global_nav li a span:nth-of-type(2) {
  font-weight: 200;
  font-size: clamp(10px, 2vw, 12px);
  font-size: 12px;
  font-family: "IBM Plex Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .global_nav li a span:nth-of-type(2) {
    font-size: 0.625rem;
  }
}

.global_nav-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: 65px;
  right: 47px;
  max-width: 395px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .global_nav-sub {
    flex-direction: column;
    left: 1.4375rem;
    right: inherit;
    bottom: 2rem;
    max-width: 15px;
  }
}
.global_nav-sub li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.4s;
}
.global_nav-sub li a:hover {
  opacity: 0.6;
}

.global_nav-sub .is_nav {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 15px;
}

.global_nav-sub .is_twitter a {
  content: "";
  display: block;
  width: 21px;
  height: 17px;
  background: url(../img/common/gloval_icon3.png);
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .global_nav-sub .is_twitter a {
    width: 14px;
    height: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .global_nav-sub .is_twitter {
    margin-bottom: 1.5rem;
  }
}

.global_nav-sub .is_line a {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url(../img/common/gloval_icon1.png);
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .global_nav-sub .is_line a {
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .global_nav-sub .is_line {
    margin-bottom: 1.5rem;
  }
}

.global_nav-sub .is_insta a {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url(../img/common/gloval_icon2.png);
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .global_nav-sub .is_insta a {
    width: 14px;
    height: 14px;
  }
}

/*============
footer
=============*/
footer {
  position: relative;
  min-width: 100%;
  margin-top: auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  footer {
    margin-bottom: 67px;
  }
}

.l-footer {
  position: relative;
  padding: 15px 0 56px;
  background: #262626;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-top: 1.25rem;
    padding-bottom: 5.5rem;
  }
}
.l-footer h2 {
  margin-bottom: 50px;
  padding-bottom: 20px;
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 300;
  letter-spacing: 0.02rem;
  border-bottom: 1px solid #383838;
}
.l-footer h2 a {
  text-decoration: none;
  color: #808080;
  transition: 0.4s;
}
.l-footer h2 a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .l-footer h2 {
    margin-bottom: 1rem;
    padding-bottom: 1.25rem;
    font-size: 0.8125rem;
  }
}

.l-footer__nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    margin-bottom: 6.125rem;
  }
}
.l-footer__nav .l-footer_nav li {
  transition: 0.4s;
}
.l-footer__nav .l-footer_nav li:not(:last-child) {
  margin-bottom: 1.125rem;
}
.l-footer__nav .l-footer_nav li a {
  color: #FFF;
  text-decoration: none;
}
.l-footer__nav .l-footer_nav li.nav-main span:nth-of-type(1) {
  font-family: "Oswald", sans-serif;
  font-size: 0.9375rem;
}
.l-footer__nav .l-footer_nav li.nav-main span:nth-of-type(2) {
  display: block;
  color: #808080;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav .l-footer_nav li.nav-main span:nth-of-type(2) {
    font-size: 0.75rem;
  }
}
.l-footer__nav .l-footer_nav li.nav-main:hover {
  opacity: 0.6;
}
.l-footer__nav .l-footer_nav li.nav-main.has-child {
  position: relative;
  padding-bottom: 1.25rem;
}
.l-footer__nav .l-footer_nav li.nav-main.has-child:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.375rem;
  height: 1px;
  background: #404040;
}
.l-footer__nav .l-footer_nav li.nav-sub {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav .l-footer_nav li.nav-sub {
    font-size: 0.75rem;
  }
}
.l-footer__nav .l-footer_nav li.nav-sub .is_wrap {
  position: relative;
  display: flex;
}
.l-footer__nav .l-footer_nav li.nav-sub .is_line:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  left: -10px;
  width: 5px;
  height: 1px;
  background: transparent;
  transition: 0.4s;
}
.l-footer__nav .l-footer_nav li.nav-sub .is_menu {
  transition: 0.4s;
}
.l-footer__nav .l-footer_nav li.nav-sub:hover {
  opacity: 0.6;
}
.l-footer__nav .l-footer_nav li.nav-sub:hover .is_flex {
  opacity: 0.6;
}
.l-footer__nav .l-footer_nav li.nav-sub:hover .is_line:before {
  background: #FFF;
}
.l-footer__nav .l-footer_nav li.nav-sub.is_news .is_menu {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.l-footer__nav .l-footer_nav li.nav-sub.is_news .is_flex {
  display: flex;
  align-items: center;
  color: #BFBFBF;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 100;
  font-size: 0.625rem;
  transition: 0.4s;
}
.l-footer__nav .l-footer_nav li.nav-sub.is_news .is_date:after {
  content: "/";
  margin: 0 3px;
}

.l-footer_nav-1 {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .l-footer_nav-1 {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.l-footer_nav-2 {
  width: clamp(115px, 11%, 115px);
}
@media screen and (max-width: 768px) {
  .l-footer_nav-2 {
    width: 100%;
    margin: 3rem 0 !important;
  }
}

.l-footer_nav-3 {
  width: clamp(102px, 10%, 102px);
}
@media screen and (max-width: 768px) {
  .l-footer_nav-3 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 18.4375rem;
    width: 100%;
    margin-bottom: 4rem;
  }
  .l-footer_nav-3 li {
    width: 48%;
  }
}

.l-footer_nav-4 {
  width: 21%;
}
@media screen and (max-width: 768px) {
  .l-footer_nav-4 {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.l-footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-footer_bottom {
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.125rem;
  }
}
.l-footer_bottom address {
  max-width: 373px;
  width: 41%;
  color: #8D8D8D;
  font-family: "IBM Plex Sans", sans-serif;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .l-footer_bottom address {
    width: 100%;
    margin-bottom: 2.375rem;
    text-align: center;
  }
}
.l-footer_bottom address .is_title {
  margin-bottom: 8px;
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .l-footer_bottom address .is_title {
    margin-bottom: 1rem;
    font-size: 0.75rem;
  }
}
.l-footer_bottom address .is_text {
  font-size: 12px;
  line-height: 2.25;
}
@media screen and (max-width: 768px) {
  .l-footer_bottom address .is_text {
    font-size: 0.6875rem;
  }
}

.l-footer_logo {
  max-width: 273px;
  width: 44%;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .l-footer_logo {
    max-width: 9.1875rem;
    width: 100%;
    margin-bottom: 1rem;
  }
}
.l-footer_logo:hover {
  opacity: 0.6;
}

.l-footer_sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 127px;
  width: 12%;
}
@media screen and (max-width: 768px) {
  .l-footer_sns {
    max-width: 147px;
    width: 100%;
  }
}
.l-footer_sns li a {
  display: block;
  transition: 0.4s;
}
.l-footer_sns li a:hover {
  opacity: 0.6;
}

.l-footer_sns-twitter a {
  display: block;
  width: 21px;
  height: 17px;
  background: url(../img/common/footer_icon3.png);
  background-size: cover;
}

.l-footer_sns-line a {
  display: block;
  width: 21px;
  height: 21px;
  background: url(../img/common/footer_icon1.png);
  background-size: cover;
}

.l-footer_sns-insta a {
  display: block;
  width: 21px;
  height: 21px;
  background: url(../img/common/footer_icon2.png);
  background-size: cover;
}

.copy {
  position: absolute;
  bottom: 82px;
  left: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .copy {
    position: inherit;
    bottom: inherit;
    left: inherit;
  }
}
.copy a {
  color: #8D8D8D;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 100;
  font-size: 10px;
  text-decoration: none;
  white-space: nowrap;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .copy a {
    writing-mode: inherit;
  }
}

/* floating */
.floating {
  position: fixed;
  display: flex;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(51, 51, 51, 0.9);
}
.floating a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 33.3333333333%;
  height: 67px;
  text-decoration: none;
  color: #FFF;
  font-size: 10px;
}
.floating a.is_store .is_icon {
  display: block;
  width: 23px;
  height: 24px;
  margin-bottom: 7px;
  background: url(../img/common/floating1.png) no-repeat center;
  background-size: cover;
}
.floating a.is_mail {
  position: relative;
}
.floating a.is_mail .is_icon {
  display: block;
  width: 24px;
  height: 19px;
  margin-bottom: 9px;
  background: url(../img/common/floating2.png) no-repeat center;
  background-size: cover;
}
.floating a.is_mail:before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}
.floating a.is_mail:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}
.floating a.is_line .is_icon {
  display: block;
  width: 27px;
  height: 25px;
  margin-bottom: 6px;
  background: url(../img/common/floating3.png) no-repeat center;
  background-size: cover;
}

/*============
common-contact
=============*/
.c-contact {
  margin-bottom: clamp(158px, 10vw, 200px);
}
@media screen and (max-width: 768px) {
  .c-contact {
    margin-bottom: 9.875rem;
  }
}

.c-contact_bg {
  position: relative;
  padding: 150px 0;
  background: #808080;
  margin-right: 5%;
}
@media screen and (max-width: 1024px) {
  .c-contact_bg {
    padding-top: 4.375rem;
    margin-right: 0;
    padding-bottom: 14.375rem;
    background: #808080;
  }
}
.c-contact_bg .content {
  position: relative;
  max-width: 400px;
  color: #FFF;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .c-contact_bg .content {
    margin: 0 auto;
  }
}
.c-contact_bg .content h2 {
  margin-bottom: clamp(55px, 6vw, 70px);
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .c-contact_bg .content h2 {
    display: flex;
    align-items: baseline;
    margin-bottom: 3.4375rem;
  }
}
.c-contact_bg .content h2 span:nth-of-type(1) {
  display: block;
  font-size: clamp(10px, 2vw, 13px);
  font-weight: 300;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 1024px) {
  .c-contact_bg .content h2 span:nth-of-type(1) {
    order: 2;
    margin-left: 0.875rem;
  }
}
.c-contact_bg .content h2 span:nth-of-type(2) {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(39px, 6vw, 69px);
  font-weight: 100;
  letter-spacing: 0.16rem;
}
@media screen and (max-width: 1024px) {
  .c-contact_bg .content h2 span:nth-of-type(2) {
    order: 1;
    font-size: 2.4375rem;
  }
}
.c-contact_bg .content .textarea p {
  font-size: clamp(12px, 2vw, 16px);
  letter-spacing: 0.08rem;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .c-contact_bg .content .textarea p {
    font-size: 0.75rem;
  }
}
.c-contact_bg .content .textarea p span {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .c-contact_bg .content .textarea p span {
    font-size: 0.625rem;
  }
}

.c-contact_items {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 642px;
  width: 100%;
  height: 373px;
  background: #6C6C6C;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.16);
  transition: 0.4s;
}
.c-contact_items:hover {
  box-shadow: unset;
}
@media screen and (max-width: 1024px) {
  .c-contact_items {
    right: inherit;
    left: 50%;
    top: inherit;
    transform: translateX(-50%);
    bottom: -60px;
    width: 90%;
    height: 206px;
  }
}
.c-contact_items a {
  display: block;
  height: 373px;
  text-decoration: none;
  color: #FFF;
}
@media screen and (max-width: 1024px) {
  .c-contact_items a {
    height: 206px;
  }
  .c-contact_items a:after {
    content: "";
    position: absolute;
    display: inline-block;
    bottom: 20px;
    left: 48%;
    width: 18px;
    height: 18px;
    border-bottom: 1px solid #FFF;
    border-right: 1px solid #FFF;
    transform: rotate(45deg);
  }
}
.c-contact_items a:hover figure:after {
  right: 12px;
}
.c-contact_items a:hover p:before {
  width: 336px;
}
@media screen and (max-width: 1024px) {
  .c-contact_items a:hover p:before {
    width: 1px;
  }
}
.c-contact_items figure img {
  position: absolute;
  right: 53px;
  top: 50%;
  transform: translateY(-50%);
  width: 37px;
}
.c-contact_items figure:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
  width: 18px;
  height: 18px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
  transition: 0.4s;
}
.c-contact_items p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(18px, 2vw, 22px);
}
@media screen and (max-width: 1024px) {
  .c-contact_items p {
    top: 59%;
    text-align: center;
    font-size: 1.125rem;
  }
  .c-contact_items p span {
    margin-top: 1.25rem;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
  }
}
.c-contact_items p:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 195px;
  width: 372px;
  height: 1px;
  background: #FFF;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .c-contact_items p:before {
    top: -95px;
    transform: inherit;
    right: 50%;
    width: 1px;
    height: 98px;
  }
}

/*============
c-other
=============*/
.c-other_lists {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .c-other_lists {
    margin-bottom: 86px !important;
  }
}
.c-other_lists li {
  width: 25%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .c-other_lists li {
    width: 50%;
  }
}
.c-other_lists li a {
  color: #FFF;
  text-decoration: none;
}
.c-other_lists li:hover img {
  transform: scale(1.1);
  transition-duration: 0.5s;
}
.c-other_lists li .is_wrap {
  position: relative;
  overflow: hidden;
}
.c-other_lists li .is_wrap img {
  width: 100%;
  transition-duration: 0.5s;
}
@media screen and (max-width: 370px) {
  .c-other_lists li .is_wrap img {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.c-other_lists li .content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-other_lists li .content p {
  text-align: center;
}
.c-other_lists li .content p span:nth-of-type(1) {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(10px, 2vw, 18px);
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .c-other_lists li .content p span:nth-of-type(1) {
    margin-bottom: 15px;
  }
}
.c-other_lists li .content p span:nth-of-type(2) {
  font-size: clamp(16px, 2vw, 27px);
  font-weight: 400;
}

/*============
c-box
=============*/
.c-box_content {
  max-width: 1920px;
  margin: 0 auto;
  padding-right: 55px;
  padding-left: 55px;
}
@media screen and (max-width: 768px) {
  .c-box_content {
    padding-right: 0;
    padding-left: 0;
  }
}

.c-box {
  position: relative;
  max-width: 1548px;
  width: 100%;
  margin-left: auto;
  padding-right: 1.75rem;
  padding-left: 1.75rem;
  background: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .c-box {
    background: rgba(255, 255, 255, 0.8);
  }
}
.c-box .inner {
  max-width: 1362px;
  margin: 0 auto;
}

.c-box_heading {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .c-box_heading {
    flex-direction: column;
    align-items: baseline;
    margin-bottom: 1rem;
  }
}
.c-box_heading .is_en {
  margin-right: 12px;
  font-size: 30px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-box_heading .is_en {
    margin-right: 0;
    font-size: 2.1875rem;
  }
}
.c-box_heading .is_jp {
  color: #808080;
  font-size: 13px;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .c-box_heading .is_jp {
    font-size: 0.75rem;
  }
}

/*============
c-flow
=============*/
.c-flow {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .c-flow {
    flex-direction: column;
  }
}
.c-flow .is_heading {
  max-width: 260px;
  width: 24%;
  padding-top: 140px;
  padding-bottom: 138px;
}
@media screen and (max-width: 768px) {
  .c-flow .is_heading {
    max-width: 100%;
    width: 100%;
    margin-top: 5rem;
    margin-bottom: 4rem;
    padding: 0;
  }
}
.c-flow .is_heading p {
  font-size: 15px;
  line-height: 2.13;
  letter-spacing: 0.14rem;
}
@media screen and (max-width: 768px) {
  .c-flow .is_heading p {
    font-size: 0.875rem;
  }
}

.c-flow_heading {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .c-flow_heading {
    flex-direction: column;
    align-items: baseline;
    margin-bottom: 1rem;
  }
}
.c-flow_heading .is_en {
  margin-right: 12px;
  font-size: 30px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-flow_heading .is_en {
    margin-right: 0;
    font-size: 2.1875rem;
  }
}
.c-flow_heading .is_jp {
  color: #808080;
  font-size: 13px;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .c-flow_heading .is_jp {
    font-size: 0.75rem;
  }
}

.c-flow_items {
  position: relative;
  max-width: 740px;
  width: 68%;
  padding-top: 140px;
  padding-bottom: 138px;
}
@media screen and (max-width: 768px) {
  .c-flow_items {
    width: 100%;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}
.c-flow_items .is_line {
  position: absolute;
  top: 0;
  left: 73px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .c-flow_items .is_line {
    left: 3.25rem;
  }
}
.c-flow_items .is_line:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  border-left: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .c-flow_items .is_line:before {
    border-left: 1px solid #262626;
  }
}
.c-flow_items .is_line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  border-left: 1px solid #262626;
}
@media screen and (max-width: 768px) {
  .c-flow_items .is_line:after {
    display: none;
  }
}
.c-flow_items dl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.c-flow_items dl:not(:last-child) {
  margin-bottom: 32px;
}
.c-flow_items dl dt {
  max-width: 73px;
  width: 10%;
  font-size: 41px;
  font-weight: 400;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-flow_items dl dt {
    max-width: 52px;
    width: 100%;
    font-size: 1.9375rem;
  }
}
.c-flow_items dl dd {
  max-width: 628px;
  width: 85%;
}
.c-flow_items dl dd a {
  text-decoration: none;
  color: #262626;
  transition: 0.4s;
}
.c-flow_items dl dd a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .c-flow_items dl dd {
    width: 77%;
  }
}
@media screen and (max-width: 768px) {
  .c-flow_items dl dd {
    width: 100%;
    margin-left: 24px;
  }
}
.c-flow_items dl dd .is_title {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 768px) {
  .c-flow_items dl dd .is_title {
    font-size: 0.9375rem;
  }
}
.c-flow_items dl dd .is_text {
  line-height: 2.3;
}
@media screen and (max-width: 768px) {
  .c-flow_items dl dd .is_text {
    font-size: 0.875rem;
  }
}
.c-flow_items dl dd .is_small {
  margin-top: 1.5rem;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .c-flow_items dl dd .is_small {
    font-size: 0.8125rem;
  }
}
.c-flow_items dl dd .lists {
  margin-top: 32px !important;
}
.c-flow_items dl dd .lists li {
  font-size: 15px;
  line-height: 2.13;
}
@media screen and (max-width: 768px) {
  .c-flow_items dl dd .lists li {
    font-size: 0.8125rem;
  }
}
.c-flow_items dl dd .lists li:not(:last-child) {
  margin-bottom: 16px;
}

/*============
c-price
=============*/
@media screen and (max-width: 768px) {
  .c-price .page-heading {
    margin-bottom: 0.75rem;
  }
}
.c-price .is_tax {
  margin-bottom: 0.5rem;
  text-align: right;
  color: #808080;
  font-size: 0.8125rem;
}

.c-price_items {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .c-price_items {
    flex-direction: column;
  }
}
.c-price_items dl {
    width: 45%;
    margin-bottom: 3em;
}
@media screen and (max-width: 768px) {
  .c-price_items dl {
    width: 100%;
    padding-bottom: 2rem;
    border-bottom: 1px solid #D9D9D9;
  }
  .c-price_items dl:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.c-price_items dl dt {
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-price_items dl dt {
    margin-bottom: 0.875rem;
    font-size: 0.875rem;
  }
}

.c-price_items_lists li {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .c-price_items_lists li {
    font-size: 0.875rem;
  }
}
.c-price_items_lists li:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .c-price_items_lists li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.c-price_items_lists li p:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .c-price_items_lists li p:not(:last-child) {
    margin-bottom: 2rem;
  }
}

.c-price_items_pkg {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -2rem !important;
}
@media screen and (max-width: 768px) {
  .c-price_items_pkg {
    flex-direction: column;
    padding-bottom: 2rem !important;
    border-bottom: 1px solid #D9D9D9;
  }
}
.c-price_items_pkg li {
  margin-right: 40px;
  font-size: 15px;
}
.c-price_items_pkg li:not(:last-child) {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c-price_items_pkg li {
    font-size: 0.875rem;
  }
}

.c-price_items_other_lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: -40px !important;
}
.c-price_items_other_lists li {
  width: 48%;
  margin-bottom: 40px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .c-price_items_other_lists li {
    width: 100%;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #D9D9D9;
  }
}
.c-price_items_other_lists li .is_name {
  margin-bottom: 0.625rem;
  font-weight: bold;
}

.c-price_option_lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-price_option_lists {
    padding-bottom: 2rem !important;
    border-bottom: 1px solid #D9D9D9;
  }
}
.c-price_option_lists li {
  width: 48%;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .c-price_option_lists li {
    width: 100%;
    font-size: 0.875rem;
  }
  .c-price_option_lists li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.c-price_option_lists li:not(:last-child) {
  margin-bottom: 24px;
}

/*============
tpl-other
=============*/
.tpl-other_contents {
  margin-top: 207px;
}
@media screen and (max-width: 768px) {
  .tpl-other_contents {
    margin-top: 0.9375rem;
  }
  .tpl-other_contents .c-heading {
    align-items: center;
  }
}

.tpl-other_content {
  position: relative;
  top: -60px;
  margin-bottom: -60px;
  background: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .tpl-other_content {
    top: -90px;
    margin-bottom: -90px;
  }
}

.tpl-other_fv {
  position: absolute;
  top: 140px;
  right: 0;
  max-width: 987px;
  width: 48%;
}
@media screen and (max-width: 768px) {
  .tpl-other_fv {
    position: relative;
    top: 0;
    width: 100%;
  }
}
.tpl-other_fv img {
  position: relative;
  width: 100%;
  height: 537px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .tpl-other_fv img {
    height: 32.0625rem;
  }
}

/* lead */
.tpl-other_lead {
  margin-bottom: 100px;
  padding-top: 130px;
}
@media screen and (max-width: 768px) {
  .tpl-other_lead {
    margin-bottom: 5rem;
    padding-top: 4.75rem;
  }
}

.tpl-other_lead_items {
  max-width: 480px;
  width: 44%;
}
@media screen and (max-width: 768px) {
  .tpl-other_lead_items {
    max-width: 100%;
    width: 100%;
  }
}
.tpl-other_lead_items h2 {
  margin-bottom: 64px;
  font-size: 32px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .tpl-other_lead_items h2 {
    margin-top: -0.625rem;
    margin-bottom: 2rem;
    font-size: 1.375rem;
    line-height: 1.81;
  }
}
.tpl-other_lead_items .is_title {
  margin-bottom: 29px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.029rem;
}
@media screen and (max-width: 768px) {
  .tpl-other_lead_items .is_title {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
  }
}

.tpl-other_items_textarea p {
  font-size: 15px;
  letter-spacing: 0.029rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .tpl-other_items_textarea p {
    font-size: 0.8125rem;
  }
}
.tpl-other_items_textarea p:not(:last-child) {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .tpl-other_items_textarea p:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.tpl-other_items_textarea .is_note {
  display: block;
  margin-top: 1.5rem;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .tpl-other_items_textarea .is_note {
    font-size: 0.8125rem;
  }
}

/* itmes */
.tpl-other_itms {
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .tpl-other_itms {
    padding-bottom: 2.5rem;
  }
  .tpl-other_itms:last-child {
    padding-bottom: 12.5rem;
  }
}

/* box */
.tpl-other_box_image img {
  width: 100%;
}

.tpl-other_box {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .tpl-other_box {
    margin-bottom: 3rem;
  }
  .tpl-other_box .c-box_content {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
.tpl-other_box .c-box {
  margin-top: -60px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .tpl-other_box .c-box {
    margin-top: -2.1875rem;
    padding: 2.5rem;
    background: #FFF;
  }
}

.tpl-other_box_items .c-box_heading {
  position: relative;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .tpl-other_box_items .c-box_heading {
    margin-bottom: 2.5rem;
  }
  .tpl-other_box_items .c-box_heading .is_en {
    font-size: 1.5rem;
  }
  .tpl-other_box_items .c-box_heading .is_jp {
    font-size: 0.75rem;
  }
}
.tpl-other_box_items .c-box_heading:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -24px;
  left: 0;
  width: 23px;
  height: 1px;
  background: #262626;
}
@media screen and (max-width: 768px) {
  .tpl-other_box_items .c-box_heading:after {
    bottom: -1rem;
  }
}
.tpl-other_box_items .is_title {
  margin-bottom: 32px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.064rem;
}
@media screen and (max-width: 768px) {
  .tpl-other_box_items .is_title {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
  }
}
.tpl-other_box_items .is_textarea p {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .tpl-other_box_items .is_textarea p {
    font-size: 0.875rem;
  }
  .tpl-other_box_items .is_textarea p:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.tpl-other_box_items .is_textarea p:not(:last-child) {
  margin-bottom: 40px;
}

.tpl-other_price_div {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .tpl-other_price_div {
    margin-bottom: 5rem;
  }
}

.tpl-other_price .c-price_option_lists {
  border-bottom: none;
}

/*============
common
=============*/
@media screen and (max-width: 370px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  position: relative;
  color: #262626;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}

.wrap {
  position: relative;
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

main {
  position: relative;
  overflow: hidden;
}

.grecaptcha-badge {
  visibility: hidden;
}

.l-inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1210px) {
  .l-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  ._pc {
    display: none;
  }
}

._tb {
  display: none;
}
@media screen and (max-width: 1024px) {
  ._tb {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  ._pc-tb {
    display: none;
  }
}

._sp {
  display: none;
}
@media screen and (max-width: 768px) {
  ._sp {
    display: block;
  }
}

/* 見出し */
.c-heading_wrap {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 1;
}

.c-heading {
  display: flex;
  align-items: flex-end;
  height: 180px;
  margin-left: 46px;
}
@media screen and (max-width: 768px) {
  .c-heading {
    height: 8.25rem;
    margin-left: 0.875rem;
  }
}
.c-heading .is_vertical {
  position: relative;
  height: 100%;
  margin-right: 46px;
  color: #A5A5A5;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  font-weight: 100;
  white-space: nowrap;
  writing-mode: vertical-rl;
  letter-spacing: 0.135rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-heading .is_vertical {
    margin-right: 2rem;
    font-size: 1rem;
  }
}
.c-heading .is_vertical:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  right: -16px;
  width: 1px;
  height: 180px;
  background: #D9D9D9;
}
@media screen and (max-width: 768px) {
  .c-heading .is_vertical:after {
    right: -0.625rem;
    height: 8.25rem;
  }
}
.c-heading .is_en {
  font-size: 57px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-heading .is_en {
    font-size: 2.25rem;
    line-height: 1;
  }
}
.c-heading .is_jp {
  display: block;
  color: #808080;
  font-size: 0.8125rem;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .c-heading .is_jp {
    margin-bottom: 1.375rem;
  }
}

/* page */
.page-heading {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-heading {
    flex-direction: column;
    align-items: baseline;
  }
}
.page-heading .is_en {
  margin-right: 12px;
  font-size: 30px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .page-heading .is_en {
    margin-right: 0;
    font-size: 2.1875rem;
  }
}
.page-heading .is_jp {
  color: #808080;
  font-size: 13px;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .page-heading .is_jp {
    font-size: 0.75rem;
  }
}

/*============
top
=============*/
.top-fv {
  position: relative;
  height: 100vh;
}

.fv_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #FFF;
  text-align: center;
  line-height: 1.1;
}
.fv_content h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(38px, 6vw, 130px);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .fv_content h2 {
    font-size: 2.375rem;
  }
}
.fv_content .is_text {
  position: relative;
  top: -80px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(13px, 2vw, 45px);
}
@media screen and (max-width: 768px) {
  .fv_content .is_text {
    top: -2.5rem;
    font-size: 0.8125rem;
  }
}

.fv_logo {
  max-width: 622px;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .fv_logo {
    max-width: 16.75rem;
    width: 100%;
  }
}

.top-fv_image {
  overflow: hidden;
}
.top-fv_image img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: animationzoom 11s ease-in-out backwards;
          animation: animationzoom 11s ease-in-out backwards;
}

@-webkit-keyframes animationzoom {
  0% {
    opacity: 0;
    transform: scale(1.4, 1.4);
  }
  1% {
    opacity: 1;
    transform: scale(1.4, 1.4);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes animationzoom {
  0% {
    opacity: 0;
    transform: scale(1.4, 1.4);
  }
  1% {
    opacity: 1;
    transform: scale(1.4, 1.4);
  }
  100% {
    transform: scale(1, 1);
  }
}
.top-fv_sns {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  top: 189px;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-fv_sns {
    display: none;
  }
}
.top-fv_sns li {
  background: rgba(255, 255, 255, 0.8);
  border: solid 1px #FFF;
}
.top-fv_sns li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: #262626;
  text-decoration: none;
  transition: 0.2s;
}
.top-fv_sns li .is_text {
  opacity: 0;
  width: 0;
  white-space: nowrap;
  transition: 0.1s;
}
.top-fv_sns li:hover a {
  width: 165px;
}
.top-fv_sns li:hover .is_text {
  opacity: 1;
}
.top-fv_sns li:not(:last-child) {
  margin-bottom: 8px;
}
.top-fv_sns li.is_store a .is_icon:before {
  content: "";
  display: inline-block;
  width: 23px;
  height: 24px;
  background: url(../img/common/fv_icon1.png);
  background-size: cover;
  vertical-align: middle;
}
.top-fv_sns li.is_store:hover .is_text {
  width: auto;
  margin-left: 6px;
}
.top-fv_sns li.is_contact a .is_icon:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 19px;
  background: url(../img/common/fv_icon2.png);
  background-size: cover;
  vertical-align: middle;
}
.top-fv_sns li.is_contact:hover .is_text {
  width: auto;
  margin-left: 8px;
}
.top-fv_sns li.is_line a .is_icon:before {
  content: "";
  display: inline-block;
  width: 27px;
  height: 25px;
  background: url(../img/common/fv_icon3.png);
  background-size: cover;
  vertical-align: middle;
}
.top-fv_sns li.is_line:hover .is_text {
  width: auto;
  margin-left: 8px;
}

.is_scroll {
  position: absolute;
  bottom: 160px;
  right: 42px;
}
@media screen and (max-width: 768px) {
  .is_scroll {
    bottom: 172px;
    right: 23px;
  }
}
.is_scroll img {
  width: 13px;
}
.is_scroll span:after {
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  width: 1px;
  height: 72px;
  margin: 25px 0 0 6px;
  background: #FFF;
  -webkit-animation: scroll 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: scroll 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* お知らせ */
.top-news {
  position: relative;
  top: -34px;
  max-width: 830px;
  width: 97%;
  margin-bottom: -71px;
  background: #FFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.top-news_box {
  display: flex;
  align-items: center;
  font-family: "IBM Plex Sans", sans-serif;
  padding: 22px 24px 22px 40px;
}
@media screen and (max-width: 768px) {
  .top-news_box {
    padding-top: 0.6875rem;
    padding-right: 0.625rem;
    padding-bottom: 0.6875rem;
    padding-left: 0.8125rem;
  }
}
.top-news_box dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 697px;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .top-news_box dl {
    max-width: 17.6875rem;
    width: 80%;
    flex: 2;
  }
}
.top-news_box dl dt {
  position: relative;
  width: 72px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .top-news_box dl dt {
    width: 2.4375rem;
    margin-right: 0.3125rem;
    font-size: 0.625rem;
  }
}
.top-news_box dl dt:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 29px;
  background: #D9D9D9;
}
.top-news_box dl dd {
  max-width: 589px;
  width: 86%;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 768px) {
  .top-news_box dl dd {
    max-width: 100%;
    width: 82%;
  }
}
.top-news_box dl dd a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: 0.4s;
}
.top-news_box dl dd a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .top-news_box dl dd a {
    flex-direction: column;
    align-items: baseline;
  }
}
.top-news_box dl dd .is_date {
  color: #808080;
  margin-right: 23px;
  font-size: 14px;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .top-news_box dl dd .is_date {
    margin-bottom: 0.1875rem;
    font-size: 0.625rem;
  }
}
.top-news_box dl dd .is_title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #404040;
  flex: 2;
  letter-spacing: 0.016rem;
}
@media screen and (max-width: 768px) {
  .top-news_box dl dd .is_title {
    font-size: 0.625rem;
  }
}
.top-news_box dl dd .top-news_lists {
  overflow: hidden;
}
.top-news_box .news-arrows {
  position: relative;
  max-width: 65px;
  width: 10%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .top-news_box .news-arrows {
    width: 20%;
  }
}
.top-news_box .news-arrows .slick-prev {
  left: 0 !important;
  width: 30px;
  height: 30px;
}
.top-news_box .news-arrows .slick-prev:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/top/news_arrow1.png);
  background-size: cover;
  z-index: 1;
  opacity: 1 !important;
  transition: 0.4s;
}
.top-news_box .news-arrows .slick-prev:hover:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/top/news_arrow1_hover.png);
  background-size: cover;
  z-index: 1;
  opacity: 1 !important;
}
.top-news_box .news-arrows .slick-next {
  right: 0 !important;
  width: 30px;
  height: 30px;
}
.top-news_box .news-arrows .slick-next:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/top/news_arrow2.png);
  background-size: cover;
  z-index: 1;
  opacity: 1 !important;
  transition: 0.4s;
}
.top-news_box .news-arrows .slick-next:hover:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../img/top/news_arrow2_hover.png);
  background-size: cover;
  z-index: 1;
  opacity: 1 !important;
}

/* 3Dバーチャル見学 */
.top-virtual {
  position: relative;
  padding: 160px 0 372px;
  background: url(../img/top/virtual_bg.png);
  background-size: cover;
}
.top-virtual:before {
  content: "Rental  / Self photo / Kitchen / Cosplay / Live streaming";
  display: block;
  position: absolute;
  top: 236px;
  left: 39px;
  line-height: 1;
  color: #808080;
  font-size: 1.125rem;
  font-family: "IBM Plex Sans", sans-serif;
  white-space: nowrap;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1024px) {
  .top-virtual:before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .top-virtual {
    padding-top: 5rem;
    padding-bottom: 7.5rem;
    background: url(../img/top/virtual_bg_sp.png);
    background-size: cover;
  }
}
.top-virtual h2 {
  margin-bottom: clamp(40px, 6vw, 120px);
  text-align: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(35px, 6vw, 126px);
  font-weight: 100;
}
@media screen and (max-width: 768px) {
  .top-virtual h2 {
    margin-bottom: 2.5rem;
    font-size: 2.1875rem;
  }
}

.top-virtual_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1043px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .top-virtual_items {
    flex-direction: column;
  }
}

.top-virtualItems_3d iframe {
  max-width: 453px;
  height: 256px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .top-virtualItems_3d iframe {
    width: 100%;
    height: initial;
    aspect-ratio: 16/9;
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.top-virtualItems_text {
  max-width: 550px;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 768px) {
  .top-virtualItems_text {
    max-width: 300px;
  }
}
.top-virtualItems_text h3 {
  margin-bottom: 3rem;
  font-size: 1.4375rem;
  font-weight: 300;
}
.top-virtualItems_text p {
  font-size: clamp(13px, 2vw, 17px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .top-virtualItems_text p {
    font-size: 0.8125rem;
  }
}

/* about */
.top-about {
  position: relative;
  margin-bottom: 260px;
}
@media screen and (max-width: 768px) {
  .top-about {
    margin-bottom: 10rem;
  }
}
.top-about h2 {
  position: relative;
  top: -55px;
  margin-bottom: -55px;
  text-align: right;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(48px, 6vw, 100px);
  font-weight: 100;
  line-height: 1.05;
}
.top-about h2 span:nth-of-type(2) {
  display: block;
}
@media screen and (max-width: 768px) {
  .top-about h2 {
    top: -4.25rem;
    right: -40px;
    max-width: 255px;
    margin-bottom: -4.25rem;
    margin-left: auto;
    text-align: left;
    font-size: 3rem;
  }
  .top-about h2 span:nth-of-type(2) {
    text-align: right;
  }
}

.top-about_image {
  position: relative;
  top: -213px;
  max-width: 1920px;
  margin: 0 auto -213px;
}
@media screen and (max-width: 768px) {
  .top-about_image {
    top: -42px;
    margin-bottom: -42px;
  }
}
.top-about_image img {
  max-width: 1510px;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 1540px) {
  .top-about_image img {
    margin-left: 40px;
  }
}
.top-about_image:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 529px;
  height: 527px;
  background: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .top-about_image:after {
    right: inherit;
    left: 0;
    width: 113px;
    height: 404px;
  }
}

.top-about_items {
  position: relative;
  top: -50px;
  max-width: 550px;
}
@media screen and (max-width: 1024px) {
  .top-about_items {
    top: 0;
    margin-top: 1rem;
  }
}
.top-about_items h3 {
  position: relative;
  margin-bottom: clamp(38px, 2vw, 60px);
  color: #808080;
  font-size: clamp(13px, 2vw, 14px);
  font-weight: 300;
  letter-spacing: 0.024rem;
}
@media screen and (max-width: 768px) {
  .top-about_items h3 {
    margin-bottom: 2.375rem;
    font-size: 0.8125rem;
  }
}
.top-about_items h3:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 22px;
  height: 1px;
  background: #262626;
}
.top-about_items h4 {
  margin-bottom: clamp(40px, 2vw, 48px);
  color: #404040;
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 300;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 768px) {
  .top-about_items h4 {
    margin-bottom: 2.5rem;
    white-space: pre-line;
    font-size: 1.0625rem;
  }
}
.top-about_items p {
  font-size: clamp(13px, 2vw, 17px);
  letter-spacing: 0.08rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .top-about_items p {
    font-size: 0.8125rem;
  }
}

/* service */
.top-service {
  margin-bottom: clamp(80px, 9vw, 160px);
}
@media screen and (max-width: 768px) {
  .top-service {
    margin-bottom: 5rem;
  }
}

.top-service_lists {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .top-service_lists {
    flex-direction: column;
  }
}

.top-service_list {
  position: relative;
  /*width: calc(100% / 3);*/
  width: 50%;
  min-height: 44.46vw;
  max-height: 858px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-service_list {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .top-service_list {
    height: 15rem;
  }
}
.top-service_list a {
  color: #FFF;
  text-decoration: none;
}

.top-service_list:hover .top-service_list-arrow {
  right: 18px;
}
@media screen and (max-width: 1024px) {
  .top-service_list:hover .top-service_list-arrow {
    right: 16px;
  }
}
.top-service_list:hover .top-service_list-image img {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .top-service_list:hover .top-service_list-image img {
    opacity: 1;
  }
}

.top-service_list-contents {
  position: absolute;
  width: 100%;
  bottom: 69px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .top-service_list-contents {
    bottom: 27px;
  }
}

.top-service_list-arrow {
  display: inline-block;
  position: absolute;
  bottom: -40px;
  right: 28px;
  width: 18px;
  height: 18px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .top-service_list-arrow {
    right: 16px;
    bottom: 0;
  }
}

.top-service_list-content {
  max-width: 486px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1540px) {
  .top-service_list-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-service_list-content {
    max-width: 100%;
  }
}

.top-service_list-title span:nth-of-type(1) {
  display: block;
  margin-bottom: clamp(5px, 2vw, 23px);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(12px, 2vw, 18px);
  font-weight: 100;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 768px) {
  .top-service_list-title span:nth-of-type(1) {
    margin-bottom: 0.3125rem;
    font-size: 0.75rem;
  }
}
.top-service_list-title span:nth-of-type(2) {
  display: block;
  margin-bottom: clamp(21px, 2vw, 23px);
  font-size: clamp(16px, 2vw, 27px);
}
@media screen and (max-width: 768px) {
  .top-service_list-title span:nth-of-type(2) {
    margin-bottom: 1.3125rem;
    font-size: 1rem;
  }
}

.top-service_list-text {
  font-size: clamp(12px, 2vw, 16px);
  letter-spacing: 0.08rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .top-service_list-text {
    font-size: 0.75rem;
  }
}

.top-service_list img {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease-in-out;
}

/* contact */
.top_page .common-contact {
  margin-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .top_page .common-contact {
    margin-bottom: 8.625rem;
  }
}

/*============
privacy
=============*/
.privacy_page {
  margin-top: 233px;
}
@media screen and (max-width: 1210px) {
  .privacy_page .l-inner {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .privacy_page {
    margin-top: 5.375rem;
  }
}
.privacy_page .privacy-content a {
  display: block;
  color: #808080;
  letter-spacing: 0.04;
  transition: 0.4s;
}
.privacy_page .privacy-content a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .privacy_page .privacy-content a {
    font-size: 0.75rem;
  }
}
.privacy_page .privacy-content a:not(:last-child) {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .privacy_page .privacy-content a:not(:last-child) {
    margin-bottom: 0.6875rem;
  }
}

.privacy-contents {
  position: relative;
  top: -55px;
  margin-bottom: -55px;
  padding-top: 160px;
  padding-bottom: 200px;
  background: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .privacy-contents {
    padding-top: 7.75rem;
    padding-bottom: 6.25rem;
  }
}

.privacy-content {
  margin-bottom: 40px;
  padding-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .privacy-content {
    margin-bottom: 2rem;
    padding-bottom: 2.5rem;
  }
}
.privacy-content:not(:first-child) {
  padding-left: 20px;
  padding-right: 20px;
  border-bottom: solid 1px #D9D9D9;
}
@media screen and (max-width: 768px) {
  .privacy-content:not(:first-child) {
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.privacy-content:first-child {
  padding-bottom: 0;
}
.privacy-content:first-child p {
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .privacy-content:first-child p {
    font-size: 0.9375rem;
  }
}
.privacy-content:nth-of-type(2) {
  padding-top: 56px;
  border-top: solid 1px #D9D9D9;
}
@media screen and (max-width: 768px) {
  .privacy-content:nth-of-type(2) {
    padding-top: 2.5rem;
  }
}
.privacy-content:last-child {
  margin-bottom: 0;
}
.privacy-content h2 {
  margin-bottom: 40px;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .privacy-content h2 {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
}
.privacy-content p {
  line-height: 2;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 768px) {
  .privacy-content p {
    font-size: 0.875rem;
  }
}
.privacy-content p:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .privacy-content p:not(:last-child) {
    margin-bottom: 2.1875rem;
  }
}

/*============
term
=============*/
.term_page {
  margin-top: 115px;
}
@media screen and (max-width: 1210px) {
  .term_page .l-inner {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .term_page {
    margin-top: 5.375rem;
  }
}

.term_page .privacy-content a {
  color: #262626;
  transition: 0.4s;
}
.term_page .privacy-content a:hover {
  opacity: 0.6;
}

/*============
contact
=============*/
.contact_page {
  margin-top: 115px;
  margin-bottom: 200px;
}
@media screen and (max-width: 1210px) {
  .contact_page .l-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .contact_page {
    margin-top: 5.375rem;
    margin-bottom: 12.5rem;
  }
}
.contact_page .sent table,
.contact_page .sent .contact-form_button {
  display: none;
}

.contact-contents {
  position: relative;
  top: -57px;
  max-width: 1920px;
  margin-right: auto;
  margin-bottom: -57px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .contact-contents {
    display: flex;
    flex-direction: column;
  }
}

.contact-content_left {
  position: relative;
  max-width: 765px;
  width: 44%;
  padding-top: 170px;
  padding-bottom: 417px;
  background: #FAFAFA;
}
@media screen and (max-width: 1024px) {
  .contact-content_left {
    order: 1;
    width: 100%;
    max-width: 100%;
    padding-top: 8.125rem;
    padding-bottom: 5rem;
  }
}
.contact-content_left:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -756px;
  top: 0;
  height: 100%;
  width: 100%;
  background: #FAFAFA;
  z-index: -1;
}
.contact-content_left .inner {
  padding-left: 113px;
  padding-right: 53px;
}
@media screen and (max-width: 1210px) {
  .contact-content_left .inner {
    padding-left: 53px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-content_left .inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.contact-content_left_text {
  margin-bottom: 184px;
  line-height: 2.5;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 1024px) {
  .contact-content_left_text {
    margin-bottom: 2.5rem;
  }
}
.contact-content_left_text span {
  font-size: 0.75rem;
}

.contact-content_left_box {
  padding-top: 93px;
  padding-right: 50px;
  padding-bottom: 115px;
  padding-left: 50px;
  border: solid 1px #D9D9D9;
}
@media screen and (max-width: 1210px) {
  .contact-content_left_box {
    padding-top: 1.625rem;
    padding-right: 1.0625rem;
    padding-bottom: 3.125rem;
    padding-left: 1.0625rem;
  }
}
@media screen and (max-width: 1024px) {
  .contact-content_left_box {
    padding-right: 25px;
    padding-left: 25px;
  }
}
.contact-content_left_box h2 {
  position: relative;
  margin-bottom: 3.125rem;
  font-size: 1rem;
  font-weight: 300;
}
.contact-content_left_box h2:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 24px;
  height: 1px;
  background: #212529;
}
.contact-content_left_box .is_title {
  margin-bottom: 0.625rem;
  font-size: 0.75rem;
}
.contact-content_left_box a {
  display: block;
  margin-bottom: 0.75rem;
  color: #262626;
  text-decoration: none;
  transition: 0.4s;
}
.contact-content_left_box a:hover {
  opacity: 0.6;
}
.contact-content_left_box a span:nth-of-type(1) {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .contact-content_left_box a span:nth-of-type(1) {
    font-size: 0.8125rem;
  }
}
.contact-content_left_box a span:nth-of-type(2) {
  font-size: 2rem;
}
.contact-content_left_box .is_time {
  font-size: 0.75rem;
}
.contact-content_left_box .is_time span {
  font-family: "IBM Plex Sans", sans-serif;
}

.contact-content_right-wrap {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .contact-content_right-wrap {
    width: 100%;
    order: 2;
  }
}

.contact-content_right {
  position: absolute;
  top: 70px;
  right: 0;
  max-width: 545px;
}
@media screen and (max-width: 1210px) {
  .contact-content_right {
    padding-right: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .contact-content_right {
    position: relative;
    top: 5rem;
    max-width: 100%;
    padding-right: 0;
  }
}
.contact-content_right h2 {
  display: flex;
  align-items: center;
  margin-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .contact-content_right h2 {
    margin-bottom: 1.875rem;
  }
}
.contact-content_right h2 .is_en {
  margin-right: 0.9375rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.6875rem;
  font-weight: 400;
}
.contact-content_right h2 .is_jp {
  font-size: 0.875rem;
  font-weight: 300;
}

.contact-content_textarea {
  padding-top: 2.8125rem;
  border-top: solid 1px #D9D9D9;
}
.contact-content_textarea p {
  color: #919191;
  font-size: 0.6875rem;
  letter-spacing: 0.08rem;
}
.contact-content_textarea p:not(:last-child) {
  margin-bottom: 1.875rem;
}

.contact-content_form {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contact-content_form {
    margin-bottom: 5rem;
  }
}
.contact-content_form table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}
.contact-content_form table th {
  width: 200px;
  padding-bottom: 1.25rem;
  text-align: left;
  font-weight: 300;
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  .contact-content_form table th {
    width: 8.125rem;
    font-size: 0.875rem;
  }
}
.contact-content_form table th span:nth-of-type(2) {
  display: block;
  margin-top: 10px;
  color: #808080;
  font-size: 10px;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
}
.contact-content_form table th span.hissu {
  position: relative;
}
.contact-content_form table th span.hissu:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 5px;
  right: -6px;
  width: 5px;
  height: 5px;
  background: url(../img/contact/note.png);
  background-size: cover;
}
.contact-content_form table td {
  padding-bottom: 1.25rem;
}
.contact-content_form table td .is_text,
.contact-content_form table td .is_select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  font: inherit;
  outline: none;
  width: 100%;
  padding: 10px 20px;
  background: #F2F2F2;
  border-radius: 4px;
}
.contact-content_form table td.select-wrap .wpcf7-form-control-wrap {
  position: relative;
}
.contact-content_form table td.select-wrap .wpcf7-form-control-wrap:after {
  content: "";
  position: absolute;
  top: 6px;
  right: 15px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #808080;
  border-right: 1px solid #808080;
  transform: rotate(45deg);
}

.contact-form_button {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 112px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .contact-form_button {
    max-width: 100%;
  }
}
.contact-form_button:hover:after {
  border-top: 1px solid #787878;
  border-right: 1px solid #787878;
}
.contact-form_button:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50px;
  right: 28px;
  width: 17px;
  height: 17px;
  border-top: 1px solid #C8C8C8;
  border-right: 1px solid #C8C8C8;
  transform: rotate(45deg);
  transition: 0.4s;
}
.contact-form_button .button {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  width: 100%;
  max-width: 540px;
  height: 112px;
  margin: 0 auto;
  padding-right: 90px;
  text-align: right;
  color: #C8C8C8;
  font-size: 24px;
  font-weight: 200;
  font-family: "IBM Plex Sans", sans-serif;
  border: solid 1px #D9D9D9;
  transition: 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .contact-form_button .button {
    max-width: 100%;
  }
}
.contact-form_button .button:hover {
  color: #5A5A5A;
  background: #FAFAFA;
  border: solid 1px #323232;
}

/*============
posts
=============*/
.posts_page {
  margin-top: 237px;
}
@media screen and (max-width: 1210px) {
  .posts_page .l-inner {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .posts_page {
    margin-top: 5.375rem;
  }
}

.posts-contents {
  position: relative;
  top: -58px;
  margin-bottom: -58px;
  padding-top: 144px;
  padding-bottom: 12.5rem;
  background: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .posts-contents {
    padding-top: 7.3125rem;
  }
}

.posts-menus {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px !important;
}
@media screen and (max-width: 768px) {
  .posts-menus {
    margin-bottom: 1.25rem !important;
  }
}
.posts-menus li {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .posts-menus li {
    width: 33.3333333333%;
    margin-bottom: 2.75rem;
  }
}
.posts-menus li a {
  display: block;
  padding-bottom: 15px;
  text-decoration: none;
  color: #808080;
  text-align: center;
  border-bottom: solid 1px #808080;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .posts-menus li a {
    padding-bottom: 0.375rem;
  }
}
.posts-menus li a:hover {
  color: #252525;
}
.posts-menus li a .is_en {
  font-size: 0.875rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
.posts-menus li a .is_jp {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.072rem;
}
@media screen and (max-width: 768px) {
  .posts-menus li a .is_jp {
    font-size: 10px;
  }
}
.posts-menus li.current a {
  color: #252525;
  border-bottom: solid 1px #252525;
}

.posts-lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 128px !important;
}
@media screen and (max-width: 768px) {
  .posts-lists {
    margin-bottom: 3rem !important;
  }
}
.posts-lists:after {
  content: "";
  width: 32%;
  max-width: 354px;
}

.posts-list {
  width: 32%;
  max-width: 354px;
  margin-bottom: 72px;
}
@media screen and (max-width: 768px) {
  .posts-list {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  .posts-list:not(:last-child) {
    margin-bottom: 2.625rem;
  }
}
.posts-list a {
  color: #262626;
  text-decoration: none;
  transition: 0.4s;
}
.posts-list a:hover img {
  transform: scale(1.2);
  transition-duration: 0.5s;
  opacity: 0.4;
}
.posts-list .is_thumb {
  margin-bottom: 16px;
  background: #030303;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .posts-list .is_thumb {
    margin-bottom: 0.75rem;
  }
}
.posts-list .is_thumb img {
  width: 100%;
  height: 234px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: cover;
     object-position: cover;
  transition-duration: 0.5s;
}
@media screen and (max-width: 768px) {
  .posts-list .is_thumb img {
    height: 61.59vw;
  }
}
.posts-list .is_category {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
.posts-list .is_category p {
  font-size: 0.75rem;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}
.posts-list .is_category p:not(:first-child):before {
  content: ",";
  padding: 0 3px;
}
.posts-list h2 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 7px;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.076rem;
  overflow: hidden;
}
.posts-list .is_date {
  color: #9B9B9B;
  font-size: 10px;
  letter-spacing: 0.128rem;
}

.posts-navigation {
  text-align: center;
  font-size: 14px;
}
.posts-navigation .page-numbers {
  display: inline-block;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #BFBFBF;
  text-decoration: none;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .posts-navigation .page-numbers {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.posts-navigation .page-numbers.current {
  color: #252525;
}
.posts-navigation .page-numbers:hover {
  color: #252525;
}
.posts-navigation .page-numbers.next, .posts-navigation .page-numbers.prev {
  color: #797979;
}
.posts-navigation .page-numbers.next:hover, .posts-navigation .page-numbers.prev:hover {
  color: #252525;
}

/*============
post
=============*/
.post_page {
  margin-top: 136px;
}
@media screen and (max-width: 1210px) {
  .post_page .l-inner {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .post_page {
    margin-top: 5.375rem;
  }
}
.post_page .c-heading {
  align-items: flex-start;
}
.post_page .c-heading .is_category {
  display: flex;
  margin-bottom: 25px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .post_page .c-heading .is_category {
    margin-bottom: 0.8125rem;
  }
}
.post_page .c-heading .is_category a {
  text-decoration: none;
  color: #262626;
  font-size: 13px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .post_page .c-heading .is_category a {
    font-size: 0.875rem;
  }
}
.post_page .c-heading .is_category a:hover {
  opacity: 0.6;
}
.post_page .c-heading .is_category a:not(:first-child):before {
  content: ",";
  padding: 0 3px;
}
.post_page .c-heading .is_title {
  display: block;
  margin-bottom: 27px;
  padding-right: 1.5625rem;
  font-size: 31px;
  letter-spacing: 0.028rem;
}
@media screen and (max-width: 768px) {
  .post_page .c-heading .is_title {
    margin-bottom: 0.8125rem;
    font-size: 1.5rem;
    line-height: 1;
  }
}
.post_page .c-heading .is_date {
  display: block;
  color: #9B9B9B;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.01rem;
}

.post-contents {
  position: relative;
  top: -65px;
  margin-bottom: -65px;
  padding-top: 96px;
  background: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .post-contents {
    padding-top: 100px;
  }
}

.post-content {
  position: relative;
  max-width: 918px;
  margin: 0 auto;
}

.post-thumb {
  margin-bottom: 72px;
}

.post-entry {
  max-width: 717px;
  margin: 0 auto 400px;
}
@media screen and (max-width: 768px) {
  .post-entry {
    margin-bottom: 4.5rem;
  }
}
.post-entry p:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .post-entry p {
    font-size: 0.875rem;
  }
}
.post-entry .wp-block-image figcaption {
  text-align: center;
}
.post-entry table {
  margin-bottom: 1.875rem;
  border-collapse: collapse;
  width: 100%;
}
.post-entry table th,
.post-entry table td {
  padding: 8px 10px;
  border: 1px solid #ddd;
}
.post-entry ul {
  margin-bottom: 1.875rem;
  padding-left: 1.25rem;
  list-style: disc;
}
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  margin-bottom: 20px;
  font-weight: 500;
}

.post-nav_wrap {
  position: relative;
  margin-bottom: 12.5rem;
  background: #262626;
  overflow: hidden;
}
.post-nav_wrap:before {
  content: "Prev";
  position: absolute;
  bottom: 0;
  left: -2.6vw;
  color: rgba(217, 217, 217, 0.1);
  font-size: 22.53vw;
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 0.7;
}
@media screen and (max-width: 768px) {
  .post-nav_wrap:before {
    bottom: 50%;
    transform: translateY(50%);
  }
}
.post-nav_wrap:after {
  content: "Next";
  position: absolute;
  bottom: 0;
  right: -2.6vw;
  color: rgba(217, 217, 217, 0.1);
  font-size: 22.53vw;
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 0.7;
}
@media screen and (max-width: 768px) {
  .post-nav_wrap:after {
    bottom: 50%;
    transform: translateY(50%);
  }
}

.post-nav {
  position: relative;
  max-width: 945px;
  min-height: 375px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .post-nav {
    min-height: 175px;
  }
}
.post-nav a {
  text-decoration: none;
  color: #FFF;
}
.post-nav .is_prev {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 313px;
  width: 100%;
  z-index: 1;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .post-nav .is_prev {
    left: 56px;
  }
}
.post-nav .is_prev:hover {
  opacity: 0.6;
}
.post-nav .is_prev p {
  position: relative;
}
.post-nav .is_prev p a:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -20px;
  width: 18px;
  height: 18px;
  border-left: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: rotate(45deg);
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .post-nav .is_prev p a:before {
    top: -7px;
  }
}
.post-nav .is_next {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 313px;
  width: 100%;
  z-index: 1;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .post-nav .is_next {
    right: 56px;
  }
}
.post-nav .is_next:hover {
  opacity: 0.6;
}
.post-nav .is_next p {
  position: relative;
}
.post-nav .is_next p a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: -20px;
  top: 0;
  width: 18px;
  height: 18px;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: rotate(45deg);
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .post-nav .is_next p a:after {
    top: -7px;
  }
}
.post-nav .is_category {
  transition: 0.4s;
}
.post-nav .is_category a {
  color: rgba(217, 217, 217, 0.8);
  font-size: 12px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  pointer-events: none;
}
.post-nav .is_category a:not(:first-child):before {
  content: ",";
  padding: 0 3px;
}
@media screen and (max-width: 768px) {
  .post-nav .is_category {
    display: none;
  }
}
.post-nav .is_title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 14px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .post-nav .is_title {
    display: none;
  }
}
.post-nav .is_date {
  display: block;
  color: rgba(217, 217, 217, 0.8);
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .post-nav .is_date {
    display: none;
  }
}

.post-archive {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: 0.4s;
}
.post-archive:hover {
  opacity: 0.6;
}
.post-archive span {
  display: block;
  width: 26px;
  height: 26px;
  background: url(../img/post/archive.png) no-repeat center;
  background-size: cover;
}

.post-sns {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: -166px;
  width: 100px;
}
@media (max-width: 1260px) {
  .post-sns {
    right: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .post-sns {
    flex-direction: column;
    position: inherit;
    right: 0;
    max-width: 171px;
    width: 100%;
    margin-right: auto;
    margin-bottom: 3.5rem;
    margin-left: auto;
  }
}
.post-sns .is_vertical {
  color: #808080;
  font-size: 17px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 200;
  white-space: nowrap;
  writing-mode: vertical-rl;
  letter-spacing: 0.191rem;
}
@media screen and (max-width: 1024px) {
  .post-sns .is_vertical {
    margin-bottom: 1.0625rem;
    writing-mode: inherit;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .post-sns .is_vertical {
    font-size: 0.875rem;
  }
}
.post-sns .is_line {
  position: relative;
  height: 127px;
}
@media screen and (max-width: 1024px) {
  .post-sns .is_line {
    height: 0;
  }
}
.post-sns .is_line:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 127px;
  border-left: 1px solid #D9D9D9;
}
@media screen and (max-width: 1024px) {
  .post-sns .is_line:before {
    top: 0;
    width: 171px;
    height: 1px;
    border-left: none;
    border-bottom: 1px solid #D9D9D9;
  }
}
.post-sns .is_line:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 63px;
  border-left: 1px solid #262626;
}
@media screen and (max-width: 1024px) {
  .post-sns .is_line:after {
    width: 86px;
    height: 1px;
    border-left: none;
    border-bottom: 1px solid #262626;
  }
}

.post-sns_links {
  margin-top: 23px;
}
@media screen and (max-width: 1024px) {
  .post-sns_links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 72px;
    margin-top: 17px;
    margin-right: auto;
    margin-left: auto;
  }
}
.post-sns_links a {
  transition: 0.4s;
}
.post-sns_links a:hover {
  opacity: 0.6;
}
.post-sns_links a:nth-of-type(1) {
  display: block;
  width: 21px;
  height: 21px;
  margin-bottom: 44px;
  background: url(../img/post/line.png);
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .post-sns_links a:nth-of-type(1) {
    margin-bottom: 0;
  }
}
.post-sns_links a:nth-of-type(2) {
  display: block;
  width: 21px;
  height: 17px;
  background: url(../img/post/twitter.png);
  background-size: cover;
}

/*============
children
=============*/
.children-fv {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 1588px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .children-fv {
    width: 100%;
  }
}
.children-fv img {
  position: relative;
  width: 100%;
  height: 744px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30%;
     object-position: 30%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .children-fv img {
    height: 32.0625rem;
    -o-object-position: center;
       object-position: center;
  }
}

.children-contents {
  margin-top: 576px;
}
@media screen and (max-width: 768px) {
  .children-contents {
    margin-top: 33.75rem;
  }
}
.children-contents .c-heading {
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .children-contents .c-heading {
    align-items: flex-end;
  }
  .children-contents .c-heading .is_en {
    line-height: 1.3;
  }
  .children-contents .c-heading .is_jp {
    margin-bottom: 0;
  }
}

.children-content {
  position: relative;
  top: -107px;
  margin-bottom: -107px;
  padding-top: 190px;
  background: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .children-content {
    top: -32px;
    margin-bottom: -32px;
    padding-top: 64px;
  }
}

/* lead */
.children-lead {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .children-lead {
    margin-bottom: 6.25rem;
  }
}
.children-lead h2 {
  margin-bottom: 32px;
  color: #808080;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 768px) {
  .children-lead h2 {
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
  }
}

.children-lead_top {
  margin-bottom: 3.5rem;
}
.children-lead_top p {
  font-size: 22px;
  letter-spacing: 0.088rem;
  line-height: 2.18;
}
@media screen and (max-width: 768px) {
  .children-lead_top p {
    font-size: 0.8125rem;
    letter-spacing: 0.09rem;
    white-space: nowrap;
  }
}

.children-lead_items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}
.children-lead_items p {
  width: 48%;
  max-width: 510px;
  line-height: 2;
  letter-spacing: 0.064rem;
}
@media screen and (max-width: 768px) {
  .children-lead_items p {
    width: 100%;
    max-width: 100%;
    font-size: 0.875rem;
  }
  .children-lead_items p:not(:last-child) {
    margin-bottom: 2rem;
  }
}

.children-lead_bottom p {
  text-align: center;
  line-height: 2;
  letter-spacing: 0.064rem;
}
@media screen and (max-width: 768px) {
  .children-lead_bottom p {
    font-size: 0.875rem;
  }
}
.children-lead_bottom p.is_name {
  margin-top: 32px;
}

/* creator */
.children-creator .c-box {
  margin-top: -75px;
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .children-creator .c-box {
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .children-creator .c-box_content_wrap {
    padding-top: 1.5rem;
    padding-right: 0.75rem;
    padding-bottom: 1.5rem;
    padding-left: 0.75rem;
    background: url(../img/children/image1_sp.png) center bottom;
    background-size: cover;
  }
}

.children-creator_image img {
  width: 100%;
}

.children-creator_items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 100px;
}
@media screen and (max-width: 1210px) {
  .children-creator_items {
    flex-direction: column;
    max-width: 318px;
    margin-right: auto;
    margin-bottom: 5rem;
    margin-left: auto;
  }
}
.children-creator_items .is_heading {
  max-width: 176px;
}
@media screen and (max-width: 1210px) {
  .children-creator_items .is_heading {
    max-width: 318px;
    margin-bottom: 4rem;
  }
}
.children-creator_items .is_heading p {
  font-size: 0.875rem;
  line-height: 2;
}

.children-creator_item {
  max-width: 318px;
  width: 24%;
}
@media screen and (max-width: 1210px) {
  .children-creator_item {
    width: 100%;
  }
  .children-creator_item:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.children-creator_item figure {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.children-creator_item figure img {
  max-width: 100px;
  width: 32%;
}
.children-creator_item figure:not(:last-child) {
  margin-bottom: 16px;
}
.children-creator_item figure.is_name {
  position: relative;
}
.children-creator_item figure.is_name:after {
  content: "";
  position: absolute;
  display: block;
  bottom: 12px;
  left: 0;
  width: 24px;
  height: 1px;
  background: #252525;
}
.children-creator_item figcaption {
  max-width: 200px;
  width: 63%;
  letter-spacing: 0.08rem;
}
.children-creator_item figcaption .is_jp {
  font-size: clamp(20px, 1.5vw, 23px);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .children-creator_item figcaption .is_jp {
    font-size: 1.25rem;
  }
}
.children-creator_item figcaption .is_en {
  display: block;
  font-size: 16px;
  font-weight: 300;
  font-family: "IBM Plex Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .children-creator_item figcaption .is_en {
    font-size: 0.875rem;
  }
}
.children-creator_item figcaption p {
  font-size: 0.875rem;
  line-height: 2;
}

.children-creator_bottom {
  max-width: 740px;
  font-size: 13px;
  line-height: 2.15;
}
@media screen and (max-width: 1210px) {
  .children-creator_bottom {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .children-creator_bottom {
    font-size: 0.875rem;
  }
}

/* flow */
@media screen and (max-width: 768px) {
  .children-flow {
    margin-bottom: 5.5rem;
  }
}
.children-flow .c-flow_items .is_line:after {
  height: 1071px;
}
@media screen and (max-width: 1024px) {
  .children-flow .c-flow_items .is_line:after {
    height: 82%;
  }
}

/* detail */
.children-detail {
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 768px) {
  .children-detail {
    background: #FFF;
  }
}

.children-detail_image img {
  width: 100%;
}

.children-detail_items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: -80px auto 0;
}
@media screen and (max-width: 1210px) {
  .children-detail_items {
    margin-right: 0.9375rem;
    margin-left: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .children-detail_items {
    flex-direction: column;
    margin-top: -4.75rem;
  }
}

.children-detail_item {
  max-width: 540px;
  width: 49%;
  padding-top: 64px;
  padding-right: 2.1875rem;
  padding-bottom: 64px;
  padding-left: 2.1875rem;
  background: #FFF;
}
@media screen and (max-width: 768px) {
  .children-detail_item {
    max-width: 100%;
    width: 100%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.children-detail_item .inner {
  max-width: 396px;
  margin: 0 auto;
}
.children-detail_item h2 {
  position: relative;
  margin-bottom: 98px;
  font-size: 17px;
}
@media screen and (max-width: 768px) {
  .children-detail_item h2 {
    margin-bottom: 4rem;
    font-size: 0.9375rem;
    white-space: nowrap;
    line-height: 2;
  }
}
.children-detail_item h2:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -48px;
  left: 0;
  width: 24px;
  height: 1px;
  background: #252525;
}
@media screen and (max-width: 768px) {
  .children-detail_item h2:after {
    bottom: -1.5rem;
  }
}
.children-detail_item p {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .children-detail_item p {
    font-size: 0.875rem;
  }
}
.children-detail_item p:not(:last-child) {
  margin-bottom: 2rem;
}

/*============
rental
=============*/
.rental-fv {
  position: absolute;
  top: 140px;
  right: 0;
  max-width: 987px;
  width: 48%;
}
@media screen and (max-width: 768px) {
  .rental-fv {
    position: relative;
    top: 0;
    width: 100%;
  }
}
.rental-fv img {
  position: relative;
  width: 100%;
  height: 537px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30%;
     object-position: 30%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .rental-fv img {
    height: 32.0625rem;
  }
}

.rental-contents {
  margin-top: 124px;
}
@media screen and (max-width: 768px) {
  .rental-contents {
    margin-top: 0.9375rem;
  }
  .rental-contents .c-heading {
    align-items: center;
  }
}

.rental-content {
  position: relative;
  top: -70px;
  margin-bottom: -70px;
  background: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .rental-content {
    top: -90px;
    margin-bottom: -90px;
  }
}

/* lead */
.rental-lead {
  margin-bottom: 100px;
  padding-top: 130px;
}
@media screen and (max-width: 768px) {
  .rental-lead {
    margin-bottom: 5rem;
    padding-top: 4.75rem;
  }
}

.rental-lead_items {
  max-width: 480px;
  width: 44%;
}
@media screen and (max-width: 768px) {
  .rental-lead_items {
    max-width: 100%;
    width: 100%;
  }
}
.rental-lead_items h2 {
  margin-bottom: 48px;
  font-size: 32px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .rental-lead_items h2 {
    margin-top: -0.625rem;
    margin-bottom: 2.5rem;
    font-size: 1.375rem;
    line-height: 1.81;
    white-space: nowrap;
  }
}
.rental-lead_items .is_title {
  margin-bottom: 29px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.029rem;
}
@media screen and (max-width: 768px) {
  .rental-lead_items .is_title {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
  }
}

.rental-lead_items_textarea {
  margin-bottom: 100px;
}
.rental-lead_items_textarea p {
  font-size: 15px;
  letter-spacing: 0.029rem;
  line-height: 2;
}
.rental-lead_items_textarea p:not(:last-child) {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .rental-lead_items_textarea {
    margin-bottom: 5rem;
  }
  .rental-lead_items_textarea p {
    font-size: 0.8125rem;
  }
  .rental-lead_items_textarea p:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

.rental-lead_video {
  width: 100%;
  aspect-ratio: 16/9;
}
.rental-lead_video iframe {
  width: 100%;
  height: 100%;
}

/* price */
.rental-price {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .rental-price {
    margin-bottom: 5rem;
  }
}

.rental-price_items {
  flex-wrap: wrap;
}

.rental-price_text {
  margin-bottom: 40px;
  width: 100%;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .rental-price_text {
    margin-bottom: 2rem;
    font-size: 0.75rem;
  }
}

/* free */
.rental-free .c-box {
  margin-top: -60px;
  padding-top: 140px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .rental-free .c-box {
    margin-top: 0;
    padding-top: 3rem;
    padding-bottom: 1.125rem;
    background: rgba(255, 255, 255, 0.8);
  }
}
.rental-free .is_heading {
  max-width: 196px;
}
@media screen and (max-width: 1210px) {
  .rental-free .is_heading {
    margin-bottom: 4rem;
    max-width: 100%;
  }
  .rental-free .is_heading .c-box_heading {
    margin-bottom: 0.875rem;
  }
}
.rental-free .is_heading p {
  max-width: 176px;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 1210px) {
  .rental-free .is_heading p {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .rental-free .c-box_content_wrap {
    padding-top: 1.5rem;
    padding-right: 0.75rem;
    padding-bottom: 1.5rem;
    padding-left: 0.75rem;
    background: url(../img/rental/image1_sp.png) center bottom;
    background-size: cover;
  }
}

.rental-free_items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1210px) {
  .rental-free_items {
    flex-direction: column;
  }
}

.rental-free_item {
  max-width: 1068px;
  width: 79%;
}
@media screen and (max-width: 1210px) {
  .rental-free_item {
    width: 100%;
  }
}
.rental-free_item h3 {
  margin-bottom: 24px;
  font-size: 23px;
}
.rental-free_item h3 span {
  margin-left: 24px;
  font-size: 14px;
  line-height: 2;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .rental-free_item h3 {
    margin-bottom: 2rem;
    font-size: 1.25rem;
  }
  .rental-free_item h3 span {
    display: block;
    margin-top: 1rem;
    margin-left: 0;
    font-size: 0.75rem;
  }
}

.rental-free_item_amenity {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 23px !important;
}
@media screen and (max-width: 768px) {
  .rental-free_item_amenity {
    margin-bottom: 3.0625rem !important;
  }
}
.rental-free_item_amenity li {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  min-height: 200px;
  margin-bottom: 17px;
  padding-bottom: 25px;
  width: 19%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1024px) {
  .rental-free_item_amenity li {
    min-height: 8.75rem;
  }
}
@media screen and (max-width: 768px) {
  .rental-free_item_amenity li {
    width: 48%;
    margin-bottom: 0.9375rem;
    background: #FFF;
  }
}
.rental-free_item_amenity li p {
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .rental-free_item_amenity li p {
    font-size: 0.75rem;
  }
}
.rental-free_item_amenity li.item1 span {
  display: block;
  width: 88px;
  height: 95px;
  margin: 0 auto 27px;
  background: url(../img/rental/free1.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .rental-free_item_amenity li.item1 span {
    width: 4.0625rem;
    height: 4.375rem;
    margin-bottom: 0.875rem;
  }
}
.rental-free_item_amenity li.item2 span {
  display: block;
  width: 96px;
  height: 99px;
  margin: 0 auto 27px;
  background: url(../img/rental/free2.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .rental-free_item_amenity li.item2 span {
    width: 4.1875rem;
    height: 4.3125rem;
    margin-bottom: 1.0625rem;
  }
}
.rental-free_item_amenity li.item3 span {
  display: block;
  width: 39px;
  height: 90px;
  margin: 0 auto 30px;
  background: url(../img/rental/free3.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .rental-free_item_amenity li.item3 span {
    width: 1.6875rem;
    height: 3.9375rem;
    margin-bottom: 1.1875rem;
  }
}
.rental-free_item_amenity li.item4 span {
  display: block;
  width: 115px;
  height: 85px;
  margin: 0 auto 29px;
  background: url(../img/rental/free4.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .rental-free_item_amenity li.item4 span {
    width: 5.0625rem;
    height: 3.75rem;
    margin-bottom: 1.125rem;
  }
}
.rental-free_item_amenity li.item5 span {
  display: block;
  width: 29px;
  height: 101px;
  margin: 0 auto 23px;
  background: url(../img/rental/free5.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .rental-free_item_amenity li.item5 span {
    width: 1.25rem;
    height: 4.375rem;
    margin-bottom: 0.875rem;
  }
}
.rental-free_item_amenity li.item6 span {
  display: block;
  position: relative;
  left: -15px;
  width: 100px;
  height: 93px;
  margin: 0 auto 28px;
  background: url(../img/rental/free6.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .rental-free_item_amenity li.item6 span {
    width: 4.375rem;
    height: 4.0625rem;
    margin-bottom: 1.3125rem;
  }
}
.rental-free_item_amenity li.item7 span {
  display: block;
  width: 84px;
  height: 58px;
  margin: 0 auto 44px;
  background: url(../img/rental/free7.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .rental-free_item_amenity li.item7 span {
    width: 3.6875rem;
    height: 2.5625rem;
    margin-bottom: 1.8125rem;
  }
}
.rental-free_item_amenity li.item8 span {
  display: block;
  width: 77px;
  height: 83px;
  margin: 0 auto 32px;
  background: url(../img/rental/free8.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .rental-free_item_amenity li.item8 span {
    width: 3.375rem;
    height: 3.625rem;
    margin-bottom: 1.5rem;
  }
}
.rental-free_item_amenity li.item9 span {
  display: block;
  width: 94px;
  height: 72px;
  margin: 0 auto 36px;
  background: url(../img/rental/free9.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .rental-free_item_amenity li.item9 span {
    width: 3.375rem;
    height: 3.625rem;
    margin-bottom: 1.4375rem;
  }
}
.rental-free_item_amenity li.item10 span {
  display: block;
  width: 82px;
  height: 95px;
  margin: 0 auto 29px;
  background: url(../img/rental/free10.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .rental-free_item_amenity li.item10 span {
    width: 3.5625rem;
    height: 4.1875rem;
    margin-bottom: 1.125rem;
  }
}

.rental-free_item_lists {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px !important;
}
@media screen and (max-width: 768px) {
  .rental-free_item_lists {
    flex-direction: column;
    margin-bottom: 64px !important;
  }
}
.rental-free_item_lists li {
  margin-bottom: 24px;
  padding-right: 20px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .rental-free_item_lists li {
    margin-bottom: 0;
    padding-right: 0;
    font-size: 0.875rem;
  }
  .rental-free_item_lists li:before {
    content: "-";
  }
  .rental-free_item_lists li:not(:last-child) {
    margin-bottom: 1rem;
  }
}

.rental-free_item_area {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .rental-free_item_area {
    font-size: 0.875rem;
  }
}

/* flow */
.rental-flow {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .rental-flow {
    padding-bottom: 5rem;
  }
}
.rental-flow .c-flow_items .is_line:after {
  height: 910px;
}
@media screen and (max-width: 1024px) {
  .rental-flow .c-flow_items .is_line:after {
    height: 81%;
  }
}

/* electronics */
.rental-electronics {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .rental-electronics {
    padding-bottom: 12.25rem;
  }
}
@media screen and (max-width: 768px) {
  .rental-electronics .page-heading {
    margin-bottom: 0.75rem;
  }
}
.rental-electronics .is_tax {
  margin-bottom: 0.5rem;
  text-align: right;
  color: #808080;
  font-size: 0.8125rem;
}
.rental-electronics .is_text {
  margin-bottom: 100px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .rental-electronics .is_text {
    margin-bottom: 5rem;
    font-size: 0.875rem;
  }
}

.rental-electronics_items {
  padding-top: 40px;
  border-top: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .rental-electronics_items {
    padding-top: 2rem;
  }
}
.rental-electronics_items:nth-of-type(1) .rental-electronics_item {
  max-width: 650px;
  margin-bottom: 41px !important;
}
@media screen and (max-width: 768px) {
  .rental-electronics_items:nth-of-type(1) .rental-electronics_item {
    margin-bottom: 2rem;
  }
}
.rental-electronics_items:nth-of-type(1) .rental-electronics_item li {
  width: 32%;
}
@media screen and (max-width: 768px) {
  .rental-electronics_items:nth-of-type(1) .rental-electronics_item li {
    width: 48%;
  }
}
.rental-electronics_items:nth-of-type(2) .rental-electronics_item {
  max-width: 425px;
}
.rental-electronics_items:nth-of-type(2) .rental-electronics_item li {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .rental-electronics_items:nth-of-type(2) .rental-electronics_item {
    max-width: 100%;
  }
  .rental-electronics_items:nth-of-type(2) .rental-electronics_item li {
    width: 48%;
  }
}

.rental-electronics_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.rental-electronics_item li {
  max-width: 200px;
}
@media screen and (max-width: 768px) {
  .rental-electronics_item li {
    max-width: 100%;
  }
  .rental-electronics_item li:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.rental-electronics_item li img {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .rental-electronics_item li img {
    margin-bottom: 0.5rem;
  }
}
.rental-electronics_item li p {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .rental-electronics_item li p {
    font-size: 0.875rem;
  }
}
.rental-electronics_item li .is_name {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  letter-spacing: -0.02rem;
}
.rental-electronics_item li .is_price {
  text-align: right;
}

/* ticket */
.rental-ticket {
  position: relative;
  background: #FFF;
}
.rental-ticket::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  height: 100%;
  background: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .rental-ticket::before {
    height: 97%;
  }
}

.rental-ticket_image img {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .rental-ticket_image img {
    top: -7.25rem;
    margin-bottom: -7.25rem;
    margin-left: 2.5rem;
  }
}

.rental-ticket_items {
  position: relative;
  margin-top: 73px;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 768px) {
  .rental-ticket_items {
    margin-top: 3.125rem;
  }
}
.rental-ticket_items h2 {
  position: relative;
  margin-bottom: 74px;
  color: #808080;
  font-size: 14px;
  letter-spacing: 0.072rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .rental-ticket_items h2 {
    margin-bottom: 2.375rem;
    font-size: 0.8125rem;
  }
}
.rental-ticket_items h2:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 23px;
  height: 1px;
  background: #262626;
}
@media screen and (max-width: 768px) {
  .rental-ticket_items h2:after {
    bottom: -0.75rem;
  }
}
.rental-ticket_items h3 {
  margin-bottom: 43px;
  font-size: 23px;
  font-weight: 300;
  letter-spacing: 0.094rem;
}
@media screen and (max-width: 768px) {
  .rental-ticket_items h3 {
    margin-bottom: 2.5rem;
    font-size: 1.0625rem;
  }
}
.rental-ticket_items p {
  max-width: 884px;
  font-size: 17px;
  letter-spacing: 0.08rem;
  line-height: 2.17;
}
@media screen and (max-width: 768px) {
  .rental-ticket_items p {
    font-size: 0.8125rem;
  }
}
.rental-ticket_items p:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .rental-ticket_items p:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
.rental-ticket_items p.is_small {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .rental-ticket_items p.is_small {
    font-size: 0.75rem;
  }
}

.rental-ticket_button {
  display: block;
  position: absolute;
  right: 100px;
  bottom: 185px;
  width: 269px;
  height: 115px;
  text-align: right;
  text-decoration: none;
  border-right: 1px solid #BFBFBF;
  border-bottom: 1px solid #BFBFBF;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .rental-ticket_button {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .rental-ticket_button {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 4.5rem;
    width: 171px;
    height: 53px;
    margin-left: auto;
  }
}
.rental-ticket_button:hover {
  width: 207px;
  height: 88px;
}
@media screen and (max-width: 768px) {
  .rental-ticket_button:hover {
    width: 171px;
    height: 53px;
  }
}
.rental-ticket_button .is_en {
  color: #262626;
  font-size: 24px;
  letter-spacing: 0.063rem;
}
@media screen and (max-width: 768px) {
  .rental-ticket_button .is_en {
    font-size: 1.125rem;
  }
}
.rental-ticket_button .is_jp {
  display: block;
  color: #808080;
  font-size: 12px;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 768px) {
  .rental-ticket_button .is_jp {
    font-size: 0.625rem;
  }
}
.rental-ticket_button .button-text {
  position: absolute;
  right: 32px;
  bottom: 39px;
}
@media screen and (max-width: 768px) {
  .rental-ticket_button .button-text {
    right: 1.375rem;
    bottom: 0.75rem;
  }
}

/*============
empty
=============*/
.empty_page {
  margin-top: 124px;
}
@media screen and (max-width: 768px) {
  .empty_page {
    margin-top: 5.375rem;
  }
}

.empty-contents {
  position: relative;
  top: -65px;
  margin-bottom: -65px;
  padding-top: 160px;
  background: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .empty-contents {
    top: -53px;
    margin-bottom: -53px;
    padding-top: 5.5rem;
  }
}

/* lead */
.empty-lead {
  padding-bottom: 92px;
}
@media screen and (max-width: 768px) {
  .empty-lead {
    padding-bottom: 6.25rem;
  }
}

.empty-lead_textarea {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .empty-lead_textarea {
    margin-bottom: 1.5rem;
  }
  .empty-lead_textarea p {
    font-size: 0.8125rem;
  }
}
.empty-lead_textarea p {
  line-height: 2;
  letter-spacing: 0.08rem;
}

.empty-lead_links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.empty-lead_links a {
  display: block;
  position: relative;
  width: 24%;
  min-height: 329px;
  padding-top: 24px;
  padding-right: 1.25rem;
  padding-bottom: 24px;
  padding-left: 1.25rem;
  text-decoration: none;
  color: #262626;
  background: #FFF;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .empty-lead_links a {
    width: 49%;
  }
  .empty-lead_links a:nth-of-type(-n+2) {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .empty-lead_links a {
    width: 100%;
    min-height: 17.1875rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .empty-lead_links a:nth-of-type(3) {
    margin-bottom: 5rem;
  }
  .empty-lead_links a .is_text {
    font-size: 0.875rem;
  }
}
.empty-lead_links a:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  width: 1px;
  height: 64px;
  background: #262626;
  transition: 0.4s;
}
@media screen and (max-width: 1024px) {
  .empty-lead_links a:after {
    height: 2.5rem;
    bottom: -1.25rem;
  }
}
.empty-lead_links a:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
}
.empty-lead_links a:hover:after {
  opacity: 0;
}
.empty-lead_links a .is_title {
  position: relative;
  margin-bottom: 49px;
}
@media screen and (max-width: 768px) {
  .empty-lead_links a .is_title {
    margin-bottom: 2rem;
  }
}
.empty-lead_links a .is_title:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 23px;
  height: 1px;
  background: #262626;
}
.empty-lead_links a .is_title .is_en {
  color: #212529;
  font-size: 28px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  .empty-lead_links a .is_title .is_en {
    font-size: 1.5rem;
  }
}
.empty-lead_links a .is_title .is_jp {
  display: block;
  color: #808080;
  font-size: 0.8125rem;
  letter-spacing: 0.04rem;
}
.empty-lead_links a .is_subtitle {
  margin-bottom: 1rem;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .empty-lead_links a .is_subtitle {
    font-size: 0.9375rem;
  }
}

/* common */
.empty-box_items .c-box_heading {
  position: relative;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .empty-box_items .c-box_heading {
    margin-bottom: 2.5rem;
  }
  .empty-box_items .c-box_heading .is_en {
    font-size: 1.5rem;
  }
  .empty-box_items .c-box_heading .is_jp {
    font-size: 0.75rem;
  }
}
.empty-box_items .c-box_heading:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 23px;
  height: 1px;
  background: #262626;
}
@media screen and (max-width: 768px) {
  .empty-box_items .c-box_heading:after {
    bottom: -1rem;
  }
}
.empty-box_items h3 {
  margin-bottom: 32px;
  font-size: 22px;
  letter-spacing: 0.064rem;
}
@media screen and (max-width: 768px) {
  .empty-box_items h3 {
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 2.13;
    letter-spacing: 0.064rem;
  }
}
.empty-box_items p {
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .empty-box_items p {
    font-size: 0.875rem;
  }
}

.empty-box_items p.is_small {
  margin-top: 32px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .empty-box_items p.is_small {
    margin-top: 1.5rem;
    font-size: 0.75rem;
  }
}

.empty-self_items_lists {
  margin-top: 1.5rem !important;
  margin-bottom: 5rem !important;
}
.empty-self_items_lists li {
  font-size: 0.875rem !important;
  line-height: 1.714;
}

.empty-self_items_video {
  width: 100%;
  aspect-ratio: 16/9;
}
.empty-self_items_video iframe {
  width: 100%;
  height: 100%;
}

/* price */
.empty-price_items {
  flex-wrap: wrap;
}

.empty-price_text {
  width: 100%;
  margin-bottom: 56px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .empty-price_text {
    margin-bottom: 2rem;
    font-size: 0.75rem;
  }
}

/* self */
.empty-self {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .empty-self {
    margin-bottom: 2.5rem;
  }
}
.empty-self .c-box_content {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .empty-self .c-box_content {
    margin-bottom: 3rem;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
.empty-self .c-box {
  margin-top: -60px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .empty-self .c-box {
    margin-top: -1.875rem;
    padding: 2.5rem;
    background: #FFF;
  }
}
.empty-self .c-price {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .empty-self .c-price {
    margin-bottom: 0;
  }
}
.empty-self .c-flow_items .is_line:after {
  height: 975px;
}
@media screen and (max-width: 1210px) {
  .empty-self .c-flow_items .is_line:after {
    height: 82%;
  }
}

.empty-self_image img {
  width: 100%;
}

/* pack */
.empty-pack {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .empty-pack {
    margin-bottom: 2.5rem;
  }
}
.empty-pack .c-box_content {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .empty-pack .c-box_content {
    margin-bottom: 3rem;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
.empty-pack .c-box {
  margin-top: -60px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .empty-pack .c-box {
    margin-top: -2.1875rem;
    padding: 2.5rem;
    background: #FFF;
  }
}
.empty-pack .c-flow_items .is_line:after {
  height: 1163px;
}
@media screen and (max-width: 1210px) {
  .empty-pack .c-flow_items .is_line:after {
    height: 84%;
  }
}
.empty-pack .c-price_items:last-child {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .empty-pack .c-price_items:last-child {
    padding-top: 0;
    border-top: none;
  }
}

.empty-pack_image img {
  width: 100%;
}

/* live */
.empty-live {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .empty-live {
    margin-bottom: 2.5rem;
  }
}
.empty-live .c-box_content {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .empty-live .c-box_content {
    margin-bottom: 3rem;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
.empty-live .c-box {
  margin-top: -60px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .empty-live .c-box {
    margin-top: -2.1875rem;
    padding: 2.5rem;
    background: #FFF;
  }
}
.empty-live .c-price {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .empty-live .c-price {
    margin-bottom: 0;
  }
}
.empty-live .c-flow_items .is_line:after {
  height: 1016px;
}
@media screen and (max-width: 1210px) {
  .empty-live .c-flow_items .is_line:after {
    height: 83%;
  }
}

.empty-live-box_items p {
  max-width: 1100px;
}

.empty-live_image img {
  width: 100%;
}

.empty-live_price {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .empty-live_price {
    margin-bottom: 5rem;
  }
}

/* youtube */
.empty-youtube {
  padding-bottom: 320px;
}
@media screen and (max-width: 768px) {
  .empty-youtube {
    padding-bottom: 12.5rem;
  }
}
.empty-youtube .c-box_content {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .empty-youtube .c-box_content {
    margin-bottom: 3rem;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
.empty-youtube .c-box {
  margin-top: -60px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .empty-youtube .c-box {
    margin-top: -2.1875rem;
    padding: 2.5rem;
    background: #FFF;
  }
}
.empty-youtube .c-price {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .empty-youtube .c-price {
    margin-bottom: 0;
  }
}
.empty-youtube .c-flow_items .is_line:after {
  height: 911px;
}
@media screen and (max-width: 1210px) {
  .empty-youtube .c-flow_items .is_line:after {
    height: 82%;
  }
}

.empty-youtube-box_items {
  max-width: 1100px;
}

.empty-youtube_image img {
  width: 100%;
}

.empty-youtube_price {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .empty-youtube_price {
    margin-bottom: 5rem;
  }
}

.empty-youtube-price_items {
  flex-wrap: wrap;
}

.empty-youtube-price_text {
  width: 100%;
  margin-bottom: 40px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .empty-youtube-price_text {
    margin-bottom: 2rem;
    font-size: 0.75rem;
  }
}

/*============
other
=============*/
.other_page {
  margin-top: 124px;
}
@media screen and (max-width: 768px) {
  .other_page {
    margin-top: 5.375rem;
  }
}

.other_fv {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 1588px;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .other_fv {
    width: 100%;
  }
}
.other_fv video {
  position: relative;
  width: 100%;
  height: 744px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30%;
     object-position: 30%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .other_fv video {
    height: 32.0625rem;
    -o-object-position: center;
       object-position: center;
  }
}

.other-contents {
  margin-top: 576px;
}
@media screen and (max-width: 768px) {
  .other-contents {
    margin-top: 33.75rem;
  }
}

.other-content {
  position: relative;
  top: -107px;
  margin-bottom: -107px;
  padding-top: 190px;
  padding-bottom: 5rem;
  background: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .other-content {
    top: -32px;
    margin-bottom: -32px;
    padding-top: 64px;
  }
}

.other-textarea p {
  line-height: 2;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 768px) {
  .other-textarea p {
    font-size: 0.8125rem;
  }
}

.other-heading .is_en {
  line-height: 1.2;
}

/*============
video
=============*/
.video_page .tpl-other_fv img {
  -o-object-position: 70%;
     object-position: 70%;
}

.video-price {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .video-price {
    padding-bottom: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .video-flow {
    padding-bottom: 12.5rem;
  }
}
.video-flow .c-flow_items .is_line:after {
  height: 1615px;
}
@media screen and (max-width: 1210px) {
  .video-flow .c-flow_items .is_line:after {
    height: 87%;
  }
}

.video-flow_image video {
  width: 100%;
  height: 581px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .video-flow_image video {
    height: 7.1875rem;
  }
}

/*============
drone
=============*/
.drone-price {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .drone-price {
    padding-bottom: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .drone-flow {
    padding-bottom: 12.5rem;
  }
}
.drone-flow .c-flow_items .is_line:after {
  height: 1400px;
}
@media screen and (max-width: 1210px) {
  .drone-flow .c-flow_items .is_line:after {
    height: 87%;
  }
}

.drone-flow_image video {
  width: 100%;
  height: 581px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .drone-flow_image video {
    height: 7.1875rem;
  }
}

.drone-lead_heading {
  font-size: 30px !important;
}
@media screen and (max-width: 768px) {
  .drone-lead_heading {
    font-size: 1.375rem !important;
  }
}

/*============
wedding
=============*/
@media screen and (max-width: 768px) {
  .wedding_page .c-price_items dl {
    border-bottom: none;
  }
}

.wedding-box_video video {
  width: 100%;
  height: 581px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .wedding-box_video video {
    height: 7.1875rem;
  }
}

.wedding-option_list-1th {
  width: 100% !important;
}

/*============
otherpd
=============*/
/*# sourceMappingURL=style.css.map */