@charset "UTF-8";
/* CSS Document */

/*								*/
/*			Reset			*/
/*								*/
/* CSS Document */
html {
  font-size: 18px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.5;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #222;
  background-color: #F8F7F5;
  margin: 0;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 4vw;
  }
}

::selection {
  background: #F5A100;
  color: #fff;
}

::-moz-selection {
  background: #F5A100;
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background-color: rgba(#F5A100, 0);
  opacity: 0;
}

::-webkit-scrollbar-thumb {
  background-color: #F5A100;
  border-radius: 100vh;
  box-shadow: 2px 2px 5px rgba(#000, 0.5);
}

h1,
h2,
h3,
h4,
h5,
h6,
dt {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  overflow-wrap: break-word;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

br {
  display: inline-block;
}

a {
  transition: color text-decoration 250ms;
  color: #fff;
}

a:visited {}

a:hover {}

ol,
ul,
li {
  list-style-type: none;
  padding: 0;
}

strong {
  color: #E27100;
  font-weight: bold;
}

address {
  display: block;
  font-style: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

/*class*/
.inner {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex--center {
  justify-content: center;
  gap: 3%;
  align-items: center;
}

.col {
  display: grid;
}

.col2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 3%;
}

.col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4%;
}

@media screen and (max-width: 768px) {

  .col2,
  .col3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.background-color-base {
  background-color: #072169;
}

.background-color-sub {
  background-color: #F4F1EC;
}

.level1-heading {
  font-size: .8888rem;
  color: #E27100;
  margin-bottom: 2.777rem;
}

.level2-heading {
  font-size: 1.8888rem;
  margin-bottom: 2.777rem;
}

.level2-heading__inner {
  font-size: .7222rem;
}

.level3-heading {
  font-size: 1.5555rem;
  margin-bottom: 2.111rem;
  position: relative;
}

.level3-heading::after {
  content: '';
  position: absolute;
  height: 1px;
  width: 3em;
  background-color: #222;
  left: 0;
  bottom: -.5em;
}

.level4-heading {
  font-size: 1.2222rem;
  margin-bottom: 1.333rem;
  position: relative;
}

.small {
  font-size: .8em;
}

.fz-1 {
  font-size: 3.2222rem;
  /*58px想定*/
}

.fz-2 {
  font-size: 2.2222rem;
  /*40px想定*/
}

.fz-3 {
  font-size: 1.6666rem;
  /*30px想定*/
}

.fz-4 {
  font-size: 1.3333rem;
  /*24px想定*/
}

.fz-5 {
  font-size: .8888rem;
  /*16px想定*/
}

.fz-6 {
  font-size: .7777rem;
  /*14px想定*/
}

.mb4r {
  margin-bottom: 4rem;
}

.mb2r {
  margin-bottom: 2rem;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.btn {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 1rem;
  margin: 1em 0;
  display: inline-block;
  position: relative;
  line-height: 1;
  padding: 1em 4em;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #707070;
  color: #707070;
  box-shadow: 0 0 1px #000;
  transition-duration: 500ms;
  transition-property: background-color, color, box-shadow;
}


.btn:hover {
  background-color: #707070;
  color: #fff;
  box-shadow: 0 0 3px #fff;
}

.btn::after,
.btn::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 2.5em;
  height: 1px;
  right: -2.5em;
  z-index: 10;
  top: 50%;
  background-color: #707070;
  transition: right 500ms;
}

.btn::before {
  right: 0;
}

.btn::after {
  right: -2.5em;
}

.btn:hover::before {
  background-color: #fff;
  width: 1.5em;
  right: -1em;
}

.btn:hover::after {
  width: 3.5em;
  right: -3.5em;
}

.js-fadeIn {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.is-scrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

.googlemap {
  margin-top: 60px;
  line-height: 0;
}

.googlemap iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

@media screen and (max-width: 768px) {
  .access .googlemap {
    margin-top: 0;
    line-height: 0;
  }
}

/* hamburger */
.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: 1px solid #40220F;
  background: #40220F;
  cursor: pointer;
}


.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 30px;
  height: 2px;
  transform: translateX(-50%);
  background: #fff;
  transition: all 0.4s;
}


.c-hamburger span:nth-of-type(1) {
  top: -4px;
}

.c-hamburger span:nth-of-type(2) {
  top: 1px;
}


.c-hamburger span:nth-of-type(3) {
  top: 6px;
}

.c-hamburger .c-hamburger__text {
  display: block;
  top: 12px;
  background: transparent;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}


.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}


.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}


.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}

.p-header__nav {
  display: flex;
  z-index: 10;
  position: absolute;
  top: 0;
  right: -100%;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: transparent;
  font-weight: 700;
  opacity: 0;
  transition: 0.6s;
}


@media screen and (min-width:768px) {
  .p-header__nav {
    position: static;
    height: 100%;
    width: inherit;
    opacity: initial;
    align-items: flex-end;
  }
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 13px 20px;
}


.p-header__title {
  width: 100%;
  max-width: 120px;
  height: 48px;
  background: lightgray;
}


.p-header__title a {
  display: block;
  width: 100%;
  height: auto;
}


.p-header__title a img {
  height: 100%;
}


.p-header__hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
  height: 100%;
}

@media screen and (min-width:768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  background: #40220F;
  opacity: 1;
  transition: 0.6s;
}

.p-nav {
  padding-top: 72px;
  padding-bottom: 72px;
}


@media screen and (min-width:768px) {
  .p-nav {
    padding-top: 16px;
    padding-bottom: 16px
  }
}


.p-nav__list {
  display: block;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  background: #40220F;
}

@media screen and (min-width:768px) {
  .p-nav__list {
    display: flex;
    background: #fff;
    padding-right: 0;
  }
}

.p-nav__item {
  position: relative;
  width: 100%;
}

.p-nav__link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
}

/*layout*/
@media screen and (max-width: 768px) {
  html {
    font-size: 4vw;
  }
}

body {
  background-color: #40220F;
  color: #fff;
  font-family: -apple-system, YuGothic, BlinkMacSystemFont, "Yu Gothic Medium", "Yu Gothic", Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
}

h1,
h2,
h3,
h4 {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
}

.en {
  font-family: 'Dancing Script', cursive;
  font-weight: 400;
}

header {
  background-color: #40220F;
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}

header .inner {
  align-items: center;
}

header h1 {
  line-height: 0;
}

.footer-nav,
.header-nav {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 20px;
  margin-top: 10px;
}

.footer-nav {
  justify-content: flex-end;
}

.header-nav__link,
.footer-nav__link {
  padding: 1em 2em;
  text-decoration: none;
  font-weight: normal;
}

.footer-nav__link {
  padding: 0;
  margin-left: 2em;
}

.header-nav__link:hover,
.footer-nav__link:hover {
  text-decoration: underline;
}

.header__logo {
  display: block;
  height: 56px;
  padding: 16px 0;
}

.header__logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: 0% 0%;
}

@media screen and (max-width: 768px) {
  .header__logo {
    display: block;
    height: auto;
    width: 10.686rem;
  }

  .footer-nav,
  .header-nav {
    flex-direction: column;
    text-align: center;
  }

  .header-nav__link {
    display: block;
    padding: 1rem;
    margin-bottom: 2rem;
  }
}

.kv {
  background-image: url("../images/kv.webp");
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page .kv {
  -webkit-background-size: contain;
  background-size: contain;
  background-position: right center;
}

.service .kv {
  background-image: url("../images/kv-service.webp");
}

.access .kv {
  background-image: url("../images/kv-access.webp");
}

.kv .inner {
  position: relative;
  height: 88.67vh;
}

.page .kv .inner {
  height: 71.61vh;
}

.kv h2 {
  position: absolute;
  bottom: 7.81vh;
  left: 30px;
  font-size: 40px;
  line-height: 1.4;
  text-shadow: 0 0 5px #000;
}

.page .kv h2 {
  font-size: 80px;
  line-height: 0;
}

.scrolldown {
  position: absolute;
  bottom: 0;
  right: 8%;
  animation: arrowmove 3s ease-in-out infinite;
}

@keyframes arrowmove {
  0% {
    bottom: 10%;
  }

  50% {
    bottom: 5%;
  }

  100% {
    bottom: 10%;
  }
}

.scrolldown span {
  position: absolute;
  left: -20px;
  bottom: 10px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -3px;
  width: 1px;
  height: 10px;
  background: #eee;
  transform: skewX(-31deg);
}

.scrolldown::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 60px;
  background: #eee;
}

@media screen and (max-width: 768px) {
  .page .kv {
    -webkit-background-size: cover;
    background-size: cover;
  }

  .kv .inner {
    position: relative;
    height: 80vh;
  }

  .page .kv .inner {
    height: 50vh;
  }

  .home .kv {
    background-position: 35% 0;
  }

  .service .kv {
    background-position: 60% 0;
  }

  .access .kv {
    background-position: 40% 0;
  }


  .kv h2 {
    font-size: 1.836rem;
    line-height: 1.6;
    left: .725rem;
    bottom: 1.836rem;
  }

  .page .kv h2 {
    font-size: 3.382rem;
    bottom: .666rem;
  }

  @keyframes arrowmove {
    0% {
      bottom: -5%;
    }

    50% {
      bottom: 0%;
    }

    100% {
      bottom: -5%;
    }
  }

}

.section {
  margin-top: 160px;
}

@media screen and (max-width: 768px) {
  .section {
    margin-top: 6.6329rem;
  }
}

.media {
  position: relative;
  overflow: hidden;
  line-height: 1.6;
}

.media__body {
  width: calc(50vw - 30px);
}

.media--reverse .media__body {
  margin-left: calc(50vw + 30px);
}

.media__img-wrapper {
  position: absolute;
  margin: 0;
  right: 0;
  top: 0;
  width: 50vw;
}

.media--reverse .media__img-wrapper {
  left: 0;
}

.media__img {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .media > *:first-child {
    margin-left: calc((100vw - 1200px)/2);
    width: calc(47vw - (100vw - 1200px)/2);
  }

  .media--reverse > *:first-child {
    margin-left: 53vw;
  }

}

@media screen and (max-width: 768px) {
  .media__body {
    width: inherit;
    padding-top: calc(69.53% + 1.546rem);
    padding-left: 15px;
    padding-right: 15px;
  }

  .media--reverse .media__body {
    margin-left: calc(50vw + 30px);
  }

  .media__img-wrapper {
    position: absolute;
    margin: 0;
    right: 0;
    top: 0;
    width: 100vw;
  }

  .media--reverse > *:first-child {
    margin-left: 0;
  }

  .media--reverse .media__img-wrapper {
    left: 0;
  }

  .media__img {
    width: 100%;
  }

  .infoarea.inner {
    padding-left: 0;
    padding-right: 0;
  }

  .infoarea .col__body {
    padding-left: 15px;
    padding-right: 15px;
  }

}

.servicelead {
  font-size: 45px;
  text-align: center;
  margin: 110px auto;
}

@media screen and (max-width: 768px) {
  .servicelead {
    font-size: 1.643rem;
    margin: 4.831.865rem auto;
  }
}

.cardservive__img-wrapper {
  position: relative;
  padding-top: 61.92%;
  overflow: hidden;
}

.cardservive__img {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.cardservice__title {
  text-align: center;
}

.access article {
  position: relative;
}

.accessarea {
  margin-right: 30%;
  max-width: 854px;
}

.accessarea::after {
  content: "";
  background-image: url(../../assets/images/access001.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 510px;
  width: 28vw;
  position: absolute;
  right: 0;
  top: 0;
}

.horizontal-table {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  padding-bottom: 160px;
}

.horizontal-table__header,
.horizontal-table__text {
  padding: 16px 32px;
  margin: 0;
}

.horizontal-table__header {
  border-bottom: 1px solid #4D4D4D;
}

.horizontal-table__text {
  border-bottom: 1px solid #707070;
}

@media screen and (max-width: 768px) {
  .accessarea {
    margin-right: 0;
    padding-bottom: 24.638rem;
  }

  .accessarea::after {
    padding-top: 24.638rem;
    width: 100%;
    position: absolute;
    right: 0;
    top: inherit;
    bottom: 0;
  }

  .horizontal-table {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .horizontal-table__header,
  .horizontal-table__text {
    padding: 1.2rem 0;
    margin: 0;
  }

}

footer {
  background-color: #111110;
  padding: 60px 0;
  margin-top: 60px;
}

.access footer {
  margin-top: 0;
}

footer .col {
  align-items: end;
}

.footer__logo {
  display: block;
  width: 340px;
  margin: 16px 0;
}

.footer__logo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer-right {
  text-align: right;
}

@media screen and (max-width: 768px) {
  footer {
    margin-top: 0;
  }

  .footer__logo {
    width: 50%;
    margin: 0 auto;
  }

  .footer-nav__link {
    display: block;
    padding: 1em;
    margin: 0;
    border-top: 1px dotted #707070;
  }

  .footer-nav__item:last-child .footer-nav__link {
    border-bottom: 1px dotted #707070;
  }

  .copyright {
    text-align: center;
    font-size: .8rem;
    margin-top: 3rem;
  }
}