@charset "UTF-8";
/* all */
:root {
  --color-black: #000;
  --color-white: #fff;
  --font-Poppins: "Poppins", sans-serif;
  --font-Noto: "Noto Sans JP", sans-serif;
  --box-shaow: #c9c9c969;
}

.Poppins {
  font-family: var(--font-Poppins);
}

.Noto {
  font-family: var(--font-Noto);
}

img {
  display: block;
  margin: 0 auto;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: var(--color-black);
  text-decoration: none;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.red {
  color: #d60000;
}

.small {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.big {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.bg-photo {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg-photo img {
  display: none;
}

.ws-fade {
  position: relative;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  z-index: 0;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}

.ws-fade.show {
  opacity: 1;
}

/* sample css */
.visible {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-transition: cubic-bezier(0.15, 1.36, 0.5, 1), -webkit-transform 0.4s ease;
  transition: cubic-bezier(0.15, 1.36, 0.5, 1), -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, cubic-bezier(0.15, 1.36, 0.5, 1);
  transition: transform 0.4s ease, cubic-bezier(0.15, 1.36, 0.5, 1), -webkit-transform 0.4s ease;
}
.visible.normalanimate {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
}

/* scroll */
.ws-goto-top {
  cursor: pointer;
  position: fixed;
  z-index: 20;
  margin: 0;
  padding: 0 0 2px;
  top: auto;
  bottom: 4px;
  left: auto;
  right: 52px;
  width: clamp(30px, 5vw, 30px);
  height: clamp(30px, 5vw, 30px);
  text-decoration: none;
  opacity: 0;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: scale(0.01, 0.01);
          transform: scale(0.01, 0.01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 1s;
  transition: 1s;
}

.ws-goto-top.ws-scroll-show {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  opacity: 1;
}

@media (hover: hover) {
  .ws-goto-top:hover {
    opacity: 0.5;
  }
}
@media (max-width: 980px) {
  .ws-goto-top {
    right: 20px;
    bottom: 20px;
  }
}
.min-menu {
  display: none;
}

@media (min-width: 980px) {
  .min-menu {
    display: block;
    position: fixed;
    bottom: 40px;
    right: 0;
    width: 140px;
    text-align: center;
    background-color: #FBCC6C;
    z-index: 999;
    font-weight: 999;
    padding: 10px 0;
    border-radius: 10px 0 0 10px;
    color: #000;
  }
  .min-menu img {
    width: 20px;
    margin-bottom: 4px;
  }
  .min-menu .gnavi__lists-a {
    pointer-events: none;
  }
  .min-menu a {
    display: block;
    padding: 4px;
  }
  .min-menu a:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.green {
  color: #07ab8e;
}

.more a {
  width: 100%;
  max-width: 300px;
  display: block;
  text-align: center;
  padding: clamp(15px, 10.679px + 1.2346vw, 25px) clamp(20px, 2.716px + 4.9383vw, 60px);
  white-space: nowrap;
  color: #fff;
  position: relative;
  border-radius: 50px;
  line-height: 1;
  font-size: 20px;
  font-size: clamp(16px, 14.2716px + 0.4938vw, 20px);
  font-family: var(--font-Noto);
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  overflow: hidden;
  z-index: 0;
  -webkit-box-shadow: 0 8px 16px rgba(42, 171, 159, 0.4);
          box-shadow: 0 8px 16px rgba(42, 171, 159, 0.4);
}
.more a:before {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(94.5deg, #1d8ea1, #1ea387);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
.more a svg .st0 {
  fill: #fff;
}
.more a .icon {
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  min-width: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.more a .icon svg {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.more a:hover {
  color: #07ab8e;
}
.more a:hover:before {
  opacity: 0;
}
.more a:hover .icon {
  right: 34px;
}
.more a:hover svg .st0 {
  fill: #07ab8e;
}

.toggle-with-zeb-icon {
  display: none;
}

#toggle-btn {
  padding: 20px;
  white-space: nowrap;
  width: 44px;
  height: 44px;
  background-color: #fff;
  color: #000;
  text-align: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  cursor: pointer;
  z-index: 103;
  display: none;
}
#toggle-btn .bar {
  position: relative;
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#toggle-btn .bar span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 44px;
  height: 6px;
  background: #000;
}
#toggle-btn .bar:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 44px;
  height: 6px;
  background: #000;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.1, 0.8, 0.35, 1);
          transition-timing-function: cubic-bezier(0.1, 0.8, 0.35, 1);
  top: 0px;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}
#toggle-btn .bar:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 44px;
  height: 6px;
  background: #000;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  -webkit-transition-timing-function: cubic-bezier(0.1, 0.8, 0.35, 1);
          transition-timing-function: cubic-bezier(0.1, 0.8, 0.35, 1);
  bottom: 0px;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

.nav-opened #toggle-btn {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.nav-opened #toggle-btn .bar span {
  opacity: 0;
}

.nav-opened #toggle-btn .bar:before {
  background-color: #000;
  -webkit-transform: rotate(45deg) translate(12px, 10px);
          transform: rotate(45deg) translate(12px, 10px);
}

.nav-opened #toggle-btn .bar:after {
  background-color: #000;
  -webkit-transform: rotate(-45deg) translate(16px, -16px);
          transform: rotate(-45deg) translate(16px, -16px);
}

.nav-opened .head .ghost-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* html */
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-weight: 400;
  margin: 0;
  padding: 0;
  width: 100%;
  color: var(--color-black);
  line-height: 1.6;
  opacity: 1;
  position: relative;
  background-image: url(../img/bg1.jpg), url(../img/bg2.png);
  background-repeat: no-repeat;
  background-position: 100% 69vh, 0% 139vh;
}

main {
  z-index: 1 !important;
}

.gomrj-box {
  overflow: hidden;
  background-color: #1a1a1a;
  text-align: center;
  color: #fff;
  font-size: clamp(12px, 11.1358px + 0.2469vw, 14px);
  font-family: var(--font-Noto);
  font-weight: 400;
  margin: 0;
  padding: 0;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gomrj-box h1 {
  font-weight: normal;
  font-size: 16px;
}

.wraper-content {
  position: relative;
}

.nowrap {
  display: inline-block;
}

.head {
  background-color: #fff;
  position: sticky;
  left: 0;
  top: -1px;
  z-index: 100;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.head .logo {
  padding: 24px 34px;
}
.head .logo a {
  display: block;
  width: 100%;
  width: 210px;
}
.head .ghost-nav {
  width: calc(100% - 210px);
}
.head .ghost-nav .wrap {
  width: 100%;
}
.head .ghost-nav .sp-hero {
  margin: 40px auto 0;
  width: 100%;
}
.head .ghost-nav .main_nav {
  width: 100%;
}
.head .ghost-nav .main_nav .gnavi__lists-a {
  pointer-events: none;
}
.head .ghost-nav .main_nav ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head .ghost-nav .main_nav ul li {
  position: relative;
  padding: 34px 20px;
  font-weight: 700;
  font-size: clamp(12px, 10.2716px + 0.4938vw, 16px);
}
.head .ghost-nav .main_nav ul li a {
  white-space: nowrap;
  padding: 0 24px;
  font-family: var(--font-Noto);
  display: block;
  color: #000;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.head .ghost-nav .main_nav ul li a:hover {
  text-decoration: none;
  color: #07ab8e;
}
.head .ghost-nav .main_nav ul li a.active {
  text-decoration: none;
  color: #07ab8e;
}
.head .ghost-nav .main_nav ul li a.el_estimate_link {
  position: relative;
}
.head .ghost-nav .main_nav ul li a.el_estimate_link .el_hosoku {
  position: absolute;
  top: 22px;
  left: 12px;
  font-size: 10px;
  color: #1d8ea1;
}
.head .ghost-nav .main_nav ul li .el_arrow_icon {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.head .ghost-nav .main_nav ul li .el_arrow_icon svg {
  fill: #1ea387;
}
.head .ghost-nav .main_nav ul > li.on .el_arrow_icon svg {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-animation: menuArrowOn 0.5s ease normal;
          animation: menuArrowOn 0.5s ease normal;
}
.head .ghost-nav .main_nav ul > li.leave .el_arrow_icon svg {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-animation: menuArrowLeave 0.5s ease normal;
          animation: menuArrowLeave 0.5s ease normal;
}
.head .ghost-nav .main_nav ul .dropdown__lists {
  display: none;
  width: 100%;
  position: absolute;
  top: 94px;
  left: 0;
  text-align: center;
}
.head .ghost-nav .main_nav ul .dropdown__lists li {
  padding: 0;
  background-color: #fff;
}
.head .ghost-nav .main_nav ul .dropdown__lists li a {
  padding: 14px 0;
  display: block;
}
.head .ghost-nav .main_nav ul .dropdown__lists li a:hover {
  background-color: #1ea387;
  color: #fff;
}
.head.show {
  -webkit-box-shadow: 0px 3px 6px var(--box-shaow);
          box-shadow: 0px 3px 6px var(--box-shaow);
}

@media (max-width: 1200px) {
  .head .ghost-nav {
    width: calc(100% - 210px);
  }
  .head .ghost-nav .main_nav ul li {
    padding: 34px 8px;
  }
}
@-webkit-keyframes menuArrowOn {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@keyframes menuArrowOn {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@-webkit-keyframes menuArrowLeave {
  0% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes menuArrowLeave {
  0% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.hero {
  overflow: hidden;
  width: 100%;
  height: 600px; /* 全体の高さを600pxに設定 */
  min-height: 720px;
  max-width: 1380px;
  padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 40px;
  position: relative;
  margin: 0 auto;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero .hero-inner {
  width: 40%;
}
.hero .hero-inner .zeb-icon {
  display: none;
}
.hero .hero-inner .zeb-icon img {
  width: 120px;
  margin-left: 0;
}
@media (min-width: 767px) {
  .hero .hero-inner .zeb-icon {
    display: block;
  }
}
.hero .hero-inner .title {
  font-size: clamp(28px, 18.6369px + 2.6752vw, 70px);
  font-weight: 700;
}
.hero .hero-inner .text {
  font-size: clamp(14px, 12.6624px + 0.3822vw, 20px);
  font-weight: 400;
  margin-top: clamp(10px, 5.5414px + 1.2739vw, 30px);
  line-height: 1.8;
}
.hero .hero-inner .more {
  margin-top: clamp(20px, 14.4268px + 1.5924vw, 45px);
}
.hero .hero-movie {
  position: relative;
  top: 0;
  left: 0;
  width: 54%;
  height: 500px;
  z-index: -1; /* 背景として表示する場合 */
}
.hero .hero-movie__video {
  width: 100%; /* 横幅を100%に設定 */
  height: 100%; /* 高さを親要素に合わせる */
  -o-object-fit: cover;
     object-fit: cover; /* 動画が親要素の領域全体をカバー */
  border-radius: 10px;
}

.sec-ttl-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.sec-ttl-sub span {
  padding: clamp(6px, 2.9565px + 0.8696vw, 12px) clamp(15px, 3.3333px + 3.3333vw, 38px);
  background-color: #fff;
  font-size: clamp(14px, 10.9565px + 0.8696vw, 20px);
  text-align: center;
  font-weight: 700;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08), 0 4px 20px 8px rgba(0, 16, 14, 0.03);
          box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08), 0 4px 20px 8px rgba(0, 16, 14, 0.03);
}
.sec-ttl-sub em {
  font-style: normal;
  font-size: 1.5em;
  font-family: var(--font-Poppins);
}

.sec-title {
  line-height: 1.3;
  margin-bottom: clamp(20px, 4.7826px + 4.3478vw, 50px);
  text-align: center;
  font-size: clamp(24px, 10.8116px + 3.7681vw, 50px);
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, color-stop(45%, #1d8da3), color-stop(55%, #1ea387));
  background: linear-gradient(to right, #1d8da3 45%, #1ea387 55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-title .en {
  display: inline-block;
  font-family: var(--font-Poppins);
}

.sec-p {
  text-align: center;
  font-size: clamp(14px, 10.9565px + 0.8696vw, 20px);
  font-weight: 700;
}
.sec-p .en {
  display: inline-block;
  font-family: var(--font-Poppins);
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
/*sec01*/
.sec01 {
  background-color: rgba(180, 211, 207, 0.3490196078);
  padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 20px;
}
.sec01 .cols-item {
  max-width: 1040px;
  margin: 0 auto;
}
.sec01 .cols-item .col {
  text-align: center;
}
.sec01 .cols-item .col .title {
  margin-top: 10px;
  font-size: clamp(14px, 8.9275px + 1.4493vw, 24px);
  font-weight: 700;
}

.sec01 .swiper-button-next,
.sec01 .swiper-button-prev,
.sec-news02 .swiper-button-next,
.sec-news02 .swiper-button-prev {
  color: #fff;
  background-color: #07ab8e;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(../img/right-w.svg);
  background-repeat: no-repeat;
  background-position: 54% center;
  background-size: 40%;
  display: none;
}
.sec01 .swiper-button-next:after,
.sec01 .swiper-button-prev:after,
.sec-news02 .swiper-button-next:after,
.sec-news02 .swiper-button-prev:after {
  display: none;
}

.sec01 .swiper-button-next,
.sec01 .swiper-button-prev {
  width: 60px;
  height: 60px;
}
.sec01 .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 10px;
}
.sec01 .swiper-button-next {
  right: 10px;
}

.sec-news02 .swiper-button-next,
.sec-news02 .swiper-button-prev {
  width: 40px;
  height: 40px;
}
.sec-news02 .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 0;
}
.sec-news02 .swiper-button-next {
  right: 0;
}

@media (max-width: 767px) {
  .sec01 {
    padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 0px;
  }
  .sec01 .swiper-button-next,
  .sec01 .swiper-button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sec-news02 .swiper-button-next,
  .sec-news02 .swiper-button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*sec02*/
.sec02 {
  background-image: url(../img/bg3.png), url(../img/bg4.png);
  background-repeat: no-repeat;
  background-position: 16% 27%, 100% 100%;
  padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 20px;
}
.sec02 .el_sec02_img {
  max-width: 80%;
}
.sec02 .sec02-slider {
  max-width: 1040px;
  margin: 0 auto 0;
  padding-bottom: 60px;
}
.sec02 .sec02-slider > .swiper-wrapper > .swiper-slide {
  opacity: 0 !important;
}
.sec02 .sec02-slider > .swiper-wrapper > .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.sec02 .cols-box {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 12px;
  margin: 10px;
  -webkit-box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08);
          box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08);
}
.sec02 .cols-box .left {
  padding: 40px;
  width: 50%;
}
.sec02 .cols-box .left figure {
  overflow: hidden;
  border-radius: 12px;
}
.sec02 .cols-box .left .title {
  margin-top: 20px;
  font-size: clamp(16px, 11.942px + 1.1594vw, 24px);
  font-weight: 700;
  line-height: 1.2;
}
.sec02 .cols-box .left .name {
  margin-top: 20px;
  font-size: clamp(14px, 11.971px + 0.5797vw, 18px);
  line-height: 1.2;
  font-weight: 400;
}
.sec02 .cols-box .left .tag {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sec02 .cols-box .left .tag span {
  border-radius: 8px;
  padding: 2px 8px;
  color: #07ab8e;
  font-size: clamp(12px, 9.971px + 0.5797vw, 16px);
  display: inline-block;
  border: 1px solid #e5e5e5;
  margin: 10px 10px 0 0;
}
.sec02 .cols-box .right {
  width: 50%;
  padding: 40px 30px;
  text-align: left;
}
.sec02 .cols-box .right .col {
  margin-bottom: 30px;
}
.sec02 .cols-box .right .col:last-child {
  margin-bottom: 0;
}
.sec02 .cols-box .right .ttl-sub {
  margin-bottom: 10px;
  font-size: clamp(14px, 8.9275px + 1.4493vw, 24px);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec02 .cols-box .right .ttl-sub .icon {
  margin-right: 10px;
  width: 26px;
  min-width: 26px;
}
.sec02 .cols-box .right p {
  font-size: clamp(12px, 9.971px + 0.5797vw, 16px);
  margin-bottom: 10px;
}
.sec02 .cols-box .right p:last-child {
  margin-bottom: 0;
}
.sec02 .swiper-pagination {
  bottom: 0px !important;
}
.sec02 .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  margin: 0 15px !important;
  width: 20px;
  height: 20px;
  border: 1px solid #07ab8e;
}
.sec02 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #07ab8e;
}

/*sec03*/
.sec03 {
  background-image: url(../img/bg5.png);
  background-repeat: no-repeat;
  background-position: center 0;
  background-color: rgba(180, 211, 207, 0.3490196078);
  padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 20px;
}
.sec03 .sec-title {
  margin-bottom: clamp(10px, 4.9275px + 1.4493vw, 20px);
}
.sec03 .cols-item {
  max-width: 1040px;
  margin: clamp(20px, 4.7826px + 4.3478vw, 50px) auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(20px, 14.9275px + 1.4493vw, 30px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sec03 .cols-item .col {
  -webkit-box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08);
          box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08);
  position: relative;
  padding: clamp(20px, 4.7826px + 4.3478vw, 50px) 10px clamp(20px, 9.8551px + 2.8986vw, 40px) 10px;
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff;
  width: 33.333333%;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sec03 .cols-item .col a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.sec03 .cols-item .col::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(94.5deg, #1d8ea1, #1ea387);
}
.sec03 .cols-item .col::after {
  opacity: 0;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(94.5deg, #1d8ea1, #1ea387);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
.sec03 .cols-item .col .title {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  font-size: clamp(16px, 11.942px + 1.1594vw, 24px);
  font-weight: 700;
}
.sec03 .cols-item .col .title span.green {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: var(--font-Poppins);
  color: #07ab8e;
}
.sec03 .cols-item .col .title span.en {
  font-family: var(--font-Poppins);
}
.sec03 .cols-item .col .title em {
  margin: 0 5px;
  font-size: 1.67em;
  font-style: normal;
}
.sec03 .cols-item .col p {
  position: relative;
  z-index: 2;
  margin-bottom: 8px;
  font-size: clamp(12px, 9.971px + 0.5797vw, 16px);
}
.sec03 .cols-item .col p:last-child {
  margin-bottom: 0;
}
.sec03 .cols-item .col p span.en {
  font-family: var(--font-Poppins);
}
.sec03 .cols-item .col p span.green {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #07ab8e;
}
.sec03 .cols-item .col .gray {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #808080;
  font-size: clamp(12px, 10.9855px + 0.2899vw, 14px);
}
.sec03 .cols-item .col:hover {
  color: #fff;
}
.sec03 .cols-item .col:hover::after {
  opacity: 1;
}
.sec03 .cols-item .col:hover .title span.green {
  color: #fff;
}
.sec03 .cols-item .col:hover p span.green {
  color: #fff;
}
.sec03 .cols-item .col:hover .gray {
  color: #fff;
}
.sec03 .cols-item .col-2 {
  width: 33.333333%;
}
.sec03 .cols-item .col-2 .col {
  width: 100%;
  padding: 24px 10px 14px 10px;
  margin-bottom: 18px;
  position: relative;
}
.sec03 .cols-item .col-2 .col:last-child {
  margin-bottom: 0;
}
.sec03 .cols-item .col-2 .col .title {
  margin-bottom: 0;
}
.sec03 .cols-item-bottom {
  -webkit-box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08);
          box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08);
  background-color: #fff;
  max-width: 1040px;
  margin: 40px auto 0;
  border-radius: 12px;
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.sec03 .cols-item-bottom:before {
  display: block;
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  margin-left: -17px;
  width: 34px;
  height: 29px;
  background-image: url(../img/hear.png);
  background-repeat: no-repeat;
  background-position: center;
}
.sec03 .cols-item-bottom .title {
  font-size: clamp(16px, 8.8986px + 2.029vw, 30px);
  font-family: var(--font-Poppins);
  font-weight: 700;
}
.sec03 .cols-item-bottom p {
  font-size: clamp(12px, 9.971px + 0.5797vw, 16px);
}

/*sec04*/
.sec04 {
  overflow: hidden;
  padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 20px;
  background-color: rgba(180, 211, 207, 0.3490196078);
}
.sec04 .sec-title {
  margin-bottom: clamp(10px, 4.9275px + 1.4493vw, 20px);
}
.sec04 .sec04-slider {
  width: 500px;
  overflow: visible;
  margin: clamp(20px, 4.7826px + 4.3478vw, 50px) auto 0;
  margin: 50px auto 0;
}
.sec04 .more {
  margin-top: clamp(20px, -0.2899px + 5.7971vw, 60px);
  margin-top: 60px;
}
.sec04 .more a {
  margin: 0 auto;
  background-color: #fff;
  color: #07ab8e;
}
.sec04 .more a svg .st0 {
  fill: #07ab8e;
}
.sec04 .more a::before {
  opacity: 0;
}
.sec04 .more a:hover {
  color: #fff;
  background-color: #07ab8e;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.sec04 .more a:hover svg .st0 {
  fill: #fff;
}

.sec04-slider .swiper-button-next,
.sec04-slider .swiper-button-prev {
  color: #fff;
  background-color: #07ab8e;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url(../img/right-w.svg);
  background-repeat: no-repeat;
  background-position: 54% center;
  background-size: 40%;
}
.sec04-slider .swiper-button-next:after,
.sec04-slider .swiper-button-prev:after {
  display: none;
}
.sec04-slider .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: -30px;
}
.sec04-slider .swiper-button-next {
  right: -30px;
}
.sec04-slider > .swiper-wrapper > .swiper-slide {
  width: 100% !important;
  border-radius: 12px;
  height: auto !important;
  -webkit-box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08), 0 4px 20px 8px rgba(0, 16, 14, 0.03);
          box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08), 0 4px 20px 8px rgba(0, 16, 14, 0.03);
  background-color: #fff;
}
.sec04-slider .cols-box {
  padding: clamp(20px, 14.9275px + 1.4493vw, 30px) 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sec04-slider .cols-box figure {
  width: 80px;
  min-width: 80px;
  height: 80px;
  margin-right: 15px;
  overflow: hidden;
  border-radius: 50%;
}
.sec04-slider .cols-box .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec04-slider .cols-box .meta .name {
  margin-right: 10px;
  font-weight: 700;
  font-size: clamp(16px, 14.2166px + 0.5096vw, 24px);
}
.sec04-slider .cols-box .meta .department {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec04-slider .cols-box .meta .department span {
  font-size: clamp(12px, 9.971px + 0.5797vw, 14px);
  background-color: #07ab8e;
  color: #fff;
  border-radius: 8px;
  padding: 2px 8px;
  display: inline-block;
}
.sec04-slider .cols-box .data {
  margin-bottom: clamp(10px, 4.9275px + 1.4493vw, 20px);
  color: #808080;
  font-size: clamp(12px, 10.9855px + 0.2899vw, 14px);
}
.sec04-slider .cols-box p {
  font-size: clamp(12px, 9.971px + 0.5797vw, 16px);
}

@-webkit-keyframes mymove {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes mymove {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
/*sec05*/
.sec05 {
  background-image: url(../img/bg6.png), url(../img/bg7.png);
  background-repeat: no-repeat;
  background-position: 0% 0%, 100% 100%;
  padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 20px;
  position: relative;
}
.sec05::after {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(94.5deg, #1d8ea1, #1ea387);
}
.sec05 .sec-title {
  margin-bottom: clamp(10px, 4.9275px + 1.4493vw, 20px);
  background: transparent;
  color: #fff;
  -webkit-text-fill-color: rgb(255, 255, 255);
}
.sec05 .sec-p {
  color: #fff;
}
.sec05 .cols-item {
  max-width: 1160px;
  margin: clamp(20px, 4.7826px + 4.3478vw, 50px) auto 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.sec05 .cols-item figure img {
  width: 100%;
  border-radius: 12px;
}
.sec05 .cols-item .text {
  color: #fff;
}
.sec05 .cols-item .text .ttl {
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
  font-size: clamp(16px, 13.971px + 0.5797vw, 20px);
}
.sec05 .cols-item .text p {
  font-size: clamp(12px, 9.971px + 0.5797vw, 16px);
  margin-bottom: 10px;
}
.sec05 .cols-item .text p:last-child {
  margin-bottom: 0;
}
.sec05 .cols-item .text .gray {
  opacity: 0.5;
}
.sec05 .cols-item .from-content {
  grid-area: 1/2/3;
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08), 0 4px 20px 8px rgba(0, 16, 14, 0.03);
          box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08), 0 4px 20px 8px rgba(0, 16, 14, 0.03);
  padding: 40px;
}
.sec05 .cols-item .from-wrap {
  display: grid;
  gap: 24px;
}
.sec05 .cols-item .from-wrap p {
  font-size: clamp(12px, 11.1358px + 0.2469vw, 14px);
}
.sec05 .cols-item .from-wrap .liybox {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  display: grid;
  grid-template-columns: 1fr 480px;
}
.sec05 .cols-item .from-wrap .liyname {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(12px, 10.2716px + 0.4938vw, 16px);
}
.sec05 .cols-item .from-wrap .liyname::before {
  width: 40px;
  min-width: 40px;
  white-space: nowrap;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 20px;
  line-height: 1;
  content: "";
  margin-right: 10px;
}
.sec05 .cols-item .from-wrap .liyname > div span {
  font-size: clamp(12px, 11.1358px + 0.2469vw, 14px);
  display: block;
  font-weight: 400;
  color: #808080;
}
.sec05 .cols-item .from-wrap .red:before {
  background: #fb0000;
  border-radius: 2px;
  color: #fff;
  content: "必須";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 400;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
  font-style: normal;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20px;
  line-height: 1;
  padding: 3px;
}
.sec05 .cols-item .from-wrap .liyr2 {
  display: grid;
  gap: 0 30px;
  grid-template-columns: 1fr 1fr;
}
.sec05 .cols-item .from-wrap .liyr2 .liyr2-i p {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
}
.sec05 .cols-item .from-wrap .liyr2i {
  display: grid;
  gap: 0 10px;
  grid-template-columns: 1fr 1fr;
}
.sec05 .cols-item .from-wrap .liyrcheck {
  display: grid;
  gap: 5px 10px;
  grid-template-columns: 1fr 1fr 1fr;
}
.sec05 .cols-item .from-wrap .liyrcheck label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px 6px;
}
.sec05 .cols-item .from-wrap .liyr1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px 6px;
}
.sec05 .cols-item .from-wrap .liyr1 > input {
  margin-top: 2px;
}
.sec05 .cols-item .from-wrap .liyr1 a {
  color: #2aab9f;
  text-decoration-line: underline;
}
.sec05 .cols-item .from-wrap input[type=text],
.sec05 .cols-item .from-wrap input[type=tel] {
  -webkit-appearance: button;
  border-radius: 0;
  -webkit-appearance: none;
  border: 1px solid #f5f5f5;
  background: #f5f5f5;
  border-radius: 4px;
  color: rgba(0, 16, 14, 0.96);
  font-size: 14px;
  height: 40px;
  line-height: 1.4;
  padding: 0 20px;
  width: 100%;
}
.sec05 .cols-item .from-wrap input[type=text]:focus,
.sec05 .cols-item .from-wrap input[type=tel]:focus {
  border: 1px solid #12a0a0;
  caret-color: #12a0a0;
  outline: none;
  padding: 0 20px;
}
.sec05 .cols-item .from-wrap input[type=text]::-webkit-input-placeholder, .sec05 .cols-item .from-wrap input[type=tel]::-webkit-input-placeholder {
  color: #cccccc;
}
.sec05 .cols-item .from-wrap input[type=text]::-moz-placeholder, .sec05 .cols-item .from-wrap input[type=tel]::-moz-placeholder {
  color: #cccccc;
}
.sec05 .cols-item .from-wrap input[type=text]:-ms-input-placeholder, .sec05 .cols-item .from-wrap input[type=tel]:-ms-input-placeholder {
  color: #cccccc;
}
.sec05 .cols-item .from-wrap input[type=text]::-ms-input-placeholder, .sec05 .cols-item .from-wrap input[type=tel]::-ms-input-placeholder {
  color: #cccccc;
}
.sec05 .cols-item .from-wrap input[type=text]::placeholder,
.sec05 .cols-item .from-wrap input[type=tel]::placeholder {
  color: #cccccc;
}
.sec05 .cols-item .from-wrap select {
  border: 1px solid #f5f5f5;
  background: #f5f5f5;
  border-radius: 4px;
  color: rgba(0, 16, 14, 0.96);
  font-size: 14px;
  height: 40px;
  line-height: 1.4;
  padding: 0 30px 0 20px;
}
.sec05 .cols-item .btn {
  margin-top: clamp(20px, 9.8551px + 2.8986vw, 20px);
  position: relative;
}
.sec05 .cols-item .btn .btn-f {
  max-width: 408px;
  width: 100%;
  margin: 0 auto 0;
  margin-top: -3px;
  position: relative;
  z-index: 1;
}
.sec05 .cols-item .btn .btn-f img {
  -webkit-animation: mymove 5s infinite;
          animation: mymove 5s infinite;
}
.sec05 .cols-item .type-submit {
  position: relative;
  display: block;
  cursor: pointer;
  font-weight: 700;
  margin: 0px auto 2px;
  border: none;
  width: 100%;
  max-width: 300px;
  display: block;
  text-align: center;
  padding: clamp(15px, 10.679px + 1.2346vw, 25px) clamp(20px, 2.716px + 4.9383vw, 60px);
  white-space: nowrap;
  color: #fff;
  position: relative;
  border-radius: 50px;
  line-height: 1;
  font-size: clamp(16px, 14.2716px + 0.4938vw, 20px);
  font-family: var(--font-Noto);
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  overflow: hidden;
  z-index: 0;
  -webkit-box-shadow: 0 8px 16px rgba(42, 171, 159, 0.4);
          box-shadow: 0 8px 16px rgba(42, 171, 159, 0.4);
}
.sec05 .cols-item .type-submit:before {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(94.5deg, #1d8ea1, #1ea387);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
.sec05 .cols-item .type-submit::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/right-w.svg);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sec05 .cols-item .type-submit:hover {
  color: #07ab8e;
}
.sec05 .cols-item .type-submit:hover:before {
  opacity: 0;
}
.sec05 .cols-item .type-submit:hover::after {
  right: 34px;
}
.sec05 .cols-item .type-submit:hover::after {
  background-image: url(../img/right-g.svg);
}

/*sec06*/
.sec06 {
  overflow: hidden;
  padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 20px;
  background-image: url(../img/bg5.png);
  background-repeat: no-repeat;
  background-position: right 0;
  background-color: rgba(180, 211, 207, 0.3490196078);
}
.sec06 .sec-title {
  margin-bottom: clamp(10px, 4.9275px + 1.4493vw, 20px);
}
.sec06 .sec06_list {
  max-width: 1040px;
  margin: 0 auto;
  padding-top: 40px;
}
.sec06 .sec06_list_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.sec06 .sec06_list_ul li {
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08);
          box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08);
  padding: clamp(20px, 14.9275px + 1.4493vw, 30px) 30px;
  position: relative;
  overflow: hidden;
}
.sec06 .sec06_list_ul li::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(94.5deg, #1d8ea1, #1ea387);
}
.sec06 .sec-06_img-box {
  margin-bottom: clamp(20px, 14.9275px + 1.4493vw, 30px);
}
.sec06 .sec-06_comment {
  font-size: clamp(12px, 9.971px + 0.5797vw, 16px);
}

@media (max-width: 767px) {
  .sec06 .sec06_list_ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sec06 .sec06_list_ul li {
    width: 100%;
  }
}
footer {
  background-color: #fff;
}

.footer-menu {
  max-width: 1200px;
  padding: 0 20px;
  margin: 80px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-menu .footer-menu-logo {
  width: 400px;
}
.footer-menu .footer-menu-logo .logo-img {
  width: 200px;
  margin-left: 0;
}
.footer-menu .footer-menu-logo p {
  margin-top: 20px;
  color: #808080;
  line-height: 2;
}
.footer-menu .footer-menu-logo .zeb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
}
.footer-menu .footer-menu-logo .zeb img {
  width: 65px;
  height: 65px;
}
.footer-menu .footer-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 40px;
}
.footer-menu .footer-menu_ul li {
  padding: 8px 0;
  border-right: 1px solid #fff;
  font-weight: bold;
}
.footer-menu .footer-menu_ul li a {
  color: var(--color-black);
}
.footer-menu .footer-menu_ul li a:hover {
  color: #1ea387;
}
.footer-menu .footer-menu_ul-nest li a {
  color: #808080;
  font-size: 0.8rem;
}
.footer-menu .footer-menu_ul-nest li a::before {
  content: "-";
  padding-right: 10px;
}
.footer-menu .footer-menu_ul-nest li:not(:first-child) {
  padding: 4px 0;
}

footer.blog .footer-menu {
  margin: 0 auto 80px;
  padding-top: 80px;
}

@media (max-width: 1100px) {
  .footer-menu {
    display: block;
  }
  .footer-menu .footer-menu-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .footer-menu .footer-menu-logo .logo-img {
    margin-left: auto;
  }
  .footer-menu .footer-menu-logo img {
    width: 200px;
  }
  .footer-menu .footer-menu-logo .zeb {
    -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;
  }
  .footer-menu .footer-menu-logo .zeb img {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .footer-menu .footer-menu-logo .zeb .zeb-text {
    margin-top: 0;
    width: 200px;
    text-align: center;
  }
  .footer-menu .footer-menu-list {
    display: block;
  }
  .footer-menu .footer-menu-list .footer-menu_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer-menu .footer-menu-list .footer-menu_ul a {
    padding-right: 15px;
  }
  .footer-menu .footer-menu_ul-nest li a::before {
    content: "";
    padding-right: 0;
  }
  .footer-menu .footer-menu_ul-nest li:not(:first-child) {
    padding: 8px 0;
  }
  .footer-menu .footer-menu_ul-nest li:first-child {
    padding-right: 15px;
  }
}
.copy {
  background-color: #1a1a1a;
  padding: 20px;
  color: #fff;
  text-align: center;
  font-size: clamp(12px, 10.9855px + 0.2899vw, 14px);
  font-family: var(--font-Poppins);
  font-weight: 400;
}

@media (min-width: 767px) {
  .sec01 .cols-item {
    -webkit-transform: none !important;
            transform: none !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: clamp(20px, 1.2319px + 2.3623vw, 57px) !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .sec01 .cols-item .col {
    width: 33.333333% !important;
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 1 !important;
    -ms-flex-negative: inherit !important;
        flex-shrink: inherit !important;
  }
}
@media (max-height: 1200px) {
  .head .ghost-nav .main_nav ul li a {
    padding: 0 10px;
  }
}
@media (max-width: 980px) {
  .head .ghost-nav {
    width: 100%;
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    z-index: 101;
    background-color: #fff;
    -webkit-transition: 0.35s linear;
    transition: 0.35s linear;
    font-weight: 400;
    font-style: normal;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    padding: 50px 20px;
    border-radius: 0px 0 10px 10px;
  }
  .ghost-nav .wrap {
    padding: 100px 20px 20px;
  }
  .head .ghost-nav .main_nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
  }
  .head .ghost-nav .main_nav ul li {
    width: 100%;
    padding: 0;
  }
  .head .ghost-nav .main_nav ul li a {
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #07ab8e;
  }
  .head .ghost-nav .main_nav ul li a.el_estimate_link .el_hosoku {
    position: static;
  }
  .head .ghost-nav .main_nav ul li .dropdown__lists {
    display: block;
    position: relative;
    top: 0;
    text-align: left;
    width: 90%;
    margin-left: 10%;
  }
  .head .ghost-nav .main_nav ul li .dropdown__lists a {
    padding: 10px 0;
  }
  .head .ghost-nav .main_nav ul li .el_arrow_icon {
    display: none;
  }
  .head .logo {
    padding: 14px 20px;
  }
  .head .logo a {
    width: 172px;
  }
  .toggle-with-zeb-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .sp-zeb-icon {
    display: inline-block;
  }
  .sp-zeb-icon img {
    width: 40px;
    height: 40px;
  }
  #toggle-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 14px 20px;
    padding-left: 0;
    width: 36px;
    height: 44px;
  }
  #toggle-btn .bar {
    width: 36px;
    height: 30px;
  }
  #toggle-btn .bar span {
    width: 36px;
    height: 4px;
  }
  #toggle-btn .bar:before {
    width: 36px;
    height: 4px;
  }
  #toggle-btn .bar::after {
    width: 36px;
    height: 4px;
  }
  .nav-opened #toggle-btn .bar:before {
    -webkit-transform: rotate(45deg) translate(4px, 6px);
            transform: rotate(45deg) translate(4px, 6px);
  }
  .nav-opened #toggle-btn .bar:after {
    -webkit-transform: rotate(-45deg) translate(12px, -14px);
            transform: rotate(-45deg) translate(12px, -14px);
  }
  .sec02 .cols-box .left {
    padding: 40px 0px 40px 40px;
  }
  .sec05 .cols-item {
    grid-template: auto 1fr/1fr 52%;
  }
  .sec05 .cols-item .from-content {
    padding: 20px;
  }
  .sec05 .cols-item .from-wrap .liybox {
    display: block;
  }
  .sec05 .cols-item .from-wrap .liyname {
    margin-bottom: 6px;
  }
  .sec05 .cols-item .from-wrap .liyr2 {
    gap: 0 10px;
  }
  .sec05 .cols-item .from-wrap .liyname:not(.red)::before {
    display: none;
  }
  .sec05 .cols-item .from-wrap .liyname > div span {
    display: inline;
  }
}
@-webkit-keyframes gomrje0 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
}
@keyframes gomrje0 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
}
@-webkit-keyframes gomrje1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
}
@keyframes gomrje1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
}
@media (max-width: 767px) {
  .sp {
    display: block;
  }
  .gomrj-box {
    height: auto;
    padding: 10px 20px;
  }
  .gomrj-box .gomrj-i {
    white-space: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-animation: gomrje0 10s linear 3s forwards, gomrje1 15s linear 15s infinite;
            animation: gomrje0 10s linear 3s forwards, gomrje1 15s linear 15s infinite;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 16px;
    margin-left: 40px;
  }
  .ghost-nav .wrap {
    padding: 0px;
  }
  .more a {
    margin: 0 auto;
    max-width: 220px;
  }
  .more a .icon {
    right: 20px;
  }
  .more a:hover .icon {
    right: 14px;
  }
  .hero {
    padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: calc(clamp(40px, 9.5652px + 8.6957vw, 100px) + env(safe-area-inset-bottom));
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    height: auto;
    min-height: auto;
  }
  .hero .hero-inner {
    width: 100%;
    min-height: auto;
  }
  .hero .hero-inner .title {
    text-align: center;
  }
  .hero .hero-inner .text {
    text-align: center;
  }
  .hero .hero-movie {
    display: none;
  }
  .sec01 .cols-item .col figure {
    width: 80%;
    margin: 0 auto;
  }
  .sec02 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 10px !important;
    width: 16px;
    height: 16px;
  }
  .sec02 .sec02-slider {
    padding-bottom: 40px;
  }
  .sec02 .cols-box {
    display: block;
  }
  .sec02 .cols-box .left {
    padding: 20px;
    width: 100%;
  }
  .sec02 .cols-box .left figure {
    display: none;
  }
  .sec02 .cols-box .left .title {
    margin-top: 0px;
  }
  .sec02 .cols-box .left::after {
    content: "";
    display: block;
    width: 100%;
    margin: 20px auto 0;
    border-bottom: 1px solid #e6e6e6;
  }
  .sec02 .cols-box .right {
    width: 100%;
    padding: 0 20px 20px;
  }
  .sec02 .cols-box .right .col {
    margin-bottom: 20px;
  }
  .sec02 .cols-box .right .ttl-sub {
    margin-bottom: 5px;
  }
  .sec02 .cols-box .right .ttl-sub .icon {
    display: none;
  }
  .sec03 .cols-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sec03 .cols-item .col {
    width: 100%;
  }
  .sec03 .cols-item .col-2 {
    width: 100%;
  }
  .sec04 .sec04-slider {
    width: 100%;
    max-width: 500px;
  }
  .sec04 .sec04-slider .swiper-button-next,
  .sec04 .sec04-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .sec04 .sec04-slider .swiper-button-next {
    right: -10px;
  }
  .sec04 .sec04-slider .swiper-button-prev {
    left: -10px;
  }
  .sec05 .cols-item {
    display: block;
  }
  .sec05 .cols-item .text .ttl {
    margin-top: 20px;
  }
  .sec05 .cols-item .from-wrap .liyrcheck {
    font-size: clamp(10px, 8.3213px + 0.4796vw, 12px);
  }
  .sec05 .cols-item .from-content {
    margin-top: 40px;
  }
  .sec05 .cols-item .type-submit::after {
    right: 20px;
  }
  .sec05 .cols-item .type-submit {
    max-width: 220px;
  }
  .sec05 .cols-item .type-submit:hover:after {
    right: 14px;
  }
}
@media (max-width: 550px) {
  .hero {
    height: 300px;
    padding-top: 0;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  /* iPhone 5 */
}
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
  /* iPhone 6/7/8 */
}
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) {
  /* iPhone 6+/7+/8+ */
}
/*sec07*/
.sec07 {
  background-image: url(../img/bg3.png), url(../img/bg4.png);
  background-repeat: no-repeat;
  background-position: 16% 27%, 100% 100%;
  padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 20px;
}

/*sec08*/
.sec08 {
  background-image: url(../img/bg5.png);
  background-repeat: no-repeat;
  background-position: center 0;
  background-color: rgba(180, 211, 207, 0.3490196078);
  padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 20px;
}
.sec08 .sec-title {
  margin-bottom: clamp(10px, 4.9275px + 1.4493vw, 20px);
}
.sec08 .sec08-flex {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 20px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sec08 .sec08-flex .sec08-flexbox {
  width: calc(33% - 40px);
  text-align: center;
  background-color: #fff;
}
.sec08 .sec08-flex .sec08-flexbox .sec08-flexbox-img {
  padding: 10px 40px;
  border: 2px solid #fff;
  border-bottom: none;
  background-color: #fff;
}
.sec08 .sec08-flex .sec08-flexbox .sec08-flexbox-title {
  background-color: #1D8DA3;
  color: #fff;
  padding: 10px 0;
  font-size: clamp(14px, 4.9275px + 1.4493vw, 20px);
}
.sec08 .sec08-flex .sec08-flexbox a:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .sec08 .sec08-flex {
    gap: 20px;
  }
  .sec08 .sec08-flex .sec08-flexbox {
    width: calc(50% - 10px);
  }
  .sec08 .sec08-flex .sec08-flexbox .sec08-flexbox-img {
    padding: 10px 0;
  }
}
.sec09 {
  background-image: url(../img/bg5.png);
  background-repeat: no-repeat;
  background-position: center 0;
  background-color: rgba(180, 211, 207, 0.3490196078);
  padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 20px;
}
.sec09 .examination-pc {
  display: block;
}
.sec09 .examination-sp {
  display: none;
}
.sec09 .more {
  text-align: center;
}
.sec09 .more a {
  display: inline-block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.sec09 .examination-box-02 {
  display: none;
}

@media (max-width: 900px) {
  .sec09 .examination-pc {
    display: none;
  }
  .sec09 .examination-sp {
    display: block;
  }
}
.examination-box {
  max-width: 1000px;
  padding: 20px;
  margin: 0 auto;
}
.examination-box .examination-img {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px 30px;
  position: relative;
}
.examination-box .examination-img .examination-img-span {
  position: absolute;
  background-color: #fff;
  padding: 7px 8px 8px;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08), 0 4px 20px 8px rgba(0, 16, 14, 0.03);
          box-shadow: 0 4px 10px -2px rgba(0, 16, 14, 0.08), 0 4px 20px 8px rgba(0, 16, 14, 0.03);
  display: inline-block;
  font-weight: bold;
  font-size: 10px;
}
.examination-box .examination-img .examination-img-span li:first-child {
  margin-bottom: 8px;
}
.examination-box .examination-img .examination-img-span.fast ::after,
.examination-box .examination-img .examination-img-span.slow ::after {
  position: absolute;
  top: -10px;
  left: -5px;
  border-radius: 10px;
  font-size: 10px;
  color: #fff;
  padding: 1px;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 1.8;
}
.examination-box .examination-img .examination-img-span.fast {
  background-color: #CFE9FF;
}
.examination-box .examination-img .examination-img-span.fast ::after {
  content: "早";
  background-color: #42A3F2;
}
.examination-box .examination-img .examination-img-span.slow ::after {
  content: "遅";
  background-color: #EB7C7C;
}
.examination-box .examination-text-span {
  background-color: #1D8DA3;
  color: #fff;
  border-radius: 2px;
  padding: 2px 10px 3px;
  margin-right: 10px;
  font-size: 10px;
}
.examination-box .text-red {
  color: #FF0206;
}
.examination-box .text-fast,
.examination-box .text-slow {
  border-radius: 10px;
  font-size: 10px;
  color: #fff;
  padding: 1px;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 1.6;
  display: block;
}
.examination-box .text-fast {
  background-color: #42A3F2;
}
.examination-box .text-slow {
  background-color: #EB7C7C;
}

.examination-box-02 .examination-img {
  background-color: #fff;
}

.examination-text {
  background-color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  width: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.examination-text table {
  border: none;
}
.examination-text table th, .examination-text table td {
  border: none;
  padding: 2px 0;
}
.examination-text table th {
  text-align: center;
  text-align: -webkit-center;
}

@media (max-width: 900px) {
  .examination-box .examination-img {
    padding: 0;
  }
  .examination-box-02 .examination-img {
    padding: 20px 0;
  }
}
@media (max-width: 780px) {
  .examination-text {
    position: relative;
    margin-bottom: 20px;
  }
}
.examination-img-span-0 {
  top: 3%;
  right: 0%;
}

.examination-img-span-1 {
  top: 13%;
  right: 10%;
}

.examination-img-span-2 {
  top: 12%;
  right: 24%;
}

.examination-img-span-3 {
  top: 24%;
  right: -3%;
}

.examination-img-span-4 {
  top: 30%;
  right: 24%;
}

.examination-img-span-5 {
  top: 35%;
  right: 3%;
}

.examination-img-span-6 {
  top: 46%;
  right: 7%;
}

.examination-img-span-7 {
  top: 44%;
  right: 34%;
}

.examination-img-span-8 {
  top: 58%;
  right: 3%;
}

.examination-img-span-9 {
  top: 71%;
  right: 4%;
}

.examination-img-span-10 {
  top: 66%;
  right: 17%;
}

.examination-img-span-11 {
  top: 75%;
  right: 21%;
}

.examination-img-span-12 {
  top: 56%;
  right: 46%;
}

.examination-img-span-13 {
  top: 60%;
  right: 63%;
}

.examination-img-span-14 {
  top: 56%;
  right: 80%;
}

.examination-img-span-15 {
  top: 83%;
  right: 38%;
}

.examination-img-span-16 {
  top: 82%;
  right: 54%;
}

.examination-img-span-17 {
  top: 72%;
  right: 88%;
}

.examination-img-span-18 {
  top: 91%;
  right: 74%;
}

.examination-img-span-19 {
  top: 90%;
  left: -2%;
}

.sec-news {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px clamp(40px, 9.5652px + 8.6957vw, 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.sec-news .sec-news-title {
  width: 300px;
}
.sec-news .sec-news-title h2 {
  font-size: clamp(24px, 10.8116px + 3.7681vw, 50px);
  margin-bottom: 20px;
}
.sec-news .sec-news-box {
  width: calc(100% - 300px);
}
.sec-news .sec-news-box li {
  padding: 20px 20px 20px 0;
  border-bottom: 1px solid #cccccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.sec-news .sec-news-box li::after {
  content: url(../img/right-icon02.png);
  position: absolute;
  right: 0;
  padding-top: 5px;
}
.sec-news .sec-news-box li a {
  color: #1D8DA3;
  text-decoration: underline;
}
.sec-news .sec-news-box li .sec-news-box-date {
  text-wrap: nowrap;
}
.sec-news .sec-news-title-link {
  position: absolute;
  top: 150px;
}
.sec-news .sec-news-title-link a {
  color: #1D8DA3;
  font-weight: bold;
}
.sec-news .sec-news-title-link a img {
  display: inline;
  padding-left: 5px;
}

@media (max-width: 767px) {
  .sec-news {
    display: block;
    margin-bottom: 20px;
  }
  .sec-news .sec-news-title {
    width: 100%;
  }
  .sec-news .sec-news-box {
    width: 100%;
  }
  .sec-news .sec-news-title-link {
    bottom: 10px;
    top: auto;
    right: 20px;
  }
}
.sec-news02 {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 10px clamp(40px, 9.5652px + 8.6957vw, 100px);
}
.sec-news02 .sec-news02-box ul {
  margin: 0 auto 40px;
}
.sec-news02 .sec-news02-box ul li {
  padding: 0 20px;
}
.sec-news02 .sec-news02-box ul li .sec-news02-box-img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.sec-news02 .sec-news02-box ul li .sec-news02-box-option {
  margin-top: 20px;
}
.sec-news02 .sec-news02-box ul li .sec-news02-box-cat {
  display: inline-block;
  padding: 2px 14px;
  background-color: #1d9c8c;
  color: #fff;
  border-radius: 20px;
  margin-right: 10px;
  font-size: 0.8rem;
}
.sec-news02 .sec-news02-box ul li .sec-news02-box-date {
  color: #969696;
}
.sec-news02 .sec-news02-box ul li .sec-news02-box-title {
  font-weight: bold;
  margin-top: 20px;
  font-size: 1.1rem;
}

@media (min-width: 767px) {
  .sec-news02 {
    padding: 0 20px clamp(40px, 9.5652px + 8.6957vw, 100px);
  }
  .sec-news02 .sec-news02-box ul {
    -webkit-transform: none !important;
            transform: none !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 20px !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .sec-news02 .sec-news02-box ul li {
    padding: 0;
    width: 33.333333% !important;
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 1 !important;
    -ms-flex-negative: inherit !important;
        flex-shrink: inherit !important;
  }
  .sec-news02 .sec-news02-box ul li a:hover {
    opacity: 0.6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.sec-voice .more a,
.sec-news02 .more a,
.sec09 .more a,
.sec-features .more a {
  margin: 0 auto;
  background-color: #fff;
  color: #07ab8e;
}
.sec-voice .more a svg .st0,
.sec-news02 .more a svg .st0,
.sec09 .more a svg .st0,
.sec-features .more a svg .st0 {
  fill: #07ab8e;
}
.sec-voice .more a::before,
.sec-news02 .more a::before,
.sec09 .more a::before,
.sec-features .more a::before {
  opacity: 0;
}
.sec-voice .more a:hover,
.sec-news02 .more a:hover,
.sec09 .more a:hover,
.sec-features .more a:hover {
  color: #fff;
  background-color: #07ab8e;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.sec-voice .more a:hover svg .st0,
.sec-news02 .more a:hover svg .st0,
.sec09 .more a:hover svg .st0,
.sec-features .more a:hover svg .st0 {
  fill: #fff;
}

.sec-voice {
  max-width: 1280px;
  padding: clamp(40px, 9.5652px + 8.6957vw, 100px) 20px;
  margin: 0 auto;
}
.sec-voice .color-text {
  display: inline-block;
  color: #1D8DA3;
}
.sec-voice .sec-ttl-sub {
  margin-bottom: 20px;
}
.sec-voice .sec-voice-flex {
  display: block;
}
.sec-voice .sec-voice-flex .sec-voice-flexbox:first-child {
  width: 100%;
}
.sec-voice .sec-voice-flex .sec-voice-flexbox-right {
  width: 100%;
  padding-left: 0px;
  margin-top: 40px;
}
.sec-voice .sec-voice-inbox {
  margin-bottom: 40px;
}
.sec-voice .sec-voice-inbox .sec-voice-h3 {
  color: #1D8DA3;
  margin-bottom: 1rem;
  font-weight: bold;
}
.sec-voice .sec-voice-inbox .sec-voice-h3 span {
  background-color: #1D8DA3;
  color: #fff;
  padding: 2px 16px;
  border-radius: 6px;
  margin-left: 10px;
  display: inline-block;
}

@media (min-width: 940px) {
  .sec-voice .sec-ttl-sub {
    margin-bottom: 20px;
  }
  .sec-voice .sec-ttl-sub {
    margin-bottom: 40px;
  }
  .sec-voice .sec-voice-flex {
    margin: 80px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sec-voice .sec-voice-flex .sec-voice-flexbox:first-child {
    width: 60%;
  }
  .sec-voice .sec-voice-flex .sec-voice-flexbox-right {
    width: 40%;
    padding-left: 40px;
    margin-top: 0;
  }
}