@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2903225806vw;
  }
}
@media (min-width: 1240px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Hiragino Mincho Pro", "游明朝", "Yu Mincho", YuMincho, serif;
  color: #333;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* 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,
ul,
li {
  margin: 0;
}

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

/* 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;
}

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

/* 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;
}

button {
  border: none;
  padding: 0;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll 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;
  }
}
.c-hamburger-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4.375rem;
  height: 4.375rem;
  cursor: pointer;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .c-hamburger-btn {
    display: none;
  }
}

.c-hamburger-btn span {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: #095a72;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-hamburger-btn span:nth-child(2) {
  margin: 0.625rem 0;
}

.c-hamburger-btn.open span:nth-child(1) {
  -webkit-transform: translateY(0.5625rem) rotate(45deg);
          transform: translateY(0.5625rem) rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.c-hamburger-btn.open span:nth-child(3) {
  -webkit-transform: translateY(-0.8125rem) rotate(-45deg);
          transform: translateY(-0.8125rem) rotate(-45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-contact-btn {
  display: inline-block;
  background-color: #095a72;
  color: #fff;
  min-width: 20.3125rem;
  max-width: 100%;
  font-size: 1.3125rem;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro";
  line-height: 2.619047619;
  letter-spacing: 0.08em;
  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;
  border-radius: 0.4375rem;
  padding: 0 1.5625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-contact-btn {
    min-width: 13.375rem;
    font-size: 1rem;
    line-height: initial;
    padding: 1.0625rem 0;
  }
}

.c-section-title {
  color: #b19944;
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  line-height: 2;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 2.125rem;
  }
}

.c-section-title.c-section-title--lg {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-section-title.c-section-title--lg {
    font-size: 2.375rem;
  }
}

.c-btn {
  display: inline-block;
  background-color: #fff;
  color: #095a72;
  min-width: 15.625rem;
  font-size: 1rem;
  letter-spacing: 0.15em;
  line-height: 1.4;
  border-radius: 1.46875rem;
  border: 1px solid #095a72;
  padding: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-btn {
    min-width: 23.4375rem;
    font-size: 1.25rem;
    padding: 0.9375rem;
    border-radius: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .c-btn.c-btn--sm {
    min-width: 20.125rem;
    padding: 0.6875rem;
  }
}

.c-news {
  display: block;
  padding: 0.625rem 0 0.5625rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.125rem 4.375rem 0.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .c-news__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-news__time {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .c-news__time {
    font-size: 1rem;
  }
}

.c-news__category {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: #b19944;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-news__category {
    font-size: 1rem;
    display: block;
    min-width: 6.875rem;
    text-align: center;
    margin-left: 2.1875rem;
  }
}

.c-news__title {
  font-size: 1rem;
  letter-spacing: 0.15em;
  position: relative;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-news__title {
    font-size: 1.25rem;
    margin-top: initial;
    margin-left: 3.5rem;
  }
}

.c-news__title::after {
  position: absolute;
  content: ">";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-news__title::after {
    right: -1.25rem;
  }
}

.c-case-card {
  background: #fff;
  -webkit-box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.11);
          box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.11);
  padding: 0.5625rem 0.6875rem;
}
@media screen and (min-width: 768px) {
  .c-case-card {
    padding: 0.5625rem 0.6875rem 0.6875rem;
  }
}

.c-case-card__body {
  border: 1px solid #d3be73;
  position: relative;
}

.c-case-card__title {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50%, #fff), to(#fff));
  background: linear-gradient(180deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%);
  display: inline-block;
  position: absolute;
  top: -1.25rem;
  left: 0.625rem;
  padding: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-case-card__title {
    background: #fff;
    top: -0.875rem;
    left: 0.875rem;
    width: 5.4375rem;
    padding: 0.375rem 0.75rem;
  }
}

.c-case-card__title img {
  width: 100%;
}

.c-case-card__text {
  padding: 1rem 0.9375rem 0.4375rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .c-case-card__text {
    font-size: 1.125rem;
    padding: 1.25rem 0.9375rem;
  }
}

.c-page-top {
  width: 2.75rem;
  height: 2.75rem;
  position: fixed;
  bottom: 2.625rem;
  right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-page-top {
    width: 5.625rem;
    height: 5.625rem;
    bottom: 5.125rem;
    right: 2.5rem;
  }
}

.c-page-top img {
  width: 100%;
}

.l-inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1240px;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.p-header-nav {
  background: #fff;
  padding-top: 4.8125rem;
}
@media screen and (min-width: 768px) {
  .p-header-nav {
    padding-top: 0;
  }
}

.p-header-nav__wrapper {
  height: 100%;
  overflow: auto;
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-header-nav__wrapper {
    padding-bottom: 0;
    overflow: initial;
    height: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 1.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: inherit;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-header-nav__item {
  border-bottom: 1px solid #095a72;
}
@media screen and (min-width: 768px) {
  .p-header-nav__item {
    min-width: 9.125rem;
    border-bottom: none;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .p-header-nav__item::after {
    position: absolute;
    content: "";
    height: 2.875rem;
    width: 1px;
    background: #095a72;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (min-width: 768px) {
  .p-header-nav__item:last-child {
    border-right: none;
  }
}

@media screen and (min-width: 768px) {
  .p-header-nav__item:last-child::after {
    display: none;
  }
}

.p-header-nav__link {
  padding: 0.625rem 1.5rem;
  display: block;
  font-size: 1.3125rem;
  color: #095a72;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-header-nav__link {
    font-size: 1.125rem;
    height: inherit;
    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;
    padding: 0.625rem 0.9375rem;
  }
}

.p-header-nav__item:nth-child(n+2) .p-header-nav__link {
  padding: 1.3125rem 1.5rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-header-nav__item:nth-child(n+2) .p-header-nav__link {
    padding: 0 0.9375rem;
  }
}

.p-header-nav__info {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header-nav__info {
    margin-top: 0;
    margin-left: 1.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-header-nav__btn + .p-header-nav__btn {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-header-nav__btn + .p-header-nav__btn {
    margin-left: 0.5rem;
  }
}

.p-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  height: 3.6875rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 6.25rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

.p-header__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 100;
  width: 6.25rem;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__title {
    position: static;
    -webkit-transform: initial;
            transform: initial;
    width: 8.8125rem;
  }
}

.p-header__hamburger {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-header__nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 50;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
    height: inherit;
    position: static;
    width: auto;
  }
}

.noscroll {
  overflow: hidden;
}

.p-about {
  background: rgba(211, 190, 115, 0.16);
  padding-top: 0.5rem;
  padding-bottom: 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding-top: 1.4375rem;
    padding-bottom: 1.875rem;
  }
}

.p-about:after {
  content: "";
  position: absolute;
  top: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 3.3125rem solid rgba(211, 190, 115, 0.16);
}
@media screen and (min-width: 768px) {
  .p-about:after {
    padding-top: 1.4375rem;
    padding-bottom: 1.875rem;
    border-top: 5.4375rem solid rgba(211, 190, 115, 0.16);
  }
}

.p-about__case {
  margin: 1.5rem auto 0;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__case {
    margin: 2.25rem auto 0;
    max-width: initial;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.875rem 1fr 2.875rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.875rem;
  }
}

.p-about__case-item:nth-child(n+2) {
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-about__case-item:nth-child(n+2) {
    margin-top: initial;
  }
}

.p-footer {
  position: relative;
}
.p-footer__top {
  background: #095a72;
  padding: 1.875rem 0 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__top {
    padding: 2.125rem 0 3.4375rem;
  }
}

.p-footer__top-title {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__top-title {
    font-size: 2.375rem;
  }
}

.p-footer__top-list {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__top-list {
    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;
  }
}

.p-footer__top-item {
  color: #fff;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__top-item {
    font-size: 2.375rem;
  }
}

.p-footer__top-item:nth-child(1) {
  margin-top: 1.75rem;
}

.p-footer__top-item:nth-child(n+2) {
  margin-left: 5.625rem;
}

.p-footer__top-item span {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.1875rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-footer__top-item span {
    font-size: 1rem;
  }
}

.p-footer__top-item:nth-child(n+2) {
  margin-top: 1.5rem;
}

.p-footer__top-item:nth-child(n+2) span {
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__top-item:nth-child(n+2) span {
    font-size: 1rem;
  }
}

.p-footer__top-item-link {
  text-decoration: underline;
}

.p-footer__bottom {
  padding: 2.4375rem 0 3.0625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom {
    padding: 2.875rem 0 3.0625rem;
  }
}

.p-footer__bottom-inner {
  padding: 0 0.9375rem;
}

.p-footer__sns {
  padding-bottom: 2.4375rem;
  border-bottom: 0.25px solid #095a72;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__sns {
    padding-bottom: 2.25rem;
    gap: 3.1875rem;
  }
}

.p-footer__sns-text {
  color: #095a72;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  width: 48.4%;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-footer__sns-text {
    font-size: 1.125rem;
    width: initial;
  }
}

.p-footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 43.5%;
}
@media screen and (min-width: 768px) {
  .p-footer__sns-list {
    width: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__sns-item {
    width: 3.9375rem;
  }
}

.p-footer__sns-item img {
  width: 100%;
}

.p-footer__sns-item:nth-child(n+2) {
  margin-left: 1.4375rem;
}

.p-footer__bottom-nav {
  padding-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-nav {
    padding-top: 2.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-footer__bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-footer__bottom-list:nth-child(n+2) {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-list:nth-child(n+2) {
    margin-top: initial;
  }
}

.p-footer__bottom-item {
  padding: 0 0.4em;
  position: relative;
}

.p-footer__bottom-item::after {
  position: absolute;
  content: "";
  height: 0.75rem;
  width: 1px;
  background: #095a72;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-footer__bottom-item:last-child:after {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-item:last-child:after {
    display: block;
  }
}

.p-footer__bottom-link {
  color: #095a72;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-link {
    font-size: 0.875rem;
  }
}

.p-footer__bottom-copy {
  color: #095a72;
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-align: center;
  display: block;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__bottom-copy {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
  }
}

.p-news {
  padding-top: 3.375rem;
  padding-bottom: 5.125rem;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding-top: 7.25rem;
    padding-bottom: 5.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__inner {
    padding: 0 6.875rem;
  }
}

.p-news__list {
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-news__list {
    margin-top: 1.75rem;
  }
}

.p-news__item {
  border-bottom: 0.25px solid #095a72;
}

.p-news__item:first-child {
  border-top: 0.25px solid #095a72;
}

.p-news__btn {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__btn {
    margin-top: 3.5rem;
  }
}

.p-access {
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-access__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 5.9375rem;
    padding: 0 3.75rem;
  }
}

.p-access__map {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-access__map {
    margin-right: initial;
    margin-left: initial;
    width: 48%;
  }
}

.p-access__map iframe {
  width: 100%;
  aspect-ratio: 375/296;
}
@media screen and (min-width: 768px) {
  .p-access__map iframe {
    aspect-ratio: 538/425;
  }
}

.p-access__body {
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-access__body {
    width: 43%;
    margin-top: 0.625rem;
  }
}

.p-access__body tr {
  vertical-align: baseline;
}

.p-access__body th {
  font-size: 1rem;
  letter-spacing: 0.15em;
  line-height: 2;
  font-weight: 600;
  width: 30%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-access__body th {
    font-size: 1.5rem;
  }
}

.p-access__body td {
  font-size: 1rem;
  letter-spacing: 0.15em;
  line-height: 1.75;
  font-weight: 300;
  width: 70%;
  padding-bottom: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-access__body td {
    font-size: 1.5rem;
    padding-bottom: 1.3125rem;
  }
}

.p-concept {
  padding-top: 6.25rem;
  padding-bottom: 7.625rem;
}
@media screen and (min-width: 768px) {
  .p-concept {
    padding-top: 8.625rem;
    padding-bottom: 11.125rem;
  }
}

.p-concept__text {
  margin-top: 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.15em;
  line-height: 2;
  font-weight: 300;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-concept__text {
    font-size: 1.8125rem;
    line-height: 1.9;
  }
}

.p-concept__list-wrapper {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(7%, transparent), color-stop(7%, rgba(211, 190, 115, 0.16)), color-stop(93%, rgba(211, 190, 115, 0.16)), color-stop(93%, transparent), to(transparent));
  background: linear-gradient(180deg, transparent 0%, transparent 7%, rgba(211, 190, 115, 0.16) 7%, rgba(211, 190, 115, 0.16) 93%, transparent 93%, transparent 100%);
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  margin-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-concept__list-wrapper {
    margin-top: 4.875rem;
  }
}

.p-concept__list {
  max-width: 31.25rem;
  width: 100%;
  margin: auto;
  padding: 0 3.0625rem;
}
@media screen and (min-width: 768px) {
  .p-concept__list {
    max-width: initial;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 5.4375rem 1fr 5.4375rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 5.4375rem;
    padding: 0 3.75rem;
  }
}

.p-concept__item {
  position: relative;
}
.p-concept__item:nth-child(n+2) {
  margin-top: 3.5625rem;
}
@media screen and (min-width: 768px) {
  .p-concept__item:nth-child(n+2) {
    margin-top: initial;
  }
}

.p-concept__item-title {
  color: #FEF2CB;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-concept__item-title {
    margin-top: initial;
    font-size: 1.6875rem;
  }
}

.p-mv {
  position: relative;
}

.p-mv__link {
  background: #095a72;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem;
  text-align: center;
  display: block;
  position: relative;
}

.p-mv__img {
  margin-top: -2.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__img {
    margin-top: initial;
  }
}

.p-mv__text {
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__text {
    font-size: 2.375rem;
    letter-spacing: 0.25em;
  }
}

.p-slider {
  padding-top: 2.125rem;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-slider {
    padding-top: 3.625rem;
    padding-bottom: 7rem;
  }
}

.p-slider__inner {
  position: relative;
}

.p-slider__pagination.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  bottom: -1.6875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-slider__pagination.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -3.4375rem;
  }
}

.p-slider__pagination .swiper-pagination-bullet,
.p-slider__pagination .swiper-pagination-bullet-active {
  background: #b19944;
  width: 1.375rem;
  height: 0.25rem;
  border-radius: initial;
}
@media screen and (min-width: 768px) {
  .p-slider__pagination .swiper-pagination-bullet,
  .p-slider__pagination .swiper-pagination-bullet-active {
    width: 3rem;
    height: 0.5625rem;
  }
}

.p-slider__pagination .swiper-pagination-bullet-active {
  background: #d3be73;
}

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

.u-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */