@charset "UTF-8";

* {
/*  outline: 1px solid red; */
}

/* Foundation */
html {
  font-size: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #333;
  letter-spacing:0.05em;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

h2 {
  text-align: center;
  margin: auto;
}

li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover, a:active {
  opacity: .8;
}

.work-sans-400 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

.work-sans-600 {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
}

.p-center {
  margin: 0 auto;
  text-align: center;
}

/* Object / Component */

.c-button--contact {
  background: linear-gradient(90deg, #ffc36c, #ff9800);
  color: #fff;
  border-radius: 50px;
  border: 0;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2;
  margin: 0 auto;
  padding: 14px 0;
  position: relative;
  text-decoration: none;
  text-align: left;
  display: inline-block;
  z-index: 10;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.5s;
  top:0;
}

.c-button--contact:hover {
  background: linear-gradient(90deg, #fbc26c, #f88200);
/*  top: 4px; */
}

.c-button--contact--note:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("../img/icon_note.png") no-repeat;
  vertical-align: text-top;
  margin: 0px 20px 0 20px;
}

.c-button--contact--note {
  width: 230px;
}

.c-button--contact--arrow {
  width: 310px;
  text-align: center;
}

.c-button--contact--arrow:after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("../img/icon_arrow.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: calc(50% - 15px);
  right: calc(0% + 15px); 
}

  @media (max-width: 900px) {
    .c-button--contact {
      padding: 6px 0 6px;
      font-size: 0.75rem;
    }

    .c-button--contact--note {
      width: 100%;
    }

    .c-button--contact--note:before {
      background-size: 100% 100%;
      width: 26px;
      height: 26px;
      vertical-align: top;
      margin: 0px 5px 0 10px;
    }

    .c-button--contact--arrow {
      width: 100%;
      max-width: 480px;
      padding: 18px 0;
      font-size: 1.25rem;
    }
  }


/* ------------- #l-header -------------  */

#l-header {
  margin: 0 auto;
  padding: 0;
  z-index: 999;
  position: relative;
}

.l-header__inner {
  height: 105px;
  margin: 0 auto;
  padding: 20px 0px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
    justify-content: space-between;
  -webkit-box-align: center;
    align-items: center;
  max-width: 1240px;
}

  @media (max-width: 900px) {
    .l-header__inner {
      height: 70px;
      padding: 0;
    }
  }


#l-header.header-fixed {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16); 
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  animation: slide 0.5s ease-in-out;
  overflow: hidden;
}

  @media (max-width: 900px) {
    #l-header.header-fixed {
      margin:0;
    }
  }

  @keyframes slide {
    0% {
      transform: translateY(-100%);
    }

    100% {
      transform: translateY(0%);
    }
  }

#l-header .logo {
  width: 190px;
  margin-left: 20px;
}

#l-header .contact {
  width: 230px;
  margin-right: 20px;
}

#l-header .logo a img {
  outline: none;
  vertical-align: top;
}

  @media (max-width: 900px) {
    #l-header .logo {
      width: 35.294%;
      margin-left: 10px;
    }
    #l-header .contact {
      margin-left: 10px;
      margin-right: 10px;
      max-width: 140px;
      min-width: 130px;
      width: 39%;
    }
  }


/* Layout */
.l-mv {
  background-image: url(../img/mv_bg.jpg);
  background-position: center;
  background-size: cover;
  padding: 0;
  color: #333;
  position: relative;
}

.l-mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/mv_maru_ue.png);
  background-size: auto auto;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: 2;
}

.l-mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../img/mv_maru_btm.png);
  background-size: auto auto;
  background-repeat: no-repeat;
  background-position: bottom right 25.781%;
  z-index: 3;
}

.c-inner {
  margin: auto;
  width: 100%;
  max-width: 1120px;
}

  @media (max-width: 900px) {
    .l-mv {
      background-image: url(../img/mv_bg.jpg);
      background-position: 80% 100%;
      background-size: ;
    }

    .l-mv::before {
      background-size: 50% auto;
    }

    .l-mv::after {
      background-size: 72% auto;
      background-position: bottom left -50%;
    }

  }


/* ------------- .mv -------------  */
.mv {
  padding: 0 0 80px;
  position: relative;
}

.mv .c-inner {
  max-width: 1120px;
  padding-top: 50px;
  position: relative;
}

.mv-txt-wrap {
  position: relative;
  z-index: 10;
  padding: 0 0px;
}

  @media (max-width: 1150px) {
    .mv-txt-wrap {
      padding: 0 5%;
    }
  }

.mv .c-target {
  background: #72bce9;
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 3px 28px;
  margin-bottom: 24px;
}

.mv .c-catch {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 28px;
}

.mv .c-catch span {
  color: #72bce9;
}

.mv .c-subtitle {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 46px; 
}

.mv .c-subtitle span {
  color: #ff9800;
}

.mv .c-img-pc {
  position: absolute;
  right: 0px;
  top: 50px;
  z-index: 2;
}

  @media (max-width: 900px) {
    .mv {
      padding: 0 0 60px;
    }

    .mv .c-inner {
      max-width: 100%;
      padding-top: 25px;
    }

    .mv .c-target {
      font-size: 1.125rem;
      padding: 3px 12px;
      margin-bottom: 10px;
    }

    .mv .c-catch {
      font-size: 1.125rem;
      margin-bottom: 20px;
    }

    .mv .c-subtitle {
      font-size: 1rem;
      margin-top: 20px; 
    }

    .mv .c-logo {
      width: 87.5%;
    }

    .mv .c-img-sp {
      position: absolute;
      right: 0px;
      bottom: 0px;
      width: 57.6%;
      margin-bottom: -22%;
      z-index: 4;
    }

  }

/* ------------- .c-contentCard -------------  */

.c-contentCard {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}

.c-contentCard-rv {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

  @media (max-width: 900px) {
    .c-contentCard,
    .c-contentCard-rv {
      display: block;
    }

  }

/* ------------- .c-block -------------  */
.c-block {
  padding: 50px 5% 20px;
  position: relative;
}

.c-block p {
  font-size: 1.125rem;
}

@media (max-width: 900px) {
  .c-block {
    padding: 80px 5.555% 0px;
  }

  .c-block p {
    font-size: 1rem;
  }
}

.c-title {
  font-size: 2.125rem;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 40px;
  text-align: left;
  position: relative;
}

.c-title span {
  color: #666;
  display: block;
  font-size: 0.875rem;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.5rem;
  text-align: left;
  letter-spacing:0.025em;
}

.c-title span > span {
  color: #ff9800;
  display: inline;
  padding-right: 0.25rem;
}

.c-title.c-title--center,
.c-title.c-title--center span {
  text-align: center;
}

@media (max-width: 900px) {
  .c-title {
    font-size: 1.5rem;
    margin-bottom: 60px;
  }
}


/* ------------- .c-block--intro -------------  */
.c-block.c-block--intro {
  padding-top: 120px;
}

.c-block--intro .c-contentCard {
  margin-bottom: 70px;
 }

.c-block--intro .txt-wrap {
  width: 52.678%;
}

.c-block--intro .img-wrap {
  width: calc(47.321% - 0px);
}

.c-block--intro .img-wrap img {
  margin-left: -50px;
  width: 100%;
}

.list-txt {
  margin: 30px 0 55px;
  padding: 0;
}

.c-block--intro .list-wrap ul:first-child {
  margin-top: 30px;
}

.c-block--intro .list-wrap ul:last-child {
  margin-bottom: 55px;
}

.c-block--intro ul {
  border-bottom: 1px solid #f4f4f4;
  list-style-type: none;
  padding: 0;
}

.c-block--intro li {
  font-size: 1.5rem;
  padding: 12px 0 8px 0;
  text-indent: -2.25rem;
  margin-left: 2.5rem;
  position: relative;
}

.c-block--intro li::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/list-check.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  margin-right: 0.75rem;
}

.c-block--intro p {
  font-size: 1.125rem;
}

  @media (max-width: 900px) {
    .c-block.c-block--intro {
      padding-top: 100px;
    }

    .c-block--intro .c-contentCard {
      margin-bottom: 60px;
     }

    .c-block--intro .img-wrap {
      margin: 0 auto;
      width: 87.5%;
    }

    .c-block--intro .img-wrap img {
      margin-left: 0px;
    }

    .c-block--intro .txt-wrap {
      width: 100%;
    }

    .c-block--intro .list-wrap ul:first-child {
      margin-top: 10px;
    }

    .c-block--intro .list-wrap ul:last-child {
      margin-bottom: 30px;
    }

    .c-block--intro li {
      font-size: 1.125rem;
      padding: 18px 0 16px 0;
      text-indent: -1.8rem;
      margin-left: 2.5rem;
    }

    .c-block--intro li::before {
      width: 20px;
      height: 20px;
      background-position: top left;
      margin-right: 0.5rem;
    }

    .c-block--intro p {
      font-size: 1rem;
    }

  }


/* ------------- .c-block--video -------------  */
.c-block.c-block--video {
  padding-top: 120px;
  padding-bottom: 140px;
}

.c-block--video .c-inner div {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
    overflow: hidden;
}

.c-block--video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

  @media (max-width: 900px) {
    .c-block.c-block--video {
      padding-top: 80px;
      padding-bottom: 80px;
    }
  }

/* ------------- .c-block--solution -------------  */
.c-block--solution {
  padding-bottom: 30vw;
  padding-top: 100px;
}

.c-block--solution h2.c-title {
  margin-bottom: 80px;
}

.solution__list {
  padding: 0 4.464%;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.solution__list li {
  width: 33%;
  margin-bottom: 30px;
}

.solution__list li .img-wrap {
  height: 231px;
}

.solution__list li .img-wrap img {
  margin: 0 auto;
  text-align: center;
}

.solution__list li p {
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 30px;
  text-align: center;
}

  @media (max-width: 900px) {
    .c-block--solution {
      padding-bottom: 30vw;
      padding-top: 60px;
    }

    .c-block--solution .c-title.c-title--center,
    .c-block--solution .c-title.c-title--center span {
        text-align: left;
    }

    .c-block--solution h2.c-title {
      margin-bottom: 60px;
    }

    .solution__list li {
      width: 100%;
      margin-bottom: 60px;
    }

    .solution__list li .img-wrap {
      height: auto;
    }

    .solution__list li p {
      font-size: 1rem;
      margin-top: 30px;
    }

  }

/* ------------- .c-block--wrap -------------  */

.c-block--wrap {
  position: relative;
}

.c-block--wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/maru03.png);
  background-size: auto auto;
  background-repeat: no-repeat;
  background-position: bottom 38% left;
  z-index: -1;
}

  @media (max-width: 900px) {
    .c-block--wrap::before {
      background-size: 36.7% auto;
      background-position: bottom 37% left;
    }
  }


/* ------------- .c-block--thingstodo -------------  */
.c-block--thingstodo {
  margin-top: -100px;
}

.c-block--thingstodo::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/maru01.png);
  background-size: auto auto;
  background-repeat: no-repeat;
  background-position: top 35% left;
  z-index: -1;
}

.c-block--thingstodo::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/maru02.png);
  background-size: auto auto;
  background-repeat: no-repeat;
  background-position: top 72% right;
  z-index: -1;
}

.c-block--thingstodo .c-inner {
  padding: 0 80px;
}

.c-block--thingstodo h2.c-title {
  margin-bottom: 100px;
}

.c-block--thingstodo .c-num {
  color: #ccc;
  font-size: 1.25rem;
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 12px;
  letter-spacing:0.025em;
}

.c-block--thingstodo .c-contentCard {
  margin-bottom: 65px;
}

.c-block--thingstodo .c-contentCard figure {
  width: 34.375%;
}

.c-block--thingstodo .c-contentCard .txt-wrap {
  width: 53.125%;
}


  @media (max-width: 900px) {
    .c-block--thingstodo {
      margin-top: -80px;
    }

    .c-block--thingstodo .c-inner {
      padding: 0;
    }

    .c-block--thingstodo h2.c-title {
      margin-bottom: 60px;
    }

    .c-block--thingstodo .c-num {
      font-size: 1.125rem;
      margin-bottom: 8px;
    }

    .c-block--thingstodo .c-contentCard figure {
      width: 65.625%;
      margin: 40px auto 0;
    }

    .c-block--thingstodo .c-contentCard .img-wrap img {
      margin: 0 auto;
      text-align: center;
    }

    .c-block--thingstodo .c-contentCard .txt-wrap {
      width: 100%;
    }

    .c-block--thingstodo::before {
      background-size: 37% auto;
      background-position: top 42% left;
    }

    .c-block--thingstodo::after {
      background-size: 32% auto;
      background-position: top 78% right;
    }
  }


/* ------------- .c-block--voice -------------  */
.c-block--voice {
  margin-top: 0;
}

.c-block--voice .c-inner {
  background-image: url(../img/voice_bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border-radius: 30px;
  padding: 80px 80px 50px;
}

.voice-detail {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  display: block;
  margin-bottom: 0px;
  width: 45.108%;
  display:flex;
  flex-direction:column;
}

.voice-detail .comment {
  font-size: 1.125rem;
  margin-bottom: 30px;
  flex-grow:1;
}

.voice-detail .customer {
  display: flex;
  align-items: center;
}

.voice-detail .customer-txt {
  font-size: 0.875rem;
  margin-left: 18px;
}

  @media (max-width: 900px) {
    .c-block.c-block--voice {
      padding: 15px 0 0;
    }

    .c-block--voice .c-inner {
      background-position: top center;
      background-size: cover;
      padding: 60px 20px 40px;
    }

    .voice-detail {
      display:block;
      padding: 20px;
      margin-bottom: 40px;
      width: 100%;
    }

    .voice-detail .comment {
      font-size: 1rem;
    }

  }


/* ------------- .c-block--installation -------------  */
.c-block--installation {
  padding-top: 120px;
  padding-bottom: 160px;
}

.c-block--installation.c-block h2.c-title {
  margin-bottom: 80px;
}

.step__list {
  padding: 0 4.464%;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: top;
  margin-bottom: 50px;
}

.step__list > li {
  background-image: url(../img/arw_installation.png);
  background-repeat: no-repeat;
  background-position: center right;
  margin-bottom: 30px;
  width: 33.333%;
}

.step__list > li.last {
  background-image: none;
}

.step__list li .img-wrap img {
  margin: 0 auto;
  text-align: center;
}

.step-txt-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  padding-left: 6.47%;
  padding-right: 8.6%;
}

.step-txt-box .step-txt {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-left: 1rem;
}

.step-txt-box .step-txt .s-txt {
  font-size: 1.125rem;
}

p.step__note {
  color: #888;
  font-size: 0.875rem;
  text-align: center;
}

   @media (max-width: 900px) {
    .c-block--installation {
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .c-block--installation.c-block h2.c-title {
      margin-bottom: 60px;
    }

    .step__list {
      padding: 0;
      margin: 0 auto;
      display: block;
      margin-bottom: 0px;
      text-align: center;
    }

    .step__list > li {
      background-image: url(../img/arw_installation_sp.png);
      background-position: bottom center;
      margin: 0 auto 30px;
      padding-bottom: 40px;
      width: 100%;
      text-align: center;
    }

    .step-txt-box {
      display: block;
      margin-bottom: 30px;
      padding-left: 0;
      padding-right: 0;
    }

    .step-txt-box .step-txt {
      font-size: 1.4375rem;
      margin-left: 0;
    }

    li.step-mark{
      display: block;
      margin: 0 auto 25px;
    }

    li.step-mark img {
      display: inline-block;
    }

    p.step__note {
      margin-top: -10px;
      text-align: left;
    }

  }

/* ------------- .c-block--price -------------  */
.c-block.c-block--price {
  margin-top: 0px;
  padding-top: 180px;
}

.price-detail {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  width: 48.214%;
}

.price-detail li {
  font-size: 1.125rem;
  position: relative;
  padding:0 0 0.5rem 1.5rem;
}

.price-detail li::before {
  position: absolute;
  width: 10px;
  height: 3px;
  border-top: 3px solid #ff9800;
  border-radius: 3px;
  left: 0;
  top: 0.8rem;
  margin: auto 0;
  content: "";
}

p.price-ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0px;
  text-align: center;
}

p.price-txt {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

p.price-txt .s-txt {
  font-size: 1.5rem;
}

p.price__note1 {
  font-size: 0.9375rem;
  margin-bottom: 20px;
}

p.price__note2 {
  font-size: 0.875rem;
}

  @media (max-width: 900px) {
    .c-block.c-block--price {
      padding-top: 80px;
      padding-bottom: 0px;
    }

    .price-detail {
      padding: 30px 20px;
      margin-bottom: 40px;
      width: 100%;
    }

    .price-detail li {
      font-size: 1rem;
    }

    p.price-ttl {
      font-size: 1.25rem;
    }

    p.price-txt {
      font-size: 2.625rem;
      margin-bottom: 10px;
    }

    p.price-txt .s-txt {
      font-size: 1.25rem;
    }

    p.price__note1 {
      font-size: 1rem;
    }

  }

/* ------------- .form -------------  */
.c-block--form {
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 120px;
  max-width: 1280px;
}

.c-block--form .c-inner {
  background: #fff;
  border-radius: 30px;
  width: 100%;
  margin: 0 auto;
  padding: 80px;
}

  @media (max-width: 900px) {
    .c-block--form {
      padding: 80px 0 100px;
    }

    .c-block--form .c-inner {
      padding: 40px 20px 50px;
    }
    
    .c-block--form .c-title {
      margin-bottom: 40px;
    }

  }


.contactTable {
  margin-bottom: 60px;
}

.contactTable th,
.contactTable td {
  font-size: 1.125rem;
  padding: 20px 0;
  text-align: left;
  vertical-align: top;
}

.contactTable th {
  width: 26%;
}

.contactTable td {
  width: 62.5%;
}

.contactTable input,
.contactTable textarea {
  color: #333;
  width: 100%;
  max-width: 100%;
  border: none;
  margin: 0;
  padding: 0.65rem 1.5rem;
  background: #f4f4f4;
}

.contactTable textarea {
  height: 200px;
}

::placeholder {
  color: #ccc;
  font-size: 0.9375rem;
}

.wpcf7-not-valid-tip { /* フォームのエラーメッセージ */
  color: #ff3c00;
  font-size: 0.9375rem;
}

  @media (max-width: 900px) {
    .contactTable td:last-child {
      width: 100%;
    }
    .contactTable  {
      margin-top: -20px;
      margin-bottom: 40px;
      width: 100%;
    }
    .contactTable th,
    .contactTable td {
      display: block;
      font-size: 1rem;
      padding: 5px 0 0;
      width: 100%;
    }
    .contactTable th {
      padding: 20px 0 10px;
    }
  }


/* ------------- .l-bottom -------------  */
.l-bottom {
  background-image: url(../img/price_bg.jpg);
  background-repeat: repeat;
  position: relative;
}

.circle-price-up img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: inherit;
}

.l-solution {
  background-image: url(../img/solution_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.circle-price-btm img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: inherit;
}

  @media (max-width: 900px) {
    .l-solution {
      background-size: 100% 100%;
    }
  }


/* ------------- #l-footer -------------  */
#l-footer {
  background: #1e2738;
  color: #fff;
  font-size: 0.75rem;
  text-align: right;
  margin: 0 auto;
  padding: 20px 0;
}

.l-footer__inner {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  position: relative;
}

#l-footer a {
  color: #fff;
}

#l-footer .contact {
  margin-bottom: 20px;
}

#l-footer .contact a {
  text-decoration: underline;  
}

#l-footer .copyright {
}

.l-footer__inner .logo {
  width: 210px;
  height: auto;
}

  @media (max-width: 900px) {
    #l-footer {
      padding: 20px 0 10px;
    }

    .l-footer__inner {
      padding: 10px 10px 0px;
      display: block;
      max-width: 100%;
    }

    .l-footer__inner .logo {
      width: 55.882%;
      margin: 0 auto 36px;
    }

    .l-footer__inner .logo img {
      width: 100%;
    }

    #l-footer .contact {
      margin-bottom: 24px;
      text-align: center;
    }

    #l-footer .copyright {
      font-size: 0.625rem;
      text-align: center;
    }

  }



/* Object / Utility */

br.u-disp--pc {
  display: inline;
}

br.u-disp--sp {
  display: none;
}

.u-disp--sp {
  display: none;
}

.u-disp--pc {
  display: block;
}

@media (max-width: 900px) {
  br.u-disp--pc {
    display: none;
  }

  br.u-disp--sp {
    display: inline;
  }

  .u-disp--sp {
    display: block;
  }

  .u-disp--pc {
    display: none;
  }
}