@charset "UTF-8";
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #333;
}

@media (min-width: 768px) {
  h2 {
    font-size: 2.4rem;
  }
}

.MenuIcon {
  display: inline-block;
  box-sizing: border-box;
  transition: all 0.2s;
  position: relative;
  width: 32px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  appearance: none;
  outline: none;
}

.MenuIcon__line {
  position: absolute;
  background-color: #111;
  width: 100%;
  height: 1px;
  border-radius: 4px;
  left: 0;
}
.MenuIcon__line:nth-of-type(1) {
  top: 0;
}
.MenuIcon__line:nth-of-type(2) {
  top: calc((18px - 1px) / 2);
}
.MenuIcon__line:nth-of-type(3) {
  bottom: 0;
  width: 40%;
}

.MenuIcon:not(.-closed) .MenuIcon__line:nth-of-type(1) {
  animation: menu-line01 0.5s forwards;
}
.MenuIcon:not(.-closed) .MenuIcon__line:nth-of-type(2) {
  transition: all 0.2s 0.2s;
}
.MenuIcon:not(.-closed) .MenuIcon__line:nth-of-type(3) {
  animation: menu-line02 0.5s forwards;
}

.MenuIcon.active .MenuIcon__line {
  background-color: #333333;
}
.MenuIcon.active .MenuIcon__line:nth-of-type(1) {
  animation: active-menu-line01 0.5s forwards;
}
.MenuIcon.active .MenuIcon__line:nth-of-type(2) {
  opacity: 0;
}
.MenuIcon.active .MenuIcon__line:nth-of-type(3) {
  animation: active-menu-line02 0.5s forwards;
}

@keyframes menu-line01 {
  0% {
    transform: translateY(calc((18px - 1px) / 2)) rotate(45deg);
  }
  50% {
    transform: translateY(calc((18px - 1px) / 2));
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-line02 {
  0% {
    transform: translateY(calc(-1 * calc((18px - 1px) / 2))) rotate(-45deg);
    width: 100%;
  }
  50% {
    transform: translateY(calc(-1 * calc((18px - 1px) / 2))) rotate(0);
    width: 100%;
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-line01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(calc((18px - 1px) / 2)) rotate(0);
  }
  100% {
    transform: translateY(calc((18px - 1px) / 2)) rotate(45deg);
  }
}
@keyframes active-menu-line02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(calc(-1 * calc((18px - 1px) / 2))) rotate(0);
  }
  100% {
    transform: translateY(calc(-1 * calc((18px - 1px) / 2))) rotate(-45deg);
    width: 100%;
  }
}
.MainVisual {
  width: 100%;
}

.MainVisual__bg {
  background-image: url("img/main-visual-bg-sp.jpg");
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .MainVisual__bg {
    background-image: url("img/main-visual-bg-pc.jpg");
    height: calc(100vh - 100px);
  }
}

.MainVisual__copyWrap {
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 0 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .MainVisual__copyWrap {
    width: 700px;
    margin: 0 auto;
  }
}

.MainVisualCopy {
  color: #ffffff;
  line-height: 1.8;
  padding: 20px 15px;
  font-size: 1.75rem;
  font-weight: normal;
}
@media (min-width: 768px) {
  .MainVisualCopy {
    font-size: 3rem;
    padding: 30px 40px;
  }
}

@media (min-width: 768px) {
  .MainVisualCopy__br {
    display: none;
  }
}

.GlobalHeader {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  margin: 0 auto;
  padding: 15px 20px 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 80px;
  width: 100%;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .GlobalHeader {
    position: relative;
    background-color: #ffffff;
    height: 100px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0;
    align-items: center;
  }
}
.GlobalHeader .GlobalHeader__Logo {
  width: 160px;
}
@media (min-width: 992px) {
  .GlobalHeader .GlobalHeader__Logo {
    width: 220px;
    padding-top: 0;
    margin-left: 40px;
  }
}
@media (min-width: 1200px) {
  .GlobalHeader .GlobalHeader__Logo {
    width: 240px;
    margin-left: 80px;
  }
}
.GlobalHeader .GlobalHeader__menuIcon {
  position: relative;
  z-index: 300;
}

.Logo .pc {
  display: none;
}
@media (min-width: 992px) {
  .Logo .pc {
    display: block;
  }
}
@media (min-width: 992px) {
  .Logo .sp {
    display: none;
  }
}

@media (min-width: 992px) {
  .GlobalHeader__SPNav {
    display: none;
  }
}

.GlobalHeader__PCNav {
  display: none;
}
@media (min-width: 992px) {
  .GlobalHeader__PCNav {
    display: flex;
    flex-wrap: wrap;
  }
}

.GlobalHeader__PCNavList {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding-right: 20px;
}
@media (min-width: 1200px) {
  .GlobalHeader__PCNavList {
    padding-right: 40px;
  }
}

.GlobalHeader__PCNavListItem {
  padding-left: 20px;
  font-weight: 300;
  font-size: 1.125rem;
  color: #363636;
}
@media (min-width: 1200px) {
  .GlobalHeader__PCNavListItem {
    padding-left: 30px;
  }
}
.GlobalHeader__PCNavListItem a {
  text-decoration: none;
  letter-spacing: 1px;
  color: #333333;
  white-space: nowrap;
}

.GlobalHeader__PCNavContact {
  display: none;
}
@media (min-width: 992px) {
  .GlobalHeader__PCNavContact {
    background-color: #3A2E1F;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
  }
  .GlobalHeader__PCNavContact a {
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    white-space: nowrap;
  }
}

.GlobalHeader__flexRightWrap {
  display: flex;
  height: 100%;
}

.Greeting {
  margin-top: 60px;
  padding-top: 20px;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.Greeting__title {
  color: #5F472A;
  font-weight: normal;
  margin-bottom: 30px;
  padding-left: 20px;
}
@media (min-width: 1200px) {
  .Greeting__title {
    padding-left: 30px;
  }
}

@media (min-width: 992px) {
  .Greeting__flexWrap {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .Greeting__flexWrap {
    align-items: center;
  }
}

.Greeting__text {
  padding: 0 20px;
  line-height: 1.8;
  font-family: serif;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .Greeting__text {
    flex: 1;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  .Greeting__text {
    line-height: 2;
    padding: 0 80px;
  }
}

@media (min-width: 992px) {
  .Greeting__img {
    width: 500px;
  }
}
@media (min-width: 1200px) {
  .Greeting__img {
    width: 600px;
  }
}
.Greeting__img img {
  object-fit: cover;
  object-position: center center;
  height: 300px;
  width: 100%;
}
@media (min-width: 576px) {
  .Greeting__img img {
    height: 350px;
  }
}
@media (min-width: 992px) {
  .Greeting__img img {
    height: 100%;
  }
}

.OffCanvasNav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  z-index: 200;
  overflow-y: auto;
  transition: right 0.6s;
}
.OffCanvasNav.-opened {
  right: 0;
}

.OffCanvasNav__bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  opacity: 0;
  background-color: #000;
  visibility: hidden;
  cursor: pointer;
}
.OffCanvasNav__bg.-opened {
  opacity: 0.8;
  visibility: visible;
}

.OffCanvasNav__list {
  list-style: none;
  margin-top: 60px;
}

.OffCanvasNav__listItem {
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  transition: 0.5s all ease-in-out;
}
.OffCanvasNav__listItem a {
  text-decoration: none;
  color: #333333;
}
.OffCanvasNav__listItem:hover {
  opacity: 0.7;
  border-bottom: 1px solid #5F472A;
}

.Feature {
  background-color: #fcfcfc;
  margin-top: 20px;
  padding-bottom: 40px;
}

.Feature__wrap {
  padding: 30px 20px;
  margin-top: 4em;
  position: relative;
}
@media (min-width: 992px) {
  .Feature__wrap {
    max-width: 1000px;
    margin: 6em auto 0;
  }
}

.Feature__title {
  color: #5F472A;
  padding-top: 30px;
  margin-bottom: 1em;
  font-weight: normal;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .Feature__items {
    display: flex;
    align-items: flex-start;
  }
}

.Feature__item {
  margin-bottom: 2em;
  padding: 0 10px;
}
@media (min-width: 576px) {
  .Feature__item {
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .Feature__item {
    width: 33%;
  }
}

.Feature__itemTitle {
  font-weight: normal;
  text-align: center;
  color: #212121;
  border-bottom: 1px solid #5F472A;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.Feature__img {
  margin-bottom: 1em;
}
.Feature__img img {
  object-fit: cover;
  width: 100%;
  height: 180px;
}

.Service {
  margin-top: 40px;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .Service {
    max-width: 1000px;
    margin: 4em auto 0;
  }
}

.Service__title {
  color: #5F472A;
  font-weight: normal;
  text-align: center;
}

.Service__summary {
  text-align: center;
  margin-bottom: 40px;
}

.Service__listItem {
  color: #232323;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .Service__listItem {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
  }
}

.Service__ItemTitle {
  font-size: 1.125rem;
  font-weight: bold;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .Service__ItemTitle {
    font-size: 1.25rem;
    width: 30%;
    padding-bottom: 0;
  }
  .Service__ItemTitle span {
    width: 80px;
    display: inline-block;
  }
  .Service__ItemTitle::after {
    content: "";
    background-color: #ccc;
    display: inline-block;
    width: 10vw;
    height: 1px;
    vertical-align: middle;
    margin-left: 20px;
    margin-top: -3px;
  }
}

.Service__ItemText {
  padding-left: 10px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .Service__ItemText {
    flex: 1;
  }
}

.Access {
  padding: 0 20px;
}

.Access__title h2, .Access__title h3 {
  color: #5F472A;
  font-weight: normal;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 20px;
}
.Access__title h3 {
  font-size: 1.8rem;
}

.Access__map {
  height: 300px;
  overflow: hidden;
  margin: 0 auto 40px;
  max-width: 800px;
}
@media (min-width: 768px) {
  .Access__map {
    height: 400px;
  }
}

@media (min-width: 576px) {
  .Access__textWrap {
    max-width: 800px;
    margin: 0 auto;
  }
}
.Access__textWrap dl {
  border-bottom: 1px solid #707070;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  .Access__textWrap dl {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}
.Access__textWrap dt {
  font-weight: bold;
}
@media (min-width: 576px) {
  .Access__textWrap dt {
    min-width: 200px;
    align-self: start;
    padding-left: 10px;
  }
}
.Contact {
  margin: 60px auto 60px;
}

.Contact__btn a {
  text-decoration: none;
  color: #ffffff;
  background-color: #3A2E1F;
  border: 1px solid #707070;
  display: block;
  margin: 0 auto;
  width: 320px;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  font-size: 1.125rem;
}
.Contact__btn a:hover {
  opacity: 0.8;
}
.Contact__btn a::after {
  position: relative;
  top: -1px;
  left: 15px;
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}

.Footer {
  margin-top: 80px;
  background-color: #3A2E1F;
  padding: 60px;
}

.Footer__copy {
  color: #fcfcfc;
  text-align: center;
  font-size: 1rem;
}

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