/* 
----------------------------------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-size: 18px;
  color: #FFF;
}

.bg-gradation {
  background-image: linear-gradient(0deg, rgba(40, 42, 81, 1), rgba(8, 6, 6, 1));
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1 {
  margin: 0;
}

h2 {
  margin: 0 0 40px;
  font-size: 70px;
}

h3 {
  margin: 0 0 35px;
  font-size: 28px;
  font-weight: 400;
}

h4 {
  margin: 0 0 30px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 3px;
}

p {
  margin: 0;
}

a {
  color: #FFF;
  text-decoration: none;
  transition: all .5s ease;
}

a:hover {
  opacity: 0.8;
}

figure {
  margin: 0;
  line-height: 0;
}

img {
  max-width: 100%;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

main {
  padding-top: 200px;
  background-color: rgba(40, 42, 81, 1);
}

.column {
  display: flex;
  flex-wrap: wrap;
}

.inner {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

.sp-hidden {
  display: block;
}

.sp-block {
  display: none;
}

@media screen and (max-width:1280px) {
  main {
    padding-top: 0;
  }
}

@media screen and (max-width:1000px) {
  body {
    font-size: 15px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }

  h4 {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .sp-hidden {
    display: none;
  }

  .sp-block {
    display: block;
  }
}

/* header
----------------------------------*/

header {
  position: fixed;
  z-index: 9999;
  top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  height: 200px;
  padding-left: 40px;
  background-color: rgba(40, 42, 81, 1);
  transition: all .5s ease;
}

header .menu-btn {
  display: none;
  z-index: 1;
}

header .menu-wrap {
  width: 100%;
}

header .menu .menu-inner {
  align-items: center;
  justify-content: space-between;
  height: 200px;
}

header .menu .menu-inner .logo-wrap {
  align-items: center;
}

header .menu .menu-inner .logo-wrap .logo {
  line-height: 0;
}

header .menu .menu-inner .logo-wrap .catchphrase {
  padding: 6px 0 10px;
  margin-left: 45px;
  letter-spacing: 1px;
  border-top: solid 1px #FFF;
  border-bottom: solid 1px #FFF;
}

header .menu .menu-inner .logo-wrap .catchphrase p {
  font-size: 16px;
  line-height: 1.6;
}

header .menu .menu-inner .gnav {
  align-items: center;
  height: 100%;
}

header .menu .menu-inner .gnav ul.outside-link {
  justify-content: center;
  margin-bottom: 20px;
}

header .menu .menu-inner .gnav ul.outside-link li {
  width: 155px;
  margin: 0 10px;
  text-align: center;
}

header .menu .menu-inner .gnav ul.outside-link li a {
  display: block;
  padding: 1px 0 5px;
  font-size: 18px;
  font-weight: 500;
  border: solid 1px #FFF;
  transition: all .5s ease;
}

header .menu .menu-inner .gnav ul.outside-link li a:hover {
  background-color: #FFF;
  color: #000;
}

header .menu .menu-inner .gnav .nav-wrap {
  padding-right: 10px;
}

header .menu .menu-inner .gnav nav ul {
  justify-content: flex-end;
}

header .menu .menu-inner .gnav nav ul li {
  padding: 0 20px;
}

header .menu .menu-inner .gnav nav ul li a {
  display: block;
  font-size: 16px;
}

header .menu .menu-inner .gnav .contact {
  display: flex;
  align-items: center;
  height: 100%;
  background-image: radial-gradient(circle at 50% 0%, rgba(13, 172, 244, 1), rgba(0, 42, 67, 1));
}

header .menu .menu-inner .gnav .contact a.tel-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 15px 0 35px;
}

header .menu .menu-inner .gnav .contact a.tel-wrap p {
  font-size: 19px;
}

header .menu .menu-inner .gnav .contact a.tel-wrap p.tel {
  margin-left: -15px;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1;
  transform: scaleX(0.9);
}

header .sp-header {
  display: none;
}

/* スクロールで発火 */
@media screen and (min-width:1281px) {
  header.is-scrolled {
    height: 80px;
  }

  header.is-scrolled .menu .menu-inner {
    height: 80px;
  }

  header.is-scrolled .menu .menu-inner .logo-wrap .logo img {
    width: 180px;
  }

  header.is-scrolled .menu .menu-inner .logo-wrap .catchphrase {
    display: none;
  }

  header.is-scrolled .menu .menu-inner .gnav ul.outside-link {
    margin-bottom: 5px;
  }

  header.is-scrolled .menu .menu-inner .gnav ul.outside-link li a {
    padding: 0px 0 3px;
    font-size: 15px;
  }

  header.is-scrolled .menu .menu-inner .gnav nav ul li a {
    font-size: 13px;
  }

  header.is-scrolled .menu .menu-inner .gnav .contact a.tel-wrap p.tel {
    font-size: 30px;
  }

  header.is-scrolled .menu .menu-inner .gnav .contact a.tel-wrap p {
    font-size: 14px;
  }
}

@media screen and (max-width:1600px) {
  header .menu .menu-inner .logo-wrap .catchphrase {
    display: none;
  }
}

@media screen and (max-width:1280px) {
  header {
    display: block;
    height: 50px !important;
    padding-left: 0;
  }

  /* アニメーション前のメニューの状態 */
  header .menu {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: opacity .3s linear;
    width: 100%;
    height: 100vh;
    opacity: 1;
    background-color: #0D2046;
    transform: translateX(-100%);
    transition: all .5s ease;
  }

  /* アニメーション後のメニューの状態 */
  header .menu.is-active {
    pointer-events: auto;
    transform: translateX(0);
    transition: all .5s ease;
    overflow: auto;
  }

  header .menu .menu-inner {
    display: block;
    position: absolute;
    top: 65px;
    bottom: 0;
    left: 0;
    right: 0;
    width: fit-content;
    height: fit-content;
    margin: 0 auto;
  }

  header .menu-btn {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-image: radial-gradient(circle at 50% 0%, rgba(13, 172, 244, 1), rgba(0, 42, 67, 1));
  }

  header .openbtn {
    position: relative;
    cursor: pointer;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  header .openbtn>div {
    position: relative;
    width: 40px;
    height: 9px;
  }

  header .openbtn>p {
    margin-top: 6px;
    font-family: var(--mincho-font_family);
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
  }

  /*ボタン内側*/
  header .openbtn span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    height: 1px;
    background: #FFF;
    width: 40px;
  }

  header .openbtn span:nth-of-type(1) {
    top: 0;
  }

  header .openbtn span:nth-of-type(2) {
    bottom: 0;
  }

  header .openbtn.active span:nth-of-type(1) {
    transform: translateY(2px) rotate(-20deg);
    top: 3px;
  }

  header .openbtn.active span:nth-of-type(2) {
    transform: translateY(-4px) rotate(20deg);
  }

  header .menu .menu-inner #gnav {
    position: relative;
    height: auto;
  }

  header .menu .menu-inner .logo-wrap {
    display: block;
  }

  header .menu .menu-inner .logo-wrap .logo {
    width: fit-content;
    margin: 0 auto 20px;
  }

  header .menu .menu-inner .logo-wrap .catchphrase {
    display: block !important;
    margin-left: 0;
    margin-bottom: 30px;
    text-align: center;
  }

  header .menu .menu-inner .logo-wrap .catchphrase p {
    font-size: 14px;
  }

  header .menu .menu-inner .gnav ul.outside-link {
    display: block;
  }

  header .menu .menu-inner .gnav ul.outside-link li {
    width: 200px;
    margin: 0 auto 15px;
  }

  header .menu .menu-inner .gnav {
    display: block;
  }

  header .menu .menu-inner .gnav .nav-wrap {
    margin-bottom: 20px;
  }

  header .menu .menu-inner .gnav nav ul li {
    width: 50%;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  header .menu .menu-inner .gnav nav ul li a {
    padding: 10px 0;
  }

  header .menu .menu-inner .gnav .contact {
    width: 90%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }

  header .menu .menu-inner .gnav .contact a.tel-wrap {
    display: block;
    padding: 10px 15px;
  }

  header .menu .menu-inner .gnav .contact a.tel-wrap p {
    font-size: 15px;
    text-align: center;
  }

  header .menu .menu-inner .gnav .contact a.tel-wrap p.tel {
    margin-left: 0;
    font-size: 28px;
    transform: scaleX(1);
  }

  header .sp-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 15px;
  }

  header .sp-header .sp-logo {
    width: calc(100% - 100px);
    line-height: 0;
  }

  header .sp-header .sp-logo a {
    display: block;
    width: fit-content;
  }

  header .sp-tel {
    width: 50px;
    height: 50px;
    background-color: #FFF;
  }

  header .sp-tel a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

}

@media screen and (max-width:1000px) {
  header .menu .menu-inner .gnav ul.outside-link li a {
    font-size: 16px;
  }
}

/* hero
----------------------------------*/
#hero {
  height: 700px;
}

#hero .inner {
  position: relative;
  z-index: 0;
  align-items: center;
  max-width: 1730px;
  margin-right: 0;
}

#hero .inner:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 1226px;
  max-width: 100%;
  height: 701px;
  background-image: url(../img/hero-bg-x.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

#hero h1 {
  width: 570px;
  padding-left: 70px;
}

#hero .img-wrap {
  width: calc(100% - 570px);
}

#hero .img-wrap img {
  height: 700px;
  object-fit: cover;
  object-position: left;
}

@media screen and (max-width:1280px) {
  #hero {
    height: 550px;
  }

  #hero .inner:before {
    height: 550px;
  }

  #hero h1 {
    width: 300px;
    padding-left: 0px;
  }

  #hero h1 img {
    width: 300px;
  }

  #hero .img-wrap {
    width: calc(100% - 300px);
  }

  #hero .img-wrap img {
    height: 550px;
  }
}

@media screen and (max-width:768px) {
  #hero {
    height: auto;
  }

  #hero .inner {
    display: block;
    width: 100%;
    padding-top: 100px;
  }

  #hero .inner:before {
    height: 352px;
    background-position: center;
  }

  #hero h1 {
    margin: 0 auto 50px;
  }

  #hero .img-wrap {
    width: 100%;
  }

  #hero .img-wrap img {
    height: 300px;
    object-position: bottom left;
  }
}

/* intro
----------------------------------*/
#intro {
  position: relative;
  z-index: 0;
  padding: 150px 0 200px;
  margin-bottom: 220px;
  text-align: center;
}

#intro:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 775px;
  height: 662px;
  background-image: url(../img/intro-bg-left.webp);
  background-repeat: no-repeat;
  background-size: 100%;
}

#intro::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 775px;
  height: 662px;
  background-image: url(../img/intro-bg-right.webp);
  background-repeat: no-repeat;
  background-size: 100%;
}

#intro h2 {
  font-size: 40px;
  font-weight: 400;
}

#intro p {
  font-size: 20px;
  font-weight: 100;
  line-height: 2.5;
}

@media screen and (max-width:1280px) {
  #intro:before {
    width: 400px;
    max-width: 100%;
    height: 340px;
  }

  #intro::after {
    top: auto;
    bottom: 0;
    width: 400px;
    max-width: 100%;
    height: 340px;
  }
}

@media screen and (max-width:1000px) {
  #intro {
    margin-bottom: 50px;
  }

  #intro h2 {
    padding-left: 20px;
    font-size: 28px;
  }

  #intro p {
    font-size: 17px;
    line-height: 2;
  }
}

@media screen and (max-width:768px) {
  #intro {
    padding-bottom: 220px;
  }

  #intro:before {
    content: none;
  }

  #intro::after {
    width: 320px;
    height: 240px;
  }
}

/* feature-wrap
----------------------------------*/
.feature-wrap {
  margin-bottom: 250px;
}

.feature-wrap h3 {
  letter-spacing: 2px;
}

.feature-wrap .title-wrap {
  margin-bottom: 100px;
  text-align: center;
}

.feature-wrap .title-wrap h2 {
  margin-top: 60px;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 1px;
}

.feature-wrap .title-wrap p {
  letter-spacing: 2px;
}

.feature-wrap .title-wrap p.feature {
  position: relative;
  width: fit-content;
  padding-bottom: 12px;
  margin: 0 auto 3px;
  font-size: 25px;
  letter-spacing: 4px;
}

.feature-wrap .title-wrap p.feature:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  width: calc(100% + 20px);
  height: 1px;
  background-color: #FFF;
}

.feature-wrap .title-wrap p.number {
  font-family: "Roboto", sans-serif;
  font-size: 196px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0;
  transform: scaleX(0.9);
}

.feature-wrap ul.detail-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 90px;
}

.feature-wrap ul.detail-list li:nth-of-type(even) {
  flex-flow: row-reverse;
}

.feature-wrap ul.detail-list li figure {
  width: 533px;
  line-height: 0;
}

.feature-wrap ul.detail-list li .text-wrap {
  width: calc(100% - 533px);
}

.feature-wrap ul.detail-list li:nth-of-type(odd) .text-wrap {
  padding-left: 25px;
}

.feature-wrap ul.detail-list li:nth-of-type(even) .text-wrap {
  padding-right: 25px;
}

.feature-wrap ul.detail-list li .text-wrap p {
  font-weight: 200;
  line-height: 1.9;
}

.feature-wrap ul.detail-list-column {
  display: flex;
  flex-wrap: wrap;
  gap: 54px;
}

.feature-wrap ul.detail-list-column li {
  width: calc((100% - 54px) / 2);
}

.feature-wrap ul.detail-list-column li figure {
  margin-bottom: 10px;
}

.feature-wrap ul.detail-list-column li .text-wrap p {
  font-weight: 200;
}

@media screen and (max-width:1000px) {
  .feature-wrap {
    margin-bottom: 120px;
  }

  .feature-wrap .title-wrap {
    margin-bottom: 60px;
  }

  .feature-wrap .title-wrap h2 {
    margin: 30px 0 10px;
  }

  .feature-wrap .title-wrap p.number {
    font-size: 100px;
  }

  .feature-wrap .title-wrap p.feature {
    padding-bottom: 7px;
    font-size: 20px;
  }

  .feature-wrap ul.detail-list-column {
    gap: 15px;
  }

  .feature-wrap ul.detail-list-column li {
    width: calc((100% - 15px) / 2);
  }

  .feature-wrap ul.detail-list-column li .text-wrap p {
    font-size: 13px;
  }

  .feature-wrap ul.detail-list li {
    display: block;
  }

  .feature-wrap ul.detail-list li figure {
    margin: 0 auto 25px;
    width: 100%;
    max-width: 533px;
  }

  .feature-wrap ul.detail-list li .text-wrap {
    width: 100%;
  }

  .feature-wrap ul.detail-list li:nth-of-type(odd) .text-wrap {
    padding-left: 0;
  }

  .feature-wrap ul.detail-list li:nth-of-type(even) .text-wrap {
    padding-right: 0;
  }
}

/* after-service
----------------------------------*/
#after-service {
  position: relative;
  z-index: 0;
}

#after-service::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -200px;
  left: 0;
  right: 0;
  width: 1920px;
  max-width: 100%;
  height: 2948px;
  margin: 0 auto;
  background-image: url(../img/after-service-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
}

/* warranty
----------------------------------*/
#warranty {
  position: relative;
  z-index: 0;
}

#warranty::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 490px;
  left: 0;
  right: 0;
  width: 1920px;
  max-width: 100%;
  height: 4555px;
  margin: 0 auto;
  background-image: url(../img/warranty-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
}

/* initiative
----------------------------------*/
#initiative {
  position: relative;
  z-index: 0;
}

#initiative::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 780px;
  left: 0;
  right: 0;
  width: 1920px;
  max-width: 100%;
  height: 2948px;
  margin: 0 auto;
  background-image: url(../img/initiative-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
}

/* work-cost
----------------------------------*/
#work-cost {
  position: relative;
  padding-bottom: 200px;
}

#work-cost .title-wrap {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 0;
  height: 250px;
  margin-bottom: 60px;
  background-color: #000;
}

#work-cost .title-wrap:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 1227px;
  max-width: 70%;
  height: 250px;
  background-image: url(../img/work-cost-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
  pointer-events: none;
}

#work-cost .title-wrap .title-inner {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

#work-cost .title-wrap .title-inner h2 {
  margin-bottom: 10px;
  font-family: "Roboto",
    sans-serif;
  font-weight: 300;
  line-height: 1;
}

#work-cost .title-wrap .title-inner p {
  letter-spacing: 4px;
}

#work-cost .inner {
  max-width: 1400px;
}

#work-cost .price-wrap>.column {
  gap: 80px;
}

#work-cost .price-wrap>.column .left-box {
  width: calc((100% - 80px) / 2);
}

#work-cost .price-wrap>.column .right-box {
  width: calc((100% - 80px) / 2);
}

#work-cost .price-wrap>.column ul li {
  margin-bottom: 90px;
}

#work-cost .price-wrap>.column ul li h3 {
  margin-bottom: 20px;
}

#work-cost .price-wrap>.column ul li p {
  font-weight: 200;
}

#work-cost .price-wrap>.column ul li p.mb-10 {
  margin-bottom: 10px;
}

#work-cost .price-wrap>.column ul li>p {
  margin-bottom: 40px;
}

#work-cost .price-wrap>.column ul li p a {
  color: #F4E511;
}

#work-cost .price-wrap>.column ul li .price-list dl {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0 10px 20px;
  border-bottom: solid 1px #FFF;
}

#work-cost .price-wrap>.column ul li .price-list dl:first-of-type {
  border-top: solid 1px #FFF;
}

#work-cost .price-wrap>.column ul li .price-list dl dt {
  width: 300px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 200;
}

#work-cost .price-wrap>.column ul li .price-list dl dd {
  width: calc(100% - 300px);
  padding-left: 25px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 200;
}

#work-cost .price-wrap>.column ul li .price-list dl dd.column p:not(:last-of-type) {
  margin-right: 30px;
}

#work-cost .price-wrap>.column ul li .price-list dl dd span {
  font-size: 18px;
}

#work-cost .price-wrap>.column ul li .caution {
  padding-top: 10px;
  font-size: 18px;
}

#work-cost .price-wrap>.column ul li .border {
  padding-bottom: 20px;
  border-bottom: solid 1px #FFF;
}

#work-cost .price-wrap ul.single-list li .price-list dl {
  display: flex;
  flex-wrap: wrap;
  padding: 8px 0 8px 20px;
  border-bottom: solid 1px #FFF;
}

#work-cost .price-wrap ul.single-list li .price-list dl:first-of-type {
  border-top: solid 1px #FFF;
}

#work-cost .price-wrap>ul.single-list li .price-list dl dt {
  width: calc(100% - 325px);
  font-size: 20px;
}

#work-cost .price-wrap ul.single-list li .price-list dl dd {
  width: 325px;
  padding-left: 25px;
  font-size: 20px;
}

#work-cost .price-wrap>.column ul li .info-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

#work-cost .price-wrap>.column ul li .info-box .text-wrap {
  width: 55%;
}

#work-cost .price-wrap>.column ul li .info-box .img-wrap {
  width: 45%;
  max-width: 330px;
  padding-top: 15px;
  padding-left: 20px;
}

#work-cost .price-wrap>.column ul li .info-box-single figure {
  max-width: 300px;
  margin-bottom: 15px;
}

#work-cost .price-wrap p.excluding-tax {
  text-align: center;
  font-size: 18px;
}

#work-cost .goonetpit {
  width: 100%;
  max-width: 900px;
  padding: 30px 20px 40px;
  margin: 40px auto 0;
  text-align: center;
  border: solid 1px #FFF;
}

#work-cost .goonetpit .button {
  width: 260px;
  margin: 30px auto 0;
}

#work-cost .goonetpit .button a {
  display: block;
  padding: 5px 25px;
  background-color: #FFF;
  color: #0D2046;
  border: solid 1px #FFF;
  font-size: 20px;
  font-weight: 700;
}

#work-cost .goonetpit .button a:hover {
  transition: all .5s ease;
  background-color: #0D2046;
  color: #FFF;
}

@media screen and (max-width:1280px) {
  #work-cost .price-wrap>.column {
    gap: 0;
  }

  #work-cost .price-wrap>.column .left-box {
    width: 100%;
  }

  #work-cost .price-wrap>.column .right-box {
    width: 100%;
  }
}

@media screen and (max-width:1000px) {
  #work-cost {
    padding-bottom: 70px;
  }

  #work-cost .title-wrap {
    height: 170px;
    margin-bottom: 30px;
  }

  #work-cost .title-wrap:after {
    max-width: 85%;
    height: 170px;
  }

  #work-cost .price-wrap>.column ul li {
    margin-bottom: 40px;
  }

  #work-cost .price-wrap>.column ul li h3 {
    margin-bottom: 12px;
  }

  #work-cost .price-wrap>.column ul li .caution {
    font-size: 14px;
  }

  #work-cost .price-wrap>.column ul li .price-list dl {
    padding-left: 10px;
  }

  #work-cost .price-wrap>.column ul li .price-list dl dt {
    width: 220px;
    font-size: 15px;
  }

  #work-cost .price-wrap>.column ul li .price-list dl dd {
    width: calc(100% - 220px);
    font-size: 15px;
  }

  #work-cost .price-wrap>.column ul li .price-list dl dd span {
    font-size: 11px;
  }

  #work-cost .price-wrap p.excluding-tax {
    text-align: center;
    font-size: 16px;
  }
}

@media screen and (max-width:768px) {
  #work-cost .price-wrap>.column ul li .price-list dl dt {
    width: 150px;
  }

  #work-cost .price-wrap>.column ul li .price-list dl dd {
    width: calc(100% - 150px);
  }

  #work-cost .price-wrap>.column ul li .info-box .text-wrap {
    width: 100%;
    margin-bottom: 15px;
  }

  #work-cost .price-wrap>.column ul li .info-box .img-wrap {
    width: 100%;
    max-width: 533px;
    padding-top: 0;
    padding-left: 0;
    margin: 0 auto;
  }

}

/* store-info
----------------------------------*/
#store-info {
  padding-bottom: 350px;
  background-color: #FFF;
  color: #000;
}

#store-info .gmap {
  margin-bottom: 60px;
}

#store-info .gmap iframe {
  width: 100%;
  height: 500px;
}

#store-info .inner {
  max-width: 760px;
}

#store-info .title-wrap {
  margin-bottom: 90px;
  text-align: center;
}

#store-info .title-wrap h2 {
  margin-bottom: 5px;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}

#store-info .title-wrap p {
  letter-spacing: 4px;
}

#store-info .detail dl {
  display: flex;
  flex-wrap: wrap;
  padding: 7px 0;
}

#store-info .detail dl dt {
  width: 260px;
  font-size: 20px;
}

#store-info .detail dl dd {
  width: calc(100% - 260px);
  padding-left: 20px;
  font-size: 20px;
}

@media screen and (max-width:1000px) {
  #store-info {
    padding-bottom: 150px;
  }

  #store-info .title-wrap {
    margin-bottom: 60px;
  }

  #store-info .gmap iframe {
    height: 300px;
  }
}

@media screen and (max-width:768px) {
  #store-info .detail dl {
    width: 100%;
    border-bottom: solid 1px #000;
  }

  #store-info .detail dl dt {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
  }

  #store-info .detail dl dd {
    width: 100%;
    padding-left: 0;
    font-size: 16px;
  }
}

/* sales-performance
----------------------------------*/
#sales-performance {
  padding-bottom: 200px;
}

#sales-performance .title-wrap {
  margin-bottom: 90px;
}

#sales-performance .title-wrap h2 {
  margin-top: 60px;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
}

#sales-performance .title-wrap p {
  letter-spacing: 2px;
  text-align: center;
}

#sales-performance .inner>p {
  margin-bottom: 50px;
  text-align: center;
}

#sales-performance ul.img-list {
  gap: 5px;
}

#sales-performance ul.img-list li {
  width: calc((100% - 10px) / 3);
  line-height: 0;
}

@media screen and (max-width:1000px) {
  #sales-performance {
    padding-bottom: 150px;
  }

  #sales-performance .title-wrap {
    margin-bottom: 60px;
  }

  #sales-performance .inner>p {
    margin-bottom: 40px;
    text-align: left;
  }
}

/* footer
----------------------------------*/
footer {
  padding: 75px 0 20px;
  background-color: #0D2046;
  text-align: center;
}

footer h2 {
  margin-bottom: 60px;
  line-height: 1;
}

footer .tel-wrap {
  margin-bottom: 30px;
}

footer .tel-wrap p {
  font-size: 19px;
}

footer .tel-wrap p.tel {
  font-family: "Roboto",
    sans-serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1;
  transform: scaleX(0.9);
}

footer .page-link {
  justify-content: center;
  margin-bottom: 35px;
}

footer ul.page-link li {
  padding: 0 30px;
}

footer ul.page-link li a {
  display: block;
  font-size: 16px;
}

footer ul.outside-link {
  justify-content: center;
  margin-bottom: 60px;
}

footer ul.outside-link li {
  width: 180px;
  margin: 0 10px;
}

footer ul.outside-link li a {
  display: block;
  padding: 1px 0 5px;
  font-size: 18px;
  font-weight: 500;
  border: solid 1px #FFF;
  transition: all .5s ease;
}

footer ul.outside-link li a:hover {
  background-color: #FFF;
  color: #0D2046;
}

footer .copyright {
  font-size: 13px;
}

@media screen and (max-width: 1000px) {
  footer {
    padding-top: 55px;
  }

  footer h2 {
    margin-bottom: 40px;
  }

  footer h2 img {
    width: 220px;
  }

  footer .tel-wrap p {
    font-size: 14px;
  }

  footer .tel-wrap p.tel {
    font-size: 30px;
  }

}

@media screen and (max-width: 768px) {
  footer .page-link {
    display: none;
  }

  footer ul.outside-link {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  footer ul.outside-link li {
    width: 200px;
    margin: 0 0 20px;
  }

  footer ul.outside-link li a {
    font-size: 16px;
  }
}