@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover, button:hover {
    opacity: 0.75;
  }
}

a, button {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem; /* =14px */
  font-family: "Noto sans JP", sans-serif;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

/* レスポンシブ設定
------------------------------------- */
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 1300px) {
  .tab {
    display: none !important;
  }
}

.area-sushi {
  width: 300px;
  height: 200px;
  background-image: url("../images/sushi.jpg");
}

.webp .area-sushi {
  background-image: url("../images/sushi.webp");
}

/* style
------------------------------------- */
.mincho {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media screen and (max-width: 768px) {
  .header {
    position: absolute;
  }
}
.header__inner {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 80px 23px 26px;
  width: 100%;
  background: transparent;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-top: 40px;
  }
}
.header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}
.header.is-scrolled .header__inner {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  padding: 0px 80px 0px 26px;
}
@media screen and (max-width: 768px) {
  .header.is-scrolled .header__inner {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 40px 0px 0px 26px;
  }
}
.header__left {
  flex: 0 0 auto;
}
.header__right {
  flex: 0 0 auto;
}
.header__right nav.drawer-nav {
  background: transparent;
  width: auto;
  height: auto;
  position: static;
}
@media screen and (max-width: 768px) {
  .header__right nav.drawer-nav {
    width: 16.25rem;
    height: 100%;
    position: fixed;
    right: -16.25rem;
  }
}
.header__right nav.drawer-nav ul {
  display: flex;
}
.header__right nav.drawer-nav ul li {
  display: block;
  padding: 20px 15px;
}
.header__right nav.drawer-nav ul li a {
  position: relative;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
  padding: 10px 0;
}
.header__right nav.drawer-nav ul li a:before {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
  width: 0%;
  background: #fff;
}
.header__right nav.drawer-nav ul li a:hover:before {
  width: 100%;
}
.header__right nav.drawer-nav ul li a.is-current:before {
  width: 100%;
}
.header__right .drawer-hamburger {
  display: none;
  width: 3.8rem;
  background: #ed604b;
  border-radius: 0.7rem;
  top: 3.2rem;
  right: 2.1rem !important;
  padding: 15px 0.75rem 25px;
}
@media screen and (max-width: 768px) {
  .header__right .drawer-hamburger {
    display: block;
  }
}
.header__right .drawer-hamburger .drawer-hamburger-icon, .header__right .drawer-hamburger .drawer-hamburger-icon:after, .header__right .drawer-hamburger .drawer-hamburger-icon:before {
  background-color: #fff;
}
.header__right .drawer-hamburger:hover {
  background-color: #ed604b;
}

.drawer-open nav.drawer-nav {
  width: 93.3vw;
  height: auto;
  padding: 11.3vw 10.6vw 10.6vw;
  border-bottom-left-radius: 5rem;
  background-color: #ed604b;
  display: block;
}
.drawer-open nav.drawer-nav ul {
  flex-wrap: wrap;
}
.drawer-open nav.drawer-nav ul li {
  width: 100%;
  margin-bottom: 4vw;
}
.drawer-open nav.drawer-nav ul li a {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
}
.drawer-open .drawer-hamburger {
  background-color: #fff;
}
.drawer-open .drawer-hamburger .drawer-hamburger-icon, .drawer-open .drawer-hamburger .drawer-hamburger-icon:after, .drawer-open .drawer-hamburger .drawer-hamburger-icon:before {
  background-color: #ed604b;
}
.drawer-open .drawer-hamburger:hover {
  background-color: #fff;
}
.drawer-open .drawer-hamburger .drawer-hamburger-icon {
  background-color: #fff;
}

main:has(.top) + footer {
  padding-top: 150px;
}

.footer {
  background-color: #fff;
  padding: 0;
}
.footer__inner {
  width: 100%;
  padding: 0px 0 130px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
}
.footer__inner nav {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 3.5vw;
}
@media screen and (max-width: 768px) {
  .footer__inner nav {
    order: 3;
    padding: 0;
    margin-bottom: 100px;
    width: 100%;
  }
}
.footer__inner nav ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__inner nav ul {
    flex-wrap: wrap;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner nav ul li:first-of-type {
    border-top: 1px solid #d3d3d3;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner nav ul li {
    width: 100%;
    border-bottom: 1px solid #d3d3d3;
  }
}
.footer__inner nav ul li a {
  display: block;
  color: #727171;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 2.4vw 4.4vw;
}
@media screen and (max-width: 400px) {
  .footer__inner nav ul li a {
    padding: 4.9vw 4.4vw;
  }
}
@media screen and (max-width: 375px) {
  .footer__inner nav ul li a {
    font-size: 2rem;
  }
}
.footer__inner p {
  font-size: 1.2rem;
  color: #000;
}
.footer__block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  padding: 0 70px;
}
@media screen and (max-width: 768px) {
  .footer__block {
    order: 1;
    width: 100%;
    justify-content: space-between;
    padding: 3.3vw 4.4vw 0;
  }
}
.footer__logo {
  width: 486px;
  height: 95px;
  margin-right: 80px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    order: 0;
    width: 35.4vw;
    height: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 375px) {
  .footer__logo {
    width: 50.5vw;
  }
}
.footer__sns {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.footer__sns a {
  width: 69px;
  height: 69px;
  display: block;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .footer__sns a {
    width: 8.1vw;
    height: auto;
  }
}
.footer__add {
  padding: 0 70px 0 165px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .footer__add {
    order: 2;
    padding: 0 4.4vw 0;
    margin-bottom: 6.4vw;
  }
}
.footer__add p {
  font-size: 2.3rem;
  line-height: 1.8;
}
@media screen and (max-width: 375px) {
  .footer__add p {
    font-size: 2rem;
  }
}
.footer__add p a {
  color: #000;
  text-decoration: none;
}

.top + .backgroundMovie {
  position: fixed;
  top: -30%;
  left: 0;
  width: 100%;
  height: 130%;
  z-index: -1;
}
.top + .backgroundMovie video {
  object-fit: cover;
  width: inherit;
  height: inherit;
}
.top + .backgroundMovie .cover {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.top + .backgroundMovie .cover.is-active {
  background: rgba(0, 0, 0, 0.6);
}
.top .mv {
  height: 100vh;
  background-size: cover;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top .mv {
    /*align-items: flex-end;
    height: 100vh;*/
  }
}
.top .mv.is-animated .txt1 span,
.top .mv.is-animated .txt2 span {
  transform: translate(0, 0);
}
.top .mv__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-62%, -50%);
}
@media screen and (max-width: 768px) {
  .top .mv__inner {
    /*padding-bottom: 14.2vw;*/
    transform: translate(-55%, -50%);
  }
}
.top .mv__inner p {
  overflow: hidden;
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  .top .mv__inner p {
    font-size: 9vw;
  }
}
.top .mv__inner p.txt1 span, .top .mv__inner p.txt2 span {
  display: block;
  font-weight: 500;
  transform: translate(0, 100%);
  transition: transform 0.8s ease, opacity 0.3s ease;
}
.top .mv__inner p.txt1 {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
  white-space: nowrap;
}
.top .mv__inner p.txt1 span {
  transition-delay: 1.3s;
}
.top .mv__inner p.txt2 {
  margin-right: -15%;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .top .mv__inner p.txt2 {
    margin-right: -5%;
  }
}
.top .mv__inner p.txt2 span {
  transition-delay: 1.7s;
}
.top .about {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1023px;
  gap: 80px;
}
@media screen and (max-width: 1300px) {
  .top .about {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .top .about {
    height: auto;
  }
}
.top .about__inner {
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top .about__inner {
    flex-wrap: wrap;
    padding: 10.5vw 5vw 10.5vw;
  }
}
.top .about__image {
  order: 2;
  width: 518px;
  height: 693px;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .top .about__image {
    width: 38%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .top .about__image {
    width: 100%;
    height: auto;
    order: 1;
    left: 0;
    margin-bottom: 5.2vw;
  }
}
.top .about__content {
  order: 1;
  width: 545px;
}
@media screen and (max-width: 1300px) {
  .top .about__content {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .top .about__content {
    width: 100%;
    order: 2;
  }
}
.top .about__content .sec-title {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top .about__content .sec-title {
    margin-bottom: 3vw;
  }
}
.top .about__content .sec-title span {
  border-bottom: 2px solid #fff;
  width: 143px;
  display: block;
  padding-bottom: 10px;
}
.top .about__content .txt2 {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
  font-weight: 400;
  margin-bottom: 80px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .top .about__content .click-btn {
    justify-content: flex-start;
  }
}
.top .profile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1023px;
  gap: 80px;
}
@media screen and (max-width: 1300px) {
  .top .profile {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .top .profile {
    height: auto;
  }
}
.top .profile__inner {
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top .profile__inner {
    flex-wrap: wrap;
    padding: 10.5vw 5vw 10.5vw;
  }
}
.top .profile__image {
  order: 1;
  width: 518px;
  height: 693px;
}
@media screen and (max-width: 1300px) {
  .top .profile__image {
    width: 38%;
    height: auto;
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top .profile__image {
    width: 100%;
    height: auto;
    order: 1;
    left: 0;
    margin-left: 0;
    margin-bottom: 5.2vw;
  }
}
.top .profile__content {
  order: 2;
  width: 530px;
}
@media screen and (max-width: 1300px) {
  .top .profile__content {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .top .profile__content {
    width: 100%;
  }
}
.top .profile__content .sec-title {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top .profile__content .sec-title {
    margin-bottom: 3vw;
  }
}
.top .profile__content .sec-title span {
  border-bottom: 2px solid #fff;
  width: 190px;
  display: block;
  padding-bottom: 10px;
}
.top .profile__content .txt2 {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
  font-weight: 400;
  margin-bottom: 80px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .top .profile__content .click-btn {
    justify-content: flex-start;
  }
}
.top .services {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1023px;
  gap: 80px;
}
@media screen and (max-width: 1300px) {
  .top .services {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .top .services {
    height: auto;
  }
}
.top .services__inner {
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top .services__inner {
    flex-wrap: wrap;
    padding: 10.5vw 5vw 10.5vw;
  }
}
.top .services__image {
  order: 2;
  width: 518px;
  height: 693px;
  position: relative;
  top: -70px;
  left: -7vw;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top .services__image {
    width: 38%;
    height: auto;
    left: auto;
  }
}
@media screen and (max-width: 768px) {
  .top .services__image {
    width: 100%;
    height: auto;
    order: 1;
    position: static;
    margin-bottom: 11.2vw;
  }
}
.top .services__image .img1 {
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1300px) {
  .top .services__image .img1 {
    top: auto;
    right: 20px;
    bottom: -210px;
    left: 0;
    right: auto;
  }
}
@media screen and (max-width: 768px) {
  .top .services__image .img1 {
    bottom: auto;
    left: 0;
    position: relative;
    width: 47vw;
  }
}
.top .services__image .img2 {
  position: absolute;
  bottom: -180px;
  right: -100px;
}
@media screen and (max-width: 1300px) {
  .top .services__image .img2 {
    right: 0;
    bottom: auto;
    top: 0;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .top .services__image .img2 {
    top: auto;
    bottom: -7.8vw;
    width: 38.8vw;
  }
}
.top .services__content {
  order: 1;
  width: 550px;
}
@media screen and (max-width: 1300px) {
  .top .services__content {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .top .services__content {
    order: 2;
    width: 100%;
  }
}
.top .services__content .sec-title {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top .services__content .sec-title {
    margin-bottom: 3vw;
  }
}
.top .services__content .sec-title span {
  border-bottom: 2px solid #fff;
  width: 190px;
  display: block;
  padding-bottom: 10px;
}
.top .services__content .txt2 {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
  font-weight: 400;
  margin-bottom: 80px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .top .services__content .txt2 {
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .top .services__content .click-btn {
    justify-content: flex-start;
  }
}
.top .recruit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1023px;
  gap: 80px;
}
@media screen and (max-width: 1300px) {
  .top .recruit {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .top .recruit {
    height: auto;
  }
}
.top .recruit__inner {
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .top .recruit__inner {
    margin-bottom: 20vw;
  }
}
@media screen and (max-width: 768px) {
  .top .recruit__inner {
    flex-wrap: wrap;
    padding: 10.5vw 5vw 10.5vw;
  }
}
.top .recruit__image {
  order: 2;
  width: 100%;
  height: 693px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1300px) {
  .top .recruit__image {
    height: auto;
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top .recruit__image {
    order: 1;
    flex-wrap: wrap;
    margin-left: 0;
  }
}
@media screen and (max-width: 1300px) {
  .top .recruit__image .img1 {
    width: 43%;
  }
}
@media screen and (max-width: 768px) {
  .top .recruit__image .img1 {
    width: 48%;
  }
}
.top .recruit__image .img2 {
  top: 30px;
}
@media screen and (max-width: 1300px) {
  .top .recruit__image .img2 {
    width: 22.7%;
  }
}
@media screen and (max-width: 768px) {
  .top .recruit__image .img2 {
    width: 48%;
    top: 0;
  }
}
.top .recruit__image .img3 {
  top: 30px;
}
@media screen and (max-width: 1300px) {
  .top .recruit__image .img3 {
    width: 22.7%;
  }
}
@media screen and (max-width: 768px) {
  .top .recruit__image .img3 {
    width: 100%;
    top: 0;
    margin-top: 30px;
  }
}
.top .recruit__content {
  order: 1;
  width: 530px;
  margin: 0 auto;
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .top .recruit__content {
    order: 2;
    padding-top: 7.4vw;
    width: 100%;
  }
}
.top .recruit__content .sec-title {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top .recruit__content .sec-title {
    margin-left: 0;
    margin-bottom: 3vw;
  }
}
.top .recruit__content .sec-title span {
  border-bottom: 2px solid #fff;
  width: 116px;
  display: block;
  padding-bottom: 10px;
}
.top .recruit__content .txt2 {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
  font-weight: 400;
  margin-bottom: 80px;
  text-align: left;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .top .recruit__content .txt2 {
    text-align: left;
    margin-bottom: 4vw;
  }
}
.top .recruit__content .click-btn {
  position: absolute;
  bottom: 100px;
  right: 30px;
  padding: 0 0 0 33vw;
}
@media screen and (max-width: 1300px) {
  .top .recruit__content .click-btn {
    bottom: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .top .recruit__content .click-btn {
    position: static;
    justify-content: flex-start;
    padding: 0;
  }
}
.top .secBox_img {
  position: relative;
  transition: 0.3s;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .top .secBox_img {
    padding: 0;
  }
}
.top .secBox_img img {
  position: relative;
}
@media screen and (max-width: 768px) {
  .top .secBox_img img {
    width: 100%;
    top: 0;
    right: 0;
  }
}
.top .secBox_img .blurBg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top .secBox_img .blurBg {
    display: none;
  }
}
.top .secBox_img .blurBg span {
  filter: blur(5px);
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.top .click-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top .click-btn span {
  color: #fff;
  font-weight: 500;
  font-size: 3.5rem;
  margin-right: 20px;
}
.top .click-btn .clickbox {
  position: relative;
}
.top .click-btn .clickbox i {
  width: 100%;
}
.top .click-btn .clickbox .view {
  position: relative;
  z-index: 1;
}
.top .click-btn .clickbox .bg {
  position: absolute;
  top: 0px;
  left: 10px;
  z-index: 0;
}

.page .mv {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  margin-bottom: 200px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .mv {
    height: 100vh;
  }
}
.page .mv__inner {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page .mv__inner {
    padding-bottom: 14.2vw;
  }
}
.page .mv__inner .mv__ttl {
  font-size: 4.2rem;
  font-weight: 500;
  color: #fff;
  max-width: 363px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  left: 60px;
}
@media screen and (max-width: 768px) {
  .page .mv__inner .mv__ttl {
    margin-bottom: 3vw;
    max-width: 300px;
  }
}
@media screen and (max-width: 400px) {
  .page .mv__inner .mv__ttl {
    max-width: 70%;
  }
}
.page .mv__inner .mv__ttl span {
  padding-left: 20px;
}
.page .mv__inner .mv__ttl .border {
  position: relative;
  left: 0px;
  width: 100%;
}
.page .mv__inner .mv__ttl .border:before {
  content: "";
  display: block;
  width: calc(100% - 2rem);
  border-bottom: 4px solid #ed604b;
  padding-top: 7px;
}
.page .mv__inner .mv__ttl .border:after {
  content: "";
  display: block;
  width: calc(100% - 2rem);
  border-bottom: 4px solid #fff;
  position: relative;
  padding-top: 5px;
  float: right;
}
.page .mv__logo {
  position: absolute;
  top: 45px;
  right: 0;
  width: 790px;
}
@media screen and (max-width: 1300px) {
  .page .mv__logo {
    width: 60vw;
  }
}
@media screen and (max-width: 768px) {
  .page .mv__logo {
    width: 32.9vw;
    top: auto;
  }
}
.page .mv__logo img {
  display: block;
}
.page .ttl__box {
  display: flex;
  justify-content: center;
}
.page .about {
  background: url("../images/about-bg.webp") no-repeat center center;
  background-size: cover;
  position: relative;
}
.page .about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(239, 239, 239, 0.75);
  z-index: 0;
}
.page .about .mv {
  height: 793px;
  background: url("../images/about-mv-bg.webp") no-repeat center center;
  background-size: cover;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .page .about .mv {
    height: 401px;
    margin-bottom: 23vw;
  }
}
@media screen and (max-width: 768px) {
  .page .about .mv__inner {
    padding-bottom: 0;
  }
}
.page .about .history {
  margin: 0 auto 300px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .about .history {
    margin-bottom: 20.4vw;
  }
}
.page .about .history__ttl {
  font-size: 4.2rem;
  font-weight: bold;
  margin: 0 auto 200px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page .about .history__ttl {
    margin-bottom: 15.3vw;
  }
}
.page .about .history__ttl span {
  margin: 0 auto;
}
.page .about .history__ttl:after {
  content: "";
  display: block;
  width: 362px;
  border-bottom: 4px solid #ed604b;
  padding-bottom: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .about .history__ttl:after {
    width: 100%;
  }
}
.page .about .history__inner {
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .page .about .history__inner {
    padding: 0 20px;
  }
}
.page .about .history .timeline {
  position: relative;
}
.page .about .history .timeline .stretchline {
  display: block;
  max-height: 100%;
  width: 3px;
  background: #3e3a39;
  position: absolute;
  top: 0;
  left: 11rem;
}
@media screen and (max-width: 1300px) {
  .page .about .history .timeline .stretchline {
    left: 11rem;
  }
}
@supports (-webkit-hyphens: none) {
  .page .about .history .timeline .stretchline {
    left: 13rem;
  }
  @media screen and (max-width: 500px) {
    .page .about .history .timeline .stretchline {
      left: 11rem;
    }
  }
}
.page .about .history .timeline .timeline-block {
  display: flex;
  margin: 0;
  position: relative;
}
.page .about .history .timeline .timeline-block:after {
  content: "";
  width: 17px;
  height: 17px;
  background: #3e3a39;
  position: absolute;
  left: 10.3rem;
  top: 0px;
  border-radius: 100%;
}
@supports (-webkit-hyphens: none) {
  .page .about .history .timeline .timeline-block:after {
    left: 12.3rem;
  }
  @media screen and (max-width: 500px) {
    .page .about .history .timeline .timeline-block:after {
      left: 10.3rem;
    }
  }
}
.page .about .history .timeline .timeline-block .timeline-date {
  width: 11rem;
  font-size: 3.6rem;
  color: #9fa0a0;
  font-weight: bold;
  margin-top: -15px;
  position: relative;
}
@supports (-webkit-hyphens: none) {
  .page .about .history .timeline .timeline-block .timeline-date {
    width: 13rem;
  }
  @media screen and (max-width: 500px) {
    .page .about .history .timeline .timeline-block .timeline-date {
      width: 11rem;
    }
  }
}
@media screen and (max-width: 500px) {
  .page .about .history .timeline .timeline-block .timeline-date {
    font-size: 3.2rem;
  }
}
.page .about .history .timeline .timeline-block .timeline-content {
  display: flex;
  flex-wrap: wrap;
  width: 89%;
  padding-left: 30px;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 500px) {
  .page .about .history .timeline .timeline-block .timeline-content {
    width: 80%;
    padding-left: 40px;
  }
}
.page .about .history .timeline .timeline-block .timeline-content .month {
  font-size: 1.8rem;
  font-weight: 400;
  width: 3em;
}
@media screen and (max-width: 900px) {
  .page .about .history .timeline .timeline-block .timeline-content .month {
    width: 3em;
  }
}
@media screen and (max-width: 500px) {
  .page .about .history .timeline .timeline-block .timeline-content .month {
    width: 100%;
    margin-bottom: 10px;
  }
}
.page .about .history .timeline .timeline-block .timeline-content .text {
  font-size: 1.8rem;
}
@media screen and (max-width: 900px) {
  .page .about .history .timeline .timeline-block .timeline-content .text {
    width: calc(100% - 3.5em);
  }
}
@media screen and (max-width: 500px) {
  .page .about .history .timeline .timeline-block .timeline-content .text {
    width: 100%;
  }
}
.page .about .history .timeline .timeline-block .timeline-content .timeline-box {
  display: flex;
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page .about .history .timeline .timeline-block .timeline-content .timeline-box {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 500px) {
  .page .about .history .timeline .timeline-block .timeline-content .timeline-box {
    margin-bottom: 9vw;
  }
}
.page .about .history .timeline .timeline-block .timeline-content .timeline-image {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.page .about .history .timeline .timeline-block:last-of-type .timeline-content {
  padding-bottom: 0;
}
.page .about .company__ttl {
  font-size: 4.2rem;
  font-weight: bold;
  margin: 0 auto 200px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page .about .company__ttl {
    margin-bottom: 15.4vw;
  }
}
.page .about .company__ttl span {
  margin: 0 auto;
}
.page .about .company__ttl:after {
  content: "";
  display: block;
  width: 362px;
  border-bottom: 4px solid #ed604b;
  padding-bottom: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .about .company__ttl:after {
    width: 100%;
  }
}
.page .about .company__inner {
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .page .about .company__inner {
    padding: 0 20px;
  }
}
.page .about .company__contents {
  margin-bottom: 300px;
}
@media screen and (max-width: 768px) {
  .page .about .company__contents {
    margin-bottom: 20vw;
  }
}
.page .about .company__contents dl {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page .about .company__contents dl {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.page .about .company__contents dl dt, .page .about .company__contents dl dd {
  font-size: 2.4rem;
  line-height: 3.2;
}
@media screen and (max-width: 768px) {
  .page .about .company__contents dl dt, .page .about .company__contents dl dd {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 500px) {
  .page .about .company__contents dl dt, .page .about .company__contents dl dd {
    font-size: 4.5vw;
  }
}
.page .about .company__contents dl dt {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .page .about .company__contents dl dt {
    width: 100%;
  }
}
.page .about .company__contents dl dd {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .page .about .company__contents dl dd {
    width: 100%;
  }
}
.page .about .company__contents dl dd span {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .page .about .company__contents dl dd span {
    white-space: nowrap;
  }
}
.page .about .company #map {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .page .about .company #map {
    padding-bottom: 26vw;
  }
}
.page .about .company #map iframe {
  width: 100%;
  height: 687px;
}
@media screen and (max-width: 768px) {
  .page .about .company #map iframe {
    height: 300px;
  }
}
.page .profile {
  position: relative;
  background: url("../images/profile-bg.webp") no-repeat;
  background-position: center 793px;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .page .profile {
    background: transparent;
  }
}
.page .profile:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 24, 21, 0.8);
  z-index: 0;
}
.page .profile .mv {
  height: 793px;
  background: url("../images/profile-mv-bg.webp") no-repeat center center;
  background-size: cover;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .page .profile .mv {
    height: 401px;
  }
}
@media screen and (max-width: 768px) {
  .page .profile .mv__inner {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .page .profile__inner {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 400px) {
  .page .profile__inner .mv__ttl {
    max-width: 70%;
  }
}
.page .message {
  padding: 50px 0 0px;
  margin: 0 15px 0px;
  background: #b1c2c8;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .page .message {
    padding: 50px 0 0px;
  }
}
@media screen and (max-width: 768px) {
  .page .message {
    margin: 0 0px 0;
  }
}
.page .message__ttl {
  font-size: 4.2rem;
  font-weight: bold;
  margin: 0 auto 120px;
  text-align: center;
  color: #ed604b;
}
@media screen and (max-width: 768px) {
  .page .message__ttl {
    margin: 0 auto 9vw;
    padding: 0 20px;
  }
}
.page .message__ttl span {
  margin: 0 auto;
}
.page .message__ttl:after {
  content: "";
  display: block;
  width: 362px;
  border-bottom: 4px solid #ed604b;
  padding-bottom: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .message__ttl:after {
    width: 100%;
  }
}
.page .message__inner {
  max-width: 1029px;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #000;
  font-weight: 400;
  text-align: justify;
}
.page .message__contents {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .page .message__contents {
    padding-bottom: 31vw;
  }
}
.page .message .movie {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page .message .movie {
    margin-bottom: 8vw;
  }
}
.page .message .movie__inner {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .page .message .movie__inner {
    margin-bottom: 4vw;
  }
}
.page .message .movie__inner iframe {
  width: 100%;
  height: 568px;
}
@media screen and (max-width: 768px) {
  .page .message .movie__inner iframe {
    aspect-ratio: 16/9;
    height: auto;
    max-height: 568px;
  }
}
.page .message .movie__txt {
  margin-bottom: 100px;
  text-align: right;
}
@media screen and (max-width: 1030px) {
  .page .message .movie__txt {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .page .message .movie__txt {
    margin-bottom: 11vw;
  }
}
.page .message .movie__tagline {
  font-size: 4.8rem;
  color: #ed604b;
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .page .message .movie__tagline {
    font-size: 4.3rem;
  }
}
@media screen and (max-width: 500px) {
  .page .message .movie__tagline {
    font-size: 8.3vw;
  }
}
.page .message .introduction__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1300px) {
  .page .message .introduction__inner {
    padding: 0 20px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page .message .introduction__inner {
    flex-wrap: wrap;
    margin-left: 0px;
    padding: 0vw 20px 0;
  }
}
.page .message .introduction__image {
  order: 2;
  width: 366px;
}
@media screen and (max-width: 1100px) {
  .page .message .introduction__image {
    width: 37%;
  }
}
@media screen and (max-width: 768px) {
  .page .message .introduction__image {
    order: 1;
    width: 100%;
    margin: 0 0 30px 0px;
  }
}
.page .message .introduction__image img {
  width: 100%;
}
.page .message .introduction__content {
  order: 1;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .page .message .introduction__content {
    order: 2;
    width: 100%;
  }
}
.page .message .introduction__content .ttl {
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.page .message .introduction__content .name {
  width: 240px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .page .message .introduction__content .name {
    margin-bottom: 20px;
  }
}
.page .message .introduction__content .desc {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .page .message .introduction__content .desc {
    padding-left: 0px;
  }
}
.page .message .introduction__content .desc p {
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .page .profile .sp_bg {
    background: url("../images/profile-bg-sp.webp") no-repeat;
    background-position: center top;
  }
}
.page .philosophy {
  padding: 50px 0 10px;
  margin: 180px auto 200px;
}
@media screen and (max-width: 1300px) {
  .page .philosophy {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .page .philosophy {
    padding: 20.5vw 20px 20.4vw;
    margin: 0 auto 0;
  }
}
.page .philosophy__ttl {
  font-size: 4.2rem;
  font-weight: bold;
  margin: 0 auto 40px;
  text-align: center;
  color: #ed604b;
}
.page .philosophy__ttl span {
  margin: 0 auto;
}
.page .philosophy__ttl:after {
  content: "";
  display: block;
  width: 362px;
  border-bottom: 4px solid #ed604b;
  padding-bottom: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .philosophy__ttl:after {
    width: 100%;
  }
}
.page .philosophy__inner {
  line-height: 1.8;
}
.page .philosophy__contents p {
  font-size: 3.6rem;
  line-height: 1.8;
  text-align: center;
  color: #fff;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .page .philosophy__contents p {
    font-size: 2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 400px) {
  .page .philosophy__contents p {
    font-size: 5.2vw;
  }
}
.page .guidelines {
  padding: 50px 0 210px;
  margin: 0 auto 0px;
}
@media screen and (max-width: 1300px) {
  .page .guidelines {
    padding: 0 20px 10px;
  }
}
.page .guidelines__ttl {
  font-size: 4.2rem;
  font-weight: bold;
  margin: 0 auto 200px;
  text-align: center;
  color: #ed604b;
}
@media screen and (max-width: 768px) {
  .page .guidelines__ttl {
    margin: 0 auto 10vw;
  }
}
.page .guidelines__ttl span {
  margin: 0 auto;
}
.page .guidelines__ttl:after {
  content: "";
  display: block;
  width: 362px;
  border-bottom: 4px solid #ed604b;
  padding-bottom: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .guidelines__ttl:after {
    width: 100%;
  }
}
.page .guidelines__inner {
  max-width: 1330px;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #fff;
  font-weight: 400;
  text-align: justify;
}
.page .guidelines__contents .block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .page .guidelines__contents .block {
    flex-wrap: wrap;
    margin-bottom: 8vw;
  }
}
.page .guidelines__contents .block:nth-of-type(even) .image {
  order: 1;
}
.page .guidelines__contents .block:nth-of-type(even) .box {
  order: 2;
  width: 570px;
}
.page .guidelines__contents .block:nth-of-type(odd) .box {
  margin-left: 80px;
}
@media screen and (max-width: 1300px) {
  .page .guidelines__contents .block:nth-of-type(odd) .box {
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page .guidelines__contents .block:nth-of-type(odd) .box {
    margin-left: 0;
  }
}
@media screen and (max-width: 1300px) {
  .page .guidelines__contents .block .image {
    width: 52%;
  }
}
@media screen and (max-width: 768px) {
  .page .guidelines__contents .block .image {
    width: 100%;
    margin: 0 0 6.5vw;
    order: 1;
  }
}
.page .guidelines__contents .block .box {
  width: 400px;
}
@media screen and (max-width: 1300px) {
  .page .guidelines__contents .block .box {
    margin-left: 20px;
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .page .guidelines__contents .block .box {
    order: 2;
    width: 100%;
    margin-left: 0;
  }
}
.page .guidelines__contents .block .box .ttl-area {
  border-left: 9px solid #ed604b;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .page .guidelines__contents .block .box .ttl-area {
    padding-left: 4vw;
    margin-bottom: 20px;
  }
}
.page .guidelines__contents .block .box .ttl-area .ttl-1 {
  font-size: 4.2rem;
  color: #ed604b;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page .guidelines__contents .block .box .ttl-area .ttl-1 {
    font-size: 2.8rem;
    padding-bottom: 0;
    margin-bottom: 17px;
  }
}
.page .guidelines__contents .block .box .ttl-area .ttl-2 {
  font-size: 3.6rem;
  color: #fff;
  margin-bottom: 50px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page .guidelines__contents .block .box .ttl-area .ttl-2 {
    font-size: 2.3rem;
    margin-bottom: 0;
    line-height: 1.6;
  }
}
.page .guidelines__contents .block .box .txt {
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .page .guidelines__contents .block .box .txt {
    padding-left: 0;
  }
}
.page .guidelines__contents .block .box .txt p {
  font-size: 1.8rem;
  text-align: justify;
  line-height: 2;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .page .guidelines__contents .block .box .txt p {
    font-size: 1.6rem;
  }
}
.page .guidelines__contents .block .box .txt ul li {
  margin-left: 1em;
  line-height: 2;
  font-size: 1.8rem;
}
.page .guidelines__contents .block .box .txt ul li:before {
  content: "・";
  margin-left: -1em;
}
.page .services {
  background: url("../images/services-bg.webp");
  background-position-y: 793px;
  background-repeat: repeat-y;
  background-size: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .services {
    background: url("../images/services-bg-sp.webp");
    background-position-y: 401px;
    background-size: 100%;
  }
}
.page .services:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 24, 21, 0.6);
  z-index: 0;
}
.page .services .mv {
  height: 793px;
  background: url("../images/services-mv.webp") no-repeat center center;
  background-size: cover;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page .services .mv {
    height: 401px;
  }
}
@media screen and (max-width: 768px) {
  .page .services .mv__inner {
    padding-bottom: 0;
  }
}
.page .services__nav {
  position: relative;
  top: -100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page .services__nav {
    top: 0;
    padding-top: 14.7vw;
    margin-bottom: 14.5vw;
  }
}
.page .services__nav__inner {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
@media screen and (max-width: 1300px) {
  .page .services__nav__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .page .services__nav__inner {
    flex-wrap: wrap;
    gap: 0;
  }
}
.page .services__nav__link {
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .services__nav__link {
    width: 55%;
    margin: 0 auto 40px;
  }
}
.page .services__nav__link picture {
  margin: 0;
}
.page .services__nav__link .band {
  position: absolute;
  bottom: 13px;
  left: -24px;
  background: #ed604b;
  padding: 30px 0;
  width: 100%;
  text-align: center;
  filter: drop-shadow(8px 8px 3px rgba(0, 0, 0, 0.62));
}
@media screen and (max-width: 768px) {
  .page .services__nav__link .band {
    padding: 4.1vw 0;
    left: -3.2vw;
    bottom: 1.9vw;
  }
}
.page .services__nav__link .band span {
  font-size: 3.6rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page .services__nav__link .band span {
    font-size: 3.2vw;
    font-weight: 400;
  }
}
.page .services .electrical {
  margin-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .page .services .electrical {
    margin-bottom: 24.7vw;
  }
}
.page .services .electrical__inner {
  margin: 0 auto;
  max-width: 1260px;
}
@media screen and (max-width: 1300px) {
  .page .services .electrical__inner {
    padding: 0 20px;
  }
}
.page .services .electrical__ttl {
  font-size: 4.2rem;
  font-weight: bold;
  margin: 0 auto 200px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page .services .electrical__ttl {
    margin: 0 auto 7.8vw;
  }
}
.page .services .electrical__ttl span {
  margin: 0 auto;
}
.page .services .electrical__ttl:after {
  content: "";
  display: block;
  width: 362px;
  border-bottom: 4px solid #ed604b;
  padding-bottom: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .services .electrical__ttl:after {
    width: 100%;
  }
}
.page .services .electrical__contents .block {
  max-width: 1092px;
  margin: 0 auto 40px;
  position: relative;
}
.page .services .electrical__contents .block .box {
  background: #ed604b;
  padding: 67px 0 160px 30px;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .page .services .electrical__contents .block .box {
    max-width: 100%;
    padding: 67px 0 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .page .services .electrical__contents .block .box {
    order: 2;
    background: #ed604b;
    width: 100%;
    padding: 30px 30px 35px 30px;
  }
}
.page .services .electrical__contents .block .box p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
.page .services .electrical__contents .block picture {
  float: right;
  width: 755px;
  order: 2;
  position: absolute;
  top: -53px;
  right: -55px;
  filter: drop-shadow(8px 8px 3px rgba(0, 0, 0, 0.62));
}
@media screen and (max-width: 1300px) {
  .page .services .electrical__contents .block picture {
    right: 0;
    position: relative;
    width: 60%;
  }
}
@media screen and (max-width: 1120px) {
  .page .services .electrical__contents .block picture {
    top: -20px;
  }
}
@media screen and (max-width: 768px) {
  .page .services .electrical__contents .block picture {
    float: none;
    position: relative;
    right: auto;
    order: 1;
    width: 100%;
    top: 0px;
  }
}
.page .services .electrical__contents .photos {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .page .services .electrical__contents .photos {
    gap: 10px;
  }
}
.page .services .electrical__contents .photos picture {
  filter: drop-shadow(8px 8px 3px rgba(0, 0, 0, 0.62));
}
.page .services .renovation {
  margin-bottom: 240px;
}
@media screen and (max-width: 768px) {
  .page .services .renovation {
    margin-bottom: 23.4vw;
  }
}
.page .services .renovation__inner {
  margin: 0 auto;
  max-width: 1260px;
}
@media screen and (max-width: 1300px) {
  .page .services .renovation__inner {
    padding: 0 20px;
  }
}
.page .services .renovation__ttl {
  font-size: 4.2rem;
  font-weight: bold;
  margin: 0 auto 200px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page .services .renovation__ttl {
    margin: 0 auto 7.8vw;
  }
}
.page .services .renovation__ttl span {
  margin: 0 auto;
}
.page .services .renovation__ttl:after {
  content: "";
  display: block;
  width: 362px;
  border-bottom: 4px solid #ed604b;
  padding-bottom: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .services .renovation__ttl:after {
    width: 100%;
  }
}
.page .services .renovation__contents .block {
  max-width: 1092px;
  margin: 0 auto 40px;
  position: relative;
}
.page .services .renovation__contents .block .box {
  background: #ed604b;
  padding: 67px 0 160px 30px;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .page .services .renovation__contents .block .box {
    max-width: 100%;
    padding: 67px 0 60px 30px;
  }
}
@media screen and (max-width: 768px) {
  .page .services .renovation__contents .block .box {
    order: 2;
    background: #ed604b;
    width: 100%;
    padding: 30px 30px 35px 30px;
  }
}
.page .services .renovation__contents .block .box p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
}
.page .services .renovation__contents .block picture {
  float: right;
  width: 755px;
  order: 2;
  position: absolute;
  top: -53px;
  right: -55px;
  filter: drop-shadow(8px 8px 3px rgba(0, 0, 0, 0.62));
}
@media screen and (max-width: 1300px) {
  .page .services .renovation__contents .block picture {
    right: 0;
    position: relative;
    width: 60%;
  }
}
@media screen and (max-width: 1120px) {
  .page .services .renovation__contents .block picture {
    top: -20px;
  }
}
@media screen and (max-width: 768px) {
  .page .services .renovation__contents .block picture {
    float: none;
    position: relative;
    right: auto;
    order: 1;
    width: 100%;
    top: 0px;
  }
}
.page .services .renovation__contents .photos {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .page .services .renovation__contents .photos {
    gap: 10px;
  }
}
.page .services .renovation__contents .photos picture {
  filter: drop-shadow(8px 8px 3px rgba(0, 0, 0, 0.62));
}
.page .services .portfolio__ttl {
  font-size: 4.2rem;
  font-weight: bold;
  margin: 0 auto 130px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page .services .portfolio__ttl {
    margin-bottom: 13vw;
  }
}
.page .services .portfolio__ttl span {
  margin: 0 auto;
}
.page .services .portfolio__ttl:after {
  content: "";
  display: block;
  width: 362px;
  border-bottom: 4px solid #ed604b;
  padding-bottom: 15px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page .services .portfolio__ttl:after {
    width: 100%;
  }
}
.page .services .portfolio__inner {
  max-width: 90rem;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .page .services .portfolio__inner {
    padding: 0 20px;
  }
}
.page .services .portfolio__contents {
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .page .services .portfolio__contents {
    padding-bottom: 20vw;
  }
}
.page .services .portfolio__contents .block {
  width: 90rem;
}
@media screen and (max-width: 768px) {
  .page .services .portfolio__contents .block {
    max-width: 70rem;
  }
}
.page .services .portfolio__contents .block .ttl {
  background: #727171;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 20px 80px 15px;
}
@media screen and (max-width: 768px) {
  .page .services .portfolio__contents .block .ttl {
    padding: 20px 40px 15px;
  }
}
.page .services .portfolio__contents .block .box {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 20px 80px 70px;
}
@media screen and (max-width: 768px) {
  .page .services .portfolio__contents .block .box {
    padding: 20px 40px 70px;
  }
}
.page .services .portfolio__contents .block .flex {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .page .services .portfolio__contents .block .flex {
    margin: 0;
  }
}
.page .services .portfolio__contents .block .flex .year {
  width: 23%;
}
.page .services .portfolio__contents .block .flex .client {
  width: 57%;
}
@media screen and (max-width: 450px) {
  .page .services .portfolio__contents .block .flex .client {
    width: 44%;
  }
}
.page .services .portfolio__contents .block .flex .place {
  width: 20%;
}
.page .services .portfolio__wrap {
  overflow-x: auto;
  scrollbar-width: none;
}
.page .services .portfolio__wrap::-webkit-scrollbar {
  display: none;
}
.page .services .portfolio__wrap .scroll-hint-icon {
  top: 0;
  left: 0;
}

.notfound__inner {
  padding: 290px 0 300px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .notfound__inner {
    padding: 160px 0px 230px;
  }
}
.notfound__inner h1 {
  font-size: 90px;
  text-align: center;
  margin-bottom: 27px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .notfound__inner h1 {
    font-size: 62px;
  }
}
.notfound__inner p {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .notfound__inner p {
    font-size: 13px;
  }
}

body:has(.notfound) .header__right nav.drawer-nav ul li a {
  color: #000;
}
body:has(.notfound).drawer-open .header__right nav.drawer-nav ul li a {
  color: #fff;
}
body:has(.notfound) .footer {
  background-color: #efefef;
}

body:has(.recruit-lp) .header {
  z-index: 22;
}
body:has(.recruit-lp) .page .mv {
  margin-bottom: 0;
}
body:has(.recruit-lp) .page .message {
  background-color: transparent;
}
body:has(.recruit-lp) .footer {
  width: auto;
}
body:has(.recruit-lp) .footer p {
  text-align: left;
}/*# sourceMappingURL=base.css.map */