@charset "UTF-8";
html.is-fixed {
  position: fixed;
  width: 100%;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

body {
  padding-top: calc(0px + env(safe-area-inset-top));
}
@media screen and (min-width: 768px) {
  body {
    padding-top: 0px;
  }
}

body {
  color: #1C1C1c;
}

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

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

fieldset,
legend,
button {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=number],
input[type=datetime],
input[type=week],
textarea,
select {
  margin-right: 0;
  margin-left: 0;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  width: 100%;
  height: 100px;
  overflow: auto;
}

select {
  padding-right: 30px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: right 8px center;
}

.select {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.select select {
  width: 100%;
  padding-right: 24px;
  border: 1px solid #ccc;
  background: none;
  text-overflow: "";
  cursor: pointer;
}

.select::before {
  position: absolute;
  top: 13px;
  right: 8px;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666;
  pointer-events: none;
}

/* radio & checkbox */
input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin-left: 8px;
  color: #555;
  font-size: 22.4px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1;
  padding: 0 10px 5px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  input[type=radio] + span,
input[type=checkbox] + span {
    padding: 10px 20px;
  }
}

input[type=radio] + span::before,
input[type=checkbox] + span::before {
  position: absolute;
  top: 30%;
  left: -25px;
  width: 25px;
  height: 25px;
  content: "";
  margin-top: -8px;
  border: 1px solid #ccc;
  background: #fff;
}
@media screen and (min-width: 768px) {
  input[type=radio] + span::before,
input[type=checkbox] + span::before {
    width: 40px;
    height: 40px;
  }
}

/* fieldset */
fieldset {
  padding: 8px 16px;
  border: 1px solid #ccc;
}

legend {
  padding: 0 8px;
}

/* button */
/* ブラウザ対策
---------------------------------------------------------------------------- */
/* Firefox */
/* IE */
select::-ms-expand {
  display: none;
}

/* webkit */
/* iOS */
input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input[type=search]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: textfield;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  font-size: 16px;
}

/* 挙動
---------------------------------------------------------------------------- */
/* hover */
input:hover,
textarea:hover,
select:hover {
  border-color: #666;
}

input[type=radio] + span:hover,
input[type=checkbox] + span:hover {
  color: #000;
}

input[type=radio] + span:hover::before,
input[type=checkbox] + span:hover::before {
  border-color: #000;
}

/* checked */
input[type=radio]:checked + span,
input[type=checkbox]:checked + span {
  color: #008B9C;
}

input[type=radio]:checked + span::before,
input[type=checkbox]:checked + span::before {
  border-color: #008B9C;
}

input[type=radio]:checked + span::after,
input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  top: 46%;
  left: -12px;
  width: 16px;
  height: 16px;
  margin-top: -4px;
  background: #008B9C;
  border-radius: 50%;
}

/* radio */
input[type=radio] + span::before,
input[type=radio] + span:hover::after,
input[type=radio]:checked + span::after {
  border-radius: 50%;
}

/* button */
/* focus */
input:focus,
textarea:focus,
button:focus {
  border-color: #3498db;
}

input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus,
input[type=search]:focus {
  outline-offset: -2px;
}

/* disabled */
input:disabled,
input:disabled:hover,
textarea:disabled,
textarea:disabled:hover {
  border-color: #ccc;
  background: #eee;
  cursor: not-allowed;
}

input[type=radio]:disabled + span,
input[type=checkbox]:disabled + span {
  color: #ccc;
  cursor: not-allowed;
}

input[type=radio]:disabled + span::before,
input[type=checkbox]:disabled + span::before {
  border-color: #ccc;
  cursor: not-allowed;
}

/* バリデーション */
/* placeholder */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2030075188vw;
  }
}
@media (min-width: 1330px) {
  html {
    font-size: 16px;
  }
}

html.is-fixed,
html.is-fixed body {
  height: 100%;
  overflow: hidden;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1;
  margin: 0;
}
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.p-footer__inner {
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  margin-inline: auto;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  padding-block: 50px;
  padding-block: 3.125rem;
  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;
  text-align: center;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding-block: 4.6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
    gap: 0;
  }
}

.p-footer__logo {
  width: 160px;
  width: 10rem;
  margin-inline: auto;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    width: 12.5rem;
    margin-inline: 0;
    margin-bottom: 1.25rem;
  }
}

.p-footer__address {
  line-height: 1.5;
  color: #433619;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__address {
    font-size: 0.875rem;
  }
}

.p-footer__nav {
  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;
  gap: 20px;
  gap: 1.25rem;
  color: #433619;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.875rem;
    padding-top: 1.25rem;
  }
}

.p-footer__right {
  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;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__right {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
    gap: 2.5rem;
  }
}

.p-footer__copyright {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #433619;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    font-size: 0.75rem;
  }
}

.p-header {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  width: 100%;
}

.p-header__inner {
  padding-inline: 20px;
  padding-inline: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 10px;
  padding-block: 0.625rem;
}

.p-header__logo {
  width: 120px;
  width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 23.4375rem;
  }
}

.p-header__menus {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
  }
}

/* ハンバーガーボタン */
.p-header__hamburger {
  background: none;
  border: none;
  cursor: pointer;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  padding: 8px;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger-line {
  display: block;
  width: 24px;
  height: 1px;
  background-color: #433619;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: center;
          transform-origin: center;
}

/* 開いた時に×にする */
.p-header__hamburger[aria-expanded=true] .p-header__hamburger-line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.p-header__hamburger[aria-expanded=true] .p-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.p-header__hamburger[aria-expanded=true] .p-header__hamburger-line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

/* SPドロワー */
.p-header__sp-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 75vw;
  max-width: 320px;
  max-width: 20rem;
  height: 100dvh;
  background-color: #fff;
  z-index: 1000;
  padding: 80px 30px 40px;
  padding: 5rem 1.875rem 2.5rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .p-header__sp-nav {
    display: none !important;
  }
}
.p-header__sp-nav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* オーバーレイ */
.p-header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, .4);
  z-index: 999;
}
.p-header__overlay.is-open {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-header__overlay {
    display: none !important;
  }
}

/* 閉じるボタン */
.p-header__sp-close {
  position: absolute;
  top: 20px;
  top: 1.25rem;
  right: 20px;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  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;
}

.p-header__sp-close-line {
  display: block;
  width: 24px;
  height: 1px;
  background-color: #433619;
}
.p-header__sp-close-line:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(0.5px);
          transform: rotate(45deg) translateY(0.5px);
}
.p-header__sp-close-line:nth-child(2) {
  -webkit-transform: rotate(-45deg) translateY(-0.5px);
          transform: rotate(-45deg) translateY(-0.5px);
}

.p-header__sp-menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-header__sp-menu a {
  font-size: 16px;
  font-size: 1rem;
  color: #433619;
  letter-spacing: 0.1em;
}

.p-breadcrumb-wrap {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 100%;
  max-width: 1280px;
  max-width: 80rem;
  margin-inline: auto;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  gap: 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb {
    gap: 1.25rem;
  }
}

.p-breadcrumb__item:not(:last-child)::after {
  content: "-";
  margin-left: 10px;
  margin-left: 0.625rem;
}

.p-company {
  color: #433619;
}

.p-page-hero {
  width: 100%;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-page-hero img {
  width: 100%;
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-company-history {
  padding-block: 80px;
  padding-block: 5rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company-history {
    padding-block: 7.5rem;
  }
}

.p-company-history__inner {
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  margin-inline: auto;
}

.p-company-history__title {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-company-history__title-ja {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-company-history__title-en {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 300;
}

.p-company-history__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  gap: 3.75rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-company-history__body {
    gap: 6.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-company-history__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-company-history__text {
    width: 60%;
    font-size: 1.125rem;
    line-height: 2;
  }
}

.p-company-history__image {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-company-history__image {
    width: 17.5rem;
  }
}

.p-company-philosophy {
  background-color: #F8F8F8;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-company-philosophy {
    margin-bottom: 6.25rem;
  }
}

.p-company-philosophy__inner {
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  margin-inline: auto;
  padding-block: 60px;
  padding-block: 3.75rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company-philosophy__inner {
    padding-block: 7.5rem;
  }
}

.p-company-philosophy__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 43px;
  padding-bottom: 2.6875rem;
  border-bottom: 1px solid #A29986;
  margin-bottom: 44px;
  margin-bottom: 2.75rem;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-company-philosophy__item {
    gap: 7.5rem;
  }
}

.p-company-philosophy__content {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-company-philosophy__content {
    line-height: 2;
    font-size: 1rem;
  }
}

.p-company-philosophy__keyword {
  width: 60px;
  width: 3.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-company-philosophy__keyword {
    width: 5.3125rem;
  }
}

.p-company-overview {
  border-bottom: 1px solid #A29986;
}

.p-company-overview__inner {
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  margin-inline: auto;
  padding-block: 60px;
  padding-block: 3.75rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company-overview__inner {
    padding-block: 6.25rem;
  }
}

.p-company-overview__table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-company-overview__table {
    margin-bottom: 5rem;
  }
}

.p-company-overview__table tr {
  border-bottom: 1px solid #A29986;
}

.p-company-overview__table th,
.p-company-overview__table td {
  padding-block: 20px;
  padding-block: 1.25rem;
  text-align: left;
  vertical-align: top;
  font-weight: 300;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-company-overview__table th,
.p-company-overview__table td {
    padding-block: 1.875rem;
    font-size: 1rem;
  }
}

.p-company-overview__note {
  border: 1px solid #433619;
  padding-block: 20px;
  padding-block: 1.25rem;
  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;
  text-align: left;
  line-height: 1.6;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company-overview__note {
    font-size: 1rem;
    padding-block: 1.875rem;
    border: 2px solid #433619;
  }
}

.c-section-title {
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
  color: #433619;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    margin-bottom: 3.75rem;
  }
}

.c-section-title__ja {
  font-size: 20px;
  font-size: 1.25rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-section-title__ja {
    padding-bottom: 1rem;
    font-size: 1.75rem;
  }
}

.c-section-title__en {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .c-section-title__en {
    font-size: 1rem;
  }
}

.p-top-fv {
  margin-bottom: 80px;
  margin-bottom: 5rem;
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-fv {
    padding-top: 4.375rem;
    margin-bottom: 160px;
  }
}

.p-top-fv__image {
  position: relative;
}

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

.p-top-fv__catch {
  font-size: 36px;
  font-size: 2.25rem;
  color: #050505;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-top-fv__catch {
    font-size: 3rem;
  }
}

.p-top-about {
  margin-bottom: 80px;
  margin-bottom: 5rem;
  color: #433619;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  scroll-margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-about {
    margin-bottom: 10rem;
    scroll-margin-top: 5rem;
  }
}

.p-top-about__inner {
  width: 100%;
  max-width: 1080px;
  max-width: 67.5rem;
  margin-inline: auto;
}

.p-top-about__title {
  text-align: center;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-top-about__title {
    margin-bottom: 60px;
  }
}

.p-top-about__title-ja {
  font-size: 20px;
  font-size: 1.25rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__title-ja {
    padding-bottom: 16px;
    font-size: 1.75rem;
  }
}

.p-top-about__title-en {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__title-en {
    font-size: 1rem;
  }
}

.p-top-about__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-top-about__text {
    text-align: center;
    line-height: 2;
    font-size: 1.25rem;
  }
}

.p-top-works {
  background-color: #F8F8F8;
}

.p-top-works__inner {
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  margin-inline: auto;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  padding-block: 80px;
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .p-top-works__inner {
    padding-block: 10rem;
  }
}

.p-top-works__group {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-works__group {
    margin-bottom: 8.75rem;
  }
}

.p-top-works__title {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-works__title {
    margin-bottom: 3.75rem;
  }
}

.p-top-works__title-ja {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #433619;
  font-weight: 500;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-works__title-ja {
    margin-bottom: 0.625rem;
    font-size: 1.75rem;
  }
}

.p-top-works__title-en {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 300;
  color: #433619;
}

.p-top-works__list {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-works__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.25rem;
  }
}

.p-top-works__link {
  background-color: #fff;
  width: 300px;
  width: 18.75rem;
  height: 300px;
  height: 18.75rem;
  display: block;
  border-radius: 50%;
  position: relative;
  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;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .1);
          box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-top-works__link {
    width: 22.875rem;
    height: 22.875rem;
  }
}
.p-top-works__link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, .15);
          box-shadow: 0 0 16px rgba(0, 0, 0, .15);
}

.p-top-works__logo {
  overflow: hidden;
  width: 200px;
  width: 12.5rem;
  height: 200px;
  height: 12.5rem;
  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;
}
@media screen and (min-width: 768px) {
  .p-top-works__logo {
    width: 14.5625rem;
    height: 14.5625rem;
  }
}

.p-top-works__item img {
  width: 233px;
  width: 14.5625rem;
}

.p-top-works__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  font-size: 12px;
  font-size: 0.75rem;
  color: #A29986;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-works__name {
    font-size: 0.875rem;
  }
}

.p-top-works__name::after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 8px;
  color: #433619;
  background-color: currentColor;
}
@media screen and (min-width: 768px) {
  .p-top-works__name::after {
    width: 16px;
  }
}
/*# sourceMappingURL=styles.css.map */
