@charset "UTF-8";

html {
  font-size: 100%;
}
body {
  color: #212529;
  font-size: 1rem;
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}
a {
  color: #212529;
  text-decoration: none;
  transition: ease 0.3s;
}
a:hover {
  opacity: 0.7;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}
.sec-title {
  line-height: 1px;
  margin-bottom: 100px;
  text-align: center;
}
.sec-title .en {
  color: #00a3d2;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 50px;
  letter-spacing: 0.1rem;
  display: flex;
  justify-content: center;
  font-weight: normal;
}
.sec-title .en::before,
.sec-title .en::after {
  content: "";
  background-color: #00a3d2;
  width: 10px;
}
.sec-title .en::before {
  margin-right: 10px;
}
.sec-title .en::after {
  margin-left: 10px;
}
.sec-title .ja {
  line-height: 45px;
  color: #212529;
  font-weight: bold;
  display: block;
  font-size: 2.1rem;
  /* letter-spacing: 0.1rem; */
}
.wrapper {
  max-width: 1000px;
  padding: 0 16px;
  margin: 0 auto;
}
.more {
  text-align: center;
  margin-top: 80px;
}
.more .btn {
  color: #fff;
  padding: 13px 70px 13px 40px;
  font-size: 1.2rem;
  background-color: #00a3d2;
  border-radius: 40px;
  border: 1px solid #00a3d2;
  position: relative;
}
.more .btn::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 22px;
  right: 35px;
  transition: 0.3s;
}
.more .btn:hover {
  background-color: #fff;
  color: #00a3d2;
}
.more .btn:hover::after {
  border-top: 2px solid #00a3d2;
  border-right: 2px solid #00a3d2;
  transform: rotate(405deg)
}

/* --------------------------------
header
-------------------------------- */
#header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}
#navi {
  height: 40px;
  line-height: 40px;
  background-color: #00a3d2;
}
#navi .menu {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-right: 10%;
}
#navi .menu > li {
  padding: 0 20px;
  position: relative;
}
#navi .menu > li:nth-child(1),
#navi .menu > li:nth-child(3) {
  margin-right: 8px;
} 
#navi .menu li a {
  color: #fff;
  font-size: 1rem;
  display: block;
  transition: all 0.3s;
  line-height: 40px;
}
#navi .menu li a:hover {
  color: #fff;
}
#navi .menu .n-title {
  cursor: pointer;
  color: #fff;
  transition: ease 0.3s;
}
#navi .menu .n-title:hover {
  opacity: 0.7;
}
#navi .menu li li a {
  padding: 2px 0 2px 30px;
  text-align-last: left;
  font-size: 0.9rem;
}
#navi .menu li.has-child-01::before,
#navi .menu li.has-child-02::before,
#navi .menu li.has-child-03::before {
  content:'';
  position: absolute;
  left: 5px;
  top: 15px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
#navi li.has-child-01 ul,
#navi li.has-child-02 ul,
#navi li.has-child-03 ul {
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  position: absolute;
  left: -40px;
  top: 35px;
  z-index: 40;
  background: #fff;
  width: 230px;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}
/* #navi li.has-child:hover > ul,
#navi li.has-child ul li:hover > ul, */
#navi li.has-child-01.active-01 > ul,
#navi li.has-child-02.active-02 > ul,
#navi li.has-child-03.active-03 > ul,
#navi li.has-child-01 ul li.active-01 > ul,
#navi li.has-child-02 ul li.active-02 > ul,
#navi li.has-child-03 ul li.active-03 > ul {
  visibility: visible;
  opacity: 1;
}
#navi li.has-child-01 ul li a,
#navi li.has-child-02 ul li a,
#navi li.has-child-03 ul li a {
  color: #212529;
  position: relative;
}
#navi li.has-child-01 ul li a::before,
#navi li.has-child-02 ul li a::before ,
#navi li.has-child-03 ul li a::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}
#navi li.has-child-01 ul li a:hover,
#navi li.has-child-01 ul li a:active,
#navi li.has-child-02 ul li a:hover,
#navi li.has-child-02 ul li a:active,
#navi li.has-child-03 ul li a:hover,
#navi li.has-child-03 ul li a:active{
  /* padding: 5px 0; */
  background:#00a3d2;
  color: #fff;
}
#navi li.has-child-01 ul li a:hover::before,
#navi li.has-child-01 ul li a:active::before,
#navi li.has-child-02 ul li a:hover::before,
#navi li.has-child-02 ul li a:active::before,
#navi li.has-child-03 ul li a:hover::before,
#navi li.has-child-03 ul li a:active::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff; 
}
#navi-sp {
  display: none;
}
#menu-sp {
  display: none;
}
#header .logo {
  height: 80px;
  padding: 10px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .logo .site-title {
  line-height: 1px;
  width: 140px;
}
#header .logo .site-title a {
  display: block;
}
#header .logo .link {
  display: flex;
  text-align: center;
}
#header .logo .link a {
  display: block;
  font-size: 0.7rem;
  padding: 0 15px;
  color: #00a3d2;
}
#header .logo .link img {
  width: 35px;
}

/* --------------------------------
slide
-------------------------------- */
/* 
slick-common.cssに記載
*/

/* --------------------------------
news
-------------------------------- */
#news {
  margin-bottom: 100px;
  position: relative;
  padding-top: 100px;
}
#news .box {
  width: 800px;
  height: 550px;
  background-color: #00a3d2;
  position: absolute;
  z-index: -10;
  top: 0;
  right: 0;
}
#news .bg {
  background-color: #fff;
  padding: 70px 20px 0 20px;
}
#news .list {
  padding: 0 30px;
  margin: 50px 0;
}
#news .list .item {
  display: block;
  padding: 25px 60px 25px 25px;
  font-size: 1.125rem;
  position: relative;
}
#news .list .item::after {
  content: "";
  border-top: 13px solid transparent;
  border-right: 13px solid #212529;
  position: absolute;
  top: 32px;
  right: 40px;
  transform: rotate(-45deg);
  transition: ease 0.3s;
}
#news .list li {
  border-bottom: solid 1px #d3d3d3;
}
#news .list li:first-of-type {
  border-top: 1px solid #d3d3d3;
}
#news .list .item:hover {
  color: #fff;
  background-color: #00a3d2;
}
#news .list .item:hover::after {
  right: 20px;
  border-right: 13px solid #fff;
}
#news .list .day {
  margin-right: 30px;
}
#news .list .sp-br {
  display: none;
}
#news .list dt {
  width: 25%;
  padding: 25px 0 0 25px;
  border-bottom: solid 1px #d3d3d3;
}
#news .list dd {
  width: 75%;
  padding: 25px 0;
  border-bottom: solid 1px #d3d3d3;
}


/* --------------------------------
campaign
-------------------------------- */
#campaign {
  background-color: #CCEDF6;
  padding: 100px 0 150px;
}
#campaign .banner img {
  object-fit: cover;
  object-position: center;
}

/* --------------------------------
campaign-page
-------------------------------- */
#campaign-page {
  margin: 200px auto 100px;
  max-width: 1100px;
  padding: 0;
}
#campaign-page .img {
  text-align: center;
}
#campaign-page .title {
  text-align: center;
  margin: 30px 0;
  font-size: 1.5rem;
}
#campaign-page .text {
  margin: 0 auto 80px;
  max-width: 800px;
}
#campaign-page .img-btn {
  text-align: center;
  margin: 25px 0 13px;
}
#campaign-page .img-btn .btn {
  display: inline-block;
  border: 1px solid #dee2e6;
  padding: 0.25rem;
  border-radius: 10px;
}
#campaign-page .img-btn img {
  border-radius: 10px;
  background-color: #fff;
}
#campaign-page .img-btn .btn:hover {
  box-shadow: 4px 4px 4px rgb(0 0 0 / 30%);
    transform: translateY(-5px);
    transition-duration: 0.3s;
}
#campaign-page .flex {
  display: flex;
  justify-content: space-between;
}
#campaign-page .flex .chat-img {
  width: 48%;
}
#campaign-page .flex .chat-text {
  width: 48%;
}
#campaign-page .flex .chat-text .title {
  margin: 0 0 20px 0;
  text-align: left;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 15px;
}
#campaign-page .flex .chat-text .chatbot {
  margin-bottom: 13px;
}
#campaign-page .flex .chat-text .text-1,
#campaign-page .flex .chat-text .text-2 {
  margin-bottom: 10px;
}
#campaign-page .flex .chat-text span {
  margin-left: 20px;
}
#campaign-page .flex .chat-text .qr {
  width: 30%;
}


/* --------------------------------
reason
-------------------------------- */
#reason {
  background-color: #CCEDF6;
  padding: 100px 0 80px;
  position: relative;
}
#reason .box {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00a3d2;
  width: 800px;
  height: 550px;
  z-index: 1;
}
#reason .bg {
  background-color: #fff;
  padding: 70px 30px 80px 30px;
  position: relative;
  z-index: 2;
}
#reason .list-1,
#reason .list-2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
#reason .list-1 li {
  width: 30%;
  text-align: center;
  padding: 20px 4% 30px 0;
  border-right: 1px solid #d3d3d3;
}
#reason .list-1 li:last-child {
  border-right: none;
}
#reason .list-1 li .img {
  display: inline-block;
  text-align: center;
  width: 110px;
}
#reason .list-2 li {
  width: 23%;
  text-align: center;
  padding: 20px 4% 30px 0;
  border-right: 1px solid #d3d3d3;
}
#reason .list-2 li:last-child {
  border-right: none;
}
#reason .list-2 li .img {
  display: inline-block;
  width: 110px;
}
#reason .title {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 15px;
  color: #00a3d2;
}
#reason .text {
  font-size: 0.8rem;
  margin-top: 30px;
}

/* --------------------------------
camera
-------------------------------- */
#camera {
  background-color: #CCEDF6;
  padding: 70px 0 40px;
  margin-bottom: 100px;
}
#camera .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#camera .list li {
  width: 220px;
  text-align: center;
  margin-bottom: 40px;
}
#camera .list .item {
  background-color: #fff;
  height: 150px;
  border-radius: 25px;
  margin-bottom: 20px;
  border: 1px solid #00a3d2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#camera .list .text {
  font-size: 1rem;
}
#camera .list .item .fa-solid {
  color: #00a3d2;
  position: absolute;
  right: 20px;
  bottom: 8px;
  transition: ease 0.3s;
}
#camera .list .item:hover .fa-solid {
  right: 12px;
}
#camera .list .item img {
  object-fit: cover;
  object-position: center;
  height: 140px;
}
#camera .link {
  margin-bottom: 60px;
  display: flex;
  justify-content: center;
}
#camera .link .btn {
  font-size: 1.1rem;
  margin: 0 20px;
  padding: 10px 40px 10px 20px;
  background-color: #fff;
  border-radius: 40px;
  color: #00a3d2;
  border: 1px solid #00a3d2;
  position: relative;
}
#camera .link .btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #00a3d2;
  border-right: 2px solid #00a3d2;
  transform:  rotate(45deg);
  position: absolute;
  top: 18px;
  right: 20px;
  transition: 0.3s;
}
#camera .link .btn:hover {
  color: #fff;
  background-color: #00a3d2;
}
#camera .link .btn:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(405deg)
}
#camera .ezviz {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
#camera .ezviz .item {
  background-color: #fff;
  height: 150px;
  width: 220px;
  border-radius: 25px;
  margin-bottom: 20px;
  border: 1px solid #00a3d2;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#camera .ezviz .item img {
  padding: 8px 0;
}
#camera .ezviz .text {
  font-size: 1rem;
}
#camera .ezviz .item .fa-solid {
  color: #00a3d2;
  position: absolute;
  right: 20px;
  bottom: 8px;
  transition: ease 0.3s;
}
#camera .ezviz .item:hover .fa-solid {
  right: 12px;
}
#camera .ezviz .item img {
  object-fit: cover;
  object-position: center;
  height: 140px;
}
#camera .e-link {
  margin-bottom: 60px;
  text-align: center;
}
#camera .e-link .btn {
  padding: 10px 40px 10px 20px;
  background-color: #fff;
  font-size: 1.1rem;
  border-radius: 40px;
  color: #00a3d2;
  border: 1px solid #00a3d2;
  position: relative;
}
#camera .e-link .btn:hover {
  color: #fff;
  background-color: #00a3d2;
}
#camera .e-link .btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #00a3d2;
  border-right: 2px solid #00a3d2;
  transform:  rotate(45deg);
  position: absolute;
  top: 18px;
  right: 20px;
  transition: 0.3s;
}
#camera .e-link .btn:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(405deg)
}

/* --------------------------------
performance
-------------------------------- */
#performance {
  margin-bottom: 130px;
}
#performance .sec-title .ja::after {
  content: "※敬称略";
  font-size: 1.5rem;
  margin-left: 10px;
  font-weight: normal;
}
#performance .client {
  display: flex;
  justify-content: center;
  padding-top: 0;
}
#performance .client .list-1,
#performance .client .list-2 {
  padding: 0 20px;
}
#performance .client .list-1 li,
#performance .client .list-2 li {
  margin-bottom: 15px;
  font-size: 1.3rem;
}
#performance .client .list-1 .other,
#performance .client .list-2 .other {
  font-size: 0.9rem;
  margin-bottom: 20px;
} 

/* --------------------------------
shop
-------------------------------- */
#shop {
  margin-bottom: 100px;
  padding-top: 100px;
  position: relative;
}
#shop .box {
  width: 800px;
  height: 550px;
  background-color: #00a3d2;
  position: absolute;
  z-index: -10;
  top: 0;
  right: 0;
} 
#shop .bg {
  background-color: #fff;
  padding: 100px 10px 0 10px;
}
#shop .bg .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#shop .bg .list .item {
  width: 200px;
  margin: 0 35px 25px;
  text-align: center;
}

/* --------------------------------
about
-------------------------------- */
#about {
  background-color: #CCEDF6;
  padding: 100px 0 100px 0;  
}
#about .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#about .list .item {
  width: 27%;
  border-radius: 20px;
  border: 1px solid #00a3d2;
  overflow: hidden;
  background-color: #fff;
  text-align: center;
}
#about .list .item img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  /* height: 150px; */
}
#about .list .item .title {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 5px 0 4px 15px;
  text-align-last: left;
}
#about .list .item .text {
  font-size: 0.8rem;
  margin: 0 0 4px 15px;
  text-align-last: left;
}
#about .list .btn {
  display: inline-block;
  color: #00a3d2;
  font-size: 0.8rem;
  margin: 15px 0;
  padding: 8px 40px 8px 20px;
  background-color: #fff;
  border: 1px solid #00a3d2;
  border-radius: 30px;
  position: relative;
}
#about .list .btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #00a3d2;
  border-right: 2px solid #00a3d2;
  transform:  rotate(45deg);
  position: absolute;
  top: 14px;
  right: 20px;
  transition: 0.3s;
}
#about .list .btn:hover {
  background-color: #00a3d2;
  color: #fff;
}
#about .list .btn:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(405deg)
}

/* --------------------------------
to-top
-------------------------------- */
#to-top {
  position: fixed;
  right: 30px;
  bottom: 130px;
  font-size: 3rem;
  color: #00a3d2;
  z-index: 30;
}
#to-top .fa-solid {
  text-shadow: #fff 3px 3px 0, #fff -3px -3px 0, #fff -3px 3px 0, #fff 3px -3px 0, #fff 0px 3px 0, #fff 0 -3px 0, #fff -3px 0 0, #fff 3px 0 0;
}

/* --------------------------------
footer
-------------------------------- */
#footer {
  background-color: #fff;
  padding-bottom: 25px;
}
#footer .footer-menu {
  background-color: #00a3d2;
  color: #fff;
  padding: 80px 0;
}
#footer .footer-menu .inner {
  display: flex;
  justify-content: space-between;
}
#footer .footer-menu .inner .menu .title {
  margin-bottom: 20px;
}
#footer .footer-menu .inner .menu .title::before {
  content: "＞";
  display: inline-block;
  margin-right: 5px;
}
#footer .footer-menu .inner .inner-menu li {
  margin-bottom: 20px;
  font-size: 0.9rem;
}
#footer .footer-menu .inner .inner-menu .fa-brands {
  margin-right: 10px;
  font-size: 1.4rem;
}
#footer .footer-menu .inner .inner-menu li::before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
}
#footer .footer-menu .inner a {
  color: #fff;
}
#footer .adress {
  margin-left: 10%;
  padding: 30px 0;
  display: flex;
  align-items: flex-start;
}
#footer .adress .logo {
  width: 110px;
  margin-right: 50px;
  object-fit: contain;
  object-position: center;
}
#footer .adress .loca .text {
  margin-bottom: 8px;
}
#footer .adress .loca span {
  margin-right: 10px;
}
#footer .br {
  display: none;
}
#footer .copy {
  display: flex;
  margin-left: 10%;
}
#footer .copy li {
  margin-right: 40px;
  font-size: 0.8rem;
}
.footer-menu-sp {
  display: none;
}

/* --------------------------------
tb
-------------------------------- */
@media screen and (max-width: 1024px) {
  
  /* --------------------------------
  header
  -------------------------------- */
  #navi .menu {
    margin-right: 5%;
  }
  #header .logo {
    padding: 10px 5%;
  }

  /* --------------------------------
  news
  -------------------------------- */
  #news {
    padding-top: 50px;
  }
  #news .box {
    width: 500px;
  }

  /* --------------------------------
  campaign
  -------------------------------- */
  #campaign .banner{
    width: 80%;
    margin: 0 auto;
  }

  /* --------------------------------
  campaign-page
  -------------------------------- */
  #campaign-page {
    margin-top: 100px;
    margin-bottom: 40px;
  }
  #campaign-page .title {
    font-size: 1.2rem;
  }
  #campaign-page .flex {
    flex-direction: column;
  }
  #campaign-page .img-btn {
    padding: 0 16px;
  }
  #campaign-page .description {
    padding: 0 16px;
  }
  #campaign-page .flex .chat-img {
    width: 100%;
  }
  #campaign-page .flex .chat-text {
    width: 100%;
    margin-top: 30px;
    padding: 0 16px;
  }
  #campaign-page .flex .chat-text .title {
    text-align: center;
  }

  /* --------------------------------
  reason
  -------------------------------- */
  #reason {
    padding-top: 50px;
  }
  #reason .box {
    width: 500px;
  }

  /* --------------------------------
  camera
  -------------------------------- */
  #camera .list {
    justify-content: center;
  }
  #camera .list .item {
    margin: 0 4px; 
  }

  /* --------------------------------
  performance
  -------------------------------- */
  #performance .client .list-1,
  #performance .client .list-2 {
    padding: 0 10px;
  }

  /* --------------------------------
  shop
  -------------------------------- */
  #shop {
    padding-top: 50px;
  }
  #shop .box {
    width: 500px;
  }

  /* --------------------------------
  about
  -------------------------------- */
  #about .list {
    justify-content: center;
  }
  #about .list .item {
    margin: 0 10px;
  }

  /* --------------------------------
  to-top
  -------------------------------- */
  #to-top {
    bottom: 120px;
  }

  /* --------------------------------
  footer
  -------------------------------- */
  #footer {
    /* margin-bottom: 150px; */
    padding-bottom: 150px;
  }
}

/* --------------------------------
sp
-------------------------------- */
@media screen and (max-width: 799px) {
  .sec-title {
    line-height: 1px;
    margin-bottom: 60px;
  }
  .sec-title .en {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  .sec-title .ja {
    font-size: 1.5rem;
    line-height: 40px;
  }
  .more {
    margin-top: 60px;
  }
  .more .btn {
    padding: 10px 50px 10px 30px;
    font-size: 1rem;
  }
  .more .btn::after {
    content: "";
    width: 10px;
    height: 10px;
    top: 16px;
    right: 28px;
    transition: 0.3s;
  }
  .more .btn:hover {
    background-color: #fff;
    color: #00a3d2;
  }
  .more .btn:hover::after {
    border-top: 2px solid #00a3d2;
    border-right: 2px solid #00a3d2;
    transform: rotate(405deg)
  }

  /* --------------------------------
  slide
  -------------------------------- */
  /* 
  slick-common.cssに記載
  */
  
  /* --------------------------------
  header
  -------------------------------- */
  #header {
    height: 60px;
  }
  #header .logo {
    display: none;
  }
  #header #navi {
    display: none;
  }
  #header #navi-sp {
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px 0 16px;
  }
  #header #navi-sp .site-title {
    width: 110px;
    margin-top: 7px;
    line-height: 1;
  }
  #header #navi-sp .site-title a {
    display: block;
  }
  #header #navi-sp .logo-sp {
    display: flex;
    align-items: center;
  }
  #header #navi-sp .logo-sp .store {
    width: 40px;
    margin-right: 5px;
  }
  #header #navi-sp .business {
    width: 40px;
    margin-right: 0;
  }
  #header .hamburger {
    width: 60px;
    height: 60px;
    display: block;
    background-color: #00a3d2;
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: 0.5s;
    z-index: 20;
  }
  #header.open .hamburger {
    background-color: #fff;
  }
  #header .hamburger span {
    width: 35px;
    height: 2px;
    border-radius: 4px;
    background-color: #fff;
    position: absolute;
    left: 12px;
    transition: 0.5s;
  }
  #header .hamburger span:nth-child(1) {
    top: 19px;
  }
  #header .hamburger span:nth-child(2) {
    top: 30px;
  }
  #header .hamburger span:nth-child(3) {
    bottom: 17px;
  }
  #header.open .hamburger span:nth-child(1) {
    transform: translateY(11px) rotate(-315deg);
    background-color: #00a3d2;
  }
  #header.open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #header.open .hamburger span:nth-child(3) {
    transform: translateY(-11px) rotate(315deg);
    background-color: #00a3d2;
  }
  #menu-sp {
    color: #000;
    display: block;
    width: 295px;
    background-color: #fff;
    padding: 30px;
    position: fixed;
    top: 0;
    left: -280px;
    bottom: 0;
    opacity: 0;
    overflow-y: auto;
    z-index: 20;
    transition: 0.5s;
  }
  .open #menu-sp {
    left: 0;
    opacity: 1;
    /* font-size: 0.9rem; */
  }
  #menu-sp .menu > li {
    margin-bottom: 12px;
  }
  #menu-sp .menu li ul li {
    margin-bottom: 5px;
    font-size: 0.9rem;
  }
  #menu-sp li a {
    color: #000;
  }
  #menu-sp .menu {
    margin-bottom: 40px;
  }
  #menu-sp .menu .title {
    margin: 15px 0 10px;
  }
  #menu-sp .menu .support li::before,
  #menu-sp .menu .company li::before, 
  #menu-sp .menu .recruit li::before {
    content: "-";
    margin: 0 5px 0 2px;
  }
  #menu-sp .shop li {
    margin-bottom: 10px;
  } 
  #mask {
    display: none;
  }
  .open #mask {
    width: 100%;
    height: 100%;
    background-color: #000;
    cursor: pointer;
    display: block;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }

  /* --------------------------------
  news
  -------------------------------- */
  #news {
    margin-bottom: 100px;
    font-size: 0.9rem;
  }
  #news .box {
    display: none;
  }
  #news .bg {
    padding: 0;
  }
  #news .list {
    padding: 0 10px;
    flex-direction: column;
  }
  #news .list .sp-br {
    display: block;
  }
  #news .list .item {
    padding: 12px 60px 12px 0;
    font-size: 0.9rem;
  }
  #news .list .item::after {
    right: 20px;
  }

  /* --------------------------------
  campaign
  -------------------------------- */
  #campaign {
    padding: 50px 0 50px;
  }
  #campaign .banner{
    width: 100%;
    margin: 0 auto;
  }

  /* --------------------------------
  reason
  -------------------------------- */
  #reason {
    padding: 50px 0 50px;
  }
  #reason .box {
    display: none;
  }
  #reason .bg {
    padding: 50px 10px;
  }
  #reason .list-1,
  #reason .list-2 {
    flex-direction: column;
    margin-bottom: 0;
  }
  #reason .list-1 li,
  #reason .list-2 li {
    width: 100%;
    border-right: none;
    display: flex;
    padding: 20px 0 30px 0;
    text-align-last: left;
  }
  #reason .list-1 li .img,
  #reason .list-2 li .img {
    width: 25%;
    height: auto;
  }  
  #reason .list-1 li .text,
  #reason .list-2 li .text {
    width: 70%;
    margin: 0 0 0 20px;
  }

  /* --------------------------------
  camera
  -------------------------------- */
  #camera {
    padding: 50px 0 50px;
  }
  #camera .list li {
    width: 160px;
  }
  #camera .link {
    margin-bottom: 60px;
    flex-direction: column;
    align-items: center;
  }
  #camera .list .item img {
    height: 100px;
  }
  #camera .link .btn {
    margin: 10px 0;
  }

  /* --------------------------------
  performance
  -------------------------------- */
  #performance {
    margin-bottom: 60px;
  }
  #performance .client {
    justify-content: space-between;
  }
  #performance .sec-title .ja::after {
    font-size: 0.8rem;
  }

  #performance .client .list-1 li,
  #performance .client .list-2 li {
    margin-bottom: 10px;
    font-size: 0.8rem;
  }
  #performance .client .list-1 .other,
  #performance .client .list-2 .other {
    font-size: 0.7rem;
    margin-bottom: 10px;
  } 

  /* --------------------------------
  shop
  -------------------------------- */
  #shop {
    margin-bottom: 80px;
    padding-top: 0;
    position: relative;
  }
  #shop .box {
    display: none;
  }
  #shop .bg .list {
  justify-content: space-between;
  flex-wrap: wrap;
}
  #shop .bg .list .item {
    width: 150px;
    margin: 0 2px 20px;
    text-align: center;
  }

  /* --------------------------------
  about
  -------------------------------- */
  #about {
    background-color: #CCEDF6;
    padding: 80px 0 80px 0;  
  }

  #about .list {
    flex-direction: column;
    align-items: center;
  }
  #about .list .item {
  width: 80%;
  margin-bottom: 40px;
  }
  #about .list .item:last-child {
    margin-bottom: 0;
  } 

  /* --------------------------------
  footer
  -------------------------------- */ 
  #footer {
    padding-bottom: 100px;
  }
  #footer .footer-menu .inner {
    flex-direction: column;
  }
  #footer .footer-menu {
    display: none;
  }
  #footer .adress {
    flex-direction: column;
    margin: 0 0 15px 16px;
    padding: 40px 0 0 0;
  }
  #footer .adress .loca p {
    line-height: 25px;
  }
  #footer .text {
    margin-top: 15px;
  }
  #footer .slash {
    display: none;
  }
  #footer .br {
    display: block;
  }
  #footer .copy {
    flex-direction: column;
    margin-left: 16px;
  }
  #footer .copy li {
    margin-bottom: 8px;
  }

  /*===================================
  アコーディオン
  ===================================*/
  .footer-menu-sp {
    padding: 0 10px;
    background-color: #00a3d2;
    display: block;
  }
  .footer-menu-sp .accordion-area{
    list-style: none;
    margin:0 auto;
    color: #fff;
  }
  .footer-menu-sp .accordion-area section {
    border-bottom: 1px solid #ccc;
  }
  .footer-menu-sp .title {
    position: relative;
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 20px 15px 20px 50px;
    transition: all .5s ease;
  }
  .footer-menu-sp .title::before,
  .footer-menu-sp .title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #fff;    
  }
  .footer-menu-sp .title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
  }
  .footer-menu-sp .title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);
  }
  .footer-menu-sp .title.close::before{
    transform: rotate(45deg);
  }
  .footer-menu-sp .title.close::after{
    transform: rotate(-45deg);
  }
  .footer-menu-sp .box {
    display: none;
    background: #00a3d2;
    margin:0 12px 0 12px;
    padding: 0 15px 15px 15px;
  }
  .footer-menu-sp .box .menu .item {
    margin-bottom: 7px;
    color: #00a3d2;
  }
  .footer-menu-sp .box .menu .item:last-child {
    margin-bottom: 0;
  }
  .footer-menu-sp .box .menu .item a {
    color: #fff;
  }
  .footer-menu-sp .box .menu .item a::before {
    content: "-";
    margin-right: 3px;
  }
}


