@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;700;900&display=swap");
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

body {
  width: 100%;
  font-family: YakuHanMP_Noto, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  color: #222;
  font-weight: 400;
  font-size: 4.2vw;
  font-feature-settings: "palt";
  line-height: 1.8em;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
    width: 100%;
    position: relative;
  }
}

body.fixed {
  position: fixed;
}

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

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

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

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.6s;
}

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

a:hover {
  opacity: 0.6;
}
a:hover img {
  transition: all 0.6s;
  opacity: 0.6;
}

@media screen and (min-width: 768px) {
  a.tel-link {
    pointer-events: none;
  }
}

span.sup {
  font-size: 0.6em;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

span.inline-block {
  display: inline-block;
}

@keyframes bganimation {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 50%, 0);
  }
}
header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  padding-top: 6%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  header {
    max-width: 1366px;
    margin: 0 auto;
    padding-top: 0;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
header h1 {
  margin-left: 8%;
  width: 40%;
}
@media screen and (min-width: 768px) {
  header h1 {
    max-width: 218px;
  }
}
header div.serch-btn {
  width: 46.8%;
  position: absolute;
  right: 0;
  top: 40%;
  transform: translate(79%, 0);
}
@media screen and (min-width: 768px) {
  header div.serch-btn {
    width: 172px;
    transform: translate(0%, 0);
    top: 0;
    right: 80px;
  }
}
@media screen and (min-width: 1280px) {
  header div.serch-btn {
    right: 120px;
  }
}
header div.serch-btn.active {
  transition: all 0.4s;
  transform: translate(0%, 0);
}
header div.serch-btn a {
  display: block;
  width: 79%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}
header div.pc-inly-taggle {
  display: none;
}
@media screen and (min-width: 768px) {
  header div.pc-inly-taggle {
    cursor: pointer;
    display: block;
    position: absolute;
    width: 40px;
    padding-top: 30px;
    right: 20px;
    top: 0;
    z-index: 5;
    /*taggle-btn*/
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  header div.pc-inly-taggle {
    right: 60px;
  }
}
@media screen and (min-width: 768px) {
  header div.pc-inly-taggle div.taggle-btn {
    width: 100%;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
  }
  header div.pc-inly-taggle div.taggle-btn span {
    display: block;
    position: absolute;
  }
  header div.pc-inly-taggle div.taggle-btn span:first-child {
    display: block;
    width: 100%;
    left: 50%;
    top: 0;
    font-size: 13px;
    font-weight: bold;
    line-height: 1em;
    letter-spacing: -0.04em;
    transform-origin: left center;
    transform: translate(-40%, 0) scale(0.8);
  }
  header div.pc-inly-taggle div.taggle-btn span:nth-child(2), header div.pc-inly-taggle div.taggle-btn span:nth-child(3) {
    width: 100%;
    height: 2px;
    background: #000;
    transform: translate(0%, 0);
    transition: all 0.4s;
  }
  header div.pc-inly-taggle div.taggle-btn span:nth-child(2) {
    left: 0%;
    top: 60%;
  }
  header div.pc-inly-taggle div.taggle-btn span:nth-child(3) {
    top: 96%;
  }
  header div.pc-inly-taggle div.taggle-btn.active span:nth-child(2) {
    top: 73%;
    transition: all 0.6s;
    transform: translate(0%, 50%) rotate(-45deg) scaleX(0.5);
  }
  header div.pc-inly-taggle div.taggle-btn.active span:nth-child(3) {
    top: 80%;
    transform: translate(0%, -50%) rotate(45deg) scaleX(0.5);
  }
  header div.pc-inly-taggle div.taggle-btn.white span {
    color: #FFF;
  }
  header div.pc-inly-taggle div.taggle-btn.white span:nth-child(2), header div.pc-inly-taggle div.taggle-btn.white span:nth-child(3) {
    background: #FFF;
  }
  header div.pc-inly-taggle div.taggle-btn.active span {
    color: #000;
  }
  header div.pc-inly-taggle div.taggle-btn.active span:nth-child(2), header div.pc-inly-taggle div.taggle-btn.active span:nth-child(3), header div.pc-inly-taggle div.taggle-btn.active span:nth-child(4) {
    background: #000;
  }
  header div.pc-inly-taggle div.taggle-btn.white.active span {
    color: #000;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  header div.pc-inly-taggle div.taggle-btn.white.active span {
    color: #FFF;
  }
}
@media screen and (min-width: 768px) {
  header div.pc-inly-taggle div.taggle-btn.white.active span:nth-child(2), header div.pc-inly-taggle div.taggle-btn.white.active span:nth-child(3) {
    background: #000;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  header div.pc-inly-taggle div.taggle-btn.white.active span:nth-child(2), header div.pc-inly-taggle div.taggle-btn.white.active span:nth-child(3) {
    background: #FFF;
  }
}

/*header*/
div.taggle-btn-wrap {
  position: fixed;
  right: 1%;
  top: 8%;
  cursor: pointer;
  z-index: 12;
  /*taggle-btn*/
}
@media screen and (min-width: 560px) {
  div.taggle-btn-wrap {
    top: 12%;
  }
}
@media screen and (min-width: 768px) {
  div.taggle-btn-wrap {
    display: none;
    width: 100%;
    max-width: 1366px;
    height: 3px;
    margin: 0 auto;
    padding-top: 0;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
div.taggle-btn-wrap div.taggle-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  padding-top: 30px;
}
@media screen and (min-width: 1280px) {
  div.taggle-btn-wrap div.taggle-btn {
    right: 120px;
  }
}
div.taggle-btn-wrap div.taggle-btn span {
  display: block;
  position: absolute;
}
div.taggle-btn-wrap div.taggle-btn span:first-child {
  left: 0;
  top: 0;
  font-size: 9px;
  line-height: 1em;
  letter-spacing: -0.04em;
  transform-origin: left center;
  transform: scale(0.8);
}
div.taggle-btn-wrap div.taggle-btn span:nth-child(2), div.taggle-btn-wrap div.taggle-btn span:nth-child(3), div.taggle-btn-wrap div.taggle-btn span:nth-child(4) {
  width: 100%;
  height: 1px;
  background: #000;
  transform: translate(0%, 0);
  transition: all 0.4s;
}
div.taggle-btn-wrap div.taggle-btn span:nth-child(2) {
  left: 0%;
  top: 40%;
}
div.taggle-btn-wrap div.taggle-btn span:nth-child(3) {
  top: 65%;
}
div.taggle-btn-wrap div.taggle-btn span:nth-child(4) {
  top: 90%;
}
div.taggle-btn-wrap div.taggle-btn.active span:nth-child(2) {
  top: 61%;
  transition: all 0.6s;
  transform: translate(0%, 50%) rotate(-45deg);
}
div.taggle-btn-wrap div.taggle-btn.active span:nth-child(3) {
  top: 46%;
  transform: translate(0, 0) rotate(0deg);
  opacity: 0;
}
div.taggle-btn-wrap div.taggle-btn.active span:nth-child(4) {
  top: 68%;
  transform: translate(0%, -50%) rotate(45deg);
}
div.taggle-btn-wrap div.taggle-btn.white span {
  color: #FFF;
}
div.taggle-btn-wrap div.taggle-btn.white span:nth-child(2), div.taggle-btn-wrap div.taggle-btn.white span:nth-child(3), div.taggle-btn-wrap div.taggle-btn.white span:nth-child(4) {
  background: #FFF;
}
div.taggle-btn-wrap div.taggle-btn.active span {
  color: #000;
}
div.taggle-btn-wrap div.taggle-btn.active span:nth-child(2), div.taggle-btn-wrap div.taggle-btn.active span:nth-child(3), div.taggle-btn-wrap div.taggle-btn.active span:nth-child(4) {
  background: #000;
}

div.nav-page-nav-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 8%;
  z-index: 6;
  display: none;
}
@media screen and (min-width: 560px) {
  div.nav-page-nav-wrap {
    top: 12%;
  }
}
@media screen and (min-width: 768px) {
  div.nav-page-nav-wrap {
    width: 100%;
    max-width: 1366px;
    height: 3px;
    margin: 0 auto;
    padding-top: 0;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (min-width: 768px) {
  div.nav-page-nav-wrap {
    width: 100%;
    max-width: 1366px;
    height: 3px;
    margin: 0 auto;
    padding-top: 0;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

nav.nav-page-nav {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 10% 0 10% 0;
  background: rgba(255, 255, 255, 0.9);
}
nav.nav-page-nav ul.nav-page {
  width: 90%;
  margin: 0 auto;
}
nav.nav-page-nav ul.nav-page li a {
  display: block;
  font-size: 1em;
  padding-top: 2%;
  padding-bottom: 2%;
  border-bottom: solid 1px #000;
}
nav.nav-page-nav ul.nav-page li dl {
  padding-top: 3%;
}
nav.nav-page-nav ul.nav-page li dl dt {
  font-size: 1.2em;
}
nav.nav-page-nav ul.nav-page li dl dd ul.func {
  padding-top: 2%;
  padding-bottom: 2%;
  border-bottom: solid 1px #000;
}
nav.nav-page-nav ul.nav-page li dl dd ul.func li {
  position: relative;
}
nav.nav-page-nav ul.nav-page li dl dd ul.func li a {
  border-bottom: none;
  padding-left: 6%;
  position: relative;
}
nav.nav-page-nav ul.nav-page li dl dd ul.func li a::before {
  content: " ";
  display: block;
  width: 4px;
  height: 50%;
  background: #5f512d;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
nav.nav-page-nav ul.nav-page li dl dd ul.sarch {
  padding-top: 2%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  nav.nav-page-nav ul.nav-page li dl dd ul.sarch {
    justify-content: flex-start;
  }
}
nav.nav-page-nav ul.nav-page li dl dd ul.sarch li {
  width: 33.3333333333%;
  box-sizing: border-box;
  margin-bottom: 3%;
  border-left: solid 1px #000;
  border-right: solid 1px #000;
}
nav.nav-page-nav ul.nav-page li dl dd ul.sarch li:nth-child(2), nav.nav-page-nav ul.nav-page li dl dd ul.sarch li:nth-child(3), nav.nav-page-nav ul.nav-page li dl dd ul.sarch li:nth-child(5), nav.nav-page-nav ul.nav-page li dl dd ul.sarch li:nth-child(6) {
  border-left: none;
}
@media screen and (min-width: 768px) {
  nav.nav-page-nav ul.nav-page li dl dd ul.sarch li {
    width: 25%;
  }
  nav.nav-page-nav ul.nav-page li dl dd ul.sarch li:nth-child(4), nav.nav-page-nav ul.nav-page li dl dd ul.sarch li:nth-child(7) {
    border-left: none;
  }
  nav.nav-page-nav ul.nav-page li dl dd ul.sarch li:nth-child(5) {
    border-left: solid 1px #000;
  }
}
nav.nav-page-nav ul.nav-page li dl dd ul.sarch li a {
  display: block;
  text-align: center;
  border-bottom: none;
}
nav.nav-page-nav ul.nav-page li dl dd ul.sarch li a.link-none {
  opacity: 0.4;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  nav.nav-page-nav {
    width: 100%;
    max-width: 1150px;
    height: auto;
    padding: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  nav.nav-page-nav ul.nav-page {
    width: 90%;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  nav.nav-page-nav ul.nav-page {
    width: 82%;
  }
}
@media screen and (min-width: 768px) {
  nav.nav-page-nav ul.nav-page li {
    width: 28%;
  }
  nav.nav-page-nav ul.nav-page li a {
    font-size: 1em;
    border-bottom: none;
  }
  nav.nav-page-nav ul.nav-page li:nth-child(1), nav.nav-page-nav ul.nav-page li:nth-child(2) {
    width: 16%;
  }
  nav.nav-page-nav ul.nav-page li:last-child {
    width: 40%;
  }
  nav.nav-page-nav ul.nav-page li dl {
    padding-top: 0;
  }
  nav.nav-page-nav ul.nav-page li dl dt {
    font-size: 1em;
  }
  nav.nav-page-nav ul.nav-page li dl dd ul.func {
    width: 100%;
    border-bottom: none;
  }
  nav.nav-page-nav ul.nav-page li dl dd ul.func li {
    width: 100%;
  }
  nav.nav-page-nav ul.nav-page li dl dd ul.func li:last-child, nav.nav-page-nav ul.nav-page li dl dd ul.func li:nth-child(1), nav.nav-page-nav ul.nav-page li dl dd ul.func li:nth-child(2) {
    width: 100%;
  }
  nav.nav-page-nav ul.nav-page li dl dd ul.func li a {
    display: block;
    width: 100%;
  }
}

/*nav.nav-page-nav*/
div.main-slide-wrap {
  position: relative;
  z-index: 2;
  /*main-add-good-design*/
}
div.main-slide-wrap div.main-slide.slide div.main-slide-inner {
  display: none;
}
div.main-slide-wrap div.main-slide.slide div.main-slide-inner.main-slide-inner-first {
  display: block;
}
div.main-slide-wrap div.main-slide.slide.slick-initialized div.main-slide-inner {
  display: block;
}
div.main-slide-wrap div.main-slide div.main-slide-inner {
  position: relative;
}
div.main-slide-wrap div.main-slide div.main-slide-inner p {
  width: 98%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  div.main-slide-wrap div.main-slide div.main-slide-inner p {
    width: 55.8%;
    max-width: 800px;
  }
}
div.main-slide-wrap div.main-add-good-design {
  display: block;
  width: 96%;
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 768px) {
  div.main-slide-wrap div.main-add-good-design {
    width: 38.5%;
    max-width: 526px;
    bottom: 5%;
  }
}
div.main-slide-wrap div.main-arrow {
  width: 26px;
  padding-bottom: 14%;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 8;
}
div.main-slide-wrap div.main-arrow::before {
  content: " ";
  display: block;
  width: 1px;
  height: 100%;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 0);
}
div.main-slide-wrap div.main-arrow span {
  display: block;
  width: 100%;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  div.main-slide-wrap div.main-arrow {
    padding-bottom: 60px;
    left: 50%;
  }
}

/*div.main-slide-wrap*/
section.sec01 {
  /*prologue-wrap*/
  /*div.concept-wrap*/
}
section.sec01 div.prologue-wrap {
  padding-top: 15%;
  padding-bottom: 15%;
  position: relative;
  overflow: hidden;
  /*div.prologue-wrap-inner*/
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap {
    padding-top: 80px;
    padding-bottom: 180px;
    position: relative;
  }
}
section.sec01 div.prologue-wrap div.prologue-wrap-bg {
  width: 200%;
  height: 200%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
section.sec01 div.prologue-wrap div.prologue-wrap-bg span {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: -50%;
  background-color: rgba(255, 255, 255, 0);
  background-image: repeating-linear-gradient(40deg, transparent, transparent 11px, rgb(255, 255, 255) 11px, rgb(255, 255, 255) 13px);
  background-repeat: repeat;
  background-position: center center;
  animation: bganimation 80s linear infinite;
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-bg span {
    background-color: rgba(255, 255, 255, 0);
    background-image: repeating-linear-gradient(40deg, transparent, transparent 14px, rgb(255, 255, 255) 14px, rgb(255, 255, 255) 16px);
    animation: bganimation 120s linear infinite;
  }
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner {
  position: relative;
  /*div.prologue-cont01*/
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 {
  color: #FFF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(0%, 0);
  }
}
@media screen and (min-width: 1280px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 {
    transform: translate(0%, 0);
  }
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p {
  /*&.prologue-cont01-txt01*/
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p {
    font-size: 22px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p {
    font-size: 28px;
  }
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt01 {
  margin-bottom: 10%;
  position: relative;
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt01::before, section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt01::after {
  content: " ";
  display: block;
  width: 6.6%;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: 50%;
  bottom: -45%;
  transform: translate(-50%, 0%) rotate(45deg);
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt01::before {
  transform: translate(-50%, 0%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt01 {
    min-width: 12em;
    margin-bottom: 0;
  }
  section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt01::before, section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt01::after {
    width: 50px;
    left: 118%;
    bottom: 50%;
  }
}
@media screen and (min-width: 1280px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt01 {
    width: 285px;
  }
  section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt01::before, section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt01::after {
    left: 114%;
  }
}
@media screen and (min-width: 1390px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt01::before, section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt01::after {
    left: 114%;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt02 {
    min-width: 8em;
    margin-left: 90px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p.prologue-cont01-txt02 {
    width: 285px;
  }
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p span {
  display: inline-block;
  position: relative;
  padding: 2% 3%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
  }
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p span span {
  display: block;
  padding: 0;
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p span span:nth-child(5), section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p span span:first-child {
  width: 100%;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 0;
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p span span:nth-child(2) {
  width: 1px;
  height: 100%;
  background: #FFF;
  position: absolute;
  right: 0;
  bottom: 0;
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p span span:nth-child(3) {
  width: 100%;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: 0;
  bottom: 0;
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p span span:nth-child(4) {
  width: 1px;
  height: 100%;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 0;
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p span span::before, section.sec01 div.prologue-wrap div.prologue-wrap-inner div.prologue-cont01 p span span::after {
  display: none;
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner p.prologue-copy {
  width: 73%;
  margin: 0 auto;
  margin-top: 6%;
  margin-bottom: 6%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner p.prologue-copy {
    width: 90%;
    max-width: 800px;
    margin-top: 35px;
    margin-bottom: 0;
  }
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner figure {
  opacity: 0;
  position: relative;
  /*div*/
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner figure span.map {
  display: block;
  width: 88%;
  margin: 0 auto;
  margin-bottom: 5%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure span.map {
    width: 100%;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure {
    max-width: 962px;
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure {
    max-width: 1160px;
    width: 90%;
    margin: 0 auto;
    margin-top: 50px;
  }
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div {
  width: 88%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a {
  display: block;
  width: 46%;
  padding-top: 0;
  opacity: 1;
  position: relative;
  /*					position: absolute;*/
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a {
    position: absolute;
  }
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a::before {
  content: " ";
  display: block;
  width: 97%;
  height: 69%;
  position: absolute;
  background: #FFF;
  opacity: 0;
  left: 0;
  right: 0;
  margin: auto;
  top: 6%;
  transform: translate(0, 0);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a {
    width: 24.2%;
    padding-top: 0;
  }
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a::before {
    height: 80%;
  }
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a::after {
    content: " ";
    display: block;
    width: 97%;
    height: 80%;
    position: absolute;
    background: #FFF;
    opacity: 0;
    left: 0;
    right: 0;
    margin: auto;
    top: 6%;
    transform: translate(0, 0);
  }
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a:hover {
    cursor: pointer;
  }
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a:hover::after {
    opacity: 0.4;
    transition: all 0.6s;
    transform: translate(0, 0);
  }
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a.kudamatsu {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a.kudamatsu {
    left: 11%;
    top: 15.6%;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a.nakamura {
    left: 2%;
    top: 45%;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a.katayama {
    left: 11.4%;
    top: 69%;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a.seto {
    left: 44%;
    top: auto;
    bottom: 3.5%;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a.nakashima {
    right: 1%;
    top: 18%;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a.nanki {
    left: auto;
    top: 41%;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a.daimon {
    left: auto;
    right: 5.4%;
    top: auto;
    bottom: 4.6%;
  }
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a.tsurazima {
  right: 1.6%;
  bottom: 14.6%;
}
section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a.kitakuroda {
  /*
  left: 12.4%;
  bottom: 0;
  */
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap div.prologue-wrap-inner figure div a.kitakuroda {
    left: 21.8%;
    bottom: 3.5%;
  }
}
section.sec01 div.prologue-wrap article.sec01-gooddesign-box {
  width: 82.6%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 6% 0;
  margin-top: 10%;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap article.sec01-gooddesign-box {
    max-width: 800px;
    padding: 30px 0;
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap article.sec01-gooddesign-box div {
    width: 92%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
  }
  section.sec01 div.prologue-wrap article.sec01-gooddesign-box div::after {
    display: block;
    content: " ";
    width: 1px;
    height: 100%;
    background: #333;
    position: absolute;
    left: 39.6%;
    top: 0;
  }
}
section.sec01 div.prologue-wrap article.sec01-gooddesign-box div h1 {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 6%;
  position: relative;
}
section.sec01 div.prologue-wrap article.sec01-gooddesign-box div h1::after {
  display: block;
  content: " ";
  width: 100%;
  height: 1px;
  background: #333;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap article.sec01-gooddesign-box div h1 {
    width: 36.8%;
    margin: 0;
    padding-bottom: 0;
  }
  section.sec01 div.prologue-wrap article.sec01-gooddesign-box div h1::after {
    display: none;
  }
}
section.sec01 div.prologue-wrap article.sec01-gooddesign-box div p {
  width: 80%;
  text-align: justify;
  margin: 0 auto;
  padding-top: 6%;
  font-size: 0.6em;
  font-weight: 600;
  line-height: 2.2em;
}
@media screen and (min-width: 768px) {
  section.sec01 div.prologue-wrap article.sec01-gooddesign-box div p {
    width: 56%;
    font-size: 11px;
    padding-top: 0;
    margin-left: 6%;
  }
}
section.sec01 div.concept-wrap {
  background: url(../myimg/sec01-bg02_sp.png) no-repeat left top;
  background-size: cover;
  padding-top: 15%;
  padding-bottom: 10%;
  position: relative;
  /*arrow*/
  /*p.sec01-concept*/
  /*h2*/
  /*変更したスライダー*/
}
section.sec01 div.concept-wrap div.arrow {
  display: block;
  position: absolute;
  top: -3%;
  left: 50%;
  border: 18px solid transparent;
  border-top: 18px solid #FFF;
  transform: translate(-50%, 0%);
}
section.sec01 div.concept-wrap div.arrow::after {
  display: block;
  content: "";
  position: absolute;
  top: 5%;
  left: 50%;
  border: 14px solid transparent;
  border-top: 14px solid #FFF;
  transform: translate(-50%, 40%);
}
section.sec01 div.concept-wrap div.arrow::before {
  display: block;
  content: "";
  position: absolute;
  top: 5%;
  left: 50%;
  border: 10px solid transparent;
  border-top: 10px solid #FFF;
  transform: translate(-50%, 180%);
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.arrow {
    top: -100px;
    border: 60px solid transparent;
    border-top: 60px solid #FFF;
  }
  section.sec01 div.concept-wrap div.arrow::after {
    top: 20px;
    left: 50%;
    border: 40px solid transparent;
    border-top: 40px solid #FFF;
    transform: translate(-50%, 0);
  }
  section.sec01 div.concept-wrap div.arrow::before {
    border: 20px solid transparent;
    border-top: 20px solid #FFF;
    top: 80px;
    transform: translate(-50%, 0%);
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap {
    padding-top: 100px;
    padding-bottom: 100px;
    background: url(../myimg/sec01-bg02_pc.png) no-repeat left top;
    background-size: cover;
  }
}
section.sec01 div.concept-wrap p.sec01-concept {
  width: 72%;
  margin: 0 auto;
  padding-bottom: 2%;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap p.sec01-concept {
    max-width: 452px;
  }
}
section.sec01 div.concept-wrap p.sec01-concept::after {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  background: #b1aa98;
  position: absolute;
  left: 0;
  bottom: 0;
}
section.sec01 div.concept-wrap p.sec01-concept::before {
  content: " ";
  display: block;
  width: 20px;
  height: 10px;
  background: #b1aa98;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap p.sec01-concept::before {
    width: 40px;
  }
}
section.sec01 div.concept-wrap p.sec01-concept span {
  display: block;
  width: 48.2%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap p.sec01-concept span {
    width: 50.4%;
    max-width: 228px;
  }
}
section.sec01 div.concept-wrap p.sec01-concept-copy02,
section.sec01 div.concept-wrap h2.sec01-concept-copy {
  font-size: 1.4em;
  text-align: center;
  line-height: 1.8em;
  margin-top: 6%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap p.sec01-concept-copy02,
  section.sec01 div.concept-wrap h2.sec01-concept-copy {
    font-size: 35px;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec01 div.concept-wrap p.sec01-concept-copy02,
  section.sec01 div.concept-wrap h2.sec01-concept-copy {
    font-size: 45px;
  }
}
section.sec01 div.concept-wrap h2.sec01-concept-copy {
  padding-bottom: 5%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap h2.sec01-concept-copy {
    margin-bottom: 40px;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap {
  padding: 10% 0;
  background: #000;
  position: relative;
  /*sec01-concept-slide-cont*/
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap {
    padding: 85px 0;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-dots {
  position: static;
  margin-top: 5%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-dots {
    margin-top: 0;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-dots li {
  background: #FFF;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-dots li {
    width: 10px;
    height: 10px;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-dots li.slick-active {
  background: rgb(84, 71, 37);
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-dots li button:before {
  display: none;
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-prev, section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-next {
  top: 70%;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-prev, section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-next {
    top: 45%;
    cursor: pointer;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-prev {
  left: 2%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-prev {
    left: -4%;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-prev::before {
  display: block;
  width: 20px;
  height: 15px;
  opacity: 1;
  content: " ";
  background: url(../myimg/sec01-concept-arrow01.png) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-prev::before {
    width: 35px;
    height: 64px;
    background: url(../myimg/sec01-concept-arrow01_pc.svg) no-repeat center center;
    background-size: contain;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-next {
  right: 2%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-next {
    right: -4%;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-next::before {
  display: block;
  width: 20px;
  height: 15px;
  opacity: 1;
  content: " ";
  background: url(../myimg/sec01-concept-arrow02.png) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap .slick-next::before {
    width: 35px;
    height: 64px;
    background: url(../myimg/sec01-concept-arrow02_pc.svg) no-repeat center center;
    background-size: contain;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont {
  /*sec01-concept-slide-cont-inner*/
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner {
  width: 100%;
  /*div.sec01-concept-slide-cont-inner-image01*/
  /*div.sec01-concept-slide-cont-inner-image02*/
  /*div.sec01-concept-slide-cont-inner-image03*/
  /*div.sec01-concept-slide-cont-inner-image04*/
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner {
    overflow: visible;
    margin: 0 10px;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 {
  /*inner-txt*/
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 {
    position: relative;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt {
  background: rgb(84, 71, 37);
  background: linear-gradient(47deg, rgb(84, 71, 37) 0%, rgb(107, 91, 50) 50%, rgb(95, 81, 45) 100%);
  width: 78%;
  margin: 0 auto;
  margin-top: -5%;
  padding: 5% 5% 5% 12%;
  color: #FFF;
  box-sizing: border-box;
  position: relative;
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt::before, section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt::after {
  content: " ";
  display: block;
  width: 1px;
  height: 100%;
  background: #878788;
  position: absolute;
  left: 6%;
  top: 0;
  transform: translate(0, 0);
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt::before {
  width: 3%;
  height: 40%;
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt h3 {
  font-size: 1.3em;
  letter-spacing: -0.02em;
  font-weight: 400;
  line-height: 1.5em;
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt p {
  font-size: 0.8em;
  line-height: 1.5em;
  margin-top: 3%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt {
    width: 66.2%;
    box-sizing: border-box;
    margin: 0;
    margin-top: -10%;
    padding: 15px 2% 15px 8%;
    transform: translate(0, 0);
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt::before, section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt::after {
    width: 1px;
    height: 100%;
    background: #878788;
    position: absolute;
    left: 5%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt::before {
    width: 12px;
    height: 70%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt h3 {
    font-size: 18px;
    line-height: 1.6em;
    width: 80%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt p {
    width: 66%;
    font-size: 13px;
    line-height: 1.6em;
    margin-top: 10px;
    margin-left: 0;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt br.pc-block {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt {
    justify-content: space-between;
    padding: 35px 4% 35px 7%;
    display: flex;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt h3 {
    font-size: 20px;
    width: 32%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt p {
    font-size: 14px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt {
    justify-content: space-between;
    padding: 35px 4% 50px 7%;
    display: flex;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt::before, section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt::after {
    width: 1px;
    height: 100%;
    background: #878788;
    position: absolute;
    left: 5%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt::before {
    width: 12px;
    height: 142px;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt h3 {
    font-size: 30px;
    width: 34%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt p {
    width: 64%;
    font-size: 16px;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image01 div.inner-txt br.pc-block {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image02 {
    width: 66.6%;
  }
}
section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image02 div.inner-txt h3 {
  letter-spacing: -0.06em;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image02 div.inner-txt {
    display: block;
    width: 60%;
    margin-left: auto;
    margin-top: -25%;
    padding: 35px 6% 35px 10%;
    box-sizing: border-box;
    transform: translate(80%, 0);
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image02 div.inner-txt::before, section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image02 div.inner-txt::after {
    width: 1px;
    height: 100%;
    background: #878788;
    position: absolute;
    left: 5%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image02 div.inner-txt::before {
    width: 12px;
    height: 50%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image02 div.inner-txt h3 {
    width: 100%;
    letter-spacing: -0.02em;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image02 div.inner-txt p {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1000px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image02 div.inner-txt {
    width: 64%;
    transform: translate(70%, 0);
  }
}
@media screen and (min-width: 1280px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image02 div.inner-txt {
    width: 72%;
    padding: 35px 6% 50px 9%;
    transform: translate(68%, 0);
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image03 {
    width: 78%;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image03 div.inner-txt {
    width: 56%;
    display: block;
    margin-top: -28%;
    margin-left: -28%;
    padding: 35px 6% 35px 10%;
    box-sizing: border-box;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image03 div.inner-txt::before, section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image03 div.inner-txt::after {
    width: 1px;
    height: 100%;
    background: #878788;
    position: absolute;
    left: 5%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image03 div.inner-txt::before {
    width: 12px;
    height: 50%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image03 div.inner-txt h3 {
    width: 100%;
    letter-spacing: -0.04em;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image03 div.inner-txt p {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1000px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image03 div.inner-txt {
    padding: 35px 6% 35px 8%;
    margin-top: -19%;
  }
}
@media screen and (min-width: 1280px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image03 div.inner-txt {
    width: 56%;
    display: block;
    margin-top: -22%;
    margin-left: -26.4%;
    padding: 35px 6% 50px 6%;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image04 {
    width: 71%;
  }
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image04 div.inner-txt {
    width: 50%;
    display: block;
    margin-left: auto;
    margin-top: -36%;
    transform: translate(80%, 0);
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image04 div.inner-txt::before, section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image04 div.inner-txt::after {
    width: 1px;
    height: 100%;
    background: #878788;
    position: absolute;
    left: 5%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image04 div.inner-txt::before {
    width: 12px;
    height: 50%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image04 div.inner-txt h3 {
    width: 100%;
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image04 div.inner-txt p {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }
}
@media screen and (min-width: 1000px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image04 div.inner-txt {
    width: 52%;
    margin-top: -25%;
    transform: translate(75%, 0);
  }
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image04 div.inner-txt h3 {
    letter-spacing: -0.09em;
  }
}
@media screen and (min-width: 1280px) {
  section.sec01 div.concept-wrap div.sec01-concept-slide-wrap div.sec01-concept-slide-cont div.sec01-concept-slide-cont-inner div.sec01-concept-slide-cont-inner-image04 div.inner-txt {
    width: 55%;
    display: block;
    margin-left: auto;
    margin-top: -25%;
    transform: translate(75%, 0);
  }
}
section.sec01 div.concept-wrap p.sec01-concept-txt01 {
  text-align: center;
  color: #FFF;
  letter-spacing: -0.03em;
  margin-top: 10%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap p.sec01-concept-txt01 {
    font-size: 20px;
    margin-top: 60px;
    letter-spacing: normal;
    line-height: 1.8em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec01 div.concept-wrap p.sec01-concept-txt01 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec01 div.concept-wrap p.sec01-concept-txt01 {
    font-size: 26px;
  }
}
section.sec01 div.concept-wrap p.sec01-concept-copy02 {
  margin-top: 3%;
}
section.sec01 div.concept-wrap div.sec01-concept-inner {
  position: relative;
}
section.sec01 div.concept-wrap div.sec01-concept-inner div.sec01-concept-img02 {
  width: 50.4%;
  margin-left: 1%;
}
section.sec01 div.concept-wrap div.sec01-concept-inner div.sec01-concept-img03 {
  width: 50.6%;
  position: absolute;
  right: 1%;
  top: 0;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap div.sec01-concept-inner {
    width: 100%;
    max-width: 1366px;
    padding-top: 2%;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
  }
  section.sec01 div.concept-wrap div.sec01-concept-inner div.sec01-concept-img02 {
    width: 33.3%;
    margin: 0;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  section.sec01 div.concept-wrap div.sec01-concept-inner div.sec01-concept-img03 {
    width: 23.5%;
    position: absolute;
    right: 4.8%;
    top: auto;
    bottom: 48%;
  }
}
section.sec01 div.concept-wrap a.btn01 {
  display: block;
  width: 72.2%;
  margin: 0 auto;
  margin-top: 3%;
}
@media screen and (min-width: 768px) {
  section.sec01 div.concept-wrap a.btn01 {
    width: 35.4%;
    max-width: 482px;
  }
}

/*sesc01*/
@keyframes sec02-bg-changr {
  0% {
    background: #FFF;
  }
  100% {
    background: #000;
  }
}
section.sec02 {
  color: #FFF;
  padding-top: 10%;
  transition: all 0.6;
  /*top-smart-content*/
  /*top-resilience-content*/
}
section.sec02.animation {
  animation: sec02-bg-changr 1.4s 0.2s ease-out forwards;
}
@media screen and (min-width: 768px) {
  section.sec02 {
    padding-bottom: 80px;
  }
}
section.sec02 p.sec02-function {
  width: 72%;
  margin: 0 auto;
  padding-bottom: 2%;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec02 p.sec02-function {
    max-width: 452px;
  }
}
section.sec02 p.sec02-function::after {
  content: " ";
  display: block;
  width: 100%;
  height: 2px;
  background: #413e38;
  position: absolute;
  left: 0;
  bottom: 0;
}
section.sec02 p.sec02-function::before {
  content: " ";
  display: block;
  width: 20px;
  height: 10px;
  background: #b1aa98;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}
@media screen and (min-width: 768px) {
  section.sec02 p.sec02-function::before {
    width: 40px;
  }
}
section.sec02 p.sec02-function span {
  display: block;
  width: 48.2%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec02 p.sec02-function span {
    width: 57%;
    max-width: 258px;
  }
}
section.sec02 h2 {
  font-size: 1.4em;
  text-align: center;
  line-height: 1.8em;
  margin-top: 6%;
}
@media screen and (min-width: 768px) {
  section.sec02 h2 {
    font-size: 35px;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 h2 {
    font-size: 45px;
  }
}
section.sec02 h2 span {
  display: block;
  font-size: 0.8em;
  line-height: 1.4em;
}
@media screen and (min-width: 768px) {
  section.sec02 h2 span {
    font-size: 22px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 h2 span {
    font-size: 27px;
  }
}
section.sec02 h3.technology {
  width: 58%;
  margin: 0 auto;
  margin-top: 10%;
  margin-bottom: 5%;
}
@media screen and (min-width: 768px) {
  section.sec02 h3.technology {
    width: 47%;
    margin-top: 70px;
    margin-bottom: 60px;
  }
}
section.sec02 h3.smart-resilience {
  width: 84%;
  margin: 0 auto;
  margin-top: 6%;
  margin-bottom: 10%;
}
@media screen and (min-width: 768px) {
  section.sec02 h3.smart-resilience {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 60px;
  }
}
section.sec02 div.top-smart-content {
  width: 92%;
  margin: 0 auto;
  background: #09374b;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content {
    max-width: 1250px;
  }
}
section.sec02 div.top-smart-content.top-technology-content {
  background: #1b3523;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content.top-technology-content {
    padding-top: 90px;
    margin-bottom: 80px;
  }
  section.sec02 div.top-smart-content.top-technology-content div.top-technology-inner ul li {
    margin-bottom: 150px;
  }
  section.sec02 div.top-smart-content.top-technology-content div.top-technology-inner ul li:nth-child(3) div.image h5 {
    min-width: 16em;
    left: auto;
    right: 0;
    transform: translate(1px, 0);
  }
}
section.sec02 div.top-smart-content div.top-smart-inner {
  width: 86%;
  margin: 0 auto;
  padding: 6% 0 5%;
  /*ul*/
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner {
    width: 90%;
    padding: 60px 0 30px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.top-smart-content div.top-smart-inner {
    width: 80%;
    padding: 80px 0 40px;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner h4 {
  width: 42%;
  margin-bottom: 10%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner h4 {
    width: 368px;
    margin-left: 16%;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.top-smart-content div.top-smart-inner h4 {
    margin-bottom: 60px;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner p.smart-txt01 {
  position: relative;
  font-size: 0.78em;
  line-height: 1.4em;
  padding-top: 3%;
  margin-bottom: 5%;
  width: 76%;
  margin-left: 24%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner p.smart-txt01 {
    width: 65%;
    font-size: 20px;
    padding-top: 22px;
    margin-left: 30%;
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.top-smart-content div.top-smart-inner p.smart-txt01 {
    width: 65%;
    max-width: 480px;
    font-size: 25px;
    margin-left: 37%;
    margin-bottom: 180px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec02 div.top-smart-content div.top-smart-inner p.smart-txt01 {
    width: 58%;
    max-width: 580px;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner p.smart-txt01::before {
  content: " ";
  display: block;
  width: 110%;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: -10%;
  top: 0;
  transform: translate(0, 0);
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner p.smart-txt01::before {
    width: 110%;
  }
}
@media screen and (min-width: 1390px) {
  section.sec02 div.top-smart-content div.top-smart-inner p.smart-txt01::before {
    width: 96%;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner p.smart-txt01::after {
  content: " ";
  display: block;
  width: 2px;
  height: 130%;
  background: #bebebe;
  position: absolute;
  left: -5%;
  top: -30%;
  transform: translate(0, 0);
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner p.smart-txt01::after {
    width: 6px;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner ul {
  width: 100%;
  /*li*/
}
section.sec02 div.top-smart-content div.top-smart-inner ul li {
  margin-bottom: 12%;
  /**/
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li {
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li {
    margin-bottom: 160px;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner ul li dl {
  position: relative;
}
section.sec02 div.top-smart-content div.top-smart-inner ul li dl dt {
  width: 17%;
  max-width: 92px;
  margin-bottom: 3%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li dl dt {
    width: 115px;
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-30%, -50%);
    z-index: 2;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd div.image {
  position: relative;
  z-index: 1;
}
section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd div.image::before {
  content: " ";
  display: block;
  width: 115%;
  height: 80%;
  background: #224459;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd div.image::before {
    width: 111%;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd div.image::before {
    width: 125%;
    height: 382px;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd div.image h5 {
  position: absolute;
  right: -1px;
  top: -1px;
  padding: 0 2% 1% 2%;
  z-index: 2;
}
section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd div.image h5::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #09374b;
  left: 0;
  top: 0;
  transform: translate(0, 0);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd div.image h5 {
    font-size: 30px;
    line-height: 1.6em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd div.image h5 {
    font-size: 36px;
    font-weight: 500;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd div.image h5 {
    font-size: 42px;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd div.image.technology-image::before {
  background: #164255;
  opacity: 0.2;
}
section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd div.image.technology-image h5::before {
  background: #1b3523;
}
section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd p {
  text-align: justify;
  margin-top: 4%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd p {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd p span.l-txt {
  display: block;
  text-align: center;
  font-size: 1.3em;
}
section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd p span.s-txt {
  display: block;
  margin-top: 3%;
  text-align: justify;
  font-size: 0.7em;
  line-height: 1.4em;
}
section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd p span.s-txt span {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li dl dd p span.s-txt {
    font-size: 12px;
    margin-top: 15px;
    text-align: center;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(1) dl dd div.image.technology-image { /*テクノロジー　調整*/ }
section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(1) dl dd div.image.technology-image h5 {
  top: -25%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(1) dl dd div.image.technology-image h5 {
    top: -1px;
    text-align: center;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(2) dl dt {
  width: 22%;
  max-width: 118px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(2) dl dt {
    max-width: 134px;
    left: auto;
    right: 0;
    transform: translate(30%, -50%);
  }
}
section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(2) dl dd div.image h5 {
  text-align: center;
  position: absolute;
  right: auto;
  left: -1px;
  top: -1px;
  padding: 0 2%;
  background: #09374b;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(2) dl dd div.image h5 {
    line-height: 1.2em;
    padding: 0 15px 15px 25px;
  }
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(3) {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(3) dl dt {
    width: 20%;
    max-width: 130px;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(3) dl dd div.image.technology-image { /*テクノロジー　調整*/ }
section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(3) dl dd div.image.technology-image h5 {
  top: -20%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(3) dl dd div.image.technology-image h5 {
    top: -1px;
  }
}
section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(3) dl dd div.image h5 {
  min-width: 11em;
  box-sizing: border-box;
  padding: 0 0 0 2%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-smart-content div.top-smart-inner ul li:nth-child(3) dl dd div.image h5 {
    text-align: center;
    padding: 0 0 12px 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
section.sec02 div.top-resilience-content {
  width: 92%;
  margin: 0 auto;
  margin-top: 15%;
  background: #46191c;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content {
    max-width: 1250px;
    margin-top: 30px;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner {
  width: 86%;
  margin: 0 auto;
  padding: 6% 0 5%;
  /*ul*/
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner {
    width: 90%;
    padding: 60px 0 30px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner {
    width: 80%;
    padding: 80px 0 30px;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner h4 {
  width: 73%;
  margin-bottom: 10%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner h4 {
    width: 65%;
    max-width: 650px;
    margin-left: 14%;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner h4 {
    margin-bottom: 60px;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner p.resilience-txt01 {
  position: relative;
  font-size: 0.78em;
  line-height: 1.4em;
  padding-top: 3%;
  margin-bottom: 5%;
  width: 76%;
  margin-left: 24%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner p.resilience-txt01 {
    width: 65%;
    font-size: 20px;
    padding-top: 22px;
    margin-left: 30%;
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner p.resilience-txt01 {
    width: 62%;
    max-width: 550px;
    font-size: 25px;
    margin-left: 41%;
    margin-bottom: 180px;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner p.resilience-txt01::before {
  content: " ";
  display: block;
  width: 110%;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: -10%;
  top: 0;
  transform: translate(0, 0);
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner p.resilience-txt01::before {
    width: 110%;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner p.resilience-txt01::after {
  content: " ";
  display: block;
  width: 2px;
  height: 130%;
  background: #bebebe;
  position: absolute;
  left: -5%;
  top: -30%;
  transform: translate(0, 0);
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner p.resilience-txt01::after {
    width: 6px;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul {
  /*li*/
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li {
  margin-bottom: 12%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li {
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li {
    margin-bottom: 160px;
  }
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li div.cross-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    margin: auto;
  }
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li div.cross-box div.image-cross {
    width: 59.2%;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li div.cross-box p {
  text-align: justify;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li div.cross-box p {
    width: 38.2%;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li div.cross-box span.s-txt {
  text-align: left;
  letter-spacing: 0;
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl {
  position: relative;
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dt {
  width: 17%;
  max-width: 92px;
  margin-bottom: 3%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dt {
    width: 115px;
    margin-bottom: 0;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-30%, -50%);
    z-index: 2;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd div.image {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd div.image {
    width: 80%;
    margin: 0 auto;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd div.image::before {
  content: " ";
  display: block;
  width: 110%;
  height: 80%;
  background: #46191c;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd div.image h5 {
  position: absolute;
  right: -1px;
  top: -1px;
  padding: 0 2%;
  background: #46191c;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd div.image h5 {
    font-size: 30px;
    line-height: 1.6em;
    right: auto;
    left: -1px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd div.image h5 {
    font-size: 36px;
    font-weight: 500;
    padding-bottom: 10px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd div.image h5 {
    font-size: 42px;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd div.image span.image02-sub-img {
  display: block;
  width: 56.8%;
  margin: 0 auto;
  margin-top: 4%;
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd p {
  text-align: justify;
  margin-top: 4%;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd p {
    font-size: 16px;
    text-align: left;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd p {
    text-align: center;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd p span.l-txt {
  display: block;
  text-align: center;
  font-size: 1.3em;
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd p span.s-txt {
  display: block;
  margin-top: 3%;
  font-size: 0.7em;
  text-align: justify;
  line-height: 1.4em;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd p span.s-txt {
    font-size: 12px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd p span.s-txt {
    text-align: center;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li dl dd p span.s-txt span {
  display: inline-block;
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(2) dl dt {
  width: 22%;
  max-width: 118px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(2) dl dt {
    max-width: 132px;
    left: auto;
    right: 0;
    transform: translate(40%, -50%);
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(2) dl dd div.image h5 {
  text-align: center;
  position: absolute;
  right: auto;
  left: -1px;
  top: -1px;
  padding: 0 2%;
  background: #46191c;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(2) dl dd div.image span.image02-sub-img {
    width: 32%;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(2%, 60%);
  }
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(2) dl dd p {
    width: 52%;
    letter-spacing: -0.01em;
    text-align: left;
    margin-left: 10%;
  }
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(2) dl dd p span.s-txt {
    text-align: left;
  }
}
@media screen and (min-width: 1390px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(2) dl dd p {
    letter-spacing: 0em;
  }
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(3) dl dt {
    width: 20%;
    max-width: 130px;
  }
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(3) dl dd div.image h5 {
    width: 100%;
    text-align: center;
    left: 0;
    top: -8%;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(3) dl dd p span.s-txt {
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(3) dl dd p span.s-txt {
    width: 80%;
    margin: 0 auto;
    text-align: left;
    margin-top: 3%;
  }
}
@media screen and (min-width: 1390px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(3) dl dd p span.s-txt {
    width: 65%;
  }
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(4) {
    margin-bottom: 0;
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(4) dl dt {
  width: 22%;
  max-width: 118px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(4) dl dt {
    max-width: 132px;
    left: auto;
    right: 0;
    transform: translate(40%, -50%);
  }
}
section.sec02 div.top-resilience-content div.top-resilience-inner ul li:nth-child(4) dl dd div.image h5 {
  text-align: center;
  position: absolute;
  right: auto;
  left: -1px;
  top: -1px;
  padding: 0 10%;
  background: #46191c;
}

/*section.sec02*/
section.sec03 {
  background-color: #000;
  background-image: url(../myimg/sec03-bg_sp.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  padding-top: 12%;
  color: #FFF;
  /**/
}
@media screen and (min-width: 768px) {
  section.sec03 {
    background-image: url(../myimg/sec03-bg_pc.png);
    padding-top: 0;
  }
  section.sec03 div.pc-only-sec03-wrap {
    width: 98%;
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 100px;
    position: relative;
    z-index: 0;
  }
  section.sec03 div.pc-only-sec03-wrap::before, section.sec03 div.pc-only-sec03-wrap::after {
    content: " ";
    display: block;
    width: 5px;
    height: 100%;
    background: rgb(213, 192, 135);
    background: linear-gradient(180deg, rgb(113, 108, 74) 0%, rgb(67, 60, 17) 100%);
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(0, 0);
    z-index: 2;
  }
  section.sec03 div.pc-only-sec03-wrap::after {
    left: 10px;
  }
}
section.sec03 p.sec03-lineup {
  width: 72%;
  margin: 0 auto;
  padding-bottom: 2%;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec03 p.sec03-lineup {
    max-width: 452px;
  }
}
section.sec03 p.sec03-lineup::after {
  content: " ";
  display: block;
  width: 100%;
  height: 2px;
  background: #413e38;
  position: absolute;
  left: 0;
  bottom: 0;
}
section.sec03 p.sec03-lineup::before {
  content: " ";
  display: block;
  width: 20px;
  height: 10px;
  background: #b1aa98;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}
section.sec03 p.sec03-lineup span {
  display: block;
  width: 35.2%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec03 p.sec03-lineup span {
    width: 42%;
    max-width: 190px;
  }
}
section.sec03 h2 {
  font-size: 1.4em;
  text-align: center;
  background: linear-gradient(90deg, rgb(213, 192, 135) 35%, rgb(255, 253, 229) 45%, rgb(255, 253, 229) 50%, rgb(213, 192, 135) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.8em;
  margin-top: 6%;
}
@media screen and (min-width: 768px) {
  section.sec03 h2 {
    font-size: 28px;
    margin-top: 60px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec03 h2 {
    font-size: 32px;
  }
}
section.sec03 h3 {
  font-size: 1.5em;
  text-align: center;
  margin-top: 10%;
}
@media screen and (min-width: 768px) {
  section.sec03 h3 {
    font-size: 35px;
    line-height: 1.4em;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec03 h3 {
    font-size: 45px;
    margin-top: 50px;
  }
}
section.sec03 h3 span.autospan {
  display: inline-block;
  border-bottom: solid 1px #b1aa98;
}
section.sec03 ul.anchor-list {
  width: 90%;
  margin: 0 auto;
  margin-top: 10%;
  margin-bottom: 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
section.sec03 ul.anchor-list li {
  min-width: 5em;
  line-height: 1em;
  text-align: center;
  margin-bottom: 5%;
}
section.sec03 ul.anchor-list li a {
  border-left: solid 1px #FFF;
  border-right: solid 1px #FFF;
  display: block;
  color: #FFF;
}
section.sec03 ul.anchor-list li a.link-none {
  opacity: 0.4;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  section.sec03 ul.anchor-list {
    margin-top: 50px;
    margin-bottom: 65px;
  }
  section.sec03 ul.anchor-list li {
    min-width: 5em;
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  section.sec03 ul.anchor-list li {
    min-width: 6em;
  }
}
@media screen and (min-width: 768px) {
  section.sec03 ul.anchor-list li a {
    padding: 0.4em 0;
  }
}
section.sec03 div.lineup-city-wrap {
  width: 92%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city-wrap {
    width: 100%;
  }
}
section.sec03 div.lineup-city-wrap::before, section.sec03 div.lineup-city-wrap::after {
  content: " ";
  display: block;
  width: 5px;
  height: 100%;
  background: rgb(213, 192, 135);
  background: linear-gradient(180deg, rgb(213, 192, 135) 0%, rgb(67, 60, 17) 100%);
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 0);
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city-wrap::before, section.sec03 div.lineup-city-wrap::after {
    display: none;
  }
}
section.sec03 div.lineup-city-wrap::after {
  left: 10px;
}
section.sec03 div.lineup-city {
  /*padding-bottom: 15%;
  @include mq(pc) {
  	padding-bottom: 86px;
  }*/
  /*div.lineup-city-inner{*/
}
section.sec03 div.lineup-city h4 {
  margin-bottom: 6%;
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city h4 {
    margin-bottom: 30px;
  }
}
section.sec03 div.lineup-city div.lineup-city-inner {
  width: 94%;
  margin-left: 6%;
  padding-bottom: 15%;
  /*div.image{
  	margin-top: 6%;
  	@include mq(pc) {
  		margin-top: 30px;
  	}
  }*/
  /**/
  /*ul.btn-list{*/
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city div.lineup-city-inner {
    padding-bottom: 86px;
  }
}
section.sec03 div.lineup-city div.lineup-city-inner dl {
  margin-top: 3%;
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city div.lineup-city-inner dl {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
section.sec03 div.lineup-city div.lineup-city-inner dl dt {
  text-align: center;
  position: relative;
  z-index: 1;
}
section.sec03 div.lineup-city div.lineup-city-inner dl dt::before {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: #FFF;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, 0);
  z-index: -1;
}
section.sec03 div.lineup-city div.lineup-city-inner dl dt span {
  color: #6e5b48;
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city div.lineup-city-inner dl dt {
    width: 40%;
    font-size: 15px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec03 div.lineup-city div.lineup-city-inner dl dt {
    width: 35%;
    font-size: 16px;
  }
}
section.sec03 div.lineup-city div.lineup-city-inner dl dd {
  font-size: 0.9em;
  letter-spacing: 0;
  margin-top: 3%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city div.lineup-city-inner dl dd {
    width: 58%;
    text-align: left;
    margin-top: 0;
    line-height: 1.5em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec03 div.lineup-city div.lineup-city-inner dl dd {
    width: 63%;
  }
}
section.sec03 div.lineup-city div.lineup-city-inner ul.info-list {
  width: 83%;
  margin: 0 auto;
  margin-top: 3%;
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city div.lineup-city-inner ul.info-list {
    width: 100%;
    margin: 0;
    margin-top: 10px;
  }
}
section.sec03 div.lineup-city div.lineup-city-inner ul.info-list li {
  font-size: 0.8em;
  line-height: 1.5em;
  letter-spacing: -0.02em;
  position: relative;
  text-indent: -1em;
  margin-left: 1em;
}
section.sec03 div.lineup-city div.lineup-city-inner ul.info-list li::before {
  content: "◯";
}
section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list {
  width: 80%;
  margin: 0 auto;
  margin-top: 5%;
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
}
section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li {
  text-align: center;
  border-left: solid 1px #FFF;
  border-right: solid 1px #FFF;
  margin-bottom: 3%;
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li {
    width: 33.3333333333%;
    box-sizing: border-box;
    margin-bottom: 0;
  }
}
section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li.gochi {
  position: relative;
  margin-top: 30%;
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li.gochi {
    margin-top: revert;
  }
}
section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li.gochi::after {
  content: "";
  display: inline-block;
  width: 6em;
  height: 2.4em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translate(0, -130%);
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li.gochi::after {
    width: 100px;
    height: 35px;
    right: auto;
    transform: translate(-100%, 0);
  }
}
section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li.gochi04::after {
  background: url("../myimg/gochi04_sp.svg") no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li.gochi04::after {
    background: url("../myimg/gochi04_pc.svg") no-repeat;
    background-size: contain;
  }
}
section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li.gochi09::after {
  background: url("../myimg/gochi09_sp.svg") no-repeat;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li.gochi09::after {
    background: url("../myimg/gochi09_pc.svg") no-repeat;
    background-size: contain;
  }
}
section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li a {
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 1% 0;
  color: #FFF;
  position: relative;
  z-index: 1;
}
section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li a::before, section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li a::after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  background: rgb(142, 115, 54);
  background: linear-gradient(1deg, rgb(142, 115, 54) 20%, rgb(213, 192, 135) 100%);
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.2s ease-in;
  transform-origin: center top;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transform: translate(0, 0);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li a {
    font-size: 18px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li a {
    font-size: 22px;
  }
}
section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li a:hover {
  opacity: 1;
}
section.sec03 div.lineup-city div.lineup-city-inner ul.btn-list li a:hover::after {
  transition: all 0.2s ease-in;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/*section.sec03*/
p.image-txt {
  color: #fff;
  display: block;
  margin-top: 3%;
  font-size: 0.7em;
  line-height: 1.4em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  p.image-txt {
    font-size: 12px;
    margin-top: 70px;
  }
}

footer {
  background: #FFF;
  padding: 10% 0;
}
footer p {
  width: 57.4%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 60px 0;
  }
  footer p {
    max-width: 328px;
  }
}/*# sourceMappingURL=style.css.map */