@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  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;
  margin: 0;
  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;
}

/* 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;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  a:hover {
    opacity: 0.8;
  }
}

.inner {
  max-width: 1200px;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.header {
  height: 4.375rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    height: 2.5rem;
  }
}

.header__inner {
  padding: 0 3.125rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 0.9375rem;
    padding-right: 0;
  }
}

.header__logo {
  max-width: 13.75rem;
  font-size: 1.5rem;
  font-family: "Hina Mincho", serif;
  color: #b8860b;
  font-weight: bold;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__logo {
    font-size: 1.125rem;
    max-width: 11.25rem;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: block;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  .header__nav-item a {
    font-size: 0.875rem;
  }
}

.header__nav-item.header__nav-item--contact a {
  padding: 0.625rem 1.25rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #40826d;
}

.header__nav-item.header__nav-item--contact a::after {
  content: "";
  margin-left: 0.625rem;
  width: 0.6875rem;
  height: 0.75rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__hamburger {
  display: none;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: inherit;
  background-color: #40826d;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 5rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(64, 130, 109, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.header__drawer-item.header__drawer-item--contact a::after {
  content: "";
  margin-bottom: 0.3125rem;
  margin-left: 1.25rem;
  width: 0.9375rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mv {
  position: relative;
  height: 100vh;
  min-height: 25rem;
}

.mv__inner {
  height: inherit;
  min-height: inherit;
}

.mv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(50% - min(50vw, 34.375rem));
  transform: translateY(-50%);
  width: initial;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__title-wrap {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

.mv__main-title {
  font-size: 3.75rem;
}
@media screen and (max-width: 767px) {
  .mv__main-title {
    font-size: 2.5rem;
  }
}

.mv__sub-title {
  margin-top: 1.25rem;
  font-size: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .mv__sub-title {
    font-size: 1.25rem;
  }
}

.mv__img,
.mv__img img {
  height: inherit;
  min-height: inherit;
}

.mv__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pt-30 {
  padding-top: 1.875rem;
}

.pt-40 {
  padding-top: 2.5rem;
}

.pt-50 {
  padding-top: 3.125rem;
}

.pt-100 {
  padding-top: 6.25rem;
}

.pb-30 {
  padding-bottom: 1.875rem;
}

.pb-40 {
  padding-bottom: 2.5rem;
}

.pb-50 {
  padding-bottom: 3.125rem;
}

.pb-100 {
  padding-bottom: 6.25rem;
}

.mt-30 {
  margin-top: 1.875rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mt-50 {
  margin-top: 3.125rem;
}

.mb-30 {
  margin-bottom: 1.875rem;
}

.mb-40 {
  margin-bottom: 2.5rem;
}

.mb-50 {
  margin-bottom: 3.125rem;
}

.wt {
  color: #fff;
}

.yl {
  color: #b8860b;
}

.ps {
  background-color: #e1e1d7;
}

.ps p {
  text-align: center;
}

.works__inner {
  margin: auto;
  padding: 0 1.5625rem; /* PC向けのpadding */
  max-width: 75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .works__inner {
    padding: 0 1.25rem; /* SP向けのpadding */
    max-width: 37.5rem;
  }
}

.works-list {
  counter-reset: number;
}

.works-list__item {
  display: flex; /* PC向け: Flexboxに設定 */
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .works-list__item {
    flex-direction: column;
  }
}

.works-list__item + .works-list__item {
  margin-top: 6.25rem; /* PC向け */
}
@media screen and (max-width: 767px) {
  .works-list__item + .works-list__item {
    margin-top: 4.375rem; /* SP向け */
  }
}

.works-list__item:nth-of-type(even) {
  flex-direction: row-reverse; /* PC向け */
}
@media screen and (max-width: 767px) {
  .works-list__item:nth-of-type(even) {
    flex-direction: column;
  }
}

.works-list__item-img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .works-list__item-img {
    max-width: 37.5rem; /* SP向け: 最大幅指定 */
  }
}

@media screen and (max-width: 767px) {
  .works-list__item:nth-of-type(even) .works-list__item-img {
    margin-left: 0rem; /* SP向け: 左マージン指定 */
  }
}

.works-list__item-img img {
  width: 100%;
  aspect-ratio: 590/462;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-list__item-text-wrap {
  margin-top: 0rem; /* PC向け */
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .works-list__item-text-wrap {
    margin-top: 1.25rem; /* SP向け */
    margin-left: 0rem; /* SP向け */
  }
}

.works-list__item:nth-of-type(even) .works-list__item-text-wrap {
  margin-left: 0; /* PC向け */
}
@media screen and (max-width: 767px) {
  .works-list__item:nth-of-type(even) .works-list__item-text-wrap {
    margin-left: 0; /* SP向け */
  }
}

.works-list__item-title {
  font-size: 2.5rem; /* PC向け */
  line-height: 1.3;
  font-family: "Hina Mincho", serif;
}
@media screen and (max-width: 767px) {
  .works-list__item-title {
    font-size: 1.25rem; /* SP向け */
    text-align: center;
  }
}

.works-list__item-text {
  margin-top: 1.75rem; /* PC向け */
  font-size: 1rem; /* PC向け */
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .works-list__item-text {
    margin-top: 1.25rem; /* SP向け */
    font-size: 0.875rem; /* SP向け */
  }
}

.spirit {
  background-image: url(../images/common/spirit-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.spirit p {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .spirit p {
    line-height: 1.5;
  }
}

.service-slick {
  position: relative;
  background-image: url(../images/common/works-bg.png);
  background-position: center;
  background-repeat: repeat-x;
}

.service-slick__wrap {
  margin-bottom: 20px;
}

.service-slick__wrap.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.service-slick__img {
  margin: 0 0.3125rem;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
          clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); /* ダイヤモンド型にクリップ */
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); /* ダイヤモンド型のシャドウ */
}

.service-slick__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-slick .slick-dots li button:before {
  opacity: 1;
  color: #d4e7ed;
}

.service-slick .slick-dots li.slick-active button:before {
  color: #52bcde;
}

.service-slick__arrow-wrap {
  display: flex;
  justify-content: center;
}

.service-slick__arrow {
  margin-top: 3.75rem; /* PC向け */
  position: relative;
  width: 6.25rem; /* PC向け */
  height: 6.25rem; /* PC向け */
  background-color: #fff9ee;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .service-slick__arrow {
    margin-top: 2.5rem; /* SP向け */
    width: 3.75rem; /* SP向け */
    height: 3.75rem; /* SP向け */
  }
}

.service-slick__arrow.service-slick__arrow--next {
  margin-left: 6.25rem; /* PC向け */
}
@media screen and (max-width: 767px) {
  .service-slick__arrow.service-slick__arrow--next {
    margin-left: 3.125rem; /* SP向け */
  }
}

.service-slick__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8125rem; /* PC向け */
  height: 0.8125rem; /* PC向け */
  border-top: 0.1875rem solid #333;
  border-right: 0.1875rem solid #333;
}
@media screen and (max-width: 767px) {
  .service-slick__arrow::before {
    width: 0.625rem; /* SP向け */
    height: 0.625rem; /* SP向け */
  }
}

.service-slick__arrow.service-slick__arrow--prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.service-slick__arrow.service-slick__arrow--next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.advantage {
  background-color: #e1e1d7;
}

.message {
  background-image: url(../images/common/message-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.message-wrap {
  border: 3px solid #a9a9a9; /* 2pxの幅でグレーの枠線を付ける */
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.tar {
  text-align: right;
}

.company {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .company {
    padding-bottom: 50px;
  }
}

.wt-50p {
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .wt-50p {
    max-width: 100%;
  }
}

.works-list-company {
  gap: 30px;
}

@media screen and (max-width: 767px) {
  dl {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 40px;
  }
}

dt,
dd {
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: top; /* 高さを揃える */
}

dt {
  width: 30%; /* dt の幅を調整 */
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  dt {
    font-size: 1rem;
  }
}

dd {
  width: 80%; /* dt の幅を調整 */
  margin-left: 10px; /* dd と dt の間に隙間を作る */
}
@media screen and (max-width: 767px) {
  dd {
    font-size: 0.875rem;
  }
}

.works-list__item.works-list-company {
  margin-top: 0rem; /* PC向け */
}

.contact {
  padding: 7.5rem 0 6.25rem; /* PC向けのpadding */
  position: relative;
  background-image: url(./../images/common/contact.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 5rem 0 5rem; /* SP向けのpadding */
  }
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.contact__inner {
  margin: auto;
  padding: 0 1.5625rem; /* PC向けのpadding */
  max-width: 75rem; /* PC向けの最大幅 */
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    padding: 0 1.25rem; /* SP向けのpadding */
    max-width: 37.5rem; /* SP向けの最大幅 */
  }
}

.contact__title {
  padding-bottom: 1.5625rem; /* PC向けのpadding */
  position: relative;
  font-size: 3.75rem; /* PC向けのフォントサイズ */
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .contact__title {
    padding-bottom: 1.25rem; /* SP向けのpadding */
    font-size: 2.5rem; /* SP向けのフォントサイズ */
  }
}

.contact__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.125rem; /* PC向けのライン幅 */
  height: 1px;
  background: #de8430;
}
@media screen and (max-width: 767px) {
  .contact__title::before {
    width: 2.5rem; /* SP向けのライン幅 */
  }
}

.contact__title span {
  margin-top: 0.625rem;
  display: block;
  font-size: 1.25rem; /* PC向けのフォントサイズ */
}
@media screen and (max-width: 767px) {
  .contact__title span {
    padding-bottom: 0.75rem; /* SP向けのpadding */
    font-size: 0.75rem; /* SP向けのフォントサイズ */
  }
}

.contact__text {
  margin-top: 3.125rem;
  position: relative;
  font-size: 1.125rem; /* PC向けのフォントサイズ */
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 1rem; /* SP向けのフォントサイズ */
  }
}

.contact__btn-wrap {
  margin-top: 1.875rem;
  position: relative;
  text-align: center;
}

.contact__btn {
  padding: 0.875rem 3.75rem;
  display: inline-block;
  font-size: 0.9375rem; /* PC向けのフォントサイズ */
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #000;
  background-color: #fff;
  transition: 0.3s;
}

.access {
  display: flex; /* PC向け: flexレイアウト */
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .access {
    flex-direction: column;
  }
}

.access__info {
  text-align: left; /* PC向け: 左揃え */
  padding-left: 1.25rem;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .access__info {
    text-align: center; /* SP向け: 中央揃え */
    padding-left: 0rem;
    width: 100%;
  }
}

.access__address {
  font-size: 1rem; /* PC向け */
  font-style: normal;
  line-height: 1.5;
}

.access__btn-wrap {
  margin-top: 0.9375rem; /* PC向け */
}

.access__btn {
  padding: 0.5rem 0.9375rem; /* PC向け */
  display: inline-block;
  font-size: 0.9375rem; /* PC向け */
  line-height: 1;
  color: #fff;
  background-color: #de8430;
  text-transform: uppercase;
}

.access__map-wrap {
  margin-top: 0rem; /* PC向け */
  margin-left: 3.75rem; /* SP向け */
  max-width: 39.375rem; /* SP向け */
  width: 50%;
}
@media screen and (max-width: 767px) {
  .access__map-wrap {
    margin-top: 30px; /* SP向け */
    margin-left: 0rem; /* SP向け */
    width: 100%;
  }
}

.access__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 47.5%;
}

.access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.history {
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .history {
    margin-left: 0;
    padding: 0 1.25rem;
    max-width: 37.5rem;
  }
}

@media screen and (max-width: 767px) {
  .history .history__list {
    max-width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .history dt {
    width: 45%;
  }
}

@media screen and (max-width: 767px) {
  .history dd {
    width: 100%;
  }
}

.title {
  padding-bottom: 1.5625rem;
  position: relative;
  font-size: 3.75rem;
  line-height: 1;
  text-align: center;
  font-family: "Dancing Script", cursive;
}
@media screen and (max-width: 767px) {
  .title {
    padding-bottom: 1.25rem;
    font-size: 2.5rem;
  }
}

.title.title--left {
  text-align: left;
}

.title.title--right {
  text-align: right;
}

.title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.125rem;
  height: 1px;
  background: #b8860b;
}
@media screen and (max-width: 767px) {
  .title::before {
    width: 2.5rem;
  }
}

.title.title--left::before {
  left: 0;
  transform: initial;
}

.title.title--right::before {
  right: 0;
  left: initial;
  transform: initial;
}

.title span {
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
  display: block;
  font-size: 1.25rem;
  color: #40826d;
}
@media screen and (max-width: 767px) {
  .title span {
    padding-bottom: 0;
    margin-top: 0.625rem;
    font-size: 0.75rem;
  }
}

.title .yl {
  color: #f1bd3e;
}

.footer {
  padding: 2.8125rem 0; /* PC向け: padding */
  background-color: #f5f6f7;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 1.875rem 0 1.25rem; /* SP向け: padding */
  }
}

.footer__inner {
  margin: auto;
  padding: 0 1.5625rem; /* PC向け: padding */
  max-width: 78.125rem; /* PC向け: max-width */
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 0 0.9375rem; /* SP向け: padding */
    max-width: 39.375rem; /* SP向け: max-width */
  }
}

.footer__wrap {
  display: flex; /* PC向け: 横並び */
  justify-content: space-between; /* PC向け: 横並びの空間を均等に */
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    display: block; /* SP向け: 縦並び */
  }
}

.footer__logo {
  margin: auto;
  max-width: 13.75rem; /* PC向け: logoサイズ */
  width: 100%;
  max-width: 13.75rem;
  font-size: 1.5rem;
  font-family: "Hina Mincho", serif;
  color: #b8860b;
  font-weight: bold;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin: initial; /* SP向け: 初期化 */
    margin: 0 auto;
    max-width: 15rem; /* SP向け: logoサイズ */
  }
}

.footer__logo a {
  padding: 0.9375rem 0; /* PC向け: padding */
  display: block;
}
@media screen and (max-width: 767px) {
  .footer__logo a {
    padding: 0.625rem 0; /* SP向け: padding */
  }
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__nav-items {
  display: flex; /* PC向け: 横並び */
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__nav-items {
    display: block; /* SP向け: 縦並び */
  }
}

.footer__nav-item a {
  padding: 0.9375rem; /* PC向け: padding */
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__nav-item a {
    padding: 0.75rem 0; /* SP向け: padding */
  }
}

.footer__copyright {
  margin-top: 3.125rem; /* PC向け: margin-top */
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 0.625rem; /* SP向け: margin-top */
  }
}

.footer__copyright span {
  text-transform: uppercase;
}
/*# sourceMappingURL=style.css.map */