@charset "UTF-8";
/* assets/scss/_base.scss */
/* assets/scss/_mixin.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Shippori Mincho", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #111;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.2;
}

p, a {
  font-weight: 300;
  margin: 0;
}

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

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

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.container {
  width: min(1100px, 100% - 32px);
  margin-inline: auto;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.entry-content a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.entry-content figure {
  margin: 0 0 1.2em;
}

.entry-content blockquote {
  margin: 0 0 1.2em;
  padding: 0.8em 1em;
  border-left: 4px solid #ddd;
  background: #fafafa;
}

.entry-content hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 24px 0;
}

.is-scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(2px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.is-scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .is-scroll-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
.pgafu-post-grid-main.pgafu-design-2 .pgafu-post-image-bg {
  margin-bottom: 14px;
  z-index: 10;
}

.pgafu-post-grid {
  margin-bottom: 40px;
}

.pgafu-post-grid-main.pgafu-design-2 .pgafu-content-above-image {
  margin-top: 0px;
  width: 100%;
  padding: 0px;
  display: grid;
  gap: 8px;
  grid-template-areas: "date" "h2";
}

.pgafu-post-grid-main h2 {
  margin: 0 !important;
  line-height: 0px !important;
  padding-top: 0px !important;
  font-size: 15px !important;
  padding-bottom: 0px !important;
  grid-area: h2;
}

.pgafu-post-grid-main h2.pgafu-post-title a {
  display: block !important;
  font-size: 15px !important;
  line-height: 1 !important;
  color: var(--c-black);
  font-weight: bold;
}

.pgafu-post-grid-main.pgafu-design-2 .pgafu-post-grid-content .pgafu-post-title, .pgafu-post-grid-main.pgafu-design-2 .pgafu-post-grid-content .pgafu-post-date {
  margin-top: 13px;
  padding: 0px;
}

.pgafu-post-date span {
  display: block;
  font-size: 12px;
  line-height: 1;
  font-style: normal;
  margin-right: 0;
  grid-area: date;
}

.pgafu-post-grid-main.pgafu-design-2 .pgafu-post-grid-content {
  width: 224px;
  padding-bottom: 0px;
  border-bottom: none;
  margin: 0 auto;
}

.pgafu-post-date img, .pgafu-post-tags img {
  display: none !important;
}

.pgafu-filter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pgafu-filter li.pgafu-active-filtr a {
  color: var(--c-white);
  width: 100%;
  background: var(--c-black);
  text-align: center;
  font-size: 16px;
  border-radius: 20px;
}

.pgafu-filter li a {
  width: 100%;
  background-color: #fff;
  color: var(--c-black);
  border: solid var(--c-black) 1px;
  text-align: center;
  font-size: 16px;
  border-radius: 20px;
}

/* ページネーション全体 */
.newsGrid .pgafu-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

/* ページ番号 */
.newsGrid .pgafu-pagination a,
.newsGrid .pgafu-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #ddd;
  text-decoration: none;
  font-size: 14px;
}

/* hover */
.newsGrid .pgafu-pagination a:hover {
  background: #f5f5f5;
}

/* 現在ページ */
.newsGrid .pgafu-pagination .current {
  background: #222;
  color: #fff;
  border-color: #222;
}

.newsGrid .pgafu-pagination,
.newsGrid .pgafu-post-pagination,
.newsGrid .pagination {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
}

/* assets/scss/_color.scss */
.p-news .c-hero {
  height: 30vh;
  margin-top: 76px;
}
@media (min-width: 768px) {
  .p-news .c-hero {
    height: 80vh;
    margin-top: 76px;
  }
}
.p-news__inner {
  max-width: 968px;
  margin: 0 auto;
  padding: 54px 16px 96px;
}
@media (min-width: 768px) {
  .p-news__inner {
    padding: 78px 0 138px;
  }
}
.p-news__contents {
  margin-top: 54px;
}
@media (min-width: 768px) {
  .p-news__contents {
    margin-top: 78px;
  }
}

/* =========================
   カテゴリータブ
========================= */
.pgafuCatTabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (min-width: 768px) {
  .pgafuCatTabs {
    grid-template-columns: repeat(4, 203px);
    justify-content: center;
    gap: 22px;
  }
}

.pgafuCatTabs__btn {
  display: block;
  width: 100%;
  background-color: #fff;
  color: var(--c-black);
  border: solid var(--c-black) 1px;
  text-align: center;
  font-size: 16px;
  border-radius: 30px;
  padding: 10px;
  cursor: pointer;
}

.pgafuCatTabs__btn.is-active {
  color: #fff;
  background: var(--c-black);
  border: none;
}

/* =========================
   PGAFU Pagination
========================= */
.newsGrid .pgafu-post-pagination {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 !important;
  margin-top: 28px;
}

/* ボタン共通 */
.newsGrid .pgafu-post-pagination a,
.newsGrid .pgafu-post-pagination span {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px !important;
  border: 1px solid #ece3e4 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--c-black) !important;
  text-decoration: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  line-height: 1 !important;
}

/* 現在ページ */
.newsGrid .pgafu-post-pagination .current,
.newsGrid .pgafu-post-pagination span.current {
  border-color: #ece3e4 !important;
  background-color: #f6edee !important;
  color: #9f3d4d !important;
  font-weight: 600;
}

/* =========================
   Prev / Next ボタン
========================= */
.newsGrid .pgafu-post-pagination a.next,
.newsGrid .pgafu-post-pagination a.prev {
  position: relative;
  width: 40px;
  padding: 0 !important;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
  border: none !important;
}

/* 擬似要素共通 */
.newsGrid .pgafu-post-pagination a.next::before,
.newsGrid .pgafu-post-pagination a.prev::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  display: block;
}

/* 右矢印 */
.newsGrid .pgafu-post-pagination a.next::before {
  background: url("../images/arrow-right.svg") center/contain no-repeat;
}

/* 左矢印 */
.newsGrid .pgafu-post-pagination a.prev::before {
  background: url("../images/arrow-left.svg") center/contain no-repeat;
}

/* hover */
.newsGrid .pgafu-post-pagination a:hover {
  border-color: var(--c-black) !important;
}

/* 無効状態 */
.newsGrid .pgafu-post-pagination span.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pgafu-column, .pgafu-columns {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 768px) {
  .pgafu-column, .pgafu-columns {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.pgafu-post-grid-main {
  margin: 0;
}

.pgafu-post-image-bg {
  width: 224px !important;
  height: 280px !important;
  aspect-ratio: 224/280 !important;
  overflow: hidden !important;
  margin: 0 auto !important;
}

.pgafu-post-image-bg a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single {
  position: relative;
  min-height: 1200px;
}
@media (min-width: 768px) {
  .p-single {
    min-height: auto;
    min-height: 1400px;
  }
}
.p-single__image01, .p-single__image02, .p-single__image03, .p-single__image04 {
  position: absolute;
  z-index: -1;
}
.p-single__image01 {
  width: 163px;
  top: 100px;
  right: 0;
}
@media (min-width: 768px) {
  .p-single__image01 {
    width: 233px;
    top: 126px;
  }
}
.p-single__image02 {
  width: 126px;
  top: 300px;
  left: 0;
}
@media (min-width: 768px) {
  .p-single__image02 {
    width: 180px;
    top: 416px;
  }
}
.p-single__image03 {
  width: 174px;
  bottom: 400px;
  right: 0;
}
@media (min-width: 768px) {
  .p-single__image03 {
    bottom: 426px;
  }
}
.p-single__image04 {
  width: 163px;
  bottom: 200px;
  left: 0;
}
@media (min-width: 768px) {
  .p-single__image04 {
    width: 233px;
    bottom: 300px;
  }
}
.p-single__inner {
  max-width: 764px;
  margin: 0 auto;
  padding: 163px 16px 303px;
}
@media (min-width: 768px) {
  .p-single__inner {
    padding: 223px 0 433px;
  }
}
.p-single__header {
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .p-single__header {
    margin-bottom: 50px;
  }
}
.p-single h2, .p-single h3, .p-single h4 {
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .p-single h2, .p-single h3, .p-single h4 {
    margin-bottom: 22px;
  }
}
.p-single h2 {
  font-size: 24px;
}
@media (min-width: 768px) {
  .p-single h2 {
    font-size: 26px;
  }
}
.p-single h3 {
  font-size: 20px;
}
@media (min-width: 768px) {
  .p-single h3 {
    font-size: 22px;
  }
}
.p-single p {
  line-height: 1.8;
}
.p-single__buttons {
  max-width: 428px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 81px auto 0;
}
@media (min-width: 768px) {
  .p-single__buttons {
    gap: 22px;
    margin: 116px auto 0;
  }
}

.post__content {
  color: var(--c-black) !important;
  opacity: 1 !important;
  visibility: visible !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.post__content * {
  display: revert !important;
}

.c-about__inner {
  padding: 43px 16px 123px;
}
@media (min-width: 768px) {
  .c-about__inner {
    padding: 62px 0 176px;
  }
}
.c-about__description {
  margin-top: 29px;
}
@media (min-width: 768px) {
  .c-about__description {
    margin-top: 42px;
  }
}
.c-about__text {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .c-about__text {
    margin-bottom: 44px;
  }
}
.c-about__text:last-child {
  margin-bottom: 0;
}
.c-about__br {
  display: block;
}
@media (min-width: 768px) {
  .c-about__br {
    display: none;
  }
}
.c-about__images {
  position: relative;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}
.c-about__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.c-about__slide {
  flex: 0 0 auto;
  width: 266px;
}
@media (min-width: 768px) {
  .c-about__slide {
    width: 380px;
  }
}
.c-about__image {
  display: block;
  width: 100%;
  height: 177px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .c-about__image {
    height: 254px;
  }
}

.c-button {
  display: block;
  text-align: center;
  font-size: 20px;
  color: var(--c-black);
  border: solid var(--c-black) 1px;
  padding: 16px;
  border-radius: 50px;
  line-height: 1;
}
@media (min-width: 768px) {
  .c-button {
    font-size: 24px;
    padding: 18px;
  }
}

.c-button02 {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--c-black);
  color: var(--c-white);
  font-size: 16px;
  border-radius: 30px;
  padding: 10px;
  line-height: 0.8;
}
.c-button02__white {
  background-color: var(--c-white);
  color: var(--c-black);
  border: solid var(--c-black) 1px;
}

.c-button03 {
  display: block;
  color: var(--c-white);
  background: var(--c-accent);
  text-align: center;
  font-size: 18px;
  padding: 8px;
}
@media (min-width: 768px) {
  .c-button03 {
    font-size: 20px;
    padding: 10px;
  }
}

.c-contact {
  padding: 68px 16px 102px;
}
@media (min-width: 768px) {
  .c-contact {
    padding: 98px 0px 146px;
  }
}
.c-contact__contents {
  max-width: 684px;
  margin: 22px auto 0;
}
@media (min-width: 768px) {
  .c-contact__contents {
    margin: 32px auto 0;
  }
}
.c-contact__text {
  max-width: 684px;
  margin: 56px auto 0;
}
@media (min-width: 768px) {
  .c-contact__text {
    margin: 80px auto 0;
  }
}
.c-contact__label {
  font-weight: bold;
  margin-top: 23px;
}
@media (min-width: 768px) {
  .c-contact__label {
    margin-top: 34px;
  }
}
.c-contact__required {
  font-size: 12px;
  background-color: #333;
  color: var(--c-white);
  padding: 3px 5px 5px;
  border-radius: 2px;
  margin-left: 12px;
}

.wpcf7-form {
  display: grid;
  gap: 34px;
}
@media (min-width: 768px) {
  .wpcf7-form {
    gap: 23px;
  }
}

.wpcf7-form-control {
  width: 100%;
  border: 1px solid #333;
  border-radius: 4px;
  margin-top: 10px;
}

.wpcf7-submit {
  max-width: 494px;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 24px;
  color: var(--c-white);
  background-color: var(--c-black);
  padding: 18px;
  border-radius: 50px;
  line-height: 1;
}

.c-features {
  background-image: linear-gradient(rgba(96, 32, 44, 0.5)), url("../../assets/images/features-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position: 30% center;
  width: 100%;
  padding: 43px 16px 129px;
}
@media (min-width: 768px) {
  .c-features {
    padding: 62px 0 185px;
    background-position: center;
  }
}
.c-features__list {
  max-width: 515px;
  margin: 56px auto 0;
}
@media (min-width: 768px) {
  .c-features__list {
    margin: 80px auto 0;
  }
}

.c-footer {
  background-color: #eeebec;
  padding: 35px 16px 28px;
}
@media (min-width: 768px) {
  .c-footer {
    padding: 50px 0px 40px;
  }
}
.c-footer__text {
  display: block;
  margin: 0 auto;
}
.c-footer__container {
  max-width: 611px;
  margin: 22px auto 0;
  display: grid;
}
@media (min-width: 768px) {
  .c-footer__container {
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: 200px auto 1fr;
    align-items: center;
  }
}
.c-footer__logo {
  margin: 0 auto;
}
.c-footer__address {
  margin: 16px auto 0;
  font-style: normal;
}
@media (min-width: 768px) {
  .c-footer__address {
    margin: 0 0 0 33px;
  }
}
.c-footer__mail--icon {
  width: 21px;
  margin-right: 8px;
}
.c-footer__line {
  font-size: 12px;
  display: grid;
  gap: 5px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .c-footer__line {
    margin-top: 12px;
  }
}
.c-footer__line::before, .c-footer__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--c-black);
}
.c-footer__icon {
  margin: 20px auto 0;
}
@media (min-width: 768px) {
  .c-footer__icon {
    margin: 0 0 0 44px;
  }
}
.c-footer__image {
  width: 140px;
}
@media (min-width: 768px) {
  .c-footer__image {
    width: 200px;
  }
}
.c-footer__copy {
  display: block;
  font-size: 12px;
  text-align: center;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .c-footer__copy {
    margin-top: 46px;
  }
}

.c-header-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  color: var(--c-white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  background-color: transparent;
  transition: background-color 0.45s ease, color 0.45s ease, box-shadow 0.45s ease;
}
@media (min-width: 768px) {
  .c-header-bar {
    padding: 18px 16px;
  }
}
.c-header-bar__logo {
  width: 140px;
  display: block;
}
.c-header-bar__logo-stack, .c-header-bar__icon-stack {
  position: relative;
  display: block;
}
.c-header-bar__icon-stack {
  width: 30px;
  height: 30px;
}
.c-header-bar__image, .c-header-bar__icon-image {
  display: block;
  transition: opacity 0.45s ease;
}
.c-header-bar__image--scrolled, .c-header-bar__icon-image--scrolled {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.c-header-bar__sub {
  background-color: var(--c-white);
  color: var(--c-black);
}
.c-header-bar__links {
  display: none;
  align-items: center;
}
@media (min-width: 768px) {
  .c-header-bar__links {
    display: flex;
  }
}
.c-header-bar__navigation {
  display: flex;
  gap: 42px;
  margin-right: 24px;
}
.c-header-bar__links .c-link {
  transition: color 0.45s ease;
}
.c-header-bar__contact {
  width: 173px;
  margin-right: 18px;
}
.c-header-bar__button {
  position: relative;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 768px) {
  .c-header-bar__button {
    display: none;
  }
}
.c-header-bar__hamburger {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  transition: opacity 0.3s ease;
}
.c-header-bar__hamburger--menu::before, .c-header-bar__hamburger--menu::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--c-white);
  transition: background-color 0.5s ease;
}
.c-header-bar__hamburger--menu::before {
  top: 12px;
}
.c-header-bar__hamburger--menu::after {
  top: 22px;
}
.c-header-bar__hamburger--close {
  opacity: 0;
}
.c-header-bar__hamburger--close::before, .c-header-bar__hamburger--close::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 17px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--c-white);
  transition: background-color 0.5s ease;
  transform-origin: center;
  z-index: 100;
}
.c-header-bar__hamburger--close::before {
  transform: rotate(45deg);
}
.c-header-bar__hamburger--close::after {
  transform: rotate(-45deg);
}
.c-header-bar.is-scrolled {
  color: var(--c-black);
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.12);
  backdrop-filter: blur(12px);
}
.c-header-bar.is-scrolled .c-header-bar__image--default,
.c-header-bar.is-scrolled .c-header-bar__icon-image--default {
  opacity: 0;
}
.c-header-bar.is-scrolled .c-header-bar__image--scrolled,
.c-header-bar.is-scrolled .c-header-bar__icon-image--scrolled {
  opacity: 1;
}
.c-header-bar.is-scrolled .c-link {
  color: var(--c-black);
}
.c-header-bar.is-scrolled .c-header-bar__hamburger--menu::before,
.c-header-bar.is-scrolled .c-header-bar__hamburger--menu::after,
.c-header-bar.is-scrolled .c-header-bar__hamburger--close::before,
.c-header-bar.is-scrolled .c-header-bar__hamburger--close::after {
  background-color: var(--c-black);
}

.c-header {
  position: relative;
  width: 100%;
  height: 100vh;
}
.c-header__sub {
  height: 0;
}
.c-header__sub .c-header__background-carousel {
  display: none;
}
.c-header__sub .c-header-bar__hamburger--menu::before, .c-header__sub .c-header-bar__hamburger--menu::after {
  background-color: var(--c-black);
}
.c-header__sub .c-header-bar__hamburger--close::before, .c-header__sub .c-header-bar__hamburger--close::after {
  background-color: var(--c-black);
}
.c-header__background-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}
.c-header__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30% center;
     object-position: 30% center;
  opacity: 0;
  transform: scale(1.02);
  will-change: opacity, transform;
  animation: headerBackgroundCarousel calc(var(--slide-count, 1) * 7s) ease-in-out infinite;
  animation-delay: calc(var(--slide-index, 0) * 7s);
}
@media (min-width: 768px) {
  .c-header__background {
    -o-object-position: center;
       object-position: center;
  }
}
.c-header__background--first {
  opacity: 1;
  transform: scale(1);
  animation: headerBackgroundCarouselFirst calc(var(--slide-count, 1) * 7s) ease-in-out 1, headerBackgroundCarousel calc(var(--slide-count, 1) * 7s) ease-in-out infinite calc(var(--slide-count, 1) * 7s);
}
.c-header__hero {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--c-white);
  text-align: center;
  width: calc(100% - 32px);
  max-width: 520px;
}
.c-header__logo {
  width: 151px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-header__logo {
    width: 217px;
  }
}
.c-header__title {
  display: grid;
  font-size: 32px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .c-header__title {
    font-size: 40px;
  }
}
.c-header__en {
  font-size: 42px;
}
@media (min-width: 768px) {
  .c-header__en {
    font-size: 54px;
  }
}
.c-header__link {
  display: grid;
  grid-template-columns: auto 30px;
  align-items: center;
  gap: 20px;
}
.c-header__mobile {
  color: var(--c-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(44, 36, 23, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 88px 16px 24px;
  z-index: 30;
}
@media (min-width: 768px) {
  .c-header__mobile {
    display: none;
  }
}
.c-header__nav--mobile {
  display: grid;
  gap: 14px;
  margin-top: 76px;
}
.c-header__mobile-contact {
  margin-top: 8px;
}
.c-header__mobile-icon {
  display: inline-flex;
  width: 30px;
  margin-top: 6px;
}

.c-header.is-open .c-header-bar__hamburger--menu {
  opacity: 0;
}
.c-header.is-open .c-header-bar__hamburger--close {
  opacity: 1;
}

body.is-menu-open {
  overflow: hidden;
}

@keyframes headerBackgroundCarouselFirst {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
    transform: scale(1.02);
  }
  38%, 100% {
    opacity: 0;
    transform: scale(1);
  }
}
@keyframes headerBackgroundCarousel {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  8%, 30% {
    opacity: 1;
    transform: scale(1.02);
  }
  38%, 100% {
    opacity: 0;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-header__background {
    animation: none;
    opacity: 0;
    transform: none;
  }
  .c-header__background:first-child {
    opacity: 1;
  }
}
.c-heading__title {
  display: block;
  height: 73px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-heading__title {
    height: 105px;
  }
}

.c-heading02__title {
  display: block;
  height: 60px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-heading02__title {
    height: 74px;
  }
}

.c-heading03 {
  display: block;
  font-size: 16px;
}
@media (min-width: 768px) {
  .c-heading03 {
    font-size: 18px;
  }
}
.c-heading03__time {
  display: block;
  font-size: 14px;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .c-heading03__time {
    margin-bottom: 20px;
  }
}
.c-heading03__white {
  color: var(--c-white);
}
.c-heading03__large {
  font-size: 28px;
}
@media (min-width: 768px) {
  .c-heading03__large {
    font-size: 36px;
  }
}
.c-heading03__large::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--c-black);
  margin-top: 19px;
}
@media (min-width: 768px) {
  .c-heading03__large::after {
    margin-top: 28px;
  }
}
.c-heading03__large .c-heading03__time {
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .c-heading03__large .c-heading03__time {
    margin-bottom: 40px;
  }
}

.c-hero {
  position: relative;
  width: 100%;
  height: 80vh;
}
.c-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% center;
     object-position: 80% center;
  z-index: -1;
}
.c-hero__heading {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-hero__title {
  display: block;
  height: 79px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .c-hero__title {
    height: 113px;
  }
}

.c-news {
  background-color: #e3dcde;
  padding: 45px 16px;
}
@media (min-width: 768px) {
  .c-news {
    padding: 65px 60px;
  }
}
.c-news__contents {
  max-width: 968px;
  margin: 22px auto 0;
}
@media (min-width: 768px) {
  .c-news__contents {
    margin: 32px auto 0;
  }
}
.c-news__button {
  max-width: 494px;
  margin: 33px auto 0;
}
@media (min-width: 768px) {
  .c-news__button {
    margin: 48px auto 0;
  }
}

.latestPostsSimple {
  display: grid;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .latestPostsSimple {
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 23px;
  }
}
.latestPostsSimple__item {
  list-style: none;
}
.latestPostsSimple__body {
  margin-top: 12px;
  color: var(--c-black);
}
@media (min-width: 768px) {
  .latestPostsSimple__body {
    margin-top: 13px;
  }
}
.latestPostsSimple__date {
  display: block;
  font-size: 12px;
  line-height: 1;
}
.latestPostsSimple__title {
  font-size: 15px;
  margin-top: 8px;
}
.latestPostsSimple__thumb {
  aspect-ratio: 224/280;
  width: 224px;
  overflow: hidden;
  margin: 0 auto;
}
.latestPostsSimple__thumbImg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-link {
  font-size: 18px;
  font-weight: bold;
}

.c-list {
  display: grid;
  gap: 36px;
}
@media (min-width: 768px) {
  .c-list {
    gap: 52px;
  }
}
.c-list__item {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  color: var(--c-white);
}
@media (min-width: 768px) {
  .c-list__item {
    grid-template-columns: 27px auto;
    gap: 12px;
    font-size: 24px;
  }
}
.c-list__image {
  width: 24px;
}
@media (min-width: 768px) {
  .c-list__image {
    width: 27px;
  }
}

.c-logo {
  display: grid;
  grid-template-columns: 52px auto;
  align-items: center;
  gap: 8px;
}
.c-logo__icon {
  width: 52px;
}
.c-logo__title {
  display: block;
  font-size: 18px;
  font-weight: 500;
}
.c-logo__en {
  display: block;
  font-size: 16px;
}

.c-service {
  display: grid;
  grid-template-areas: "images" "content";
}
@media (min-width: 768px) {
  .c-service {
    grid-template-columns: 530px 385px;
    justify-content: center;
    grid-template-areas: "images content";
  }
}
.c-service__contents {
  width: 318px;
  height: 302px;
  color: var(--c-white);
  text-align: center;
  position: relative;
  left: 0px;
  margin: -60px auto 0;
  grid-area: content;
}
@media (min-width: 768px) {
  .c-service__contents {
    width: 455px;
    height: 432px;
    left: -34px;
    margin-top: 84px;
  }
}
.c-service__description {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-service__text {
  font-size: 16px;
  margin-top: 25px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .c-service__text {
    font-size: 18px;
    margin-top: 36px;
  }
}
.c-service__background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.c-service__decoration01 {
  width: 39px;
  position: absolute;
  bottom: 14px;
  right: -9px;
}
@media (min-width: 768px) {
  .c-service__decoration01 {
    width: 56px;
    position: absolute;
    bottom: 20px;
    right: -14px;
  }
}
.c-service__images {
  width: 350px;
  height: 360px;
  position: relative;
  left: 8px;
  margin: 0 auto;
  grid-area: images;
}
@media (min-width: 768px) {
  .c-service__images {
    width: 500px;
    height: 515px;
    position: relative;
    left: 34px;
  }
}
.c-service__main {
  width: 308px;
  position: absolute;
  top: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .c-service__main {
    width: 440px;
  }
}
.c-service__sub {
  width: 129px;
  position: absolute;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .c-service__sub {
    width: 185px;
  }
}
.c-service__decoration02 {
  width: 37px;
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .c-service__decoration02 {
    width: 54px;
    left: -24px;
  }
}
.c-service__reverse {
  grid-template-areas: "images" "content";
}
@media (min-width: 768px) {
  .c-service__reverse {
    grid-template-columns: 385px 530px;
    grid-template-areas: "content images";
  }
}
.c-service__reverse .c-service__contents {
  left: 8px;
}
@media (min-width: 768px) {
  .c-service__reverse .c-service__contents {
    left: 34px;
  }
}
.c-service__reverse .c-service__background {
  left: 0;
  transform: none;
}
.c-service__reverse .c-service__decoration01 {
  right: auto;
  left: -19px;
}
@media (min-width: 768px) {
  .c-service__reverse .c-service__decoration01 {
    left: -14px;
  }
}
.c-service__reverse .c-service__images {
  left: -8px;
}
@media (min-width: 768px) {
  .c-service__reverse .c-service__images {
    left: 34px;
  }
}
.c-service__reverse .c-service__main {
  right: auto;
  left: 0;
}
.c-service__reverse .c-service__sub {
  left: auto;
  right: 0;
}
.c-service__reverse .c-service__decoration02 {
  left: auto;
  right: -16px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .c-service__reverse .c-service__decoration02 {
    right: -24px;
  }
}

.c-services {
  background-color: #dd9aaa;
}
.c-services__inner {
  padding: 43px 0 61px;
}
@media (min-width: 768px) {
  .c-services__inner {
    padding: 62px 0 88px;
  }
}
.c-services__contents {
  max-width: 900px;
  margin: 54px auto 0;
  display: grid;
  gap: 96px;
}
@media (min-width: 768px) {
  .c-services__contents {
    margin: 78px auto 0;
    gap: 138px;
  }
}
.c-services__text {
  text-align: center;
  margin-bottom: 44px;
}
@media (min-width: 768px) {
  .c-services__text {
    margin-bottom: 44px;
  }
}
.c-services__text:last-child {
  margin-bottom: 0;
}
.c-services__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.c-icon__image {
  width: 30px;
  height: 30px;
}

:root {
  --c-black: #2c2417;
  --c-accent: #f35079;
  --c-white: #ffffff;
  --c-gray: #4a4a4a;
  --c-header-bg-scrolled: rgba(255, 255, 255, 0.95);
  --c-header-bg-open: rgba(255, 255, 255, 0.98);
  --c-shadow: rgba(0, 0, 0, 0.06);
  --c-border-light: rgba(255, 255, 255, 0.2);
  --c-border-dark: rgba(44, 36, 23, 0.15);
}