@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img,
a svg {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

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

body * {
  max-height: 99999em;
  word-break: break-word;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

input,
label,
select,
button {
  line-height: inherit;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  word-break: normal;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  -webkit-appearance: none;
  font: inherit;
}

button {
  outline: none;
}

button:focus {
  outline: 0;
}

input:focus,
textarea:focus,
select:focus {
  outline: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  display: none;
}

textarea {
  overflow: auto;
  white-space: pre-line;
  resize: none;
}

@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
html {
  opacity: 1;
}
html.is-loading {
  transition: opacity 0.25s ease;
  opacity: 0;
}

body {
  color: #333;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  transition: opacity 0.3s ease;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  overflow-y: scroll;
}

a {
  color: #333;
  text-decoration: none;
}

.hidden {
  display: none;
}

.container {
  overflow: hidden;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

.font-barlow {
  font-family: "Barlow", sans-serif;
}

.font-bad-script {
  font-family: "Bad Script", cursive;
}

.trans {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.trans:hover {
  opacity: 0.6;
}

.sub-main {
  z-index: 1;
}
.sub-main:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: center/100% auto;
  z-index: -1;
}
.sub-main.garage-main:before {
  background-image: url(../img/common/header_bg_02.png);
}

@media print, (min-width: 768px) {
  body {
    font-size: 16px;
  }

  .sub-main {
    padding-right: 88px;
  }
  .sub-main:before {
    width: 240px;
    height: 0;
    background-image: url(../img/common/header_bg.png);
    opacity: 0;
    animation: headerLineAnim 0.8s ease 0.5s forwards;
  }

  .container {
    min-width: 1200px;
  }

  .wrapper {
    width: 992px;
    margin-left: auto;
    margin-right: auto;
  }

  .sm {
    display: none !important;
  }
}
@media only screen and (max-width: 767.98px) {
  html {
    font-size: calc(100vw / 3.75);
    min-height: 100vh;
  }

  body {
    font-size: 0.12rem;
  }

  .sub-main:before {
    background-image: url(../img/common/sp/header_bg.png);
    width: 1rem;
    height: 11.1rem;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }

  .md {
    display: none !important;
  }
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes clipTextAnim {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes textTevealerAnim {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes gradationAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes headerLineAnim {
  0% {
    opacity: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 900px;
  }
}
.image-map {
  text-align: center;
}

@media only screen and (max-width: 767.98px) {
  .image-map img {
    width: 100%;
  }
}
header {
  position: relative;
  z-index: 10;
  width: 100%;
  transition: 0.3s;
}
header a {
  display: inline-block;
}
header .block-left {
  display: -ms-flexbox;
  display: flex;
}
header .inner-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  transition: 0.3s;
}
header .header-logo {
  transition: 0.3s;
}
@media print, (min-width: 768px) {
  header.is-fixed {
    position: fixed;
  }
  header.is-fixed .inner-wrapper {
    background: #fff;
  }
  header.is-fixed .header-logo {
    width: 196px;
  }
  header.is-fixed .header-logo-ichiroku {
    width: 130px;
  }
}

.is-sub .header-different {
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
}
.is-sub .inner-different {
  position: absolute;
}
.is-sub .header-logo,
.is-sub .link-menu,
.is-sub .block-right,
.is-sub .button-menu,
.is-sub .block-social,
.is-sub .header-navigation {
  pointer-events: auto;
}
.is-sub .block-menu {
  position: absolute;
}
.is-sub .block-menu,
.is-sub .list-menu,
.is-sub .header-different {
  display: -ms-flexbox;
  display: flex;
}
.is-sub .block-menu {
  -ms-flex-align: start;
      align-items: flex-start;
}
.is-sub .list-menu {
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.is-sub .link-menu {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.is-sub .button-menu {
  position: fixed;
  cursor: pointer;
  background-color: #333;
  right: 0;
  top: 0;
  z-index: 101;
}
.is-sub .button-menu span {
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
}
.is-sub .block-social {
  background-color: #333;
  color: #fff;
  position: fixed;
  right: 0;
  z-index: 101;
}
.is-sub .inner-different .block-social {
  text-align: center;
}
.is-sub .inner-different .common-list-social {
  display: block;
}
.is-sub .inner-different .text-social,
.is-sub .inner-different .copy-right {
  writing-mode: vertical-lr;
}
.is-sub .inner-different .copy-right {
  letter-spacing: 0.1em;
  color: #aaa;
}
.is-sub .inner-different .text-social {
  letter-spacing: 0.2em;
}
.is-sub .link-navigation {
  position: relative;
  font-weight: 600;
}
.is-sub .link-navigation:before {
  position: absolute;
  content: "";
  left: 0;
  background: url(../img/common/icon_arrow_02.svg) center/100% auto no-repeat;
}
.is-sub .navigation-icon {
  display: inline-block;
}
.is-sub .list-navigation {
  border-bottom: solid 1px #ccc;
}
.is-sub .header-navigation {
  overflow: auto;
  background: #fff;
  position: fixed;
  display: none;
  z-index: 100;
  min-height: 100vh;
  top: 0;
  right: 0;
}
.is-sub .inner-different {
  padding: 0;
  pointer-events: none;
}
.is-sub .header-garage .button-menu,
.is-sub .header-garage .block-social {
  background-color: #024496;
}
.is-sub .header-garage .copy-right {
  color: #fff;
}
.is-sub .header-garage .text-social,
.is-sub .header-garage .copy-right,
.is-sub .header-garage .link-menu {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.header-mask {
  pointer-events: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background: rgba(51, 51, 51, 0.9);
  opacity: 0;
  visibility: hidden;
  display: block;
  transition: all 1s ease;
  width: 100%;
  height: 100vh;
}
.header-mask.menu-active {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

@media print, (min-width: 768px) {
  header .inner-wrapper {
    padding: 20px 30px 20px 40px;
    pointer-events: none;
  }
  header .block-left,
  header .block-right {
    pointer-events: auto;
  }
  header .header-logo {
    margin-right: 30px;
  }

  .is-sub .inner-different {
    max-width: unset;
    min-width: 1100px;
    left: unset;
    -ms-transform: unset;
        transform: unset;
  }
  .is-sub .header-different {
    padding: 10px 128px 10px 40px;
  }
  .is-sub .header-different .common-block-company {
    padding-left: 40px;
    padding-right: 40px;
  }
  .is-sub .header-different .common-list-company {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .is-sub .block-menu {
    right: 128px;
  }
  .is-sub .block-menu,
  .is-sub .header-menu {
    margin-top: 10px;
  }
  .is-sub .block-right {
    margin-left: 41px;
  }
  .is-sub .item-menu:not(:first-child) {
    margin-left: 33px;
  }
  .is-sub .button-menu {
    width: 88px;
    height: 79px;
  }
  .is-sub .button-menu span {
    width: 56px;
    height: 3px;
    margin-left: 16px;
  }
  .is-sub .button-menu span:nth-child(1) {
    top: 24px;
  }
  .is-sub .button-menu span:nth-child(2) {
    top: 39px;
  }
  .is-sub .button-menu span:nth-child(3) {
    top: 54px;
  }
  .is-sub .menu-active span:nth-child(2), .is-sub .menu-active span:nth-child(3) {
    width: 25px;
    margin-left: 47px;
  }
  .is-sub .block-social {
    width: 88px;
    top: 80px;
    height: calc(100vh - 80px);
  }
  .is-sub .inner-different .common-block-social {
    margin-bottom: 114px;
  }
  .is-sub .inner-different .common-list-social {
    padding-top: 19px;
    padding-left: 17px;
  }
  .is-sub .inner-different .copy-right {
    font-size: 10px;
  }
  .is-sub .inner-different .item-social:not(:last-child),
  .is-sub .inner-different .text-social {
    margin-right: 0;
  }
  .is-sub .inner-different .item-social:not(:last-child) {
    margin-bottom: 15px;
  }
  .is-sub .inner-different .text-social {
    margin-bottom: 15px;
    margin-left: 2px;
  }
  .is-sub .inner-different .item-social img {
    width: 16px;
  }
  .is-sub .inner-different .item-social svg {
    fill: #fff;
  }
  .is-sub .link-navigation {
    padding-left: 14px;
    font-size: 20px;
  }
  .is-sub .link-navigation:before {
    top: 7px;
    width: 8px;
    height: 13px;
  }
  .is-sub .item-navigation:not(:last-child) {
    margin-bottom: 32px;
  }
  .is-sub .navigation-icon,
  .is-sub .item-navigation,
  .is-sub .common-link-main {
    padding: 0 40px;
  }
  .is-sub .navigation-icon {
    margin-bottom: 42px;
  }
  .is-sub .list-navigation {
    margin-bottom: 20px;
    padding-bottom: 80px;
  }
  .is-sub .header-navigation {
    padding: 81px 88px 20px 0;
    max-width: 900px;
    width: 100%;
  }
  .is-sub .header-garage .text-social {
    margin-bottom: 22px;
  }
  .is-sub .header-garage .common-block-social {
    margin-bottom: 164px;
  }
}
@media print, (min-width: 768px) and (max-width: 1327px) {
  .is-sub .header-logo {
    width: 230px;
  }
  .is-sub .link-menu {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767.98px) {
  header .inner-wrapper {
    padding: 0.14rem 0.2rem;
  }
  header .header-logo img,
  header .block-right img {
    width: 100%;
  }
  header .header-logo {
    width: 0.29rem;
  }
  header .block-right {
    width: 0.88rem;
  }

  .is-sub .header-logo {
    width: 0.98rem;
  }
  .is-sub .block-menu {
    right: 0.86rem;
  }
  .is-sub .header-different {
    padding: 0.08rem 0.86rem 0.08rem 0.1rem;
  }
  .is-sub .button-menu {
    width: 0.66rem;
    height: 0.6rem;
  }
  .is-sub .button-menu span {
    width: 0.4rem;
    height: 0.02rem;
    margin-left: 0.13rem;
  }
  .is-sub .button-menu span:nth-child(1) {
    top: 0.19rem;
  }
  .is-sub .button-menu span:nth-child(2) {
    top: 0.29rem;
  }
  .is-sub .button-menu span:nth-child(3) {
    top: 0.39rem;
  }
  .is-sub .menu-active span:nth-child(2), .is-sub .menu-active span:nth-child(3) {
    width: 0.16rem;
    margin-left: 0.37rem;
  }
  .is-sub .inner-different .block-right {
    margin-top: 0.09rem;
  }
  .is-sub .block-social {
    top: 0.61rem;
    width: 0.66rem;
    padding-top: 0.3rem;
    height: calc(100vh - .61rem);
    right: -0.66rem;
  }
  .is-sub .header-navigation {
    width: 100%;
    padding: 0.39rem 0.65rem 0.45rem 0;
    height: 100%;
    display: block;
    right: -100%;
  }
  .is-sub .header-navigation .link-main:before {
    top: 0.03rem;
  }
  .is-sub .header-navigation .link-main:after {
    top: 0.01rem;
  }
  .is-sub .header-navigation .link-navigation:before {
    top: 0.065rem;
  }
  .is-sub .navigation-icon img {
    width: 1.38rem;
  }
  .is-sub .link-navigation {
    font-size: 0.14rem;
    padding-left: 0.1rem;
  }
  .is-sub .link-navigation:before {
    width: 0.055rem;
    height: 0.075rem;
    top: 0.05rem;
  }
  .is-sub .navigation-icon {
    margin-bottom: 0.39rem;
  }
  .is-sub .navigation-block {
    height: 100%;
  }
  .is-sub .navigation-block .common-block-company {
    margin-bottom: 0.26rem;
    padding-top: 0.3rem;
    padding-bottom: 0.28rem;
  }
  .is-sub .navigation-icon,
  .is-sub .item-navigation,
  .is-sub .common-block-company,
  .is-sub .common-link-main {
    padding: 0 0.19rem;
  }
  .is-sub .item-navigation:not(:last-child) {
    margin-bottom: 0.265rem;
  }
  .is-sub .list-navigation {
    padding-bottom: 0.36rem;
  }
  .is-sub .header-garage .header-logo {
    width: 1.51rem;
  }

  .is-android .is-sub .header-navigation .link-main:before {
    top: 0.035rem;
  }
  .is-android .is-sub .common-block-company .item-link:before {
    top: 0.065rem;
  }
}
@media only screen and (max-width: 374px) {
  .is-sub .link-navigation:before {
    width: 0.05rem;
  }
}
footer .footer-text {
  font-weight: 600;
}

.footer-main {
  border-top: solid 1px #ccc;
}

.footer-sub .footer-middle .wrapper,
.footer-sub .button-footer,
.footer-sub .block-garage {
  position: relative;
}
.footer-sub .footer-middle .wrapper {
  z-index: 2;
}
.footer-sub .text-highlight,
.footer-sub .text-content {
  font-weight: 600;
}
.footer-sub .text-highlight {
  color: #fff;
  background-color: #024496;
  display: inline-block;
}
.footer-sub .text-content {
  line-height: 2;
}
.footer-sub .button-footer {
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #0a0808;
  background-color: #fff;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.footer-sub .button-footer:after {
  background: center/100% auto no-repeat;
}
.footer-sub .button-footer:after,
.footer-sub .block-garage:before,
.footer-sub .block-garage::after {
  position: absolute;
  content: "";
}
.footer-sub .block-garage {
  z-index: 1;
  border-top: solid 1px #c4c4c4;
  border-bottom: solid 1px #c4c4c4;
}
.footer-sub .block-garage:before, .footer-sub .block-garage:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.footer-sub .block-garage:before {
  background: center/cover no-repeat;
}
.footer-sub .block-garage:after {
  background: rgba(255, 255, 255, 0.8);
}
.footer-sub .list-logo,
.footer-sub .button-footer {
  display: -ms-flexbox;
  display: flex;
}
.footer-sub .list-logo .image-logo,
.footer-sub .image-big {
  display: block;
}
.footer-sub .inner-company,
.footer-sub .button-footer {
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.footer-sub .footer-bottom,
.footer-sub .link-sub {
  color: #fff;
}
.footer-sub .footer-bottom {
  letter-spacing: 0.1em;
}
.footer-sub .block-inquiry {
  background-color: #555;
}
.footer-sub .block-inquiry .text-inquiry {
  font-weight: 600;
}
.footer-sub .block-inquiry .text-detail {
  line-height: 2;
  letter-spacing: 0;
}
.footer-sub .block-inquiry .text-detail a {
  color: #fff;
}
.footer-sub .block-navigation {
  background-color: #333;
}
.footer-sub .text-copyright {
  color: #aaa;
}
.footer-sub .wrapper-button {
  text-align: center;
}
.footer-sub .footer-garage .text-highlight {
  background-color: #333;
}
.footer-sub .footer-garage .block-garage:before {
  background-image: url(../img/common/footer_bg_03.jpg);
}
.footer-sub .footer-garage .block-navigation {
  background: #01224b;
}
.footer-sub .footer-garage .footer-top {
  background-image: url(../img/common/header_bg_02.png);
  background-position: bottom;
}

.footer-garage .block-inquiry,
.footer-garage .slick-dots .slick-active {
  background: #3569ab;
}

@media print, (min-width: 768px) {
  footer {
    padding: 18px 0;
  }
  footer .inner-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  footer .footer-left {
    margin-top: 3px;
  }
  footer .list-navigation,
  footer .inner-wrapper {
    display: -ms-flexbox;
    display: flex;
  }
  footer .list-navigation {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footer-text {
    font-size: 12px;
    margin-bottom: 3px;
    letter-spacing: 0.1em;
  }
  footer .link-navigation,
  footer .copyright {
    font-size: 10px;
  }
  footer .item-navigation:not(:last-child) {
    margin-right: 20px;
  }
  footer .copyright-wrapper {
    width: 100%;
    min-width: 1100px;
    height: 100vh;
    left: 0;
  }
  footer .copyright {
    display: block;
    color: #aaa;
    padding-top: 6px;
    letter-spacing: 0.1em;
  }

  .footer-sub .logo-kashiwa {
    width: 145px;
  }
  .footer-sub .logo-koil {
    width: 93px;
  }
  .footer-sub .footer-different {
    margin-bottom: -18px;
    padding-right: 88px;
    padding-top: 22px;
  }
  .footer-sub .footer-different .common-button-black {
    padding: 9px 57px 9px 34px;
  }
  .footer-sub .footer-different .common-button-black:after {
    top: 10px;
    right: 35px;
  }
  .footer-sub .section-title {
    margin-bottom: 75px;
  }
  .footer-sub .common-slide {
    margin-bottom: 91px;
  }
  .footer-sub .footer-top {
    padding-bottom: 67px;
    background: url(../img/common/footer_bg.png) bottom center/100% 343px repeat-x;
  }
  .footer-sub .logo-company {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 400px;
    margin-right: 47px;
    margin-left: 15px;
    text-align: center;
  }
  .footer-sub .text-highlight {
    padding: 5px 10px 5px 20px;
    font-size: 18px;
    border-radius: 4px;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
  }
  .footer-sub .text-content,
  .footer-sub .button-footer,
  .footer-sub .block-inquiry .text-detail,
  .footer-sub .link-sub {
    font-size: 12px;
  }
  .footer-sub .text-content {
    margin-top: 12px;
    margin-bottom: 19px;
  }
  .footer-sub .button-footer {
    height: 30px;
    width: 225px;
    border-radius: 100px;
    padding: 8px 60px 5px 37px;
    box-shadow: 0 3px 0 0 #333;
  }
  .footer-sub .button-footer:after {
    top: 9px;
    right: 39px;
    width: 12px;
    height: 10px;
    background-image: url(../img/top/icon_arrow_right_black.png);
  }
  .footer-sub .block-garage {
    margin-bottom: 41px;
    padding: 51px 0 52px;
  }
  .footer-sub .block-garage:before {
    background-image: url(../img/common/footer_bg_02.jpg);
  }
  .footer-sub .block-garage + .block-garage {
    margin-top: -41px;
  }
  .footer-sub .block-garage--garden:before {
    background-image: url(../img/common/footer_bg_04.jpg);
  }
  .footer-sub .block-garage--garden .logo-company img {
    width: 270px;
  }
  .footer-sub .block-garage--garden .text-highlight {
    background: #00AE8D;
  }
  .footer-sub .inner-company,
  .footer-sub .common-link-main,
  .footer-sub .inner-bottom {
    max-width: 1440px;
    margin: 0 auto;
  }
  .footer-sub .inner-company {
    padding-right: 40px;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-sub .list-logo {
    margin-bottom: 60px;
  }
  .footer-sub .list-logo li:not(:first-child) {
    margin-left: 30px;
  }
  .footer-sub .block-right {
    margin-top: 8px;
  }
  .footer-sub .block-left {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 792px;
    margin-right: 20px;
  }
  .footer-sub .block-left .common-block-company {
    padding-right: 10px;
  }
  .footer-sub .block-left .image-logo {
    width: 175px;
    margin-right: 18px;
  }
  .footer-sub .block-company .common-link-main {
    padding: 0 40px;
  }
  .footer-sub .footer-middle .wrapper,
  .footer-sub .block-inquiry .inner-bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
  .footer-sub .footer-middle {
    margin-bottom: 37px;
  }
  .footer-sub .footer-middle .image-big {
    width: 172px;
    margin-left: auto;
  }
  .footer-sub .inner-bottom {
    padding: 0 40px;
  }
  .footer-sub .block-inquiry .inner-bottom {
    padding-top: 22px;
    padding-bottom: 18px;
  }
  .footer-sub .block-inquiry .text-inquiry {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 215px;
    margin-right: 24px;
    font-size: 14px;
  }
  .footer-sub .block-inquiry .is-address {
    letter-spacing: 0.1em;
  }
  .footer-sub .list-sub-navigation {
    display: -ms-flexbox;
    display: flex;
  }
  .footer-sub .block-navigation .inner-bottom {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .footer-sub .sub-navigation {
    margin-bottom: 19px;
  }
  .footer-sub .item-sub:not(:last-child) {
    margin-right: 16px;
  }
  .footer-sub .text-copyright {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  .footer-sub .footer-garage .logo-company {
    width: 263px;
  }
  .footer-sub .footer-garage .button-footer {
    width: 206px;
    padding-top: 6px;
    padding-left: 39px;
  }
  .footer-sub .footer-garage .button-footer:after {
    top: 10px;
  }
  .footer-sub .footer-garage .text-highlight {
    border-radius: 0;
  }

  .is-tablet .footer-sub .button-footer {
    padding-bottom: 7px;
  }
}
@media only screen and (max-width: 767.98px) {
  footer {
    padding-top: 0.31rem;
    padding-bottom: 0.4rem;
  }
  footer .footer-different {
    padding-top: 0.09rem;
    margin-bottom: -0.4rem;
  }
  footer .inner-wrapper {
    padding: 0 0.2rem;
  }
  footer .footer-text {
    letter-spacing: 0.05em;
    line-height: 2;
    margin-bottom: 0.26rem;
  }
  footer .link-navigation,
  footer .footer-text {
    font-size: 0.1rem;
  }
  footer .item-navigation {
    letter-spacing: 0.1em;
  }
  footer .item-navigation:not(:last-child) {
    margin-bottom: 0.13rem;
  }
  footer .footer-left {
    margin-bottom: 0.67rem;
  }
  footer .footer-right {
    display: block;
    width: 1.12rem;
    margin: 0 auto 0.41rem;
  }
  footer .footer-right img {
    width: 100%;
  }
  footer .copyright {
    display: block;
    margin-top: 40px;
    font-size: 0.09rem;
    font-weight: 400;
    color: #aaa;
  }

  .footer-sub .footer-top {
    padding-bottom: 0.41rem;
    background: url(../img/common/sp/footer_bg.png) bottom center/100% 2.34rem repeat-x;
  }
  .footer-sub .footer-top .wrapper {
    padding-right: 0;
  }
  .footer-sub .footer-top .common-slide {
    margin-bottom: 0.56rem;
  }
  .footer-sub .footer-top .section-title {
    margin-bottom: 0.64rem;
    padding-right: 0.2rem;
  }
  .footer-sub .footer-top .section-title:after {
    left: 47.2%;
  }
  .footer-sub .footer-top .wrapper-button {
    padding-right: 0.2rem;
  }
  .footer-sub .footer-top .common-button-black {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    width: 1.6rem;
    margin: 0 auto;
  }
  .footer-sub .logo-company {
    width: 2.05rem;
    margin: 0 auto 0.3rem;
  }
  .footer-sub .logo-company img {
    width: 100%;
  }
  .footer-sub .content-highlight {
    text-align: center;
  }
  .footer-sub .footer-middle .block-garage {
    padding: 0.5rem 0 0.31rem;
  }
  .footer-sub .footer-middle .block-garage:before {
    background-image: url(../img/common/sp/footer_bg_02.jpg);
  }
  .footer-sub .footer-middle .block-garage--garden:before {
    background-image: url(../img/common/sp/footer_bg_04.jpg);
  }
  .footer-sub .footer-middle .block-garage--garden .logo-company {
    width: 160px;
  }
  .footer-sub .footer-middle .block-garage--garden .text-highlight {
    background: #00AE8D;
  }
  .footer-sub .footer-middle .content-highlight {
    margin-bottom: 0.14rem;
  }
  .footer-sub .footer-middle .text-highlight {
    margin-bottom: 0.05rem;
    padding: 0.05rem 0.15rem 0.04rem 0.21rem;
  }
  .footer-sub .footer-middle .button-footer {
    height: 0.26rem;
    width: 1.73rem;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: 0 0.03rem 0 0 #333;
    padding: 0.05rem 0.4rem 0.03rem 0.22rem;
    letter-spacing: 0.05em;
  }
  .footer-sub .footer-middle .button-footer:after {
    background-image: url(../img/top/icon_arrow_right_black.png);
    top: 0.08rem;
    width: 0.08rem;
    height: 0.08rem;
    right: 0.29rem;
  }
  .footer-sub .footer-middle .text-content {
    margin-bottom: 0.2rem;
  }
  .footer-sub .footer-middle .common-block-social {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
  .footer-sub .footer-middle .block-social {
    border-bottom: solid 1px #ccc;
    padding: 0.21rem 0.2rem 0.2rem;
  }
  .footer-sub .footer-middle .text-social,
  .footer-sub .footer-middle .item-social:not(:last-child) {
    margin-bottom: 0;
  }
  .footer-sub .footer-middle .item-social {
    width: 0.16rem;
  }
  .footer-sub .footer-middle .text-social {
    letter-spacing: 0.2em;
    margin-right: 0.18rem;
  }
  .footer-sub .footer-middle .item-social:not(:last-child) {
    margin-right: 0.2rem;
  }
  .footer-sub .footer-middle .block-right {
    padding: 0.4rem 0;
  }
  .footer-sub .image-big {
    width: 1.86rem;
    margin: 0 auto;
  }
  .footer-sub .logo-kashiwa {
    width: 1.45rem;
  }
  .footer-sub .logo-koil {
    width: 0.93rem;
  }
  .footer-sub .logo-kashiwa img,
  .footer-sub .logo-koil img,
  .footer-sub .image-big img {
    width: 100%;
  }
  .footer-sub .list-logo {
    -ms-flex-pack: center;
        justify-content: center;
    margin-bottom: 0.4rem;
    margin-right: 0.01rem;
  }
  .footer-sub .list-logo li:not(:last-child) {
    margin-right: 0.4rem;
  }
  .footer-sub .common-link-main {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0.16rem 0.2rem 0;
    border-bottom: solid 1px #ccc;
  }
  .footer-sub .common-link-main li:not(:last-child) {
    margin-right: 0.31rem;
  }
  .footer-sub .block-detail,
  .footer-sub .link-sub,
  .footer-sub .text-copyright,
  .footer-sub .text-content,
  .footer-sub .footer-middle .button-footer {
    font-size: 0.1rem;
  }
  .footer-sub .footer-bottom .inner-bottom {
    padding: 0 0.2rem;
  }
  .footer-sub .block-inquiry .inner-bottom {
    padding-top: 0.28rem;
    padding-bottom: 0.29rem;
  }
  .footer-sub .block-inquiry .text-inquiry {
    margin-bottom: 0.17rem;
  }
  .footer-sub .block-navigation .inner-bottom {
    padding-top: 0.27rem;
    padding-bottom: 0.38rem;
  }
  .footer-sub .item-sub:not(:last-child) {
    margin-bottom: 0.13rem;
  }
  .footer-sub .sub-navigation {
    margin-bottom: 0.66rem;
  }
  .footer-sub .text-copyright {
    letter-spacing: 0.05em;
  }
  .footer-sub .footer-garage .block-garage {
    padding-top: 0.4rem;
  }
  .footer-sub .footer-garage .block-garage:before {
    background-image: url(../img/common/sp/footer_bg_03.jpg);
  }
  .footer-sub .footer-garage .logo-company {
    width: 1.2rem;
  }
  .footer-sub .footer-garage .button-footer {
    -ms-flex-pack: center;
        justify-content: center;
    width: 1.58rem;
    padding-top: 0.03rem;
  }
  .footer-sub .footer-garage .text-social {
    font-family: "Barlow", sans-serif;
  }
  .footer-sub .footer-garage .text-highlight {
    padding-top: 0.04rem;
    padding-bottom: 0.03rem;
  }

  .is-android .footer-sub .footer-middle .text-highlight {
    padding-top: 0.03rem;
    padding-bottom: 0.05rem;
  }
}
.common-block-social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: start;
      align-items: flex-start;
}
.common-block-social .text-social {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: left;
}
.common-block-social .common-list-social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.common-block-social .link-social svg {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  width: 19px;
  height: auto;
}

.header-different .common-block-social .link-social svg {
  fill: #fff;
}

@media print, (min-width: 768px) {
  .common-block-social {
    margin-top: 11px;
  }
  .common-block-social .text-social {
    padding-top: 2px;
    font-size: 12px;
    margin-right: 19px;
    line-height: 12px;
  }
  .common-block-social .common-list-social {
    margin-right: 17px;
  }
  .common-block-social .item-social:not(:last-child) {
    margin-right: 19px;
  }
}
@media only screen and (max-width: 767.98px) {
  .common-block-social .text-social {
    font-size: 0.1rem;
    margin: 0 auto 0.27rem;
  }
  .common-block-social .link-social {
    width: 0.16rem;
  }
  .common-block-social .link-social img {
    width: 100%;
  }
  .common-block-social .item-social:not(:last-child) {
    margin-bottom: 0.21rem;
  }
}
.common-link-main {
  display: -ms-flexbox;
  display: flex;
}
.common-link-main .link-main {
  font-weight: 600;
}
.common-link-main .link-main,
.common-link-main .is-target {
  position: relative;
}
.common-link-main .link-main:before,
.common-link-main .is-target:after {
  position: absolute;
  content: "";
  background: center/100% auto no-repeat;
}
.common-link-main .is-target:after {
  background-image: url(../img/common/icon_target_black_02.svg);
}

@media print, (min-width: 768px) {
  .common-link-main {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .common-link-main .item-main:not(:last-child) {
    margin-right: 29px;
  }
  .common-link-main .link-main {
    font-size: 12px;
    padding-left: 10px;
  }
  .common-link-main .link-main:before {
    top: 3px;
    width: 5px;
    height: 10px;
    left: 1px;
    background-image: url(../img/common/icon_arrow_02.svg);
  }
  .common-link-main .is-target {
    padding-right: 13px;
  }
  .common-link-main .is-target:after {
    top: 0;
    right: -1px;
    width: 12px;
    height: 16px;
  }

  .is-mac .common-link-main .link-main:before {
    top: 3px;
  }

  .is-tablet .common-link-main .link-main:before {
    top: 2px;
  }
  .is-tablet .common-link-main .link-main:after {
    top: -1px;
  }
}
@media only screen and (max-width: 767.98px) {
  .common-link-main li {
    margin-bottom: 0.16rem;
    margin-right: 0.27rem;
  }
  .common-link-main .link-main {
    font-size: 0.1rem;
    padding-left: 0.07rem;
  }
  .common-link-main .link-main:before {
    left: 0;
    top: 0.015rem;
    width: 0.05rem;
    height: 0.07rem;
    background-image: url(../img/common/sp/icon_arrow_01.svg);
  }
  .common-link-main .is-target {
    padding-right: 0.1rem;
  }
  .common-link-main .is-target:after {
    top: -0.01rem;
    right: -0.01rem;
    width: 0.08rem;
    height: 0.12rem;
  }

  .is-android .common-link-main .link-main:before {
    top: 0.04rem;
  }
  .is-android .common-link-main .is-target:after {
    top: 0.015rem;
  }
}
.common-block-company {
  border-bottom: solid 1px #ccc;
}
.common-block-company .company-name {
  font-weight: 600;
}
.common-block-company .common-list-company {
  display: -ms-flexbox;
  display: flex;
}
.common-block-company .item-link {
  position: relative;
  font-weight: 600;
}
.common-block-company .item-link:before {
  position: absolute;
  content: "";
  background: url(../img/common/icon_arrow_02.svg) center/100% auto no-repeat;
}

@media print, (min-width: 768px) {
  .list-company {
    padding-left: 40px;
  }

  .common-block-company {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  .common-block-company .image-logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 160px;
    margin-right: 26px;
  }
  .common-block-company .company-name {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .common-block-company .company-name span {
    font-size: 12px;
    margin-left: 12px;
  }
  .common-block-company .item-list:not(:last-child) {
    margin-right: 18px;
  }
  .common-block-company .item-link {
    padding-left: 11px;
    font-size: 12px;
  }
  .common-block-company .item-link:before {
    top: 2px;
    left: 2px;
    width: 5px;
    height: 12px;
  }

  .is-mac .common-block-company .item-link:after {
    top: 1px;
  }

  .is-tablet .common-block-company .item-link:before {
    top: 1px;
  }
}
@media only screen and (max-width: 767.98px) {
  .common-block-company .image-logo {
    width: 1.28rem;
    margin-bottom: 0.31rem;
  }
  .common-block-company .image-logo img {
    width: 100%;
  }
  .common-block-company .common-list-company {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .common-block-company .item-list:not(:last-child) {
    margin-bottom: 0.14rem;
  }
  .common-block-company .item-list:nth-child(2n+1) {
    width: 0.65rem;
  }
  .common-block-company .item-list:nth-child(4), .common-block-company .item-list:nth-child(5) {
    margin-right: 0.21rem;
  }
  .common-block-company .item-link {
    padding-left: 0.09rem;
    font-size: 0.12rem;
  }
  .common-block-company .item-link:before {
    top: 0.04rem;
    left: 0;
    width: 0.05rem;
    height: 0.07rem;
  }
}
.common-slide:not(.slick-initialized) .item-slide:not(:first-child) {
  display: none;
}

.common-slide .item-slide {
  border: solid 1px #ccc;
  background-color: #fff;
}
.common-slide .content-slide {
  font-weight: 600;
  border-top: solid 1px #ccc;
}
.common-slide .time {
  color: #aaa;
}
.common-slide .title-slide {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.common-slide .image-slide {
  background: no-repeat center/cover;
}
.common-slide .image-slide img {
  display: none;
}
.common-slide .slick-next,
.common-slide .slick-prev {
  top: 0;
  z-index: 1;
  text-indent: -99999px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.common-slide .slick-next:after,
.common-slide .slick-prev:after {
  content: "";
  position: absolute;
}
.common-slide .slick-next,
.common-slide .slick-prev {
  position: absolute;
}
.common-slide .slick-next:after,
.common-slide .slick-prev:after {
  background: center/100% auto no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}
.common-slide .slick-next:hover,
.common-slide .slick-prev:hover {
  opacity: 0.7;
}

@media print, (min-width: 768px) {
  .common-slide {
    margin: 0 -2px 32px;
  }
  .common-slide .item-slide {
    margin: 0 2px;
    min-height: 224px;
  }
  .common-slide .content-slide {
    padding: 4px 13px;
  }
  .common-slide .time {
    font-size: 10px;
  }
  .common-slide .title-slide {
    line-height: 1.67;
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  .common-slide .image-slide {
    width: 243px;
    height: 141px;
  }
  .common-slide .slick-next,
  .common-slide .slick-prev {
    width: 13px;
    height: 23px;
    top: 100px;
  }
  .common-slide .slick-next:after,
  .common-slide .slick-prev:after {
    background-image: url(../img/top/icon_arrow_right_grey.png);
  }
  .common-slide .slick-next {
    right: -41px;
  }
  .common-slide .slick-prev {
    left: -41px;
    -ms-transform: scale(-1);
        transform: scale(-1);
  }
  .common-slide .slick-dots {
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    -ms-flex-pack: center;
        justify-content: center;
    bottom: -44px;
  }
  .common-slide .slick-dots li {
    width: 60px;
    height: 4px;
    margin: 0 4px;
  }

  .is-tablet .footer-top {
    background: none;
  }
  .is-tablet .common-slide .item-slide {
    min-height: 223px;
  }
  .is-tablet .footer-different .common-button-black:after {
    top: 9px;
  }
}
@media only screen and (max-width: 767.98px) {
  .common-slide {
    margin-bottom: 0.64rem;
    margin-left: 0.01rem;
  }
  .common-slide .item-slide {
    margin: 0 0.01rem;
    min-height: 1.7rem;
    width: 1.54rem;
  }
  .common-slide .image-slide {
    width: 1.52rem;
    height: 0.87rem;
  }
  .common-slide .content-slide {
    padding: 0.08rem 0.07rem;
  }
  .common-slide .time {
    display: inline-block;
    margin-bottom: 0.05rem;
  }
  .common-slide .time,
  .common-slide .title-slide {
    font-size: 0.1rem;
  }
  .common-slide .title-slide {
    line-height: 1.4;
    -webkit-line-clamp: 3;
  }
  .common-slide .slick-next,
  .common-slide .slick-prev {
    width: 0.57rem;
    height: 0.16rem;
    top: 1.95rem;
  }
  .common-slide .slick-next {
    right: 0.2rem;
  }
  .common-slide .slick-next:after {
    background-image: url(../img/top/sp/icon_arrow_right_black.svg);
  }
  .common-slide .slick-prev {
    left: 0;
  }
  .common-slide .slick-prev:after {
    background-image: url(../img/top/sp/icon_arrow_left_black.svg);
  }
  .common-slide .slick-prev.slick-disabled:after {
    background-image: url(../img/top/sp/icon_arrow_left_disabled.svg);
  }
  .common-slide .slick-next.slick-disabled:after {
    background-image: url(../img/top/sp/icon_arrow_right_disabled.svg);
  }
}
.section-title,
.title-primary {
  font-weight: 600;
  position: relative;
}
.section-title:after,
.title-primary:after {
  position: absolute;
  content: "";
  background-color: #333;
}
.section-title span,
.title-primary span {
  display: block;
}
.section-title .title-japan,
.title-primary .title-japan {
  letter-spacing: 0.05em;
}

.section-title {
  text-align: center;
}
.section-title:after {
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.section-title .title-english {
  color: #eee;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
.section-title .title-english.color-blue {
  color: #ebf0f7;
  font-family: "Barlow", sans-serif;
}

.title-primary:after {
  bottom: 0;
  left: 0;
}
.title-primary .title-english {
  color: #aaa;
}

@media print, (min-width: 768px) {
  .section-title:after {
    bottom: -15px;
    height: 3px;
    width: 54px;
  }
  .section-title .title-english {
    font-size: 80px;
    margin-bottom: -30px;
  }
  .section-title .title-japan {
    font-size: 32px;
  }

  .title-primary {
    margin-bottom: 80px;
    padding-bottom: 26px;
  }
  .title-primary:after {
    width: 54px;
    height: 3px;
  }
  .title-primary .title-english {
    font-size: 32px;
    margin-bottom: 9px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-title:after {
    width: 0.54rem;
    height: 0.03rem;
    bottom: -0.23rem;
  }
  .section-title .title-english {
    font-size: 0.4rem;
    margin-bottom: -0.14rem;
  }
  .section-title .title-japan {
    font-size: 0.2rem;
  }

  .title-primary {
    margin-bottom: 0.81rem;
    padding-bottom: 0.2rem;
  }
  .title-primary:after {
    width: 0.54rem;
    height: 0.03rem;
  }
  .title-primary .title-english {
    font-size: 0.24rem;
    margin-bottom: 0.05rem;
  }
  .title-primary .title-japan {
    font-size: 0.14rem;
  }
}
.common-button-black {
  text-align: center;
  background-color: #333;
  color: #fff;
}
.common-button-black:after {
  position: absolute;
  content: "";
  background: center/100% auto no-repeat;
}
.common-button-black.background-blue {
  background-color: #024496;
}
.common-button-black.background-blue:after {
  background-image: url(../img/common/icon_target_white_02.svg);
}

.common-button-black,
.common-button-white {
  position: relative;
  z-index: 2;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.common-button-white {
  display: inline-block;
  border: solid 2px #333;
  transition: color 0.3s, background-color 0.3s;
}
.common-button-white:hover {
  background-color: #333;
  color: #fff;
}

@media print, (min-width: 768px) {
  .common-button-black {
    padding: 5px 41px 5px 18px;
  }
  .common-button-black:after {
    top: 6px;
    right: 19px;
    width: 12px;
    height: 14px;
    background-image: url(../img/common/icon_target_black.png);
  }
  .common-button-black.background-blue {
    border-radius: 5px;
  }

  .common-button-black,
  .common-button-white {
    font-size: 14px;
  }

  .common-button-white {
    padding: 8px 38px 4px;
  }

  .is-mac .common-button-black {
    padding-top: 6px;
  }
  .is-mac .common-button-black:after {
    top: 5px;
  }

  .is-tablet .common-button-black {
    padding-bottom: 7px;
  }
}
@media only screen and (max-width: 767.98px) {
  .common-button-black {
    min-width: 1.6rem;
    display: inline-block;
    padding: 0.08rem 0.48rem 0.08rem 0.3rem;
  }
  .common-button-black:after {
    top: 0.095rem;
    right: 0.31rem;
    width: 0.12rem;
    height: 0.12rem;
    background-image: url(../img/common/sp/icon_target_black.png);
  }
  .common-button-black.background-blue {
    border-radius: 0.04rem;
  }

  .common-button-white {
    padding: 0.07rem 0.37rem 0.04rem;
  }

  .is-android .common-button-black {
    padding-top: 0.06rem;
  }
}
.section-community {
  position: relative;
}
.section-community .inner-wrapper {
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
}
.section-community .title-community {
  position: relative;
  z-index: 1;
}
.section-community .title-community span,
.section-community .title-community span::after {
  letter-spacing: 0.05em;
  color: #fff;
  display: inline-block;
  background-color: #333;
  animation: clipTextAnim 600ms cubic-bezier(0, 0, 0.2, 1) 2s both;
  position: relative;
  animation-name: clipTextAnim;
}
.section-community .title-community span::after,
.section-community .title-community span::after::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f2f98b;
  -ms-transform: scaleX(0);
      transform: scaleX(0);
  -ms-transform-origin: 0 50%;
      transform-origin: 0 50%;
  pointer-events: none;
  animation-name: textTevealerAnim;
}
.section-community .text-community {
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeInAnime 0.8s ease 2.5s forwards;
}
.section-community .image-text {
  position: absolute;
  z-index: 1;
  width: auto;
}
.section-community .block-slide:not(.slick-initialized) .common-slide-community:not(:first-child) {
  display: none;
}
.section-community .block-slide {
  position: relative;
}
.section-community .block-slide:before {
  content: "";
  position: absolute;
  z-index: 2;
}
.section-community .block-slide .slick-list {
  z-index: 1;
}
.section-community .block-slide .slick-list * {
  outline: none;
}
.section-community .image-community {
  background: no-repeat center/cover;
  width: 100%;
}
.section-community .image-community img {
  display: none;
}
.section-community .block-content {
  z-index: 2;
}

@media print, (min-width: 768px) {
  .sub-main:before {
    height: 1124px;
  }

  .section-community {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .section-community .inner-wrapper {
    -ms-flex-align: end;
        align-items: flex-end;
    padding-left: 20px;
  }
  .section-community .common-slide-community {
    min-height: 645px;
  }
  .section-community .block-content {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 480px;
    margin-right: -78px;
    margin-bottom: 64px;
  }
  .section-community .title-community {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .section-community .title-community span {
    margin-bottom: 10px;
    padding: 10px 5px 8px 19px;
  }
  .section-community .text-community {
    padding-left: 20px;
    line-height: 1.875;
  }
  .section-community .block-slide {
    min-width: 930px;
  }
  .section-community .block-slide:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px;
    top: -61px;
    left: -64px;
    -ms-transform: rotate(-225deg);
        transform: rotate(-225deg);
    border-color: #fff transparent transparent;
  }
  .section-community .image-community {
    height: 580px;
  }
  .section-community .image-text {
    right: -20px;
    bottom: 10px;
  }
  .section-community .slick-dots {
    z-index: 3;
    left: 203px;
    bottom: 41px;
  }
  .section-community .slick-dots li {
    width: 60px;
    height: 4px;
    margin: 0 5px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-community {
    padding-top: 0.61rem;
    padding-bottom: 0.38rem;
  }
  .section-community .inner-wrapper {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
  .section-community .title-community {
    font-size: 0.14rem;
    margin-bottom: 0.12rem;
  }
  .section-community .title-community span {
    margin-bottom: 0.05rem;
    padding: 0.08rem 0.08rem 0.06rem 0.15rem;
  }
  .section-community .common-slide-community {
    min-height: 2.2rem;
  }
  .section-community .image-community {
    width: 3.45rem;
    height: 2.15rem;
    margin-left: auto;
  }
  .section-community .block-slide {
    margin-bottom: 0.48rem;
  }
  .section-community .block-slide:before {
    top: -4px;
    left: 0.2rem;
    background: url(../img/common/bg_sub_page.png) center/100% auto no-repeat;
    width: 0.4rem;
    height: 0.4rem;
  }
  .section-community .image-text {
    width: 1.77rem;
    right: 0;
    top: 48vw;
  }
  .section-community .image-text img {
    width: 100%;
  }
  .section-community .text-community {
    line-height: 1.67;
  }
  .section-community .slick-dots {
    width: 100%;
    bottom: -0.18rem;
    left: 1.47rem;
  }
  .section-community .slick-dots li {
    width: 0.31rem;
    height: 0.03rem;
    margin: 0 0.05rem;
  }
  .section-community .block-content {
    padding: 0 0.3rem;
  }

  .is-android .section-community .title-community span {
    padding-top: 0.07rem;
    padding-bottom: 0.07rem;
  }
}
.section-sub-about {
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.section-sub-about:after, .section-sub-about:before {
  position: absolute;
  content: "";
  z-index: -1;
}
.section-sub-about:before {
  background: center/100% auto no-repeat;
}
.section-sub-about:after {
  top: 0;
}
.section-sub-about .inner-wrapper {
  display: -ms-flexbox;
  display: flex;
}
.section-sub-about .wrapper,
.section-sub-about .title-japan {
  position: relative;
}
.section-sub-about .title-about span {
  display: inline-block;
}
.section-sub-about .title-english {
  position: absolute;
  writing-mode: vertical-lr;
  color: #eee;
}
.section-sub-about .title-japan:before {
  position: absolute;
  content: "";
  left: 0;
  background: url(../img/common/common_logo_02.svg) center/100% auto no-repeat;
}
.section-sub-about .text-about {
  letter-spacing: 0.05em;
  text-align: justify;
  position: relative;
}

@media print, (min-width: 768px) {
  .section-sub-about {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-sub-about:before, .section-sub-about:after {
    left: calc(50% - 617px);
  }
  .section-sub-about:before {
    height: 167px;
    bottom: -75px;
    width: 2px;
    background-image: url(../img/ichiroku_gate/gate_bg_02.png);
  }
  .section-sub-about:after {
    top: 2px;
    width: 100%;
    height: 87.7%;
    border-top-left-radius: 139px;
    border-top: solid 2px #333;
    border-left: solid 2px #333;
  }
  .section-sub-about .inner-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 22px;
  }
  .section-sub-about .image-left {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 440px;
    margin-right: 82px;
  }
  .section-sub-about .title-about {
    margin-bottom: 36px;
  }
  .section-sub-about .title-english {
    line-height: 2.33;
    font-size: 120px;
    right: calc(50% - 632px);
    top: 138px;
  }
  .section-sub-about .title-japan {
    line-height: 1.3125;
    font-size: 32px;
    padding-left: 113px;
    margin-right: -45px;
  }
  .section-sub-about .title-japan:before {
    top: 5px;
    width: 76px;
    height: 117px;
  }
  .section-sub-about .title-notice {
    margin-left: -20px;
    font-size: 20px;
  }
  .section-sub-about .content-right {
    margin-top: 84px;
    padding-right: 72px;
  }
  .section-sub-about .text-about {
    line-height: 2.3;
    font-size: 12px;
    margin-bottom: 30px;
  }
}
.is-tablet .section-sub-about .common-button-white {
  padding-top: 5px;
  padding-bottom: 5px;
}

@media print, (min-width: 768px) and (max-width: 1340px) {
  .section-sub-about:before, .section-sub-about:after {
    left: calc(50% - 550px);
  }
}
@media only screen and (max-width: 767.98px) {
  .section-sub-about {
    padding-left: 0.3rem;
  }
  .section-sub-about:after {
    width: 3.44rem;
    height: 33.4%;
    border-top-left-radius: 0.37rem;
    border-top: solid 0.02rem #979898;
    border-left: solid 0.02rem #979898;
  }
  .section-sub-about:before {
    background-image: url(../img/ichiroku_gate/sp/gate_bg_02.png);
    width: 0.02rem;
    height: 1.15rem;
    top: 2.84rem;
  }
  .section-sub-about .inner-wrapper {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    padding: 0.41rem 0.25rem 0.4rem 0.32rem;
  }
  .section-sub-about .title-about {
    margin-bottom: 0.38rem;
  }
  .section-sub-about .title-english {
    font-size: 0.4rem;
    right: -0.02rem;
    top: 0.43rem;
  }
  .section-sub-about .title-japan {
    font-size: 0.16rem;
    line-height: 1.5;
    padding-left: 0.73rem;
  }
  .section-sub-about .title-japan:before {
    top: -0.07rem;
    width: 0.56rem;
    height: 0.87rem;
  }
  .section-sub-about .text-about {
    line-height: 2.4;
    font-size: 0.1rem;
    margin-bottom: 0.3rem;
  }
  .section-sub-about .wrapper-button {
    text-align: center;
    padding-left: 0.06rem;
  }
  .section-sub-about .common-button-white {
    padding-right: 0.39rem;
    padding-left: 0.39rem;
    padding-top: 0.07rem;
    padding-bottom: 0.06rem;
  }
  .section-sub-about .title-notice {
    margin-left: -8px;
    font-size: 12px;
  }
  .section-sub-about .content-right {
    margin-bottom: 0.4rem;
  }
  .section-sub-about .image-left {
    width: 2.93rem;
    margin: 0 auto;
  }
  .section-sub-about .image-left img {
    width: 100%;
  }

  .is-android .section-sub-about .common-button-white {
    padding-top: 0.04rem;
    padding-bottom: 0.06rem;
  }
}
@media only screen and (max-width: 374px) {
  .section-sub-about:before {
    left: 0.297rem;
  }
  .section-sub-about .common-button-white {
    padding-bottom: 0.05rem;
  }
}
.section-map {
  background: url(../img/common/header_bg.png);
}
.section-map .section-title .title-english {
  color: #fff;
}
.section-map .list-tabs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
}
.section-map .list-tabs .current {
  background-color: #333;
  color: #fff;
  pointer-events: none;
}
.section-map .tab-link {
  font-weight: 600;
  border: solid 2px #333;
  color: #333;
  transition: color 0.3s, background-color 0.3s;
  cursor: pointer;
}
.section-map .tab-link:hover {
  background-color: #333;
  color: #fff;
}
.section-map .tabs-content .current {
  display: block;
}
.section-map .tab-content {
  display: none;
}

@media print, (min-width: 768px) {
  .section-map {
    padding: 62px 0;
  }
  .section-map .section-title {
    margin-bottom: 73px;
  }
  .section-map .list-tabs {
    margin-bottom: 44px;
  }
  .section-map .tab-link {
    font-size: 20px;
    padding: 2px 38px;
  }
  .section-map .image-tab {
    text-align: center;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-map {
    padding-top: 0.3rem;
    padding-bottom: 0.6rem;
  }
  .section-map .section-title {
    margin-bottom: 0.63rem;
  }
  .section-map .list-tabs {
    margin-bottom: 0.4rem;
  }
  .section-map .tab-link {
    padding: 0.04rem 0.39rem;
    font-size: 0.14rem;
  }
  .section-map .image-tab img {
    width: 100%;
  }
}
.section-shop-list .list-option {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
.section-shop-list .item-option:after {
  border-style: solid;
  height: 0;
  width: 0;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  border-color: #aaa transparent transparent;
}
.section-shop-list .item-option,
.section-shop-list .item-list {
  position: relative;
}
.section-shop-list .item-option:after,
.section-shop-list .item-list:after {
  position: absolute;
  content: "";
}
.section-shop-list .image-content {
  background: no-repeat center/cover;
}
.section-shop-list .image-content img {
  display: none;
}
.section-shop-list .link-option,
.section-shop-list .title-block {
  font-weight: 600;
}
.section-shop-list .link-option {
  text-align: center;
}
.section-shop-list .title-block {
  letter-spacing: 0.05em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border-bottom: solid 3px #ddd;
}
.section-shop-list .title-block .title-english {
  color: #ddd;
  font-family: "Montserrat", sans-serif;
}
.section-shop-list .title-block .title-japan {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
}
.section-shop-list .common-list-shop {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section-shop-list .content-item {
  display: block;
}
.section-shop-list .item-list {
  z-index: 1;
}
.section-shop-list .item-list:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 1px #ccc;
  pointer-events: none;
}
.section-shop-list .block-detail {
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  -ms-flex-align: center;
      align-items: center;
  border-top: solid 1px #ccc;
}
.section-shop-list .category {
  color: #aaa;
}
.section-shop-list .block-right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.section-shop-list .block-left {
  position: relative;
}
.section-shop-list .block-left:after {
  position: absolute;
  content: "";
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  right: 0;
  width: 1px;
  background-color: #ccc;
}
.section-shop-list .number-order {
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
.section-shop-list .number-order span {
  display: block;
}
.section-shop-list .number-order .text-small {
  color: #aaa;
  letter-spacing: 0.05em;
}

@media print, (min-width: 768px) {
  .section-shop-list {
    padding-top: 82px;
    padding-bottom: 76px;
  }
  .section-shop-list .section-title {
    margin-bottom: 70px;
  }
  .section-shop-list .list-option {
    margin-bottom: 23px;
  }
  .section-shop-list .item-option {
    margin: 0 15px 10px;
    padding-bottom: 10px;
    border-bottom: solid 3px #aaa;
  }
  .section-shop-list .item-option:after {
    border-width: 8px 7px;
    bottom: -18px;
  }
  .section-shop-list .link-option {
    font-size: 20px;
  }
  .section-shop-list .title-block {
    margin-bottom: 30px;
    padding-bottom: 11px;
  }
  .section-shop-list .common-list-shop {
    margin: 0 -2px;
  }
  .section-shop-list .item-list {
    width: 328px;
    margin: 0 2px 4px;
  }
  .section-shop-list .block-content {
    padding-top: 43px;
  }
  .section-shop-list .block-right {
    width: 60px;
  }
  .section-shop-list .category {
    font-size: 10px;
  }
  .section-shop-list .title-item,
  .section-shop-list .number-order .text-small {
    font-size: 12px;
  }
  .section-shop-list .title-item {
    line-height: 1.67;
  }
  .section-shop-list .block-left {
    padding: 7px 15px 15px 15px;
    width: 268px;
    min-height: 84px;
  }
  .section-shop-list .block-left:after {
    height: 54px;
  }
  .section-shop-list .image-content {
    width: 328px;
    height: 190px;
  }
  .section-shop-list .number-order {
    padding: 0 3px;
  }
  .section-shop-list .number-order .text-small {
    margin-bottom: -1px;
  }
  .section-shop-list .number-order .text-big {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-shop-list {
    padding-top: 0.3rem;
  }
  .section-shop-list .section-title {
    margin-bottom: 0.63rem;
  }
  .section-shop-list .list-option {
    margin-bottom: 0.12rem;
  }
  .section-shop-list .item-option {
    margin: 0 0.145rem 0.35rem;
    padding-bottom: 0.08rem;
    border-bottom: solid 0.03rem #aaa;
  }
  .section-shop-list .item-option:after {
    border-width: 0.09rem 0.06rem;
    bottom: -0.21rem;
  }
  .section-shop-list .title-item {
    line-height: 1.6;
  }
  .section-shop-list .title-block {
    margin-bottom: 0.2rem;
    padding-bottom: 0.06rem;
  }
  .section-shop-list .item-list {
    width: calc(50% - .005rem);
    margin-bottom: 0.01rem;
  }
  .section-shop-list .common-list-shop {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .section-shop-list .image-content {
    width: 100%;
    height: 0.96rem;
  }
  .section-shop-list .block-right {
    width: calc(100% - 1.33rem);
  }
  .section-shop-list .block-left {
    font-size: 0.1rem;
    padding: 0.1rem 0.05rem 0.08rem 0.09rem;
    min-height: 0.71rem;
    width: 1.33rem;
  }
  .section-shop-list .block-left:after {
    height: 0.5rem;
  }
  .section-shop-list .category {
    display: inline-block;
    margin-bottom: 0.07rem;
    line-height: 1;
  }
  .section-shop-list .block-content {
    margin-bottom: 0.37rem;
  }
}
.section-access .section-title .title-english {
  color: #fff;
}
.section-access .google-map {
  width: 100%;
  border-top: solid 1px #c4c4c4;
  border-bottom: solid 1px #c4c4c4;
}
.section-access .google-map iframe {
  width: 100%;
  height: 100%;
}
.section-access .wrapper-button {
  text-align: center;
}
.section-access .common-button-black {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
}
.section-access .item-detail dt,
.section-access .title-way {
  font-weight: 600;
}
.section-access .item-detail {
  line-height: 1.5;
}
.section-access .item-detail {
  display: -ms-flexbox;
  display: flex;
}
.section-access .item-detail:not(:last-child) {
  border-bottom: 1px dashed #ccc;
}
.section-access .item-detail dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.section-access .title-way {
  letter-spacing: 0.05em;
}

@media print, (min-width: 768px) {
  .section-access {
    padding-top: 60px;
    padding-bottom: 53px;
    background: url(../img/ichiroku_gate/access_bg.png) left top/100% 306px repeat-x;
  }
  .section-access .section-title {
    margin-bottom: 56px;
  }
  .section-access .wrapper-button {
    margin-bottom: 60px;
  }
  .section-access .common-button-black {
    padding: 9px 52px 6px 29px;
  }
  .section-access .common-button-black:after {
    top: 10px;
    right: 31px;
  }
  .section-access .google-map {
    height: 362px;
    margin-bottom: 27px;
  }
  .section-access .block-content {
    padding-left: 9px;
  }
  .section-access .content-access {
    width: 840px;
    margin: 0 auto;
  }
  .section-access .content-way {
    padding: 0 30px;
  }
  .section-access .content-way:before, .section-access .content-way:after {
    width: 840px;
    height: 15px;
  }
  .section-access .content-way:before {
    top: -14px;
  }
  .section-access .content-way:after {
    bottom: -13px;
  }
  .section-access .block-content {
    margin-bottom: 63px;
  }
  .section-access .text-way,
  .section-access .block-content {
    font-size: 12px;
  }
  .section-access .item-detail dd,
  .section-access .text-way {
    line-height: 1.5;
  }
  .section-access .item-detail {
    padding: 15px 0 13px;
    -ms-flex-align: center;
        align-items: center;
  }
  .section-access .item-detail dt {
    width: 70px;
    margin-right: 18px;
  }
  .section-access .title-way {
    margin-bottom: 26px;
  }
  .section-access .text-way {
    padding: 0 10px;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
    font-size: 14px;
  }
  .section-access .image-way img {
    width: 100%;
  }
  .section-access .text-way-notice {
    margin-bottom: 30px;
    font-size: 12px;
  }
  .section-access .content-way {
    text-align: center;
    position: relative;
    border-left: solid 3px #ccc;
    border-right: solid 3px #ccc;
  }
  .section-access .content-way:before, .section-access .content-way:after {
    position: absolute;
    content: "";
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    background: center/100% auto no-repeat;
  }
  .section-access .content-way:before {
    background-image: url(../img/ichiroku_gate/access_bg_02.png);
  }
  .section-access .content-way:after {
    background-image: url(../img/ichiroku_gate/access_bg_01.png);
  }
  .section-access .image-parkingCp {
    margin-top: 40px;
  }

  .is-tablet .section-access .common-button-black {
    padding-bottom: 8px;
  }
}
@media only screen and (max-width: 767.98px) {
  .section-access {
    padding-top: 0.3rem;
    padding-bottom: 0.2rem;
    background: url(../img/common/header_bg.png) left top/100% 2.4rem repeat-x;
  }
  .section-access .wrapper-button {
    margin-bottom: 0.4rem;
  }
  .section-access .section-title {
    margin-bottom: 0.67rem;
  }
  .section-access .google-map {
    height: 3.62rem;
    margin-bottom: 0.1rem;
  }
  .section-access .content-access {
    padding: 0 0.2rem;
    font-size: 0.1rem;
  }
  .section-access .title-way {
    font-size: 0.12rem;
  }
  .section-access .item-detail {
    padding: 0.11rem 0 0.08rem;
  }
  .section-access .item-detail dt {
    width: 0.65rem;
    margin-right: 0.23rem;
  }
  .section-access .item-detail dd {
    line-height: 1.8;
  }
  .section-access .block-content {
    margin-bottom: 0.2rem;
  }
  .section-access .title-way {
    text-align: center;
    margin-bottom: 0.17rem;
  }
  .section-access .text-way {
    line-height: 1.8;
    margin-bottom: 0.2rem;
  }
  .section-access .image-way img {
    width: 100%;
  }
  .section-access .image-parkingCp {
    text-align: center;
    margin-top: 30px;
  }
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

.slick-slider .slick-track, .slick-slider .slick-list {
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before {
  display: table;
  content: "";
}
.slick-track:after {
  display: table;
  content: "";
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  display: -ms-flexbox;
  display: flex;
  right: 0;
  -ms-flex-pack: center;
      justify-content: center;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
}
.slick-dots button {
  top: 0;
  z-index: 1;
  text-indent: -99999px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.slick-dots button:after {
  content: "";
  position: absolute;
}
.slick-dots li {
  cursor: pointer;
  background-color: #c4c4c4;
  transition: background 0.3s ease;
}
.slick-dots li:hover {
  background-color: #333;
}
.slick-dots .slick-active {
  background-color: #333;
}

.floating-nav {
  display: none;
  transition: 0.3s;
}
@media print, (min-width: 768px) {
  .floating-nav {
    display: block;
    position: fixed;
    right: -100px;
    bottom: 40px;
    z-index: 9;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .floating-nav .nav-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    width: 120px;
    height: 87px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
  }
  .floating-nav .nav-item:hover {
    opacity: 0.8;
  }
  .floating-nav .icon-arrow-left {
    margin-right: 10px;
  }
  .floating-nav .icon-arrow-left svg {
    display: block;
    width: 12px;
    height: auto;
  }
  .floating-nav .nav-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    line-height: 1.2;
  }
  .floating-nav .nav-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
  .floating-nav .nav-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-family: "Montserrat", sans-serif;
  }
  .floating-nav .nav-sub-text {
    margin-top: 5px;
    font-size: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Verdana, Meiryo, "M+ 1p", sans-serif;
    line-height: 1;
    text-align: center;
  }
}

.is-sub .button-menu,
.is-sub .block-social {
  background-color: #00AE8D;
}

.sub-main:before {
  background-image: none;
  background-color: #F7F4F3;
}

.section-title .title-english {
  margin-bottom: 10px;
  color: #E6DEDB;
  font-family: "Bad Script", cursive;
  font-size: 40px;
  font-weight: 100;
}
@media only screen and (max-width: 767.98px) {
  .section-title .title-english {
    font-size: 24px;
    margin-bottom: 5px;
  }
}

.section-community .block-slide:before {
  border-width: 47px;
}

.title-primary .title-english {
  margin-bottom: 10px;
  color: #E6DEDB;
  font-family: "Bad Script", cursive;
  font-size: 32px;
  font-weight: 100;
}

.footer-sub .footer-top {
  background-image: none;
  background-color: none;
}

.block-garage--ichiroku .text-highlight {
  background-color: #333;
  border-radius: 0;
}
@media only screen and (max-width: 767.98px) {
  .block-garage--ichiroku .logo-company img {
    display: block;
    margin: 0 auto;
    width: 119px;
  }
}

.common-button-black {
  background-color: #00AE8D;
  border-color: #00AE8D;
}
.common-button-black:after {
  background-image: url(../img/common/icon_target_white_02.svg);
}

.common-button-white {
  color: #00AE8D;
  border-color: #00AE8D;
}
.common-button-white:hover {
  background-color: #00AE8D;
  color: #fff;
}

.section-community .title-community span,
.section-community .title-community span::after {
  background-color: #374140;
}

.section-community .title-community span {
  margin-bottom: 10px;
  padding: 10px 5px 8px 19px;
  letter-spacing: 3px;
}
@media only screen and (max-width: 767.98px) {
  .section-community .title-community span {
    margin-bottom: 5px;
    padding: 0.08rem 0.08rem 0.06rem 0.15rem;
  }
}

.section-community .slick-dots {
  left: 169px;
}
@media only screen and (max-width: 767.98px) {
  .section-community .slick-dots {
    left: 1.75rem;
  }
}

.slick-dots .slick-active {
  background-color: #00AE8D;
}

.section-sub-about .content-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  padding-right: 0;
  margin-top: 0;
}

.section-sub-about .title-japan {
  padding-left: 102px;
  height: 120px;
  font-size: 23px;
}

.section-sub-about .title-about span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  line-height: 1.6;
}
@media only screen and (max-width: 767.98px) {
  .section-sub-about .title-about span {
    padding-left: 80px;
    height: 21vw;
    font-size: 16px;
  }
}

.section-sub-about .text-about {
  margin-bottom: 15px;
}

.section-sub-about .title-english {
  right: calc(50% - 542px);
  font-size: 80px;
  font-weight: 100;
}

.section-sub-about .content-right .wrapper-button {
  margin-top: 30px;
}

.section-map {
  background-image: none;
  background-color: #F7F4F3;
}
.section-map--detail {
  background-color: transparent;
}

.section-map .section-title .title-english {
  color: #E6DEDB;
}

.section-map .list-tabs {
  color: #00AE8D;
}

.section-map .tab-link {
  border: solid 2px #00AE8D;
  color: #00AE8D;
}
.section-map .tab-link:hover {
  background-color: #00AE8D;
}

.section-map .list-tabs .current {
  background-color: #00AE8D;
  border: solid 2px #00AE8D;
}

.section-map .image-tab img {
  border: 1px solid #ccc;
}

.section-access {
  padding-bottom: 0;
  margin-bottom: 30px;
  background-image: none;
  background-color: #F7F4F3;
}
.section-access .section-title .title-english {
  color: #E6DEDB;
}
.section-access .google-map {
  margin-bottom: 0;
}
.section-access .content-access {
  padding: 27px 0;
  width: 100%;
  background-color: #fff;
}
@media only screen and (max-width: 767.98px) {
  .section-access .content-access {
    padding-top: 8px;
  }
}
.section-access .content-access .block-content {
  margin: 0 auto;
  width: 720px;
}
@media only screen and (max-width: 767.98px) {
  .section-access .content-access .block-content {
    padding: 0 25px;
    width: 100%;
  }
}
.section-access .access-bannar {
  margin-top: 60px;
}
@media only screen and (max-width: 767.98px) {
  .section-access .access-bannar {
    margin-top: 48px;
    text-align: center;
  }
  .section-access .access-bannar img {
    width: 100%;
  }
}

.section-shop-list .number-order .text-big {
  text-transform: uppercase;
}
@media only screen and (max-width: 767.98px) {
  .section-shop-list .number-order .text-big {
    font-size: 10px;
  }
}

@media only screen and (max-width: 767.98px) {
  .section-shop-list .category {
    margin-bottom: 0.05rem;
    font-size: 8px;
  }
}

@media only screen and (max-width: 767.98px) {
  .section-shop-list .number-order .text-small {
    font-size: 10px;
  }
}

@media only screen and (max-width: 767.98px) {
  .section-shop-list .title-item {
    line-height: 1.4;
  }
}

.item-detail dd.shopid {
  text-transform: uppercase;
}

/*# sourceMappingURL=garden.css.map */