@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", "Sawarabi Gothic", sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
a a:hover {
  cursor: pointer;
  opacity: 0.5;
}

p {
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 640px) {
  p {
    font-size: 15px;
    line-height: 1.8;
  }
}
img {
  display: block;
  width: 100%;
  height: auto;
}

ul,
ol,
li {
  list-style: none;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  line-height: 1.8;
}

th,
td {
  font-size: 16px;
}
@media (max-width: 640px) {
  th th,
  th td,
  td th,
  td td {
    font-size: 15px;
    line-height: 1.8;
  }
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

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

.flex {
  display: flex;
}

.wsnr {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .pd-1 {
    padding: 0 1em;
  }
}
/* === デバイス別ミックスイン === */
/*　iPad　*/
/*　iPad Air 縦　820px*/
/*　iPad Pro　*/
/*　Galaxy Fold　*/
/* === デバイス別表示用クラス === */
.sp-only,
.tb-only,
.pc-only {
  display: none;
}

@media (max-width: 620px) {
  .sp-only {
    display: block;
  }
  .tb-only,
  .pc-only {
    display: none;
  }
}
@media (min-width: 621px) and (max-width: 1023px) {
  .tb-only {
    display: block;
  }
  .sp-only,
  .pc-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  .pc-only {
    display: block;
  }
  .sp-only,
  .tb-only {
    display: none;
  }
}
body #to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #333;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
body #to-top::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #fff;
}
body #to-top::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 10px;
  background-color: #fff;
}
body #to-top.show {
  opacity: 1;
  pointer-events: auto;
}
body #to-top:hover {
  background: #555;
  transform: translateY(-4px);
}

/* アニメーション----------- */
/* ホバーで拡大する共通クラス */
.hover-scale {
  display: inline-block;
  /* 必要に応じて調整 */
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
  /* 少し拡大 */
}

/* 共通スクロールアニメーション */
/* 左からイン */
.left-in {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

/* 右からイン */
.right-in {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

/* 下からイン */
.up-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

/* 表示時 */
.left-in.show,
.right-in.show,
.up-in.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ベース */
table.table {
  width: 100%;
  text-align: left;
  border-spacing: 10px;
  background-color: #fff;
}
table.table th {
  padding: 1em 0 1em 4em;
  border: 1px #727171 dotted;
  border-width: 1px 0;
  line-height: 1.8;
  text-align: center;
  vertical-align: top;
  font-size: 16px;
  font-weight: normal;
  width: 35%;
}
table.table th a {
  text-decoration: none;
  color: #333;
}
table.table td {
  padding: 1em 0;
  border: 1px #727171 dotted;
  border-width: 1px 0;
  line-height: 1.8;
  text-align: left;
  vertical-align: middle;
  background-color: #fff;
  word-break: break-all;
  font-size: 16px;
}

/* ----------------------
   データ用
---------------------- */
.table--data th {
  background-color: #333;
  color: #fff;
}
@media (max-width: 768px) {
  .table--data {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* ----------------------
   フォーム用
---------------------- */
.table--form th {
  text-align: right;
  vertical-align: middle;
  background-color: #f9f9f9;
}
.table--form td {
  background-color: #fff;
}
.table--form input,
.table--form textarea,
.table--form select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid #727171;
  border-radius: 4px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .table--form th,
  .table--form td {
    display: block;
    width: 100%;
    text-align: left;
  }
  .table--form th {
    margin-top: 10px;
    background: none;
  }
}

html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

main {
  padding: 0;
}
main section {
  margin: 0;
}

/* PCでは電話リンクを無効にする */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.section-ttl {
  text-align: center;
}
.section-ttl h3 {
  font-family: "Roboto", sans-serif;
  color: #c7d0da;
  font-size: 70px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin: 0;
}
@media (max-width: 430px) {
  .section-ttl h3 {
    font-size: 30px;
  }
}
.section-ttl h3::first-letter {
  color: #8fa0b5;
  font-size: 100px;
  font-weight: 600;
  line-height: 0.9;
  vertical-align: bottom;
}
@media (max-width: 430px) {
  .section-ttl h3::first-letter {
    font-size: 55px;
  }
}
.section-ttl p {
  font-size: 36px;
  text-align: left;
  color: #333;
  font-weight: bold;
  margin: 10px 0 0;
  line-height: 1.4;
}
@media (max-width: 430px) {
  .section-ttl p {
    font-size: 20px;
  }
}
.section-ttl.pages h3 {
  font-size: 45px;
}
@media (max-width: 430px) {
  .section-ttl.pages h3 {
    font-size: 32px;
  }
}

.box-ttl {
  font-size: 36px;
}
@media (max-width: 430px) {
  .box-ttl {
    font-size: 24px;
  }
}
.box-ttl.lg {
  font-size: 45px;
}
@media (max-width: 430px) {
  .box-ttl.lg {
    font-size: 32px;
  }
}

.btn-box {
  margin-top: 100px;
}
@media (max-width: 640px) {
  .btn-box {
    margin-top: 60px;
  }
}
.btn-box img {
  width: 50%;
  margin-left: auto;
}
.btn-box--c {
  text-align: center;
}
.btn-box--l {
  text-align: left;
}
.btn-box--r {
  text-align: right;
}
@media (max-width: 640px) {
  .btn-box {
    text-align: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  line-height: 1;
  transition: 0.3s;
}
.btn:hover {
  opacity: 0.85;
}
.btn:active {
  transform: translateY(1px);
}
.btn--large {
  padding: 30px 40px;
  font-size: 1.5rem;
}
.btn--small {
  padding: 10px 25px;
  font-size: 0.9rem;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn--radius {
  border-radius: 9999px;
}
.btn--shadow {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.arrow {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
}
.arrow--chevron {
  width: 12px;
  height: 12px;
}
.arrow--chevron::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.arrow--line {
  width: 18px;
  height: 10px;
}
.arrow--line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}
.arrow--line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.arrow--line-left {
  width: 18px;
  height: 10px;
}
.arrow--line-left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}
.arrow--line-left::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.arrow-move:hover .arrow {
  transform: translateX(5px);
}

.arrow-box {
  width: 35px;
  height: 35px;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow {
  transition: transform 0.3s ease;
}

.arrow-box:hover .arrow {
  transform: translateX(5px);
}

.btn-contact {
  background: #ffd446;
  color: #000;
}
.btn-contact:hover {
  color: #ffd446;
  background: #000;
}

.btn-more {
  font-size: 22px;
  text-align: right;
  padding: 30px 20px;
  font-size: 20px;
  width: 350px;
}
@media (max-width: 430px) {
  .btn-more {
    width: 90%;
    text-align: center;
    padding: 20px;
    display: block;
    margin: 0 auto;
  }
}

.btn-entry {
  background: #dc3545;
  color: #fff;
}

.single {
  padding: 80px 20px;
  background-color: #fafafa;
}
.single .inner-800 {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
@media (max-width: 430px) {
  .single .inner-800 {
    padding: 20px;
  }
}
.single .single-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  border-bottom: 2px solid #0078d7;
  padding-bottom: 10px;
}
@media (max-width: 430px) {
  .single .single-title {
    font-size: 16px;
  }
}
.single .single-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 8px;
}
.single .single-category {
  margin-bottom: 20px;
}
.single .single-category a {
  display: inline-block;
  background-color: #0078d7;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}
.single .single-category a:hover {
  background-color: #005fa3;
}
.single .single-thumb {
  margin-bottom: 30px;
}
.single .single-thumb img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.single .single-content {
  font-size: 1rem;
  line-height: 1.9;
  r: #333;
}
.single .single-content h2,
.single .single-content h3 {
  margin-top: 2em;
  font-weight: bold;
  color: #0078d7;
}
.single .single-content p {
  margin-bottom: 1.5em;
}
.single .single-content a {
  color: #0078d7;
  text-decoration: underline;
}
.single .single-content a:hover {
  color: #005fa3;
}
.single .post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  font-size: 0.9rem;
}
.single .post-navigation a {
  color: #0078d7;
  text-decoration: none;
}
.single .post-navigation a:hover {
  text-decoration: underline;
}
.single .back-link {
  margin-top: 40px;
  text-align: center;
}
.single .back-link a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #0078d7;
  color: #0078d7;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.single .back-link a:hover {
  background-color: #0078d7;
  color: #fff;
}

.news-archive {
  background-color: #fafafa;
  padding: 80px 20px;
}
.news-archive .inner-1000 {
  max-width: 1000px;
  margin: 0 auto;
}
.news-archive .section-ttl {
  text-align: center;
  margin-bottom: 50px;
}
.news-archive .section-ttl h3 {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0078d7;
  margin-bottom: 8px;
}
.news-archive .section-ttl p {
  font-size: 0.95rem;
  color: #555;
  letter-spacing: 0.05em;
}
.news-archive .news-list {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 20px 30px;
}
.news-archive .news-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  font-size: 1rem;
  transition: 0.2s;
}
.news-archive .news-list li:last-child {
  border-bottom: none;
}
.news-archive .news-list li:hover {
  transform: translateX(3px);
  background-color: #f9fcff;
}
.news-archive .news-list li .date {
  font-size: 0.9rem;
  color: #999;
  flex-shrink: 0;
  margin-right: 20px;
  width: 100px;
}
.news-archive .news-list li a {
  flex-grow: 1;
  color: #222;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-archive .news-list li a:hover {
  color: #0078d7;
}
.news-archive .news-list li a .arrow {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #0078d7;
  border-right: 2px solid #0078d7;
  transform: rotate(45deg);
  margin-left: 10px;
}
.news-archive .pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.news-archive .pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #0078d7;
  border-radius: 4px;
  text-decoration: none;
  color: #0078d7;
  font-size: 0.9rem;
  transition: 0.3s;
}
.news-archive .pagination .page-numbers:hover {
  background-color: #0078d7;
  color: #fff;
}
.news-archive .pagination .page-numbers.current {
  background-color: #0078d7;
  color: #fff;
  pointer-events: none;
}

@media (max-width: 768px) {
  .news-archive {
    padding: 50px 15px;
  }
  .news-archive .news-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-archive .news-list li .date {
    margin-bottom: 5px;
  }
  .news-archive .news-list li a {
    justify-content: flex-start;
  }
  .news-archive .news-list li a .arrow {
    display: none;
  }
}
.error-404 {
  text-align: center;
  padding: 100px 20px;
}
.error-404 .page-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  r: #333;
}
.error-404 p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}
.error-404 .error-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.error-404 .error-btns .btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
.error-404 .error-btns .btn:hover {
  opacity: 0.8;
}
@media (max-width: 430px) {
  .error-404 .page-title {
    font-size: 22px;
  }
}

.grecaptcha-badge iframe {
  margin-top: 0;
}

.pages-contents p {
  letter-spacing: -0.05em;
}

.inner-1200 {
  width: min(80vw, 1200px);
  margin-inline: auto;
}
@media (max-width: 920px) {
  .inner-1200 {
    width: 100%;
    padding-inline: 3em;
  }
}
@media (max-width: 640px) {
  .inner-1200 {
    padding-inline: 1em;
  }
}

.inner-1100 {
  width: min(57.29vw, 1100px);
  margin-inline: auto;
}

.inner-1000 {
  width: min(52.08vw, 1000px);
  margin-inline: auto;
}

.inner-800 {
  width: min(41.67vw, 800px);
  margin-inline: auto;
}

.inner-700 {
  width: min(36.45vw, 700px);
  margin-inline: auto;
}

.inner-600 {
  width: min(31.25vw, 600px);
  margin-inline: auto;
}

.inner-600-nm {
  width: min(31.25vw, 600px);
}

.w-100 {
  width: 100% !important;
  max-width: 100% !important;
  margin-inline: auto;
}

.w-95 {
  width: 95% !important;
  max-width: 95% !important;
  margin-inline: auto;
}

@media (max-width: 768.98px) {
  .w-95 {
    width: 95% !important;
    max-width: 95% !important;
    margin-inline: auto;
  }
}
.w-90 {
  width: 90% !important;
  max-width: 90% !important;
  margin-inline: auto;
}

.w-85 {
  width: 85% !important;
  max-width: 85% !important;
  margin-inline: auto;
}
@media (max-width: 920px) {
  .w-85 {
    width: 100% !important;
  }
}

.w-80 {
  width: 80% !important;
  max-width: 80% !important;
  margin-inline: auto;
}
@media (max-width: 920px) {
  .w-80 {
    width: 95% !important;
    max-width: 100% !important;
    margin-inline: auto;
  }
}

.w-50 {
  width: 50% !important;
  max-width: 50% !important;
  margin-inline: auto;
}

@keyframes textOutlineAnime {}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 20px;
  transition: background-color 0.1s ease;
  background-color: #fff;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}
@media (max-width: 640px) {
  header {
    padding: 0;
  }
}
header.scrolled {
  background-color: rgb(255, 255, 255);
}
header .container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}
header .logo {
  width: 30%;
}
@media (max-width: 1025px) {
  header .logo {
    padding-left: 10px;
  }
}
@media (max-width: 640px) {
  header .logo {
    width: 70%;
  }
}
header .logo a {
  display: block;
}
header .logo img {
  width: 100%;
  max-width: 350px;
  height: auto;
}

#menubar {
  width: 70%;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1025px) {
  #menubar {
    padding: 0;
  }
}
#menubar ul {
  display: flex;
}
#menubar ul li a {
  position: relative;
  display: block;
  padding: 10px 0;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  margin: 0 20px;
}
#menubar ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background-color: #ffd446;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
#menubar ul li a.is-active::after {
  transform: scaleX(1);
}

.header-contact {
  margin-left: 20px;
}
@media (max-width: 920px) {
  .header-contact {
    display: none;
  }
}
.header-contact a {
  position: relative;
  height: 80px;
}
.header-contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header-contact.is-active::after {
  transform: scaleX(1);
}

.wsnr {
  white-space: nowrap;
}

.hamburger {
  display: none;
}

@media (max-width: 920px) {
  #menubar {
    display: none;
  }
}
@media (max-width: 920px) {
  .hamburger {
    display: flex;
    position: relative;
  }
  .hamburger .menu-icon {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: -12px;
    right: 20px;
  }
  .hamburger .menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    margin: 4px 0;
    transition: all 0.3s;
    transform-origin: center;
  }
  .hamburger input[type=checkbox]:checked + .menu-icon span:nth-child(1) {
    transform: translateY(14px) rotate(45deg);
  }
  .hamburger input[type=checkbox]:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  .hamburger input[type=checkbox]:checked + .menu-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hamburger .sp-menu {
    position: fixed;
    top: 80px;
    right: 0px;
    width: 200px;
    background-color: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    z-index: 999;
  }
  .hamburger .sp-menu ul {
    list-style: none;
  }
  .hamburger .sp-menu ul li {
    border-bottom: 1px solid #fff;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .hamburger .sp-menu ul li a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
  }
  .hamburger .sp-menu ul li a:hover {
    opacity: 0.8;
  }
  .hamburger input[type=checkbox]:checked ~ .sp-menu {
    max-height: 500px;
  }
  .hamburger input[type=checkbox]:checked ~ .sp-menu li {
    opacity: 1;
    transform: translateY(0);
  }
  .hamburger input[type=checkbox] {
    display: none;
  }
}
.footer {
  position: relative;
  background: #000;
  color: #fff;
  padding: 100px 0;
}
@media (max-width: 640px) {
  .footer {
    padding: 100px 0 20px;
  }
}
.footer__inner {
  width: 600px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
  gap: 25px;
}
@media (max-width: 640px) {
  .footer__inner {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
}
.footer__info {
  width: 35%;
}
@media (max-width: 640px) {
  .footer__info {
    width: 100%;
    text-align: center;
  }
}
.footer__logo {
  width: 250px;
  margin-bottom: 30px;
}
@media (max-width: 640px) {
  .footer__logo {
    margin-inline: auto;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .footer__logo img {
    width: 220px;
  }
}
.footer__address {
  line-height: 1.8;
  margin-top: 40px;
  font-size: 14px;
}
@media (max-width: 640px) {
  .footer__address {
    font-size: 14px;
  }
}
.footer__tel {
  margin-top: 40px;
}
@media (max-width: 640px) {
  .footer__tel {
    margin-top: 15px;
  }
}
.footer__decoration {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 50px;
}
@media (max-width: 640px) {
  .footer__decoration {
    flex-direction: row;
    margin-left: 0;
    gap: 15px;
  }
}
.footer__line {
  width: 1px;
  height: 400px;
  background: #fff;
}
@media (max-width: 640px) {
  .footer__line {
    width: 180px;
    height: 1px;
  }
}
.footer__star {
  font-size: 14px;
  width: 20px;
}
.footer__link {
  margin-top: 5px;
}
.footer__link a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .footer__link {
    width: 100%;
    text-align: center;
  }
}
.footer__sns {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 640px) {
  .footer__sns {
    justify-content: center;
    gap: 60px;
  }
}
.footer__sns-link {
  width: 35px;
}
.footer__sns-link img {
  width: 100%;
  height: auto;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-top: 60px;
}
@media (max-width: 640px) {
  .footer__links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    text-align: center;
  }
}
.footer__links li {
  padding: 5px 0;
}
.footer__copyright {
  width: min(62.5vw, 1200px);
  padding-top: 60px;
  margin-inline: auto;
}
@media (min-width: 913px) and (max-width: 1024px) {
  .footer__copyright {
    width: 800px;
  }
}
@media (max-width: 920px) {
  .footer__copyright {
    width: 95%;
    padding: 0 2em;
  }
}
@media (max-width: 640px) {
  .footer__copyright {
    margin-top: 60px;
  }
}
.footer__copyright--in {
  font-size: 12px;
  text-align: right;
  margin-top: 50px;
}
@media (max-width: 640px) {
  .footer__copyright--in {
    text-align: center;
  }
}
.footer__top {
  position: absolute;
  top: 0;
  right: 10vw;
}
@media (min-width: 1536px) {
  .footer__top {
    right: 11vw;
  }
}
@media (min-width: 1600px) {
  .footer__top {
    right: 13vw;
  }
}
@media (min-width: 1920px) {
  .footer__top {
    right: 18vw;
  }
}
@media (min-width: 913px) and (max-width: 1024px) {
  .footer__top {
    right: 10vw;
  }
}
@media (max-width: 920px) {
  .footer__top {
    right: 5vw;
  }
}
.footer__top-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: #fff;
}
@media (max-width: 640px) {
  .footer__top-btn {
    width: 55px;
    height: 55px;
  }
}

.mv {
  position: relative;
  width: 100%;
  /* .mv-wrap {
    height: min(60vw, 800px);
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
   */
}
.mv .mv-wrap {
  position: relative;
  width: 100%;
}
@media (max-width: 640px) {
  .mv .mv-wrap {
    margin-top: 5.2rem;
  }
}
.mv .mv-wrap img {
  width: 100%;
  display: block;
  margin-top: 3rem;
}
@media (max-width: 640px) {
  .mv .mv-wrap img {
    margin-top: 3.2rem;
  }
}
.mv .mv-wrap h2 {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 15.625vw;
  transform: translate(-50%, calc(-50% + 80px));
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}
.mv .mv-wrap h2.is-animated {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.mv .mv-wrap h2 img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-section .unit {
  position: relative;
}
.photo-section .unit .deco-1 {
  position: absolute;
  width: 12vw;
  z-index: 1;
  top: -90px;
  left: 100px;
}
@media (max-width: 920px) {
  .photo-section .unit .deco-1 {
    top: -46px;
    left: 25px;
  }
}
@media (max-width: 640px) {
  .photo-section .unit .deco-1 {
    width: 17vw;
    top: -20px;
    left: 10px;
  }
}
.photo-section .unit .back-1 {
  position: relative;
  transform: rotate(-2deg);
  margin-top: 60px;
}
@media (max-width: 640px) {
  .photo-section .unit .back-1 {
    margin-top: 20px;
  }
}
.photo-section .unit .deco-2 {
  position: absolute;
  width: 12vw;
  right: -10px;
  top: -110px;
  z-index: 1;
}
@media (max-width: 920px) {
  .photo-section .unit .deco-2 {
    top: -55px;
  }
}
@media (max-width: 640px) {
  .photo-section .unit .deco-2 {
    width: 17vw;
    top: -32px;
  }
}
.photo-section .unit .back-2 {
  position: relative;
  transform: rotate(2deg);
  margin-top: 60px;
}
@media (max-width: 640px) {
  .photo-section .unit .back-2 {
    top: -20px;
  }
}
.photo-section .unit .deco-3 {
  width: 8vw;
  position: absolute;
  left: -40px;
}
@media (max-width: 640px) {
  .photo-section .unit .deco-3 {
    width: 13vw;
    left: -6px;
  }
}

.ttl-1 {
  width: 35%;
  margin-bottom: 60px;
}
@media (max-width: 640px) {
  .ttl-1 {
    width: 60%;
    margin-bottom: 15px;
  }
}

.deco-1 img,
.deco-2 img {
  animation: sun-rotate 30s linear infinite;
}

@keyframes sun-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.deco-3 img {
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}
.about-section {
  margin-top: 170px;
}
@media (max-width: 640px) {
  .about-section {
    margin-top: 40px;
  }
}

.business-section {
  background-color: #f2f2f2;
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 640px) {
  .business-section {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.business-section .unit {
  position: relative;
}
@media (max-width: 640px) {
  .business-section .unit {
    display: flex;
    flex-direction: row-reverse;
  }
}
.business-section .unit img {
  width: 80%;
  margin-left: auto;
}
@media (max-width: 640px) {
  .business-section .unit img {
    width: 50%;
  }
}
.business-section .txt {
  position: absolute;
  top: 180px;
  left: 0;
  font-size: 1rem;
  font-weight: bold;
  line-height: 2;
}
@media (max-width: 640px) {
  .business-section .txt {
    top: 10px;
    width: 50%;
    font-size: 15px;
    line-height: 1;
  }
}

.work-section {
  margin-top: 100px;
}
@media (max-width: 640px) {
  .work-section {
    margin-top: 40px;
  }
}
.work-section .unit .txt {
  margin-top: 40px;
}
.work-section .unit .txt h3 {
  font-size: 1.3rem;
}
.work-section .unit .txt p {
  width: 600px;
  font-size: 15px;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .work-section .unit .txt p {
    width: 100%;
    margin-top: 20px;
  }
}

.news-section {
  background-color: #fff2c7;
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 640px) {
  .news-section {
    padding: 60px 0;
  }
}
.news-section .news-list {
  width: 100%;
}
.news-section .news-list__item {
  border-bottom: 1px solid #000;
}
.news-section .news-list__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 10px;
  color: #000;
  transition: 0.3s;
}
@media (max-width: 640px) {
  .news-section .news-list__link {
    display: block;
  }
}
.news-section .news-list__link:hover {
  opacity: 0.7;
}
.news-section .news-list__link:hover .news-list__arrow {
  transform: translateX(5px);
}
.news-section .news-list__date {
  width: 100px;
  font-size: 16px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .news-section .news-list__date {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 6px;
  }
}
.news-section .news-list__cat {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 90px;
  padding: 5px 15px;
  border-radius: 20px;
  background: #ffd446;
  color: #000;
  font-size: 13px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .news-section .news-list__cat {
    display: inline-flex;
    vertical-align: middle;
  }
}
.news-section .news-list__ttl {
  font-size: 22px;
  flex: 1;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .news-section .news-list__ttl {
    margin-top: 8px;
    font-size: 15px;
  }
}
.news-section .news-list__arrow-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .news-section .news-list__arrow-box {
    float: right;
    margin-top: -35px;
  }
}

#notfound {
  padding-bottom: 120px;
}

.notfound {
  padding: 100px 0;
  text-align: center;
}
.notfound__title {
  font-size: 2rem;
  margin-bottom: 25px;
}
.notfound__text {
  color: #666;
  line-height: 2;
  margin-bottom: 60px;
}
.notfound__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .notfound__buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* 施工実績投稿・お知らせ投稿のkv */
#works-detail .kv-wrap,
#news-detail .kv-wrap {
  position: relative;
  background: #f2f2f2;
  height: 250px;
  margin-top: 3rem;
}
@media (max-width: 640px) {
  #works-detail .kv-wrap,
  #news-detail .kv-wrap {
    height: 200px;
    margin-top: 2rem;
  }
}
#works-detail .kv-wrap img,
#news-detail .kv-wrap img {
  width: 100%;
  display: block;
  margin-top: 5.3rem;
}
@media (max-width: 400px) {
  #works-detail .kv-wrap img,
  #news-detail .kv-wrap img {
    margin-top: 6rem;
  }
}
#works-detail .kv-wrap .page-ttl,
#news-detail .kv-wrap .page-ttl {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30px);
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
#works-detail .kv-wrap .page-ttl.is-animated,
#news-detail .kv-wrap .page-ttl.is-animated {
  transform: translate(-50%, -50%);
  opacity: 1;
}
#works-detail .kv-wrap .page-ttl h3,
#news-detail .kv-wrap .page-ttl h3 {
  display: inline-block;
  color: #fff;
  background: #000;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding: 10px 40px;
  margin: 0;
}
@media (max-width: 640px) {
  #works-detail .kv-wrap .page-ttl h3,
  #news-detail .kv-wrap .page-ttl h3 {
    font-size: 20px;
  }
}
#works-detail .kv-wrap .page-ttl p,
#news-detail .kv-wrap .page-ttl p {
  font-size: 36px;
  color: #333;
  font-weight: bold;
  margin: 20px 0 0;
  line-height: 1.6;
}
@media (max-width: 640px) {
  #works-detail .kv-wrap .page-ttl p,
  #news-detail .kv-wrap .page-ttl p {
    font-size: 18px;
  }
}

/* 施工実績アーカイブ・お知らせアーカイブ・お問い合わせのkv */
#business .kv-wrap,
#company .kv-wrap,
#works .kv-wrap,
#news .kv-wrap,
#contact .kv-wrap,
#contact-confirm .kv-wrap,
#contact-thanks .kv-wrap,
#privacy-policy .kv-wrap,
#sitemap .kv-wrap {
  position: relative;
  background: #fff2c7;
  height: 250px;
  margin-top: 3rem;
}
@media (max-width: 640px) {
  #business .kv-wrap,
  #company .kv-wrap,
  #works .kv-wrap,
  #news .kv-wrap,
  #contact .kv-wrap,
  #contact-confirm .kv-wrap,
  #contact-thanks .kv-wrap,
  #privacy-policy .kv-wrap,
  #sitemap .kv-wrap {
    height: 120px;
    margin-top: 5rem;
  }
}
#business .kv-wrap img,
#company .kv-wrap img,
#works .kv-wrap img,
#news .kv-wrap img,
#contact .kv-wrap img,
#contact-confirm .kv-wrap img,
#contact-thanks .kv-wrap img,
#privacy-policy .kv-wrap img,
#sitemap .kv-wrap img {
  width: 250px;
  display: block;
}
@media (max-width: 640px) {
  #business .kv-wrap img,
  #company .kv-wrap img,
  #works .kv-wrap img,
  #news .kv-wrap img,
  #contact .kv-wrap img,
  #contact-confirm .kv-wrap img,
  #contact-thanks .kv-wrap img,
  #privacy-policy .kv-wrap img,
  #sitemap .kv-wrap img {
    width: 180px;
  }
}
#business .kv-wrap .page-ttl,
#company .kv-wrap .page-ttl,
#works .kv-wrap .page-ttl,
#news .kv-wrap .page-ttl,
#contact .kv-wrap .page-ttl,
#contact-confirm .kv-wrap .page-ttl,
#contact-thanks .kv-wrap .page-ttl,
#privacy-policy .kv-wrap .page-ttl,
#sitemap .kv-wrap .page-ttl {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30px);
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
#business .kv-wrap .page-ttl.is-animated,
#company .kv-wrap .page-ttl.is-animated,
#works .kv-wrap .page-ttl.is-animated,
#news .kv-wrap .page-ttl.is-animated,
#contact .kv-wrap .page-ttl.is-animated,
#contact-confirm .kv-wrap .page-ttl.is-animated,
#contact-thanks .kv-wrap .page-ttl.is-animated,
#privacy-policy .kv-wrap .page-ttl.is-animated,
#sitemap .kv-wrap .page-ttl.is-animated {
  transform: translate(-50%, -50%);
  opacity: 1;
}
#business .kv-wrap .page-ttl h3,
#company .kv-wrap .page-ttl h3,
#works .kv-wrap .page-ttl h3,
#news .kv-wrap .page-ttl h3,
#contact .kv-wrap .page-ttl h3,
#contact-confirm .kv-wrap .page-ttl h3,
#contact-thanks .kv-wrap .page-ttl h3,
#privacy-policy .kv-wrap .page-ttl h3,
#sitemap .kv-wrap .page-ttl h3 {
  display: inline-block;
  color: #333;
  font-size: 55px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding: 10px 40px;
  margin: 0;
}
@media (max-width: 640px) {
  #business .kv-wrap .page-ttl h3,
  #company .kv-wrap .page-ttl h3,
  #works .kv-wrap .page-ttl h3,
  #news .kv-wrap .page-ttl h3,
  #contact .kv-wrap .page-ttl h3,
  #contact-confirm .kv-wrap .page-ttl h3,
  #contact-thanks .kv-wrap .page-ttl h3,
  #privacy-policy .kv-wrap .page-ttl h3,
  #sitemap .kv-wrap .page-ttl h3 {
    font-size: 30px;
  }
}
#business .kv-wrap .page-ttl p,
#company .kv-wrap .page-ttl p,
#works .kv-wrap .page-ttl p,
#news .kv-wrap .page-ttl p,
#contact .kv-wrap .page-ttl p,
#contact-confirm .kv-wrap .page-ttl p,
#contact-thanks .kv-wrap .page-ttl p,
#privacy-policy .kv-wrap .page-ttl p,
#sitemap .kv-wrap .page-ttl p {
  font-size: 36px;
  color: #333;
  font-weight: bold;
  margin: 20px 0 0;
  line-height: 1.6;
}
@media (max-width: 640px) {
  #business .kv-wrap .page-ttl p,
  #company .kv-wrap .page-ttl p,
  #works .kv-wrap .page-ttl p,
  #news .kv-wrap .page-ttl p,
  #contact .kv-wrap .page-ttl p,
  #contact-confirm .kv-wrap .page-ttl p,
  #contact-thanks .kv-wrap .page-ttl p,
  #privacy-policy .kv-wrap .page-ttl p,
  #sitemap .kv-wrap .page-ttl p {
    font-size: 18px;
  }
}

/* =================================
   ABOUT タイトル
================================= */
.about-title {
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-title.is-show {
  opacity: 1;
  transform: translateY(0);
}

.about-title h3 {
  display: inline-block;
  color: #333;
  font-size: 55px;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
  padding: 10px 40px;
  margin: 0;
}

/* スマホ */
@media screen and (max-width: 640px) {
  .about-title h3 {
    font-size: 30px;
    padding: 10px 20px;
  }
}
/* 施工実績の投稿 */
#works-detail {
  /*  施工実績　内容 */
}
#works-detail .works {
  padding: 100px 0;
  margin-bottom: 200px;
}
@media (max-width: 640px) {
  #works-detail .works {
    padding: 20px 0;
  }
}
#works-detail .works__mainimg {
  aspect-ratio: 4/3;
  overflow: hidden;
}
#works-detail .works__mainimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#works-detail .works__contents {
  margin-top: 80px;
}
@media (max-width: 640px) {
  #works-detail .works__contents {
    margin-top: 50px;
  }
}
#works-detail .works__desc {
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
  margin-bottom: 100px;
}
@media (max-width: 640px) {
  #works-detail .works__desc {
    flex-direction: column;
  }
}
#works-detail .works__text {
  width: 45%;
}
@media (max-width: 640px) {
  #works-detail .works__text {
    width: 100%;
  }
}
#works-detail .works__before-after {
  width: 45%;
}
#works-detail .works__before-after-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
#works-detail .works__before-after-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#works-detail .works__before-after .arrow {
  width: 80%;
  height: auto;
  display: block;
  margin: 20px auto;
}
@media (max-width: 640px) {
  #works-detail .works__before-after {
    width: 100%;
  }
}
#works-detail .works__gallery {
  margin-top: 80px;
}
#works-detail .works__gallery-item {
  display: flex;
  gap: 24px;
}
@media (max-width: 640px) {
  #works-detail .works__gallery-item {
    flex-direction: column;
  }
}
#works-detail .works__gallery-item:not(:last-child) {
  margin-bottom: 80px;
}
#works-detail .works__gallery-large {
  width: calc(66.666% - 12px);
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (max-width: 640px) {
  #works-detail .works__gallery-large {
    width: 100%;
  }
}
#works-detail .works__gallery-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#works-detail .works__gallery-small {
  width: calc(33.333% - 10px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 640px) {
  #works-detail .works__gallery-small {
    width: 100%;
    flex-direction: row;
  }
}
#works-detail .works__gallery-small img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
@media (max-width: 640px) {
  #works-detail .works__gallery-small img {
    width: 47%;
  }
}
#works-detail .works__gallery-item.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 640px) {
  #works-detail .works__gallery-item.reverse {
    flex-direction: column;
  }
}
#works-detail .notice {
  background-color: #fff2c7;
}
#works-detail .notice__in {
  transform: translateY(-150px);
}
@media (max-width: 640px) {
  #works-detail .notice__in {
    transform: translateY(-100px);
  }
}
#works-detail .notice__block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding: 0 2em;
}
@media (max-width: 1200px) {
  #works-detail .notice__block {
    gap: 0;
    padding: 0;
  }
}
@media (max-width: 640px) {
  #works-detail .notice__block {
    flex-direction: column;
    gap: 50px;
  }
}
#works-detail .notice__block-item {
  width: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 640px) {
  #works-detail .notice__block-item {
    width: 100%;
  }
}
#works-detail .notice__block-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffd446;
  padding: 70px 10px 20px 0;
}
@media (max-width: 1024px) {
  #works-detail .notice__block-info {
    padding: 20px;
  }
}
@media (max-width: 640px) {
  #works-detail .notice__block-info {
    padding: 50px 10px;
  }
}
#works-detail .notice__block-info .arrow-box {
  margin-left: auto;
}
#works-detail .notice h4 {
  width: 120%;
  line-height: 1.5;
}
#works-detail .notice__block-desc {
  font-size: 17px;
  text-align: left;
  margin-top: 24px;
  line-height: 1.8;
  color: #000;
}
@media (max-width: 640px) {
  #works-detail .notice__block-desc {
    white-space: nowrap;
  }
}
#works-detail .notice .btn-box .btn {
  opacity: 0.2;
}

.star__decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translateY(-120px);
}
@media (max-width: 920px) {
  .star__decoration {
    transform: translateY(-110px);
  }
}
.star__decoration .star__line {
  width: 1px;
  height: 200px;
  background: #333;
}
.star__decoration .star__icon {
  width: 70px;
  margin: 15px 0;
}
@media (max-width: 640px) {
  .star__decoration {
    flex-direction: row;
    transform: translateY(0px);
  }
  .star__decoration .star__line {
    width: 100px;
    height: 1px;
  }
  .star__decoration .star__icon {
    margin: 0 15px;
  }
}

.redesign {
  position: relative;
  margin-top: 150px;
  z-index: 2;
}
@media (max-width: 640px) {
  .redesign {
    margin-top: 80px;
  }
}
.redesign .ttl-1 {
  width: 80%;
  margin-inline: auto;
}
@media (max-width: 640px) {
  .redesign .ttl-1 {
    width: 100%;
  }
}
.redesign__contents {
  padding-top: 20px;
}
.redesign__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 920px) {
  .redesign__list {
    flex-wrap: wrap;
  }
}
.redesign__item {
  width: 20%;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 920px) {
  .redesign__item {
    width: calc(33.3333333333% - 40px);
  }
}
.redesign__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}
.redesign__item a:hover {
  transform: translateY(-8px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}
.redesign .blob img {
  width: 100%;
  height: auto;
  display: block;
}
.redesign__txt {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
@media (max-width: 430px) {
  .redesign__txt {
    font-size: 15px;
  }
}
@media (max-width: 430px) {
  .redesign__list {
    gap: 30px 15px;
    flex-wrap: wrap;
  }
  .redesign__item {
    width: calc(50% - 15px);
  }
  .redesign .blob {
    width: 140px;
  }
  .redesign__txt {
    font-size: 15px;
  }
}

.contact-area {
  margin-top: -150px;
  background-color: #f2f2f2;
  position: relative;
  padding: 180px 0 150px;
}
@media (max-width: 640px) {
  .contact-area {
    padding: 60px 0 100px;
  }
}
@media (max-width: 920px) {
  .contact-area .inner-600 {
    width: 90%;
  }
}
.contact-area .ttl-1 {
  width: 80%;
  margin: 0 auto 35px;
  font-family: "GenJyuuGothic";
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
.contact-area__in {
  position: relative;
  background-color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  padding: 30px 10px;
  margin-top: 100px;
  z-index: 1;
}
@media (max-width: 640px) {
  .contact-area__in {
    margin-top: 150px;
  }
}
.contact-area__list {
  justify-content: center;
  gap: 70px;
}
.contact-area__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.contact-area__item a img {
  width: 100%;
  display: block;
  max-width: 80px;
}
.contact-area__item a p {
  margin: 0;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.contact-area__item a:hover {
  opacity: 0.8;
}
@media (max-width: 640px) {
  .contact-area {
    padding: 60px 0;
  }
  .contact-area .ttl-1 {
    margin-bottom: 40px;
  }
  .contact-area__list {
    align-items: center;
    gap: 40px;
  }
  .contact-area__item a {
    gap: 15px;
  }
  .contact-area__item a p {
    font-size: 18px;
  }
}

/*  会社概要 事業内容　タイトル */
#company .kv-wrap,
#business .kv-wrap {
  position: relative;
  background: #fff2c7;
  height: 250px;
  margin-top: 3rem;
}
@media (max-width: 640px) {
  #company .kv-wrap,
  #business .kv-wrap {
    height: 150px;
    margin-top: 5rem;
  }
}
#company .kv-wrap .page-ttl,
#business .kv-wrap .page-ttl {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, 30px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
#company .kv-wrap .page-ttl.is-animated,
#business .kv-wrap .page-ttl.is-animated {
  transform: translate(-50%, 0);
  opacity: 1;
}
#company .kv-wrap .page-ttl h3 img,
#business .kv-wrap .page-ttl h3 img {
  display: block;
  width: 300px;
}
@media (max-width: 640px) {
  #company .kv-wrap .page-ttl h3 img,
  #business .kv-wrap .page-ttl h3 img {
    width: 190px;
  }
}

@media (max-width: 1025px) {
  #company .company .inner-1000 {
    width: 100%;
  }
}
#company .company-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: left;
}
@media (max-width: 1280px) {
  #company .company-title {
    font-size: 2rem;
  }
}
@media (max-width: 1100px) {
  #company .company-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 640px) {
  #company .company-title {
    font-size: 24px;
  }
}
#company .company__top img {
  width: 50%;
  margin: 100px auto 0;
}
@media (max-width: 430px) {
  #company .company__top img {
    margin: 50px auto 0;
  }
}
#company .company__concept {
  margin-top: 150px;
}
@media (max-width: 430px) {
  #company .company__concept {
    margin-top: 80px;
  }
}
#company .company__concept-desc {
  margin-top: 40px;
  line-height: 2;
  text-align: left;
}
#company .company__concept-image {
  position: relative;
  margin-top: 80px;
}
#company .company__concept-image img {
  width: 100%;
  display: block;
}
#company .company__concept-image .deco-1 {
  position: absolute;
  width: 12vw;
  top: 75px;
  right: -40px;
}
@media (max-width: 640px) {
  #company .company__concept-image .deco-1 {
    width: 17vw;
    top: 6px;
    right: 0px;
  }
}
#company .company__greeting {
  margin-top: 150px;
}
@media (max-width: 640px) {
  #company .company__greeting {
    margin-top: 80px;
  }
}
#company .company__greeting-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 60px;
}
@media (max-width: 920px) {
  #company .company__greeting-wrapper {
    align-items: left;
  }
}
@media (max-width: 640px) {
  #company .company__greeting-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
#company .company__greeting-body {
  width: 100%;
}
@media (max-width: 640px) {
  #company .company__greeting-body {
    width: 100%;
  }
}
#company .company__greeting-desc {
  margin-top: 40px;
}
@media (max-width: 1280px) {
  #company .company__greeting-desc {
    margin-top: 10px;
    font-size: 14px;
  }
}
#company .company__greeting-image {
  width: 40%;
  text-align: right;
}
#company .company__greeting-image img {
  width: 100%;
  display: block;
}
@media (max-width: 640px) {
  #company .company__greeting-image {
    width: 100%;
  }
}
#company .company__greeting-image__position {
  text-align: right;
}
#company .company__greeting-image__name {
  text-align: right;
}
#company .company__profile {
  background-color: #fff2c7;
  margin-top: 150px;
  padding: 100px 0;
}
@media (max-width: 640px) {
  #company .company__profile {
    margin-top: 80px;
  }
}
#company .company__profile-table {
  width: 100%;
  margin-top: 50px;
  border-collapse: collapse;
}
#company .company__profile-table th {
  padding: 20px 40px;
  border-bottom: 1px solid #000;
  text-align: left;
  width: 30%;
  font-weight: bold;
}
@media (max-width: 640px) {
  #company .company__profile-table th {
    display: block;
    width: 100%;
    padding: 20px 10px;
  }
}
#company .company__profile-table td {
  padding: 20px 40px;
  border-bottom: 1px solid #000;
  text-align: left;
  width: 70%;
}
@media (max-width: 640px) {
  #company .company__profile-table td {
    font-size: 15px;
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 20px 10px;
  }
}

/* 事業内容 */
#business .business__content {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 640px) {
  #business .business__content {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
}
#business .business__content-title {
  width: 50%;
  font-size: clamp(40px, 28.57px + 1.11vw, 50px);
  font-weight: bold;
}
@media (max-width: 640px) {
  #business .business__content-title {
    width: 100%;
    font-size: 26px;
    text-align: center;
  }
}
#business .business__content-text {
  font-size: clamp(20px, 0px + 1.5625vw, 30px);
  font-weight: bold;
}
@media (max-width: 640px) {
  #business .business__content-text {
    width: 100%;
    font-size: 16px;
    text-align: center;
  }
}
#business .business__card {
  display: flex;
  gap: 50px;
  margin-top: 60px;
}
@media (max-width: 920px) {
  #business .business__card {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  #business .business__card {
    margin-top: 40px;
  }
}
#business .business__card-image {
  width: 60%;
}
@media (max-width: 920px) {
  #business .business__card-image {
    width: 100%;
  }
}
#business .business__card-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 920px) {
  #business .business__card-content {
    width: 100%;
  }
}
@media (max-width: 640px) {
  #business .business__card-content {
    gap: 0;
  }
}
#business .business__card-title {
  font-size: 40px;
}
@media (max-width: 640px) {
  #business .business__card-title {
    font-size: 26px;
  }
}
#business .business__card--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 920px) {
  #business .business__card--reverse {
    flex-direction: column;
  }
}

/* ステラってなに */
#about .about {
  padding: 100px 0;
  margin-top: 3rem;
  background-color: #fff2c7;
}
@media (max-width: 640px) {
  #about .about {
    margin-top: 5rem;
  }
}
#about .about__title {
  width: 50%;
  margin-inline: auto;
}
#about .about__desc {
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 640px) {
  #about .about__desc {
    width: 100%;
  }
}

.feature {
  margin-top: 60px;
}
.feature img {
  margin-top: 60px;
}

.point {
  margin-bottom: 100px;
}
.point__price {
  position: relative;
  background-color: #fff2c7;
  padding: 200px 0 400px;
  margin-top: 200px;
}
@media (max-width: 640px) {
  .point__price {
    padding: 100px 0 300px;
    margin-top: 100px;
  }
}
.point__price-deco {
  position: absolute;
  width: 20%;
  top: -10%;
}
@media (max-width: 640px) {
  .point__price-deco {
    padding: 100px 0 300px;
    top: -18%;
  }
}
.point__origin {
  position: relative;
  margin-top: -150px;
}
.point__origin img {
  display: block;
  width: 100%;
  height: auto;
}
.point__origin-deco {
  position: absolute;
  right: 90px;
  top: -110px;
  width: 150px;
}
@media (max-width: 640px) {
  .point__origin-deco {
    right: 15px;
    top: -60px;
    width: 80px;
  }
}
.point__origin-deco img {
  animation: sparkle 2s ease-in-out infinite;
}
.point__origin-text {
  position: absolute;
  top: 160px;
  left: 50px;
  color: #fff;
  font-size: 28px;
  line-height: 2;
}
@media (max-width: 640px) {
  .point__origin-text {
    top: 35px;
    left: 30px;
    font-size: 16px;
    line-height: 1.7;
    font-weight: bold;
  }
}
.point .origin-color {
  color: #ffd446;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.15);
  }
}
/* ニュースのアーカイブ */
#news .news-list {
  width: 100%;
}
#news .news-list__item {
  position: relative;
  border-bottom: 1px solid #000;
}
#news .news-list__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 10px;
  color: #000;
  transition: 0.3s;
}
@media (max-width: 640px) {
  #news .news-list__link {
    display: block;
  }
}
#news .news-list__link:hover {
  opacity: 0.7;
}
#news .news-list__link:hover .news-list__arrow {
  transform: translateX(5px);
}
#news .news-list__date {
  width: 100px;
  font-size: 16px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  #news .news-list__date {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 6px;
  }
}
#news .news-list__cat {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 90px;
  padding: 5px 15px;
  border-radius: 20px;
  background: #ffd446;
  color: #000;
  font-size: 13px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  #news .news-list__cat {
    display: inline-flex;
    vertical-align: middle;
  }
}
#news .news-list__ttl {
  font-size: 22px;
  flex: 1;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  #news .news-list__ttl {
    margin-top: 8px;
    font-size: 15px;
  }
}
#news .news-list__arrow-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  #news .news-list__arrow-box {
    float: right;
    margin-top: -35px;
  }
}
#news .category-nav {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 40px;
}
#news .category-nav__item {
  min-width: 90px;
  font-size: 13px;
  text-align: center;
  padding: 10px 15px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #ffd446;
}
#news .category-nav__item.is-active {
  background: #ffd446;
  color: #000;
}

/* ニュースの投稿 */
#news-detail .news-detail__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 640px) {
  #news-detail .news-detail__meta {
    gap: 10px;
  }
}
#news-detail .news-detail__date {
  font-size: 16px;
  color: #666;
}
#news-detail .news-detail__category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 90px;
  padding: 5px 15px;
  border-radius: 20px;
  background: #ffd446;
  color: #000;
  font-size: 13px;
  flex-shrink: 0;
}
#news-detail .news-detail__images {
  margin-top: 40px;
  aspect-ratio: 4/3;
  overflow: hidden;
}
#news-detail .news-detail__images img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  display: block;
}
#news-detail .news-detail__text {
  margin-top: 40px;
  letter-spacing: -0.05em;
}
@media (max-width: 640px) {
  #news-detail .arrow--line,
  #news-detail .arrow--line-left {
    display: none;
  }
}

#news-detail .contact-area {
  margin-top: -80px;
  background-color: #f2f2f2;
  position: relative;
  padding: 10px 0 150px;
}
@media (max-width: 640px) {
  #news-detail .contact-area {
    padding: 20px 0 60px;
  }
}
@media (max-width: 640px) {
  #news-detail .contact-area__in {
    padding: 20px 0 60px;
    margin-top: 40px;
  }
}

@media (max-width: 640px) {
  .news-detail .inner-1100 {
    width: 100%;
    padding: 0 1em;
  }
}
.news-detail .inner-1000 {
  width: 100% !important;
}

/* 施工実績のアーカイブ */
#works .works-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  margin-top: 100px;
}
@media (max-width: 640px) {
  #works .works-list {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
}
#works .works-list__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
#works .works-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#works .works-list__image .arrow-box {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
#works .works-list__title {
  margin-top: 5px;
  font-size: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
#works .works-list__text {
  font-size: 15px;
}

/* お知らせ投稿ページの前へ後ろへボタン */
.post-nav-section {
  background-color: #fff2c7;
  margin-top: 400px;
}
@media (max-width: 640px) {
  .post-nav-section {
    margin-top: 250px;
  }
}
.post-nav-section .post-nav__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  transform: translateY(-150px);
}
@media (max-width: 920px) {
  .post-nav-section .post-nav__links {
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .post-nav-section .post-nav__links {
    gap: 0;
  }
}
.post-nav-section .post-nav__archive {
  margin-top: 40px;
  text-align: center;
}
.post-nav-section .btn-box {
  margin-top: -150px;
  padding-bottom: 200px;
}
@media (max-width: 640px) {
  .post-nav-section .btn-box {
    margin-top: -60px;
    padding-bottom: 120px;
  }
}
.post-nav-section .btn-box .news-list__arrow-box {
  margin-left: auto;
  color: #fff;
}

/*前へ後ろへボタン*/
.btn-prev, .btn-next {
  width: 300px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 640px) {
  .btn-prev, .btn-next {
    width: 110px;
    gap: 0;
    font-size: 10px;
    white-space: nowrap;
  }
}
.btn-prev, .btn-next {
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  padding: 25px;
  border: 1px solid #000;
  transition: 0.3s;
}
.btn-prev:hover, .btn-next:hover {
  background-color: #000;
  color: #fff;
}

.star__decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translateY(-100px);
}
@media (max-width: 920px) {
  .star__decoration {
    transform: translateY(-110px);
  }
}
.star__decoration .star__line {
  width: 1px;
  height: 200px;
  background: #333;
}
.star__decoration .star__icon {
  width: 70px;
  margin: 15px 0;
}
@media (max-width: 640px) {
  .star__decoration {
    transform: translateY(0px);
  }
  .star__decoration .star__line {
    width: 1px;
    height: 120px;
  }
  .star__decoration .star__icon {
    margin: 0 15px;
  }
}

/* お問い合わせ */
#contact .contact {
  margin-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
@media (max-width: 640px) {
  #contact .contact {
    margin-top: 40px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 640px) {
  #contact .contact .inner-1100 {
    width: 100% !important;
    padding: 0 1em !important;
  }
}
#contact .contact__ttl {
  width: 80%;
  margin-inline: auto;
}
#contact .contact__desc {
  margin-top: 40px;
}
#contact .contact__desc p {
  font-size: 14px;
  letter-spacing: -0.05em;
}
#contact .contact-form {
  margin-bottom: 100px;
}
#contact .contact-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-top: 40px;
}
#contact .contact-table p {
  margin: 0;
}
#contact .contact-table .wpcf7-form-control-wrap {
  display: block;
}
#contact .contact-table .wpcf7-form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
#contact .contact-table .wpcf7-spinner {
  display: none;
}
#contact .contact-table th,
#contact .contact-table td {
  padding: 25px;
  border: 1px solid #000;
  vertical-align: top;
}
#contact .contact-table th {
  width: 250px;
  background: #f2f2f2;
  text-align: left;
}
#contact .contact-table .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
#contact .contact-table input,
#contact .contact-table textarea {
  display: block;
  padding: 12px;
  border: 1px solid #000;
  box-sizing: border-box;
}
#contact .contact-table textarea {
  height: 200px;
  resize: vertical;
}
#contact .contact-table .required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  background: #d9534f;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 640px) {
  #contact .contact-table th,
  #contact .contact-table td {
    display: block;
    width: 100%;
    padding: 15px;
  }
  #contact .contact-table th {
    border-bottom: none;
  }
}
#contact .submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 100px auto;
}
@media (max-width: 640px) {
  #contact .submit {
    flex-direction: column;
    gap: 15px;
    width: 220px;
    max-width: 100%;
  }
}
#contact .submit .wpcf7-submit,
#contact .submit .wpcf7-previous {
  width: 220px;
  height: 60px;
  border: none;
  background: #ffd446;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}
#contact .submit .wpcf7-submit:hover,
#contact .submit .wpcf7-previous:hover {
  opacity: 0.7;
}
#contact .submit .wpcf7-previous {
  background: #fff;
  border: 1px solid #000;
}

/* ページネーション */
.pagination {
  margin-top: 80px;
}
.pagination .wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pagination .wp-pagenavi a,
.pagination .wp-pagenavi span {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  font-size: 14px;
}
.pagination .wp-pagenavi .current {
  background-color: #000;
  color: #fff;
}
.pagination .wp-pagenavi a {
  transition: 0.3s;
}
.pagination .wp-pagenavi a:hover {
  opacity: 0.7;
}
.pagination .wp-pagenavi .pages {
  display: none;
}

/* サイトマップ全体 */
#sitemap {
  margin-top: 3rem;
}
#sitemap .sitemap {
  margin-top: 100px;
}
@media (max-width: 640px) {
  #sitemap .sitemap .inner-1000 {
    width: 100% !important;
    padding: 0 1em !important;
  }
}
#sitemap .wsp-container .wsp-pages-title {
  position: relative;
  font-size: 28px;
  font-weight: 900;
  padding-left: 18px;
  margin-bottom: 30px;
  font-family: "GenJyuuGothic", sans-serif;
}
#sitemap .wsp-container .wsp-pages-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 35px;
  background-color: #ffd446;
  transform: translateY(-50%);
  border-radius: 3px;
}
#sitemap .wsp-container .wsp-pages-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sitemap .wsp-container .wsp-pages-list .page_item {
  margin-bottom: 15px;
}
#sitemap .wsp-container .wsp-pages-list .page_item a {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  border: 1px solid #ffd446;
  border-radius: 8px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
#sitemap .wsp-container .wsp-pages-list .page_item a::before {
  content: "→";
  color: #ffd446;
  font-weight: bold;
  margin-right: 12px;
  transition: 0.3s;
}
#sitemap .wsp-container .wsp-pages-list .page_item a:hover {
  background: #ffd446;
  color: #fff;
}
#sitemap .wsp-container .wsp-pages-list .page_item a:hover::before {
  color: #fff;
  transform: translateX(5px);
}
@media (max-width: 640px) {
  #sitemap .wsp-pages-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  #sitemap .wsp-pages-title::before {
    height: 28px;
  }
  #sitemap .wsp-pages-list .page_item a {
    padding: 15px;
    font-size: 14px;
  }
}

#sitemap {
  padding-bottom: 100px;
}
#sitemap .sitemap-archive {
  margin-top: 60px;
}
#sitemap .sitemap-archive__title {
  position: relative;
  font-size: 28px;
  font-weight: 900;
  padding-left: 18px;
  margin-bottom: 30px;
  font-family: "GenJyuuGothic", sans-serif;
}
#sitemap .sitemap-archive__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 35px;
  background: #ffd446;
  transform: translateY(-50%);
  border-radius: 3px;
}
#sitemap .sitemap-archive__list {
  list-style: none;
  padding: 0;
}
#sitemap .sitemap-archive__list li {
  margin-bottom: 15px;
}
#sitemap .sitemap-archive__list li a {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  border: 1px solid #ffd446;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
}
#sitemap .sitemap-archive__list li a::before {
  content: "→";
  color: #ffd446;
  margin-right: 12px;
}
#sitemap .sitemap-archive__list li a:hover {
  background: #ffd446;
  color: #fff;
}
#sitemap .sitemap-archive__list li a:hover::before {
  color: #fff;
}

/* プライバシーポリシー */
#privacy-policy .privacy {
  padding-bottom: 100px;
  margin-top: 100px;
}
@media (max-width: 640px) {
  #privacy-policy .privacy {
    padding-bottom: 50px;
  }
}
#privacy-policy .privacy__title {
  width: 80%;
  margin-inline: auto;
  font-family: "GenJyuuGothic", sans-serif;
  font-weight: 900;
}
#privacy-policy .privacy__desc {
  margin-top: 40px;
}
#privacy-policy .privacy__desc p {
  font-size: 14px;
  letter-spacing: -0.05em;
}

.access {
  padding: 80px 0;
}
.access .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.access-title {
  margin-bottom: 30px;
  text-align: center;
}
.access-map {
  width: 100%;
  height: 450px;
  margin-top: 50px;
}
.access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 640px) {
  .access {
    padding: 50px 0;
  }
  .access-map {
    height: 300px;
  }
}/*# sourceMappingURL=style.css.map */