@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, main, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, main, section, summary {
  display: block;
}

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

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  line-height: 1.5;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  background: #e8e8e8;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

ul {
  list-style: none;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: 100%;
  color: #000000;
  background: transparent;
  -webkit-tap-highlight-color: rgba(230, 0, 0, 0.6);
  text-decoration: none;
}

a:focus {
  outline: none;
}

a:hover, a:active {
  text-decoration: none;
  color: #1a1a1a;
}

img {
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #999999;
}

::selection {
  color: #FFFFFF;
  background: #ff0101;
}

input::selection,
textarea::selection {
  color: #000000;
}

textarea {
  resize: vertical;
}

:placeholder-shown {
  color: rgba(0, 0, 0, 0.4);
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

:-moz-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.4);
}

::-moz-placeholder {
  opacity: 1;
  color: rgba(0, 0, 0, 0.4);
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.row {
  width: 90%;
  margin: auto;
}

@media only screen and (min-width: 1025px) {
  .row {
    max-width: 1200px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  -webkit-transition: .5s;
  transition: .5s;
}

body.is-active {
  opacity: 1;
  visibility: visible;
  background: url(images/bg_red.png) left top no-repeat #f7f7f7;
  background-size: 70%;
}

@media only screen and (min-width: 768px) {
  body.is-active {
    background-size: 40%;
  }
}

.pc-br {
  display: none;
}

@media only screen and (min-width: 768px) {
  .pc-br {
    display: block;
  }
}

.sp-br {
  display: block;
}

@media only screen and (min-width: 768px) {
  .sp-br {
    display: none;
  }
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  -webkit-transition: .2s;
  transition: .2s;
  height: 150px;
  z-index: 20;
}

@media only screen and (min-width: 768px) {
  .l-header {
    padding: 30px 50px;
  }
}

.l-header h1 {
  color: #FFFFFF;
  font-size: 8vw;
  line-height: 1.2;
  font-weight: 600;
}

@media only screen and (min-width: 768px) {
  .l-header h1 {
    font-size: 5rem;
  }
}

.l-header h1 span {
  display: block;
  font-size: 4vw;
}

@media only screen and (min-width: 768px) {
  .l-header h1 span {
    font-size: 1.8rem;
  }
}

.l-header .header-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 70%;
  display: none;
}

@media only screen and (min-width: 1025px) {
  .l-header .header-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-header .header-content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1vw;
}

.l-header .header-content ul li {
  white-space: nowrap;
}

.l-header .header-content ul li a {
  font-weight: 700;
  font-size: 1.8rem;
  margin-left: 5vw;
  position: relative;
}

.l-header .header-content ul li a::after {
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: '';
  width: 0%;
  height: 1px;
  background-color: #e60000;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.l-header .header-content ul li a:hover::after {
  width: 100%;
}

.l-header .tel-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  -webkit-transition: .2s;
  transition: .2s;
}

.l-header .tel-wrap .insta {
  font-size: 2rem;
}

.l-header .tel-wrap .tel {
  font-size: 3rem;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  margin-left: 40px;
}

.l-header .tel-wrap .tel::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f095";
  font-size: 1.8rem;
  margin-right: .5rem;
  position: relative;
  top: -1px;
}

.l-header.fixed {
  height: 65px;
  background: #fff;
  padding: 0;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
}

@media only screen and (min-width: 768px) {
  .l-header.fixed {
    height: 80px;
  }
}

.l-header.fixed h1 {
  font-size: 2rem;
  background: #e60000;
  padding: 10px 20px;
}

@media only screen and (min-width: 768px) {
  .l-header.fixed h1 {
    padding: 15px 50px;
    font-size: 2.5rem;
  }
}

.l-header.fixed h1 span {
  font-size: 1.4rem;
}

@media only screen and (min-width: 768px) {
  .l-header.fixed h1 span {
    font-size: 1.5rem;
  }
}

.l-header.fixed .header-content ul {
  padding: 15px 40px 15px 20px;
}

.l-header.fixed .tel-wrap {
  opacity: 0;
  height: 0;
}

#mv-wrapper {
  position: relative;
}

@media only screen and (min-width: 768px) {
  #mv-wrapper {
    height: 100vh;
    width: 100vw;
  }
}

#mv-wrapper .catch-en {
  position: absolute;
  font-weight: 600;
  font-size: 3.5vw;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  z-index: 10;
  color: #FFFFFF;
  z-index: 10;
  bottom: -100px;
  color: #000000;
  left: 20px;
}

@media only screen and (min-width: 768px) {
  #mv-wrapper .catch-en {
    font-size: 2rem;
    left: 60px;
    top: 200px;
    line-height: 2;
    color: #FFFFFF;
  }
}

#mv-wrapper h2 {
  position: absolute;
  z-index: 10;
  bottom: -50px;
}

@media only screen and (min-width: 768px) {
  #mv-wrapper h2 {
    bottom: 100px;
    left: 60px;
  }
}

#mv-wrapper h2 span {
  display: inline-block;
  font-size: clamp(23px, 3.5vw, 50px);
  background: #FFFFFF;
  margin-bottom: 10px;
  padding: 5px 10px;
}

@media only screen and (min-width: 768px) {
  #mv-wrapper h2 span {
    padding: 5px 20px;
    letter-spacing: .7rem;
  }
}

#mv {
  width: calc(100vw - 5vw);
  margin-left: 5vw;
}

@media only screen and (min-width: 768px) {
  #mv {
    width: calc(100vw - 15vw);
    margin-left: 15vw;
  }
}

#mv .bnr-insta {
  position: absolute;
  bottom: 30px;
  right: 90px;
  z-index: 10;
  width: 300px;
  display: none;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 768px) {
  #mv .bnr-insta {
    display: block;
  }
}

#mv .bnr-insta:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

#mv .side-fix {
  position: fixed;
  right: 0;
  bottom: 120px;
  z-index: 10;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  cursor: pointer;
  background: #e60000;
  color: #FFFFFF;
  padding: 25px 20px;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: .4rem;
  font-size: 1.8rem;
  -webkit-transition: .3s;
  transition: .3s;
  display: none;
}

@media only screen and (min-width: 768px) {
  #mv .side-fix {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

#mv .side-fix:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

@media only screen and (min-width: 768px) {
  #mv .side-fix {
    display: block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

#mv .side-fix i {
  font-size: 2.2rem;
}

#mv .side-fix .line {
  display: block;
  width: 30px;
  height: 30px;
}

#mv .side-fix .icon-wrap {
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  position: relative;
  left: -2px;
}

#mv-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  height: calc(70vh - 100px);
  margin-top: 100px;
  height: calc(70dvh - 100px);
}

@media only screen and (min-width: 768px) {
  #mv-slider .swiper-wrapper {
    height: calc(100vh - 140px);
    margin-top: 140px;
    height: calc(100dvh - 140px);
  }
}

#mv-slider .swiper-wrapper .swiper-slide {
  min-width: 570px;
}

@media only screen and (min-width: 768px) {
  #mv-slider .swiper-wrapper .swiper-slide {
    min-width: auto;
  }
}

#mv-slider .swiper-wrapper .swiper-slide img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

section.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 85%;
  margin: auto;
  margin-top: 200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}

@media only screen and (min-width: 768px) {
  section.menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
    margin-top: 150px;
    width: 95%;
  }
}

@media only screen and (min-width: 1025px) {
  section.menu {
    width: 90%;
  }
}

section.menu .menu-box {
  background: #FFFFFF;
  position: relative;
  padding: 40px 50px 17vw;
  -webkit-filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.1));
  max-height: 450px;
  -webkit-transition: .5s;
  transition: .5s;
  margin-bottom: 60px;
}

@media only screen and (min-width: 768px) {
  section.menu .menu-box {
    width: 30%;
    padding: 50px 20px;
    margin-bottom: 0;
    aspect-ratio: 1 / 1;
  }
}

@media only screen and (min-width: 1025px) {
  section.menu .menu-box {
    padding: 60px 60px;
    max-height: 400px;
  }
}

section.menu .menu-box:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

section.menu .menu-box::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f107";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 30px;
}

section.menu .menu-box .icon {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 60px;
  top: -40px;
}

@media only screen and (min-width: 768px) {
  section.menu .menu-box .icon {
    width: 80px;
  }
}

section.menu .menu-box dl {
  text-align: center;
}

section.menu .menu-box dl dt {
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: .5rem;
}

section.menu .menu-box dl dd {
  color: #e60000;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 10px 0 20px;
}

@media only screen and (min-width: 768px) {
  section.menu .menu-box dl dd {
    margin: 10px 0 50px;
  }
}

section.greet {
  font-weight: 600;
  line-height: 2;
  font-size: 4vw;
  width: 90%;
  margin: 0px auto 0;
}

@media only screen and (min-width: 768px) {
  section.greet {
    font-size: 1.9rem;
    line-height: 3;
    text-align: center;
    margin: 100px auto 0;
  }
}

section.service {
  background: #FFFFFF;
  margin-top: 100px;
  padding-bottom: 100px;
}

@media only screen and (min-width: 768px) {
  section.service {
    margin-top: 150px;
    padding-bottom: 250px;
  }
}

.tit-sec {
  text-align: center;
  position: relative;
  top: -45px;
  margin-bottom: 80px;
}

@media only screen and (min-width: 768px) {
  .tit-sec {
    top: -110px;
  }
}

.tit-sec .tit-en {
  font-size: 14vw;
  font-weight: 700;
  color: #e60000;
  letter-spacing: .2rem;
}

@media only screen and (min-width: 768px) {
  .tit-sec .tit-en {
    font-size: 12rem;
    letter-spacing: .7rem;
  }
}

.tit-sec h3 {
  font-size: 6vw;
  letter-spacing: .2rem;
}

@media only screen and (min-width: 768px) {
  .tit-sec h3 {
    font-size: 3rem;
    letter-spacing: .7rem;
  }
}

.tit-sec::after {
  content: "";
  display: block;
  margin-top: -110px;
}

.service-block {
  position: relative;
}

.service-block.block-gas {
  margin-top: 70px;
}

@media only screen and (min-width: 768px) {
  .service-block.block-gas {
    margin-top: 100px;
  }
}

.service-block.block-reform {
  margin-top: 70px;
}

@media only screen and (min-width: 768px) {
  .service-block.block-reform {
    margin-top: 50px;
  }
}

@media only screen and (min-width: 768px) {
  .service-block.block-reform .tit-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: row-reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
  }
}

@media only screen and (min-width: 768px) {
  .service-block.block-reform .tit-wrap h4 {
    top: 80px;
  }
}

@media only screen and (min-width: 768px) {
  .service-block.block-reform .tit-wrap span {
    left: inherit;
    right: -60px;
    top: 65px;
  }
}

@media only screen and (min-width: 768px) {
  .service-block.block-reform .tit-wrap .exp {
    padding-top: 130px;
  }
}

.service-block.block-houseing {
  margin-top: 0px;
}

.service-block.block-houseing h4 {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .service-block.block-houseing h4 {
    top: 50px;
  }
}

@media only screen and (min-width: 768px) {
  .service-block.block-houseing span {
    white-space: nowrap;
    -webkit-transform-origin: left top;
    transform-origin: left top;
    left: 0;
    top: 40px;
  }
}

@media only screen and (min-width: 768px) {
  .service-block.block-houseing .exp {
    padding-top: 120px;
  }
}

.tit-wrap {
  max-width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  top: 30px;
}

@media only screen and (min-width: 768px) {
  .tit-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
    max-width: 80%;
  }
}

.tit-wrap h4 {
  position: relative;
  font-size: 7vw;
  letter-spacing: .2rem;
  background: #FFFFFF;
  border-left: 4px solid #e60000;
  z-index: 10;
  padding-left: 20px;
}

@media only screen and (min-width: 768px) {
  .tit-wrap h4 {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 30px 7px 45px 7px;
    border-top: 4px solid #e60000;
    font-size: 4.5rem;
    letter-spacing: 1rem;
    border-left: none;
  }
}

.tit-wrap h4 span {
  font-size: 5vw;
  color: #e60000;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  display: block;
}

@media only screen and (min-width: 768px) {
  .tit-wrap h4 span {
    position: absolute;
    left: -45px;
    top: 45px;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    letter-spacing: .3rem;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    font-size: 2.2rem;
  }
}

.tit-wrap .exp {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .tit-wrap .exp {
    width: 80%;
    line-height: 2.5;
    margin-bottom: 0;
  }
}

.info-box {
  border: 1px solid #e60000;
  max-width: 1100px;
  width: 90%;
  margin: 30px auto 0;
  padding: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff7f7;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}

@media only screen and (min-width: 768px) {
  .info-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
    margin: 100px auto 0;
  }
}

.info-box .tit-info {
  font-size: 5vw;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
  .info-box .tit-info {
    font-size: 2rem;
    width: 20%;
    margin-bottom: 0;
  }
}

.info-box .detail {
  padding: 0 10px;
}

@media only screen and (min-width: 768px) {
  .info-box .detail {
    width: 75%;
    border-left: 1px solid #e60000;
    padding: 0 30px;
  }
}

.info-box .detail ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.info-box .detail ul li {
  padding: 5px;
  padding-left: 1em;
  text-indent: -1.5em;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .info-box .detail ul li {
    width: 45%;
    padding: 10px;
  }
}

@media only screen and (min-width: 768px) {
  .info-box .detail ul li:nth-child(even) {
    width: 30%;
  }
}

@media only screen and (min-width: 768px) {
  .info-box .detail ul li:nth-child(odd) {
    width: 60%;
  }
}

.info-box .detail ul li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f058";
  color: #e60000;
  margin-right: .5rem;
  font-size: 1.8rem;
}

section.company .company-inner {
  background: #FFFFFF;
  max-width: 1000px;
  margin: 100px auto 0;
  padding: 30px;
  width: 95%;
}

@media only screen and (min-width: 768px) {
  section.company .company-inner {
    padding: 80px 100px;
    margin: 0px auto 0;
  }
}

section.company .company-inner dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
  padding-bottom: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}

@media only screen and (min-width: 768px) {
  section.company .company-inner dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
}

section.company .company-inner dl dt {
  width: 200px;
  font-weight: 700;
}

section.company .company-inner dl dd {
  width: 100%;
}

.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 65%;
  /* 比率を4:3に固定 */
  margin: 50px 0 0;
}

@media only screen and (min-width: 768px) {
  .map {
    padding-top: 45%;
    margin: 100px 0 0;
  }
}

/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section.recruit {
  padding: 100px 0;
  background: #FFFFFF;
}

@media only screen and (min-width: 768px) {
  section.recruit {
    padding: 150px 0;
  }
}

section.recruit dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
  padding-bottom: 25px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}

@media only screen and (min-width: 768px) {
  section.recruit dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row;
    -ms-flex-flow: row;
    flex-flow: row;
  }
}

@media only screen and (min-width: 768px) {
  section.recruit dl dt {
    width: 200px;
  }
}

section.recruit dl dd {
  width: 100%;
}

section.recruit .recruit-inner {
  background: #f9f9f9;
  max-width: 1100px;
  margin: auto;
  padding: 70px 0px 0 0px;
  position: relative;
  width: 95%;
}

@media only screen and (min-width: 768px) {
  section.recruit .recruit-inner {
    padding: 150px 80px 0 80px;
  }
}

section.recruit .recruit-inner .triangle {
  position: absolute;
  top: -40px;
  left: -140px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
  border-bottom: 100px solid #fff;
  border-top: 0;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

@media only screen and (min-width: 768px) {
  section.recruit .recruit-inner .triangle {
    border-right: 200px solid transparent;
    border-left: 200px solid transparent;
    border-bottom: 200px solid #fff;
    top: -100px;
    left: -200px;
  }
}

section.entry {
  position: relative;
}

section.entry a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  background: url(images/bg_rec.jpg) center top/cover no-repeat;
  padding: 50px 20px;
  aspect-ratio: 1 / .3;
  color: #FFFFFF;
  -webkit-transition: .3s;
  transition: .3s;
}

@media only screen and (min-width: 768px) {
  section.entry a {
    padding: 80px;
  }
}

section.entry a:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  opacity: .9;
}

section.entry .tit-entry {
  font-size: 5vw;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  section.entry .tit-entry {
    font-size: 2.5rem;
  }
}

section.entry i {
  font-size: 3rem;
}

@media only screen and (min-width: 768px) {
  section.entry i {
    font-size: 5rem;
  }
}

section.entry .entry-en {
  font-size: 10vw;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .3rem;
}

@media only screen and (min-width: 768px) {
  section.entry .entry-en {
    font-size: 8rem;
    letter-spacing: .7rem;
  }
}

section.entry .jp {
  font-size: 5vw;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  section.entry .jp {
    font-size: 2.5rem;
  }
}

section.insta a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFFFFF;
  padding: 50px 0;
  -webkit-transition: .3s;
  transition: .3s;
}

section.insta a:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

section.insta a dl dt {
  font-size: 4vw;
  text-align: center;
  font-weight: 900;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  section.insta a dl dt {
    font-size: 1.8rem;
  }
}

section.insta a dl dd img {
  width: 250px;
}

@media only screen and (min-width: 768px) {
  section.insta a dl dd img {
    width: 350px;
  }
}

.l-footer {
  background: #575757;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  color: #FFFFFF;
  padding: 80px 0;
}

.l-footer dl {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  .l-footer dl {
    margin-bottom: 50px;
  }
}

.l-footer dl dt {
  font-size: 1.5rem;
}

.l-footer dl dd {
  font-size: 2.5rem;
  letter-spacing: .1rem;
}

@media only screen and (min-width: 768px) {
  .l-footer dl dd {
    font-size: 3.5rem;
  }
}

.l-footer .add {
  text-align: center;
}

.l-footer .add .copy {
  margin-top: 50px;
}

@media only screen and (min-width: 768px) {
  .l-footer .add .copy {
    margin-top: 100px;
  }
}

/* タブ */
.tab-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-flow: wrap;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  margin: auto;
  padding: 0 5vw;
}

@media only screen and (min-width: 768px) {
  .tab-list {
    padding: 0 10vw;
  }
}

.tab-item {
  padding: 20px 0;
  background-color: #f2f2f2;
  color: #999;
  text-align: center;
  cursor: pointer;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  margin: 0 3px;
  width: 45%;
  margin-bottom: 15px;
  position: relative;
  border-radius: 100px;
}

@media only screen and (min-width: 768px) {
  .tab-item {
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 0;
  }
}

.tab-item.is-active::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 10px solid #e60000;
  border-bottom: 0;
  position: absolute;
  bottom: -8px;
  left: 50%;
  opacity: 1;
}

/* タブをクリックした時 ホバーした時 */
.tab-item:hover,
.tab-item.is-active {
  color: #FFFFFF;
  background: #e60000;
}

/* パネル */
.panel-list {
  max-width: 1000px;
  margin: 0px auto 0;
}

@media only screen and (min-width: 768px) {
  .panel-list {
    margin: 50px auto 0;
  }
}

.panel-list dl {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
}

@media only screen and (min-width: 768px) {
  .panel-list dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.panel-list dl dt {
  width: 200px;
  margin-bottom: 10px;
  font-weight: 900;
}

@media only screen and (min-width: 768px) {
  .panel-list dl dt {
    margin-bottom: 0;
  }
}

.panel-list dl dd {
  width: 100%;
}

.panel-item {
  display: none;
  width: 100%;
  padding: 40px 30px;
}

.panel-item.is-active {
  display: block;
  -webkit-animation: panel-show .9s ease-in-out forwards;
  animation: panel-show .9s ease-in-out forwards;
}

/* パネル切り替えのアニメーション */
@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.effect {
  opacity: 0;
}

.effect.is-active {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  /*--アニメーション名--*/
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  /*--時間--*/
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  /*--3秒後に開始--*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  /*--状態指定--*/
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

/*========= ハンバーガーメニュー ===============*/
.openbtn {
  position: fixed;
  z-index: 99999;
  /*ボタンを最前面に*/
  top: 5px;
  right: 10px;
  cursor: pointer;
  width: 70px;
  height: 65px;
  -webkit-transition: .5s;
  transition: .5s;
}

@media only screen and (min-width: 768px) {
  .openbtn {
    top: 10px;
  }
}

@media only screen and (min-width: 1025px) {
  .openbtn {
    display: none;
  }
}

.openbtn.active {
  position: fixed;
}

.openbtn.fixed {
  top: 18px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  -webkit-transition: all .6s;
  transition: all .6s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #000000;
  width: 55%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 27px;
}

.openbtn span:nth-of-type(3) {
  top: 39px;
}

.openbtn.active span:nth-of-type(1) {
  /*top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-35deg);
    width: 60%;
        background-color: $black;*/
  display: inline-block;
  -webkit-transition: all .6s;
  transition: all .6s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #000000;
  width: 55%;
  -webkit-transform: translateY(6px) rotate(-35deg);
  transform: translateY(6px) rotate(-35deg);
}

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

.openbtn.active span:nth-of-type(3) {
  /*top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(35deg);
    width: 60%;
    background-color: $black;*/
  display: inline-block;
  -webkit-transition: all .6s;
  transition: all .6s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #000000;
  width: 55%;
  -webkit-transform: translateY(-18px) rotate(35deg);
  transform: translateY(-18px) rotate(35deg);
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9999;
  /*ナビのスタート位置と形状*/
  top: 0;
  -webkit-transform: translate(100vw, 0);
  transform: translate(100vw, 0);
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #f7f7f7;
  /*動き*/
  -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.5s cubic-bezier(0, 0, 0.58, 1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: .5;
}

#g-nav .main-menu {
  padding: 120px 30px 0;
  font-size: 5.5vw;
  font-weight: 700;
}

@media only screen and (min-width: 768px) {
  #g-nav .main-menu {
    font-size: 1.8rem;
  }
}

#g-nav .main-menu li {
  margin-bottom: 30px;
}

#g-nav .main-menu li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f058";
  color: #e60000;
  margin-right: .5rem;
  font-size: 1.8rem;
}

#g-nav .tel-wrap {
  padding: 30px;
}

#g-nav .tel-wrap .insta {
  font-size: 2.5rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
}

#g-nav .tel-wrap .insta span {
  display: block;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 5vw;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@media only screen and (min-width: 768px) {
  #g-nav .tel-wrap .insta span {
    font-size: 1.8rem;
  }
}

#g-nav .tel-wrap .tel {
  font-size: 8vw;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  margin-top: 30px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  #g-nav .tel-wrap .tel {
    font-size: 3rem;
  }
}

#g-nav .tel-wrap .tel::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f095";
  font-size: 1.8rem;
  margin-right: .5rem;
  position: relative;
  top: -1px;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  -webkit-transform: translate(0px, 0);
  transform: translate(0px, 0);
  opacity: 1;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0px 30px 30px;
  z-index: 0;
}

#g-nav.panelactive #g-nav-list a {
  -webkit-transition: .5s;
  transition: .5s;
}

#g-nav.panelactive #g-nav-list a:hover {
  opacity: .5;
}

#gas-sec {
  margin-top: -100px;
  padding-top: 100px;
  display: block;
}

@media only screen and (min-width: 768px) {
  #gas-sec {
    margin-top: -100px;
    padding-top: 100px;
  }
}

#plumbing {
  margin-top: -100px;
  padding-top: 100px;
  display: block;
}

#reform {
  margin-top: -100px;
  padding-top: 100px;
  display: block;
}

@media only screen and (min-width: 768px) {
  #reform {
    margin-top: -100px;
    padding-top: 100px;
  }
}

#company {
  margin-top: -150px;
  padding-top: 150px;
}

.sp-fix {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #e60000;
}

.sp-fix .icon-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.sp-fix .icon-wrap .line {
  width: 20px;
  height: 20px;
}

.sp-fix .icon-wrap i {
  color: #FFFFFF;
  margin-right: .5rem;
}

.sp-fix a {
  color: #FFFFFF;
}

.sp-fix ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.sp-fix ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
  font-size: 2rem;
}

.sp-fix ul li:nth-child(1) {
  border-right: 1px solid #FFFFFF;
}

.sp-fix ul li a {
  display: block;
  padding: 10px;
}

@media only screen and (min-width: 768px) {
  .sp-fix {
    display: none;
  }
}

.swiper-pagination {
  position: relative !important;
  margin-top: 30px;
}

.swiper-pagination-bullet-active {
  background: #e60000 !important;
}

.swiper-pagination-bullet {
  border-radius: 0px !important;
  width: 40px !important;
  height: 2px !important;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
  z-index: 50;
}

.modal-content {
  background: white;
  padding: 10vw 5vw;
  border-radius: 12px;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}

@media only screen and (min-width: 768px) {
  .modal-content {
    padding: 50px;
  }
}

.modal-backdrop.active .modal-content {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.modal-content {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}

.modal-backdrop.active .modal-content {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.btn-wrap ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-wrap ul li {
  margin: 0px 40px;
}

.btn-wrap ul li span {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-weight: 700;
}

.btn-wrap ul li a {
  -webkit-transition: .5s;
  transition: .5s;
}

.btn-wrap ul li a:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.btn-wrap ul li.mail a {
  display: block;
  width: 70px;
  height: 70px;
  background: #e60000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  font-size: 3rem;
  color: #FFFFFF;
}

@media only screen and (min-width: 768px) {
  .btn-wrap ul li.mail a {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
}

.btn-wrap ul li.line a {
  display: block;
  width: 70px;
  height: 70px;
}

@media only screen and (min-width: 768px) {
  .btn-wrap ul li.line a {
    width: 80px;
    height: 80px;
  }
}

#closeBtn {
  font-size: 3rem;
  right: 0;
  position: absolute;
  top: -50px;
  color: #FFFFFF;
}

.sp-insta {
  position: fixed;
  top: 15px;
  right: 90px;
  z-index: 21;
  font-size: 2.5rem;
}

@media only screen and (min-width: 768px) {
  .sp-insta {
    display: none;
  }
}

.notfound {
  margin: 60vw 0 40vw;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .notfound {
    margin: 400px 0;
  }
}

.btn-base a {
  background: #e60000;
  display: block;
  width: 250px;
  text-align: center;
  padding: 15px;
  color: #FFFFFF;
  margin: 30px auto 0;
}
