@charset "UTF-8";
body {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  -webkit-font-feature-settings: "palt" 1;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.2vw;
  }
  body.js_humburgerOpen {
    height: 100%;
    overflow: hidden;
  }
}

a {
  transition-duration: 0.3s;
}
a:hover {
  opacity: 0.6;
}
a.no-active {
  pointer-events: none;
  opacity: 0.6;
}

a:link,
a:visited,
a:active {
  text-decoration: none;
}

main {
  position: relative;
  box-shadow: 0px 11px 21px 0px #9a9a9a;
  padding-bottom: 3.125em;
}
@media screen and (max-width: 768px) {
  main {
    padding-bottom: 0;
  }
}

[data-ruby] {
  position: relative;
}

[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 0.6em;
}

.footer {
  position: relative;
  z-index: 3;
  overflow-x: hidden;
}

@media screen and (max-width: 1280px) {
  .pc-none {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (max-width: 1280px) {
  .pc-block {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .tab-none {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (max-width: 1000px) {
  .tab-block {
    display: block;
  }
}

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

.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block;
  }
}

.elm {
  opacity: 0;
  transform: translateY(1.875em);
  transition: 0.5s ease-in-out, transform 0.5s ease-out;
  filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .elm {
    transform: translateY(2em);
  }
}
.elm.fade-in {
  opacity: 1;
  transform: translateY(0px);
  filter: blur(0px);
}

.elm.elm2 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .elm.elm2 {
    transition-delay: unset;
  }
}

.elm.elm2_2 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .elm.elm2_2 {
    transition-delay: unset;
  }
}

.elm.elm3 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .elm.elm3 {
    transition-delay: unset;
  }
}

.elm_title {
  opacity: 1;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateY(-1.5em);
}
@media screen and (max-width: 768px) {
  .elm_title {
    transform: translateY(-70px);
  }
}

.elm_title_en {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  transition-delay: 0.3s;
}

.elm_r {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(300px);
}
@media screen and (max-width: 768px) {
  .elm_r {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(200px);
  }
}

.elm_l {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(-300px);
}
@media screen and (max-width: 768px) {
  .elm_l {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(-200px);
  }
}

.elm_o {
  opacity: 0;
  transition-duration: 1.8s;
  transition-timing-function: ease-in-out;
  filter: blur(6px);
}
.elm_o.fade-in {
  opacity: 1;
  filter: blur(0px);
}

.elm_title.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm_title_en.fade-in {
  opacity: 1;
}

.elm_r.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.elm_l.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.animate-on-appear {
  animation: fadeAndTranslate 1s ease forwards;
}
@keyframes fadeAndTranslate {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-l {
  animation: fadeAndTranslateL 1s ease forwards;
}

@keyframes fadeAndTranslateL {
  from {
    opacity: 0;
    transform: translateX(-3.125em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-o {
  animation: fadeAndTranslateO 1s ease forwards;
}
@keyframes fadeAndTranslateO {
  from {
    opacity: 0;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
.inner1000 {
  max-width: 62.5em;
  width: 90%;
  margin: 0 auto;
}

/* ローディング画面 */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../img/top/entry_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transform: translateY(-100%);
  animation: fill2 1s ease-in-out;
}

.loader-container_pt {
  display: none;
}

/* ローディングアニメーション */
@keyframes fill2 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  20% {
    transform: translateX(0%);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 1;
  }
}
.lowerTitle {
  background: #00292c;
  padding-block: 10em 6.875em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .lowerTitle {
    padding-block: 8em 3.875em;
  }
}
.lowerTitle h1 {
  font-size: 1.875em;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.lowerTitle .en {
  font-size: 1.25em;
  font-family: "trajan-pro-3", serif;
  color: #fff;
  font-weight: 500;
  margin-top: 0.5em;
  letter-spacing: 0.16em;
}
.lowerTitle_headline {
  position: relative;
  z-index: 2;
}
.lowerTitle_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.lowerTitle_bg picture {
  width: 100%;
  height: 100%;
}
.lowerTitle_bg picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lowerMv {
  position: relative;
}
.lowerMv_headline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 2;
}
.lowerMv_headline h1 {
  font-family: "trajan-pro-3", serif;
  font-size: 1.25em;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.lowerMv_headline h2 {
  font-size: 1.875em;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-top: 1.5333333333em;
}
@media screen and (max-width: 768px) {
  .lowerMv_headline h2 {
    font-size: 1.7em;
  }
}
.lowerMv picture {
  position: relative;
  z-index: 1;
}
.lowerMv picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lowerSection_title {
  font-size: 1.375em;
  font-family: "trajan-pro-3", serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-align: center;
  color: #00292c;
}

.linkBtn a {
  display: inline-block;
  font-size: 1em;
  letter-spacing: 0.16em;
  padding: 0.5em 3em;
  position: relative;
  background: #f3de7e;
}
@media screen and (max-width: 768px) {
  .linkBtn a {
    font-size: 1.125em;
  }
}
.linkBtn a::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  border-left: 0.5em solid #000;
  border-top: 0.4em solid transparent;
  border-bottom: 0.4em solid transparent;
  z-index: 1;
}
.linkBtn a .ls {
  letter-spacing: 0.05em;
}
.linkBtn a.shine {
  background: linear-gradient(-45deg, #f3de7e 50%, #fcf6db 60%, #f3de7e 70%);
  background-size: 400% 100%;
  animation: shine 10s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}
.linkBtn a.shine2 {
  background: linear-gradient(-45deg, #00292c 50%, #008892 60%, #00292c 70%);
  background-size: 400% 100%;
  animation: shine 10s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}
@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}

.no-active {
  opacity: 0.5;
}
.no-active a {
  pointer-events: none;
}

.back-to-top {
  display: none;
  position: fixed;
  right: 2%;
  bottom: 3%;
  color: #fff;
  width: 3.875em;
  border-radius: 50%;
  display: inline-block;
  text-decoration: none;
  z-index: 101;
  transition-duration: initial;
}
@media screen and (max-width: 768px) {
  .back-to-top {
    width: 14vw;
    bottom: 21vw;
  }
}
.back-to-top:hover {
  opacity: 1;
}
.back-to-top img {
  transition-duration: 0.3s;
}
.back-to-top img:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .back-to-top img:hover {
    opacity: 1;
  }
}

picture {
  position: relative;
}
picture .caption {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  bottom: 0.1em;
  right: 0.5em;
  text-align: right;
  line-height: 1.2;
  font-size: 0.625em;
  color: #fff;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
}

.bottomNotes {
  line-height: 1.2em;
  margin-top: 5.625em;
}
.bottomNotes p {
  font-size: 0.6875em;
  text-indent: -1em;
  padding-left: 1em;
  letter-spacing: 0;
  text-align: justify;
}

.aniLine {
  position: absolute;
  overflow: hidden;
  z-index: 1;
  transform: rotate(-50deg);
}
.aniLine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
}
.aniLine.coWhite::before {
  background-color: #fff;
}
.aniLine.coOrange::before {
  background-color: #ffb500;
}
.aniLine.coBlue::before {
  background-color: #7ac3ff;
}
.aniLine.coGreen::before {
  background-color: #00873c;
}
.aniLine.is-active::before {
  animation: lineAnimation 0.4s ease-in-out forwards;
}
.aniLine.is-active.tr01::before {
  animation: lineAnimation 0.6s ease-in-out forwards;
}
.aniLine.is-active.tr02::before {
  animation: lineAnimation 0.4s ease-in-out forwards;
}
.aniLine.is-active.tr03::before {
  animation: lineAnimation 0.4s ease-in-out forwards;
}

.aniLine01 {
  width: 45.8125em;
  height: 0.2em;
  top: 5em;
  left: 25%;
  transform: translateX(-50%) rotate(-50deg);
  -webkit-transform: translateX(-50%) rotate(-50deg);
  -ms-transform: translateX(-50%) rotate(-50deg);
}
@media screen and (max-width: 768px) {
  .aniLine01 {
    width: 13.8125em;
    height: 0.2em;
    top: 8em;
    left: 19%;
  }
}

.aniLine02 {
  width: 19.5625em;
  height: 0.2em;
  bottom: 12em;
  right: 5%;
}
@media screen and (max-width: 1280px) {
  .aniLine02 {
    right: -3%;
  }
}
@media screen and (max-width: 768px) {
  .aniLine02 {
    width: 7.5625em;
    bottom: 4em;
  }
}

.aniLine03 {
  width: 19.5625em;
  height: 0.2em;
  bottom: 7em;
  right: 6%;
}
@media screen and (max-width: 1280px) {
  .aniLine03 {
    right: -2%;
  }
}
@media screen and (max-width: 768px) {
  .aniLine03 {
    width: 7.5625em;
    bottom: 2em;
  }
}

.aniLine04 {
  width: 20em;
  height: 0.2em;
  top: 9em;
  left: -6%;
}
@media screen and (max-width: 768px) {
  .aniLine04 {
    width: 10em;
    top: 9em;
    left: -13%;
  }
}

.aniLine05 {
  width: 20em;
  height: 0.2em;
  top: 12em;
  left: -5%;
}
@media screen and (max-width: 768px) {
  .aniLine05 {
    width: 10em;
    top: 11em;
    left: -14%;
  }
}

.aniLine06 {
  width: 20em;
  height: 0.2em;
  top: 25em;
  right: -7%;
}
@media screen and (max-width: 768px) {
  .aniLine06 {
    width: 10em;
    top: 31em;
    right: -14%;
  }
}

@keyframes lineAnimation {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/* ふわふわするアニメーション */
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.3em);
  }
}
@keyframes fuwafuwa2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.6em);
  }
}
.anime-fuwafuwa {
  animation: 1s fuwafuwa infinite;
}

/* ヘッダー */
header {
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 9998;
  position: fixed;
}
@media screen and (max-width: 768px) {
  header {
    height: 65px;
  }
}
header .headerWrap {
  padding: 0 3.125em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
}
@media screen and (max-width: 768px) {
  header .headerWrap {
    justify-content: space-between;
    padding: 0 7vw 0 5vw;
    height: 65px;
  }
}
header .headerWrap .logo_name {
  width: 18.25em;
}
header .headerWrap_menu {
  position: relative;
  padding-right: 6.25em;
}
@media screen and (max-width: 768px) {
  header .headerWrap_menu {
    padding-right: 0;
  }
}
header .headerWrap_menu .detail {
  font-size: 0.6875em;
  color: #fff;
  margin-left: 1.6em;
}
@media screen and (max-width: 768px) {
  header .headerWrap_menu .detail {
    display: none;
  }
}
header .el_humburger {
  position: fixed;
  z-index: 9999;
  position: absolute;
  top: 50%;
  right: 3.125em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 74px;
  box-sizing: border-box;
  padding-top: 0;
  cursor: pointer;
  pointer-events: auto;
  color: #000;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  header .el_humburger {
    width: 60px;
    right: 1.5em;
    top: 58%;
  }
}
header .el_humburger_wrapper {
  width: 74px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  header .el_humburger_wrapper {
    width: 60px;
  }
}
header .el_humburger span.el_humburger_bar {
  display: block;
  width: 100%;
  margin: 0 auto 6.5px;
  height: 1px;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
header .el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}
header .el_humburgerButton.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #000;
}
header .el_humburgerButton.el_humburgerButton__close span.el_humburger_bar.top {
  transform: translateY(5px) rotate(-45deg);
}
header .el_humburgerButton.el_humburgerButton__close span.el_humburger_bar.bottom {
  transform: translateY(-6px) rotate(45deg);
}
header .navi {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  background-color: rgba(0, 68, 67, 0.95);
  width: 36.5em;
  z-index: 3;
  padding-top: 7.5em;
  box-sizing: border-box;
  transition: all 600ms ease-in-out;
  transform: translateZ(0) translateX(100%);
  overflow: auto;
  z-index: 9998;
  color: #fff;
}
@media screen and (max-width: 768px) {
  header .navi {
    width: 100%;
    padding-top: 5em;
  }
}
header .navi a {
  color: #fff;
}
header .navi_item {
  margin-bottom: 1.5em;
  line-height: 1;
  white-space: nowrap;
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  header .navi_item {
    font-size: 4.3vw;
    margin-bottom: 4vw;
  }
}
header .navi_item.no_active {
  opacity: 0.5;
  pointer-events: none;
}
header .navi_item.current a {
  padding-bottom: 0.125em;
  border-bottom: 0.0625em solid #fff;
}
header .navi_item:first-child .navi_item_box {
  border-left: none;
}
header .navi_item_box {
  padding-left: 0.8em;
  border-left: 0.0625em solid #fff;
}
header .navi_item_box_new {
  font-size: 0.8125em;
  letter-spacing: 0.1em;
  margin-bottom: 0.8em;
  opacity: 0;
  display: inline-block;
  background-color: #f3de7e;
  color: #000;
  padding: 0.3em 0.6em;
}
@media screen and (max-width: 768px) {
  header .navi_item_box_new {
    font-size: 0.6em;
    padding-block: 0.1em 0.15em;
    margin-bottom: 0.5em;
  }
}
header .navi_item_box_en {
  font-size: 0.8125em;
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  header .navi_item_box_en {
    font-size: 0.6em;
    margin-bottom: 0.4em;
  }
}
header .navi_item_box_en.rc {
  letter-spacing: 0.1em;
}
header .navi_item_box_ja {
  font-size: 1.125em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  header .navi_item_box_ja {
    font-size: 0.8em;
  }
}
header .navi_item_box.new .navi_item_box_new {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  header .navi_item:last-of-type a .navi_item_box_ja {
    letter-spacing: 0;
  }
}
header .navi_inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 76%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  header .navi_inner {
    width: 90%;
  }
}
header .navi_inner02 {
  width: 76%;
  margin: 3.125em auto 0;
  padding-bottom: 5em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 {
    width: 90%;
    margin-top: 1em;
    padding-bottom: 2em;
  }
}
header .navi_inner02 .navi_item_sub {
  display: flex;
  justify-content: flex-start;
}
header .navi_inner02 .navi_item_sub_item {
  font-size: 0.875em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_sub_item {
    font-size: 1em;
    width: 50%;
  }
}
header .navi_inner02 .navi_item_sub_item:first-child {
  margin-right: 1.7857142857em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_sub_item:first-child {
    margin-right: 0vw;
  }
}
header .navi_inner02 .navi_item_sub_item a {
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}
header .navi_inner02 .navi_item_sub_item a span {
  width: 0.8571428571em;
  margin-right: 0.1428571429em;
  display: flex;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_sub_item a span {
    width: 4vw;
    margin-right: 1vw;
  }
}
header .navi_inner02 .navi_item_box {
  display: flex;
  justify-content: space-between;
  margin-top: 1.25em;
  border-left: none;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_box {
    margin-top: 1.5em;
  }
}
header .navi_inner02 .navi_item_box_item {
  width: 48.6%;
}
header .navi_inner02 .navi_item_box_item a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1em 0;
  border: 0.0625em solid #fff;
  font-size: 1em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_box_item a {
    font-size: 1.125em;
    padding: 0.7em 0;
  }
}
header .navi_inner02 .navi_item_tel {
  margin-top: 1.875em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_tel {
    margin-top: 8vw;
  }
}
header .navi_inner02 .navi_item_tel_txt {
  font-size: 0.875em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_tel_txt {
    font-size: 3.5vw;
  }
}
header .navi_inner02 .navi_item_tel a {
  font-size: 2.8571428571em;
  letter-spacing: 0.1em;
  margin-top: 0.3571428571em;
  pointer-events: none;
  line-height: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_tel a {
    pointer-events: all;
    font-size: 9vw;
    margin-top: 2vw;
    letter-spacing: 0.05em;
  }
}
header .navi_inner02 .navi_item_tel a span {
  width: 2.5em;
  display: flex;
  align-items: center;
  margin-right: 0.7142857143em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_tel a span {
    width: 9vw;
    margin-right: 2vw;
  }
}
header .navi_inner02 .navi_item_tel_time {
  font-size: 0.6875em;
  margin-top: 0.7272727273em;
}
@media screen and (max-width: 768px) {
  header .navi_inner02 .navi_item_tel_time {
    font-size: 3vw;
    margin-top: 2.5vw;
    line-height: 1.6;
  }
}
header .navi .topLink {
  position: absolute;
  left: 12%;
  top: 4em;
  font-family: "trajan-pro-3", serif;
  font-weight: 500;
  font-size: 1em;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  header .navi .topLink {
    left: 8%;
    top: 3em;
    font-size: 1.25em;
  }
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #fff;
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
  transform: translateX(25px);
}
@media screen and (max-width: 768px) {
  .js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
    transform: translateX(20px);
  }
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  transform: translateX(45px);
}
@media screen and (max-width: 768px) {
  .js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
    transform: translateX(38px);
  }
}
.js_humburgerOpen .navi {
  right: 0;
  transform: translateZ(0) translateX(0);
}
@media screen and (max-width: 768px) {
  .js_humburgerOpen .navi {
    height: 100%;
    overflow: scroll;
  }
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.footerMenu {
  margin-top: 7em;
}
@media screen and (max-width: 768px) {
  .footerMenu {
    background-color: #eeeeee;
    padding-block: 1em;
    margin-top: 6em;
  }
}
.footerMenu .menuList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 1160px) {
  .footerMenu .menuList {
    width: 65%;
    margin: 0 auto;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .footerMenu .menuList {
    width: 90%;
  }
}
.footerMenu .menuList li {
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  width: auto;
  font-size: 0.625em;
  line-height: 1;
  border-right: 0.05em solid #3f3f3f;
  text-align: center;
  padding: 0 1em;
  letter-spacing: 0.05em;
  line-height: 1.4;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.footerMenu .menuList li a span {
  font-size: 1.3em;
}
.footerMenu .menuList li:last-of-type {
  border-right: none;
}
@media screen and (max-width: 1160px) {
  .footerMenu .menuList li:nth-of-type(n + 8) {
    margin-top: 3em;
  }
  .footerMenu .menuList li:nth-of-type(7) {
    border-right: none;
  }
}
@media screen and (max-width: 768px) {
  .footerMenu .menuList li {
    width: 50%;
    border-right: none;
    border-bottom: 0.05em solid #fff;
    padding: 1.4em 0 1em 0.5em;
    text-align: left;
    font-size: 0.8125em;
    line-height: 1.4;
  }
  .footerMenu .menuList li:nth-of-type(n + 3) {
    margin-top: 0em;
  }
  .footerMenu .menuList li:nth-of-type(n + 11) {
    border-bottom: none;
  }
  .footerMenu .menuList li:last-of-type {
    letter-spacing: -0.03em;
  }
  .footerMenu .menuList li a span {
    font-size: 1.3em;
  }
  .footerMenu .menuList li a span.rc {
    letter-spacing: 0.1em;
  }
}
.footerMenu .menuList li.no-active a {
  opacity: 0.6;
  pointer-events: none;
}
.footerMenu .menuList li.new {
  position: relative;
}
.footerMenu .menuList li.new::after {
  content: "NEW";
  display: inline-block;
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 0.75em;
  padding: 0.4em 0.3em 0.1em 0.3em;
  background-color: #961c22;
  color: white;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footerMenu .menuList li.new::after {
    position: absolute;
    top: 50%;
    left: auto;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: inline-block;
    padding: 0.5em 0.5em 0.3em;
  }
}
@media screen and (max-width: 768px) {
  .footerMenu .menuList li.new:nth-of-type(odd)::after {
    right: 2.5em;
  }
}

footer {
  width: 100%;
  position: relative;
  z-index: 100;
  padding-top: 3.125em;
}
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 5em;
  }
}
footer .footer_fix {
  width: 100%;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  footer .footer_fix {
    padding: 3vw 0 5vw;
  }
}
footer .footer_fix_inner {
  max-width: 62.5em;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
footer .footer_fix .navi_item_tel_txt {
  font-size: 0.875em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_tel_txt {
    text-align: center;
    font-size: 3vw;
    line-height: 2.6;
  }
  footer .footer_fix .navi_item_tel_txt [data-ruby]::before {
    line-height: 1.2;
  }
}
footer .footer_fix .navi_item_tel a {
  font-size: 4.375em;
  letter-spacing: 0.05em;
  margin-top: 0.02em;
  pointer-events: none;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_tel a {
    pointer-events: all;
    text-align: center;
    font-size: 3.375em;
    margin-top: 0;
  }
}
footer .footer_fix .navi_item_tel a span {
  width: 0.8em;
  display: flex;
  align-items: center;
  margin-right: 0.28em;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_tel a span {
    width: 9vw;
    margin-right: 2vw;
  }
}
footer .footer_fix .navi_item_tel_time {
  font-size: 0.8125em;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_tel_time {
    margin-top: 0.5em;
    font-size: 0.9375em;
  }
}
footer .footer_fix .navi_item_sub_item {
  font-size: 14px;
}
footer .footer_fix .navi_item_sub_item:nth-child(n+2) {
  margin-top: 10px;
}
footer .footer_fix .navi_item_sub_item a {
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}
footer .footer_fix .navi_item_sub_item a span {
  width: 12px;
  margin-right: 2px;
  display: flex;
  align-items: center;
}
footer .footer_fix .navi_item_box {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2.5em;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_box {
    margin-top: 0;
    background: #000;
  }
}
footer .footer_fix .navi_item_box_item {
  width: 10.625em;
}
footer .footer_fix .navi_item_box_item:nth-of-type(3) {
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_box_item:nth-of-type(3) {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_box_item {
    width: 25%;
  }
  footer .footer_fix .navi_item_box_item.no-active {
    opacity: 0.4;
  }
}
footer .footer_fix .navi_item_box_item a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1em 0;
  font-size: 1em;
  letter-spacing: 0.1em;
  background: #a48b51;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_box_item a {
    position: relative;
    padding: 3em 0 1em 0;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_fix .navi_item_box_item:nth-of-type(1) a {
    background: #561a19;
    background: linear-gradient(45deg, rgb(86, 26, 25) 0%, rgb(178, 63, 62) 100%);
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(1) a::before {
    content: "";
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 1.8em;
    height: 1.8em;
    background: url("../../img/common/footer_icon_tel.svg") no-repeat center center/contain;
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(2) a {
    background: #253d37;
    background: linear-gradient(45deg, rgb(37, 61, 55) 0%, rgb(67, 137, 69) 100%);
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(2) a::before {
    content: "";
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 1.8em;
    height: 1.8em;
    background: url("../../img/common/footer_icon_entry.svg") no-repeat center center/contain;
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(3) a {
    background: #60430e;
    background: linear-gradient(45deg, rgb(96, 67, 14) 0%, rgb(195, 161, 99) 100%);
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(3) a::before {
    content: "";
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 1.8em;
    height: 1.8em;
    background: url("../../img/common/footer_icon_mail.svg") no-repeat center center/contain;
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(4) a {
    background: #333333;
    background: linear-gradient(45deg, rgb(51, 51, 51) 0%, rgb(150, 150, 150) 100%);
  }
  footer .footer_fix .navi_item_box_item:nth-of-type(4) a::before {
    content: "";
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 1.8em;
    height: 1.8em;
    background: url("../../img/common/footer_icon_map.svg") no-repeat center center/contain;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_fix_list {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 100;
  }
}
footer .footer_fb {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 3.125em;
  padding-block: 2.5em;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  footer .footer_fb {
    flex-direction: column;
    padding: 10vw 0;
    margin-top: 2.125em;
  }
}
footer .footer_com {
  margin-right: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .footer_com {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  footer .footer_com:nth-of-type(n + 2) {
    margin-top: 8vw;
  }
}
footer .footer_com_work {
  font-size: 0.75em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .footer_com_work {
    font-size: 1em;
  }
}
footer .footer_com_logo {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  footer .footer_com_logo {
    margin-top: 3vw;
  }
}
footer .footer_com_logo.logo01 {
  width: 16.15625em;
}
@media screen and (max-width: 1100px) {
  footer .footer_com_logo.logo01 {
    width: 12em;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_com_logo.logo01 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .footer_com_logo.logo02 {
  width: 15.9375em;
}
@media screen and (max-width: 1100px) {
  footer .footer_com_logo.logo02 {
    width: 12em;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_com_logo.logo02 {
    width: 78%;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .footer_com_logo.logo03 {
  width: 9.375em;
}
@media screen and (max-width: 1100px) {
  footer .footer_com_logo.logo03 {
    width: 9em;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_com_logo.logo03 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .footer_com_logo.logo04 {
  width: 15.375em;
}
@media screen and (max-width: 1100px) {
  footer .footer_com_logo.logo04 {
    width: 12em;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_com_logo.logo04 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .footer_com_logo a {
  display: block;
}
footer .footer_com:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  footer .footer_com:last-of-type {
    margin-right: auto;
  }
}
footer .cop {
  text-align: center;
  padding-block: 1em;
  background: #000;
  font-size: 0.625em;
  color: #fff;
}

img {
  width: 100%;
}

.test1 {
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s ease-out 0.01s;
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  animation: beyooon_a 1s forwards;
  animation: beyooon_b 1s forwards;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
@keyframes beyooon_a {
  0% {
    transform: translate(-50%, 0%) scale(0.5);
  }
  16% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1.22);
  }
  28% {
    transform: translate(-50%, 0%) scale(1);
  }
  88% {
    transform: translate(-50%, 0%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1);
  }
}
@keyframes beyooon_b {
  0% {
    transform: scale(0.5);
  }
  16% {
    transform: scale(1.32);
  }
  28% {
    transform: scale(0.87);
  }
  44% {
    transform: scale(1.05);
  }
  59% {
    transform: scale(0.98);
  }
  73% {
    transform: scale(1.01);
  }
  88% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
@media screen and (max-width: 800px) {
  body {
    overflow-x: hidden;
    letter-spacing: 0;
  }
}
figure {
  margin: auto;
}

.f12res {
  font-size: 0.75em;
}

.f13res {
  font-size: 0.8125em;
}

.f14res {
  font-size: 0.875em;
}

.f16res {
  font-size: 1em;
}

.f18res {
  font-size: 1.125em;
}

.f20res {
  font-size: 1.25em;
}

.f24res {
  font-size: 1.5em;
}

dd {
  margin: 0;
}

@media screen and (max-width: 800px) {
  .f12res {
    font-size: 2.4vw;
  }
  .f13res {
    font-size: 3vw;
  }
  .f16res {
    font-size: 3.9vw;
  }
  .f18res {
    font-size: 5vw;
    line-height: 1.4;
  }
  .f20res {
    font-size: 4.4vw;
  }
  .f24res {
    font-size: 5vw;
  }
}
figure.img {
  position: relative;
  top: 0;
  left: 0;
}

figure.img .img_caption {
  position: absolute;
  bottom: 4px;
  right: 4px;
  color: #fff;
}

@media screen and (max-width: 800px) {
  figure.img {
    height: 26em;
  }
  figure.img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  figure.img .img_caption {
    right: 4%;
    bottom: 6%;
    width: 91%;
    text-align: right;
  }
}
#section01 {
  width: 100%;
  padding: 0;
  background-color: #dedbd8;
  position: relative;
  top: 0;
  left: 0;
  color: #fff;
}

@media screen and (max-width: 800px) {
  #section01 {
    padding: 0;
  }
}
#section01 .section__in {
  width: 90%;
  max-width: 930px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 800px) {
  #section01 .img .img_caption {
    text-align: left;
  }
}
#section01 .titles {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

#section01 h1 {
  text-align: center;
}

#section01 h1 .eng {
  text-align: center;
  margin-bottom: 0.6em;
  font-size: 1.25em;
}

#section01 h1 .jpn {
  text-align: center;
  margin-bottom: 1em;
}

#section01 .base_text {
  text-align: center;
  font-size: 1.875em;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-top: 1.5333333333em;
}

@media screen and (max-width: 800px) {
  #section01 h1 .eng {
    font-size: 0.8em;
  }
  #section01 .base_text {
    font-size: 1.7em;
  }
}
#section02 {
  width: 100%;
  padding: 96px 0 100px;
  background: repeat top/80% auto url(../../img/iot/bg_pc.jpg);
}

@media screen and (max-width: 800px) {
  #section02 {
    padding: 36px 0 50px;
    background: repeat top/100% auto url(../../img/iot/bg_pc.jpg);
  }
}
#section02 .intro_text {
  margin: 0 auto 38px;
  max-width: 900px;
  width: 89%;
  text-align: center;
}

@media screen and (max-width: 800px) {
  #section02 .intro_text {
    text-align: left;
  }
  #section02 .intro_text .intro_top {
    font-size: 3.8vw;
  }
}
#section02 .intro_text .intro_large {
  margin-top: 34px;
  line-height: 1.7em;
}

@media screen and (max-width: 800px) {
  #section02 .intro_text .intro_large {
    margin-top: 27px;
  }
}
#section02 .intro_text .intro_note {
  margin-top: 35px;
}

@media screen and (max-width: 800px) {
  #section02 .intro_text .intro_note {
    margin-top: 17px;
    font-size: 3vw;
  }
}
#section02 .iot_img {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}

#section02 .iot_img figcaption {
  text-align: center;
  margin-top: 30px;
}

@media screen and (max-width: 800px) {
  #section02 .iot_img figcaption {
    font-size: 5vw;
  }
}
#section02 .section__in {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

#section02 .block.block--01 {
  margin-top: 70px;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--01 {
    margin-top: 64px;
  }
  #section02 .block.block--01 .block_title_wrap {
    margin: 0 calc(50% - 50vw);
  }
  #section02 .block.block--01 .title_bottom {
    margin-top: 12px;
  }
}
#section02 .block.block--01 .block_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--01 .block_wrap {
    margin-top: 24px;
    display: block;
  }
}
#section02 .block.block--01 .block_wrap .block_item {
  width: 49%;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--01 .block_wrap .block_item {
    width: 100%;
  }
  #section02 .block.block--01 .block_wrap .block_item.block2 {
    margin-top: 37px;
  }
}
#section02 .block.block--01 .block_wrap .block_item_title {
  background-color: #0094b3;
  color: #fff;
  line-height: 1em;
  padding: 6px 0;
  text-align: center;
}

#section02 .block.block--01 .block_wrap .block_item_img {
  margin-top: 14px;
}

#section02 .block.block--01 .block_wrap .box_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--01 .block_wrap .box_wrap {
    display: block;
  }
}
#section02 .block.block--01 .block_wrap .box_wrap .box_img_wrap {
  width: 18%;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--01 .block_wrap .box_wrap .box_img_wrap {
    width: 100%;
    margin-top: 34px;
  }
}
#section02 .block.block--01 .block_wrap .box_wrap .box_text_wrap {
  width: 75%;
}

.box_text {
  line-height: 1.4;
  letter-spacing: 0;
  text-align: justify;
}

.box_text--note {
  line-height: 1.4;
  letter-spacing: 0;
  text-align: justify;
}

.box_note {
  line-height: 1.4;
  letter-spacing: 0;
  text-align: justify;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--01 .block_wrap .box_wrap .box_text_wrap {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  #section02 .block.block--01 .block_wrap .box_wrap .box_imgsp {
    margin-bottom: 7.5vw;
  }
}
#section02 .block.block--01 .block_wrap .box_text_title {
  border-top: 1px solid #0094b3;
  border-bottom: 1px solid #0094b3;
  box-sizing: border-box;
  line-height: 1em;
  padding: 4px 0;
  color: #0094b3;
  margin-top: 15px;
}

#section02 .block.block--01 .block_wrap .box_text--note {
  margin-top: 10px;
}

#section02 .block.block--02 {
  margin-top: 40px;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--02 {
    margin-top: 60px;
  }
  #section02 .block.block--02 .block_title_wrap {
    margin: 0 calc(50% - 50vw);
  }
}
#section02 .block.block--02 .box_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--02 .box_wrap {
    margin-top: 16px;
    display: block;
  }
}
#section02 .block.block--02 .box01 {
  width: 54%;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--02 .box01 {
    width: 100%;
  }
}
#section02 .block.block--02 .box02 {
  width: 26%;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--02 .box02 {
    width: 100%;
    margin-top: 44px;
  }
}
#section02 .block.block--02 .box03 {
  width: 11.3%;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--02 .box03 {
    width: 100%;
    margin-top: 44px;
  }
}
#section02 .block.block--02 .box_text {
  margin-top: 17px;
}

#section02 .block.block--03 {
  margin-top: 40px;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--03 {
    margin-top: 60px;
  }
  #section02 .block.block--03 .block_title_wrap {
    margin: 0 calc(50% - 50vw);
  }
  #section02 .block.block--03 .title_bottom {
    margin-top: 12px;
  }
}
#section02 .block.block--03 .box_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  background: no-repeat right bottom url(../../img/iot/lifit_box_bg.png);
  background-size: auto 100%;
  background-color: #2e5938;
  color: #fff;
  padding: 20px 22px 14px 22px;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--03 .box_wrap {
    margin-top: 23px;
    background: none;
    padding: 0;
  }
}
#section02 .block.block--03 .box_list {
  width: 53%;
}

#section02 .block.block--03 .item_title {
  padding: 12px 0;
  position: relative;
  top: 0;
  left: 0;
}

#section02 .block.block--03 .item_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
}

#section02 .block.block--03 .item_title.item_title--01:before {
  background: no-repeat center/100% url(../../img/iot/lifit_box01_icon.svg);
}

#section02 .block.block--03 .item_title.item_title--02:before {
  background: no-repeat center/100% url(../../img/iot/lifit_box02_icon.svg);
}

#section02 .block.block--03 .list_table {
  margin-top: 10px;
}

#section02 .block.block--03 .box_note {
  margin-top: 3px;
}

#section02 .block.block--04 {
  margin-top: 40px;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--04 {
    margin-top: 60px;
  }
  #section02 .block.block--04 .block_title_wrap {
    margin: 0 calc(50% - 50vw);
  }
  #section02 .block.block--04 .title_bottom {
    margin-top: 12px;
  }
}
#section02 .block.block--04 .box_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--04 .box_wrap {
    margin-top: 21px;
    display: block;
  }
}
#section02 .block.block--04 .box_wrap_all {
  margin-top: 30px;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--04 .box_wrap {
    margin-top: 5vw;
  }
}
#section02 .block.block--04 .img01 {
  width: 21.3%;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--04 .img01 {
    width: 100%;
  }
}
#section02 .block.block--04 .img02 {
  width: 32%;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--04 .img02 {
    width: 100%;
    margin-top: 9px;
  }
}
#section02 .block.block--04 .img03 {
  width: 42%;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--04 .img03 {
    width: 100%;
    margin-top: 40px;
  }
}
#section02 .block.block--04 .box_note {
  margin-top: 51px;
}

@media screen and (max-width: 800px) {
  #section02 .block.block--04 .box_note {
    margin-top: 34px;
  }
} 
@media screen and (max-width: 800px) {
  .footerMenu {
    margin-top: 0;
  }
}/*# sourceMappingURL=iot.css.map */