@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1001px) {
  .is-sp {
    display: none !important;
  }
}
body,
html {
  overflow-x: hidden;
}
body {
  font-size: 16px;
  color: #081217;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  background: #fff;
  min-width: initial;
  font-weight: 300;
}
.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .inner {
    padding: 0 20px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .l-inner {
    padding: 0 20px;
  }
}

.header-inner {
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 1000px) {
  .header-inner {
    padding: 0 20px;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  font-family: "Noto Sans JP", sans-serif;
  color: #081217;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-moz-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

input[type=text],
input[type=email],
input[type=submit],
select,
textarea {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #DADADA;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 10px;
  margin: 0;
  outline: none;
}

.section {
  padding: 80px 0 90px;
}
@media screen and (max-width: 1000px) {
  .section {
    padding: 50px 0 50px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #fff;
  /* 基本非表示 */
  /* hover中に表示 */
}
@media screen and (max-width: 1000px) {
  .header {
    padding: 10px 0;
  }
}
.header.active {
  background: rgba(0, 0, 0, 0.7);
}
.header .header-inner {
  padding-right: 0;
}
.header .header-inner .logo {
  max-width: 118px;
  margin-right: 20px;
}
@media screen and (max-width: 1200px) {
  .header .header-inner .logo {
    max-width: 90px;
  }
}
.header .header-inner .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .header-inner .logo a:hover {
  opacity: 0.6;
}
.header .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .flex .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .flex .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #fff;
}
.header .flex .right ul li {
  text-align: center;
  position: relative;
}
.header .flex .right ul li a {
  color: #fff;
  padding: 15px 20px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .header .flex .right ul li a {
    padding: 15px 10px;
  }
}
.header .flex .right ul li a:hover {
  background: rgba(0, 0, 0, 0.7);
}
.header .flex .right ul li a .en {
  font-family: "Cinzel", serif;
}
.header .flex .right ul li a .ja {
  font-size: 14px;
  font-weight: 300;
}
.header .sub-menu {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  /* 必要なら */
}
.header li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.sub-menu {
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 15px;
}

.sub-menu-item:last-child a {
  border-bottom: none;
}
.sub-menu-item a {
  font-size: 16px;
  font-weight: 300;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-bottom: 0.5px solid #fff;
  display: block;
  text-align: left;
}
.sub-menu-item a:hover {
  opacity: 0.6;
  background: transparent !important;
}

.mv {
  position: relative;
}
.mv video {
  height: auto;
  width: 100%;
}
.mv .contents {
  position: absolute;
  top: 25%;
  left: 10%;
  color: #fff;
  font-family: "Cinzel", serif;
}
@media screen and (max-width: 1000px) {
  .mv .contents {
    top: 40%;
  }
}
.mv .contents .title {
  font-size: 56px;
}
@media screen and (max-width: 1000px) {
  .mv .contents .title {
    font-size: 24px;
  }
}
.mv .contents .lead {
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .mv .contents .lead {
    font-size: 16px;
  }
}
.mv .mv-news {
  position: absolute;
  bottom: 30px;
  right: 0;
  z-index: 4;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  max-width: 526px;
}
@media screen and (max-width: 1000px) {
  .mv .mv-news {
    bottom: 0;
    margin-top: -10px;
    max-width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .mv .mv-news {
    position: initial;
    padding: 20px;
    background: #000;
  }
}
.mv .mv-news .mv-news-title {
  color: #919573;
  font-family: "Cinzel", serif;
  font-size: 32px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .mv .mv-news .mv-news-title {
    font-size: 20px;
  }
}
.mv .mv-news .mv-news-title .wrap {
  display: inline-block;
  position: relative;
}
.mv .mv-news .mv-news-title .wrap::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 120%;
  height: 1px;
  width: 800px;
  background: #919573;
}
.mv .mv-news a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mv .mv-news a:hover {
  opacity: 0.6;
}
.mv .mv-news a .time {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .mv .mv-news a .time {
    font-size: 14px;
  }
}
.mv .mv-news a .mv-news-title2 {
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .mv .mv-news a .mv-news-title2 {
    font-size: 16px;
  }
}

.header-btn {
  height: 100%;
}
.header-btn a {
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 18px;
  padding: 12px 20px;
  display: block;
  line-height: 1.3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
}
.header-btn a:hover {
  background: rgba(0, 0, 0, 0.7);
}
.header-btn a .icon {
  width: 24px;
  margin: 0 auto;
}

.drawer-icon {
  position: fixed;
  top: 21px;
  right: 20px;
  z-index: 300;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}
@media screen and (min-width: 1001px) {
  .drawer-icon {
    display: none;
  }
}
.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bars {
  width: 25px;
  height: 16px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 25px;
  height: 2px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar2 {
  top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-icon-bar3 {
  top: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  overflow-y: auto;
  z-index: 250;
  display: none;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-content.is-active {
  display: block;
}

.drawer-icon-nav {
  text-align: center;
  padding: 20px;
  padding-top: 50px;
}
.drawer-icon-nav ul li {
  margin-bottom: 20px;
}
.drawer-icon-nav ul li a {
  border-bottom: 1px solid #fff;
}
.drawer-icon-nav ul li .sub-menu2 a {
  border-bottom: none;
  padding-left: 10px;
  margin-top: 10px;
  font-size: 16px;
}
.drawer-icon-nav ul li a {
  display: block;
  color: #ffffff;
  text-align: left;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 220;
  display: none;
}
.drawer-mask.is-active {
  display: block;
}

.footer {
  padding: 70px 0;
  background: #081217;
  color: #fff;
  line-height: 1.7;
}
.footer a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}
.footer a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .footer {
    padding: 40px 0;
  }
}
.footer .flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .footer .flex1 {
    display: block;
  }
}
.footer .flex1 .left1 {
  width: calc(100% - 687px);
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .footer .flex1 .left1 {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer .flex1 .left1 span {
  font-size: 80%;
}
.footer .flex1 .left1 .address {
  margin-bottom: 30px;
}
.footer .flex1 .left1 .youtube {
  width: 48px;
}
.footer .flex1 .right1 {
  max-width: 587px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .footer .flex1 .right1 {
    width: 100%;
    display: block;
  }
}
.footer .flex1 .right1 .item {
  width: 30%;
}
@media screen and (max-width: 1000px) {
  .footer .flex1 .right1 .item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer .flex1 .right1 .item .main-link a {
  font-size: 15px;
  margin-bottom: 10px;
  border-bottom: 0.5px solid #fff;
  display: block;
}
.footer .flex1 .right1 .item .ul1 li {
  margin-bottom: 5px;
}
.footer .flex1 .right1 .item .ul1 li a {
  font-size: 16px;
  display: block;
}
.footer .flex1 .right1 .ul2 li {
  margin-bottom: 5px;
}
.footer .flex1 .right1 .ul2 li a {
  font-size: 15px;
  display: block;
}
.footer .ul3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .footer .ul3 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .ul3 li {
  border-right: 0.5px solid #fff;
}
.footer .ul3 li:last-child {
  border-right: none;
}
@media screen and (min-width: 1001px) {
  .footer .ul3 li:last-child a {
    padding-right: 0;
  }
}
.footer .ul3 li a {
  font-size: 14px;
  font-weight: 300;
  padding: 0 20px;
  display: block;
}
@media screen and (max-width: 1000px) {
  .footer .ul3 li a {
    padding: 0 10px;
    font-size: 11px;
  }
}
.footer .logo {
  max-width: 118px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .footer .logo {
    max-width: 90px;
  }
}
@media screen and (max-width: 1000px) {
  .footer .logo {
    text-align: center;
    margin: 0 auto 20px;
  }
}
.footer .logo a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .logo a:hover {
  opacity: 0.6;
}
.footer .copyright {
  text-align: right;
  font-size: 10px;
}
@media screen and (max-width: 1000px) {
  .footer .copyright {
    text-align: center;
  }
}

.top-about1 {
  margin-top: -10px;
}
@media screen and (max-width: 1000px) {
  .top-about1 {
    margin-top: 0;
  }
}
.top-about1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .top-about1 ul {
    display: block;
  }
}
.top-about1 ul li {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .top-about1 ul li {
    width: 100%;
  }
}
.top-about1 ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  padding: 60px 80px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .top-about1 ul li a {
    padding: 40px 20px;
  }
}
.top-about1 ul li a:hover {
  opacity: 0.6;
}
.top-about1 ul li:nth-child(1) a {
  display: block;
  background: url(../img/top-about1.jpg) no-repeat center center/cover;
}
.top-about1 ul li:nth-child(2) a {
  display: block;
  background: url(../img/top-about2.jpg) no-repeat center center/cover;
}
.top-about1 ul li:nth-child(3) a {
  display: block;
  background: url(../img/top-about3.jpg) no-repeat center center/cover;
}
.top-about1 ul li:nth-child(4) a {
  display: block;
  background: url(../img/top-about4.jpg) no-repeat center center/cover;
}
.top-about1 ul li .title {
  font-size: 18p;
  border-bottom: 0.5px solid #fff;
  margin-bottom: 80px;
  font-weight: 300;
  padding-bottom: 5px;
}
@media screen and (max-width: 1000px) {
  .top-about1 ul li .title {
    margin-bottom: 30px;
  }
}
.top-about1 ul li .en {
  color: #919573;
  font-family: "Cinzel", serif;
  font-size: 16px;
}
.top-about1 ul li .text {
  font-size: 24px;
  font-weight: 300;
}
@media screen and (max-width: 1000px) {
  .top-about1 ul li .text {
    font-size: 16px;
  }
}
.top-about1 ul li .arrow {
  width: 24px;
  position: relative;
  top: 2px;
  margin-left: 20px;
}
.top-about1 .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-only .section-title-flex {
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .section-title {
    margin-bottom: 20px;
  }
}
.section-title .section-title-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}
@media screen and (max-width: 1000px) {
  .section-title .section-title-flex {
    display: block;
  }
}
.section-title .section-title-flex .en {
  color: #919573;
  font-family: "Cinzel", serif;
  font-size: 40px;
}
@media screen and (max-width: 1000px) {
  .section-title .section-title-flex .en {
    font-size: 22px;
  }
}
.section-title .section-title-flex .ja {
  font-size: 18px;
  font-weight: 300;
  margin-left: 20px;
}
@media screen and (max-width: 1000px) {
  .section-title .section-title-flex .ja {
    font-size: 16px;
    margin-left: 0;
  }
}

.section-lead {
  font-weight: 300;
  font-size: 15px;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .section-lead {
    font-size: 16px;
  }
}

.top1 {
  background: #081217;
}
.top1 .section-title .ja {
  color: #fff;
}
.top1 .section-lead {
  color: #fff;
}

.section-btn a {
  border-bottom: 0.5px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  margin-left: auto;
  font-size: 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
  padding-top: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section-btn a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .section-btn a {
    margin-right: auto;
    font-size: 16px;
  }
}
.section-btn a .section-btn-arrow {
  width: 24px;
}

.slider a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.slider a:hover {
  opacity: 0.6;
}
.slider .item {
  padding: 0 15px;
}
.slider .item .img {
  margin-bottom: 20px;
}
.slider .item .contents {
  padding: 0px 20px 0;
  color: #fff;
  border-left: 0.5px solid #fff;
}
.slider .item .contents .cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
.slider .item .contents .cats .cat {
  font-size: 16px;
}
.slider .item .contents .title {
  font-size: 18px;
  margin-bottom: 10px;
}
.slider .item .contents .time {
  color: #919573;
  font-family: "Cinzel", serif;
  font-size: 16px;
}
.slider .slick-dots {
  bottom: -70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider .slick-dots li button:before {
  opacity: 0.2;
  color: #fff;
  content: "";
  width: 30px;
  height: 2px;
  background: #fff;
  margin: 0 2px;
}
.slider .slick-dots li {
  width: 23px;
}
.slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}
.slider .slick-prev:before {
  opacity: 1;
  content: "";
}
.slider .slick-next:before {
  opacity: 1;
  content: "";
}
.slider .slick-prev {
  width: 40px;
  height: 40px;
  background: #DADADA;
  border-radius: 50%;
  color: #081217;
  z-index: 10;
}
@media screen and (min-width: 1001px) {
  .slider .slick-prev {
    left: initial;
    right: 50px;
    top: 120%;
  }
}
@media screen and (max-width: 1000px) {
  .slider .slick-prev {
    width: 30px;
    height: 30px;
    left: -10px;
  }
}
.slider .slick-prev::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
          transform: translate(-50%, -50%) rotate(45deg) !important;
  position: absolute;
  left: 55%;
  top: 50%;
}
.slider .slick-next {
  width: 40px;
  height: 40px;
  background: #DADADA;
  border-radius: 50%;
  color: #081217;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .slider .slick-next {
    width: 30px;
    height: 30px;
    right: -10px;
  }
}
@media screen and (min-width: 1001px) {
  .slider .slick-next {
    right: 0;
    top: 120%;
  }
}
.slider .slick-next::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
          transform: translate(-50%, -50%) rotate(45deg) !important;
  position: absolute;
  left: 45%;
  top: 50%;
}

.top1 .btn,
.top2 .btn {
  margin-top: 120px;
}
@media screen and (max-width: 1000px) {
  .top1 .btn,
  .top2 .btn {
    margin-top: 70px;
  }
}

.top2 .section-title .section-title-flex {
  border-bottom: 1px solid #DADADA;
}
.top2 .section-title {
  margin-bottom: 40px;
}
.top2 .section-btn a {
  color: #081217;
  border-bottom: 0.5px solid #081217;
}
.top2 .slider .item .contents .title {
  color: #081217;
}
.top2 .age {
  font-size: 16px;
  color: #081217;
}
.top2 .price {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.top2 .price .text {
  font-size: 15px;
  color: #081217;
}
.top2 .price .text span {
  font-size: 28px;
  color: #9D1813;
  font-family: "Cinzel", serif;
  font-weight: 700;
}
.top2 .price .left {
  background: #DADADA;
  line-height: 1.1;
  color: #081217;
  font-size: 16px;
  padding: 2px 5px;
  margin-right: 10px;
}
.top2 .slider .item .contents {
  border-left: 0.5px solid #DADADA;
}
.top2 .slider .slick-dots li.slick-active button:before {
  color: #081217;
  background: #081217;
}
.top2 .slider .slick-dots li button:before {
  background: #292929;
}

.top3 .age {
  font-size: 16px;
  color: #081217;
  color: #fff;
}
.top3 .price {
  margin-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top3 .price .text {
  font-size: 15px;
  color: #fff;
}
.top3 .price .text span {
  font-size: 28px;
  color: #919573;
  font-family: "Cinzel", serif;
  font-weight: 700;
}
.top3 .price .left {
  background: #DADADA;
  line-height: 1.1;
  color: #081217;
  font-size: 16px;
  padding: 2px 5px;
  margin-right: 10px;
}

.slider .youtube-item .img .wrap {
  position: relative;
  padding-top: 56.25%;
}
.slider .youtube-item .img .wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-about-us {
  background: #F5F5F5;
}
@media screen and (min-width: 1001px) {
  .top-about-us {
    padding-bottom: 160px;
  }
}
.top-about-us .section-title .section-title-flex {
  border-bottom: 1px solid #DADADA;
}
.top-about-us .section-btn a {
  color: #081217;
  border-bottom: 0.5px solid #081217;
}
.top-about-us .flex4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 1001px) {
  .top-about-us .flex4 .section-title {
    width: 580px;
  }
}
@media screen and (min-width: 1001px) {
  .top-about-us .flex4 .btn {
    width: calc(100% - 580px);
  }
}
.top-about-us ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 150px;
}
@media screen and (max-width: 1000px) {
  .top-about-us ul {
    margin-top: 30px;
    display: block;
  }
}
.top-about-us ul li {
  width: 32%;
}
@media screen and (max-width: 1000px) {
  .top-about-us ul li {
    width: 32.5%;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
  .top-about-us ul li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1001px) {
  .top-about-us ul li:nth-child(1) {
    position: relative;
    top: -70px;
  }
  .top-about-us ul li:nth-child(3) {
    position: relative;
    top: 70px;
  }
}
.top-about-us .btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .top-about-us .btn {
    margin-top: 30px;
  }
}

.top-history {
  background: url(../img/top-history.jpg) no-repeat center center/cover;
  position: relative;
}
@media screen and (min-width: 1001px) {
  .top-history {
    left: 100px;
  }
}
.top-history::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: url(../img/top-history-bg.png) no-repeat center center/cover;
  width: 100%;
  height: 100%;
}
.top-history .inner {
  position: relative;
  z-index: 2;
}
.top-history .section-title {
  color: #fff;
}
.top-history .section-title .section-title-flex {
  border-bottom: 1px solid #DADADA !important;
}
.top-history .btn {
  margin-top: 150px;
}
@media screen and (max-width: 1000px) {
  .top-history .btn {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1001px) {
  .top-history .section-btn a {
    margin-right: auto;
    margin-left: initial;
  }
}

.top-gray-bg {
  background: #F5F5F5;
}

.top-service .section-title .section-title-flex {
  border-bottom: 1px solid #DADADA;
}
.top-service .btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .top-service .btn {
    margin-top: 30px;
  }
}
.top-service .section-btn a {
  color: #081217;
  border-bottom: 0.5px solid #081217;
}
.top-service ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .top-service ul {
    display: block;
  }
}
@media screen and (min-width: 1001px) {
  .top-service ul li {
    width: 33.3333%;
  }
  .top-service ul li:nth-child(n+4) {
    width: 50%;
  }
  .top-service ul li a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .top-service ul li a:hover {
    opacity: 0.6;
  }
}

.top-news {
  color: #081217;
}
.top-news .btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .top-news .btn {
    margin-top: 30px;
  }
}
.top-news .section-btn a {
  color: #081217;
  border-bottom: 0.5px solid #081217;
}
.top-news .section-title-flex {
  display: block;
}
.top-news .section-title-flex .ja {
  margin-left: 0;
}
.top-news .flex5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .top-news .flex5 {
    display: block;
  }
}
@media screen and (min-width: 1001px) {
  .top-news .flex5 .section-btn {
    width: 300px;
  }
  .top-news .flex5 ul {
    width: calc(100% - 300px);
  }
}
.top-news .flex5 ul li:first-child a {
  padding-top: 0;
}
.top-news .flex5 ul li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 15px 0;
  border-bottom: 1px solid #DADADA;
}
.top-news .flex5 ul li a:hover {
  opacity: 0.6;
}
.top-news .flex5 ul li a .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin-bottom: 7px;
}
.top-news .flex5 ul li a .info .time {
  margin-right: 20px;
}
.top-news .flex5 ul li a .info .cat {
  display: inline-block;
  color: #fff;
  background: #919573;
  padding: 3px 10px;
}
.top-news .flex5 ul li a h3 {
  font-size: 15px;
}

.top-access {
  position: relative;
  padding-bottom: 0;
}
@media screen and (max-width: 1000px) {
  .top-access {
    padding-top: 0;
  }
}
.top-access .wrap {
  position: relative;
  padding-top: 40%;
}
@media screen and (max-width: 1000px) {
  .top-access .wrap {
    padding-top: 80%;
  }
}
.top-access .wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-access .contents {
  position: absolute;
  left: 0;
  top: -30px;
  background: #081217;
  padding: 20px 60px;
  color: #fff;
  width: 660px;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .top-access .contents {
    position: initial;
    top: 0;
    width: 100%;
    padding: 20px;
  }
}
.top-access .section-title .section-title-flex {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.top-access .address {
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.top-access .address a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-access .address a:hover {
  opacity: 0.6;
}
.top-access .address span {
  font-size: 16px;
  display: inline-block;
}
.top-access .box {
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  font-size: 15px;
}
.top-access .box span {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .top-access .box span {
    font-size: 11px;
  }
}
@media screen and (max-width: 1000px) {
  .top-access .box {
    font-size: 16px;
  }
}
.top-access .box:last-child {
  margin-bottom: 0;
}

.common-sec {
  padding: 30px 0;
  background: url(../img/common-bg.jpg) no-repeat center center/cover;
}
.common-sec ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .common-sec ul {
    display: block;
  }
}
.common-sec ul li {
  width: 32%;
}
@media screen and (max-width: 1000px) {
  .common-sec ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .common-sec ul li:last-child {
    margin-bottom: 0;
  }
}
.common-sec ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.common-sec ul li a:hover {
  opacity: 0.6;
}

.common-heading {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .common-heading {
    height: 350px;
  }
  .common-heading img {
    height: 350px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.common-heading::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.4);
}
.common-heading::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../img/common-heading-bg.png) no-repeat center center/cover;
}
.common-heading .l-inner {
  position: relative;
  z-index: 2;
}
.common-heading .contents {
  position: absolute;
  left: 0;
  bottom: 10%;
  width: 100%;
}
.common-heading .contents .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 1000px) {
  .common-heading .contents .title {
    display: block;
  }
}
.common-heading .contents .title .en {
  color: #919573;
  font-family: "Cinzel", serif;
  font-size: 56px;
}
@media screen and (max-width: 1000px) {
  .common-heading .contents .title .en {
    font-size: 32px;
    line-height: 1.3;
  }
}
.common-heading .contents .title .ja {
  color: #fff;
  font-size: 24px;
  margin-left: 20px;
}
@media screen and (max-width: 1000px) {
  .common-heading .contents .title .ja {
    font-size: 18px;
    margin-left: 0;
    line-height: 1.3;
  }
}

.bread {
  padding: 20px 0;
}
.bread.black {
  background: #081217;
}
.bread.black a,
.bread.black span {
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .bread {
    padding: 5px 0 10px;
  }
}
.bread a,
.bread span {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .bread a,
  .bread span {
    font-size: 10px;
  }
}
.bread a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.bread a:hover {
  opacity: 0.6;
}

.news-archive ul {
  max-width: 920px;
  margin: 0 auto;
}
.news-archive ul li:first-child a {
  padding-top: 0;
}
.news-archive ul li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #DADADA;
}
@media screen and (max-width: 1000px) {
  .news-archive ul li a {
    display: block;
  }
}
.news-archive ul li a:hover {
  opacity: 0.6;
}
.news-archive ul li a .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin-bottom: 7px;
}
@media screen and (min-width: 1001px) {
  .news-archive ul li a .info {
    width: 200px;
  }
}
.news-archive ul li a .info .time {
  margin-right: 20px;
}
.news-archive ul li a .info .cat {
  display: inline-block;
  color: #fff;
  background: #919573;
  padding: 3px 10px;
}
.news-archive ul li a h2 {
  font-size: 15px;
}
@media screen and (min-width: 1001px) {
  .news-archive ul li a h2 {
    width: calc(100% - 200px);
  }
}

.news-single .btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .news-single .btn {
    margin-top: 30px;
  }
}
.news-single .btn .section-btn a {
  color: #081217;
  margin: 0 auto;
  border-bottom: 0.5px solid #081217;
}
.news-single .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .news-single .info {
    margin-bottom: 20px;
  }
}
.news-single .info .time {
  font-size: 16px;
  margin-right: 20px;
}
.news-single .info .cat {
  display: inline-block;
  color: #fff;
  background: #919573;
  padding: 3px 10px;
  font-size: 15px;
}
.news-single h1 {
  font-size: 24px;
  line-height: 1.5;
  padding-bottom: 10px;
  border-bottom: 1px solid #DADADA;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .news-single h1 {
    margin-bottom: 20px;
    font-size: 22px;
  }
}
.news-single .contents {
  margin-top: 40px;
}
@media screen and (max-width: 1000px) {
  .news-single .contents {
    margin-top: 20px;
  }
}
.news-single .contents p {
  font-size: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .news-single .contents p {
    font-size: 16px;
  }
}
.news-single .contents h2,
.news-single .contents h3,
.news-single .contents h4,
.news-single .contents h5 {
  font-size: 20px;
  margin-bottom: 20px;
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .news-single .contents h2,
  .news-single .contents h3,
  .news-single .contents h4,
  .news-single .contents h5 {
    margin-top: 30px;
  }
}

.contact .lead {
  max-width: 870px;
  margin: 0 auto;
  margin-bottom: 50px;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .contact .lead {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
.contact .box {
  margin-bottom: 50px;
  padding: 40px 40px;
  background: #F5F5F5;
}
.contact .box:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  .contact .box {
    padding: 20px;
    margin-bottom: 20px;
  }
}
.contact .flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .contact .flex1 {
    display: block;
  }
}
.contact .flex1 .left1 {
  width: 55%;
}
@media screen and (max-width: 1000px) {
  .contact .flex1 .left1 {
    width: 100%;
    margin-bottom: 10px;
  }
}
.contact .flex1 .right1 {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .contact .flex1 .right1 {
    width: 100%;
  }
}
.contact .flex1 .right1 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact .flex1 .right1 a:hover {
  opacity: 0.6;
}
.contact .flex1 .right1 .box2 {
  background: #fff;
  padding: 30px 10px;
}
@media screen and (max-width: 1000px) {
  .contact .flex1 .right1 .box2 {
    padding: 15px 10px;
  }
}
.contact .flex1 .right1 .box2 .num {
  font-family: "Cinzel", serif;
  font-size: 30px;
}
@media screen and (max-width: 1000px) {
  .contact .flex1 .right1 .box2 .num {
    font-size: 26px;
  }
}
.contact .flex1 .right1 .box2 .tel-icon {
  width: 40px;
  margin-right: 15px;
}
@media screen and (max-width: 1000px) {
  .contact .flex1 .right1 .box2 .tel-icon {
    width: 35px;
    margin-right: 10px;
  }
}
.contact .title {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .contact .title {
    margin-bottom: 20px;
  }
}
.contact .title .en {
  font-family: "Cinzel", serif;
  color: #919573;
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .contact .title .en {
    font-size: 16px;
  }
}
.contact .title .ja {
  font-size: 30px;
}
@media screen and (max-width: 1000px) {
  .contact .title .ja {
    font-size: 20px;
  }
}
.contact p {
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .contact p {
    font-size: 16px;
  }
}
.contact .contact-wrap {
  margin-top: 80px;
}
@media screen and (max-width: 1000px) {
  .contact .contact-wrap {
    margin-top: 40px;
  }
}
.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .contact .row {
    display: block;
    margin-bottom: 15px;
  }
}
.contact .row .dt {
  width: 320px;
  text-align: right;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .contact .row .dt {
    text-align: left;
  }
}
.contact .row .dt .required {
  color: #fff;
  background: #CA1818;
  display: inline-block;
  font-size: 10px;
  padding: 3px 6px;
  position: relative;
  top: -2px;
  margin-left: 10px;
}
.contact .row .dt .required.no {
  background: #797979;
}
@media screen and (max-width: 1000px) {
  .contact .row .dt {
    width: 100%;
    margin-bottom: 5px;
  }
}
.contact .row .dd {
  width: calc(100% - 360px);
}
@media screen and (max-width: 1000px) {
  .contact .row .dd {
    width: 100%;
  }
}
.contact .textarea {
  -webkit-box-align: initial !important;
      -ms-flex-align: initial !important;
          align-items: initial !important;
}
.contact .textarea .dt {
  position: relative;
  top: 10px;
}
@media screen and (max-width: 1000px) {
  .contact .textarea .dt {
    top: 0;
  }
}
.contact textarea {
  height: 200px;
  resize: none;
}
.contact .submit {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .contact .submit {
    margin-top: 40px;
  }
}
.contact .submit .wrap {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}
.contact .submit .wrap .arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  width: 24px;
  z-index: 2;
}
.contact input[type=submit] {
  max-width: 320px;
  width: 100%;
  padding: 15px 20px;
  background: #081217;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.contact input[type=submit]:hover {
  opacity: 0.6;
}

.company .profile-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #DADADA;
  padding: 15px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.company .profile-item:first-child {
  border-top: 1px solid #DADADA;
}
.company .profile-item h3 {
  width: 300px;
  font-weight: 500;
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .company .profile-item h3 {
    font-size: 16px;
    width: 130px;
  }
}
.company .profile-item .dd {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1000px) {
  .company .profile-item .dd {
    font-size: 16px;
    width: calc(100% - 130px);
  }
}

.feature1 {
  background: url(../img/feature1.jpg) no-repeat center center/cover;
}
.feature1 .box {
  background: rgba(255, 255, 255, 0.8);
  padding: 60px 40px;
  line-height: 1.8;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .feature1 .box {
    padding: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .feature1 .box {
    font-size: 16px;
  }
}

.feature2 {
  background: #F5F5F5;
}
.feature2 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .feature2 ul li {
    display: block;
    margin-bottom: 10px;
  }
  .feature2 ul li:last-child {
    margin-bottom: 0;
  }
}
.feature2 ul li .img {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .feature2 ul li .img {
    width: 100%;
  }
}
.feature2 ul li .contents {
  width: 50%;
  background: #081217;
  color: #fff;
  padding: 40px 40px 40px;
}
@media screen and (max-width: 1000px) {
  .feature2 ul li .contents {
    width: 100%;
    padding: 20px;
  }
}
.feature2 ul li:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.feature2 ul li h3 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .feature2 ul li h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.feature2 ul li p {
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .feature2 ul li p {
    font-size: 16px;
  }
}

.feature3 .title {
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .feature3 .title {
    margin-bottom: 30px;
  }
}
.feature3 .title .en {
  font-family: "Cinzel", serif;
  color: #919573;
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .feature3 .title .en {
    font-size: 16px;
  }
}
.feature3 .title .ja {
  font-size: 30px;
}
@media screen and (max-width: 1000px) {
  .feature3 .title .ja {
    font-size: 20px;
  }
}
.feature3 .box {
  background: url(../img/img_bg_CTA.jpg) no-repeat center center/cover;
  padding: 30px 60px;
  color: #fff;
}
.feature3 .box a {
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .feature3 .box {
    padding: 20px;
  }
}
.feature3 .section-btn a {
  margin-right: auto;
  margin-left: initial;
}
@media screen and (max-width: 1000px) {
  .feature3 .section-btn a {
    margin-left: auto;
  }
}

.history1 {
  background: #081217;
  color: #fff;
}
.history1 h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .history1 h2 {
    font-size: 18px;
  }
}
.history1 h2 .wrap {
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .history1 h2 .wrap {
    padding-bottom: 10px;
  }
}
.history1 .text1 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .history1 .text1 {
    text-align: left;
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.history1 .flex1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .history1 .flex1 {
    margin-bottom: 30px;
  }
}
.history1 .flex1 li {
  width: 48%;
}
.history1 .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .history1 .flex2 {
    display: block;
  }
}
.history1 .flex2 .left {
  width: 65%;
}
@media screen and (max-width: 1000px) {
  .history1 .flex2 .left {
    width: 100%;
    margin-bottom: 20px;
  }
}
.history1 .flex2 .right {
  width: 30%;
}
@media screen and (max-width: 1000px) {
  .history1 .flex2 .right {
    width: 50%;
    margin: 0 auto;
  }
}
.history1 .flex2 h2 {
  text-align: left;
}
.history1 .flex2 p {
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .history1 p {
    font-size: 16px;
  }
}

.about-us-sec {
  background: #F5F5F5;
}

.history2 {
  color: #fff;
  background: url(../img/history2-bg.jpg) no-repeat center center/cover;
}
.history2 h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .history2 h2 {
    font-size: 18px;
  }
}
.history2 h2 .wrap {
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .history2 h2 .wrap {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .history2 p {
    font-size: 16px;
  }
}
.history2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .history2 .flex {
    display: block;
  }
}
.history2 .flex .right {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .history2 .flex .right {
    width: 100%;
  }
}
.history2 .flex .left {
  width: 55%;
}
@media screen and (max-width: 1000px) {
  .history2 .flex .left {
    width: 100%;
    margin-bottom: 20px;
  }
}

.history3 {
  color: #fff;
  background: #081217;
}
.history3 h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .history3 h2 {
    font-size: 18px;
  }
}
.history3 h2 .wrap {
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .history3 h2 .wrap {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .history3 p {
    font-size: 16px;
  }
}
.history3 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .history3 .flex {
    display: block;
  }
}
.history3 .flex .right {
  width: 37%;
}
@media screen and (max-width: 1000px) {
  .history3 .flex .right {
    width: 100%;
  }
}
.history3 .flex .left {
  width: 57%;
}
@media screen and (max-width: 1000px) {
  .history3 .flex .left {
    width: 100%;
    margin-bottom: 20px;
  }
}

p {
  line-height: 1.8;
}
@media screen and (max-width: 1000px) {
  p {
    font-size: 16px;
  }
}

.voice .section-title .section-title-flex {
  border-bottom: 1px solid #DADADA;
}
.voice p {
  border-left: 1px solid #919573;
  padding: 0 20px;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .voice p {
    font-size: 16px;
    padding: 0 15px;
  }
}
.voice .img {
  margin-bottom: 20px;
}
.voice .item {
  padding: 0 20px;
}
@media screen and (max-width: 1000px) {
  .voice .item {
    padding: 0 10px;
  }
}

.going {
  background: #081217;
  color: #fff;
}
.going .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .going .flex {
    display: block;
  }
}
.going .flex .item {
  width: 50%;
  background: rgba(255, 255, 255, 0.15);
  padding: 40px;
}
@media screen and (max-width: 1000px) {
  .going .flex .item {
    padding: 20px;
    width: 100%;
    margin-bottom: 10px;
  }
  .going .flex .item:last-child {
    margin-bottom: 0;
  }
}
.going .flex .en {
  color: #919573;
  font-family: "Cinzel", serif;
}
.going .flex .ja {
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .going .flex .ja {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.going .flex p {
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .going .flex p {
    font-size: 16px;
  }
}

.message {
  color: #fff;
  position: relative;
}
.message::after {
  position: absolute;
  content: "";
  left: 0%;
  width: 80%;
  background: #081217;
  top: 7%;
  height: 85%;
}
@media screen and (max-width: 1000px) {
  .message::after {
    width: 100%;
    top: 0;
    height: 100%;
  }
}
.message .inner {
  position: relative;
  z-index: 1;
}
.message .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .message .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.message .flex .img {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .message .flex .img {
    margin: 0 auto 20px;
    width: 70%;
  }
}
.message .flex .contents {
  width: 55%;
}
@media screen and (max-width: 1000px) {
  .message .flex .contents {
    width: 100%;
  }
}
.message p {
  font-size: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .message p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.message .name {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .message .name {
    font-size: 14px;
  }
}
.message .name span {
  font-size: 18px;
  display: inline-block;
  margin-left: 30px;
}
@media screen and (max-width: 1000px) {
  .message .name span {
    font-size: 16px;
  }
}

.feature3 .lead {
  font-size: 15px;
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  .feature3 .lead {
    font-size: 16px;
  }
}

.history4 .box {
  background: url(../img/img_bg_CTA2.jpg) no-repeat center center/cover;
}

.paint2 .section-title .section-title-flex {
  border-bottom: 1px solid #DADADA;
}
.paint2 .box {
  padding: 60px;
  background: #F5F5F5;
}
@media screen and (max-width: 1000px) {
  .paint2 .box {
    padding: 20px;
  }
}
.paint2 .box ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.paint2 .box ul li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  .paint2 .box ul li {
    display: block;
    margin-bottom: 30px;
  }
}
.paint2 .box ul li .img {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .paint2 .box ul li .img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.paint2 .box ul li .contents {
  width: 55%;
}
@media screen and (max-width: 1000px) {
  .paint2 .box ul li .contents {
    width: 100%;
  }
}
.paint2 .box ul li .contents h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .paint2 .box ul li .contents h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.paint2 .box ul li .contents p {
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .paint2 .box ul li .contents p {
    font-size: 16px;
  }
}

.paint3 {
  padding-top: 0;
}

.service1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .service1 .flex {
    display: block;
  }
}
.service1 .flex .contents {
  width: 47%;
}
@media screen and (max-width: 1000px) {
  .service1 .flex .contents {
    width: 100%;
    margin-bottom: 15px;
  }
}
.service1 .flex .contents h2 {
  padding-bottom: 30px;
  border-bottom: 1px solid #919573;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .service1 .flex .contents h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
}
.service1 .flex .contents h2 .ja {
  font-size: 32px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .service1 .flex .contents h2 .ja {
    font-size: 24px;
  }
}
.service1 .flex .contents h2 .en {
  color: #919573;
  font-family: "Cinzel", serif;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .service1 .flex .contents h2 .en {
    font-size: 16px;
  }
}
.service1 .flex .img {
  width: 47%;
}
@media screen and (max-width: 1000px) {
  .service1 .flex .img {
    width: 100%;
  }
}
.service1 p {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .service1 p {
    font-size: 16px;
  }
}

.service2 {
  background: #081217;
  color: #fff;
}
.service2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .service2 ul {
    display: block;
  }
}
@media screen and (min-width: 1001px) {
  .service2 ul li {
    width: calc(50% - 20px);
    margin-right: 40px;
  }
  .service2 ul li:nth-child(2n) {
    margin-right: 0;
  }
  .service2 ul li:nth-child(n+3) {
    margin-top: 80px;
  }
}
@media screen and (max-width: 1000px) {
  .service2 ul li {
    margin-bottom: 30px;
  }
  .service2 ul li:last-child {
    margin-bottom: 0;
  }
}
.service2 ul li .img {
  margin-bottom: 10px;
}
.service2 ul li .en {
  font-size: 16px;
  color: #919573;
  font-family: "Cinzel", serif;
}
@media screen and (max-width: 1000px) {
  .service2 ul li .en {
    font-size: 16px;
  }
}
.service2 ul li h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .service2 ul li h3 {
    font-size: 18px;
  }
}
.service2 ul li p {
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .service2 ul li p {
    font-size: 16px;
  }
}
.service2 ul li .btn {
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.service2 ul li .btn a {
  color: #fff;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service2 ul li .btn a:hover {
  opacity: 0.6;
}
.service2 ul li .btn a .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service2 ul li .btn a .arrow {
  width: 24px;
}

.service-page2 {
  background: #F5F5F5;
}
.service-page2 .section-title .section-title-flex {
  border-bottom: 1px solid #DADADA;
}
.service-page2 ul li .contents {
  background: #fff;
  color: #081217;
}

.service-page1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .service-page1 .flex {
    display: block;
  }
}
.service-page1 .flex .img {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .service-page1 .flex .img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.service-page1 .flex .contents {
  width: 55%;
}
@media screen and (max-width: 1000px) {
  .service-page1 .flex .contents {
    width: 100%;
  }
}
.service-page1 h2 {
  font-size: 32px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .service-page1 h2 {
    font-size: 18px;
  }
}
.service-page1 h2 .wrap {
  padding-bottom: 20px;
  border-bottom: 1px solid #DADADA;
  display: block;
}
@media screen and (max-width: 1000px) {
  .service-page1 h2 .wrap {
    padding-bottom: 10px;
  }
}
.service-page1 p {
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .service-page1 p {
    font-size: 16px;
  }
}

.flow {
  background: #081217;
  color: #fff;
}
.flow ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .flow ul li {
    display: block;
    margin-bottom: 20px;
  }
}
.flow ul li:last-child {
  margin-bottom: 0;
}
.flow ul li .step {
  font-family: "Cinzel", serif;
  width: 110px;
  color: #919573;
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .flow ul li .step {
    width: 100%;
  }
}
.flow ul li .step span {
  font-size: 40px;
  margin-left: 2px;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .flow ul li .step span {
    font-size: 26px;
  }
}
.flow ul li .contents {
  width: calc(100% - 110px);
  background: rgba(255, 255, 255, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .flow ul li .contents {
    width: 100%;
    display: block;
  }
}
.flow ul li .contents .right {
  width: 33%;
}
@media screen and (max-width: 1000px) {
  .flow ul li .contents .right {
    width: 100%;
  }
}
.flow ul li .contents .right .wrap {
  width: 100%;
  padding-top: 62%;
  position: relative;
}
.flow ul li .contents .right .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow ul li .contents .left {
  width: 67%;
  padding: 30px 40px;
}
@media screen and (max-width: 1000px) {
  .flow ul li .contents .left {
    width: 100%;
    padding: 20px;
  }
}
.flow ul li .contents .left h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .flow ul li .contents .left h3 {
    margin-bottom: 10px;
  }
}
.flow ul li .contents .left p {
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .flow ul li .contents .left p {
    font-size: 16px;
  }
}

.ser1 .box {
  background: url(../img/ser1-bg.jpg) no-repeat center center/cover;
}

.case .section-title {
  border-bottom: 1px solid #DADADA;
}

.case-archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.case-archive a {
  color: #081217;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.case-archive a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 1001px) {
  .case-archive li {
    width: calc(33.333% - 26.6666666667px);
    margin-right: 40px;
  }
  .case-archive li:nth-child(3n) {
    margin-right: 0;
  }
  .case-archive li:nth-child(n+4) {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .case-archive li {
    width: 100%;
    margin-bottom: 30px;
  }
  .case-archive li:last-child {
    margin-bottom: 0;
  }
}
.case-archive li .img {
  margin-bottom: 20px;
}
.case-archive li .contents {
  padding: 0px 15px 0;
}
.case-archive li .contents .cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
.case-archive li .contents .cats .cat {
  font-size: 16px;
}
.case-archive li .contents .title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #081217;
}
.case-archive li .contents .time {
  color: #919573;
  font-family: "Cinzel", serif;
  font-size: 16px;
}

.case .btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .case .btn {
    margin-top: 30px;
  }
}
.case .btn .section-btn a {
  color: #081217;
  border-bottom: 0.5px solid #081217;
}

.top3 .main-title {
  color: #fff;
  font-size: 24px;
  margin-left: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .top3 .main-title {
    font-size: 22px;
    margin-left: 0;
  }
}
.top3 .main-title .wrap {
  display: inline-block;
  position: relative;
}
.top3 .main-title .wrap::after {
  position: absolute;
  top: 50%;
  left: 110%;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1px;
  width: 1000px;
  background: rgba(255, 255, 255, 0.4);
}
.top3 .area {
  margin-bottom: 120px;
}
@media screen and (max-width: 1000px) {
  .top3 .area {
    margin-bottom: 100px;
  }
}
.section-title-white .section-title-flex {
  border-bottom: 1px solid #DADADA;
}

.rental1 {
  background: #F5F5F5;
}
.rental1 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .rental1 ul {
    display: block;
  }
}
.rental1 ul li {
  width: 31%;
}
@media screen and (max-width: 1000px) {
  .rental1 ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .rental1 ul li:last-child {
    margin-bottom: 0;
  }
}
.rental1 ul li .contents {
  padding: 20px;
  background: #fff;
}
.rental1 ul li .contents .en {
  font-family: "Cinzel", serif;
  color: #919573;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .rental1 ul li .contents .en {
    font-size: 16px;
  }
}
.rental1 ul li .contents .heading {
  border-bottom: 1px solid #DADADA;
}
.rental1 ul li .contents h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.rental1 ul li p {
  font-size: 15px;
  margin-top: 10px;
}
@media screen and (max-width: 1000px) {
  .rental1 ul li p {
    font-size: 16px;
  }
}

.top3 .cat-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .top3 .cat-cat {
    margin-bottom: 30px;
  }
}
.top3 .cat-cat .left {
  margin-right: 20px;
}
.top3 .cat-cat .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 1000px) {
  .top3 .cat-cat .right ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.top3 .cat-cat .right li {
  height: 80px;
}
@media screen and (max-width: 1000px) {
  .top3 .cat-cat .right li {
    height: 40px;
  }
}
.top3 .cat-cat .right li img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1000px) {
  .top3 .cat-cat .right li img {
    height: 40px;
  }
}

.rental3 .img {
  overflow-x: auto;
}
@media screen and (max-width: 1000px) {
  .rental3 .img .wrap {
    width: 800px;
    overflow-x: auto;
    margin-right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .rental3 .inner-r-o {
    padding-right: 0;
  }
}

.rental-flow {
  background: #F5F5F5;
}
.rental-flow li {
  background: #fff;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .rental-flow li {
    display: block;
    padding: 20px;
  }
}
.rental-flow li .left {
  padding-right: 20px;
  border-right: 1px solid #DADADA;
}
@media screen and (max-width: 1000px) {
  .rental-flow li .left {
    border-bottom: 1px solid #DADADA;
    border-right: none;
  }
}
@media screen and (max-width: 1000px) {
  .rental-flow li {
    margin-bottom: 20px;
  }
}
.rental-flow li:last-child {
  margin-bottom: 0;
}
.rental-flow p {
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .rental-flow p {
    font-size: 16px;
  }
}
.rental-flow .step {
  background: #919573;
  font-size: 18px;
  color: #fff;
  font-family: "Cinzel", serif;
  padding: 3px 20px;
  margin-right: 20px;
}
@media screen and (max-width: 1000px) {
  .rental-flow .step {
    font-size: 16px;
  }
}
.rental-flow .step span {
  font-size: 200%;
}
.rental-flow h3 {
  font-size: 20px;
}
@media screen and (max-width: 1000px) {
  .rental-flow h3 {
    font-size: 18px;
  }
}
.rental-flow .left {
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 1000px) {
  .rental-flow .left {
    width: 100%;
    padding-bottom: 10px;
  }
}
.rental-flow .right {
  width: calc(100% - 250px);
}
@media screen and (max-width: 1000px) {
  .rental-flow .right {
    width: 100%;
    padding-top: 10px;
  }
}
@media screen and (min-width: 1001px) {
  .rental-flow .right {
    margin-left: 20px;
  }
}
.rental-flow .btn {
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .rental-flow .btn {
    text-align: center;
  }
}
.rental-flow .btn a {
  background: #081217;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 250px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
}
@media screen and (max-width: 1000px) {
  .rental-flow .btn a {
    margin-left: auto;
    margin-right: auto;
  }
}
.rental-flow .btn a:hover {
  opacity: 0.6;
}
.rental-flow .btn a .arrow {
  width: 25px;
  display: inline-block;
  margin-left: 20px;
}
.rental-flow .img {
  max-width: 200px;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .rental-flow .img {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

html {
  scroll-behavior: smooth;
}

#id1 {
  position: relative;
  top: -75px;
}
@media screen and (max-width: 1000px) {
  #id1 {
    top: -65px;
  }
}

.case-other {
  background: #F5F5F5;
}

.newused1 {
  background: #F5F5F5;
}
.newused1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  padding: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .newused1 .flex {
    padding: 20px;
    display: block;
  }
}
.newused1 .flex .left {
  width: 300px;
  text-align: center;
}
.newused1 .flex .left .en {
  color: #919573;
  font-size: 30px;
}
.newused1 .flex .left .ja {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .newused1 .flex .left {
    margin-bottom: 15px;
    width: 100%;
  }
}
.newused1 .flex .right {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1000px) {
  .newused1 .flex .right {
    width: 100%;
  }
}
.newused1 .flex .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .newused1 .flex .right ul {
    display: block;
  }
}
.newused1 .flex .right ul li {
  width: 31%;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .newused1 .flex .right ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .newused1 .flex .right ul li:last-child {
    margin-bottom: 0;
  }
}
.newused1 .flex .right ul a {
  padding-bottom: 10px;
  border-bottom: 1px solid #081217;
  display: block;
  text-align: left;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.newused1 .flex .right ul a:hover {
  opacity: 0.6;
}
.newused1 .flex .right ul a span {
  display: inline-block;
  width: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.used-lists li {
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .used-lists li {
    margin-bottom: 50px;
  }
}
.used-lists li:last-child {
  margin-bottom: 0;
}
.used-lists li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .used-lists li .flex {
    display: block;
  }
}
.used-lists li .flex .img {
  width: 45%;
}
@media screen and (max-width: 1000px) {
  .used-lists li .flex .img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.used-lists li .flex .img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.used-lists li .flex .contents {
  width: 52%;
}
@media screen and (max-width: 1000px) {
  .used-lists li .flex .contents {
    width: 100%;
  }
}
.used-lists li .flex .contents h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.used-lists li .flex .contents .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 10px;
}
.used-lists li .flex .contents .price .span1 {
  background: #DADADA;
  padding: 2px 5px;
}
@media screen and (max-width: 1000px) {
  .used-lists li .flex .contents .price .span1 {
    font-size: 14px;
  }
}
.used-lists li .flex .contents .price .span2 {
  margin-left: 10px;
  font-family: "Cinzel", serif;
  color: #9D1813;
  font-weight: 700;
  font-size: 36px;
  margin-right: 10px;
}
@media screen and (max-width: 1000px) {
  .used-lists li .flex .contents .price .span2 {
    font-size: 27px;
  }
}
.used-lists li .flex .contents .price .span3 {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .used-lists li .flex .contents .price .span3 {
    font-size: 11px;
  }
}
.used-lists li .flex .contents .info-lists {
  margin-bottom: 20px;
}
.used-lists li .flex .contents .info-lists .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #DADADA;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 15px;
  padding: 6px 0;
}
.used-lists li .flex .contents .info-lists .row:last-child {
  border-bottom: 1px solid #DADADA;
}
@media screen and (max-width: 1000px) {
  .used-lists li .flex .contents .info-lists .row {
    font-size: 14px;
  }
}
.used-lists li .flex .contents .info-lists .row .dt {
  margin-right: 20px;
}
.used-lists li .flex .btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.used-lists li .flex .btn-area .btn {
  width: 48%;
  white-space: nowrap;
}
.used-lists li .flex .btn-area .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  font-size: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .used-lists li .flex .btn-area .btn a {
    font-size: 11px;
  }
}
.used-lists li .flex .btn-area .btn .arrow {
  width: 24px;
}
@media screen and (max-width: 1000px) {
  .used-lists li .flex .btn-area .btn .arrow {
    width: 15px;
  }
}
.used-lists li .flex .btn-area .btn1 a {
  background: #081217;
  color: #fff;
}
.used-lists li .flex .btn-area .btn1 a .arrow {
  width: 27px;
}
@media screen and (max-width: 1000px) {
  .used-lists li .flex .btn-area .btn1 a .arrow {
    width: 18px;
  }
}
.used-lists li .flex .btn-area .btn2 a {
  border: 1px solid #081217;
}

.newused2 .sub-title {
  display: inline-block;
  border-bottom: 1px solid #081217;
  font-size: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .newused2 .sub-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.newused3 {
  background: #F5F5F5;
}
.newused3 .sub-title {
  display: inline-block;
  border-bottom: 1px solid #081217;
  font-size: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .newused3 .sub-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.flex-cat23 {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  padding: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .flex-cat23 {
    padding: 20px;
    display: block;
    margin-bottom: 20px;
  }
}
.flex-cat23 .left {
  width: 300px;
  text-align: center;
}
.flex-cat23 .left .en {
  color: #919573;
  font-size: 30px;
}
.flex-cat23 .left .ja {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .flex-cat23 .left {
    margin-bottom: 15px;
    width: 100%;
  }
}
.flex-cat23 .right {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1000px) {
  .flex-cat23 .right {
    width: 100%;
  }
}
.flex-cat23 .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex-cat23 .right ul li {
  margin-right: 7px;
  margin-bottom: 7px;
}
.flex-cat23 .right ul a,
.flex-cat23 .right ul span {
  border: 1px solid #081217;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 5px 10px;
  display: block;
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .flex-cat23 .right ul a,
  .flex-cat23 .right ul span {
    font-size: 14px;
  }
}
.flex-cat23 .right ul a:hover,
.flex-cat23 .right ul span:hover {
  opacity: 0.6;
}
.flex-cat23 .right ul a.active,
.flex-cat23 .right ul span.active {
  background: #919573;
  border: 1px solid #919573;
  color: #fff;
}
.flex-cat23 .right ul input[type=checkbox]:checked + span {
  background: #919573;
  border: 1px solid #919573;
  color: #fff;
}
.flex-cat23 .right ul input[type=checkbox] {
  opacity: 0;
  position: absolute;
  left: -1000%;
}

.reset {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.reset:hover {
  opacity: 0.6;
}

@media screen and (min-width: 1001px) {
  .flex-cat23 {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .flex-cat23 .right ul a,
  .flex-cat23 .right ul span {
    min-width: 120px;
    text-align: center;
  }
  .flex-cat23 .right ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .flex-cat23 {
    padding: 20px 20px 40px;
  }
}
.flex-cat23 .right {
  position: relative;
}
.flex-cat23 .right .reset {
  position: absolute;
  max-width: 150px;
  bottom: -35px;
  right: -10px;
}
@media screen and (max-width: 1000px) {
  .flex-cat23 .right .reset {
    max-width: 120px;
    bottom: -30px;
  }
}

.newused4 .img {
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .newused4 .img {
    margin-bottom: 20px;
  }
}
.newused4 h3 {
  font-size: 32px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .newused4 h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.newused4 h3 .wrap {
  padding-bottom: 20px;
  border-bottom: 1px solid #DADADA;
  display: block;
}
@media screen and (max-width: 1000px) {
  .newused4 h3 .wrap {
    padding-bottom: 10px;
  }
}
.newused4 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1000px) {
  .newused4 .flex {
    display: block;
  }
}
.newused4 .flex p {
  width: 55%;
}
@media screen and (max-width: 1000px) {
  .newused4 .flex p {
    width: 100%;
    margin-bottom: 20px;
  }
}
.newused4 .flex .btn {
  width: 40%;
  max-width: 300px;
}
@media screen and (max-width: 1000px) {
  .newused4 .flex .btn {
    width: 100%;
    margin: 0 auto;
  }
}
.newused4 .flex .btn a {
  background: #081217;
  color: #fff;
}
.newused4 .flex .btn a .arrow {
  width: 27px;
}
@media screen and (max-width: 1000px) {
  .newused4 .flex .btn a .arrow {
    width: 18px;
  }
}
.newused4 .flex .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  font-size: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .newused4 .flex .btn a {
    font-size: 11px;
  }
}
.newused4 .flex .btn .arrow {
  width: 24px;
}
@media screen and (max-width: 1000px) {
  .newused4 .flex .btn .arrow {
    width: 15px;
  }
}

.newused5 {
  background: #081217;
}
.newused5 .section-lead {
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .newused5 .section-lead {
    font-size: 16px;
  }
}
.newused5 .section-title {
  color: #fff;
}
.newused5 .flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .newused5 .flex2 {
    margin-bottom: 20px;
    display: block;
  }
}
.newused5 .flex2 p {
  width: 450px;
  color: #fff;
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .newused5 .flex2 p {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.newused5 .flex2 .flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 450px);
}
@media screen and (max-width: 1000px) {
  .newused5 .flex2 .flex3 {
    width: 100%;
  }
}
.newused5 .flex2 .flex3 .img {
  width: 48%;
}
.newused5 .box {
  background: #F5F5F5;
  padding: 60px 40px;
}
@media screen and (max-width: 1000px) {
  .newused5 .box {
    padding: 20px;
  }
}
.newused5 .sub-title {
  display: inline-block;
  border-bottom: 1px solid #081217;
  font-size: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .newused5 .sub-title {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.newused5 .ul1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .newused5 .ul1 {
    display: block;
  }
}
.newused5 .ul1 li {
  width: 31%;
  margin: 1%;
}
@media screen and (max-width: 1000px) {
  .newused5 .ul1 li {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
  }
  .newused5 .ul1 li:last-child {
    margin-bottom: 0;
  }
}
.newused5 .white-box {
  background: #fff;
  padding: 30px;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .newused5 .white-box {
    padding: 20px;
    margin-top: 30px;
  }
}
.newused5 .ul2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
  .newused5 .ul2 {
    display: block;
  }
}
.newused5 .ul2 li {
  width: 30%;
  margin: 1%;
}
@media screen and (max-width: 1000px) {
  .newused5 .ul2 li {
    width: 100%;
    margin: 0;
    margin-bottom: 40px;
  }
  .newused5 .ul2 li:last-child {
    margin-bottom: 0;
  }
}

.s-btn {
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .s-btn {
    margin-top: 30px;
  }
}
.s-btn a {
  background: #fff;
  color: #081217;
  display: block;
  padding: 10px;
  max-width: 300px;
  margin: 0 auto;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.s-btn a:hover {
  opacity: 0.6;
}
.s-btn a .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.s-btn a .flex .arrow {
  width: 20px;
}

.newused4 .flex .btn a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.newused4 .flex .btn a:hover {
  opacity: 0.6;
}

.custom1 {
  color: #fff;
  background: #081217;
}
.custom1 h2 {
  text-align: center;
  font-size: 30px;
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .custom1 h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.custom1 h2::after {
  position: absolute;
  bottom: -20px;
  width: 100px;
  height: 1px;
  background: #fff;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.custom1 p {
  text-align: center;
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .custom1 p {
    text-align: left;
    font-size: 16px;
  }
}

.custom2 {
  background: #081217;
}
.custom2 ul li .contents {
  background: #fff;
  color: #081217;
}
.custom2 .section-title .section-title-flex .ja {
  color: #fff;
}
.custom2 .lead {
  text-align: center;
  margin-top: 60px;
  font-size: 20px;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .custom2 .lead {
    margin-top: 30px;
    font-size: 16px;
    text-align: left;
  }
}

.case-archive li .contents .cats .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.case-archive li .contents .cats .cat .cat-item {
  margin-right: 5px;
  margin-bottom: 5px;
}

.common-heading2 .title {
  display: block !important;
}
.common-heading2 .contents .title .en {
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .common-heading2 .contents .title .en {
    font-size: 16px;
  }
}

.common-heading2 .contents .title .ja {
  padding-left: 0;
  margin-left: 0;
  font-size: 28px;
}
@media screen and (max-width: 1000px) {
  .common-heading2 .contents .title .ja {
    font-size: 20px;
  }
}

.single-custom1 {
  /* スマホでは下に横サムネ */
}
.single-custom1 .car-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-custom1 .main-slider {
  min-width: 0;
  /* slickのはみ出し防止 */
}
.single-custom1 .main-slider img {
  width: 100%;
  /* 好みで調整 */
}
.single-custom1 .thumb-slider img {
  width: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: block;
}
.single-custom1 .thumb-slider .slick-current img {
  opacity: 1;
}
@media (max-width: 768px) {
  .single-custom1 .car-gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .single-custom1 .thumb-slider {
    width: 100%;
  }
  .single-custom1 .thumb-slider .slick-slide {
    margin: 0 6px;
  }
  .single-custom1 .thumb-slider img {
    height: 80px;
  }
}
.single-custom1 .slick-prev:before,
.single-custom1 .slick-next:before {
  display: none;
}
.single-custom1 .img1 .wrap {
  padding-top: 70%;
  position: relative;
}
.single-custom1 .img1 .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-custom1 .img2 {
  margin: 6px 0;
}
@media screen and (max-width: 1000px) {
  .single-custom1 .img2 {
    margin-top: 20px;
  }
}
.single-custom1 .img2 .wrap {
  padding-top: 70%;
  position: relative;
}
.single-custom1 .img2 .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-custom1 .thumb-slider {
  width: 150px;
}
@media screen and (max-width: 1000px) {
  .single-custom1 .thumb-slider {
    width: 100%;
  }
}
.single-custom1 .main-slider {
  width: calc(100% - 160px);
}
@media screen and (max-width: 1000px) {
  .single-custom1 .main-slider {
    width: 100%;
    margin-bottom: 10px;
  }
}

.single-custom2 {
  background: #081217;
}
.single-custom2 .box {
  padding: 30px;
  background: #fff;
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .single-custom2 .box {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.single-custom2 .box:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1000px) {
  .single-custom2 .box {
    display: block;
  }
}
.single-custom2 .box:nth-child(2n) {
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
      -ms-flex-direction: initial;
          flex-direction: initial;
}
.single-custom2 .box .img {
  width: 45%;
}
@media screen and (max-width: 1000px) {
  .single-custom2 .box .img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.single-custom2 .box .contents {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .single-custom2 .box .contents {
    width: 100%;
  }
}
.single-custom2 .box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 1px solid #081217;
}
@media screen and (max-width: 1000px) {
  .single-custom2 .box h3 {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.single-custom2 .box p {
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .single-custom2 .box p {
    font-size: 16px;
  }
}
.single-custom2 .voice-box {
  margin-top: 60px;
  padding: 30px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #fff;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .single-custom2 .voice-box {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 20px;
    display: block;
  }
}
.single-custom2 .voice-box .img {
  width: 22%;
}
@media screen and (max-width: 1000px) {
  .single-custom2 .voice-box .img {
    width: 50%;
    margin: 0 auto;
  }
}
.single-custom2 .voice-box .contents {
  width: 75%;
}
@media screen and (max-width: 1000px) {
  .single-custom2 .voice-box .contents {
    width: 100%;
  }
}
.single-custom2 .voice-box .contents .title {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .single-custom2 .voice-box .contents .title {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
}
.single-custom2 .voice-box .contents .title .en {
  color: #919573;
  font-family: "Cinzel", serif;
  font-size: 35px;
  margin-right: 10px;
}
.single-custom2 .voice-box .contents .title p {
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .single-custom2 .voice-box .contents .title p {
    font-size: 16px;
  }
}

.btn-area-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn-area-c .btn {
  width: 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn-area-c .btn .arrow {
  width: 24px;
}
.btn-area-c .btn1 a {
  color: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1000px) {
  .btn-area-c .btn1 a {
    font-size: 14px;
  }
}
.btn-area-c .btn2 a {
  color: #081217;
  background: #fff;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #fff;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .btn-area-c .btn2 a {
    font-size: 14px;
  }
}

.btn-area-c2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn-area-c2 .btn {
  width: 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.btn-area-c2 .btn .arrow {
  width: 24px;
}
.btn-area-c2 .btn1 a {
  color: #081217;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #081217;
}
@media screen and (max-width: 1000px) {
  .btn-area-c2 .btn1 a {
    font-size: 14px;
  }
}
.btn-area-c2 .btn2 a {
  color: #fff;
  background: #081217;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #081217;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .btn-area-c2 .btn2 a {
    font-size: 14px;
  }
}
.btn-area-c2 a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-area-c2 a:hover {
  opacity: 0.6;
}

.single-rental1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .single-rental1 .flex {
    margin-bottom: 40px;
    display: block;
  }
}
.single-rental1 .flex .car-gallery {
  width: 55%;
  display: block;
}
@media screen and (max-width: 1000px) {
  .single-rental1 .flex .car-gallery {
    width: 100%;
    margin-bottom: 20px;
  }
}
.single-rental1 .flex .main-slider {
  width: 100%;
}
.single-rental1 .flex .contents {
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .single-rental1 .flex .contents {
    width: 100%;
  }
}
.single-rental1 .img2 {
  width: 20%;
}
.single-rental1 .thumb-slider2 {
  width: 100%;
  margin-top: 7px;
}
.single-rental1 .img2 {
  margin: 0 5px;
}

.common-hyou2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .common-hyou2 {
    margin-bottom: 30px;
  }
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  /* ←これで均等幅に */
}

.spec-table th {
  width: 33%;
  border: 1px solid #ddd;
  vertical-align: middle;
  text-align: center;
  padding: 10px;
  background: #919573;
  font-weight: 600;
  color: #fff;
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .spec-table th {
    font-size: 16px;
  }
}

.spec-table td {
  width: 67%;
  padding: 10px;
  border: 1px solid #ddd;
  vertical-align: middle;
  word-break: break-word;
  font-size: 15px;
}
@media screen and (max-width: 1000px) {
  .spec-table td {
    font-size: 16px;
  }
}

.single-rental1 .box24 {
  padding: 30px;
  background: #F5F5F5;
}
@media screen and (max-width: 1000px) {
  .single-rental1 .box24 {
    padding: 20px;
  }
}
.single-rental1 .box24 .flex23 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .single-rental1 .box24 .flex23 {
    display: block;
  }
}
.single-rental1 .box24 .flex23 .left {
  width: 300px;
}
@media screen and (max-width: 1000px) {
  .single-rental1 .box24 .flex23 .left {
    width: 100%;
    margin-bottom: 10px;
  }
}
.single-rental1 .box24 .flex23 .left .en {
  font-size: 30px;
  color: "Cinzel", serif;
  color: #919573;
}
@media screen and (max-width: 1000px) {
  .single-rental1 .box24 .flex23 .left .en {
    font-size: 24px;
  }
}
.single-rental1 .box24 .flex23 .left .ja {
  font-size: 18px;
}
@media screen and (max-width: 1000px) {
  .single-rental1 .box24 .flex23 .left .ja {
    font-size: 16px;
  }
}
.single-rental1 .box24 .flex23 .right {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1000px) {
  .single-rental1 .box24 .flex23 .right {
    width: 100%;
  }
}
.single-rental1 .box24 .flex23 .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-rental1 .box24 .flex23 .right ul li {
  width: 15%;
}

.rental-archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .rental-archive {
    display: block;
  }
}
.rental-archive a {
  color: #081217;
}
.rental-archive .item {
  width: 31%;
}
@media screen and (max-width: 1000px) {
  .rental-archive .item {
    width: 100%;
    margin-bottom: 20px;
  }
  .rental-archive .item:last-child {
    margin-bottom: 0;
  }
}
.rental-archive .img {
  margin-bottom: 20px;
}
.rental-archive .contents {
  padding: 0px 20px 0;
  color: #fff;
  border-left: 0.5px solid #DADADA;
}
.rental-archive .contents .cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
}
.rental-archive .contents .cats .cat {
  font-size: 16px;
}
.rental-archive .contents .title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #081217;
}
.rental-archive .contents .time {
  color: #919573;
  font-family: "Cinzel", serif;
  font-size: 16px;
}
.rental-archive .contents .age {
  color: #081217;
  font-size: 16px;
}
.rental-archive .contents .price {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.rental-archive .contents .price .text {
  font-size: 15px;
  color: #081217;
}
.rental-archive .contents .price .text span {
  font-size: 28px;
  color: #9D1813;
  font-family: "Cinzel", serif;
  font-weight: 700;
}
.rental-archive .contents .price .left {
  background: #DADADA;
  line-height: 1.1;
  color: #081217;
  font-size: 16px;
  padding: 2px 5px;
  margin-right: 10px;
}

.pagenation-common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .pagenation-common {
    margin-bottom: 30px;
  }
}
.pagenation-common .page-flex {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  width: 48%;
}
.pagenation-common .page-flex a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagenation-common .page-flex a:hover {
  opacity: 0.6;
}
.pagenation-common .page-flex .arrow {
  width: 24px;
  min-width: 24px;
}
@media screen and (max-width: 1000px) {
  .pagenation-common .page-flex .arrow {
    width: 20px;
    min-width: 20px;
  }
}
.pagenation-common .page-flex .thumbnail-img {
  width: 150px;
}
@media screen and (max-width: 1000px) {
  .pagenation-common .page-flex .thumbnail-img {
    width: 100px;
  }
}
.pagenation-common .page-flex .text {
  font-size: 16px;
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .pagenation-common .page-flex .text {
    font-size: 16px;
    display: none;
  }
}

.single-newused1 .contents {
  width: 52%;
}
@media screen and (max-width: 1000px) {
  .single-newused1 .contents {
    width: 100%;
  }
}
.single-newused1 .contents h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.single-newused1 .contents .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 10px;
}
.single-newused1 .contents .price .span1 {
  background: #DADADA;
  padding: 2px 5px;
}
@media screen and (max-width: 1000px) {
  .single-newused1 .contents .price .span1 {
    font-size: 14px;
  }
}
.single-newused1 .contents .price .span2 {
  margin-left: 10px;
  font-family: "Cinzel", serif;
  color: #9D1813;
  font-weight: 700;
  font-size: 36px;
  margin-right: 10px;
}
@media screen and (max-width: 1000px) {
  .single-newused1 .contents .price .span2 {
    font-size: 27px;
  }
}
.single-newused1 .contents .price .span3 {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  .single-newused1 .contents .price .span3 {
    font-size: 11px;
  }
}
.single-newused1 .contents .info-lists {
  margin-bottom: 20px;
}
.single-newused1 .contents .info-lists .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #DADADA;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 15px;
  padding: 6px 0;
}
.single-newused1 .contents .info-lists .row:last-child {
  border-bottom: 1px solid #DADADA;
}
@media screen and (max-width: 1000px) {
  .single-newused1 .contents .info-lists .row {
    font-size: 14px;
  }
}
.single-newused1 .contents .info-lists .row .dt {
  margin-right: 20px;
}
.single-newused1 .btn-area .btn {
  width: 100%;
  white-space: nowrap;
}
.single-newused1 .btn-area .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  font-size: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1000px) {
  .single-newused1 .btn-area .btn a {
    font-size: 11px;
  }
}
.single-newused1 .btn-area .btn .arrow {
  width: 24px;
}
@media screen and (max-width: 1000px) {
  .single-newused1 .btn-area .btn .arrow {
    width: 15px;
  }
}
.single-newused1 .btn-area .btn1 a {
  background: #081217;
  color: #fff;
}
.single-newused1 .btn-area .btn1 a .arrow {
  width: 27px;
}
@media screen and (max-width: 1000px) {
  .single-newused1 .btn-area .btn1 a .arrow {
    width: 18px;
  }
}
.single-newused1 .btn-area .btn2 {
  margin-bottom: 15px;
}
.single-newused1 .btn-area .btn2 a {
  border: 1px solid #081217;
}
.single-newused1 .box24 {
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .single-newused1 .box24 {
    margin-bottom: 30px;
  }
}

.car-btn {
  margin: 0 auto;
  margin-top: 50px;
  max-width: 400px;
}
@media screen and (max-width: 1000px) {
  .car-btn {
    margin-top: 30px;
  }
}
.car-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px;
  font-size: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.car-btn a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1000px) {
  .car-btn a {
    font-size: 11px;
  }
}
.car-btn .arrow {
  width: 24px;
}
@media screen and (max-width: 1000px) {
  .car-btn .arrow {
    width: 15px;
  }
}
.car-btn a {
  background: #fff;
  border: 1px solid #081217;
}
.car-btn a .arrow {
  width: 27px;
}
@media screen and (max-width: 1000px) {
  .car-btn a .arrow {
    width: 18px;
  }
}

.single-newused4 {
  padding-top: 0;
}
.single-newused4 .common-hyou2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 1000px) {
  .single-newused4 .common-hyou2 {
    display: block;
  }
}
.single-newused4 .common-hyou2 table {
  width: 50%;
}
@media screen and (max-width: 1000px) {
  .single-newused4 .common-hyou2 table {
    width: 100% !important;
  }
}

.check-kiyaku {
  text-align: center;
  margin-top: 10px;
}

#scrollable {
  overflow: auto;
  height: 300px;
  padding: 10px;
  background: #fff;
}

.kiyaku-title {
  text-align: center;
  margin-bottom: 20px;
}

.privacy h2 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 30px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 1000px) {
  .privacy h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 20px;
  }
}
.privacy p {
  margin-bottom: 10px;
}
@media screen and (max-width: 1000px) {
  .privacy p {
    font-size: 16px;
  }
}

.pagination {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 1000px) {
  .pagination {
    margin-top: 30px;
  }
}
.pagination a,
.pagination span {
  margin: 0 5px;
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: inline-block;
  border: 1px solid #081217;
  border-radius: 50%;
  line-height: 1.7;
}
.pagination span {
  background: #081217;
  color: #fff;
  font-weight: 700;
}
.pagination .next,
.pagination .prev {
  display: none !important;
}

.pagenation-common .page-flex .thumbnail-img img {
  height: 80px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider .item .contents .cats .cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.slider .item .contents .cats .cat .cat-item {
  margin-bottom: 6px;
  margin-right: 6px;
}

.slider .item .img .wrap {
  position: relative;
  padding-top: 52%;
}
.slider .item .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-archive li .img .wrap {
  position: relative;
  padding-top: 52%;
}
.case-archive li .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rental-archive a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rental-archive a:hover {
  opacity: 0.6 !important;
}

.rental-archive .img .wrap {
  position: relative;
  padding-top: 52%;
}
.rental-archive .img .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rental-archive .img a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.rental-archive .img a:hover {
  opacity: 0.6 !important;
}

.case-archive li .img {
  margin-bottom: 10px;
}

.case-archive li .contents .cats {
  margin-bottom: 5px;
}

@media screen and (min-width: 1001px) {
  .used-lists li .flex .img .wrap {
    position: relative;
    padding-top: 79%;
  }
  .used-lists li .flex .img .wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.single-rental2 {
  padding-top: 0;
}

.used-lists li .flex .img a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.used-lists li .flex .img a:hover {
  opacity: 0.6;
}

.used-lists li .flex .btn-area a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.used-lists li .flex .btn-area a:hover {
  opacity: 0.6;
}

.newused1 .flex .right ul a span {
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
}

.top-about1 ul li a .arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-about1 ul li a:hover .arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.service2 ul li .btn a .arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.service2 ul li .btn a:hover .arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.section-btn a .section-btn-arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section-btn a:hover .section-btn-arrow {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

@media screen and (max-width: 1000px) {
  .mv video {
    min-height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.footer .flex1 .right1 .item .ul1 li a {
  display: inline-block;
}

.footer .flex1 .right1 .ul2 li a {
  display: inline-block;
}

@media screen and (max-width: 1000px) {
  .top-header {
    background: #000;
  }
}
.single-rental1 .img2 img {
  border: 3px solid transparent;
}
.single-rental1 .img2.slick-current img {
  border: 3px solid #000;
}

.single-custom1 .img2 img {
  border: 3px solid transparent;
}
.single-custom1 .img2.slick-current img {
  border: 3px solid #000;
}

@media screen and (max-width: 1000px) {
  .single-custom1 .thumb-slider .slick-slide {
    margin: 0 3px;
  }
}
/* 横スクロールはこの要素で管理 */
.rental3 .img .wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  /* ← 横幅100%にしつつ、中の画像が大きいのでスクロールが出る */
}

/* 画像サイズ：スマホで横スクロールを発生させる */
.rental3 .img .wrap img {
  display: block;
  width: 900px;
  /* ← re3.png が900px以上ならその実寸でOK */
  max-width: none;
}

/* img コンテナは overflow 不要 */
.rental3 .img {
  overflow: visible;
}

.add-ul1119 .contents1121 {
  position: absolute;
  top: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
  padding: 0 40px;
}
@media screen and (max-width: 1000px) {
  .add-ul1119 .contents1121 {
    top: 30px;
    padding: 0 0px;
    max-width: 175px;
    margin: 0 auto;
  }
}
.add-ul1119 li {
  position: relative;
  color: #fff;
}
.add-ul1119 li h3 {
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 4px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) {
  .add-ul1119 li h3 {
    font-size: 16px;
  }
}
.add-ul1119 li .num01 {
  font-weight: 700;
  line-height: 1;
  font-size: 56px;
  font-family: "Cinzel", serif;
  background: -webkit-gradient(linear, left top, left bottom, from(#A2944E), color-stop(#D0C27B), to(#A2944E));
  background: linear-gradient(to bottom, #A2944E, #D0C27B, #A2944E);
  -webkit-background-clip: text;
  /* 文字で切り抜く */
  background-clip: text;
  color: transparent;
  /* 文字の塗りを透明に */
  display: inline-block;
  /* 念のため */
}
@media screen and (max-width: 1000px) {
  .add-ul1119 li .num01 {
    font-size: 40px;
  }
}
.add-ul1119 li .txt01 {
  text-align: right;
  font-size: 14px;
  margin-top: -10px;
}
@media screen and (max-width: 1000px) {
  .add-ul1119 li .txt01 {
    margin-top: -5px;
    font-size: 10px;
  }
}

.wpcf7-spinner {
  display: none !important;
}