@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  background: #ebebeb;
  position: relative;
}

body a {
  text-decoration: none;
}

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

body header .header {
  position: fixed;
  top: -130px;
  /* 「○○px」には要素の半分の数値を指定 */
  left: calc(50% - 580px);
  /* 「○○px」には要素の半分の数値を指定 */
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 1160px;
  height: 64px;
  border-radius: 10px;
  background: #3f4e4a;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
  list-style: none;
  padding: 20px 150px;
}

body header .header.page {
  top: 20px;
}

@media screen and (max-width: 1200px) {
  body header .header {
    width: 1000px;
    left: calc(50% - 500px);
  }
}

@media screen and (max-width: 1100px) {
  body header .header {
    width: 700px;
    left: calc(50% - 350px);
    padding: 20px 10px;
  }
}

@media screen and (max-width: 767px) {
  body header .header {
    display: none;
  }
}

body header .header li {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-align: left;
}

@media screen and (max-width: 1100px) {
  body header .header li {
    font-size: 14px;
  }
}

body header .header li a {
  color: #c8c8c8;
}

body header .header li a .mail-svg:hover {
  fill: #5bb585;
}

body header .header li a:hover,
body header .header li a.on {
  color: #5bb585;
}

body header .header li a:hover::after,
body header .header li a.on::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -22px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #5bb585;
  height: 5px;
  width: 100%;
}

body header .sp_header {
  display: none;
}

@media screen and (max-width: 767px) {
  body header .sp_header {
    display: block;
    position: fixed;
    top: 2%;
    right: 3%;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #3f4e4a;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
    padding: 0 15px;
  }
  body header .sp_header.active .top_line {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
    background: #c8c8c8;
  }
  body header .sp_header.active .middle {
    opacity: 0;
    background: #c8c8c8;
  }
  body header .sp_header.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    background: #c8c8c8;
  }
  body header .sp_header span {
    background: #c8c8c8;
    border: none;
    top: 17px;
    height: 2px;
    width: 20px;
    position: absolute;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    cursor: pointer;
  }
  body header .sp_header span:nth-of-type(2) {
    top: 25px;
  }
  body header .sp_header span:nth-of-type(3) {
    top: 33px;
  }
}

body header .overlay {
  display: none;
}

@media screen and (max-width: 767px) {
  body header .overlay {
    position: fixed;
    background-color: #3f4e4a;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 0%;
    z-index: 1;
    overflow: hidden;
  }
  body header .overlay.open {
    height: 100%;
  }
  body header .overlay.open li {
    -webkit-animation: fadeInRight 0.5s ease forwards;
    animation: fadeInRight 0.5s ease forwards;
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
  }
  body header .overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  body header .overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
  }
  body header .overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  body header .overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: 0.55s;
    animation-delay: 0.55s;
  }
  body header .overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  body header .overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: 0.65s;
    animation-delay: 0.65s;
  }
  body header .overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
    width: 278px;
  }
  body header .overlay ul li {
    display: block;
    text-align: left;
    height: 25%;
    height: calc(100% / 7);
    min-height: 60px;
    position: relative;
    opacity: 0;
    border-bottom: solid 1px #c8c8c8;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 3.75;
  }
  body header .overlay ul li:nth-of-type(7) {
    border-bottom: 0;
    -webkit-margin-before: 37px;
    margin-top: 37px;
    line-height: 1;
  }
  body header .overlay ul li a {
    display: block;
    position: relative;
    color: #c8c8c8;
    text-decoration: none;
    overflow: hidden;
  }
  body header .overlay ul li a:hover {
    color: #58de97;
  }
  @-webkit-keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 20%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 20%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }
}

body.index .top {
  background: #001907;
}

body.index .top .top_background {
  position: relative;
  background: url("../images/top/top_anime_background.jpg") 0 0 no-repeat;
  padding-bottom: calc(100% * 700 / 1400);
  /* calc(100*ImageHeight/ImageWidth)% */
  background-size: 100% auto;
  opacity: 0;
}

@media screen and (max-width: 1100px) {
  body.index .top .top_background {
    height: 600px;
    background-size: cover;
    background-position: center;
  }
}

@media screen and (max-width: 767px) {
  body.index .top .top_background {
    background-position: center right -243px;
  }
}

body.index .top .top_background .top_greenback {
  width: 762px;
  height: 381px;
  border-radius: 51px;
  background: #7ea582;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  -webkit-filter: blur(40px);
  filter: blur(40px);
  opacity: 0;
}

@media screen and (max-width: 767px) {
  body.index .top .top_background .top_greenback {
    width: 90%;
  }
}

body.index .top .top_background .top_title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0;
  backdrop-filter: blur(.5px);
 /*background: rgba(0,0,0,.3);*/
 filter: drop-shadow(0 0 20px rgba(0,0,0,.2));
 background: radial-gradient(rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 70%);
  padding: 5px 0;
}

@media screen and (max-width: 767px) {
  body.index .top .top_background .top_title {
    width: 90%;
  }
}

body.index .top .top_background .top_title h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 60px;
  letter-spacing: 0.25em;
  text-align: center;
  width: 665px;
}

@media screen and (max-width: 767px) {
  body.index .top .top_background .top_title h1 {
    font-size: 32px;
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  body.index .top .top_background .top_title h1 {
    font-size: 30px;
  }
}

body.index .top .top_background .top_title h1 span {
  color:#e2f155;
}

body.index .top .top_background .top_title p {
  font-family: "Museo Sans";
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.55em;
  color:#e2f155;
  -webkit-margin-before: 8px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  body.index .top .top_background .top_title p {
    font-size: 10px;
  }
}

body.index .top .top_background .top_title .copy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.9;
  font-size: 18px;
  letter-spacing: 0.3em;
  text-align: center;
  -webkit-margin-before: 25px;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  body.index .top .top_background .top_title .copy {
    font-size: 14px;
  }
}

body.index .top .top_background .scroll_arrow {
  position: absolute;
  left: 50%;
  bottom: 7%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 0;
}

@-webkit-keyframes letter {
  from {
    letter-spacing: -0.2em;
  }
  to {
    letter-spacing: 0.55em;
  }
}

@keyframes letter {
  from {
    letter-spacing: -0.2em;
  }
  to {
    letter-spacing: 0.55em;
  }
}

body.index .top .top_background .letter {
  -webkit-animation-name: letter;
  animation-name: letter;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@-webkit-keyframes down {
  from {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
}

@keyframes down {
  from {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
}

body.index .top .top_background .down {
  -webkit-animation-name: down;
  animation-name: down;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

body.index .concept {
  -webkit-padding-before: 130px;
  padding-top: 130px;
  -webkit-padding-after: 143px;
  padding-bottom: 143px;
}

@media screen and (max-width: 767px) {
  body.index .concept {
    -webkit-padding-before: 80px;
    padding-top: 80px;
    -webkit-padding-after: 80px;
    padding-bottom: 80px;
  }
}

body.index .concept .concept_title {
  width: 1100px;
  margin: 0 auto;
  font-family: "Museo Sans";
  font-weight: 400;
  text-align: left;
  color: #5bb585;
}

@media screen and (max-width: 1100px) {
  body.index .concept .concept_title {
    width: 90%;
    -webkit-margin-after: 16px;
    margin-bottom: 16px;
  }
}

body.index .concept .concept_title h2 {
  font-size: 35px;
  -webkit-margin-after: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.2em;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  body.index .concept .concept_title h2 {
    font-size: 25px;
    text-align: center;
  }
}

body.index .concept .concept_title h3 {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  body.index .concept .concept_title h3 {
    font-size: 13px;
    text-align: center;
  }
}

body.index .concept .concept_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 1100px) {
  body.index .concept .concept_main {
    display: block;
  }
}

body.index .concept .concept_main .concept_document {
  width: 636px;
padding-right: 20px;
margin-left: calc((100% - 1100px)/2);
}

@media screen and (max-width: 1100px) {
  body.index .concept .concept_main .concept_document {
    float: none;
    width: 90%;
    margin: 0 auto;
  }
}

body.index .concept .concept_main .concept_document .concept_copy {
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.18em;
  line-height: 1.9;
  text-align: left;
  color: #000;
  -webkit-margin-before: 29px;
  margin-top: 29px;
  -webkit-margin-after: 29px;
  margin-bottom: 29px;
}

@media screen and (max-width: 767px) {
  body.index .concept .concept_main .concept_document .concept_copy {
    font-size: 17px;
    line-height: 2;
    -webkit-margin-before: 19px;
    margin-top: 19px;
    -webkit-margin-after: 19px;
    margin-bottom: 19px;
  }
  body.index .concept .concept_main .concept_document .concept_copy br {
    display: none;
  }
}

body.index .concept .concept_main .concept_document .concept_text {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.2em;
  line-height: 40px;
  text-align: justify;
  text-justify: inter-ideograph;
  color: #646464;
  width: 600px;
}

@media screen and (max-width: 1100px) {
  body.index .concept .concept_main .concept_document .concept_text {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  body.index .concept .concept_main .concept_document .concept_text {
    font-size: 14px;
    line-height: 2;
  }
}

body.index .concept .concept_main .concept_document .more_btn {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.2em;
  display: block;
  color: #000;
  -webkit-margin-before: 48px;
  margin-top: 48px;
  text-decoration: none;
}

@media screen and (max-width: 1100px) {
  body.index .concept .concept_main .concept_document .more_btn {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  body.index .concept .concept_main .concept_document .more_btn {
    -webkit-margin-before: 36px;
    margin-top: 36px;
  }
}

body.index .concept .concept_main .concept_img {
  height: 540px;
  width: calc((100% - 670px) - ((100% - 1100px) / 2));
  background: url("../images/top/top_concept.jpg") left center/cover no-repeat;
  background-size: 100% auto;
}

@media screen and (max-width: 1100px) {
  body.index .concept .concept_main .concept_img {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  body.index .concept .concept_main .concept_img {
    height: 335px;
  }
}

body.index .tour {
  width: 1100px;
  height: 375px;
  margin: 0 auto;
  -webkit-margin-after: 178px;
  margin-bottom: 178px;
  background: url("../images/top/top_tour.jpg") 0 0 no-repeat;
  background-position: center;
  position: relative;
}

@media screen and (max-width: 1100px) {
  body.index .tour {
    width: 100%;
    background-size: cover;
    -webkit-margin-after: 100px;
    margin-bottom: 100px;
  }
}

body.index .tour .tour_greenback {
  width: 570px;
  height: 280px;
  border-radius: 15px;
  background: #5bb585;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  body.index .tour .tour_greenback {
    width: 100%;
    border-radius: 0;
  }
}

body.index .tour .tour_document {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  body.index .tour .tour_document {
    width: 90%;
  }
}

body.index .tour .tour_document h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 78px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1100px) {
  body.index .tour .tour_document h2 {
    font-size: 18px;
    width: 100%;
  }
}

body.index .tour .tour_document h3 {
  width: 470px;
  height: 37px;
  border-radius: 18px;
  background: #fff;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #5bb585;
  padding: 6px 0;
}

@media screen and (max-width: 1100px) {
  body.index .tour .tour_document h3 {
    font-size: 13px;
    width: 100%;
  }
}

body.index .tour .tour_document p {
  width: 470px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 23px;
  text-align: left;
  color: #fff;
  padding: 19px 0;
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  body.index .tour .tour_document p {
    font-size: 12px;
    width: 100%;
  }
}

body.index .tour .tour_document a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.2em;
  line-height: 23px;
  text-align: center;
  color: #fff;
  display: block;
}

@media screen and (max-width: 1100px) {
  body.index .tour .tour_document a {
    font-size: 15px;
  }
}

body.index .para11ax01 {
  width: 100%;
  height: 400px;
  position: relative;
  background: transparent;
}

@media screen and (max-width: 1100px) {
  body.index .para11ax01 {
    height: 375px;
  }
}

@media screen and (max-width: 767px) {
  body.index .para11ax01 {
    height: 280px;
  }
}

body.index .service {
  -webkit-padding-before: 171px;
  padding-top: 171px;
  -webkit-padding-after: 196px;
  padding-bottom: 196px;
  background: #3f4e4a;
}

@media screen and (max-width: 767px) {
  body.index .service {
    -webkit-padding-before: 94px;
    padding-top: 94px;
    -webkit-padding-after: 96px;
    padding-bottom: 96px;
  }
}

body.index .service .title {
  font-family: "Museo Sans";
  font-weight: 400;
  font-size: 35px;
  margin-bottom: 8px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #5bb585;
}

@media screen and (max-width: 767px) {
  body.index .service .title {
    font-size: 25px;
  }
}

body.index .service .jp_name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #5bb585;
  -webkit-margin-after: 70px;
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  body.index .service .jp_name {
    font-size: 13px;
    -webkit-margin-after: 0px;
    margin-bottom: 0px;
  }
}

body.index .service .click {
  display: block;
  -webkit-margin-before: 124px;
  margin-top: 124px;
  -webkit-margin-end: 24px;
  margin-right: 24px;
  color: #c8c8c8;
  text-align: right;
  font-family: "Museo Sans";
  font-weight: 400;
  font-size: 15px;
  line-height: 2.04;
  color: #c8c8c8;
}

@media screen and (max-width: 1100px) {
  body.index .service .click {
    -webkit-margin-before: 12px;
    margin-top: 12px;
    -webkit-margin-end: 0;
    margin-right: 0;
  }
  body.index .service .click img {
    -webkit-margin-start: 12px;
    margin-left: 12px;
  }
}

body.index .service .management {
  width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1100px) {
  body.index .service .management {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 1100px) {
  body.index .service .management .management_img {
    width: 100%;
  }
}

body.index .service .management .management_text {
  width: 308px;
  height: 148px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 35px;
  text-align: left;
  color: #c8c8c8;
}

@media screen and (max-width: 1100px) {
  body.index .service .management .management_text {
    width: 90%;
    margin: 0 auto;
    -webkit-margin-before: 20px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  body.index .service .management .management_text {
    font-size: 14px;
  }
}

body.index .service .management .management_text h2 {
  font-family: "Museo Sans";
  font-weight: 400;
  font-size: 25px;
  letter-spacing: 0.2em;
  text-align: left;
  color: #5bb585;
  width: 350px;
  -webkit-padding-after: 25px;
  padding-bottom: 25px;
  -webkit-margin-after: 25px;
  margin-bottom: 25px;
  border-bottom: solid #5bb585 1px;
}

@media screen and (max-width: 1100px) {
  body.index .service .management .management_text h2 {
    width: 100%;
    font-size: 20px;
    line-height: 1;
    -webkit-padding-after: 0px;
    padding-bottom: 0px;
  }
}

body.index .service .point_and_flow {
  width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-margin-before: 145px;
  margin-top: 145px;
}

@media screen and (max-width: 1100px) {
  body.index .service .point_and_flow {
    display: block;
    width: 100%;
    -webkit-margin-before: 58px;
    margin-top: 58px;
  }
}

@media screen and (max-width: 1100px) {
  body.index .service .point_and_flow .point_img {
    width: 100%;
  }
}

body.index .service .point_and_flow .point_text {
  width: 308px;
  height: 148px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2em;
  line-height: 35px;
  text-align: left;
  color: #c8c8c8;
}

@media screen and (max-width: 1100px) {
  body.index .service .point_and_flow .point_text {
    width: 90%;
    margin: 0 auto;
    -webkit-margin-before: 20px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  body.index .service .point_and_flow .point_text {
    font-size: 14px;
  }
}

body.index .service .point_and_flow .point_text h2 {
  font-family: "Museo Sans";
  font-weight: 400;
  font-size: 25px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #5bb585;
  width: 350px;
  -webkit-padding-after: 25px;
  padding-bottom: 25px;
  -webkit-margin-after: 25px;
  margin-bottom: 25px;
  border-bottom: solid #5bb585 1px;
}

@media screen and (max-width: 1100px) {
  body.index .service .point_and_flow .point_text h2 {
    width: 100%;
    line-height: 1;
    font-size: 20px;
    -webkit-padding-after: 0px;
    padding-bottom: 0px;
  }
}

body.index .case {
  width: 1100px;
  margin: 0 auto;
  -webkit-margin-before: 100px;
  margin-top: 100px;
  -webkit-margin-after: 144px;
  margin-bottom: 144px;
}

@media screen and (max-width: 1100px) {
  body.index .case {
    width: 100%;
    -webkit-margin-before: 100px;
    margin-top: 100px;
    -webkit-margin-after: 100px;
    margin-bottom: 100px;
  }
}

body.index .case .title {
  font-family: "Museo Sans";
  font-weight: 400;
  font-size: 35px;
  -webkit-margin-after: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #5bb585;
}

@media screen and (max-width: 767px) {
  body.index .case .title {
    font-size: 25px;
  }
}

body.index .case .jp_name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 17px;
  text-align: center;
  color: #5bb585;
}

@media screen and (max-width: 767px) {
  body.index .case .jp_name {
    font-size: 13px;
    text-align: center;
  }
}

body.index .case .yahagi_case {
  position: relative;
  padding: 0 65px;
  text-align: center;
  width: 426px;
  font-size: 18px;
  margin: 0 auto;
  -webkit-padding-before: 30px;
  padding-top: 30px;
  -webkit-padding-after: 8px;
  padding-bottom: 8px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  body.index .case .yahagi_case {
    width: 75%;
    padding: 0 0;
    -webkit-padding-before: 36px;
    padding-top: 36px;
    -webkit-padding-after: 45px;
    padding-bottom: 45px;
  }
}

body.index .case .yahagi_case:before {
  position: absolute;
  top: calc(50% + 12px);
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: #000;
}

body.index .case .yahagi_case span {
  position: relative;
  padding: 0 1em;
  background: #ebebeb;
}

body.index .case .yahagi_case_date {
  font-family: "Noto Sans CJK JP";
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 35px;
  text-align: center;
  color: #646464;
  -webkit-padding-after: 60px;
  padding-bottom: 60px;
}

body.index .case .yahagi_case_text {
  text-align: center;
  -webkit-margin-before: 36px;
  margin-top: 36px;
  font-weight: 400;
  font-size: 15px;
  line-height: 2.4;
  color: #646464;
}

@media screen and (max-width: 767px) {
  body.index .case .yahagi_case_text {
    font-size: 12px;
    letter-spacing: 0.1rem;
  }
}

body.index .case .case_document {
  -webkit-margin-before: 10px;
  margin-top: 10px;
  line-height: 1.9;
  color: #646464;
}

@media screen and (max-width: 1100px) {
  body.index .case .case_document {
    -webkit-padding-start: 0;
    padding-left: 0;
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  body.index .case .case_document {
    font-size: 12px;
  }
}

body.index .case .case_name {
  position: absolute;
  left: 0;
  top: 20px;
  background: #ebebeb;
  padding: 13px 20px 13px 0;
}

@media screen and (max-width: 1100px) {
  body.index .case .case_name {
    -webkit-padding-start: 5%;
    padding-left: 5%;
  }
}

@media screen and (max-width: 767px) {
  body.index .case .case_name {
    font-size: 11px;
    padding: 3px 11px 3px 5%;
  }
}

body.index .case .meeting {
  -webkit-margin-after: 82px;
  margin-bottom: 82px;
  position: relative;
}

@media screen and (max-width: 1100px) {
  body.index .case .meeting img {
    width: 100%;
    height: auto;
  }
}

body.index .case .meeting .meeting_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 4px;
}

@media screen and (max-width: 1100px) {
  body.index .case .meeting .meeting_bottom {
    width: 100%;
  }
  body.index .case .meeting .meeting_bottom img {
    width: 50%;
  }
  body.index .case .meeting .meeting_bottom img:last-of-type {
    -webkit-margin-start: 3px;
    margin-left: 3px;
  }
}

body.index .case .info_street {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

body.index .case .info_street .movie {
  width: 550px;
  padding-top: 56.25%;
  position: relative;
  margin: 25px 0 5px;
}
@media screen and (max-width: 677px) {
  body.index .case .info_street .movie {
  width: 100%;
  }
}
body.index .case .info_street .movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}



@media screen and (max-width: 1100px) {
  body.index .case .info_street {
    display: block;
  }
}

@media screen and (max-width: 1100px) {
  body.index .case .info_street img {
    width: 100%;
    height: auto;
  }
}

body.index .case .info_street .info {
  position: relative;
  width: 550px;
}

@media screen and (max-width: 1100px) {
  body.index .case .info_street .info {
    width: 100%;
    -webkit-margin-after: 36px;
    margin-bottom: 36px;
  }
}

body.index .case .info_street .info .img_first {
  margin-bottom: 3px;
}

body.index .case .info_street .street {
  position: relative;
}
body.index .case .example-link {
  width: 800px;
  box-sizing: border-box;
  margin: 40px auto 0;
  display: flex;
  border: 1px solid #707070;
  font-family: "YakuHanJPs", "Noto Serif JP", serif;
  background: #FFF;
}
@media screen and (max-width: 677px) {
  body.index .case .example-link {
    width: 88%;
    display: block;
    margin-top: 60px;
  }
}
body.index .case .example-link figure {
  width: 325px;
}
@media screen and (max-width: 677px) {
  body.index .case .example-link figure {
    width: 100%;
  }
}
body.index .case .example-link .casestudy {
  width: 475px;
  text-align: center;
  padding-top: 60px;
}
@media screen and (max-width: 677px) {
  body.index .case .example-link .casestudy {
    width: 100%;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

body.index .case .jireiBlock {
width: 800px;
margin: 80px auto 0;
}
@media screen and (max-width: 677px) {
body.index .case .jireiBlock {
  width: 100%;
  margin: 40px auto 0;
  }
}
body.index .case .jireiBlock a:hover {
opacity: .6;
}

body.index .case .example-link em {
  font-size: 13px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 677px) {
  body.index .case .example-link em {
    font-size: 12px;
  }
}
body.index .case .example-link h3 {
  font-size: 32px;
  margin-top: 12px;
  width: 100%;
}
@media screen and (max-width: 677px) {
  body.index .case .example-link h3 {
    font-size: 20px;
  }
}
body.index .case a .example-link {
  color: #707070;
}
body.index .case a .example-link:hover {
  opacity: .6;
}

body.index .q_a {
  background: #fff;
  -webkit-padding-before: 100px;
  padding-top: 100px;
  -webkit-padding-after: 125px;
  padding-bottom: 125px;
}

@media screen and (max-width: 767px) {
  body.index .q_a {
    -webkit-padding-before: 50px;
    padding-top: 50px;
    -webkit-padding-after: 99px;
    padding-bottom: 99px;
  }
}

body.index .q_a .q_a_main {
  margin: 0 auto;
  width: 1100px;
}

@media screen and (max-width: 1100px) {
  body.index .q_a .q_a_main {
    width: 90%;
  }
}

body.index .q_a .q_a_main .title {
  font-family: "Museo Sans";
  font-weight: 400;
  font-size: 35px;
  -webkit-margin-after: 8px;
  margin-bottom: 8px;
  text-align: center;
  color: #5bb585;
}

@media screen and (max-width: 767px) {
  body.index .q_a .q_a_main .title {
    font-size: 25px;
  }
}

body.index .q_a .q_a_main .jp_name {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #5bb585;
  -webkit-margin-after: 35px;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  body.index .q_a .q_a_main .jp_name {
    font-size: 13px;
    text-align: center;
    -webkit-margin-after: 27px;
    margin-bottom: 27px;
    line-height: 1;
  }
}

body.index .q_a .q_a_main label {
  position: relative;
  background: #fff;
  display: block;
  -webkit-padding-before: 18px;
  padding-top: 18px;
  -webkit-padding-after: 18px;
  padding-bottom: 18px;
  border-bottom: solid 1px #333;
}

@media screen and (max-width: 767px) {
  body.index .q_a .q_a_main label {
    -webkit-padding-before: 12px;
    padding-top: 12px;
    -webkit-padding-after: 12px;
    padding-bottom: 12px;
  }
}

body.index .q_a .q_a_main label.on {
  border-bottom: none;
}

body.index .q_a .q_a_main label:first-of-type {
  border-top: solid 1px #333;
}

body.index .q_a .q_a_main label .question_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body.index .q_a .q_a_main label .question_name h3 {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.2em;
  line-height: 30px;
  text-align: left;
  color: #000;
}

@media screen and (max-width: 767px) {
  body.index .q_a .q_a_main label .question_name h3 {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 2;
    width: 80%;
  }
}

body.index .q_a .q_a_main label .question_name .q {
  font-family: Museo;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 30px;
  color: #000;
  -webkit-margin-end: 32px;
  margin-right: 32px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  body.index .q_a .q_a_main label .question_name .q {
    font-size: 23px;
    -webkit-margin-end: 15px;
    margin-right: 15px;
  }
}

body.index .q_a .q_a_main label:after {
  content: url(../images/plus.svg);
  position: absolute;
  right: 5px;
  top: 35%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  cursor: pointer;
}

@media screen and (max-width: 1100px) {
  body.index .q_a .q_a_main label:after {
    right: 10px;
  }
}

body.index .q_a .q_a_main label.on:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

body.index .q_a .q_a_main .accordion_text {
  display: none;
  margin-right: 0;
  margin-left: auto;
  padding: 20px 22px;
  width: 95%;
  background: #f7f8f7;
  color: #707070;
}

@media screen and (max-width: 1100px) {
  body.index .q_a .q_a_main .accordion_text {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  body.index .q_a .q_a_main .accordion_text {
    width: 100vw;
    padding: 5%;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

body.index .q_a .q_a_main .more {
  color: #333;
  display: block;
  text-align: center;
  -webkit-margin-before: 45px;
  margin-top: 45px;
}

body.index .q_a .partner {
  width: 990px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-margin-before: 117px;
  margin-top: 117px;
}

@media screen and (max-width: 1100px) {
  body.index .q_a .partner {
    display: block;
    width: 90%;
  }
}

body.index .q_a .partner .partner_name {
  width: 210px;
  height: 70px;
  background: #5a6f6a;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.2em;
  line-height: 30px;
  text-align: left;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1100px) {
  body.index .q_a .partner .partner_name {
    width: 100%;
    height: 35px;
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  body.index .q_a .partner .partner_name {
    width: 100%;
  }
}

body.index .q_a .partner .partner_company {
  width: 770px;
  height: 70px;
  background: #f7f8f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-margin-start: 10px;
  margin-left: 10px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1100px) {
  body.index .q_a .partner .partner_company {
    -webkit-margin-start: 0px;
    margin-left: 0px;
    width: 100%;
    -webkit-margin-before: 10px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  body.index .q_a .partner .partner_company {
    display: block;
    padding: 20px 11px;
    height: auto;
  }
  body.index .q_a .partner .partner_company p {
    -webkit-margin-after: 14px;
    margin-bottom: 14px;
  }
}

body footer {
  color: #c8c8c8;
  background: #3f4e4a;
  -webkit-padding-before: 57px;
  padding-top: 57px;
  -webkit-padding-after: 28px;
  padding-bottom: 28px;
}

@media screen and (max-width: 767px) {
  body footer {
    -webkit-padding-after: 25px;
    padding-bottom: 25px;
  }
}

body footer .contact_address {
  width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1100px) {
  body footer .contact_address {
    display: block;
    width: 100%;
  }
}

body footer .contact_address .address {
  -webkit-margin-after: 108px;
  margin-bottom: 108px;
}

body footer .contact_address .address .sp {
  display: none;
}

@media screen and (max-width: 1100px) {
  body footer .contact_address .address {
    text-align: center;
    -webkit-margin-after: 33px;
    margin-bottom: 33px;
  }
}

@media screen and (max-width: 767px) {
  body footer .contact_address .address {
    font-size: 14px;
    width: 90%;
    margin: 0 auto;
    line-height: 2;
  }
  body footer .contact_address .address .sp {
    display: block;
  }
}

body footer .contact_address .address img {
  -webkit-padding-after: 24px;
  padding-bottom: 24px;
}

@media screen and (max-width: 767px) {
  body footer .contact_address .address img {
    width: 250px;
    -webkit-padding-after: 0px;
    padding-bottom: 0px;
  }
}

body footer .contact_address .address p {
  line-height: 1.9;
}

@media screen and (max-width: 767px) {
  body footer .contact_address .address p {
    -webkit-margin-after: 54px;
    margin-bottom: 54px;
  }
}

body footer .contact_address .contact {
  color: #fff;
}

@media screen and (max-width: 1100px) {
  body footer .contact_address .contact {
    -webkit-margin-after: 73px;
    margin-bottom: 73px;
    text-align: center;
  }
}

body footer .contact_address .contact .contact_btn {
  color: #fff;
  width: 400px;
  height: 110px;
  border-radius: 20px;
  background: #5bb585;
  padding: 34px 65px;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
  font-weight: 400;
  font-size: 28px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1100px) {
  body footer .contact_address .contact .contact_btn {
    margin: 0 auto;
    font-size: 22px;
    width: 325px;
    padding: 39px 0;
  }
}

body footer .contact_address .contact .contact_btn img {
  margin: -6px 0 -6px 19px;
}

body footer .contact_address .contact p {
  font-weight: 400;
  font-size: 20px;
  line-height: 37px;
  text-align: center;
  -webkit-margin-before: 23px;
  margin-top: 23px;
}

body footer .contact_address .contact .tel_number {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

body footer .contact_address .contact .tel_number span {
  color: #58de97;
}

@media screen and (max-width: 767px) {
  body footer .contact_address .contact .tel_number {
    pointer-events: all;
    cursor: pointer;
  }
}

body footer .contact_address .contact .privacy {
  display: none;
}

@media screen and (max-width: 767px) {
  body footer .contact_address .contact .privacy {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    color: #c8c8c8;
    border-bottom: solid #c8c8c8 1px;
    padding-bottom: 5px;
    font-size: 11px;
    -webkit-margin-before: 31px;
    margin-top: 31px;
  }
}

body footer .copyright {
  width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  body footer .copyright {
    width: 100%;
    text-align: center;
  }
}

body footer .copyright a {
  color: #c8c8c8;
  border-bottom: solid 1px #c8c8c8;
  -webkit-margin-end: 38px;
  margin-right: 38px;
  font-weight: 400;
  font-size: 11px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  body footer .copyright a {
    display: none;
  }
}

body footer .copyright small {
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.2em;
  line-height: 37px;
  text-align: left;
  color: #c8c8c8;
}

body footer .copyright small br {
  display: none;
}

@media screen and (max-width: 1100px) {
  body footer .copyright small {
    font-size: 10px;
    text-align: center;
    line-height: 1.7;
  }
  body footer .copyright small br {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
