@charset "UTF-8";

html {
  font-size: 62.5%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  background-color: #fff;
  margin: 0;
  padding-top: 0;
}

a {
  color: #121212;
  outline: 0;
  outline: none;
  text-decoration: none;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

a:hover {
  color: #87cefa;
  outline: 0;
  outline: none;
  text-decoration: none;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

a[href^="tel:"] {
  cursor: default;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

img.img-fluid {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-fluid {
  max-width: 100%;
  padding-right: 0rem;
  padding-left: 0rem;
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 100%;
    padding-right: 0rem;
    padding-left: 0rem;
  }
}

.container-100p {
  width: 100%;
  margin: 0 auto;
}

.row:before,
.row:after {
  width: 0;
}

.row.no-margin {
  margin-right: 0;
  margin-left: 0;
}

.row.flex {
  display: flex;
  flex-wrap: wrap;
}

.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.flex-center {
  display: flex;
  align-items: center;
}

ul {
  display: block;
  list-style-type: none;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

h1 {
  margin: 0 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: none;
}

.fixed-top {
  z-index: 99;
}

dt {
  font-weight: 600;
}

/* ------------------------------------------------------------------
[Preloader]
------------------------------------------------------------------- */

/*
Copyright（c）2021 by Ash Thornton（https://codepen.io/ashthornton/pen/ZmxaWv）
Released under the MIT license
https://opensource.org/licenses/mit-license.php
*/

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}

#loader .grey,
#loader .white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

#loader .grey {
  z-index: 2;
  background-color: #004831;
}

#loader .white {
  z-index: 1;
  background-color: #d4c4a3;
}

#loader .text-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  overflow: hidden;
  text-align: center;
}

#loader .text-wrap .text {
  font-size: 3rem;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
}

#loader .text-wrap span {
  display: inline-block;
  color: #fff;
  padding-left: 10px;
}

#wrapper {
  display: block;
  width: 100%;
}

@media (max-width: 499px) {
  #loader .text-wrap .text {
    font-size: 2rem;
  }
}

/* ------------------------------------------------------------------
 Nav
------------------------------------------------------------------- */
#mainNav {
  background-color: #004831;
}

.navbar {
  padding: 1.5rem 2rem;
}

.navbar-nav {
  margin-top: 20px;
}

#mainNav .nav-link {
  padding: 1rem 1rem 0.5rem;
  color: #fff;
}

#mainNav .navbar-nav>li.nav-item>a {
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#mainNav .navbar-nav>li.nav-item>a span {
  font-size: 1.2rem;
}

@media (min-width: 499px) {
  .navbar-nav {
    height: 200px;
    overflow: scroll;
  }

  #mainNav .nav-link {
    padding: 0.3rem 1rem;
  }

  #mainNav .navbar-nav>li.nav-item>a {
    font-size: 1.4rem;
  }
}

@media (min-width: 749px) {
  .navbar-nav {
    height: auto;
    overflow: hidden;
  }

  #mainNav .nav-link {
    padding: 1rem 1rem;
  }

  #mainNav .navbar-nav>li.nav-item>a {
    font-size: 1.5rem;
  }
}

@media (orientation: landscape) and (min-width: 700px) {
  .navbar-nav {
    height: 200px;
    overflow: scroll;
  }
}

#mainNav .navbar-toggler {
  font-size: 80%;
  padding: 0.75rem;
  color: #fff;
  border: 1px solid #fff;
}

#mainNav .navbar-brand {
  display: inline-block;
  font-size: 6vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
  padding: 0;
  transition: all 0.5s ease-in-out;
}

#mainNav .navbar-brand span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  padding: 0;
}

@media (min-width: 490px) {
  #mainNav .navbar-brand {
    display: inline-block;
    font-size: 3vw;
  }
}

@media (min-width: 992px) {
  #mainNav {
    padding-top: 20px;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.8s ease-in-out;
  }

  #mainNav.navbar-shrink {
    padding-top: 10px;
    height: 80px;
  }

  .navbar-nav {
    margin-top: 0;
  }

  .container {
    max-width: 100%;
  }

  .navbar-nav {
    height: auto;
    overflow: hidden;
  }

  #mainNav .navbar-brand {
    font-size: 2vw;
  }

  #mainNav .navbar-brand span {
    font-size: 1.2rem;
  }

  #mainNav.navbar-shrink .navbar-brand {
    width: auto;
  }

  #mainNav.navbar-shrink .navbar-brand img.logo-pc {
    display: block;
  }

  #mainNav.navbar-shrink .navbar-brand .logo-sp {
    display: none;
  }

  .navbar {
    height: auto;
    padding: 0 20px;
    align-items: flex-start;
  }

  .navbar .container {
    justify-content: flex-start;
    align-items: flex-start;
  }

  #mainNav .navbar-nav>li.nav-item>a {
    font-size: 1.5rem;
  }

  #mainNav .navbar-nav>li.nav-item>a {
    font-size: 1.4rem;
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
    letter-spacing: 1px;
    line-height: 1.6;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  #mainNav .navbar-nav>li.nav-item>a span {
    font-size: 1.1rem;
    font-weight: 400;
    font-family: "Times New Roman", Times, serif;
    font-optical-sizing: auto;
    letter-spacing: 0;
  }

  .navbar-expand-lg>.container-100p {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .navbar-expand-lg {
    display: flex;
  }

  #mainNav .nav-link {
    position: relative;
    width: 60px;
    color: #ffffff;
    padding: 0;
    margin: 0 0.3rem;
    transition: all 0.4s ease-out;
  }

  #mainNav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-left: 2px solid #ffffff;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }

  #mainNav .nav-link:hover {
    color: #ffffff;
  }

  #mainNav .nav-link:hover:before,
  #mainNav .nav-link:active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  #mainNav .nav-link.gnav-contact {
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 2rem;
    padding: 1.5rem 2rem 1.5rem 2.5rem;
    color: #fff;
    background-color: #dc1715;
    transition: all 0.4s ease-out;
  }

  #mainNav .nav-link.gnav-contact::before {
    content: "";
    display: none;
  }

  #mainNav .nav-link.gnav-contact:hover {
    color: #fff;
    background-color: #007fff;
  }

  #mainNav.navbar-shrink {
    background-color: #004831;
  }

  #mainNav.navbar-shrink .navbar-brand {
    display: block;
    color: #fff;
    padding: 10px 0 0;
  }

  #mainNav.navbar-shrink .nav-link {
    position: relative;
    width: auto;
    color: #fff;
    padding: 0;
    margin: 0 1rem;
    transition: all 0.4s ease-out;
    border-bottom: 0rem solid transparent;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }

  #mainNav.navbar-shrink .nav-link::before {
    content: "";
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid #ffffff;
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all 0.25s;
    transition: all 0.25s;
  }

  #mainNav.navbar-shrink .navbar-nav>li.nav-item>a {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.6;
    padding: 5px 0;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }

  #mainNav.navbar-shrink .nav-link:hover {
    color: #fff;
  }

  #mainNav.navbar-shrink .nav-link:hover:before,
  #mainNav.navbar-shrink .nav-link:active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media (min-width: 1200px) {
  #mainNav {
    padding: 10px 30px 10px 20px;
  }

  #mainNav.navbar-shrink {
    padding: 10px 30px 10px 20px;
  }

  #mainNav .navbar-brand {
    padding: 8px 0 0;
  }

  #mainNav.navbar-shrink .navbar-brand {
    padding: 8px 0 0;
  }

  #mainNav .nav-link {
    width: 60px;
    margin: 0;
    padding: 10px 10px 5px 10px;
  }

  #mainNav .navbar-nav>li.nav-item>a {
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.4;
  }

  #mainNav.navbar-shrink .nav-link {
    width: auto;
    margin: 0 25px;
    padding: 0 5px 0 5px;
  }
}

@media (min-width: 1300px) {
  #mainNav {
    padding: 10px 40px 10px 30px;
  }

  #mainNav.navbar-shrink {
    padding: 10px 40px 10px 30px;
  }

  #mainNav .navbar-brand {
    padding: 4px 0 0;
  }

  #mainNav.navbar-shrink .navbar-brand {
    padding: 4px 0 0;
  }
}

@media (min-width: 1480px) {
  #mainNav .nav-link {
    width: 60px;
  }

  #mainNav .navbar-nav>li.nav-item>a {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

@media (min-width: 1680px) {
  #mainNav .navbar-brand {
    padding: 0;
  }

  #mainNav.navbar-shrink .navbar-brand {
    padding: 0;
  }

  #mainNav .nav-link {
    width: 80px;
  }
}

section.resume-section {
  max-width: 100%;
}

.bg-primary {
  background-color: #fff !important;
}

/*!------------------------------------------------------------------
 Side Nav
---------------------------------------------------------------------*/
.side-nav {
  position: fixed;
  top: 33%;
  right: 0;
  z-index: 3;
}

.side-nav-corporation {
  width: 100px;
  margin: 0 0 8px;
}

.side-nav-contact {
  width: 100px;
  margin: 0 0 8px;
}

.side-nav-line {
  width: 100px;
  margin: 0;
}

.side-nav-corporation a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  background-color: #004831;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.side-nav-corporation a i {
  display: block;
  font-size: 2.4vw;
  padding: 0 0 10px;
}

.side-nav-contact a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  background-color: #786534;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.side-nav-contact a i {
  display: block;
  font-size: 2.4vw;
  padding: 0 0 5px;
}

.side-nav-line a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Noto Sans JP", serif;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  background-color: #06c655;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  border-left: solid 2px #fff;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.side-nav-line a i {
  display: block;
  font-size: 2.4vw;
  padding: 0 0 5px;
}

.side-nav-corporation a:hover {
  color: #004831;
  background-color: #c4d700;
}

.side-nav-contact a:hover {
  color: #004831;
  background-color: #c4d700;
}

.side-nav-line a:hover {
  color: #004831;
  background-color: #c4d700;
}

@media (max-width: 1480px) {
  .side-nav-corporation {
    width: 80px;
  }

  .side-nav-contact {
    width: 80px;
  }

  .side-nav-line {
    width: 80px;
  }

  .side-nav-corporation a {
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }

  .side-nav-contact a {
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }

  .side-nav-line a {
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }
}

@media (max-width: 1200px) {
  .side-nav-corporation {
    width: 60px;
  }

  .side-nav-contact {
    width: 60px;
  }

  .side-nav-line {
    width: 60px;
  }

  .side-nav-corporation a {
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
  }

  .side-nav-contact a {
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
  }

  .side-nav-line a {
    width: 60px;
    height: 60px;
    font-size: 0.8rem;
  }
}

@media (max-width: 990px) {
  .side-nav {
    display: flex;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .side-nav-corporation {
    width: 33.333333%;
    height: 100px;
    margin: 0;
  }

  .side-nav-corporation a {
    width: 100%;
    height: 100%;
    border-top: solid 2px #fff;
    border-bottom: none;
    border-left: none;
    font-size: 1.4rem;
  }

  .side-nav-corporation a i {
    font-size: 4.8vw;
  }

  .side-nav-contact {
    width: 33.333333%;
    height: 100px;
    margin: 0;
  }

  .side-nav-contact a {
    width: 100%;
    height: 100%;
    border-top: solid 2px #fff;
    border-bottom: none;
    border-left: none;
    font-size: 1.4rem;
  }

  .side-nav-contact a i {
    font-size: 4.8vw;
  }

  .side-nav-line {
    width: 33.333333%;
    height: 100px;
    margin: 0;
  }

  .side-nav-line a {
    width: 100%;
    height: 100%;
    border-top: solid 2px #fff;
    border-bottom: none;
    border-left: none;
    font-size: 1.4rem;
  }

  .side-nav-line a i {
    font-size: 4.8vw;
  }
}

@media (orientation: landscape) and (max-width: 990px) {
  .side-nav {
    display: block;
    top: 100px;
    bottom: 0;
    left: auto;
    right: 0;
  }

  .side-nav-corporation {
    width: 60px;
    height: 70px;
  }

  .side-nav-contact {
    width: 60px;
    height: 70px;
  }

  .side-nav-line {
    width: 60px;
    height: 60px;
  }

  .side-nav-corporation a {
    width: 60px;
    height: 60px;
    border-top: solid 2px #fff;
    border-bottom: solid 2px #fff;
    border-left: solid 2px #fff;
    font-size: 0.8rem;
  }

  .side-nav-corporation a i {
    font-size: 3vw;
  }

  .side-nav-contact a {
    width: 60px;
    height: 60px;
    border-top: solid 2px #fff;
    border-bottom: solid 2px #fff;
    border-left: solid 2px #fff;
    font-size: 0.8rem;
  }

  .side-nav-contact a i {
    font-size: 3vw;
  }

  .side-nav-line a {
    width: 60px;
    height: 60px;
    border-top: solid 2px #fff;
    border-bottom: solid 2px #fff;
    border-left: solid 2px #fff;
    font-size: 0.8rem;
  }

  .side-nav-line a i {
    font-size: 3vw;
  }
}


@media (max-width: 499px) {
  .side-nav {
    display: flex;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .side-nav-corporation {
    width: 33.333333%;
    height: 80px;
    margin: 0;
  }

  .side-nav-corporation a {
    width: 100%;
    height: 100%;
    border-top: solid 1px #fff;
    border-bottom: none;
    border-left: none;
    font-size: 1.2rem;
  }

  .side-nav-corporation a i {
    font-size: 7.2vw;
  }

  .side-nav-contact {
    width: 33.333333%;
    height: 80px;
    margin: 0;
  }

  .side-nav-contact a {
    width: 100%;
    height: 100%;
    border-top: solid 1px #fff;
    border-bottom: none;
    border-left: none;
    font-size: 1.2rem;
  }

  .side-nav-contact a i {
    font-size: 7.2vw;
  }

  .side-nav-line {
    width: 33.333333%;
    height: 80px;
    margin: 0;
  }

  .side-nav-line a {
    width: 100%;
    height: 100%;
    border-top: solid 1px #fff;
    border-bottom: none;
    border-left: none;
    font-size: 1.2rem;
  }

  .side-nav-line a i {
    font-size: 7.2vw;
  }
}

/* ------------------------------------------------------------------
 Home Hero
------------------------------------------------------------------- */
#hero {
  position: fixed;
  inset: 0;
  /* ← left/top/right/bottom を 0 に */
  z-index: -1;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  /* もしくは 100svh（下に注記） */
  background-color: #fff;
}

@media (max-width: 990px) {
  #hero {
    position: absolute;
    height: calc(200vh - 72px);
    margin-top: 72px;
  }

  #hero .hero-top {
    height: calc(100vh - 72px);
  }

  #hero .hero-bottom {
    height: 100vh;
  }
}

@media (orientation: landscape) and (max-width: 990px) {
  #hero {
    margin-top: 74px;
    height: calc(200vh - 74px);
  }

  #hero .hero-top {
    height: calc(100vh - 74px);
  }

  #hero .hero-bottom {
    height: 100vh;
  }
}

@media (max-width: 749px) {
  #hero {
    margin-top: 68px;
    height: calc(200vh - 68px);
  }

  #hero .hero-top {
    height: calc(100vh - 68px);
  }
}

@media (max-width: 499px) {
  #hero {
    margin-top: 70px;
    height: calc(200vh - 70px);
  }

  #hero .hero-top {
    height: calc(100vh - 70px);
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
}

/*==================================================
 スライダーのためのcss
====================================================*/

/* スリックスライダー */
.slider {
  padding-right: 0px;
}

.slider2 {
  padding-left: 0px;
}

/* スリックスライダー */
.slider li {
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  background-position: center !important;
}

/* スリックスライダー */
.slider2 li {
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  background-position: center !important;
}

/* 拡大率調整 */
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.3);
  }
}

/* ズームアニメーション */
.animation {
  animation: fadezoom 15s 0s forwards;
}

.slider li.left-01 {
  background-image: url(../img/hero-left-011.jpg);
  background-repeat: no-repeat;
}

.slider li.left-02 {
  background-image: url(../img/hero-left-012.jpg);
  background-repeat: no-repeat;
}

.slider li.left-03 {
  background-image: url(../img/hero-left-013.jpg);
  background-repeat: no-repeat;
}

.slider li.left-04 {
  background-image: url(../img/hero-left-014.jpg);
  background-repeat: no-repeat;
}

.slider li.left-05 {
  background-image: url(../img/hero-left-015.jpg);
  background-repeat: no-repeat;
}

.slider li.left-06 {
  background-image: url(../img/hero-left-016.jpg);
  background-repeat: no-repeat;
}

.slider li.left-07 {
  background-image: url(../img/hero-left-017.jpg);
  background-repeat: no-repeat;
}

.slider2 li.right-02 {
  background-image: url(../img/hero-left-02.jpg);
  background-repeat: no-repeat;
}

.slider2 li.right-03 {
  background-image: url(../img/hero-left-03.jpg);
  background-repeat: no-repeat;
}

.slider2 li.right-04 {
  background-image: url(../img/hero-left-04.jpg);
  background-repeat: no-repeat;
}

.slider2 li.right-05 {
  background-image: url(../img/hero-left-05.jpg);
  background-repeat: no-repeat;
}

.slider2 li.right-06 {
  background-image: url(../img/hero-left-06.jpg);
  background-repeat: no-repeat;
}

.slider2 li.right-07 {
  background-image: url(../img/hero-left-07.jpg);
  background-repeat: no-repeat;
}

.slider2 li.right-08 {
  background-image: url(../img/hero-left-08.jpg);
  background-repeat: no-repeat;
}

.slider2 li.right-01 {
  background-image: url(../img/hero-left-01.jpg);
  background-repeat: no-repeat;
}

@media (orientation: landscape) and (max-width: 990px) {
  .slider li {
    height: calc(200vh - 74px);
  }

  /* スリックスライダー */
  .slider2 li {
    height: 200vh;
  }
}

/* ------------------------------------------------------------------
 Header Hero Copy
------------------------------------------------------------------- */
header {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
}

.hero-copy-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.8));
}

.hero-copy-wrap {
  display: block;
  text-align: left;
  font-size: 1.6vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.6vw;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  color: #fff;
  margin: 0;
  padding: 0 0 5% 8%;
}

/* 文字を囲むspanの基本スタイル */
.hero-copy-wrap span {
  display: inline-block;
  /* 動きをつけるために必要 */
  opacity: 0;
  /* 最初は隠す */
  transform: translateY(50px);
  /* 下方に配置 */
  transition: none;
  margin: 0;
  padding: 0;
}

.hero-copy-wrap br {
  display: none;
}

/* アニメーションの定義 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* JSでこのクラスを付与してアニメーションを開始させる */
.is-visible span {
  animation: fadeInUp 1.2s ease forwards;
}

@media (max-width: 990px) {
  .hero-copy-wrapper {
    justify-content: center;
  }

  .hero-copy-wrap {
    text-align: center;
    font-size: 3.6vw;
    letter-spacing: 3vw;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
    padding: 0 0 5% 5vw;
  }
}

@media (orientation: landscape) and (max-width: 990px) {
  header {
    height: calc(100vh - 74px);
    margin-top: 74px;
  }

  .hero-copy-wrap {
    font-size: 3vw;
  }
}

@media (max-width: 749px) {
  header {
    height: calc(100vh - 68px);
    margin-top: 68px;
  }
}

@media (max-width: 499px) {
  header {
    height: calc(100vh - 70px);
    margin-top: 70px;
  }

  .hero-copy-wrapper {
    padding: 0 0 40%;
  }

  .hero-copy-wrap {
    font-size: 6vw;
    line-height: 1.6;
    padding: 0 0 0 6vw;
  }

  .hero-copy-wrap br {
    display: block;
  }
}

/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 25%;
  bottom: 40px;
  /*全体の高さ*/
  height: 150px;
  margin-left: -1px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -19px;
  top: -15px;
  /*テキストの形状*/
  color: #fff;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 130px;
  background: #fff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 2s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 80px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 130px;
    opacity: 0;
  }
}

@media (max-width: 990px) {
  .scrolldown1 {
    left: 50%;
    bottom: 120px;
  }
}

@media (orientation: landscape) and (max-width: 990px) {
  .scrolldown1 {
    display: none;
  }
}

@media (max-width: 499px) {
  .scrolldown1 {
    display: block;
    bottom: 70px;
  }
}

/* ------------------------------------------------------------------
 Contents Wrap
------------------------------------------------------------------- */
#wrap {
  width: 100%;
  background: transparent;
}

/* ------------------------------------------------------------------
 Home Message
------------------------------------------------------------------- */
.home-copy-section-wrap {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0 6% 0 0;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0.8));
}

.home-copy-wrap {
  display: block;
}

.home-copy-wrap .home-copy-titles {
  display: block;
  font-size: 2.4vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #fff;
  margin: 0 0 15%;
  padding: 0;
}

.home-copy-wrap .home-copy-titles span {
  display: block;
  font-size: 1.3vw;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  letter-spacing: 0.5vw;
  margin: 8% 0 0;
  padding: 0;
}

.home-copy-wrap .home-copy-titles span br {
  display: none;
}

.home-copy-wrap .home-copy-texts {
  display: block;
  font-size: 1vw;
  font-weight: 400;
  line-height: 2.4;
  color: #fff;
  margin: 0;
  padding: 0;
}

@media (max-width: 990px) {
  .home-copy-section-wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .home-copy-wrap .home-copy-titles {
    font-size: 4.8vw;
    margin: 0 0 10%;
    text-align: center;
  }

  .home-copy-wrap .home-copy-titles span {
    font-size: 3vw;
    letter-spacing: 1vw;
    margin: 8% 0 0;
  }

  .home-copy-wrap .home-copy-texts {
    font-size: 2.4vw;
    text-align: center;
  }
}

@media (orientation: landscape) and (max-width: 990px) {
  .home-copy-wrap .home-copy-titles {
    font-size: 4.8vw;
    margin: 0 0 4%;
  }

  .home-copy-wrap .home-copy-titles span {
    font-size: 2.4vw;
    letter-spacing: 1vw;
    margin: 4% 0 0;
  }

  .home-copy-wrap .home-copy-texts {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: center;
  }
}

@media (max-width: 749px) {
  .home-copy-wrap .home-copy-titles {
    margin: 0 0 5%;
  }

  .home-copy-wrap .home-copy-titles span {
    margin: 5% 0 0;
  }

  .home-copy-wrap .home-copy-texts {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

@media (max-width: 499px) {
  .home-copy-section-wrap {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 25%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.8));
  }

  .home-copy-wrap .home-copy-titles {
    font-size: 7.2vw;
    margin: 0 0 10%;
    text-align: center;
  }

  .home-copy-wrap .home-copy-titles span {
    font-size: 4.8vw;
    line-height: 1.6;
    margin: 10% 0 0;
  }

  .home-copy-wrap .home-copy-titles span br {
    display: block;
  }

  .home-copy-wrap .home-copy-texts {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    text-align: center;
    padding: 0 10%;
  }

  .home-copy-wrap .home-copy-texts br.br {
    display: none;
  }
}

/* ------------------------------------------------------------------
 Home Works
------------------------------------------------------------------- */
.home-works-section-wrap {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 7% 0 5%;
  background-color: #004831;
}

.home-works-wrap {
  display: flex;
  width: 80%;
  margin: 0 auto 2%;
  padding: 0;
}

.home-works-wrap .home-works-titles {
  display: block;
  width: 25%;
  font-size: 2.4vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #fff;
  margin: 0;
  padding: 0;
}

.home-works-leads-wrap {
  display: block;
  width: 75%;
  margin: 0;
  padding: 0;
}

.home-works-wrap .home-works-titles span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  letter-spacing: 2px;
  margin: 10px 0 0 5px;
  padding: 0;
}

.home-works-wrap .home-works-leads {
  display: block;
  white-space: nowrap;
  /* 改行を禁止する */
  font-size: 1.4vw;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.3vw;
  color: #fff;
  margin: 0 0 10px;
  margin-right: -0.5vw;
  /* 最後の文字の右余白をキャンセル */
  padding: 0;
}

.home-works-wrap .home-works-leads br {
  display: none;
}

.home-works-wrap .home-works-texts {
  display: block;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 0;
  padding: 0;
}

.home-works-wrap .home-works-texts span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0 0 0 10px;
}

@media (max-width: 990px) {
  .home-works-wrap {
    display: block;
    margin: 0 auto 5%;
  }

  .home-works-wrap .home-works-titles {
    width: 100%;
    font-size: 4.8vw;
    text-align: center;
    margin: 0 0 5%;
    padding: 0;
  }

  .home-works-wrap .home-works-titles span {
    font-size: 1.5rem;
    margin: 10px 0 0 0;
  }

  .home-works-leads-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .home-works-wrap .home-works-leads {
    font-size: 2.4vw;
    text-align: center;
    margin-right: 0;
  }

  .home-works-wrap .home-works-texts {
    font-size: 2vw;
    text-align: center;
  }
}

@media (max-width: 499px) {
  .home-works-section-wrap {
    padding: 10% 0 8%;
  }

  .home-works-wrap {
    display: block;
    margin: 0 auto 8%;
  }

  .home-works-wrap .home-works-titles {
    font-size: 7.2vw;
    margin: 0 0 8%;
  }

  .home-works-wrap .home-works-leads {
    font-size: 4.8vw;
    line-height: 1.5;
    margin: 0 0 7%;
  }

  .home-works-wrap .home-works-leads br {
    display: block;
  }

  .home-works-wrap .home-works-texts {
    font-size: 1.5rem;
  }

  .home-works-wrap .home-works-texts span {
    display: block;
    font-size: 1.3rem;
    padding: 0;
  }
}

.card03 {
  overflow: hidden;
}

.card03.l-section .l-inner {
  position: relative;
  box-sizing: border-box;
  /* paddingを含めたサイズ計算にする */
  max-width: 80%;
  /* 元の指定 */
  margin: 0 auto;
  padding: 3% 0 0 0;
}

.card03 .home-works-contents-leads-wrap {
  display: flex;
  align-items: center;
  margin: 0 0 4% 10px;
}

.card03 .home-works-contents-leads {
  display: block;
  font-size: 1vw;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2vw;
  color: #fff;
  margin: 0;
  margin-right: -0.2vw;
  /* 最後の文字の右余白をキャンセル */
  padding: 0;
}

.card03 .home-works-contents-leads-number {
  display: block;
  font-size: 2vw;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  padding: 0 20px 0 0;
}

.card03 .swiper {
  width: 100%;
  height: auto;
  min-height: 1px;
  /* 高さが0になるのを防ぐ */
  overflow: visible;
}

@media only screen and (max-width: 1024px) {
  .card03 .swiper {
    padding: 0 3.2rem;
  }
}

@media (max-width: 990px) {
  .card03 .home-works-contents-leads-number {
    font-size: 4.8vw;
  }

  .card03 .home-works-contents-leads {
    font-size: 2vw;
  }

  element.style {
    transform: translate3d(-5840px, 0px, 0px);
    transition-duration: 2000ms;
  }

  .swiper-android .swiper-slide,
  .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
  }

  .swiper-wrapper {
    height: auto;
  }

  .card03 .slide-media img {
    height: auto;
  }
}

@media (max-width: 499px) {
  .card03 .home-works-contents-leads-wrap {
    justify-content: center;
    margin: 0 0 6%;
  }

  .card03 .home-works-contents-leads-number {
    font-size: 9.6vw;
  }

  .card03 .home-works-contents-leads {
    font-size: 1.5rem;
  }
}

/* 前へ / 次へボタン */
.card03 .swiper-button-prev,
.card03 .swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

@media only screen and (min-width: 1025px) {

  .card03 .swiper-button-prev::before,
  .card03 .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }

  .card03 .swiper-button-prev:hover::before,
  .card03 .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@media (max-width: 499px) {

  .card03 .swiper-button-prev,
  .card03 .swiper-button-next {
    width: 4.8rem;
    height: 4.8rem;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
}

.card03 .swiper-button-prev::before,
.card03 .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}

.card03 .swiper-button-prev::after,
.card03 .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #fff;
  border-width: 3px 3px 0 0;
}

.card03 .swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.card03 .swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.card03 .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.card03 .swiper-button-prev,
.card03 .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}

.card03 .swiper-button-prev::before,
.card03 .swiper-button-next::before {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: var(--box-shadow-dark);
  box-shadow: var(--box-shadow-dark);
}

.card03 .swiper-button-prev::after,
.card03 .swiper-button-next::after {
  border-color: #fff;
}

.card03 .swiper-button-prev {
  right: calc(100% - 1.6rem);
}

@media only screen and (max-width: 1024px) {
  .card03 .swiper-button-prev {
    right: calc(100% - 5.2rem);
  }
}

.card03 .swiper-button-next {
  left: calc(100% - 1.6rem);
}

@media only screen and (max-width: 1024px) {
  .card03 .swiper-button-next {
    left: calc(100% - 5.2rem);
  }
}

.card03 .slide {
  overflow: hidden;
  border-radius: 4px;
}

@media only screen and (min-width: 1025px) {

  .card03 .swiper-button-prev::before,
  .card03 .swiper-button-next::before {
    -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  }

  .card03 .swiper-button-prev:hover::before,
  .card03 .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  .card03 .slide {
    -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  }

  .card03 .slide img {
    -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  }

  .card03 .slide:hover {
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
  }

  .card03 .slide:hover img {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.card03 .slide-media img {
  height: calc(100% + 16px);
  -webkit-transform: translateY(-16px);
  transform: translateY(-16px);
}

.card03 .slide-content {
  padding: 3.2rem;
}

.card03 .slide-date {
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  color: var(--color-theme);
}

.card03 .slide-title {
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3.2em;
  margin-top: 1.6rem;
}

.card03 .swiper-slide:not(.swiper-slide-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

.home-works-button {
  width: 240px;
  margin: 3% auto 0;
  padding: 0;
}

/* ------------------------------------------------------------------
 Home About Keihan
------------------------------------------------------------------- */
.home-about-keihan-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
}

.home-about-wrapper {
  display: flex;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
}

.home-about-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}

.home-about-title {
  display: block;
  font-size: 2.4vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  letter-spacing: 0;
  color: #111;
  text-align: center;
  margin: 0 0 15%;
  padding: 0;
}

.home-about-title span {
  display: block;
  font-size: 0.9vw;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  letter-spacing: 2px;
  margin: 10px 0 0 5px;
  padding: 0;
}

.home-about-lead-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

.home-about-keihan-lead {
  display: block;
  font-size: 1.6vw;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.5vw;
  text-align: left;
  color: #111;
  margin: 0 0 0 15%;
  padding: 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.home-about-keihan-text {
  display: block;
  font-size: 1vw;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1vw;
  text-align: left;
  color: #111;
  margin: 10% 0 0;
  padding: 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media (max-width: 990px) {
  .home-about-keihan-wrap {
    height: auto;
  }

  .home-about-title-wrapper {
    height: auto;
    padding: 7% 0 0;
  }

  .home-about-title {
    font-size: 4.8vw;
    margin: 0 0 10%;
  }

  .home-about-title span {
    font-size: 1.5rem;
    margin: 10px 0 0 0;
  }

  .home-about-keihan-lead {
    display: block;
    font-size: 3.6vw;
    margin: 0 0 0 10%;
  }

  .home-about-keihan-text {
    font-size: 2vw;
    margin: 10% 0 0;
  }
}

@media (max-width: 499px) {
  .home-about-title-wrapper {
    padding: 12% 0 0;
  }

  .home-about-title {
    font-size: 7.2vw;
  }

  .home-about-keihan-lead {
    font-size: 6vw;
    margin: 0 0 0 6%;
  }

  .home-about-keihan-text {
    font-size: 3.6vw;
    line-height: 1.5;
    margin: 10% 0 0;
  }
}

.home-about-button {
  margin: 15% auto 0;
  padding: 0;
}

/* ボタンのベーススタイル */
.f-button {
  display: inline-block;
  transition: all 0.3s ease;
}

.f-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  transition:
    background-color 0.3s,
    color 0.3s,
    border-color 0.3s;
}

.f-button a.text-w {
  color: #fff;
}

/* サイズ指定 (-large) */
.f-button.-t-large a {
  min-width: 250px;
  height: 60px;
  padding: 0;
}

/* ボタン内のテキスト */
.f-button__txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-right: 15px;
  /* 矢印との間隔 */
}

/* 矢印アイコンのコンテナ */
.f-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  /* 基本サイズ */
  height: 10px;
  /* 基本サイズ */
  background: #c4d700;
  border-radius: 50%;

  /* 【重要】アニメーションの設定 */
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  /* 滑らかな動き */
  transform-origin: center center;
  /* 左側を固定して右に広がるようにする */
}

.f-arrow svg path {
  stroke: #c4d700;
  transition: stroke 0.3s;
}

/* ホバー時の挙動 */
.f-button a:hover {
  color: #ccc;
}

.f-button a:hover .f-arrow {
  /* 【重要】width/heightではなくscaleで拡大(10px→30pxなので3倍) */
  transform: scale(3);
}

.f-button a:hover .f-arrow svg path {
  stroke: #c4d700;
  transition: stroke 0.3s;
}

/* 1. アニメーションの定義（これはそのまま末尾などでOK） */
@keyframes svgBlink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.1;
  }

  100% {
    opacity: 1;
  }
}

/* 2. SVGのスタイル（ここを書き換え） */
.f-arrow svg {
  width: 4px;
  height: 4px;
  fill: none;
  /* アニメーションを適用 */
  animation: svgBlink 2s infinite ease-in-out !important;
  display: block;
  /* 念のため要素を認識させる */
}

/* 3. ホバー時にアニメーションを止める（ここを書き換え） */
.f-button a:hover .f-arrow svg {
  animation: none !important;
  opacity: 1 !important;
}

/* --- 以下、既存のパスの色設定 --- */
.f-arrow svg path {
  stroke: #c4d700;
  transition: stroke 0.3s;
}

.f-button a:hover .f-arrow svg path {
  stroke: #004831;
}

/* ------------------------------------------------------------------
 Home Construction Flow
------------------------------------------------------------------- */
.home-flow-section {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 10% 0;
  background-color: #fff;
}

.home-flow-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3%;
}

.home-flow-in-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #786534;
}

.home-flow-title {
  display: block;
  font-size: 2.4vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #111;
  margin: 0;
  padding: 0;
}

.home-flow-title span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  letter-spacing: 2px;
  margin: 10px 0 0 5px;
  padding: 0;
}

.home-flow-leads {
  display: block;
  white-space: nowrap;
  font-size: 1.4vw;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.3vw;
  color: #111;
  margin: 0 0 10px;
  margin-right: -0.5vw;
  padding: 0;
}

.home-flow-texts {
  display: block;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.4;
  color: #111;
  margin: 0;
  padding: 0;
}

.col-lg-14 {
  position: relative;
  flex: 0 0 14.285714%;
  max-width: 14.285714%;
}

.col-lg-14-b {
  position: relative;
  flex: 0 0 14.285714%;
  max-width: 14.285714%;
  margin-top: 50px;
}

.home-flow-contents-wrapper {
  margin-left: 1px;
  margin-right: 1px;
}

.home-flow-contents-wrap {
  position: relative;
  padding-left: 1px;
  padding-right: 1px;
}

.home-flow-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  font-size: 1.8vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #111;
  text-align: center;
  margin: 0;
  padding: 0;
  background: #d4c4a3;
}

.home-flow-number span {
  display: block;
  font-size: 0.9vw;
  font-weight: 400;
  margin: 0;
  padding: 0;
}

.home-flow-section-subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 240px;
  font-size: 1.2vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #111;
  margin: 0;
  padding: 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background: #f0f0f0;
}

.home-flow-button {
  display: block;
  width: 240px;
  margin: 3% auto 0;
  padding: 0;
}

@media (max-width: 990px) {
  .home-flow-section {
    padding: 7% 0 10%;
  }

  .home-flow-title-wrapper {
    margin-bottom: 5%;
  }

  .home-flow-title {
    font-size: 4.8vw;
    text-align: center;
  }

  .home-flow-title span {
    font-size: 1.5rem;
    margin: 10px 0 0 0;
  }

  .home-flow-leads {
    font-size: 2.4vw;
    text-align: center;
    margin-right: 0;
  }

  .home-flow-texts {
    font-size: 2vw;
  }

  .home-flow-number {
    font-size: 3.6vw;
  }

  .home-flow-number span {
    font-size: 1.6vw;
  }

  .home-flow-section-subtitle {
    height: 200px;
    font-size: 2.4vw;
  }
}

@media (orientation: landscape) and (max-width: 990px) {
  .col-lg-14 {
    position: relative;
    flex: 0 0 13%;
    max-width: 13%;
  }
}

@media (max-width: 499px) {
  .home-flow-section {
    padding: 12% 0 11%;
  }

  .home-flow-title {
    font-size: 7.2vw;
  }

  .home-flow-title-wrapper {
    margin-bottom: 7%;
  }

  .home-flow-leads {
    font-size: 3.6vw;
  }

  .home-flow-texts {
    font-size: 1.3rem;
    text-align: center;
  }

  .home-flow-number {
    font-size: 7.2vw;
    height: 70px;
    border-top: solid 2px #fff;
  }

  .home-flow-number span {
    font-size: 3.6vw;
  }

  .home-flow-section-subtitle {
    height: 80px;
    font-size: 4.8vw;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }

  .col-lg-14 {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-14.col-lg-100 {
    position: relative;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ------------------------------------------------------------------
 Home Customer Voices
------------------------------------------------------------------- */
.home-customer-section {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 3%;
  background-color: #fff;
}

.home-customer-title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-customer-in-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #786534;
}

.home-customer-title {
  display: block;
  font-size: 2.4vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #111;
  margin: 0;
  padding: 0;
}

.home-customer-title span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  letter-spacing: 2px;
  margin: 10px 0 0 5px;
  padding: 0;
}

.home-customer-leads {
  display: block;
  white-space: nowrap;
  font-size: 1.4vw;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.3vw;
  color: #111;
  margin: 0 0 10px;
  margin-right: -0.5vw;
  padding: 0;
}

.home-customer-texts {
  display: block;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.3;
  color: #111;
  margin: 0;
  padding: 0;
}

@media (max-width: 990px) {
  .home-customer-section {
    padding: 0;
  }

  .home-customer-title-wrapper {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 5%;
  }

  .home-customer-title {
    font-size: 4.8vw;
    text-align: center;
  }

  .home-customer-title span {
    font-size: 1.5rem;
    margin: 10px 0 0 0;
  }

  .home-customer-leads {
    font-size: 2.4vw;
    text-align: center;
    margin: 0 0 10px;
    margin-right: 0;
  }

  .home-customer-texts {
    font-size: 2vw;
    line-height: 1.4;
    text-align: center;
  }
}

@media (max-width: 499px) {
  .home-customer-title {
    font-size: 7.2vw;
  }

  .home-customer-leads {
    font-size: 4.5vw;
  }

  .home-customer-title-wrapper {
    padding-bottom: 7%;
  }

  .home-customer-texts {
    font-size: 1.4rem;
    padding: 0 10%;
  }

  .home-customer-texts br {
    display: none;
  }
}

/* ------------------------------------------------------------------
	Slide Scroll Section
------------------------------------------------------------------- */
.home-horizontal-titles {
  display: block;
  font-size: 6vw;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  color: #102386;
  margin: 0;
  padding: 0 0 3%;
}

.horizontal-scroll {
  position: relative;
  background: #102386;
  /* 高さはJSで計算して入れる */
}

/* ← sticky ラッパは“縦位置固定”に徹する。transformはかけない */
.horizontal-inner {
  position: sticky;
  top: 0;
  left: 0;
  right: auto;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* はみ出しを隠す：縦揺れの視覚化を防ぐ */
  display: block;
  /* flexをやめる（縦揺れの温床を絶つ） */
  box-sizing: border-box;
}

/* ← 横に流す「トラック」：ここに transform をかける */
.horizontal-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.horizontal-panel-title01 {
  flex: 0 0 45vw;
  /* 既存の 60vw を尊重しつつ “固定幅” 化 */
  max-width: 45vw;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8% 5vw;
  /* 既存 */
  background-color: #004831;
}

.home-business-titles {
  display: block;
  font-size: 1.2vw;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  letter-spacing: 0.4vw;
  color: #fff;
  margin: 8% 0;
  padding: 0;
}

.home-business-titles br {
  display: none;
}

.home-business-titles-wrap {
  display: block;
  margin: 0;
  padding: 0 0 10%;
}

.home-business-titles-img {
  display: block;
  margin: 0;
  padding: 0;
}

.home-business-titles-en {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  font-size: 1.1vw;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  padding: 0 0 0 10%;
}

.home-business-texts {
  display: block;
  font-size: 1vw;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  color: #fff;
  margin: 0;
  padding: 0;
}

.home-business-texts2 {
  display: block;
  font-size: 1vw;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  line-height: 2;
  color: #fff;
  margin: 0;
  padding: 0 0 4%;
}

.horizontal-panel {
  height: 100%;
  flex-shrink: 0;
  display: flex;
  box-sizing: border-box;
}

.home-business-img-wrapper {
  height: 100%;
  display: block;
}

.home-business-img-wrapper img {
  height: 100vh;
  width: auto;
  display: block;
}

@media (max-width: 1480px) {
  .home-business-img-wrapper img {
    height: 100vh;
    width: auto;
    display: block;
  }
}

@media (max-width: 1200px) {
  .horizontal-panel-title01 {
    justify-content: center;
    padding: 0 70px;
  }

  .home-business-titles-en {
    font-size: 1.4vw;
  }

  .home-business-titles {
    font-size: 1.8vw;
    line-height: 1.4;
  }

  .home-business-titles br {
    display: block;
  }

  .home-business-texts {
    font-size: 1.4rem;
  }

  .home-business-texts br {
    display: none;
  }

  .home-business-texts2 {
    font-size: 1.4rem;
  }

  .home-business-texts2 br {
    display: none;
  }
}

@media (max-width: 990px) {
  .home-horizontal-titles {
    font-size: 8.4vw;
    padding: 0 0 4%;
  }

  .horizontal-inner {
    height: auto;
  }

  .horizontal-track {
    display: block;
    height: auto;
  }

  .horizontal-panel-title01 {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 8% 12% 8%;
  }

  .horizontal-panel {
    display: block;
    width: 100%;
    height: auto;
  }

  .home-business-img-wrapper {
    display: block;
    width: 100%;
    height: auto;
  }

  .home-business-img-wrapper img {
    width: 100%;
    height: auto;
  }

  .home-business-titles-en {
    font-size: 3vw;
  }

  .home-business-titles {
    font-size: 3vw;
    letter-spacing: 0.5vw;
    margin: 8% 0;
  }

  .home-business-titles span.en {
    font-size: 3.6vw;
    padding: 0 0 7%;
  }

  .home-business-titles span.jp {
    font-size: 3.6vw;
    padding: 5% 0 0;
  }

  .home-business-texts {
    font-size: 2vw;
    margin: 0 0 2%;
    padding: 0;
  }

  .home-business-texts2 {
    font-size: 2vw;
  }
}

@media (max-width: 499px) {
  .horizontal-panel-title01 {
    padding: 10% 10% 10%;
  }

  .home-business-titles-en {
    font-size: 4.8vw;
    padding: 0 0 0 20%;
  }

  .home-business-titles {
    font-size: 5.4vw;
    margin: 10% 0;
  }

  .home-business-texts {
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0 0 2%;
    padding: 0;
  }

  .home-business-texts2 {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

/* ------------------------------------------------------------------
 Home Instagram
------------------------------------------------------------------- */
.home-insta-contents-section {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 8% 2.5% 8%;
  background-color: #fff;
}

.home-insta-section {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

.home-insta-title {
  display: block;
  width: 200px;
  text-align: center;
  margin: 0 auto 3%;
  padding: 0;
}

.home-insta-title span {
  display: block;
  font-size: 1vw;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0;
  margin: 10px 0 0;
  padding: 0;
}

.home-insta-title-leads {
  display: block;
  font-size: 1.1vw;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.5vw;
  color: #111;
  text-align: center;
  margin: 0 0 4%;
  padding: 0;
}

.home-insta-photo-wrap {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.home-insta-linkbutton-wrap {
  display: block;
  width: 400px;
  margin: 4% auto 0;
  padding: 0;
}

@media (max-width: 1480px) {
  .home-insta-title {
    width: 120px;
  }
}

@media (max-width: 990px) {
  .home-insta-section {
    padding: 0 5% 10%;
  }

  .home-insta-title span {
    font-size: 2.4vw;
    margin: 10px 0 0;
  }

  .home-insta-title-leads {
    font-size: 2.4vw;
  }
}

@media (max-width: 499px) {
  .home-insta-section {
    padding: 0 0 10%;
  }

  .home-insta-contents-section {
    padding: 10% 0 10%;
  }

  .home-insta-title span {
    font-size: 4vw;
  }

  .home-insta-title-leads {
    font-size: 4vw;
  }

  .home-insta-photo-wrap {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

/* ------------------------------------------------------------------
 Home Banner
------------------------------------------------------------------- */
.home-banner-area-section {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  background-color: #fff;
}

.home-banner-area-title {
  display: block;
  font-size: 3vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  letter-spacing: 0;
  color: #111;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 3%;
  padding: 0;
}

.home-banner-area-title span {
  display: block;
  font-size: 0.9vw;
  font-weight: 500;
  letter-spacing: 0.5vw;
  margin: 15px 0 0;
  padding: 0;
}

.home-banner-section-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-left: 0;
  margin-right: 0;
}

.home-banner-section1 {
  position: relative;
  display: block;
  width: 100%;
  margin: 0.75rem 0;
  padding: 0 5% 2%;
  background-color: #fff;
}

.home-banner-title-wrapper {
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.home-banner-title-wrap1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 7.5% 10%;
  background-image: url(../img/banner-01.jpg);
  background-size: cover;
  background-color: rgba(0, 72, 49, 0.5);
}

.home-banner-title-wrap2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 7% 10%;
  background-image: url(../img/banner-02.jpg);
  background-size: cover;
  background-color: rgba(0, 72, 49, 0.5);
}

.home-banner-title-wrap3 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 7.5% 10%;
  background-image: url(../img/banner-03.jpg);
  background-size: cover;
  background-color: rgba(0, 72, 49, 0.5);
}

.home-banner-title {
  display: block;
  font-size: 1.6vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  margin: 0 0 6%;
  padding: 0;
}

.home-banner-title span {
  display: block;
  font-size: 0.9vw;
  font-weight: 500;
  letter-spacing: 0.5vw;
  margin: 5px 0 0;
  padding: 0;
}

.home-banner-title-leads {
  display: block;
  font-size: 1.2vw;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2vw;
  color: #fff;
  text-align: center;
  margin: 0 0 2%;
  padding: 0;
}

@media (max-width: 990px) {
  .home-banner-title-wrap1 {
    padding: 6% 10%;
  }

  .home-banner-title {
    font-size: 3.6vw;
    margin: 0 0 6%;
  }

  .home-banner-title span {
    font-size: 1.5rem;
    margin: 10px 0 0;
  }

  .home-banner-title-leads {
    font-size: 2.4vw;
  }
}

@media (max-width: 499px) {
  .home-banner-title {
    font-size: 6vw;
    margin: 0 0 6%;
  }

  .home-banner-title-leads {
    font-size: 3.6vw;
  }
}

/* ------------------------------------------------------------------
 Home Map Area
------------------------------------------------------------------- */
.home-map-area-section {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 5% 8%;
  background-color: #fff;
}

.home-map-area-title {
  display: block;
  font-size: 2.4vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #111;
  text-align: left;
  margin: 0 0 3%;
  padding: 0;
}

.home-map-area-title span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  letter-spacing: 2px;
  margin: 10px 0 0 5px;
  padding: 0;
}

.home-map-area-title-leads {
  display: block;
  font-size: 1.4vw;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.4vw;
  color: #111;
  text-align: left;
  margin: 0 0 4%;
  padding: 0;
}

.home-map-area-img-wrap {
  display: block;
  width: 60%;
  margin: -8% 0 0 25%;
  padding: 0;
}

@media (max-width: 990px) {
  .home-map-area-title {
    font-size: 4.8vw;
    margin: 0 0 4%;
    text-align: center;
  }

  .home-map-area-title span {
    font-size: 1.5rem;
    margin: 10px 0 0 0;
  }

  .home-map-area-title-leads {
    font-size: 2.4vw;
    text-align: center;
    margin: 0 0 6%;
  }

  .home-map-area-img-wrap {
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 499px) {
  .home-map-area-section {
    padding: 0 0 10%;
  }

  .home-map-area-title {
    font-size: 7.2vw;
    margin: 0 0 8%;
  }

  .home-map-area-title-leads {
    font-size: 3.6vw;
    margin: 0 0 8%;
  }
}

/* ------------------------------------------------------------------
Home Topics
------------------------------------------------------------------- */
#home-news-section {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 5% 0 8% 7%;
  background-color: #fff;
}

.home-news-wrap {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 4% 10px 5%;
}

.home-news-left-wrap {
  padding-top: 0;
  padding-left: 0;
  padding-right: 1.5%;
}

.home-news-titles {
  display: block;
  font-size: 2.4vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #111;
  text-align: left;
  margin: 0 0 10%;
  padding: 0;
}

.home-news-titles span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  letter-spacing: 2px;
  margin: 10px 0 0 5px;
  padding: 0;
}

.home-news-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

.entry-wrapper {
  margin: 0 0 0 15px;
  border-top: 1px solid #111;
}

.entry-wrap {
  padding: 4% 0;
  border-bottom: 1px solid #111;
  margin: 0;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
}

.entry-wrap:hover {
  background-color: #004831;
  border-bottom-color: #004831;
  padding-left: 30px;
  padding-right: 30px;
}

.entry-wrap:hover dl.topics-features dt span,
.entry-wrap:hover dl.topics-features dt h4.home-topics-cate,
.entry-wrap:hover dl.topics-features dt h3.home-topics-title a,
.entry-wrap:hover dl.topics-features dd a {
  color: #fff;
}

.entry-wrap dl.topics-features {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

.entry-wrap dl.topics-features dt {
  display: flex;
  align-items: center;
  width: 90%;
  text-align: left;
  padding: 0 0 0 15px;
  margin: 0;
}

.entry-wrap dl.topics-features dt span {
  position: relative;
  display: inline-block;
  width: 12%;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #111;
  padding-right: 20px;
}

.entry-wrap dl.topics-features dt span::after {
  content: "/";
  position: absolute;
  right: 0;
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #111;
}

.entry-wrap dl.topics-features dt h4.home-topics-cate {
  display: inline-block;
  width: 10%;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 0.9;
  color: #111;
  margin: 0 30px;
  padding: 6px 10px 6px;
  text-align: center;
  border: solid 1px #111;
  text-transform: uppercase;
}

.entry-wrap dl.topics-features dt h3.home-topics-title {
  display: inline-block;
  width: 78%;
  margin: 10px 0 10px;
}

.entry-wrap dl.topics-features dt h3.home-topics-title a {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
}

.entry-wrap dl.topics-features dt h3.home-topics-title a:hover {
  color: #fff;
}

.entry-wrap dl.topics-features dd {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  margin: 0;
  padding: 0;
}

.entry-wrap dl.topics-features dd a {
  font-size: 2rem;
  color: #111;
}

.entry-btn-wrap {
  padding: 40px 0 0;
  margin: 0;
}

@media (max-width: 1480px) {
  .entry-wrap {
    padding: 4% 0;
  }

  .entry-wrap dl.topics-features dt {
    display: block;
  }

  .entry-wrap dl.topics-features dt span {
    width: auto;
    font-size: 1.2rem;
  }

  .entry-wrap dl.topics-features dt h4.home-topics-cate {
    width: auto;
    font-size: 1.2rem;
  }

  .entry-wrap dl.topics-features dt h3.home-topics-title {
    display: block;
    width: 100%;
  }

  .entry-wrap dl.topics-features dt h3.home-topics-title a {
    font-size: 1.6rem;
  }
}

@media (max-width: 1200px) {
  .entry-wrap dl.topics-features dt h3.home-topics-title {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .entry-wrap dl.topics-features dt h3.home-topics-title a {
    font-size: 1.4rem;
  }
}

@media (max-width: 990px) {
  #home-news-section {
    margin: 7% 0;
    padding: 0 10%;
  }

  .home-news-left-wrap {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .home-news-titles {
    font-size: 4.8vw;
    margin: 0 0 3%;
    text-align: center;
  }

  .home-news-titles span {
    font-size: 1.5rem;
    margin: 10px 0 0;
    padding: 0;
  }

  .entry-wrapper {
    margin: 5% 0 0;
  }

  .entry-wrap {
    padding: 3% 0;
  }

  .entry-wrap dl.topics-features dt span {
    font-size: 1.3rem;
  }

  .entry-wrap dl.topics-features dt h4.home-topics-cate {
    font-size: 1.4rem;
  }

  .entry-wrap dl.topics-features dt h3.home-topics-title {
    margin-top: 15px;
  }

  .entry-wrap dl.topics-features dt h3.home-topics-title a {
    font-size: 1.6rem;
  }
}

@media (max-width: 499px) {
  #home-news-section {
    margin: 10% 0;
    padding: 0 5%;
  }

  .home-news-titles {
    font-size: 7.2vw;
    margin: 0 0 20px;
  }

  .home-news-titles span {
    font-size: 1.5rem;
  }

  .entry-wrap {
    padding: 6% 0;
  }

  .entry-wrap dl.topics-features dt h3.home-topics-title a {
    font-size: 1.5rem;
  }
}

.home-news-btn-wrap {
  display: block;
  width: 250px;
  margin: 0;
  padding: 0;
}

@media (max-width: 990px) {
  .home-news-btn-wrap {
    margin: 0 auto 5%;
  }
}

/*!---------------------------------------
[Button Blue]
*/

.home-works-btn-wrap {
  display: block;
  width: 250px;
  margin: 3% auto 0;
  padding: 0;
}

.link-button-home-blue {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 10px 30px;
  background: #004831;
}

.link-button-home-blue::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #786534;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}

.link-button-home-blue:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.link-button-home-blue .text-en {
  display: block;
  position: relative;
  font-size: 2.2rem;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #fff;
  text-align: left;
  padding: 0 0 0 5%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}

.link-button-home-blue .text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: left;
  padding: 0 0 0 5%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}

.link-button-home-blue:hover .text-en {
  color: #fff;
}

.link-button-home-blue:hover .text {
  color: #fff;
}

.link-button-home-blue .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 15%;
  top: 48%;
  margin-top: -3px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}

.link-button-home-blue:hover .arrow {
  border-color: transparent transparent transparent #fff;
  right: 10%;
}

@media (max-width: 1480px) {
  .link-button-home-blue .text-en {
    font-size: 2rem;
  }

  .link-button-home-blue .text {
    font-size: 1.5rem;
    padding: 0 0 0 0%;
  }

  .link-button-home-blue .arrow {
    right: 10%;
  }

  .link-button-home-blue:hover .arrow {
    right: 5%;
  }
}

@media (max-width: 1200px) {
  .link-button-home-blue {
    padding: 20px 20px;
  }

  .link-button-home-blue .text-en {
    font-size: 2rem;
    padding: 0 0 6px 0;
  }

  .link-button-home-blue .text {
    font-size: 1.5rem;
  }
}

@media (max-width: 990px) {
  .link-button-home-blue .text {
    padding: 0;
  }
}

/*!---------------------------------------
[Button White]
*/
.link-button-home-w {
  display: block;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 30px 30px;
  background: transparent;
  border: solid 2px #fff;
}

.link-button-home-w::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #fff;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}

.link-button-home-w:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.link-button-home-w .text-en {
  display: block;
  position: relative;
  font-size: 2.2rem;
  font-weight: 900;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #fff;
  text-align: left;
  padding: 0 0 6px 5%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}

.link-button-home-w .text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: left;
  padding: 0 0 0 5%;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}

.link-button-home-w:hover .text-en {
  color: #102386;
}

.link-button-home-w:hover .text {
  color: #102386;
}

.link-button-home-w .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 15%;
  top: 49%;
  margin-top: -3px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}

.link-button-home-w:hover .arrow {
  border-color: transparent transparent transparent #102386;
  right: 10%;
}

@media (max-width: 1480px) {
  .link-button-home-w .text-en {
    font-size: 2rem;
    padding: 0 0 6px 0%;
  }

  .link-button-home-w .text {
    font-size: 1.4rem;
    padding: 0 0 0 0%;
  }

  .link-button-home-w .arrow {
    right: 10%;
  }

  .link-button-home-w:hover .arrow {
    right: 5%;
  }
}

@media (max-width: 1200px) {
  .link-button-home-w {
    padding: 20px 20px;
  }

  .link-button-home-w .text-en {
    font-size: 2rem;
    padding: 0 0 6px 0;
  }

  .link-button-home-w .text {
    font-size: 1.5rem;
  }
}

@media (max-width: 1040px) {
  .link-button-home-w .text-en {
    font-size: 1.8rem;
  }
}

@media (max-width: 990px) {
  .link-button-home-w .text {
    padding: 0;
  }
}

/* ------------------------------------------------------------------
Contact Section
------------------------------------------------------------------- */
section.contact-section {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 6% 10%;
  background-color: #004831;
}

.home-contact-center-wrap {
  display: block;
  margin: 0 0 2% 0;
  padding: 0;
}

.home-contacts-title {
  display: block;
  font-size: 4.8vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  margin: 0 0 5%;
  padding: 0;
}

.home-contacts-title span {
  display: block;
  font-size: 1.2vw;
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.2vw;
  padding: 10px 10px 0 10px;
}

.contact-section-content {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
}

.contact-leads-text {
  display: block;
  font-size: 1.2vw;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  line-height: 2.4;
  text-align: center;
  color: #fff;
  margin: 0 0 5%;
  padding: 0;
}

.contact-home-tel-wrap {
  display: block;
  margin: 0 0 4%;
  padding: 0;
  text-align: center;
}

.contact-home-tel-wrap a {
  font-size: 4.8vw;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  padding: 0;
}

.contact-home-tel-wrap a span {
  display: block;
  font-size: 1.5vw;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  padding: 0 0 30px;
}

.contact-home-tel-wrap a span.contact-home-tel-uke {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  padding: 20px 0 0 0;
}

@media (max-width: 1200px) {
  .contact-leads-text {
    font-size: 1.6vw;
  }
}

@media (max-width: 990px) {
  section.contact-section {
    margin: 0;
    padding: 10% 12%;
  }

  .home-contacts-title {
    font-size: 4.8vw;
  }

  .home-contacts-title span {
    font-size: 1.5rem;
    margin: 0 0 8%;
    padding: 10px 0 0;
  }

  .contact-leads-text {
    font-size: 2vw;
  }

  .contact-leads-text br.br {
    display: none;
  }

  .contact-home-tel-wrap a span {
    font-size: 2vw;
  }
}

@media (max-width: 499px) {
  section.contact-section {
    margin: 0;
    padding: 10% 10% 11%;
  }

  .home-contacts-title {
    font-size: 7.2vw;
  }

  .home-contacts-title span {
    font-size: 1.5rem;
    margin: 0 0 30px;
  }

  .contact-leads-text {
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: left;
    padding: 0 0 20px;
  }

  .contact-home-tel-wrap a {
    font-size: 7.2vw;
  }

  .contact-home-tel-wrap a span {
    font-size: 4.8vw;
    padding: 0 0 20px;
  }

  .contact-home-tel-wrap a span.contact-home-tel-uke {
    font-size: 1.3rem;
    padding: 10px 0 0 0;
  }
}

/*!---------------------------------------
[Contact Button White]
*/
.link-button-contact-b {
  display: block;
  position: relative;
  width: 100%;
  margin: 3% 0 0;
  padding: 30px 30px;
  background: transparent;
  border: solid 2px #fff;
}

.link-button-contact-b::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: #c4d700;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}

.link-button-contact-b:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.link-button-contact-b .text-en {
  display: block;
  position: relative;
  font-size: 3rem;
  font-weight: 900;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding: 0 0 6px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}

.link-button-contact-b .text {
  display: block;
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}

.link-button-contact-b:hover {
  border: solid 2px #c4d700;
}

.link-button-contact-b:hover .text-en {
  color: #004831;
}

.link-button-contact-b:hover .text {
  color: #004831;
}

.link-button-contact-b .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 24px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 7%;
  top: 42%;
  margin-top: -3px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  z-index: 2;
}

.link-button-contact-b:hover .arrow {
  border-color: transparent transparent transparent #004831;
  right: 4%;
}

@media (max-width: 499px) {
  .link-button-contact-b .text-en {
    font-size: 24px;
    text-align: left;
  }

  .link-button-contact-b .text {
    font-size: 1.8rem;
    text-align: left;
  }
}

.home-contact-img-section {
  margin: 0;
  padding: 0;
}

.contact-img-wrap {
  position: relative;
  margin: 0;
  padding: 0;
}

.contact-img-text-wrap {
  position: absolute;
  top: 7%;
  left: 5%;
  margin: 0;
  padding: 0;
}

.home-contact-leadtitle {
  display: block;
  font-size: 1.4vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.4vw;
  color: #fff;
  margin: 0 0 4%;
  padding: 0;
}

.home-contact-leadtitle-text {
  display: block;
  font-size: 0.9vw;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1vw;
  color: #fff;
  margin: 0 0 4%;
  padding: 0;
}

.contact-img-address-wrap {
  position: absolute;
  bottom: 5%;
  left: 5%;
  margin: 0;
  padding: 0;
}

.home-contact-address {
  display: block;
  font-size: 0.9vw;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 10px;
  padding: 0;
}

.home-contact-address span.contact-gmap {
  display: block;
  margin: 0;
  padding: 5px 0 0;
}

.home-contact-address span.contact-gmap a {
  font-size: 0.9vw;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}

.home-contact-address span.contact-gmap a:hover {
  color: #ccc;
}

@media (max-width: 990px) {
  .home-contact-leadtitle {
    font-size: 2.4vw;
    margin: 0 0 5%;
  }

  .home-contact-leadtitle-text {
    font-size: 1.4rem;
    letter-spacing: 0;
    color: #111;
    margin: 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.5);
  }

  .home-contact-address {
    font-size: 1.4rem;
  }

  .home-contact-address span.contact-gmap a {
    font-size: 1.2rem;
  }
}

@media (max-width: 499px) {
  .home-contact-img-section {
    margin: 0;
    padding: 0 0 10%;
    background-color: #004831;
  }

  .contact-img-text-wrap {
    position: relative;
    top: auto;
    left: auto;
    text-align: center;
    margin: 10% auto;
    padding: 0;
  }

  .home-contact-leadtitle {
    font-size: 4vw;
    margin: 0 0 5%;
  }

  .home-contact-leadtitle-text {
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.8;
    color: #fff;
    text-align: left;
    margin: 0 10%;
    padding: 0;
    background-color: transparent;
  }

  .home-contact-leadtitle-text br {
    display: none;
  }

  .contact-img-address-wrap {
    position: relative;
    top: auto;
    left: auto;
    text-align: center;
    margin: 5% auto 0;
    padding: 0;
  }
}

/* ------------------------------------------------------------------
Home Q&A Section
------------------------------------------------------------------- */
.home-qanda-content-section {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 6% 5% 6%;
  background-color: #fff;
}

.home-qanda-title-wrapper {
  margin: 0 0 5%;
  padding: 0;
}

.home-qanda-title {
  display: block;
  font-size: 2.4vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  color: #111;
  text-align: left;
  margin: 0 0 3%;
  padding: 0;
}

.home-qanda-title span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  letter-spacing: 2px;
  margin: 10px 0 0 5px;
  padding: 0;
}

.home-qanda-content-wrapper {
  margin: 0;
  padding: 0;
}

.home-qanda-linkbutton-wrap {
  display: block;
  width: 400px;
  margin: 4% auto 0;
  padding: 0;
}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.accordion-area li {
  margin: 10px 0;
  padding: 0;
}

.accordion-area section {
  border: 1px solid #111;
}

/*アコーディオンタイトル*/
.accordion-area section .title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 400;
  color: #111;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
}

.accordion-area section .title:hover {
  letter-spacing: 1px;
  color: #111;
}

.accordion-area section .title span {
  display: block;
  font-size: 1.4rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: 600;
  padding: 0 0 10px;
}

/*アイコンの＋と×*/
.accordion-area section .title::before,
.accordion-area section .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
}

.accordion-area section .title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}

.accordion-area section .title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.accordion-area section .title.close::before {
  transform: rotate(45deg);
}

.accordion-area section .title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.accordion-area section .box {
  display: none;
  /*はじめは非表示*/
  background: #004831;
  margin: 0 3% 3% 3%;
  padding: 3%;
}

.accordion-area section .box p {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  padding: 0;
}

.accordion-area section .box p span {
  display: block;
  font-size: 1.4rem;
  font-family: "Times New Roman", Times, serif;
  font-weight: 600;
  padding: 0 0 10px;
}

@media (max-width: 1480px) {
  .home-qanda-content-section {
    padding: 6% 5% 5%;
  }
}

@media (max-width: 990px) {
  .home-qanda-content-section {
    padding: 8% 8% 8%;
  }

  .accordion-area section .title:hover {
    letter-spacing: 0;
    color: #111;
  }

  .home-qanda-title {
    font-size: 3.6vw;
    text-align: center;
    margin: 0 0 5%;
  }

  .home-qanda-title span {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin: 10px 0 0 0;
  }
}

@media (max-width: 499px) {
  .home-qanda-content-section {
    padding: 10% 5% 5%;
  }

  .home-qanda-content-wrapper {
    margin: 0 0 30px;
  }

  .home-qanda-title {
    font-size: 7.2vw;
    margin: 0 0 20px;
  }

  .home-qanda-title-wrapper {
    margin: 0 0 30px;
  }

  .accordion-area section .box {
    padding: 5%;
  }

  .accordion-area section .box p {
    line-height: 1.5;
  }
}

/*!------------------------------------------------------------------
[Home Footer Section]
*/
section.footer-section {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 5% 5% 5%;
  background-color: #004831;
}

.footer-section-content {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
}

.footer-logo-wrapper {
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}

.footer-logo-wrap {
  display: block;
  width: 100%;
  margin: 0 auto 40px;
  padding: 0;
}

.footer-logo-wrap span.en {
  display: block;
  font-size: 2vw;
  font-weight: 600;
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  margin: 0 auto;
  padding: 0;
}

.footer-logo-wrap span.jp {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  line-height: 1.4;
  color: #fff;
  margin: 0 auto;
  padding: 5px 0 0;
}

.footer-address {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #fff;
  text-align: left;
  margin: 0 0 40px;
  padding: 0;
}

.footer-address span.footer-gmap {
  display: block;
  margin: 0;
  padding: 5px 0 0;
}

.footer-address span.footer-gmap a {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 1;
  color: #fff;
}

.footer-address span.footer-gmap a i {
  font-size: 1.8rem;
}

.footer-address span.footer-gmap a:hover {
  color: #ccc;
}

.footer-tel-wrapper {
  padding: 0;
}

.footer-tel-wrap {
  display: block;
  margin: 0;
  padding: 0;
  text-align: left;
}

a.footer-tel {
  display: block;
  font-size: 1.4vw;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  padding: 5px 0;
}

a.footer-tel-fax {
  display: block;
  font-size: 1.4vw;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 40px;
  padding: 5px 0;
}

.footer-sns-menu-titles {
  position: relative;
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  padding: 0;
}

.footer-sns-menu {
  display: flex;
}

.footer-sns-menu li.sns-list {
  margin: 0;
  padding: 0;
}

.footer-sns-menu li.sns-list a {
  display: block;
  font-size: 3.6rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  padding: 0 20px 0 0;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.footer-sns-menu li.sns-list a:hover {
  color: #ccc;
}

.footer-copy-menuwrap {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0;
  padding: 4% 0 20px;
}

.footer-copy-menu {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding: 0 5px;
}

.footer-copy-menu a {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding: 0 5px;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.footer-copy-menu a:hover {
  letter-spacing: 1px;
  color: #ccc;
}

.copyright {
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 20px 0 10px;
}

.col-lg-20 {
  flex: 0 0 auto;
  width: 20%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.footer-menu-wrapper {
  padding-left: 10%;
  padding-right: 0;
}

.footer-menu-titles {
  position: relative;
  display: inline-flex;
  text-align: left;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
  margin: 20px 0 0;
  padding: 0 0 15px;
}

.footer-menu-titles span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  padding: 0 5px 0 0;
}

.footer-menu-titles span.texts {
  font-family: "Times New Roman", Times, serif;
  padding: 0;
}

.footer-menu-titles span.texts br {
  display: none;
}

.footer-menu-titles::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 110px;
  height: 1px;
  background-color: #eee;
}

.footer-menu {
  display: block;
  width: 100%;
  text-align: left;
  margin: 10px auto 80px;
  padding: 0;
}

.footer-menu li.menu-list {
  display: block;
  margin: 0;
  padding: 0;
}

.footer-menu li.menu-list a {
  display: block;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding: 4px 0;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.footer-menu li a:hover {
  color: #ccc;
}

@media (max-width: 1480px) {
  .footer-menu-wrapper {
    padding-left: 2%;
  }

  .footer-menu {
    margin: 10px auto 40px;
  }

  .footer-menu-titles {
    font-size: 1rem;
  }
}

@media (max-width: 1380px) {
  .footer-logo-wrap {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .footer-menu-wrapper {
    padding-left: 0;
  }
}

@media (max-width: 990px) {
  section.footer-section {
    padding: 10% 9% 16%;
  }

  .footer-logo-wrapper {
    margin: 0 0 50px;
  }

  .footer-logo-wrap {
    width: 320px;
    text-align: center;
  }

  .footer-logo-wrap span.en {
    font-size: 4.8vw;
  }

  .footer-logo-wrap span.jp {
    font-size: 1.5rem;
    padding: 10px 0 0;
  }

  .footer-menu-titles {
    font-size: 1.6rem;
  }

  .footer-address {
    font-size: 1.5rem;
    text-align: center;
    margin: 0 0 40px;
  }

  a.footer-tel {
    font-size: 3vw;
    text-align: center;
  }

  a.footer-tel-fax {
    font-size: 3vw;
    text-align: center;
  }

  .footer-sns-menu-titles {
    font-size: 3vw;
    text-align: center;
  }

  .footer-sns-menu {
    display: flex;
    justify-content: center;
    width: 200px;
    margin: 0 auto;
  }

  .footer-sns-menu li.sns-list a {
    padding: 0 10px;
  }

  .col-lg-20 {
    width: 25%;
  }
}

@media (max-width: 499px) {
  section.footer-section {
    padding: 11% 7% 120px;
  }

  .footer-logo-wrap {
    width: 100%;
    margin: 0 auto 10%;
  }

  .footer-logo-wrapper {
    margin: 0 0 30px;
  }

  .footer-logo-wrap span.en {
    font-size: 8.4vw;
  }

  .footer-address {
    margin: 0 0 10%;
  }

  a.footer-tel {
    font-size: 6vw;
  }

  a.footer-tel-fax {
    font-size: 6vw;
    margin: 0 0 10%;
  }

  .footer-sns-menu-titles {
    font-size: 6vw;
  }

  .footer-menu-wrapper {
    padding-left: 0;
    margin-bottom: 10%;
  }

  .footer-menu-titles {
    font-size: 1.4rem;
    padding: 0 0 8px;
  }

  .footer-menu-titles::before {
    width: 120px;
  }

  .footer-menu-titles span.texts br {
    display: block;
  }

  .footer-menu {
    margin: 8px auto 20px;
  }

  .footer-menu li.menu-list a {
    padding: 3px 0;
  }

  .footer-copy-menuwrap {
    display: block;
    margin: 0;
    padding: 4% 0 20px;
  }

  .footer-copy-menu.line {
    display: none;
  }

  .footer-copy-menu a {
    font-size: 1.3rem;
    line-height: 1.2;
    padding: 5px 0;
  }

  .col-lg-20 {
    width: 50%;
  }

  .copyright {
    font-size: 1rem;
  }
}

/*------------------------------------------------------------------
[Scroll UP]
------------------------------------------------------------------*/
.scroll-up {
  position: fixed;
  display: none;
  bottom: -25px;
  right: -25px;
  z-index: 9;
}

.scroll-up a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  width: 120px;
  text-align: center;
  line-height: 1;
  font-size: 2.4rem;
  color: #111;
  opacity: 1;
  background-color: #d4c4a3;
  border-radius: 50%;
}

.scroll-up a:hover,
.scroll-up a:active {
  opacity: 1;
  color: #111;
  background-color: #c4d700;
}

@media (max-width: 990px) {
  .scroll-up {
    bottom: 115px;
    right: -10px;
  }

  .scroll-up a {
    height: 80px;
    width: 80px;
    font-size: 2.4rem;
  }
}

@media (orientation: landscape) and (max-width: 990px) {
  .scroll-up {
    bottom: -10px;
    right: 0;
    z-index: 9;
  }

  .scroll-up a {
    height: 60px;
    width: 60px;
    font-size: 2.4rem;
  }
}

@media (max-width: 499px) {
  .scroll-up {
    bottom: 85px;
    right: 5px;
  }

  .scroll-up a {
    height: 40px;
    width: 40px;
  }
}


.modaal-image .modaal-container {
  width: 100%;
  height: calc(100vh - 160px);
  background-color: transparent;
}

.modaal-content,
.modaal-gallery-item-wrap,
.modaal-gallery-item {
  width: 100% !important;
  height: inherit !important;
}

.modaal-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1600/1064;
}

@media only screen and (max-width: 1140px) {
  .modaal-gallery-control {
    top: 50%;
    bottom: auto;
  }
}