@charset "UTF-8";
/*---------------------
base
---------------------*/
/*
font
---------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  min-width: 1110px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
    padding-top: 15vw;
  }
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

img {
  max-width: 100%;
}

.is-pc {
  display: block !important;
}

.is-sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }

  .is-sp {
    display: block !important;
  }
}
.container {
  width: 1110px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

section {
  position: relative;
  margin-top: 140px;
  border-top: 3px solid #000;
}
@media screen and (max-width: 767px) {
  section {
    margin-top: 60px;
  }
}

/*---------------------
parts
---------------------*/
.common-text {
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .common-text {
    font-size: 1.4rem;
  }
}

.common-btn {
  display: block;
  width: 260px;
  color: #fff;
  background-color: #000;
  background-repeat: no-repeat;
  background-image: url(../images/icon_arr.png);
  background-position: right 10px top 52%;
  transition: 0.2s;
  text-align: center;
  padding: 18px 20px 18px 20px;
}
.common-btn:hover {
  background-color: #009fb9;
  background-image: url(../images/icon_arr_on.png);
}

/*
heading
---------------------*/
.common-heading {
  position: absolute;
  left: 50%;
  top: -23px;
  transform: translateX(-50%);
  width: 480px;
  text-align: center;
  line-height: 1;
  padding-bottom: 20px;
  font-size: 3rem;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  font-weight: normal;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .common-heading {
    width: 84%;
    font-size: 2rem;
    padding-bottom: 17px;
  }
}
.common-heading span {
  color: #009fb9;
}

/*
utility-navi
---------------------*/
.utility-navi-wrap {
  background: url(../images/bg_line.png);
  padding-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .utility-navi-wrap {
    padding: 20px 0;
  }
}
.utility-navi-wrap .utility-navi {
  position: relative;
  top: -30px;
}
@media screen and (max-width: 767px) {
  .utility-navi-wrap .utility-navi {
    top: 0;
  }
}
.utility-navi-wrap .utility-navi li a {
  font-size: 2rem;
  padding: 20px 0 24px;
}
@media screen and (max-width: 767px) {
  .utility-navi-wrap .utility-navi li a {
    font-size: 1.4rem;
    padding-left: 10%;
    padding-right: 5%;
    text-align: left;
  }
}
.utility-navi-wrap .utility-navi li span {

}
@media screen and (max-width: 767px) {
  .utility-navi-wrap .utility-navi li span {
    margin-top: 0;
  }
}

.utility-navi {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .utility-navi {
    display: block;
  }
}
.utility-navi li {
  width: 315px;
  margin: 0 9px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .utility-navi li {
    width: 100%;
    margin: 0;
  }
  .utility-navi li + li {
    margin-top: 10px;
    text-align: left;
  }
}
.utility-navi li a {
  font-size: 1.8rem;
  padding: 18px 0 21px;
  font-weight: bold;
  color: #fff;
  display: block;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: left 17px center;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .utility-navi li a {
    padding: 15px 0;
    font-size: 1.4rem;
    padding-left: 10%;
    padding-right: 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    background-position: left 2% center;
    background-size: 6%;
  }
}
.utility-navi li a:hover {
  background-color: #009fb9;
}
.utility-navi li span {
  font-size: 1.4rem;
  font-weight: normal;
  display: block;
  margin-bottom: 3px;
}
@media screen and (max-width: 767px) {
  .utility-navi li span {
    font-size: 1.2rem;
    display: inline-block;
  }
}
.utility-navi li:nth-child(1) a {
  background-image: url(../images/icon_utility01.png);
}
.utility-navi li:nth-child(1) a:hover {
  background-image: url(../images/icon_utility01_on.png);
}
.utility-navi li:nth-child(2) a {
  background-image: url(../images/icon_utility02.png);
}
.utility-navi li:nth-child(2) a:hover {
  background-image: url(../images/icon_utility02_on.png);
}
.utility-navi li:nth-child(3) a {
  background-image: url(../images/icon_utility04.png);
}
.utility-navi li:nth-child(3) a:hover {
  background-image: url(../images/icon_utility04_on.png);
}

/*---------------------
header
---------------------*/
.header {
  background: #fff;
  z-index: 999;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
  }
  .header.is-fixed .header__logo {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .header.is-fixed .header__logo {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .header.is-fixed .header__inner {
    padding: 10px 0 15px;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px) {
  .header.is-fixed .header__inner {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header__inner {
  width: 100%;
  max-width: 1275px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .header__inner #toggleMenu {
    width: 10%;
    max-width: 73px;
    height: 10vw;
    cursor: pointer;
    position: relative;
    background: #000;
  }
  .header__inner #toggleMenu span {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    position: absolute;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: #fff;
  }
  .header__inner #toggleMenu span:nth-child(1) {
    top: 2vw;
  }
  .header__inner #toggleMenu span:nth-child(2) {
    top: 4.7vw;
  }
  .header__inner #toggleMenu span:nth-child(3) {
    top: auto;
    bottom: 2vw;
  }
  .header__inner #toggleMenu.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .header__inner #toggleMenu.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__inner #toggleMenu.is-active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
}

.header__nav ul {
  display: flex;
}
.header__nav ul li + li {
  margin-left: 70px;
}
.header__nav ul li a {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 1em;
  border-bottom: 2px solid #000;
}
.header__nav ul li.is-active a {
  color: #00a0b8;
}
@media screen and (max-width: 767px) {
  .header__nav {
    border-top: 2px solid #000;
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    z-index: 1;
    background: #fff;
  }
  .header__nav ul {
    display: block;
  }
  .header__nav li {
    width: 100%;
  }
  .header__nav li + li {
    margin-left: 0 !important;
  }
  .header__nav li a {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .header__logo {
    width: 62%;
    max-width: 310px;
  }
}
/*---------------------
footer
---------------------*/
footer {
  background: #000;
  text-align: center;
}
footer address {
  padding: 25px 10px;
  color: #fff;
  font-style: normal;
  font-size: 1.4rem;
}

/*---------------------
key-visual
---------------------*/
.key-visual {
  width: 100%;
  max-width: 1275px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  /*.key-visual__side {
    width: 34.274%;

    @include sp {
      width: 30%;
      background: url(../images/img_key_side.jpg) no-repeat center top 20% / 180%;
      img {
        display: none;
      }
    }
  }*/
}
@media screen and (max-width: 767px) {
  .key-visual {
    margin-bottom: 12px;
  }
}
.key-visual .key-visual__slide {
  width: 100%;
}

.key-visual__text {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 620px;
  background: #fff;
  border-top: 4px solid #009fb9;
}
.key-visual__text p {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: bold;
}
.key-visual__text p span {
  color: #009fb9;
}
.key-visual__text .title {
  font-size: 7.2rem;
  font-weight: 500;
  line-height: 1.2;
}
.key-visual__text .title em {
  font-style: normal;
  color: #009fb9;
}
@media screen and (max-width: 767px) {
  .key-visual__text {
    position: relative;
    width: 100%;
    padding-left: 2vw;
    bottom: 0;
  }
  .key-visual__text p {
    margin-top: 3%;
    font-size: 3.7vw;
  }
  .key-visual__text .title {
    font-size: 10.4vw;
  }
}
.key-visual__text .box {
  position: absolute;
  top: -30px;
  right: -30px;
  background: #be3134;
  color: #fff;
  font-size: 2.3rem;
  font-weight: bold;
  width: 130px;
  height: 130px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .key-visual__text .box {
    right: 0;
    top: -20px;
    width: 90px;
    height: 90px;
    font-size: 1.8rem;
  }
}
.key-visual__text .box span {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .key-visual__text .box span {
    font-size: 1.6rem;
  }
}
.key-visual__text .box em {
  font-size: 2.5rem;
  font-style: normal;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .key-visual__text .box em {
    font-size: 2rem;
  }
}

/*---------------------
introduction
---------------------*/
#introduction {
  padding: 85px 0 60px;
  background: #B2E2EA;
}
@media screen and (max-width: 767px) {
  #introduction {
    padding: 85px 0 40px;
  }
}
#introduction .common-heading em {
  font-size: 4.5rem;
  font-weight: bold;
  font-style: normal;
}
#introduction .inner {
  max-width: 990px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #introduction .inner {
    padding: 0 3vw;
  }
}
#introduction .introduction-list__item {
  background-color: #fff;
  box-shadow: 0px 0px 24px 0px rgba(102,102,102,0.2);
  padding: 35px 55px 35px 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #introduction .introduction-list__item {
    padding: 50px 20px 20px 20px;
    position: relative;
    margin-bottom: 45px;
  }
}
#introduction .introduction-list__item .feature-title {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  #introduction .introduction-list__item .feature-title {
    display: block;
    margin-bottom: 25px;
  }
}
#introduction .introduction-list__item .feature-title .number {
  width: 150px;
  line-height: 60px;
  text-align: center;
  color: #fff;
  font-size: 2.3rem;
  font-weight: bold;
  background-color: #00505B;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  #introduction .introduction-list__item .feature-title .number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    line-height: 50px;
    font-size: 1.8rem;
    margin-right: 0;
  }
}
#introduction .introduction-list__item .feature-title .title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #009FB9;
  line-height: 1.0;
}
#introduction .introduction-list__item .feature-title .title span {
  display: block;
  font-size: 2.0rem;
  line-height: 1.7;
}
#introduction .introduction-list__item .feature-box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #introduction .introduction-list__item .feature-box {
    display: block;
  }
}
#introduction .introduction-list__item .feature-box .image {
  width: 29.05%;
}
@media screen and (max-width: 767px) {
  #introduction .introduction-list__item .feature-box .image {
    width: 75%;
    margin: 0 auto 25px;
  }
}
#introduction .introduction-list__item .feature-box .text {
  width: 68.15%;
  font-size: 1.8rem;
  line-height: 1.66;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #introduction .introduction-list__item .feature-box .text {
    width: 100%;
    font-size: 1.5rem;
  }
}


/*---------------------
problem
---------------------*/
.problem__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .problem__list {
    margin-top: 30px;
    display: block;
  }
}
.problem__list li {
  width: 475px;
  height: 267px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .problem__list li {
    width: 100%;
    height: auto;
    background-size: cover;
    padding: 17% 0 14%;
  }
  .problem__list li + li {
    margin-top: 15px;
  }
}
.problem__list li:nth-child(n + 3) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .problem__list li:nth-child(n + 3) {
    margin-top: 15px;
  }
}
.problem__list li:nth-child(1) {
  background-image: url(../images/img_problem01.jpg);
}
.problem__list li:nth-child(2) {
  background-image: url(../images/img_problem03.jpg);
}
.problem__list li:nth-child(3) {
  background-image: url(../images/img_problem02.jpg);
}
.problem__list li:nth-child(4) {
  background-image: url(../images/img_problem04.jpg);
}
.problem__list li .title {
  width: 100%;
  font-weight: bold;
  font-size: 3.2rem;
  margin-bottom: 15px;
  text-shadow: #000 1px 1px 10px, #000 -1px 1px 10px, #000 1px -1px 10px, #000 -1px -1px 10px;
}
@media screen and (max-width: 767px) {
  .problem__list li .title {
    font-size: 2.6rem;
    margin-bottom: 10px;
  }
}
.problem__list li p {
  font-size: 2rem;
  text-shadow: #000 1px 1px 10px, #000 -1px 1px 10px, #000 1px -1px 10px, #000 -1px -1px 10px;
}
@media screen and (max-width: 767px) {
  .problem__list li p {
    font-size: 1.6rem;
  }
}

/*---------------------
solution
---------------------*/
.solution {
  padding: 70px 0 90px;
  background: #b2e2ea;
}
@media screen and (max-width: 767px) {
  .solution {
    padding: 30px 0;
  }
}
.solution .common-text {
  text-align: center;
  line-height: 1.66;
}

.solution__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .solution__list {
    display: block;
  }
}
.solution__list li {
  width: 285px;
  height: 285px;
  background-color: #fff;
  background-position: center top 74px;
  background-repeat: no-repeat;
  padding-top: 190px;
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  box-shadow: 0 0 8px #d1d1d1;
}
@media screen and (max-width: 767px) {
  .solution__list li {
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 127px;
    background-size: 65px;
    background-position: center top 52px;
    font-size: 1.8rem;
  }
  .solution__list li + li {
    margin-top: 15px;
  }
}
.solution__list li:nth-child(1) {
  background-image: url(../images/icon_solution01.png);
}
.solution__list li:nth-child(2) {
  background-image: url(../images/icon_solution02.png);
}
.solution__list li:nth-child(3) {
  background-image: url(../images/icon_solution03.png);
}

.feature .subtitle {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .feature .subtitle {
    font-size: 1.7rem;
    margin-bottom: 5px;
  }
}
.feature__text-img {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .feature__text-img {
    display: block;
  }
}
.feature__text-img .text {
  width: 58%;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .feature__text-img .text {
    width: 100%;
    font-size: 1.6rem;
  }
}
.feature__text-img .text dl {
  display: flex;
}
.feature__text-img .text dl dt {
  width: 7em;
  flex: none;
}
@media screen and (max-width: 767px) {
  .feature__text-img .text dl dt {
    width: auto;
    margin-right: 1em;
  }
}
.feature__text-img .text dl dd {
  padding-left: 1em;
  text-indent: -1em;
}
.feature__text-img .img {
  width: 40.2%;
}
@media screen and (max-width: 767px) {
  .feature__text-img .img {
    display: none;
    margin-top: 1em;
    margin-left: 0;
  }
  .feature__text-img .img img {
    width: 100%;
  }
}
.feature__text-img.mgt {
  margin-top: 105px !important;
}
@media screen and (max-width: 767px) {
  .feature__text-img.mgt {
    margin-top: 40px !important;
  }
}
.feature__img {
  margin-top: 2em;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .feature__img {
    display: none;
  }
}
.feature__img img {
  width: 50%;
}
.feature .feature01 {
  background: url(../images/bg_feature01.png) no-repeat left 0 bottom 0;
  padding-bottom: 265px;
}
@media screen and (max-width: 767px) {
  .feature .feature01 {
    padding-bottom: 45px;
    background-position: center bottom -20%;
    background-size: 200%;
  }
}
.feature .feature01__list {
  max-width: 995px;
  width: 100%;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.6);
  padding: 30px 35px;
  line-height: 1.8;
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .feature .feature01__list {
    padding: 0 0 30px;
    margin-top: 10px;
    font-size: 1.8rem;
  }
}
.feature .overview__map {
  background-color: #f2f4f5;
  padding: 40px 70px;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature .overview__map {
    padding: 1rem;
    margin-bottom: 1.5em;
  }
}
.feature .overview__map dt {
  flex: none;
}
.feature .overview__map dd {
  width: 22%;
  padding: 1em;
  background: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .feature .overview__map dd {
    width: 100%;
    margin-top: 1em;
  }
}
.feature .overview__map dd ul {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .feature .overview__map dd ul {
    font-size: 1.4rem;
  }
  .feature .overview__map dd ul li {
    display: inline-block;
    margin-right: 1em;
  }
}

.service__list {
  display: flex;
  flex-wrap: wrap;
  margin: 75px 70px 0;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service__list {
    margin: 0;
  }
}
.service__list dl {
  width: 46.4%;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .service__list dl {
    width: 100%;
    margin-bottom: 30px;
  }
}
.service__list dl dt {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .service__list dl dt {
    display: none;
  }
}
.service__list dl dd .subtitle {
  font-size: 2.4rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .service__list dl dd .subtitle {
    font-size: 1.8rem;
  }
}
.service__list dl dd p {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .service__list dl dd p {
    font-size: 1.4rem;
  }
}
.service .point__img {
  display: none;
}
@media screen and (max-width: 767px) {
  .service .point__img {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .service .point__img div {
    width: 50%;
  }
  .service .point__img div img {
    display: inline;
    object-fit: cover;
    height: 28vw;
  }
}
.service__benefit {
  display: flex;
  background: #e5f5f8;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .service__benefit {
    flex-wrap: wrap;
  }
}
.service__benefit .text {
  padding: 30px 25px;
}
.service__benefit .text .title {
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}
.service__benefit .text ul {
  line-height: 2;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .service__benefit .text {
    padding: 20px 15px;
    width: 100%;
  }
  .service__benefit .text .title {
    font-size: 2rem;
  }
}
.service__benefit .img {
  flex: none;
}
@media screen and (max-width: 767px) {
  .service__benefit .img {
    order: -1;
    width: 100%;
  }
  .service__benefit .img img {
    width: 100%;
    max-width: none;
  }
}

.access__list {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
}
.access p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .access .sp-img {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .access .point__text {
    text-align: center;
  }
  .access .sp-img {
    text-align: center;
    margin-bottom: 15px;
  }
  .access .point__img {
    display: none;
  }
}

.feature__text-img + .feature__text-img {
  margin-top: 40px;
}

.point {
  padding: 125px 0;
}
@media screen and (max-width: 767px) {
  .point {
    padding: 30px 0;
  }
}
.point + .point {
  border-top: 3px solid #000;
}
.point .label {
  width: 120px;
  text-align: center;
  border: 2px solid #000;
  font-weight: bold;
  font-size: 2.4rem;
  background: #fff;
  line-height: 4.4rem;
}
@media screen and (max-width: 767px) {
  .point .label {
    width: 90px;
    font-size: 1.8rem;
    line-height: 3rem;
  }
}
.point .utility-navi {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .point .utility-navi {
    margin-top: 20px;
  }
}

.point__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .point__wrap {
    display: block;
  }
}

.point__img {
  flex: none;
  border: 2px solid #000;
}
.point__img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.point__img img + img {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .point__img img + img {
    margin-top: 10px;
  }
}
.point__img div + div {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .point__img div + div {
    margin-top: 0;
  }
}

.point__text .title {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 35px;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .point__text .title {
    font-size: 2.4rem;
    margin-top: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.point__text .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65px;
  height: 4px;
  background: #009fb9;
}
@media screen and (max-width: 767px) {
  .point__text .title::before {
    height: 5px;
  }
}

/* 20221221 追加 ------------*/
.point__text .title--center {
  text-align: center;
}
.point__text .title--center::before {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
/* -------------------------- */

.point__text .subtitle {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .point__text .subtitle {
    font-size: 1.7rem;
    margin-bottom: 5px;
  }
}
.point__text .subtitle span {
  display: block;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .point__text .subtitle span {
    font-size: 1.2rem;
  }
}
.point__text p {
  font-size: 1.8rem;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .point__text p {
    font-size: 1.4rem;
  }
}
.point__text ul.indent li {
  font-size: 1.8rem;
  line-height: 1.77;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .point__text ul.indent li {
    font-size: 1.4rem;
  }
}
.point__text .common-btn {
  margin-top: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .point__text .common-btn {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.example {
  padding: 100px 0;
  background: #e5f5f8;
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .example {
    padding: 30px 0;
    margin-bottom: 70px;
  }
}

.example__tabs {
  width: 100%;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.example__tabs input[name="tab_item"] {
  display: none;
}
.example__tabs input:checked + .example__tab__item {
  border: 3px solid #009fb9;
  background-color: #009fb9;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .example__tabs #always:checked ~ #always_content,
  .example__tabs #sometimes:checked ~ #sometimes_content,
  .example__tabs #rarely:checked ~ #rarely_content {
    display: block;
  }
}

.example__tab__item {
  display: block;
  float: left;
  width: 485px;
  height: 72px;
  padding-top: 20px;

  border: 3px solid #eae9e4;
  border-bottom: none;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  color: #009fb9;
  background-color: #fff;
  transition: all 0.2s ease;
  cursor: pointer;
  margin-left: 10px;
  text-align: center;
}
.example__tab__item:nth-of-type(1) {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .example__tab__item {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .openToggle {
    cursor: pointer;
    position: relative;
    font-size: 1.8rem;
    color: #fff;
    font-weight: bold;
    background: #009fb9;
    padding: 10px 30px 10px 10px;
  }
  .openToggle::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    border-left: 15px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transition: 0.2s;
    transform: translateY(-50%) rotate(90deg);
  }
  .openToggle.is-active::after {
    transform: translateY(-50%) rotate(0);
  }
}
@media screen and (max-width: 767px) {
  #rarely_content {
    display: block;
  }
}
.example__content {
  display: none;
  position: relative;
  padding: 35px 26px 60px;
  clear: both;
  background-color: #fff;
  border: 4px solid #009fb9;
}
@media screen and (max-width: 767px) {
  .example__content {
    padding: 15px 10px;
    border: 2px solid #009fb9;
  }
}
.example__content .toggle-btn {
  position: absolute;
  top: 250px;

  width: 50px;
  height: 50px;
  background-color: #666;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.example__content .toggle-btn.prev-btn {
  background-image: url(../images/icon_prev.png);
  left: -80px;
}
.example__content .toggle-btn.next-btn {
  background-image: url(../images/icon_next.png);
  right: -80px;
}
@media screen and (max-width: 767px) {
  .example__content .toggle-btn {
    display: none;
  }
}
.example__content .title {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  padding-bottom: 20px;
  border-bottom: 2px solid #000;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .example__content .title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
}

.example__content .block + .block {
  margin-top: 70px;
}
.example__content .wrap,
.example__content .wrap2 {
  display: flex;
  justify-content: space-between;
}
.example__content .wrap2  + .wrap2{
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .example__content .wrap.reverse .img{
    margin-left: 35px;
    margin-right: 0;
    order: 2;
  }
}

@media screen and (max-width: 767px) {
  .example__content .wrap,
  .example__content .wrap2 {
    display: block;
  }
}

.example__content .wrap2 .img{
  flex: none;
  width: 330px;
  margin-right: 25px;
}
.example__content .wrap2 .text{
  width: 100%;
}
.example__content .wrap2 .img p{
  font-size: 2rem;
  font-weight: bold;
  margin-top: 8px;
}
.example__content .wrap2 .title{
  text-align: left;
  margin-bottom: 20px;
}
.example__content .wrap2 .col-2{
  display: flex;
  flex-wrap: wrap;
}
.example__content .wrap2 .col-2 div{
  width: 50%;
}
.example__content .img {
  flex: none;
  margin-right: 35px;
  width: 250px;
}
.example__content .img .caption {
  font-size: 1.4rem;
  color: #7c7b78;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .example__content .img,
  .example__content .wrap2 .img{
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    margin-bottom: 15px;
    width: auto;
  }
  .example__content .wrap2 .img p{
    font-size: 1.6rem;
    text-align: left;
  }
  .example__content .wrap2 .title{
    text-align: center;
    margin-bottom: 15px;
  }
}
.example__content .text dl {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .example__content .text dl {
    font-size: 1.6rem;
  }
}
.example__content .text dl dt {
  font-weight: bold;
}

.example__content .text dl + dl {
  margin-top: 1em;
}
.example__content .wrap2 .text dl dd{

  padding-left: 1em;
}
.example__content .text .note {
  margin-top: 20px;
  font-size: 1.4rem;
  text-indent: -1em;
  padding-left: 1em;
}
.example__content .text li {
  text-indent: -1em;
  padding-left: 1em;
}
.example__content .common-btn {
  width: 345px;
  margin-top: 35px;
  margin-left: auto;
  margin-right: auto;
}

.example__content .link{
  text-align: center;
  font-size: 1.8rem;
  margin-top: 45px;
  font-weight: bold;
}
.example__content .link a{
  color: #189EB9;
}
@media screen and (max-width: 767px) {
  .example__content .common-btn {
    width: 100%;
  }
  .example__content .link{
    font-size: 1.6rem;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .example__content + .openToggle {
    margin-top: 20px;
  }
}
.example__content__col2{
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .example__content__col2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
    
  }
  .example__content__col2 .block{
    width: 49%;
  }
  .example__content  .example__content__col2 .block + .block {
    margin-top: 0;
  }
  .example__content .example__content__col2 .title{
    font-size: 2rem;
  }
}
.around {
  padding-top: 80px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .around {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
.around .utility-navi {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .around .utility-navi {
    margin-top: 25px;
  }
}
.around__title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .around__title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
.around__text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}
.around__text:before {
  position: absolute;
  content: "";
  width: 47px;
  height: 1px;
  background-color: #707070;
  top: 50%;
  left: 13.5%;
}
.around__text:after {
  position: absolute;
  content: "";
  width: 47px;
  height: 1px;
  background-color: #707070;
  top: 50%;
  right: 13.5%;
}
.around__wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .around__wrap {
    display: block;
  }
}
.around__wrap .title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 50px;
  padding-bottom: 35px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .around__wrap .title {
    font-size: 2rem;
    margin-top: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.around__wrap .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65px;
  height: 4px;
  background: #009fb9;
}
.around__wrap .title span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .around__wrap .title span {
    font-size: 1.6rem;
  }
}
.around__wrap .text {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .around__wrap .text {
    font-size: 1.6rem;
  }
}
.around__wrap .text-box {
  margin-bottom: 50px;
}
.around__wrap .data dl {
  display: flex;
}
.around__wrap .data dt {
  width: 6em;
  flex: none;
}
.around__wrap .img {
  flex: none;
  margin-left: 70px;
}
@media screen and (max-width: 767px) {
  .around__wrap .img {
    margin-top: 20px;
    margin-left: 0;
    display: flex;
  }
}
.around__wrap .img img {
  display: block;
  margin-bottom: 20px;
  margin-right: 0;
  margin-left: auto;
}

.facility {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 380px, rgba(255, 255, 255, 0) 380px), url(../images/bg_facility.jpg);
  background-repeat: repeat-y;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .facility {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.facility .common-text {
  text-align: center;
}

.facility__tabs {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .facility__tabs {
    margin-top: 20px;
  }
}
.facility__tabs input[name="facility_item"] {
  display: none;
}
.facility__tabs input:checked + .facility__tab {
  opacity: 1;
}
.facility__tabs input:checked + .facility__tab::after {
  height: 40px;
}
.facility__tabs #kyoto:checked ~ #kyoto_content,
.facility__tabs #osaka:checked ~ #osaka_content {
  display: block;
}

.facility__tab {
  display: block;
  opacity: 0.5;
  float: left;
  width: 48.7%;
  height: 230px;
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 30px;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  background-color: #000;
  transition: all 0.2s ease;
  cursor: pointer;
  margin-left: 2.6%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .facility__tab {
    padding: 10px;
    height: auto;
  }
}
.facility__tab::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  width: 100%;
  height: 0;
  transition: 0.2s;
  background-image: url(../images/icon_arr_bottom.png);
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .facility__tab::after {
    background-size: 20px;
  }
}
.facility__tab:nth-of-type(1) {
  margin-left: 0;
}
.facility__tab .inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .facility__tab .inner {
    flex-wrap: wrap;
  }
}
.facility__tab .inner .img {
  flex: none;
}
@media screen and (max-width: 767px) {
  .facility__tab .inner .img {
    order: -1;
    flex: auto;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .facility__tab .inner .text {
    text-align: center;
  }
}
.facility__tab .inner .text .status {
  color: #009fb9;
  display: inline-block;
  border-bottom: 1px solid #009fb9;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .facility__tab .inner .text .status {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
}
.facility__tab .inner .text .title {
  font-size: 2.4rem;
  margin-bottom: 7px;
}
@media screen and (max-width: 767px) {
  .facility__tab .inner .text .title {
    font-size: 1.5rem;
    text-align: left;
  }
}
.facility__tab .inner .text p {
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .facility__tab .inner .text p {
    font-size: 1.4rem;
    text-align: left;
  }
}

.facility__content {
  display: none;
  padding-top: 75px;
  clear: both;
}
@media screen and (max-width: 767px) {
  .facility__content {
    padding-top: 45px;
  }
}
.facility__content .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .facility__content .btn-wrap {
    display: block;
    margin-top: 23%;
  }
}
.facility__content .btn-wrap a {
  font-weight: bold;
  font-size: 1.8rem;
  width: 350px;
  margin: 0 15px;
  padding: 13px 0;
}
@media screen and (max-width: 767px) {
  .facility__content .btn-wrap a {
    width: 100%;
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 30px;
    text-align: left;
  }
}
.facility__content .btn-wrap a span {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .facility__content .btn-wrap a span {
    font-size: 1.2rem;
  }
}

.facility__head .title-block {
  padding: 50px 0 40px;
  text-align: center;
  color: #fff;
  background: #000;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .facility__head .title-block {
    padding: 20px 0;
  }
}
.facility__head .title-block .title {
  font-size: 3.3rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .facility__head .title-block .title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.facility__head .title-block p {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .facility__head .title-block p {
    font-size: 1.6rem;
  }
}

.facility__body {
  background: #fff;
  padding: 45px 65px 60px;
}
@media screen and (max-width: 767px) {
  .facility__body {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  .facility__body .facility__text {
    font-size: 1.4rem;
  }
}
.facility__body .facility__text .heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .facility__body .facility__text .heading {
    font-size: 1.6rem;
  }
}
.facility__body .facility__text ul li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.facility__body .facility__text ul li + li {
  margin-top: 8px;
}
.facility__body .facility__text ul + .heading {
  margin-top: 35px;
}
.facility__body .facility__text p + .heading {
  margin-top: 35px;
}
.facility__body .concept-btn {
  width: 410px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin: 20px auto 15px;
  line-height: 64px;
  border: 2px solid #000;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .facility__body .concept-btn {
    width: 100%;
    line-height: 3em;
    font-size: 1.4rem;
  }
}
.facility__body .concept-btn::after {
  content: "";
  display: inline-block;
  color: #009fb9;
  font-weight: bold;
  width: 13px;
  height: 16px;
  background-repeat: no-repeat;
  background-image: url(../images/icon_arr.png);
  margin-left: 1.5em;
  margin-bottom: 0.2em;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .facility__body .concept-btn::after {
    margin-left: 0.5em;
  }
}

.concept-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.concept-modal .modal-bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.concept-modal .inner {
  max-height: 80vh;
  overflow-y: scroll;
  padding: 45px;
}
@media screen and (max-width: 767px) {
  .concept-modal .inner {
    padding: 15px;
  }
}
.concept-modal .content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 875px;
}
@media screen and (max-width: 767px) {
  .concept-modal .content {
    width: 96%;
  }
}
.concept-modal .content .caption {
  font-size: 1.4rem;
  margin-top: 12px;
}
.concept-modal .content .title {
  margin-top: 30px;
  font-weight: bold;
  font-size: 1.8rem;
  color: #009fb9;
}
@media screen and (max-width: 767px) {
  .concept-modal .content .title {
    font-size: 1.6rem;
    margin-top: 15px;
  }
}
.concept-modal .content ul {
  margin-top: 5px;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .concept-modal .content ul {
    font-size: 1.5rem;
  }
}
.concept-modal .content ul li {
  padding-left: 1em;
  text-indent: 0;
  margin-top: 0 !important;
  position: relative;
}
.concept-modal .content ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #009fb9;
  position: absolute;
  left: 0.1em;
  top: 0.5em;
}
.concept-modal .content .close-btn {
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .concept-modal .content .close-btn {
    width: 30px;
    height: 30px;
    right: 0;
    top: -15px;
  }
}

.facility__map {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f0f0f0;
  margin-top: 35px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .facility__map {
    padding: 10px 10px 20px;
  }
}
.facility__map .text {
  width: 430px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .facility__map .text {
    width: 100%;
    order: 2;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .facility__map .text dl {
    text-align: center;
  }
}
.facility__map .text dl dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .facility__map .text dl dt {
    font-size: 1.6rem;
  }
}
.facility__map .text dl + dl {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .facility__map .text dl + dl {
    font-size: 15px;
  }
}
.facility__map .text dl dd {
  padding-left: 1em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .facility__map .text dl dd {
    line-height: 1.4;
  }
}
.facility__map .gmap {
  width: 468px;
  height: 320px;
}
@media screen and (max-width: 767px) {
  .facility__map .gmap {
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 62.5%;
  }
  .facility__map .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}

.facility__slider__wrap {
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 30px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .facility__slider__wrap {
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
    display: block;
  }
}

.facility__slider {
  width: 789px;
}
@media screen and (max-width: 767px) {
  .facility__slider {
    width: 100%;
  }
}

.facility__slider__navi {
  width: 190px;
  background: #313131;
  position: absolute;
  right: 0;
  top: 0;
  right: -190px;
  height: 100%;
  padding: 20px;
  cursor: pointer;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* これを追加 */
  scrollbar-width: none;
}
@media screen and (max-width: 767px) {
  .facility__slider__navi {
    width: 100%;
    right: auto;
    top: 100%;
    left: 0;
    display: flex;
    overflow-y: visible;
    overflow-x: scroll;
    height: auto;
    padding: 10px;
  }
}
.facility__slider__navi li {
  position: relative;
}
@media screen and (min-width: 768px) {
  .facility__slider__navi li + li {
    margin-top: 18px;
  }
}
@media screen and (max-width: 767px) {
  .facility__slider__navi li {
    width: 24%;
  }
  .facility__slider__navi li + li {
    margin-left: 1.3%;
  }
}
.facility__slider__navi::-webkit-scrollbar {
  display: none;
}
.facility__slider__navi .slick-active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.facility__slider__name {
  font-size: 10rem;
  font-weight: bold;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 2px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .facility__slider__name {
    font-size: 4.5rem;
    left: 10px;
    bottom: 10px;
  }
}

.facility__slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.flow {
  padding-top: 80px;
  padding-bottom: 45px;
  background: url(../images/bg_line02.png);
}
.flow .container{
  width: 1230px;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .flow .container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
.flow__title{
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}
.flow__title::before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 28%;
  height: 18px;
  max-width: 512px;
  background: url(../images/icon_flow_title2.png) no-repeat center center / contain;
}
.flow__title::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  right: 0;
  width: 28%;
  height: 18px;
  max-width: 512px;
  background: url(../images/icon_flow_title2.png) no-repeat center center / contain;
}
.flow__title span{
  font-size: 2.4rem;
  font-weight: bold;
  color: #009EB9;
  display: inline-block;
  padding: 0 1em;
}
.flow .center {
  text-align: center;
  padding-bottom: 50px;
}

.flow__list {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .flow__list {
    margin: 0;
    display: block;
  }
  .flow__title{
    width: 20%;
    margin: 0;
    order: 2;
  }
  .flow__title span{
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 0;
  }
  .flow__list .number img{
    width: 100%;
  } 
  .flow__title::before{
    top: -40px;
    transform: translateX(-50%) rotate(90deg);
    left: 50%;
    width: 80%;
    height: 18px;
    max-width: 512px;
  }
  .flow__title::after{
    top: 140px;
    transform: translateX(-50%) rotate(270deg);
    left: 50%;
    width: 80%;
    height: 18px;
    max-width: 512px;
  }

}
.flow__list .flow__item {
  width: 298px;
  font-weight: bold;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .flow__list .flow__item {
    display: flex;
    align-items: center;
  }
}
.flow__list .flow__box {
  border-left: 2px solid #0091AC;
  min-height: 285px;
}
.flow__list .flow__box:not(:nth-child(2)) {
  margin-top: 46px;
}

.flow__list .flow__item .number{
  margin-bottom: 15px;
}
.flow__list .flow__item .title{
  font-size: 2.5rem;
  color: #009EB9;
  font-weight: bold;
  padding: 0 18px 10px;
}
.flow__list .flow__item .text{
  padding: 0 18px 0;
}

.flow__list .flow__item .text li{
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 10px;

}

.flow__list .flow__item .color-text{
  color: #009EB9;
  margin-top: 15px;
}
.flow__list .flow__item .img{
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__list .flow__item {

  }
  .flow__list .flow__item + li {
    margin-top: 30px;
  }
  .flow__list .flow__item {
    width: 100%;
  }
  .flow__list .flow__box {
    width: 100%;
    max-width: 450px;
    min-height: auto;
  }
  .flow__list .flow__box:not(:nth-child(2)) {
    margin-top: 0;
    margin-right: 58px;
    margin-right: calc(( 58 / 375 ) * 100%);
  }
  .flow__list .flow__item .number{
    margin-bottom: 10px;
  }
  .flow__list .flow__item .title{
    font-size: 2rem;
  }
  .flow__list .flow__item .text li{
    margin-bottom: 5px;
  }
}






.facility_back_top {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .facility_back_top {
    margin-top: 15px;
  }
}
.facility_back_top li {
  width: 48%;
  text-align: center;
  margin: 0 1%;
}
.facility_back_top li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 20px 25px 20px 60px;
  background: url(../images/icon_arr_top.png) no-repeat center left 10px #000;
  cursor: pointer;
  transition: 0.2s;
}
.facility_back_top li a span {
  display: block;
}
@media screen and (max-width: 767px) {
  .facility_back_top li a span {
    font-size: 1.6rem;
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .facility_back_top li a {
    display: block;
    padding: 30px 5% 5% 5%;
    background: url(../images/icon_arr_top.png) no-repeat center top 10px #000;
  }
}
.facility_back_top li a img {
  transition: 0.2s;
}
.facility_back_top li a:hover {
  background: url(../images/icon_arr_top.png) no-repeat center left 10px #616161;
}
@media screen and (max-width: 767px) {
  .facility_back_top li a:hover {
    background: url(../images/icon_arr_top.png) no-repeat center top 10px #616161;
  }
}
.facility_back_top li a:hover img {
  opacity: 0.8;
}

.about {
  margin-top: 0;
  padding-top: 150px;
  padding-bottom: 115px;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 30px;
    padding-bottom: 35px;
  }
}
.about .utility-navi {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .about .utility-navi {
    margin-top: 20px;
  }
}
.about .top-title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about .top-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}

.about__wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .about__wrap {
    display: block;
  }
}
.about__wrap .logo {
  flex: none;
  margin-right: 90px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .about__wrap .logo {
    margin-right: 0;
    text-align: center;
  }
  .about__wrap .logo img {
    width: 40%;
    max-width: 183px;
  }
}
.about__wrap .logo .title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about__wrap .logo .title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
}
.about__wrap .text p {
  line-height: 2;
  text-indent: 1em;
}
@media screen and (max-width: 767px) {
  .about__wrap .text p {
    font-size: 1.4rem;
  }
}
.about__wrap .text p.nospace {
  text-indent: 0;
  margin-bottom: 1em;
}
.about__wrap .text dl {
  display: flex;
  margin-bottom: 10px;
}
.about__wrap .text dl dt {
  width: 5em;
  flex: none;
}
.about__wrap .photo {
  flex: none;
  margin-right: 90px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .about__wrap .photo {
    margin-right: 0;
    text-align: center;
  }
  .about__wrap .photo img {
    width: 40%;
    max-width: 183px;
  }
}
.about__wrap .photo .name {
  margin-bottom: 10px;
}
.about__wrap + .about__wrap {
  margin-top: 50px;
}

.toggleTextBtn {
  background: #fff;
  width: 460px;
  border: 1px solid #000;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  text-align: center;
  font-size: 1.9rem;
  line-height: 4.7rem;
  margin-top: 40px;
  /*&::before {
    content: "";
    width: 13px;
    height: 16px;
    background: url(../images/icon_arr.png);
  }*/
}
@media screen and (max-width: 767px) {
  .toggleTextBtn {
    margin-top: 20px;
    width: 100%;
  }
}

.caption-area {
  margin-top: 0;
  border-top: none;
  background: #eee;
  padding: 60px 0;
  color: #666;
  font-size: 1.4rem;
  line-height: 2.28;
}
@media screen and (max-width: 767px) {
  .caption-area {
    padding: 30px 0;
  }
}
.caption-area div {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}
.caption-area div li {
  text-indent: -1em;
  padding-left: 1em;
}

.page-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/voice/bg_heading.png);
  border-top: 3px #000 solid;
  text-align: center;
  font-size: 3.4rem;
  font-weight: bold;
  height: 125px;
}
.page-heading h1 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .page-heading h1 {
    display: block;
  }
}
.page-heading span {
  font-size: 1.6rem;
  font-weight: normal;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .page-heading span {
    display: block;
    margin-left: 0;
  }
}

.voice-sec {
  margin-top: 0;
  border-top: none;
  padding-top: 60px;
}
.voice-sec .container {
  width: 980px;
}
@media screen and (max-width: 767px) {
  .voice-sec .container {
    width: 100%;
  }
}
.voice-sec__title {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .voice-sec__title {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
}
.voice-sec__title::after {
  content: "";
  display: block;
  width: 65px;
  height: 4px;
  background: #009fb9;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .voice-sec__title::after {
    width: 30px;
  }
}
.voice-sec__title sup {
  font-size: 2.0rem;
}
.voice-sec__card {
  display: flex;
  padding: 60px;
  justify-content: space-between;
  align-items: flex-start;
  background: url(../images/voice/bg_voice_card.jpg);
}
@media screen and (max-width: 767px) {
  .voice-sec__card {
    padding: 15px;
    display: block;
  }
}
.voice-sec__card .text {
  width: 500px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .voice-sec__card .text {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.voice-sec__card .text dl {
  display: flex;
}
.voice-sec__card .text dl dt {
  color: #009fb9;
  width: 115px;
  flex: none;
  border-right: 1px solid #009fb9;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .voice-sec__card .text dl dt {
    width: 30%;
  }
}
.voice-sec__card .text dl dd {
  padding: 10px 0 10px 2rem;
}
.voice-sec__card .img {
  flex: none;
}
@media screen and (max-width: 767px) {
  .voice-sec__card .img {
    text-align: center;
  }
}
.voice-sec__card .voice-sec-point {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
.voice-sec__card .voice-sec-point {
  font-size: 1.4rem;
}
}

#voice01 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #voice01 {
    margin-bottom: 50px;
  }
}

#voice02 {
  margin-top: 35px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #voice02 {
    margin-bottom: 50px;
  }
}

#voice02 + .utility-navi-wrap {
  margin-bottom: 50px;
}

.voice-block {
  margin-top: 70px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .voice-block {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.voice-block__headline {
  font-size: 3rem;
  border-left: 4px solid #009fb9;
  padding-left: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .voice-block__headline {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}
.voice-block .title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .voice-block .title {
    font-size: 2rem;
  }
}
.voice-block .text-img {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .voice-block .text-img {
    display: block;
  }
}
.voice-block .text-img .text-area {
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  .voice-block .text-img .text-area {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.voice-block .text-img .text-area p {
  font-size: 1.8rem;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .voice-block .text-img .text-area p {
    font-size: 1.6rem;
  }
}
.voice-block .text-img .img {
  flex: none;
}
@media screen and (max-width: 767px) {
  .voice-block .text-img .img img {
    width: 100%;
    max-width: auto;
  }
}

.scene {
  margin-top: 80px;
  border-top: none;
}
@media screen and (max-width: 767px) {
  .scene {
    margin-top: 20px;
  }
  .scene .container {
    padding: 0;
  }
}
.scene__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .scene__inner {
    display: block;
  }
}
.scene__image {
  width: 51.8%;
  background: url(../images/img_scene01.png) no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .scene__image {
    width: 100%;
    height: 61vw;
  }
}
.scene__image .text {
  font-size: 2.4rem;
  text-align: center;
  padding: 1em;
  background: rgba(255, 255, 255, 0.8);
  width: 340px;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .scene__image .text {
    font-size: 2rem;
    width: 150%;
    padding: 0.5em;
  }
}
.scene__image .text span {
  display: block;
  font-size: 1.3rem;
  color: #00a0b9;
}
.scene__image .text span:after {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 9px;
  border-color: transparent transparent transparent #00a0b9;
  margin-left: 5px;
}
.scene__image .text:hover {
  background: rgba(1, 204, 246, 0.6);
}
.scene__image .text:hover span {
  color: #fff;
}
.scene__image .text:hover span:after {
  border-color: transparent transparent transparent #fff;
}
.scene__image .text a {
  display: block;
}
.scene__left {
  width: 46.9%;
}
@media screen and (max-width: 767px) {
  .scene__left {
    width: 100%;
    padding: 0 15px;
    margin-top: 20px;
  }
}
.scene__title {
  width: 100%;
  border: 3px solid #000;
  text-align: center;
  font-size: 2.4rem;
}
.scene__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  .scene__list {
    margin-top: 20px;
  }
}
.scene__list li {
  width: 255px;
  align-items: center;
}
.scene__list li:nth-child(n + 3) {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .scene__list li:nth-child(n + 3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .scene__list li {
    width: 48.5%;
    margin-bottom: 3%;
  }
}
.scene__list li a {
  display: flex;
  height: 80px;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  background: #000;
  cursor: pointer;
  transition: 0.3s;
  padding-left: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .scene__list li a {
    font-size: 1.5rem;
    height: 4em;
    padding-left: 10px;
  }
}
.scene__list li a:before {
  position: absolute;
  content: "";
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 9px;
  border-color: transparent transparent transparent #00a0b9;
  margin-left: 5px;
}
.scene__list li a:hover {
  background: #009fb9;
}
.scene__list li a:hover:before {
  border-color: transparent transparent transparent #fff;
}
.scene__bnr {
  margin-top: 20px;
  width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0;
  background: url(../images/bg_bnr_scene.png) no-repeat center center/cover;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .scene__bnr {
    width: 100%;
    padding: 20px 0;
  }
}
.scene__bnr:hover {
  opacity: 0.8;
}
.scene__bnr a {
  display: block;
}
.scene__bnr .text {
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 10px 0 15px;
}
.scene__bnr .text .title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.scene .scene-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .scene .scene-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}
.scene .voice-sec__title {
  font-size: 2.1rem;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__title {
    font-size: 1.8rem;
  }
}
.scene .voice-sec__card {
  align-items: flex-start;
}
.scene .voice-sec__card .text-area {
  width: 618px;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card .text-area {
    width: 100%;
    margin-bottom: 20px;
  }
}
.scene .voice-sec__card .text-area .title {
  color: #009fb9;
  font-size: 2.6rem;
  font-weight: normal;
  margin-bottom: 15px;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card .text-area .title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.scene .voice-sec__card .text-area .subtitle {
  font-size: 2.4rem;
  margin-bottom: 15px;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card .text-area .subtitle {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.scene .voice-sec__card .text-area .text {
  width: 100%;
  margin-right: 0;
  font-size: 1.8rem;
  margin-left: 5px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card .text-area .text {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}
.scene .voice-sec__card .text-area .continuation {
  background: url("../images/bg_voice.png") no-repeat center center;
  padding: 33px 0 30px 35px;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card .text-area .continuation {
    background-size: cover;
    padding: 20px 10px;
  }
}
.scene .voice-sec__card .text-area .continuation .button {
  width: 345px;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card .text-area .continuation .button {
    width: 100%;
  }
}
.scene .voice-sec__card .text-area .continuation .button a {
  display: block;
  background: url("../images/icon_arr_on.png") no-repeat 95% 50% #009fb9;
  padding: 15px 15px 15px 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card .text-area .continuation .button a {
    font-size: 1.6rem;
  }
}
.scene .voice-sec__card .text-area .continuation .button a:hover {
  background: url("../images/icon_arr.png") no-repeat 95% 50% #000;
}
.scene .voice-sec__card .img figure figcaption {
  font-size: 1.4rem;
  display: block;
  margin-top: 13px;
  text-align: center;
}
.scene .voice-sec__card .img figure .note {
  text-align: left;
  font-size: 1.4rem;
  margin-top: 5px;
  margin-left: 1.4em;
}
.scene-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.scene-modal .inner {
  max-height: 80vh;
  overflow-y: scroll;
  padding: 45px;
}
@media screen and (max-width: 767px) {
  .scene-modal .inner {
    padding: 15px;
  }
  .scene .voice-sec__card .img figure figcaption {
    text-align: left;
  }
  .scene .voice-sec__card .img figure .note {

    margin-left: 0;
  }
}
.scene-modal .modal-bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.scene-modal .content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 875px;
}
@media screen and (max-width: 767px) {
  .scene-modal .content {
    width: 96%;
  }
}
.scene-modal .content .headline {
  font-size: 3rem;
  font-weight: bold;
  border-left: 5px solid #009fb9;
  padding-left: 1em;
  line-height: 1.2;
  padding-bottom: 0.1em;
}
@media screen and (max-width: 767px) {
  .scene-modal .content .headline {
    font-size: 2.2rem;
  }
}
.scene-modal .content .title {
  margin-top: 30px;
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .scene-modal .content .title {
    font-size: 2rem;
    margin-top: 15px;
  }
}
.scene-modal .content .text {
  margin-top: 5px;
}
.scene-modal .content .scene-point__title {
  font-weight: bold;
  font-size: 1.8rem;
  color: #009fb9;
}
@media screen and (max-width: 767px) {
  .scene-modal .content .scene-point__title {
    font-size: 1.6rem;
  }
}
.scene-modal .content .scene-point {
  margin-top: 10px;
}
.scene-modal .content ul {
  margin-top: 5px;
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .scene-modal .content ul {
    font-size: 1.5rem;
  }
}
.scene-modal .content ul li {
  padding-left: 1em;
  text-indent: 0;
  position: relative;
}
.scene-modal .content ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #009fb9;
  position: absolute;
  left: 0.1em;
  top: 0.5em;
}
.scene-modal .content a {
  width: 345px;
  margin-top: 45px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .scene-modal .content a {
    margin-top: 20px;
    width: 90%;
  }
}
.scene-modal .content .close-btn {
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .scene-modal .content .close-btn {
    width: 30px;
    height: 30px;
    right: 0;
    top: -15px;
  }
}

.bnr-sec{
  margin: 60px 0;
  text-align: center;

}
.bnr-sec a{
  transition: .2s;
}
.bnr-sec a:hover{
  opacity: .7;
}

@media screen and (max-width: 767px) {
  .bnr-sec{
    margin: 30px 0;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }

}

.download{
  padding: 90px 0;
  background: #F5F5F5;
}
.download__wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}

.download__wrap .img-area{
  width: 43.7%;
}
.download__wrap .img-area .date{
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
  text-align: center;
  font-size: 1.8rem;
  padding: 5px 0;
  font-weight: bold;
}
.download__wrap .text-area{
  width: 53%;
}

.download__wrap .title{
  font-size: 3.4rem;
  color: #009FBA;
  margin-bottom: 25px;
}

.download__wrap .mokuji{
  font-size: 2.5rem;
  font-weight: bold;
}

.download__wrap ul{
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.download__wrap .common-btn{
  width: 345px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .download__wrap{
    display: block;
  }
  .download__wrap .img-area{
    width: 100%;
  }
  .download__wrap .text-area{
    width: 100%;
    margin-top: 30px;
  }
  .download__wrap .common-btn{
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.point.equipment .label {
  width: 150px;

}
.overview__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 25px;
}

.overview__list li{
  width: 32.253%;
}

.overview__list li .title{
  font-size: 25px;
  color: #009EB9;
  font-weight: bold;
  margin-top: 10px;

}
.overview__list li p{
  margin-top: 10px;
  font-weight: bold;
}
.sec-text{
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}
.equipment .utility-navi-wrap{
  margin-top: 140px;
}

.equipment__list{
  display: flex;
  justify-content: center;
}

.equipment__list li{
  margin: 0 30px;
  width: 50%;
}
.equipment .note{
  margin-top: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .overview__list li{
    width: 48%;
    margin-top: 2%;
  }
  .overview__list li .title{
    font-size: 18px;
  }
  .equipment .utility-navi-wrap{
    margin-top: 70px;
  }
  .equipment__list li{
    margin: 0;
  }
}


/*------ 20220528 ota add ------*/
.case-study {
  border-top: none;
}
.case-study__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .case-study__list {
    display: block;
  }
}
.case-study__list__item {
  width: 48.64%;
  height: 280px;
  margin-bottom: 40px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .case-study__list__item {
    width: 100%;
    height: 167px;
    margin-bottom: 17px;
  }
}
.case-study__list__item:nth-child(1) {
  background: url("../images/bg_case-study01.jpg") no-repeat center center;
  background-size: cover;
}
.case-study__list__item:nth-child(2) {
  background: url("../images/bg_case-study02.jpg") no-repeat center center;
  background-size: cover;
}
.case-study__list__item:nth-child(3) {
  background: url("../images/bg_case-study03.jpg") no-repeat center center;
  background-size: cover;
}
.case-study__list__item:nth-child(4) {
  background: url("../images/bg_case-study04.jpg") no-repeat center center;
  background-size: cover;
}
.case-study__list__item span {
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  background-color: #1BA2BB;
  padding: 0 5px;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .case-study__list__item span {
    font-size: 1.4rem;
  }
}
.case-study__text .title {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-bottom: 35px;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .case-study__text .title {
    font-size: 2.4rem;
    margin-top: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.case-study__text .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65px;
  height: 4px;
  background: #009fb9;
}
@media screen and (max-width: 767px) {
  .case-study__text .title::before {
    height: 5px;
  }
}
.case-study__text .label {
  width: 142px;
  text-align: center;
  border: 2px solid #000;
  font-weight: bold;
  font-size: 2.4rem;
  background: #fff;
  line-height: 4.4rem;
}
@media screen and (max-width: 767px) {
  .case-study__text .label {
    width: 120px;
    font-size: 1.8rem;
    line-height: 3rem;
  }
}

.movie-area {
  border-top: none;
  background-color: #B2E2E9;
  padding: 60px 0;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .movie-area {
    padding: 25px 0;
  }
}
.movie-area .title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .movie-area .title {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
}
.movie-area .title span {
  color: #189FB9;
}
.movie-area .movie {
  width: 81.08%;
  padding-top: 45.6%;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .movie-area .movie {
    width: 100%;
    padding-top: 56.25%;
  }
}
.movie-area .movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.press-release {
  padding-top: 90px;
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .press-release {
    padding-top: 45px;
    margin-bottom: 70px;
  }
}
.press-release .common-heading dfn {
  font-style: normal;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .press-release .common-heading {
    font-size: 1.9rem;
  }
  .press-release .common-heading dfn {
    font-size: 1.1rem;
  }
}

.press-release__list .press-release__list__item {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .press-release__list .press-release__list__item {
    display: block;
  }
}
.press-release__list .press-release__list__item dt {
  width: 32.88%;
}
@media screen and (max-width: 767px) {
  .press-release__list .press-release__list__item dt {
    width: 100%;
    margin-bottom: 5px;
  }
}
.press-release__list .press-release__list__item dd {
  width: 67.12%;
}
@media screen and (max-width: 767px) {
  .press-release__list .press-release__list__item dd {
    width: 100%;
  }
}
.press-release__list .press-release__list__item dd a {
  text-decoration: underline;
}
.press-release__list .press-release__list__item dd a:hover {
  color: #1798B4;
}


.scene {
  z-index: 2;
}
.case-study {
  z-index: 1;
}
.scene .voice-sec__card02 {
  display: flex;
  padding: 40px;
  justify-content: space-between;
  align-items: flex-start;
  background: #F2F4F5;
}
@media screen and (max-width: 767px) {
 .scene .voice-sec__card02 {
    padding: 15px;
    display: block;
  }
}
.scene .voice-sec__card02 .text-area {
  width: 580px;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card02 .text-area {
    width: 100%;
    margin-bottom: 20px;
  }
}
.scene .voice-sec__card02 .text-area .title {
  color: #009fb9;
  font-size: 2.6rem;
  font-weight: normal;
  margin-bottom: 15px;
  margin-left: 5px;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card02 .text-area .title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.scene .voice-sec__card02 .text-area .subtitle {
  font-size: 2.3rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card02 .text-area .subtitle {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.scene .voice-sec__card02 .text-area .text-title {
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: #009FBA;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card02 .text-area .text-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}
.scene .voice-sec__card02 .text-area .text {
  width: 100%;
  margin-right: 0;
  font-size: 1.8rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card02 .text-area .text {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}
.scene .voice-sec__card02 .text-area dl {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.7;
  margin-top: 15px;
}
.scene .voice-sec__card02 .text-area dt {
  width: 5em;
  color: #009FBA;
}
.scene .voice-sec__card02 .text-area dd {
  width: calc(100% - 5em);
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card02 .text-area dd br {
    display: none;
  }
}
.scene .voice-sec__card02 .button {
  margin-top: 15px;
  width: 95%;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card02 .button {
    width: 100%;
  }
}
.scene .voice-sec__card02 .button a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #00A0BD;
  background: url("../images/icon_pdf.png") no-repeat 92% 50% #fff;
  font-size: 2.0rem;
  font-weight: bold;
  padding: 10px 40px 10px 0;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card02 .button a {
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 10px 0 10px 0;
    background: url("../images/icon_pdf.png") no-repeat 90% 80% #fff;
  }
}
.scene .voice-sec__card02 .button a span {
  font-size: 1.3rem;
  margin-right: 20px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card02 .button a span {
    font-size: 1.2rem;
    margin-right: 0;
    display: block;
  }
}
.scene .voice-sec__card02 .text-area .button a:hover {
  opacity: .6;
}
.scene .voice-sec__card02 .img {
  width: 411px;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card02 .img {
    width: 100%;
  }
}
.scene .voice-sec__card02 .img figure figcaption {
  font-size: 1.4rem;
  display: block;
  margin-top: 13px;
}
.scene .voice-sec__card02 .img ul {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .scene .voice-sec__card02 .img ul li {
    width: 48%;
  }
}

/* モーダル全体(背景＋本体) */
.modal{
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
}

/* モーダル背景 */
.modal-bg{
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* モーダル本体 */
.modal-content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 588px;
  background: #fff;
  padding: 60px 60px 40px 60px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .modal-content{
    width: 90%;
    padding: 15px;
  }
}
.modal-content .modal-img {
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .modal-content .modal-img {
    margin-bottom: 10px;
  }
}
.modal-content p {
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-content p {
    font-size: 1.4rem;
  }
}
.modal-content p span {
  display: block;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .modal-content p span {
    font-size: 1.2rem;
  }
}
.modal-content a {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 40px;
  line-height: 40px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 2;  
}



/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}



/* 20221123 hata add */

.past-voice-sec {
  margin-top: 0;
  border-top: none;
  padding-top: 60px;
}
/* .past-voice-sec .container {
  width: 980px;
} */
@media screen and (max-width: 767px) {
  .past-voice-sec .container {
    width: 100%;
  }
}
.past-voice-sec__title {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .past-voice-sec__title {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
}
.past-voice-sec__title::after {
  content: "";
  display: block;
  width: 65px;
  height: 4px;
  background: #009fb9;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .past-voice-sec__title::after {
    width: 30px;
  }
}
.past-voice-sec__title sup {
  font-size: 2.0rem;
}

.past-voice-sec__text {
  font-size: 1.8rem;
  text-align: center;
  font-weight: normal;
  line-height: 1.7;
  margin-bottom: 37px;
}
@media screen and (max-width: 767px) {
  .past-voice-sec__text {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

.past-voice-sec__card {
  display: flex;
  padding: 40px 40px 20px;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #F2F4F5;
}
@media screen and (max-width: 767px) {
  .past-voice-sec__card {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  }
}
@media screen and (max-width: 767px) {
  .past-voice-sec__card {
    padding: 15px;
    display: block;
  }
}
.past-voice-sec__card .text {
  width: 500px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .past-voice-sec__card .text {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.past-voice-sec__card .text dl {
  display: flex;
}
.past-voice-sec__card .text dl dt {
  color: #009fb9;
  width: 115px;
  flex: none;
  border-right: 1px solid #009fb9;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .past-voice-sec__card .text dl dt {
    width: 30%;
  }
}
.past-voice-sec__card .text dl dd {
  padding: 10px 0 10px 2rem;
}
.past-voice-sec__card .img {
  flex: none;
}
@media screen and (max-width: 767px) {
  .past-voice-sec__card .img {
    text-align: center;
  }
}
.past-voice-sec__card .past-voice-sec-point {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
.past-voice-sec__card .past-voice-sec-point {
  font-size: 1.4rem;
}
}

#voice01 {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #voice01 {
    margin-bottom: 50px;
  }
}

#voice02 {
  margin-top: 35px;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  #voice02 {
    margin-bottom: 50px;
  }
}

#voice02 + .utility-navi-wrap {
  margin-bottom: 50px;
}
.past-voice-wrapper{
  background-color: #F2F4F5;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .past-voice-wrapper{
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.past-voice-block {
  padding: 60px 40px 10px;
}
@media screen and (max-width: 767px) {
  .past-voice-block {
    padding: 40px 15px 0;
  }
}
.past-voice-block__headline {
  font-size: 3rem;
  border-left: 4px solid #009fb9;
  padding-left: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .past-voice-block__headline {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
}
.past-voice-block .title {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .past-voice-block .title {
    font-size: 2rem;
  }
}
.past-voice-block .text-img {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .past-voice-block .text-img {
    display: block;
  }
}
.past-voice-block .text-img .text-area {
  margin-right: 60px;
}
@media screen and (max-width: 767px) {
  .past-voice-block .text-img .text-area {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.past-voice-block .text-img .text-area p {
  font-size: 1.8rem;
  line-height: 1.77;
}
@media screen and (max-width: 767px) {
  .past-voice-block .text-img .text-area p {
    font-size: 1.6rem;
  }
}
.past-voice-block .text-img .img {
  flex: none;
}
@media screen and (max-width: 767px) {
  .past-voice-block .text-img .img img {
    width: 100%;
    max-width: auto;
  }
}
.past-voice-btn{
  background-color: #F2F4F5;
  padding-bottom: 56px;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .past-voice-btn{
    padding-bottom: 15px;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.continuation {
  display: inline-block;
  width: 345px;
  background-color: #009fb9;
  padding: 15px 15px 15px 0;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: .3s;
}
.continuation::before,
.continuation::after{
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 15px;
  height: 10px;
  border-top: 2px solid white;
}
.continuation::before{
  transform: translate(-15%, -40%) rotate(120deg);
}
.continuation::after{
  transform: translate(-60%, 0%) rotate(60deg);
}
.continuation.open::before{
  transform: translate(-30%, -59%) rotate(135deg);
}
.continuation.open::after{
  transform: translate(-30%, 0%) rotate(45deg);
}


@media screen and (max-width: 767px) {
  .continuation {
    width: 325px;
    padding: 20px 10px;
    font-size: 1.6rem;
  }
}
.continuation:hover {
  background-color: #000;
}


/*---------------------
faq
---------------------*/
#faq {
  padding: 65px 0 132px;
  background: #B2E2EA;
}
@media screen and (max-width: 767px) {
  #faq {
    padding: 25px 0 40px;
  }
}
#faq .inner {
  max-width: 770px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #faq .inner {
    padding: 0 3vw;
  }
}
#faq .faq__block + .faq__block{
  margin-top: 63px;
}
@media screen and (max-width: 767px) {
  #faq .faq__block + .faq__block{
    margin-top: 43px;
  }
}
#faq .faq-list__item {
  background-color: #fff;
  padding: 25px 25px 20px;
}
#faq .faq-list__item + .faq-list__item{
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  #faq .faq-list__item {
    padding: 20px 10px 15px;
  }
}
#faq .faq-list__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #009FB9;
  line-height: 1.0;
  display: flex;
  align-items: center;
  padding-bottom: 21px;
  border-bottom: 1px solid #D8D7D7;
}
#faq .faq-list__title::before{
  content: "";
  display: inline-block;
  width: 54px;
  height: 54px;
  background: url(../images/icon_Q.png) no-repeat center / contain;
  margin-right: 23px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #faq .faq-list__title {
    font-size: 2.0rem;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #faq .faq-list__title::before {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
}
#faq .faq-list__text {
  font-size: 1.8rem;
  line-height: 1.44;
  font-weight: bold;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  #faq .faq-list__text {
    width: 100%;
    font-size: 1.5rem;
  }
}

.faq-list__text a{
  color: #158192;
  text-decoration: underline;
  transition: 0.3s;
}
.faq-list__text a:hover{
  color: #009FB9;
  text-decoration: none;
}
/* 20240417 marginの設定 */
.mbottom30 {
	margin-bottom: 30px;
}