@charset "UTF-8";
/*-----------------------jq----------------------------*/
.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 80px);
          transform: translate(0, 80px);
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.element, .element2, .element3 {
  opacity: 0;
}

/*-----------------------共通----------------------------*/
html {
  font-size: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7;
  color: #333;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

table {
  width: 100%;
}

.table-scroll {
  overflow: auto;
  /*tableをスクロールさせる*/
  white-space: nowrap;
  /*セルのテキストを折り返さない*/
}

.scroll::-webkit-scrollbar {
  /*スクロールバーの高さ*/
  height: 5px;
}

.scroll::-webkit-scrollbar-track {
  /*スクロールバーの背景色*/
  background: #F1F1F1;
}

.scroll::-webkit-scrollbar-thumb {
  /*スクロールバーの背景色*/
  background: #BCBCBC;
}

h2 {
  font-size: 70px;
  font-family: "游明朝","Yu Mincho",serif;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}

h2 span {
  font-size: 50px;
}

@media (max-width: 767px) {
  h2 span {
    font-size: 30px;
  }
}

a {
  display: block;
}

small {
  font-size: 14px;
}

.container-large {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}

.eng-title {
  color: #919191;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .eng-title {
    margin-bottom: 40px;
  }
}

.eng-title:before {
  display: inline-block;
  content: "";
  background-image: url(../img/line-eng.png);
  background-size: contain;
  width: 25px;
  height: 1px;
  vertical-align: middle;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .eng-title:before {
    display: none;
  }
}

.eng-title:after {
  display: inline-block;
  content: "";
  background-image: url(../img/line-eng.png);
  background-size: contain;
  width: 25px;
  height: 1px;
  vertical-align: middle;
  margin-left: 5px;
}

@media (max-width: 767px) {
  .eng-title:after {
    display: none;
  }
}

.sp-br {
  display: none;
}

@media (max-width: 1200px) {
  .sp-br {
    display: block;
  }
}

/*-----------------------ヘッダー----------------------------*/
.header {
  width: 100%;
  padding-left: 60px;
  position: fixed;
  top: 0;
  background: #fff;
  -webkit-box-shadow: 4px 4px 8px #C8C8C8;
          box-shadow: 4px 4px 8px #C8C8C8;
  z-index: 9999;
}

.header h1 {
  line-height: 0;
}

.header__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 90px;
}

.header .icon-tel, .header .icon-mail {
  display: none;
}

.header .relative {
  position: relative;
}

.header .relative img {
  width: 400px;
}

.header .relative img:last-of-type {
  position: absolute;
  top: 0;
  left: 0;
}

.header .relative img:last-of-type:hover {
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.header__contact {
  padding: 0 60px;
  background: #FC7622;
}

.header__tel {
  color: #fff;
  margin-right: 60px;
  font-size: 14px;
  font-family: 'Noto Serif JP', serif;
}

.header__tel p:first-of-type {
  border-bottom: 1px solid #fff;
  width: 235px;
}

.header__tel p:last-of-type {
  font-size: 24px;
}

.header__tel p:last-of-type span {
  font-size: 14px;
  margin-right: 5px;
}

@media (max-width: 1200px) {
  .header .icon-tel, .header .icon-mail {
    display: block;
  }
  .header .icon-tel img, .header .icon-mail img {
    width: 40px;
  }
  .header__contact {
    padding: 0;
    width: 300px;
  }
  .header__tel {
    margin-right: 0;
  }
  .header__tel p {
    display: none;
  }
  .header__web {
    width: 150px;
  }
  .header__web .relative {
    display: none;
  }
  .header .icon-tel {
    width: 150px;
    border-right: .1px solid #fff;
    height: 50px;
  }
  .header .icon-tel, .header .icon-mail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .icon-tel a, .header .icon-mail a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 90px;
  }
}

@media (max-width: 767px) {
  .header {
    padding-left: 20px;
  }
  .header .icon-tel img, .header .icon-mail img {
    width: 27px;
  }
  .header .icon-tel a, .header .icon-mail a {
    height: 70px;
  }
  .header__flex {
    height: 70px;
  }
  .header__contact {
    width: 140px;
    margin-left: 20px;
  }
  .header__web {
    width: 70px;
  }
  .header .icon-tel {
    width: 70px;
  }
}

/*--------------------------------MV-------------------------------*/
.main-pc {
  margin-top: 90px;
}

.main-sp {
  display: none;
  margin-top: 70px;
}

@media (max-width: 1200px) {
  .main-pc {
    display: none;
  }
  .main-sp {
    display: block;
  }
}

/*-----------------------新しい生活様式----------------------------*/
.lifestyle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px auto;
}

.lifestyle__comment-pc {
  width: 200px;
}

.lifestyle__comment-sp {
  display: none;
}

.lifestyle__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 40px;
  text-shadow: 4px 4px 8px #C8C8C8;
}

.lifestyle__sub-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-shadow: 4px 4px 8px #C8C8C8;
}

@media (max-width: 1200px) {
  .lifestyle {
    position: relative;
    display: block;
    margin: 100px auto;
  }
  .lifestyle__comment-pc {
    display: none;
  }
  .lifestyle__comment-sp {
    display: block;
    text-align: center;
    width: 60%;
    position: absolute;
    left: 50%;
    top: -75%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .lifestyle__comment-sp img {
    width: 100%;
  }
  .lifestyle__sub-title {
    margin-bottom: 20px;
  }
  .lifestyle__text {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .lifestyle br {
    display: none;
  }
  .lifestyle__comment-sp {
    width: 90%;
    top: -50%;
  }
  .lifestyle__title {
    font-size: 35px;
  }
  .lifestyle__sub-title {
    font-size: 19px;
  }
}

/*-----------------------光触媒とは----------------------------*/
.bg-orange {
  background: #FFF8F2;
  padding-top: 100px;
  padding-bottom: 100px;
}

.about__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
}

.about__sub-title {
  font-size: 40px;
  letter-spacing: 5px;
  margin-bottom: 40px;
}

.about__sub-title:first-letter {
  color: #FC7622;
  font-size: 60px;
}

.about__text p {
  margin-right: 60px;
  margin-bottom: 30px;
}

.about__text p:last-of-type {
  margin-bottom: 0;
}

.about__text span {
  font-size: 18px;
  font-weight: bold;
  background-image: url(../img/line.png);
  background-position: center 15px;
}

.about__illust {
  width: 540px;
}

.about__circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about__circle .wrapper {
  width: 260px;
  margin-right: 150px;
}

.about__circle .wrapper img {
  width: 100%;
}

.about__circle .wrapper:nth-of-type(3) {
  margin-right: 0;
}

.about__circle .wrapper:nth-of-type(4) {
  margin-top: 30px;
}

.about__circle .wrapper:nth-of-type(5) {
  margin-top: 30px;
  margin-right: 0;
}

@media (max-width: 1200px) {
  .about__text p {
    margin-right: 30px;
  }
  .about__text p br {
    display: none;
  }
  .about__illust {
    width: 350px;
  }
  .about__circle {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .about__circle .wrapper {
    width: 35%;
    margin-right: 0;
  }
  .about__circle .wrapper:nth-of-type(3) {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .bg-orange {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .about__flex {
    display: block;
  }
  .about__sub-title {
    font-size: 25px;
    letter-spacing: 3px;
  }
  .about__sub-title:first-letter {
    font-size: 45px;
  }
  .about__text p {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .about__illust {
    margin-top: 30px;
    width: 100%;
  }
  .about__circle .wrapper {
    width: 45%;
  }
}

/*-----------------------安心した空間づくり----------------------------*/
.space {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../img/bg-space.png);
  background-size: cover;
  background-position: center center;
}

.space__sub-title {
  font-size: 40px;
  letter-spacing: 5px;
  margin-bottom: 40px;
}

.space__sub-title:first-letter {
  color: #FC7622;
  font-size: 60px;
}

.space__text p {
  margin-bottom: 30px;
}

.space__text p:last-of-type {
  margin-bottom: 0;
}

.space__text span {
  font-size: 18px;
  font-weight: bold;
  background-image: url(../img/line.png);
  background-position: center 15px;
}

.space table {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 10px;
  border-collapse: collapse;
}

.space table th, .space table td {
  width: 20%;
  border: solid 1px #C8C8C8;
}

.space table th {
  font-size: 20px;
  font-weight: normal;
  background: #F6F2F2;
  height: 45px;
}

.space table td {
  background: #fff;
  height: 160px;
}

.space table .font-color, .space table span {
  color: #FC7622;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .space table th, .space table td {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .space__sub-title {
    font-size: 25px;
    letter-spacing: 3px;
  }
  .space__sub-title:first-letter {
    font-size: 45px;
  }
  .space__text p {
    margin-bottom: 20px;
  }
  .space__text p br {
    display: none;
  }
  .space .table-text br {
    display: none;
  }
  .space table th, .space table td {
    padding: 0 16px;
  }
  .space table td {
    height: 140px;
  }
}

/*-----------------------４大効果----------------------------*/
.effects {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../img/bg-effects.png);
  background-size: cover;
  background-position: center center;
}

.effects__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.effects__bottle-img {
  width: 540px;
  text-align: center;
}

.effects__bottle-img img {
  height: 380px;
}

.effects__number {
  font-size: 18px;
}

.effects__number span {
  font-size: 20px;
  font-family: 'Noto Serif JP', serif;
  margin-left: 3px;
}

.effects__title {
  display: inline-block;
  font-size: 26px;
  font-weight: medium;
  margin-bottom: 10px;
  background-image: url(../img/line.png);
  background-position: center 25px;
}

.effects__virus {
  border-bottom: 1px solid #F5843E;
  margin-left: 50px;
  padding-bottom: 50px;
}

.effects__fungus {
  margin-left: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.effects__mold {
  border-right: 1px solid #F5843E;
  padding-right: 50px;
}

.effects__smell {
  padding-left: 50px;
}

.effects .border-left {
  border-left: 1px solid #F5843E;
  margin-bottom: 50px;
}

.effects .border-top {
  border-top: 1px solid #F5843E;
  padding-top: 50px;
}

@media (max-width: 767px) {
  .effects {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .effects__flex {
    display: block;
  }
  .effects__flex br {
    display: none;
  }
  .effects__bottle-img {
    width: auto;
    margin-bottom: 50px;
  }
  .effects__virus {
    margin-left: 0;
  }
  .effects__fungus {
    margin-left: 0;
    padding-bottom: 0;
  }
  .effects__mold {
    padding: 50px 0;
    border-right: none;
    border-top: 1px solid #F5843E;
    border-bottom: 1px solid #F5843E;
  }
  .effects__smell {
    padding-left: 0;
    padding-top: 50px;
  }
  .effects .border-left {
    border: none;
  }
  .effects .border-top {
    border: none;
    padding-top: 0;
  }
}

/*-----------------------あらゆる場所に----------------------------*/
.anywhere {
  padding-top: 100px;
  padding-bottom: 100px;
}

.anywhere__circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 130px;
}

.anywhere__circle .wrapper {
  width: 240px;
}

.anywhere__circle img {
  width: 100%;
}

.construct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.construct__relative {
  position: relative;
  text-align: center;
}

.construct__img {
  max-width: 400px;
}

.construct__comment {
  width: 110px;
  position: absolute;
  top: -55px;
  left: -55px;
}

.construct__title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  padding: 15px;
  border: .8px solid #707070;
}

.construct__text {
  text-align: center;
}

.construct__text span {
  font-size: 18px;
  font-weight: bold;
  background-image: url(../img/line.png);
  background-position: center 15px;
}

@media (max-width: 1200px) {
  .anywhere__circle {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .anywhere__circle .wrapper {
    width: 35%;
  }
  .anywhere__circle .wrapper:nth-of-type(3) {
    margin-top: 30px;
  }
  .anywhere__circle .wrapper:nth-of-type(4) {
    margin-top: 30px;
  }
  .construct__img {
    padding-right: 30px;
    width: 370px;
  }
  .construct__comment {
    top: -60px;
    left: 0;
  }
  .construct__text {
    text-align: left;
  }
  .construct__text br {
    display: none;
  }
}

@media (max-width: 767px) {
  .anywhere {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .anywhere__circle {
    margin-bottom: 100px;
  }
  .anywhere__circle .wrapper {
    width: 45%;
  }
  .construct {
    display: block;
  }
  .construct__img {
    padding-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}

/*-----------------------幅広く導入----------------------------*/
.introduce {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #FFF8F2;
}

.introduce__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.introduce__map-img {
  text-align: center;
}

.introduce__map-img img {
  max-width: 390px;
  margin-right: 30px;
}

.introduce__rural {
  background: #fff;
  margin-bottom: 30px;
  padding: 25px;
}

.introduce__text {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: .5px solid #C8C8C8;
}

.introduce__text:last-of-type {
  border: none;
}

.introduce__title1:before, .introduce__title2:before, .introduce__title3:before, .introduce__title4:before, .introduce__title5:before {
  display: inline-block;
  content: "";
  background-size: contain;
  width: 35px;
  height: 50px;
  vertical-align: middle;
  margin-right: 5px;
}

.introduce__title1:before {
  background-image: url(../img/icon-map1.png);
}

.introduce__title2:before {
  background-image: url(../img/icon-map2.png);
}

.introduce__title3:before {
  background-image: url(../img/icon-map3.png);
}

.introduce__title4:before {
  background-image: url(../img/icon-map4.png);
}

.introduce__title5:before {
  background-image: url(../img/icon-map5.png);
}

.kyusyu {
  width: 390px;
  margin-right: 30px;
  margin-bottom: 0;
}

.tyuugoku, .okinawa {
  width: 550px;
}

.okinawa {
  margin-bottom: 0;
  height: 260px;
}

@media (max-width: 1200px) {
  .introduce {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .introduce__title1, .introduce__title2, .introduce__title3, .introduce__title4, .introduce__title5 {
    text-align: center;
    margin-bottom: 10px;
  }
  .introduce__title1:before, .introduce__title2:before, .introduce__title3:before, .introduce__title4:before, .introduce__title5:before {
    display: none;
  }
  .introduce__flex {
    display: block;
  }
  .introduce__map-img img {
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
  .introduce__rural {
    padding-top: 75px;
  }
  .introduce__rural span {
    margin-left: 7px;
  }
  .kantou, .kinki, .kyusyu, .tyuugoku, .okinawa {
    background-repeat: no-repeat;
    background-size: 35px auto;
    background-position: center 25px;
  }
  .kantou {
    background-image: url(../img/icon-map1.png);
  }
  .kinki {
    background-image: url(../img/icon-map2.png);
  }
  .kyusyu {
    background-image: url(../img/icon-map3.png);
    width: auto;
    height: auto;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .tyuugoku {
    background-image: url(../img/icon-map4.png);
    width: auto;
    height: auto;
  }
  .okinawa {
    background-image: url(../img/icon-map5.png);
    width: auto;
    height: auto;
  }
}

/*-----------------------参考請負価格----------------------------*/
.price {
  padding-top: 100px;
  padding-bottom: 100px;
}

.price table {
  text-align: center;
  border-collapse: collapse;
}

.price table th, .price table td {
  border: solid 1px #C8C8C8;
  padding: 0 20px;
}

.price table th {
  font-size: 16px;
  font-weight: normal;
  background: #F6F2F2;
  height: 45px;
}

.price table td {
  height: 60px;
}

.price table .weight {
  font-weight: bold;
}

.price table .left {
  width: 270px;
}

.price table .center {
  width: 190px;
}

@media (max-width: 767px) {
  .price {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/*----------------------他社製品との比較----------------------------*/
.product {
  padding-bottom: 100px;
}

.product table {
  text-align: center;
  margin-bottom: 10px;
  border-collapse: collapse;
}

.product table th, .product table td {
  border: solid 1px #C8C8C8;
  height: 60px;
  padding: 10px 20px;
}

.product table img {
  width: 70px;
}

.product table th {
  font-size: 16px;
}

.product table td {
  width: 210px;
}

.product table .height {
  height: 250px;
}

.product table .height p {
  margin-bottom: 10px;
}

.product table .orange {
  background: #FFF8F2;
  font-weight: bold;
  border-left: solid 3px #FC7622;
  border-right: solid 3px #FC7622;
}

.product table .border-top {
  border-top: solid 3px #FC7622;
}

.product table .border-bottom {
  border-bottom: solid 3px #FC7622;
}

.product table span {
  font-size: 14px;
}

@media (max-width: 767px) {
  .product {
    padding-bottom: 80px;
  }
}

/*-----------------------PIAJ----------------------------*/
.piaj {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #FFF8F2;
}

.piaj img {
  max-width: 250px;
  margin-right: 50px;
}

.piaj__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.piaj__img {
  text-align: center;
}

.piaj__title {
  font-size: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: left;
  margin-bottom: 20px;
}

.piaj__text {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .piaj {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .piaj img {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .piaj__flex {
    display: block;
  }
  .piaj__title {
    font-size: 30px;
    margin-bottom: 10px;
  }
}

/*-----------------------お問い合わせ----------------------------*/
.contact {
  color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(../img/bg-contact.png);
  background-size: cover;
  background-position: center center;
}

.contact__title {
  font-size: 50px;
  margin-bottom: 60px;
}

.contact__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__tel {
  text-align: center;
}

.contact__tel p:first-of-type {
  font-size: 24px;
}

.contact__tel p:last-of-type {
  font-family: 'Noto Serif JP', serif;
  font-size: 50px;
}

.contact__tel p:last-of-type span {
  font-size: 28px;
  margin-right: 5px;
}

.contact__tel p:last-of-type a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

.contact__web {
  text-align: center;
}

.contact__web a {
  display: block;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  font-size: 35px;
  text-align: center;
  text-decoration: none;
  background: #3899B4;
  padding: 25px 60px;
  border-radius: 10px;
}

.contact__web a:hover {
  color: #3899B4;
  background: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (max-width: 1200px) {
  .contact__flex {
    display: block;
  }
  .contact__tel p:last-of-type {
    margin-bottom: 30px;
  }
  .contact__web a {
    width: 80%;
    -webkit-transform: translateX(12%);
            transform: translateX(12%);
  }
}

@media (max-width: 767px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .contact__title {
    font-size: 30px;
  }
  .contact__tel p:first-of-type {
    font-size: 18px;
  }
  .contact__tel p:last-of-type {
    font-size: 35px;
  }
  .contact__tel p:last-of-type span {
    font-size: 20px;
  }
  .contact__web a {
    font-size: 26px;
    padding: 25px 10px;
    width: 100%;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

/*-----------------------フッター----------------------------*/
.footer {
  padding-top: 100px;
  padding-bottom: 100px;
}

.footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo {
  max-width: 100px;
  margin-right: 20px;
}

.footer__relife {
  padding-right: 55px;
  border-right: 1px solid #C8C8C8;
}

.footer__center {
  padding-left: 55px;
}

.footer__company-name {
  font-size: 22px;
  font-weight: medium;
  margin-bottom: 10px;
}

.footer__company-name span {
  font-size: 19px;
  margin-right: 10px;
}

.footer__text {
  font-size: 14px;
}

.footer__text a {
  display: inline-block;
}

.copyright {
  color: #fff;
  text-align: center;
  background: #F5843E;
  padding: 35px;
  font-size: 12px;
}

@media (max-width: 1200px) {
  .footer__relife {
    padding-right: 10px;
  }
  .footer__center {
    padding-left: 10px;
  }
  .footer__company-name {
    font-size: 18px;
  }
  .footer__company-name span {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .copyright {
    padding: 1rem;
  }
  .footer {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .footer__flex {
    display: block;
  }
  .footer__logo {
    width: 80px;
    text-align: center;
    margin-right: 0;
  }
  .footer__relife {
    margin-top: 20px;
    padding-right: 0;
    padding-bottom: 30px;
    border-right: 0;
    border-bottom: 1px solid #C8C8C8;
  }
  .footer__center {
    padding-top: 30px;
    padding-left: 0;
  }
  .footer__company-name {
    margin-bottom: 0;
  }
}

/*-----------------------to top----------------------------*/
.to-top {
  width: 60px;
  position: fixed;
  right: 20px;
  bottom: 20px;
}

.to-top:hover {
  opacity: .8;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (max-width: 767px) {
  .to-top {
    width: 50px;
    right: 10px;
    bottom: 10px;
  }
}
/*# sourceMappingURL=style.css.map */