@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Shippori+Mincho:wght@400;700&family=Source+Sans+3:wght@400;700&display=swap");
.header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background-color: #fff;
}
.header__logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.header__logo a {
  display: block;
  height: 100%;
  background-color: #00a2c6;
}
.header__logo a img {
  width: 100%;
}

.nav ul {
  position: relative;
}
.nav__item {
  display: inline-block;
}
.nav__item a {
  display: inline-block;
  padding: 2px 0;
  text-decoration: none;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.1rem;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}
.nav__item a::before {
  background-color: #00a2c6;
}
.nav__item a.request, .nav__item a.reservation {
  position: absolute;
  bottom: -60px;
  width: 48%;
  padding: 8px 0;
  color: #fff;
}
.nav__item a.request::before, .nav__item a.reservation::before {
  display: none;
}
.nav__item a.request {
  left: 0;
  background-color: #00a2c6;
}
.nav__item a.reservation {
  right: 0;
  background-color: #39ae3c;
}

.btn-bgm {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
     -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (min-width: 1025px), print {
  .header {
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 85px;
    min-width: 1480px;
  }
  .header__logo {
    width: 320px;
  }
  .header__logo a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px 0 12px;
  }
  .header .btn__conversion {
    width: auto;
    margin-top: 0;
  }
  .header .btn__conversion a {
    width: 98px;
  }

  .nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 600px;
  }
  .nav__item:nth-child(2), .nav__item:nth-child(3) {
    width: 134px;
  }
  .nav__item a {
    display: block;
    position: relative;
    padding: 0 15px;
    border-right: solid 1px #000000;
    font-size: 1.6rem;
  }
  .nav__item a::before, .nav__item a::after {
    position: absolute;
    opacity: 0;
    z-index: 1;
    content: "";
  }
  .nav__item a::before {
    bottom: -26px;
    left: -20px;
    width: 100%;
    height: 24px;
    background: url(../images/hover_line.svg) no-repeat center top/contain;
    -webkit-transition: all 0.3s ease 0.2s;
    -moz-transition: all 0.3s ease 0.2s;
    transition: all 0.3s ease 0.2s;
  }
  .nav__item a::after {
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
       -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 80%;
    height: 32px;
    background: url(../images/hover_mt.svg) no-repeat center top/contain;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .nav__item a:hover::before {
    left: 0;
    opacity: 0.5;
  }
  .nav__item a:hover::after {
    top: -14px;
    opacity: 0.5;
  }
  .nav__item span {
    position: relative;
    z-index: 2;
  }
  .nav__item:first-child a {
    border-left: solid 1px #000000;
  }

  .hamburger {
    display: none;
  }

  .btn-bgm {
    right: 15px;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1024px) and (max-width: 1366px) {
  .header {
    -webkit-box-pack: start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    min-width: 1200px;
  }
  .header__logo {
    width: 14vw;
  }

  .nav {
    margin-left: 22vw;
  }
  .nav__item:nth-child(2), .nav__item:nth-child(3) {
    width: 108px;
  }
  .nav__item a {
    padding: 0 8px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .header {
    display: block;
    height: 45px;
  }
  .header__logo {
    width: 160px;
  }
  .header__logo a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 8px 10px;
  }
  .header .hamburger {
    width: 27px;
    height: 25px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
       -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    right: 15px;
    cursor: pointer;
    z-index: 999;
  }
  .header .hamburger__line {
    width: 27px;
    height: 2px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
    -moz-border-radius: 10px;
         border-radius: 10px;
    background-color: #778592;
    display: block;
    position: absolute;
    left: 0;
  }
  .header .hamburger__line--1 {
    top: 0px;
  }
  .header .hamburger__line--2 {
    top: 11.5px;
  }
  .header .hamburger__line--3 {
    top: 23px;
  }

  .nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .nav ul {
    -webkit-transform: translate(0, -80px);
       -moz-transform: translate(0, -80px);
        -ms-transform: translate(0, -80px);
            transform: translate(0, -80px);
  }
  .nav__item {
    display: block;
    opacity: 0;
    -webkit-transition: 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
    -moz-transition: 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-transform: translate(0, 60%);
       -moz-transform: translate(0, 60%);
        -ms-transform: translate(0, 60%);
            transform: translate(0, 60%);
  }
  .nav__item a {
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    padding: 14px 0;
    font-size: 1.6rem;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .nav__item a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 0 0;
    width: 12px;
    height: 2px;
  }

  .open-nav .nav {
    opacity: 1;
    visibility: visible;
    z-index: 99;
  }
  .open-nav .nav .nav__item {
    opacity: 1;
    -webkit-transform: translate(0, 0);
       -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .open-nav .nav .nav__item:nth-child(1) {
    -webkit-transition-delay: 0.4s;
       -moz-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .open-nav .nav .nav__item:nth-child(2) {
    -webkit-transition-delay: 0.5s;
       -moz-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .open-nav .nav .nav__item:nth-child(3) {
    -webkit-transition-delay: 0.6s;
       -moz-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .open-nav .nav .nav__item:nth-child(4) {
    -webkit-transition-delay: 0.7s;
       -moz-transition-delay: 0.7s;
            transition-delay: 0.7s;
  }
  .open-nav .nav .nav__item:nth-child(5) {
    -webkit-transition-delay: 0.8s;
       -moz-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .open-nav .nav .nav__item:nth-child(6) {
    -webkit-transition-delay: 0.9s;
       -moz-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  .open-nav .nav .nav__item:nth-child(7) {
    -webkit-transition-delay: 1s;
       -moz-transition-delay: 1s;
            transition-delay: 1s;
  }
  .open-nav .nav .nav__item:nth-child(8) {
    -webkit-transition-delay: 1.1s;
       -moz-transition-delay: 1.1s;
            transition-delay: 1.1s;
  }
  .open-nav .nav .nav__item a {
    opacity: 1;
    visibility: visible;
  }

  .open-nav .hamburger__line--1 {
    top: 11.5px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
         transform: rotate(45deg);
  }

  .open-nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open-nav .hamburger__line--3 {
    top: 11.5px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
     -ms-transform: rotate(-45deg);
         transform: rotate(-45deg);
  }

  .btn-bgm {
    right: 64px;
  }
}
@media screen and (max-width: 599px) {
  .header {
    display: block;
    height: 44px;
  }
  .header__logo {
    width: 160px;
  }
  .header__logo a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 8px 10px;
  }
  .header .hamburger {
    width: 27px;
    height: 25px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
       -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    right: 15px;
    cursor: pointer;
    z-index: 999;
  }
  .header .hamburger__line {
    width: 27px;
    height: 2px;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
    -moz-border-radius: 10px;
         border-radius: 10px;
    background-color: #778592;
    display: block;
    position: absolute;
    left: 0;
  }
  .header .hamburger__line--1 {
    top: 0px;
  }
  .header .hamburger__line--2 {
    top: 11.5px;
  }
  .header .hamburger__line--3 {
    top: 23px;
  }

  .nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .nav ul {
    -webkit-transform: translate(0, -80px);
       -moz-transform: translate(0, -80px);
        -ms-transform: translate(0, -80px);
            transform: translate(0, -80px);
  }
  .nav__item {
    display: block;
    opacity: 0;
    -webkit-transition: 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
    -moz-transition: 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
    transition: 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
    -webkit-transform: translate(0, 60%);
       -moz-transform: translate(0, 60%);
        -ms-transform: translate(0, 60%);
            transform: translate(0, 60%);
  }
  .nav__item a {
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    padding: 14px 0;
    font-size: 1.5rem;
    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .nav__item a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px 0 0;
    width: 12px;
    height: 2px;
  }

  .open-nav .nav {
    opacity: 1;
    visibility: visible;
    z-index: 99;
  }
  .open-nav .nav .nav__item {
    opacity: 1;
    -webkit-transform: translate(0, 0);
       -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .open-nav .nav .nav__item:nth-child(1) {
    -webkit-transition-delay: 0.4s;
       -moz-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .open-nav .nav .nav__item:nth-child(2) {
    -webkit-transition-delay: 0.5s;
       -moz-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
  .open-nav .nav .nav__item:nth-child(3) {
    -webkit-transition-delay: 0.6s;
       -moz-transition-delay: 0.6s;
            transition-delay: 0.6s;
  }
  .open-nav .nav .nav__item:nth-child(4) {
    -webkit-transition-delay: 0.7s;
       -moz-transition-delay: 0.7s;
            transition-delay: 0.7s;
  }
  .open-nav .nav .nav__item:nth-child(5) {
    -webkit-transition-delay: 0.8s;
       -moz-transition-delay: 0.8s;
            transition-delay: 0.8s;
  }
  .open-nav .nav .nav__item:nth-child(6) {
    -webkit-transition-delay: 0.9s;
       -moz-transition-delay: 0.9s;
            transition-delay: 0.9s;
  }
  .open-nav .nav .nav__item:nth-child(7) {
    -webkit-transition-delay: 1s;
       -moz-transition-delay: 1s;
            transition-delay: 1s;
  }
  .open-nav .nav .nav__item:nth-child(8) {
    -webkit-transition-delay: 1.1s;
       -moz-transition-delay: 1.1s;
            transition-delay: 1.1s;
  }
  .open-nav .nav .nav__item a {
    opacity: 1;
    visibility: visible;
  }

  .open-nav .hamburger__line--1 {
    top: 11.5px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
         transform: rotate(45deg);
  }

  .open-nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open-nav .hamburger__line--3 {
    top: 11.5px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
     -ms-transform: rotate(-45deg);
         transform: rotate(-45deg);
  }

  .btn-bgm {
    right: 64px;
  }
}
#container {
  overflow-x: hidden;
  color: #231815;
  font-family: "Shippori Mincho", serif;
}

.contentWidth {
  width: 84%;
  margin: auto;
}
.contentWidth--large {
  width: 92%;
  margin: auto;
}

@media screen and (min-width: 1025px), print {
  #container {
    min-width: 1480px;
  }

  .mainContent {
    padding-top: 85px;
  }

  .contentWidth {
    width: 1200px;
  }
  .contentWidth--large {
    width: 1400px;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1024px) and (max-width: 1366px) {
  #container {
    min-width: 1200px;
  }

  .contentWidth {
    width: 1000px;
  }
  .contentWidth--large {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .mainContent {
    padding-top: 45px;
  }
}
@media screen and (max-width: 599px) {
  .mainContent {
    padding-top: 44px;
  }
}
.footer {
  position: relative;
  z-index: 3;
  background-color: #fff;
}
.footer .btn__conversion {
  position: relative;
  top: 0;
  right: 0;
  -webkit-transform: translate(0, 0);
     -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.ft__logo {
  width: 101.5px;
  margin: auto;
}

.ft-address__logo {
  width: 82%;
  margin: auto;
}
.ft-address__store {
  display: block;
  font-size: 1.4rem;
  text-align: center;
}
.ft-address__tel {
  width: 90%;
  margin: 10px auto 0;
}

.showcase {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.showcase__elm {
  width: 48%;
}
.showcase__place {
  margin-top: 10px;
  color: #00a2c6;
  font-size: 1.4rem;
}
.showcase__desc {
  margin-top: 5px;
  font-size: 1.2rem;
}

.copyright {
  display: block;
  padding: 20px 0;
  background-color: #fafbf4;
  font-family: "Source Sans 3", sans-serif;
  text-align: center;
}

@media screen and (min-width: 1025px), print {
  .ft__logo {
    width: 200px;
  }

  .ft__inner {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 120px;
  }
  .ft__inner .google-map {
    width: 670px;
    height: 540px;
  }

  .ft-address {
    width: 670px;
    margin-top: -40px;
  }
  .ft-address__logo {
    width: 440px;
  }
  .ft-address__store {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
  .ft-address__tel {
    width: 480px;
    margin-top: 20px;
  }

  .showcase {
    margin-top: 30px;
  }
  .showcase__place {
    font-size: 2.4rem;
  }
  .showcase__desc {
    font-size: 1.4rem;
  }

  .copyright {
    margin-top: 40px;
    padding: 30px 0;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1025px) and (min-width: 1024px) and (max-width: 1366px) {
  .ft-address, .ft__inner .google-map {
    width: 569.5px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .ft__inner .google-map {
    height: 48vh;
    margin-top: 30px;
  }

  .ft-address {
    margin-top: 40px;
  }
  .ft-address__logo {
    width: 352px;
  }
  .ft-address__store {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
  .ft-address__tel {
    width: 384px;
    margin-top: 20px;
  }

  .showcase {
    margin-top: 30px;
  }
  .showcase__place {
    font-size: 2.2rem;
  }
  .showcase__desc {
    font-size: 1.4rem;
  }

  .copyright {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .ft__inner .google-map {
    height: 36vh;
    margin-top: 30px;
  }

  .ft-address {
    margin-top: 40px;
  }

  .showcase {
    margin-top: 30px;
  }

  .copyright {
    margin-top: 30px;
  }
}
.swiper-container {
  position: relative;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}

.swiper-slide {
  background-repeat: no-repeat;
  -moz-background-size: cover;
       background-size: cover;
  background-position: center;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 25px;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}

.firstView {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.firstView__slide {
  width: 70.77%;
}
.firstView__catch {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 27.27%;
  background-color: #f1f0ef;
}
.firstView__catch::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #fff;
  content: "";
}
.firstView__logo {
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.firstView__txt {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.firstView__txt .char {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.firstView .inner__sub {
  display: block;
}
.firstView .inner__main {
  font-weight: normal;
}
.firstView .inner__main .num {
  -webkit-writing-mode: initial;
      -ms-writing-mode: initial;
          writing-mode: initial;
  line-height: 1;
}

@media screen and (min-width: 1025px), print {
  .firstView {
    height: -webkit-calc(100vh - 85px);
    height: -moz-calc(100vh - 85px);
    height: calc(100vh - 85px);
  }
  .firstView__logo {
    top: 1.5vw;
    width: 7.5vw;
  }
  .firstView__catch::before {
    width: 10px;
  }
  .firstView__txt {
    padding-top: 80px;
  }
  .firstView__txt .inner__sub {
    padding-top: 40px;
    font-size: 2.8rem;
    letter-spacing: 0.4rem;
  }
  .firstView__txt .inner__main {
    height: 400px;
    margin-right: 10px;
    padding-top: 40px;
    font-size: 6.4rem;
    letter-spacing: 0.4rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .firstView {
    height: -webkit-calc(50vh - 45px);
    height: -moz-calc(50vh - 45px);
    height: calc(50vh - 45px);
  }
  .firstView__logo {
    top: 30px;
    width: 36%;
  }
  .firstView__txt {
    padding-top: 80px;
  }
  .firstView__txt .inner__sub {
    padding-top: 18px;
    font-size: 1.4rem;
    letter-spacing: 0.4rem;
  }
  .firstView__txt .inner__main {
    height: 280px;
    margin-right: 5px;
    padding-top: 18px;
    font-size: 3.6rem;
    letter-spacing: 0.4rem;
  }
}
@media screen and (max-width: 599px) {
  .firstView {
    height: -webkit-calc(36vh - 45px);
    height: -moz-calc(36vh - 45px);
    height: calc(36vh - 45px);
  }
  .firstView__slide {
    width: 65.77%;
  }
  .firstView__catch {
    width: 32.27%;
  }
  .firstView__logo {
    top: 20px;
    width: 32%;
  }
  .firstView__txt {
    padding-top: 50px;
  }
  .firstView__txt .inner__sub {
    padding-top: 18px;
    font-size: 1.2rem;
    letter-spacing: 0.4rem;
  }
  .firstView__txt .inner__main {
    height: 180px;
    margin-right: 4px;
    padding-top: 18px;
    font-size: 2.4rem;
    letter-spacing: 0.4rem;
  }
}
.lead {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.leadPoint__elm {
  position: relative;
}
.leadPoint__elm::before, .leadPoint__elm::after {
  position: absolute;
  content: "";
}
.leadPoint__elm.access::before {
  background: url(../images/lead_access_buss.svg) no-repeat left top/contain;
}
.leadPoint__elm.access::after {
  background: url(../images/lead_access_car.svg) no-repeat left top/contain;
}
.leadPoint__elm.access .arrow01,
.leadPoint__elm.access .arrow02 {
  position: absolute;
}
.leadPoint__elm.flat::before {
  background: url(../images/lead_flat_light.svg) no-repeat left top/contain;
}
.leadPoint__elm.using::before {
  background: url(../images/lead_using_person.svg) no-repeat left top/contain;
}
.leadPoint__cap {
  text-align: center;
}

@media screen and (min-width: 1025px), print {
  .lead {
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 100px 0;
  }

  .leadPoint__elm {
    width: 346.66px;
  }
  .leadPoint__elm.access::before {
    top: 13px;
    left: 16px;
    width: 100px;
    height: 33px;
  }
  .leadPoint__elm.access::after {
    top: 18px;
    right: 0;
    width: 48px;
    height: 30px;
  }
  .leadPoint__elm.access .arrow01,
.leadPoint__elm.access .arrow02 {
    width: 48px;
    height: 30px;
  }
  .leadPoint__elm.access .arrow01 {
    top: 22px;
    left: 99px;
  }
  .leadPoint__elm.access .arrow02 {
    top: 22px;
    right: 64px;
  }
  .leadPoint__elm.flat::before {
    top: -5px;
    left: 154px;
    width: 80px;
    height: 30px;
  }
  .leadPoint__elm.using {
    -webkit-transform: translate(0, -8px);
       -moz-transform: translate(0, -8px);
        -ms-transform: translate(0, -8px);
            transform: translate(0, -8px);
  }
  .leadPoint__elm.using::before {
    top: -3px;
    left: 30px;
    width: 48px;
    height: 60px;
  }
  .leadPoint__cap {
    margin-top: 10px;
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .lead {
    width: 640px;
    padding: 80px 0;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .leadPoint__elm {
    width: 300px;
  }
  .leadPoint__elm.access {
    margin-right: 40px;
  }
  .leadPoint__elm.access::before {
    top: 9px;
    left: 16px;
    width: 100px;
    height: 33px;
  }
  .leadPoint__elm.access::after {
    top: 12px;
    right: 0;
    width: 48px;
    height: 30px;
  }
  .leadPoint__elm.access .arrow01,
.leadPoint__elm.access .arrow02 {
    width: 48px;
    height: 30px;
  }
  .leadPoint__elm.access .arrow01 {
    top: 18px;
    left: 90px;
  }
  .leadPoint__elm.access .arrow02 {
    top: 18px;
    right: 58px;
  }
  .leadPoint__elm.flat::before {
    top: 0;
    left: 142px;
    width: 70px;
    height: 20px;
  }
  .leadPoint__elm.using {
    margin-top: 40px;
  }
  .leadPoint__elm.using::before {
    top: -11px;
    left: 30px;
    width: 48px;
    height: 60px;
  }
  .leadPoint__cap {
    margin-top: 10px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .lead {
    padding: 60px 0;
  }

  .leadPoint__elm {
    width: 300px;
    margin: 40px auto 0;
  }
  .leadPoint__elm.access {
    margin-top: 0;
  }
  .leadPoint__elm.access::before {
    top: 9px;
    left: 16px;
    width: 100px;
    height: 33px;
  }
  .leadPoint__elm.access::after {
    top: 12px;
    right: 0;
    width: 48px;
    height: 30px;
  }
  .leadPoint__elm.access .arrow01,
.leadPoint__elm.access .arrow02 {
    width: 28px;
    height: 12px;
  }
  .leadPoint__elm.access .arrow01 {
    top: 18px;
    left: 100px;
  }
  .leadPoint__elm.access .arrow02 {
    top: 18px;
    right: 66px;
  }
  .leadPoint__elm.flat::before {
    top: 0;
    left: 142px;
    width: 70px;
    height: 20px;
  }
  .leadPoint__elm.using::before {
    top: -11px;
    left: 30px;
    width: 48px;
    height: 60px;
  }
  .leadPoint__cap {
    margin-top: 10px;
    font-size: 1.8rem;
  }
}
.concept {
  background-color: #d4eaf2;
}

.cptLocation__cap {
  text-align: center;
}

.cptPoint__cap {
  font-weight: normal;
}

@media screen and (min-width: 1025px), print {
  .concept {
    padding: 60px 0 100px;
  }

  .cptLocation {
    position: relative;
  }
  .cptLocation::before, .cptLocation::after {
    position: absolute;
    content: "";
  }
  .cptLocation::before {
    z-index: 3;
    top: 240px;
    left: 593px;
    width: 200px;
    height: 500px;
    background: url(../images/concept_mark.svg) no-repeat left top/contain;
  }
  .cptLocation::after {
    bottom: 106px;
    left: 495px;
    z-index: 2;
    width: 390px;
    height: 400px;
    background: url(../images/concept_light.png) no-repeat left top/contain;
  }
  .cptLocation img {
    position: relative;
    z-index: 1;
  }
  .cptLocation__cap {
    margin-top: 60px;
    font-size: 4rem;
    letter-spacing: 0.2rem;
  }
  .cptLocation__lead {
    margin-top: 15px;
    font-size: 2rem;
    line-height: 3.6rem;
    text-align: center;
  }

  .cptPoint {
    margin-top: 100px;
  }
  .cptPoint__elm {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cptPoint__elm + .cptPoint__elm {
    margin-top: 80px;
  }
  .cptPoint__elm.flat {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
       -moz-box-orient: horizontal;
       -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-transform: translate(-20px, 0);
       -moz-transform: translate(-20px, 0);
        -ms-transform: translate(-20px, 0);
            transform: translate(-20px, 0);
  }
  .cptPoint__elm.flat .cptPoint__txt {
    margin-right: 30px;
    margin-left: 0;
  }
  .cptPoint__elm.flat .cptPoint__cap,
.cptPoint__elm.flat .cptPoint__desc {
    width: 448px;
    margin-left: auto;
  }
  .cptPoint__elm.using {
    -webkit-transform: translate(250px, 0);
       -moz-transform: translate(250px, 0);
        -ms-transform: translate(250px, 0);
            transform: translate(250px, 0);
  }
  .cptPoint__pict {
    width: 685px;
  }
  .cptPoint__txt {
    width: 685px;
    margin-left: 30px;
  }
  .cptPoint__cap {
    font-size: 3rem;
  }
  .cptPoint__desc {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 2.8rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .concept {
    padding: 40px 0 60px;
  }

  .cptLocation {
    position: relative;
  }
  .cptLocation__cap {
    margin-top: 30px;
    font-size: 2.8rem;
    letter-spacing: 0.2rem;
  }
  .cptLocation__lead {
    margin-top: 5px;
    font-size: 1.6rem;
    text-align: center;
  }

  .cptPoint {
    margin-top: 100px;
  }
  .cptPoint__elm {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cptPoint__elm + .cptPoint__elm {
    margin-top: 60px;
  }
  .cptPoint__elm.flat {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
       -moz-box-orient: horizontal;
       -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .cptPoint__elm.flat .cptPoint__txt {
    margin-right: 30px;
    margin-left: 0;
  }
  .cptPoint__pict {
    width: 274px;
  }
  .cptPoint__txt {
    width: 397.3px;
    margin-left: 30px;
  }
  .cptPoint__cap {
    font-size: 2rem;
  }
  .cptPoint__desc {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .concept {
    padding: 40px 0 60px;
  }

  .cptLocation__cap {
    margin-top: 30px;
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
  }
  .cptLocation__lead {
    margin-top: 5px;
    font-size: 1.4rem;
  }

  .cptPoint {
    margin-top: 60px;
  }
  .cptPoint__elm + .cptPoint__elm {
    margin-top: 60px;
  }
  .cptPoint__txt {
    margin-top: 10px;
  }
  .cptPoint__cap {
    font-size: 2rem;
  }
  .cptPoint__desc {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}
.assist__image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.assist__image img {
  width: -webkit-calc(50% - 5px);
  width: -moz-calc(50% - 5px);
  width: calc(50% - 5px);
}
.assistTxt {
  margin-top: 10px;
  background-color: #f1f0ef;
}
.assistTxt .head,
.assistTxt .bottom {
  display: block;
}
.assistTxt__price {
  font-weight: normal;
}
.assistTxt__info .line {
  display: block;
  margin-top: 10px;
}
.assistTxt__info .line:first-child {
  margin-top: 0;
}
.assistTxt__info .annotation {
  margin-left: 10px;
}
.assist__aside a {
  color: #337029;
  text-decoration: none;
}

@media screen and (min-width: 1025px), print {
  .assist {
    padding-top: 100px;
  }
  .assist__image {
    margin-top: 40px;
  }
  .assist__aside {
    margin-top: 80px;
    font-size: 1.4rem;
  }
  .assist__aside a {
    position: relative;
    margin-left: 10px;
  }
  .assist__aside a::before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #337029;
    content: "";
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .assist__aside a:hover::before {
    width: 100%;
  }

  .assistTxt {
    padding: 60px 0;
  }
  .assistTxt__lead {
    font-size: 1.6rem;
  }
  .assistTxt__lead .bottom {
    padding-left: 1em;
  }
  .assistTxt__price {
    margin-top: 40px;
    font-size: 2.8rem;
  }
  .assistTxt__info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 20px;
  }
  .assistTxt__info__head {
    width: 100px;
    font-size: 1.6rem;
  }
  .assistTxt__info .line {
    font-size: 1.6rem;
  }
  .assistTxt__info .annotation {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .assist {
    padding-top: 80px;
  }
  .assist__image {
    margin-top: 20px;
  }
  .assist__aside {
    margin-top: 60px;
    font-size: 1.4rem;
  }
  .assist__aside a {
    margin-left: 10px;
  }

  .assistTxt {
    padding: 40px 0;
  }
  .assistTxt__lead {
    font-size: 1.6rem;
  }
  .assistTxt__lead .bottom {
    padding-left: 1em;
  }
  .assistTxt__price {
    margin-top: 40px;
    font-size: 2rem;
  }
  .assistTxt__info {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 10px;
  }
  .assistTxt__info__head {
    width: 80px;
    font-size: 1.6rem;
  }
  .assistTxt__info .line {
    font-size: 1.6rem;
  }
  .assistTxt__info .annotation {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 599px) {
  .assist {
    padding-top: 60px;
  }
  .assist__image {
    margin-top: 10px;
  }
  .assist__aside {
    margin-top: 30px;
    font-size: 1.2rem;
  }
  .assist__aside a {
    display: block;
  }

  .assistTxt {
    padding: 30px 0;
  }
  .assistTxt__lead {
    font-size: 1.4rem;
  }
  .assistTxt__price {
    margin-top: 20px;
    font-size: 1.8rem;
  }
  .assistTxt__info__head {
    margin-top: 5px;
    font-size: 1.4rem;
  }
  .assistTxt__info__desc {
    margin-top: 5px;
  }
  .assistTxt__info .line {
    font-size: 1.4rem;
  }
  .assistTxt__info .annotation {
    display: block;
    font-size: 1.2rem;
  }
}
.lifePlan .btn__conversion {
  position: relative;
  top: 0;
  right: 0;
  -webkit-transform: translate(0, 0);
     -moz-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

.planningPoint {
  position: relative;
  background-color: #f1f0ef;
}
.planningPoint::before {
  position: absolute;
  top: -29px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
     -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-right: solid 30px transparent;
  border-bottom: solid 30px #f1f0ef;
  border-left: solid 30px transparent;
  content: "";
}
.planningPoint__elm {
  position: relative;
}
.planningPoint__elm::before {
  position: absolute;
  left: 0;
  width: 100%;
  content: "";
}
.planningPoint__elm.openFeeling::before {
  background: url(../images/planning_illust01.svg) no-repeat center top/contain;
}
.planningPoint__elm.garden::before {
  background: url(../images/planning_illust02.svg) no-repeat center top/contain;
}
.planningPoint__elm.acreage::before {
  background: url(../images/planning_illust03.svg) no-repeat center top/contain;
}
.planningPoint__head {
  text-align: center;
}
.planningPoint__cap {
  text-align: center;
}

@media screen and (min-width: 1025px), print {
  .lifePlan {
    padding: 100px 0 120px;
  }
  .lifePlan__pict {
    margin-top: 100px;
  }
  .lifePlan__pict img {
    width: 100%;
  }
  .lifePlan__info {
    width: 1000px;
    margin: 80px auto 0;
  }

  .planningPoint {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1000px;
    margin: 60px auto 0;
    padding: 30px;
  }
  .planningPoint__elm {
    width: 280px;
    padding: 15px 18px;
    border: solid 2px #231815;
  }
  .planningPoint__elm::before {
    top: -48px;
    height: 48px;
  }
  .planningPoint__head {
    width: 100%;
    margin-bottom: 70px;
    font-size: 2.4rem;
  }
  .planningPoint__cap {
    font-size: 1.8rem;
  }
  .planningPoint__desc {
    margin-top: 5px;
    font-size: 1.4rem;
    text-align: center;
  }
  .planningPoint .plus {
    width: 24px;
  }

  .planningPrice {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 100px;
  }
  .planningPrice__table {
    width: 440px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .lifePlan {
    padding: 60px 0 80px;
  }
  .lifePlan__pict {
    margin-top: 60px;
  }
  .lifePlan__info {
    width: 76%;
    margin: 60px auto 0;
  }

  .planningPoint {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
       -moz-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 76%;
    margin: 60px auto 0;
    padding: 30px;
  }
  .planningPoint__elm {
    position: relative;
    width: 159.6px;
    padding: 15px 18px;
    border: solid 2px #231815;
  }
  .planningPoint__elm::before {
    top: -28px;
    height: 28px;
  }
  .planningPoint__head {
    width: 100%;
    margin-bottom: 40px;
    font-size: 2.4rem;
  }
  .planningPoint__cap {
    font-size: 1.6rem;
  }
  .planningPoint__desc {
    margin-top: 5px;
    font-size: 1.2rem;
    text-align: center;
  }
  .planningPoint .plus {
    width: 12px;
  }

  .planningPrice {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 60px;
  }
  .planningPrice__table {
    width: 32%;
  }
}
@media screen and (max-width: 599px) {
  .lifePlan {
    padding: 40px 0 100px;
  }
  .lifePlan__pict {
    margin-top: 40px;
  }
  .lifePlan__info {
    width: 76%;
    margin: 40px auto 0;
  }

  .planningPoint {
    width: 76%;
    margin: 60px auto 0;
    padding: 20px;
  }
  .planningPoint__elm {
    position: relative;
    padding: 15px 12px;
    border: solid 2px #231815;
  }
  .planningPoint__elm::before {
    top: -38px;
    height: 38px;
  }
  .planningPoint__elm.garden, .planningPoint__elm.acreage {
    margin-top: 50px;
  }
  .planningPoint__head {
    width: 100%;
    margin-bottom: 50px;
    font-size: 2rem;
  }
  .planningPoint__cap {
    font-size: 1.6rem;
  }
  .planningPoint__desc {
    margin-top: 5px;
    font-size: 1.2rem;
  }
  .planningPoint .plus {
    display: block;
    width: 18px;
    margin: 15px auto 0;
  }

  .planningPrice {
    margin-top: 60px;
  }
  .planningPrice__table + .planningPrice__table {
    margin-top: 20px;
  }
}
.location__lead {
  letter-spacing: 0.1rem;
  text-align: center;
}
.location .google-map {
  margin: auto;
}

.locationInfo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.locationInfo__cap {
  margin-top: 5px;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
}

.locationAccess__head {
  font-weight: normal;
}
.locationAccess__line {
  position: relative;
  padding-left: 1.2em;
  font-size: 1.4rem;
}
.locationAccess__line::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 14px;
  height: 14px;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background-color: #9fa0a0;
  content: "";
}
.locationAccess__line + .locationAccess__line {
  margin-top: 5px;
}

@media screen and (min-width: 1025px), print {
  .scroll_content {
    margin-top: 60px;
  }
  .scroll_content img {
    width: 100%;
  }

  .location {
    padding-bottom: 120px;
  }
  .location__lead {
    margin-top: 40px;
    font-size: 2.8rem;
    line-height: 4.8rem;
  }
  .location .google-map {
    width: 1400px;
    height: 933px;
    margin-top: 100px;
  }

  .locationInfo {
    margin-top: 60px;
    margin-bottom: 100px;
  }
  .locationInfo__elm {
    width: 380px;
    margin-top: 30px;
    margin-right: 30px;
  }
  .locationInfo__elm:first-child, .locationInfo__elm:nth-child(2), .locationInfo__elm:nth-child(3) {
    margin-top: 0;
  }
  .locationInfo__elm:nth-child(3n) {
    margin-right: 0;
  }
  .locationInfo__cap {
    font-size: 1.6rem;
  }

  .locationAccess {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1000px;
    margin: 0 auto;
  }
  .locationAccess + .locationAccess {
    margin-top: 40px;
  }
  .locationAccess__head {
    width: 210px;
    font-size: 2.6rem;
    text-align: right;
  }
  .locationAccess__list {
    width: -webkit-calc(100% - 250px);
    width: -moz-calc(100% - 250px);
    width: calc(100% - 250px);
    margin-top: 5px;
  }
  .locationAccess__line {
    font-size: 1.8rem;
  }
  .locationAccess__line::before {
    top: 6px;
    width: 18px;
    height: 18px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .scroll_content {
    margin-top: 60px;
  }

  .location {
    padding-bottom: 80px;
  }
  .location__lead {
    margin-top: 40px;
    font-size: 2.4rem;
    line-height: 4.2rem;
  }
  .location .google-map {
    width: 84%;
    height: 512px;
    margin-top: 60px;
  }

  .locationInfo {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .locationInfo__elm {
    width: 32%;
    margin-top: 20px;
    margin-right: 2%;
  }
  .locationInfo__elm:first-child, .locationInfo__elm:nth-child(2), .locationInfo__elm:nth-child(3) {
    margin-top: 0;
  }
  .locationInfo__elm:nth-child(3n) {
    margin-right: 0;
  }
  .locationInfo__line::before {
    top: 6px;
    width: 18px;
    height: 18px;
  }

  .locationAccess {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 84%;
    margin: 0 auto;
  }
  .locationAccess + .locationAccess {
    margin-top: 30px;
  }
  .locationAccess__head {
    width: 180px;
    font-size: 2rem;
    text-align: right;
  }
  .locationAccess__list {
    width: -webkit-calc(100% - 210px);
    width: -moz-calc(100% - 210px);
    width: calc(100% - 210px);
    margin-top: 5px;
  }
}
@media screen and (max-width: 599px) {
  .scroll_content {
    margin-top: 40px;
  }

  .location {
    padding-bottom: 80px;
  }
  .location__lead {
    margin-top: 40px;
    font-size: 1.8rem;
  }
  .location .google-map {
    width: 84%;
    height: 35vh;
    margin-top: 60px;
  }

  .locationInfo {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .locationInfo__elm {
    width: 48%;
    margin-top: 10px;
    margin-right: 4%;
  }
  .locationInfo__elm:first-child, .locationInfo__elm:nth-child(2) {
    margin-top: 0;
  }
  .locationInfo__elm:nth-child(2n) {
    margin-right: 0;
  }

  .locationAccess {
    width: 84%;
    margin: 0 auto;
  }
  .locationAccess + .locationAccess {
    margin-top: 30px;
  }
  .locationAccess__head {
    font-size: 2rem;
  }
  .locationAccess__list {
    margin-top: 5px;
  }
}
.h-day {
  background-color: #d4eaf2;
}
.h-day__ttl {
  font-weight: normal;
  text-align: center;
}
.h-day__ttl--sub {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.h-day__ttl--sub::before, .h-day__ttl--sub::after {
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #231815;
  content: "";
}
.h-day__ttl--sub::before {
  margin-right: 10px;
}
.h-day__ttl--sub::after {
  margin-left: 10px;
}

.h-dayTypes__elm.wide {
  width: 100%;
}
.h-dayTypes__elm.wide::before {
  display: none;
}
.h-dayTypes__head {
  display: block;
  text-align: center;
}
.h-dayTypes__img {
  position: relative;
}
.h-dayTypes__img img {
  position: relative;
  z-index: 1;
}
.h-dayTypes__cap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 5px;
  z-index: 2;
  -moz-border-radius: 50%;
       border-radius: 50%;
  background-color: #fff;
}
.h-dayTypes__cap .distance {
  display: block;
  width: 100%;
  margin-top: -2px;
  font-size: 1.2rem;
  text-align: center;
}
.h-dayTypes__place {
  font-weight: normal;
  letter-spacing: 0.1rem;
}

@media screen and (min-width: 1025px), print {
  .h-day {
    padding: 120px 0 100px;
  }
  .h-day__ttl {
    font-size: 5rem;
  }
  .h-day__ttl--sub {
    font-size: 2.8rem;
  }

  .h-dayTypes {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
  }
  .h-dayTypes__elm {
    width: 560px;
  }
  .h-dayTypes__elm + .h-dayTypes__elm {
    position: relative;
  }
  .h-dayTypes__elm + .h-dayTypes__elm::before {
    position: absolute;
    top: 0;
    left: -42px;
    width: 2px;
    height: 99%;
    border-left: dotted 2px #231815;
    content: "";
  }
  .h-dayTypes__head {
    margin-top: 10px;
    font-size: 2.8rem;
  }
  .h-dayTypes__img {
    margin-top: 20px;
  }
  .h-dayTypes__cap {
    right: 10px;
    bottom: -70px;
    width: 100px;
    padding: 22px 0;
    font-size: 2.4rem;
  }
  .h-dayTypes__cap .distance {
    font-size: 1.4rem;
  }
  .h-dayTypes__place {
    margin-top: 20px;
    font-size: 3rem;
  }
  .h-dayTypes__desc {
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .h-day {
    padding: 60px 0 80px;
  }
  .h-day__ttl {
    font-size: 3.6rem;
  }
  .h-day__ttl--sub {
    font-size: 2rem;
  }

  .h-dayTypes {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
  }
  .h-dayTypes__elm {
    width: 45%;
  }
  .h-dayTypes__elm + .h-dayTypes__elm {
    position: relative;
  }
  .h-dayTypes__elm + .h-dayTypes__elm::before {
    position: absolute;
    top: 0;
    left: -36px;
    width: 2px;
    height: 99%;
    border-left: dotted 2px #231815;
    content: "";
  }
  .h-dayTypes__head {
    font-size: 2rem;
  }
  .h-dayTypes__img {
    margin-top: 20px;
  }
  .h-dayTypes__cap {
    right: 10px;
    bottom: -58px;
    width: 80px;
    padding: 17px 0;
    font-size: 1.8rem;
  }
  .h-dayTypes__cap .distance {
    font-size: 1.2rem;
  }
  .h-dayTypes__place {
    margin-top: 20px;
    font-size: 2.4rem;
  }
  .h-dayTypes__desc {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .h-day {
    padding: 60px 0 40px;
  }
  .h-day__ttl {
    font-size: 3.2rem;
  }
  .h-day__ttl--sub {
    font-size: 1.8rem;
  }

  .h-dayTypes {
    margin-top: 20px;
  }
  .h-dayTypes__elm + .h-dayTypes__elm {
    margin-top: 30px;
    padding-top: 30px;
    border-top: dotted 2px #231815;
  }
  .h-dayTypes__head {
    font-size: 1.8rem;
  }
  .h-dayTypes__img {
    margin-top: 10px;
  }
  .h-dayTypes__cap {
    bottom: -36px;
    width: 80px;
    padding: 18px 0;
    font-size: 1.8rem;
  }
  .h-dayTypes__place {
    margin-top: 20px;
    font-size: 2.4rem;
  }
  .h-dayTypes__desc {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}
.housePlan {
  background-color: #d4eaf2;
}
.housePlan__content {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 1025px), print {
  .housePlan {
    padding-top: 40px;
    padding-bottom: 100px;
  }
  .housePlan__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 30px;
    padding: 20px;
  }
  .housePlan__appearance {
    width: 520px;
  }
  .housePlan__drawing {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: -webkit-calc(100% - 550px);
    width: -moz-calc(100% - 550px);
    width: calc(100% - 550px);
  }
  .housePlan__floor {
    width: 49%;
  }
  .housePlan__cap {
    width: 100%;
    margin-top: 10px;
    font-size: 1.8rem;
    text-align: center;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .housePlan {
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .housePlan__content {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 30px;
    padding: 20px;
  }
  .housePlan__appearance {
    width: 240px;
  }
  .housePlan__drawing {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: -webkit-calc(100% - 270px);
    width: -moz-calc(100% - 270px);
    width: calc(100% - 270px);
  }
  .housePlan__floor {
    width: 49%;
  }
  .housePlan__cap {
    width: 100%;
    margin-top: 10px;
    font-size: 1.4rem;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .housePlan {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .housePlan__content {
    margin-top: 30px;
    padding: 15px;
  }
  .housePlan__drawing {
    margin-top: 30px;
  }
  .housePlan__floor + .housePlan__floor {
    margin-top: 30px;
  }
  .housePlan__cap {
    margin-top: 20px;
    padding: 0 16px;
    font-size: 1.4rem;
  }
}