@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
html {
  scroll-padding-top: 120px;
}
@media (max-width: 1023.9px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  color: #000;
  font-family: "Merriweather", serif;
  font-weight: normal;
  line-height: 1.5;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

sup {
  font-size: 10px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header__inner {
  padding-top: 30px;
  padding-right: 15px;
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  width: 200px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__logo {
    width: 150px;
  }
}

.header__menu-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__menu-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr 20px 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
  }
  .header__menu-list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .header__menu-list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .header__menu-list > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .header__menu-list > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
@media print, screen and (max-width: 1023.9px) and (max-width: 1023.9px) {
  .header__menu-list li {
    text-align: center;
  }
}
.header__menu-list a {
  font-family: "Shippori Mincho", serif;
}

@media print, screen and (max-width: 1023.9px) {
  .header__menu-wrap {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #fff;
  }
}
.header__menu-wrap.-active {
  opacity: 1;
  pointer-events: auto;
}

.header__lang {
  display: inline-block;
  background-color: #625028;
  padding: 5px 10px;
  font-family: "Cinzel", serif;
  color: #fff;
  font-size: 12px;
}

.hamburger {
  position: relative;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #625028;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.-active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.hamburger.-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.-active span:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

.footer {
  margin-top: 200px;
  background-color: #323333;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 50px;
  font-family: "Cinzel", serif;
}
@media print, screen and (max-width: 1023.9px) {
  .footer {
    margin-top: 100px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.footer__logo {
  width: 200px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer__logo {
    width: 150px;
  }
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media print, screen and (max-width: 1023.9px) {
  .footer__nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.footer__nav li a {
  font-size: 18px;
}
@media print, screen and (max-width: 1023.9px) {
  .footer__nav li a {
    font-size: 12px;
  }
}

.footer__info {
  margin-top: 40px;
  font-size: 18px;
  line-height: 2;
}
@media print, screen and (max-width: 1023.9px) {
  .footer__info {
    margin-top: 20px;
    font-size: 14px;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .hide-at-sp {
    display: none !important;
  }
}

@media print, screen and (min-width: 1024px) {
  .hide-at-pc {
    display: none !important;
  }
}

.contents-wrap {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.section-heading {
  font-size: 34px;
  letter-spacing: 0.1em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Cinzel", serif;
}
@media print, screen and (max-width: 1023.9px) {
  .section-heading {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.section-text {
  text-align: center;
  line-height: 1.5;
}
@media print, screen and (max-width: 1023.9px) {
  .section-text {
    text-align: left;
    font-size: 14px;
  }
}
.section-text.-tal {
  text-align: left;
}

.video-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-slider__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.video-slide.active {
  opacity: 1;
}

.video-slide__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}

.video-slide__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video-slide__content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.video-slide__title {
  font-size: 3rem;
  font-family: "Shippori Mincho", serif;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .video-slide__title {
    font-size: 2rem;
  }
}

.video-slide__text {
  font-size: 1.2rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .video-slide__text {
    font-size: 1rem;
  }
}

.video-slider__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 30px;
  z-index: 5;
}

.video-slider__nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.video-slider__nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 768px) {
  .video-slider__nav-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

.video-slider__indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  z-index: 5;
}

.video-slider__indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.video-slider__indicator.active, .video-slider__indicator:hover {
  background: white;
  border-color: white;
}

.intro {
  position: relative;
  z-index: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media print, screen and (max-width: 1023.9px) {
  .intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.intro::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  opacity: 0.19;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(29.29%, rgb(255, 255, 255)), to(rgb(50, 51, 51)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 29.29%, rgb(50, 51, 51) 100%);
}

.service-area {
  border-bottom: 1px solid #e1dad0;
}

.service {
  border-top: 1px solid #e1dad0;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .service {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.service::before {
  content: "";
  display: block;
  height: 100%;
  width: 200px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
}
@media print, screen and (max-width: 1023.9px) {
  .service::before {
    width: 130px;
    content: none;
  }
}
.service.-left::before {
  left: 0;
  background-image: url(../img/deco-left.webp);
  background-position: bottom;
}
.service.-right::before {
  right: 0;
  background-image: url(../img/deco-right.webp);
  background-position: bottom right;
}

.service__heading {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .service__heading {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
  }
}

.service__list {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media print, screen and (max-width: 1023.9px) {
  .service__list {
    margin-left: 0;
  }
}
.service__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
@media print, screen and (max-width: 1023.9px) {
  .service__list li {
    font-size: 14px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.service__list li::before {
  content: "・";
}
@media print, screen and (max-width: 1023.9px) {
  .service__list li + li {
    margin-top: 5px;
  }
}

.group {
  position: relative;
  z-index: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media print, screen and (max-width: 1023.9px) {
  .group {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.group::before {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, color-stop(29.77%, rgb(255, 255, 255)), to(rgb(102, 83, 44)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 29.77%, rgb(102, 83, 44) 100%);
  display: block;
  height: 100%;
  width: 100%;
  opacity: 0.19;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media print, screen and (max-width: 1023.9px) {
  .group::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(29.77%, rgb(255, 255, 255)), to(rgb(102, 83, 44)));
    background: linear-gradient(180deg, rgb(255, 255, 255) 29.77%, rgb(102, 83, 44) 100%);
  }
}

.group__block {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 1023.9px) {
  .group__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.group__block + .group__block {
  margin-top: 60px;
}

.group__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 18px;
}
@media print, screen and (max-width: 1023.9px) {
  .group__list li {
    font-size: 14px;
  }
}
.group__list li::before {
  content: "・";
}
.group__list li + li {
  margin-top: 10px;
}

@media print, screen and (max-width: 1023.9px) {
  .group__logo {
    width: 60%;
  }
}
@media print, screen and (min-width: 1024px) {
  .group__logo.-n1 {
    width: 300px;
  }
}
@media print, screen and (min-width: 1024px) {
  .group__logo.-n2 {
    width: 300px;
  }
}
@media print, screen and (min-width: 1024px) {
  .group__logo.-n3 {
    width: 300px;
  }
}

.group__logo-text {
  line-height: 1.5;
  margin-top: 10px;
}
@media print, screen and (max-width: 1023.9px) {
  .group__logo-text {
    font-size: 14px;
  }
}

.case {
  position: relative;
  z-index: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media print, screen and (max-width: 1023.9px) {
  .case {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.case::before, .case::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  opacity: 0.19;
}
.case::before {
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), to(rgb(50, 51, 51)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(50, 51, 51) 100%);
}
.case::after {
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(6.08%, rgb(255, 255, 255)), to(rgb(50, 51, 51)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 6.08%, rgb(50, 51, 51) 100%);
}

.case__block {
  padding-bottom: 40px;
}
.case__block + .case__block {
  border-top: 1px solid #b1b1b2;
  padding-top: 40px;
}

@media print, screen and (max-width: 1023.9px) {
  .case__heading-ttl {
    margin-bottom: 50px;
  }
}

.case__heading-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media print, screen and (max-width: 1023.9px) {
  .case__heading-row {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.case__logo {
  width: 160px;
}
@media print, screen and (max-width: 1023.9px) {
  .case__logo {
    width: 100px;
  }
}

.case__heading {
  line-height: 1;
  font-size: 24px;
}
@media print, screen and (max-width: 1023.9px) {
  .case__heading {
    font-size: 18px;
    line-height: 1.5;
  }
}

.case__text {
  margin-top: 20px;
  line-height: 1.5;
}
@media print, screen and (max-width: 1023.9px) {
  .case__text {
    font-size: 14px;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .case__accordion {
    margin-top: 30px;
  }
}

.case__more {
  display: block;
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  margin-left: auto;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 20px;
  background: #384040;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.case__accordion {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease-out;
  transition: max-height 0.5s ease-out;
}
.case__accordion.is-open {
  max-height: 2000px;
  -webkit-transition: max-height 0.5s ease-in;
  transition: max-height 0.5s ease-in;
}

.num-block {
  margin-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 50px 30px;
}
@media print, screen and (max-width: 1023.9px) {
  .num-block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.num-block__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 10px 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px;
}
@media print, screen and (max-width: 1023.9px) {
  .num-block__block {
    gap: 20px;
  }
}

.num-block__num {
  font-family: "Shippori Mincho", serif;
  font-size: 70px;
  font-style: italic;
  color: #baac93;
  line-height: 1;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}
@media print, screen and (max-width: 1023.9px) {
  .num-block__num {
    -webkit-transform: translateY(-11%);
            transform: translateY(-11%);
  }
}

.num-block__ttl {
  font-size: 22px;
}
@media print, screen and (max-width: 1023.9px) {
  .num-block__ttl {
    font-size: 18px;
  }
}

.num-block__text {
  line-height: 1.5;
  margin-top: 15px;
}
@media print, screen and (max-width: 1023.9px) {
  .num-block__text {
    font-size: 14px;
  }
}

.contents-img {
  margin-top: 60px;
}
@media print, screen and (max-width: 1023.9px) {
  .contents-img {
    margin-top: 30px;
  }
}

.vision {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 0;
}
@media print, screen and (max-width: 1023.9px) {
  .vision {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.vision::before {
  content: "";
  display: block;
  opacity: 0.19;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(102, 83, 44)), color-stop(19.56%, rgb(253, 252, 251)), to(rgb(102, 83, 44)));
  background: linear-gradient(0deg, rgb(102, 83, 44) 0%, rgb(253, 252, 251) 19.56%, rgb(102, 83, 44) 100%);
}
.vision::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(../img/bg-icon.webp);
}
@media print, screen and (max-width: 1023.9px) {
  .vision::after {
    top: 43%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.vision__list {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media print, screen and (max-width: 1023.9px) {
  .vision__list {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.vision__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 24px;
}
@media print, screen and (max-width: 1023.9px) {
  .vision__list li {
    font-size: 16px;
    text-align: left;
  }
}
.vision__list li::before {
  content: "・";
}
.vision__list li + li {
  margin-top: 10px;
}

.map {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 0;
}
@media print, screen and (max-width: 1023.9px) {
  .map {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.map::before {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  opacity: 0.19;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(27.91%, rgb(255, 255, 255)), to(rgb(50, 51, 51)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 27.91%, rgb(50, 51, 51) 100%);
}

.map__img {
  margin-top: 60px;
}
@media print, screen and (max-width: 1023.9px) {
  .map__img {
    margin-top: 30px;
  }
}

.prof {
  padding-top: 80px;
  padding-bottom: 80px;
}

.prof__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 40px 1fr;
  grid-template-columns: 20% 1fr;
  gap: 40px;
  margin-top: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .prof__inner {
    margin-top: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 0 auto;
        grid-template-areas: "img" "text1";
    gap: 0;
  }
}

.prof__text {
  line-height: 1.5;
  font-size: 19px;
}
@media print, screen and (max-width: 1023.9px) {
  .prof__text {
    font-size: 14px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .prof__text.-n1 {
    grid-area: text1;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .prof__text.-n2 {
    grid-area: text2;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .prof__img {
    grid-area: img;
    margin-bottom: 30px;
  }
}

@media print, screen and (max-width: 1023.9px){
  .prof__text.-n1 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .prof__img {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}

.outline {
  margin-top: 80px;
}
@media print, screen and (max-width: 1023.9px) {
  .outline {
    margin-top: 40px;
  }
}

.outline__body {
  margin-top: 60px;
}

.outline__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 45% 1fr;
  grid-template-columns: 45% 1fr;
  row-gap: 50px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e1dad0;
}
@media print, screen and (max-width: 1023.9px) {
  .outline__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}
.outline__row + .outline__row {
  margin-top: 20px;
}

@media print, screen and (max-width: 1023.9px) {
  .outline__text {
    font-size: 14px;
  }
}

.contact {
  display: block;
  width: 300px;
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media print, screen and (max-width: 1023.9px) {
  .contact {
    margin-top: 30px;
  }
}

.news-area {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media print, screen and (max-width: 1023.9px) {
  .news-area {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.news-list {
  margin-top: 20px;
  border-bottom: 1px solid #000;
}
.news-list li {
  text-align: center;
  border-top: 1px solid #000;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
}

.feature-ttl {
  margin-top: 40px;
  font-size: 26px;
}
@media print, screen and (max-width: 1023.9px) {
  .feature-ttl {
    font-size: 18px;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.feature-list {
  margin-top: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 40% 1fr;
  grid-template-columns: auto 40% 1fr;
  row-gap: 10px;
}
@media print, screen and (max-width: 1023.9px) {
  .feature-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-top: 15px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .feature-list li.sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .feature-list li.sp-flex:not(:first-child) {
    margin-top: 10px;
  }
}

.feature-icon {
  width: 20px;
  margin-right: 10px;
}
@media print, screen and (max-width: 1023.9px) {
  .feature-icon {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
    margin-right: 5px;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .feature-text {
    font-size: 14px;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}