@charset "UTF-8";
:root {
  --bg-opacity: 1;
}

/* @font-face でローカルフォントを優先 */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP"), local("Noto Sans CJK JP Regular");
}
.fv {
  width: 100%;
  height: auto;
  aspect-ratio: 375/430;
  background: linear-gradient(180deg, #ffffff 0%, #004e94 81.5%);
  position: relative;
  margin-bottom: 80px;
  --after-width-sp: 0;
  --after-width-pc: 0;
}
.fv::before {
  content: "";
  display: block;
  width: var(--after-width-pc);
  height: 100%;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.fv__inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  --after-opacity: 0;
  --after-rotate: -5deg;
}
.fv__inner::after {
  content: "";
  background-image: unset;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  opacity: var(--after-opacity);
  transform: rotate(var(--after-rotate));
  width: 35%;
  height: auto;
  aspect-ratio: 794/700;
}

.fv__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 375/350;
}

.fv__copy {
  position: absolute;
  z-index: 10;
  text-align: center;
  top: 35%;
  right: 0%;
  margin: 0;
  width: 100%;
  padding: 0 20px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.7), 0 0 8px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
  width: 100%;
  margin: 0;
  padding: 20px;
}

.breadcrumb__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  padding: 0;
}
.breadcrumb__list li + li {
  padding-left: 0.5rem;
  margin-left: 0;
}
.breadcrumb__list li + li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f054";
  font-weight: 900;
  padding-right: 0.5rem;
  display: inline-block;
}
.breadcrumb__list > li span.current-item,
.breadcrumb__list li a {
  font-weight: 500;
  line-height: 1;
  color: #000000;
  font-size: 2rem;
}

.section__lower-inner {
  width: 100%;
  margin: 0;
  padding: 50px 20px;
}

.pager {
  width: 100%;
  max-width: 325px;
  height: 52px;
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
}
.pager .pager-item__prev,
.pager .pager-item__next {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pager .pager-item__prev a,
.pager .pager-item__next a {
  border: 1px solid #000000;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #000000;
  width: 100%;
  height: 100%;
}
.pager .pager-item__prev a:hover,
.pager .pager-item__next a:hover {
  text-decoration: underline;
}

.wp-pagenavi {
  width: 100%;
  max-width: 325px;
  height: 52px;
  display: flex;
  justify-content: center;
  margin: 50px auto;
  gap: 15px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  width: 50px;
  padding: 10px 0;
  border: 1px solid #000000;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #000000;
}
.wp-pagenavi a.current,
.wp-pagenavi span.current {
  text-decoration: underline;
}

.sidebar {
  width: 100%;
  background: #f5f5f5;
  padding: 20px;
}
.sidebar h3 {
  margin: 0 0 20px;
}
.sidebar ul {
  list-style: none;
  padding-left: 40px;
}
.sidebar ul + h3 {
  margin-top: 50px;
}
.sidebar li + li {
  margin-top: 10px;
}
.sidebar a {
  text-decoration: none;
  color: #000000;
}
.sidebar .search-wrap {
  margin-bottom: 50px;
  width: 100%;
}
.sidebar .search-wrap .search__inner {
  position: relative;
  max-width: 310px;
}
.sidebar .search-wrap .search__inner button {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  padding: 15px 10px;
  border: none;
  border-radius: 0;
}
.sidebar .search-wrap .search__inner button:hover {
  border: 2px solid #004e94;
}
.sidebar .search-wrap .search__inner input {
  margin-left: 40px;
  padding: 0.4rem;
  width: calc(100% - 60px);
}

/*!
* The MIT License (MIT)
* Copyright (c) 2020 Tobias Ahlin
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/* loader */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004e94;
  z-index: 2000;
  display: grid;
  place-items: center;
  pointer-events: none;
}

#loader.loaded {
  animation: fadeOut 1.5s forwards;
}

.spinner {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

#loader.loaded .spinner {
  animation: none;
  transform: none;
  transition: unset;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.header {
  background: #ffffff;
  position: relative;
  width: 100%;
  height: 60px;
}
.header.active {
  position: fixed;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  margin: 0 auto;
}

.header__logo {
  width: 250px;
  height: auto;
  z-index: 1000;
}
.header__logo .header__logo-item {
  margin: 0;
  line-height: 0;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: none;
}

.header__menu {
  width: 40px;
  height: 40px;
  padding: 10px;
  line-height: 0;
  z-index: 1000;
}

/*=============================
.header__menu--btn
=============================*/
.header__menu--btn {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.header__menu--btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  border-radius: 1px;
}

.header__menu--btn,
.header__menu--btn span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.header__menu--btn span:nth-of-type(1) {
  top: 2px;
}

.header__menu--btn span:nth-of-type(2) {
  top: 10px;
}

.header__menu--btn span:nth-of-type(3) {
  bottom: 0;
}

#menu_btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

#menu_btn.active span:nth-of-type(2) {
  opacity: 0;
}

#menu_btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
}

.header__menu-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  align-items: center;
}

#navArea {
  display: none;
}
#navArea.active {
  display: flex;
}

.header__menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 335px;
  height: 300px;
  margin: 0 auto;
  padding: 0;
}

.contact {
  background: right/100% auto no-repeat url(../images/nest.png), radial-gradient(50% 50% at 50% 50%, #e5edf4 0%, #cfdde9 60%, #a9c0d5 100%);
  padding: 100px 20px;
}

.contact__inner {
  width: 100%;
  margin: 0;
  padding: 50px 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__ttl.u-ttl-h2 {
  margin-bottom: 0;
}

.contact__btn {
  margin: 0 auto;
  width: 200px;
  height: 80px;
}

.footer {
  position: relative;
  background: #004e94;
  width: 100%;
}

.footer__inner {
  width: 100%;
  margin: 0 auto;
  max-width: 1540px;
  padding: 10px 20px;
}

.footer__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
  gap: 40px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list-item--name a {
  text-decoration: none;
}
.footer__list-item--name a:hover {
  color: #ffffff;
}

.footer__sns {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.footer__sns a {
  display: block;
}
.footer__sns i {
  color: #ffffff;
  font-size: 43px;
}

.footer__copyright {
  margin-top: 40px;
}
.footer__copyright p {
  text-align: center;
}

.footer__link {
  text-align: center;
}
.footer__link:hover {
  color: #ffffff;
}

#page-top__btn {
  position: fixed;
  z-index: 900;
  padding: 0;
  margin: 0;
  transition: 1s;
  cursor: pointer;
  bottom: 100px;
  right: 40px;
  background-color: unset;
  border: none;
  opacity: 0;
  pointer-events: none;
}
#page-top__btn:hover {
  opacity: 0.7;
}
#page-top__btn img {
  width: 60px;
  height: 60px;
}

#page-top__btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

#page-top__btn.is-absolute {
  position: absolute;
  bottom: unset;
  right: 40px;
  top: -80px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  height: 100%;
  scroll-behavior: smooth;
  letter-spacing: 0.02rem;
  line-height: 1.7;
  font-size: 56.25%;
}

body {
  font-weight: 400;
  font-family: "Local Noto Sans JP", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.6rem;
  color: #000000;
  margin: 0 auto;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-break: strict; /* ←行頭禁則も有効に */
}

main {
  background-color: #ffffff;
  overflow: hidden;
}

a:hover {
  opacity: 0.7;
  transition: all 0.4s;
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
}

p {
  margin: 2rem 0;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

ul:first-child,
ol:first-child,
li:first-child {
  margin-top: 0;
}

ul:last-child,
ol:last-child,
li:last-child {
  margin-bottom: 0;
}

i {
  font-style: italic;
}

img {
  max-width: 100%;
  height: auto;
}

mark {
  background: linear-gradient(transparent 20%, yellow 0%);
}
.u-sp {
  display: block !important;
}

.u-pc {
  display: none !important;
}

.u-txt-header {
  font-weight: 500;
  line-height: 1;
  color: #000000;
  text-decoration: none;
  font-size: 2rem;
}

.u-txt-footer {
  font-weight: 700;
  line-height: 2;
  color: #ffffff;
  font-size: 1.8rem;
}

.u-btn {
  color: #ffffff;
  padding: 15px 20px;
  background: #004e94;
  border: 2px solid #004e94;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.u-btn:hover {
  background-color: #ffffff;
  color: #004e94;
  opacity: 1;
  border: 2px solid #004e94;
  text-decoration: none;
}

.u-copy-l {
  font-weight: 700;
  color: #ffffff;
  font-size: min(6.6vw, 3.7rem);
  line-height: 1.25;
}

.u-copy-m {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2;
  text-align: center;
}

.u-copy-s {
  line-height: 2;
  text-align: center;
  font-size: 1.6rem;
}
.u-copy-s span {
  display: block;
  color: #004e94;
  font-weight: 700;
}

.u-ttl-h2 {
  position: relative;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.25;
  text-align: center;
  margin: 0 0 80px;
}
.u-ttl-h2 .u-ttl-h2-bar {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
}
.u-ttl-h2 .u-ttl-h2-bar::before {
  content: "";
  position: absolute;
  left: 0%;
  right: 0%;
  top: 0%;
  bottom: 0%;
  background: #004e94;
}
.u-ttl-h2 .u-ttl-h2-bar::after {
  content: "";
  position: absolute;
  left: 0%;
  right: 65%;
  top: 0%;
  bottom: 0%;
  background: #d9d9d9;
}

.u-ttl-h2-s {
  font-weight: 700;
  line-height: 2;
  font-size: 2.2rem;
}

.u-ttl-h3 {
  font-weight: 500;
  font-size: 2.4rem;
}

.u-txt-m {
  font-size: 2rem;
}

.u-txt-s {
  font-size: 1.6rem;
}

.u-flex-reverse {
  flex-direction: column !important;
}

.u-anchor--tel {
  cursor: pointer;
  pointer-events: auto;
  text-decoration: underline;
}
.u-anchor--tel:hover {
  opacity: 0.7;
  transition: all 0.4s;
}

.u-hover-underline:hover {
  opacity: 0.7;
  transition: all 0.4s;
  text-decoration: underline;
}

.u-btn-more-wrap {
  display: flex;
  justify-content: flex-end;
}

.u-btn-more {
  color: #000000;
  text-decoration: none !important;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  width: 196px;
  height: 47px;
  text-align: center;
  display: block;
}

.section__inner-archive {
  width: 100%;
  margin: 0;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
}

.archive__list-wrap {
  width: 100%;
}

.archive__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
}

.news__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  list-style: none;
  padding-bottom: 20px;
  border-bottom: 1px solid #a1a1a1;
}

.news__item-img {
  width: 100px;
  height: 100px;
  background: #d9d9d9;
  aspect-ratio: 1/1;
}
.news__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.news__item-inner {
  width: 100%;
  height: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  display: inline-flex;
}

.news__item-sub-inner {
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  flex-wrap: wrap;
}

.news__item-cat {
  border: 1px solid #616161;
  border-radius: 4px;
  padding: 6px 10px;
  display: inline-block;
  margin: 0;
}

.news__item-link {
  color: #000000;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news__item-link p {
  display: none;
}

.news__item-ttl {
  margin: 0;
}

.section__inner-archive-works {
  width: 100%;
  margin: 0;
  padding: 50px 20px;
}

.archive-works__list-wrap {
  width: 100%;
}

.archive-works__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 0;
  justify-content: center;
}

.works__item {
  padding: 20px;
  width: 100%;
  list-style: none;
  border: 1px solid #a1a1a1;
}

.home .works__item {
  width: 100%;
}

.works__item-cat {
  list-style: none;
}

.works__item-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 1px solid #a1a1a1;
  overflow: hidden;
}
.works__item-img img {
  width: 100%;
}

.works__item-inner {
  width: 100%;
  height: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  display: inline-flex;
  margin-top: 20px;
  color: #000000;
}

.works__item-sub-inner {
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: inline-flex;
  flex-wrap: wrap;
}

.works__item-cat {
  border: 1px solid #616161;
  border-radius: 4px;
  padding: 6px 10px;
  display: inline-block;
  margin: 0;
}

.works__item-link {
  color: #000000;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.works__item-link p {
  display: none;
}

.works__item-ttl {
  margin: 0;
}

.section__inner-single {
  width: 100%;
  margin: 0;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
}

.single-wrap {
  width: 100%;
}

.news {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.news p {
  font-size: 2rem;
}

.news-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  max-width: 600px;
  margin: 0 auto;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.news-inner {
  width: 100%;
  height: auto;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.news-cat {
  border: 1px solid #616161;
  border-radius: 4px;
  padding: 6px 10px;
  display: inline-block;
  margin: 0;
}

.news-ttl {
  margin: 0;
}

.section__inner-single-works {
  width: 100%;
  margin: 0;
  padding: 50px 20px;
}

.single-works-wrap {
  width: 100%;
}

.works {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.works p {
  font-size: 2rem;
}

.works-img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.works-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border: 1px solid #a1a1a1;
}

.works-inner {
  width: 100%;
  height: auto;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}

.works-cat {
  border: 1px solid #616161;
  border-radius: 4px;
  padding: 6px 10px;
  display: inline-block;
  margin: 0;
}

.works-ttl {
  margin: 0;
}

.contact__privacy {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 50px;
}

.form-wrapper {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
.form-wrapper input {
  line-height: 2;
  width: 100%;
  max-width: 400px;
}
.form-wrapper input[type=submit i] {
  color: #ffffff;
  padding: 15px 20px;
  background: #004e94;
  border: 2px solid #004e94;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.form-wrapper input[type=submit i]:hover {
  background-color: #ffffff;
  color: #004e94;
  opacity: 1;
  border: 2px solid #004e94;
  text-decoration: none;
}
.form-wrapper textarea {
  width: 100%;
  max-width: 400px;
}
@media all and (min-width: 576px){
  .works__item {
    width: calc((100% - 20px) / 2);
  }
  .home .works__item {
    width: 100%;
  }
}
@media all and (min-width: 769px){
  .fv {
    aspect-ratio: 1920/600;
    margin-bottom: 0;
  }
  .fv__inner::after {
    background-image: url(../images/nest.png);
  }
  .fv__image {
    width: 81.25%;
    height: auto;
    aspect-ratio: 1560/500;
  }
  .fv__copy {
    top: 50%;
    transform: translateY(-50%);
  }
  .breadcrumb {
    padding: 20px 30px;
  }
  .breadcrumb__list li + li {
    padding-left: 1rem;
  }
  .breadcrumb__list li + li::before {
    padding-right: 1rem;
  }
  .section__lower-inner {
    padding: 7.1377587438vw 30px;
  }
  .pager {
    width: 325px;
    margin: 50px auto 0;
  }
  .wp-pagenavi {
    width: 325px;
    margin: 50px auto 0;
  }
  .sidebar {
    padding: 50px 20px;
    width: 25%;
  }
  .sidebar ul {
    padding-left: 0;
  }
  .sidebar .search-wrap .search__inner button {
    right: 0;
  }
  .sidebar .search-wrap .search__inner input {
    margin-left: 0;
    width: 100%;
  }
  .header {
    height: 80px;
  }
  .header__inner {
    padding: 17px auto;
  }
  .header__nav {
    display: block;
    width: 440px;
  }
  .header__nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    padding: 0;
  }
  .header__menu {
    display: none;
  }
  .header__menu-nav {
    display: none;
  }
  #navArea.active {
    display: none;
  }
  .contact {
    background: right/50% auto no-repeat url(../images/nest.png), radial-gradient(50% 50% at 50% 50%, #e5edf4 0%, #cfdde9 55%, #a9c0d5 100%);
    padding: 7.1377587438vw 0;
  }
  .contact__inner {
    width: 85.6531049251vw;
    margin: 0 auto;
    padding: 2.8551034975vw 0;
  }
  .contact__btn {
    width: 24.9821556031vw;
    height: 7.1377587438vw;
  }
  .footer__content {
    align-items: flex-end;
    flex-direction: row;
    gap: 0;
  }
  .footer__sns i {
    font-size: 3.0692362598vw;
  }
  .footer__copyright {
    margin-top: 0;
  }
  #page-top__btn {
    right: 100px;
  }
  #page-top__btn img {
    width: 5.710206995vw;
    height: 5.710206995vw;
  }
  #page-top__btn.is-absolute {
    right: 100px;
    top: -100px;
  }
  html {
    font-size: 62.5%;
  }
  .u-sp {
    display: none !important;
  }
  .u-pc {
    display: block !important;
  }
  .u-txt-header {
    font-size: 1.6rem;
  }
  .u-txt-footer {
    font-size: 2rem;
  }
  .u-copy-l {
    font-size: 3.7rem;
  }
  .u-ttl-h2 {
    font-size: 4.8rem;
    margin: 0 0 7.1377587438vw;
  }
  .u-ttl-h2 .u-ttl-h2-bar {
    width: 200px;
  }
  .u-flex-reverse {
    flex-direction: row-reverse !important;
  }
  .u-anchor--tel {
    cursor: default;
    pointer-events: none;
    transition: all 0.4s;
    text-decoration: none;
  }
  .section__inner-archive {
    flex-direction: row;
    justify-content: space-between;
    padding: 7.1377587438vw 30px;
  }
  .archive__list-wrap {
    width: 70%;
  }
  .news__item {
    gap: 3.5688793719vw;
  }
  .news__item-img {
    width: 150px;
    height: 150px;
  }
  .news__item-link p {
    display: block;
    margin-top: 0;
  }
  .news__item-ttl {
    margin: 0 0 10px 0;
  }
  .section__inner-archive-works {
    padding: 7.1377587438vw 30px;
  }
  .works__item {
    width: calc((100% - 40px) / 3);
  }
  .home .works__item {
    width: 100%;
  }
  .works__item-link p {
    display: block;
    margin-top: 0;
  }
  .works__item-ttl {
    margin: 0 0 10px 0;
  }
  .section__inner-single {
    flex-direction: row;
    justify-content: space-between;
    padding: 7.1377587438vw 30px;
  }
  .single-wrap {
    width: 70%;
  }
  .news {
    gap: 3.5688793719vw;
  }
  .section__inner-single-works {
    padding: 7.1377587438vw 30px;
  }
  .single-works-wrap {
    width: 70%;
    margin: 0 auto;
  }
  .works {
    gap: 3.5688793719vw;
  }
}
@media all and (min-width: 1401px){
  .breadcrumb {
    padding: 20px 60px;
    max-width: 1600px;
    margin: 0 auto;
  }
  .section__lower-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 60px;
  }
  .sidebar {
    width: 350px;
  }
  .sidebar ul {
    padding-left: 40px;
  }
  .sidebar .search-wrap .search__inner button {
    right: 20px;
  }
  .sidebar .search-wrap .search__inner input {
    width: calc(100% - 60px);
    margin-left: 40px;
  }
  .header__inner {
    max-width: 1540px;
    width: 100%;
  }
  .header__logo {
    width: 354px;
  }
  .contact {
    padding: 100px 0;
  }
  .contact__inner {
    width: 1200px;
    padding: 40px 0;
  }
  .contact__btn {
    width: 350px;
    height: 100px;
  }
  .footer__sns i {
    font-size: 43px;
  }
  #page-top__btn {
    right: calc(50% - 600px);
  }
  #page-top__btn img {
    width: 80px;
    height: 80px;
  }
  #page-top__btn.is-absolute {
    right: calc(50% - 600px);
  }
  body {
    max-width: 1920px;
  }
  .u-txt-header {
    font-size: 2rem;
  }
  .u-ttl-h2 {
    margin: 0 0 100px;
  }
  .section__inner-archive {
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 60px;
  }
  .archive__list-wrap {
    max-width: 1000px;
  }
  .news__item {
    gap: 50px;
  }
  .section__inner-archive-works {
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 60px;
  }
  .archive-works__list {
    gap: 50px;
  }
  .works__item {
    width: calc((100% - 150px) / 4);
  }
  .home .works__item {
    width: 100%;
  }
  .section__inner-single {
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 60px;
  }
  .single-wrap {
    max-width: 1000px;
  }
  .news {
    gap: 50px;
  }
  .section__inner-single-works {
    max-width: 1600px;
    margin: 0 auto;
    padding: 100px 60px;
  }
  .single-works-wrap {
    width: 1000px;
  }
  .works {
    gap: 50px;
  }
}
@media print{
  .header__menu {
    display: none;
  }
  .fade-up-el__t,
  .fade-left-el__t,
  .fade-right-el__t {
    translate: none !important;
    rotate: none !important;
    scale: none !important;
    opacity: 1 !important;
    visibility: inherit !important;
    transform: translate(0px, 0px) !important;
  }
  #fv-img,
  #fv-copy {
    opacity: 1;
  }
  .fv {
    --after-width: 18.75%;
  }
  .fv__inner {
    --after-opacity: 1;
    --after-rotate: 0deg;
  }
  .swiper .swiper-wrapper {
    justify-content: center;
    transform: none !important;
  }
  .swiper .swiper-slide {
    display: block;
  }
}