@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "YuGothic", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
}

@media screen\0  {
  * {
    font-family: "メイリオ", Meiryo, sans-serif;
  }
}
body {
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1;
}
body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

a:visited {
  text-decoration: none;
}

a:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, footer, header, nav, section {
  display: block;
}

ul,
li {
  list-style: none;
}

img {
  border-style: none;
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

.wrapper {
  overflow: hidden;
}
.wrapper * {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
}
.wrapper img {
  width: 100%;
  vertical-align: middle;
  height: auto;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 1024px;
  }
  .wrapper * {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: 500;
  }
}
/* ヘッダー */
header {
  position: fixed;
  width: 100%;
  height: 50px;
  z-index: 100;
  background: #fff;
}
header .header-inner {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1170px);
  height: 100%;
  background: #fff;
}
header .header-inner > div {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
header .header-logo {
  padding-left: 2%;
  width: 70%;
}
header .header-logo a {
  display: flex;
  align-items: center;
  height: 100%;
}
header .header-logo a img {
  width: auto;
  height: 36px;
}
header .header-logo a span {
  font-size: 14px;
  color: #333;
  padding-left: 2%;
  display: none;
}
header a.entry {
  background: #2849cf;
  display: flex;
  align-items: center;
  padding: 0 5% 0 0.3em;
  margin-right: 50px;
}
header a.entry p {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.15em;
  transform: scale(0.88, 1);
  font-weight: 400;
}
header .burger {
  position: absolute;
  z-index: 10;
  right: 15px;
  top: 18px;
  transform: rotate(0);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
header .burger__bar {
  width: 20px;
  height: 2px;
  margin: 0 0 4px 0;
  background: #333;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
header .burger__bar:last-child {
  margin-bottom: 0;
}
header .burger--close {
  transform: rotate(180deg);
}
header .burger--close .burger__bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
header .burger--close .burger__bar:nth-child(2) {
  opacity: 0;
}
header .burger--close .burger__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

@media screen and (min-width: 768px) {
  header {
    min-width: 1024px;
    height: 70px;
  }
  header .header-logo a img {
    height: 50px;
  }
  header .header-logo a span {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    margin-left: 1em;
  }
  header a.entry {
    width: 180px;
    padding: 0;
    transition: 0.3s;
  }
  header a.entry p {
    padding: 0 0 0 1em;
    font-weight: 400;
    font-size: 16px;
  }
  header a.entry:hover {
    opacity: 0.7;
  }
  header .burger {
    top: 26px;
    cursor: pointer;
  }
}
.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  visibility: hidden;
  z-index: 90;
}
.menu--active {
  visibility: visible;
}
.menu--active .menu__navEntry {
  opacity: 1;
}
.menu__inner {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  min-height: 0;
  color: #333;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translate3d(0, -100%, 0);
}
.menu__inner--active {
  transform: translate3d(0, 0, 0);
}
.menu__title, .menu__list {
  display: flex;
  flex-flow: column wrap;
  opacity: 0;
  transition: opacity 1s;
  transform: translate3d(0, -100%, 0);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu__title--active, .menu__list--active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.menu__title {
  height: 16%;
  justify-content: flex-end;
  transition-delay: 0.3s;
  font-weight: 700;
  padding-left: 5%;
  font-size: min(4.4vw, 21px);
}
.menu__list {
  align-items: center;
  justify-content: flex-start;
  transition-delay: 0.5s;
}
.menu__list li {
  width: 90%;
  border-bottom: solid 1px #bbb;
}
.menu__list li:nth-of-type(1) {
  margin-top: 1.5em;
}
.menu__list li:nth-last-of-type(2) {
  margin-top: 2em;
}
.menu__list li:nth-last-of-type(-n+2) a {
  font-size: 0.9em;
}
.menu__list li + li {
  margin-top: 0.5em;
}
.menu__navEntry {
  position: absolute;
  display: block;
  bottom: 5%;
  left: 50%;
  text-align: center;
  letter-spacing: 0.15em;
  transform: translateX(-50%) scale(0.88, 1);
  opacity: 0;
  transition: opacity 1s 1s;
}
.menu__navEntry span {
  color: #fff;
  padding: 10px 20px;
  background: #22542a;
}
.menu__item a {
  display: inline-block;
  padding: 0.7em 0 0.3em;
  font-size: min(4vw, 17px);
  color: #515151;
  font-weight: 700;
  transition: 0.3s;
}
.menu__item a span {
  display: block;
  padding-top: 0.6em;
  font-size: 86%;
}

@media screen and (min-width: 768px) {
  .menu {
    width: 60%;
  }
  .menu__item a:hover {
    color: #22542a;
  }
}
/* フッター */
footer {
  background: #22542a;
  color: #fff;
  height: 70px;
  font-size: min(3.2vw, 14px);
}
footer .footer-inner {
  height: 100%;
  width: min(100%, 1170px);
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer ul {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
}
footer ul li {
  padding: 0 1em;
}
footer ul li + li {
  border-left: solid 1px #fff;
}
footer ul a {
  color: #fff;
  border-bottom: solid 1px #fff;
}
footer p {
  font-family: Arial, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  footer {
    height: 80px;
  }
  footer .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  footer ul {
    margin-bottom: 0;
  }
  footer ul a {
    border-bottom: none;
  }
  footer ul a:hover {
    border-bottom: 1px dotted #fff;
  }
}
.topWrap {
  position: relative;
  top: 50px;
  padding-bottom: 50px;
}
.topWrap .swiperTop-inner {
  padding-bottom: 40px;
}
.topWrap .swiperTop-inner .swiper-wrapper {
  width: 85%;
  margin: 0 0 0 auto;
}
.topWrap .swiperTop-inner .swiper-slide img {
  object-fit: cover;
  height: 100vw;
}
.topWrap .swiperTop-inner .swiper-slide img.img1 {
  object-position: 50% top;
}
.topWrap .swiperTop-inner .swiper-slide img.img2 {
  object-position: 150% top;
}
.topWrap .swiperTop-inner .swiper-slide img.img3 {
  object-position: 50% top;
}
.topWrap .swiperTop-inner .swiper-name {
  width: 100%;
  position: absolute;
  bottom: 50px;
  left: 4%;
  z-index: 2;
}
.topWrap .swiperTop-inner .swiper-name > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: -75px;
  left: 0;
}
.topWrap .swiperTop-inner .swiper-name > div p {
  display: inline-block;
  font-size: 13px;
  padding: 6px;
  color: #22542a;
  background-color: #fff;
}
.topWrap .swiperTop-inner .swiper-name > div p + p {
  margin-top: 10px;
  font-size: 20px;
}
.topWrap .swiperTop-inner .swiper-name img {
  width: 40%;
  margin-top: 10px;
  transition: 0.3s;
}
.topWrap .swiperTop-inner .swiper-name img:hover {
  opacity: 0.5;
  cursor: pointer;
}
.topWrap .swiperTop-inner .swiper-name .txt {
  opacity: 0;
}
.topWrap .swiperTop-inner .swiper-name .txt p {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  overflow: hidden;
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.topWrap .swiperTop-inner .swiper-name .txt p:first-of-type {
  transition-delay: 1s;
  transition-duration: 0.5s;
}
.topWrap .swiperTop-inner .swiper-name .txt p:last-of-type {
  transition-delay: 1.5s;
  transition-duration: 0.5s;
}
.topWrap .swiperTop-inner .swiper-name .txt.act {
  opacity: 1;
  display: flex;
}
.topWrap .swiperTop-inner .swiper-name .txt.act p {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.topWrap .swiperTop {
  position: relative;
}
.topWrap .swiperTop .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  border: solid 1px #22542a;
  opacity: 1;
}
.topWrap .swiperTop .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #22542a;
  opacity: 1;
}
.topWrap h1 {
  position: absolute;
  z-index: 2;
  width: 46%;
  top: 20%;
  left: 4%;
}
.topWrap h1 + a {
  display: none;
}
.topWrap .btn {
  position: relative;
  background-color: #2849cf;
  width: 70%;
  margin: 5% auto 8%;
  display: block;
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 15px 0;
  border-radius: 999px;
}
.topWrap .btn.pc {
  display: none;
}
.topWrap .btn span {
  position: absolute;
  display: inline-block;
  right: 15%;
  top: 22%;
}
.topWrap .btn span img {
  height: 15px;
  width: auto;
}

@media screen and (min-width: 768px) {
  .topWrap {
    top: 70px;
    padding-bottom: 70px;
    min-width: 1024px;
    position: relative;
  }
  .topWrap .swiperTop {
    max-width: 1600px;
    margin: 0 auto;
  }
  .topWrap .swiperTop .swiper-pagination {
    position: absolute;
    width: 150px;
    bottom: 50px;
    left: 50%;
    margin-left: -470px;
  }
  .topWrap .swiperTop .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    margin: 0 20px 20px 0;
  }
  .topWrap .swiperTop-inner {
    min-width: 720px;
    width: 65%;
    margin: 0 0 0 auto;
    padding-bottom: 0;
    min-height: 715px;
  }
  .topWrap .swiperTop-inner .swiper-wrapper {
    width: 100%;
  }
  .topWrap .swiperTop-inner .swiper-slide img {
    width: 100%;
    height: auto;
    min-height: 715px;
  }
  .topWrap .swiperTop-inner .swiper-slide img.img1, .topWrap .swiperTop-inner .swiper-slide img.img2, .topWrap .swiperTop-inner .swiper-slide img.img3 {
    object-position: center top;
  }
  .topWrap .swiperTop-inner .swiper-name {
    bottom: 90px;
    left: 90px;
  }
  .topWrap .swiperTop-inner .swiper-name > div p {
    font-size: 16px;
  }
  .topWrap .swiperTop-inner .swiper-name > div p + p {
    font-size: 30px;
  }
  .topWrap .swiperTop-inner .swiper-name img {
    margin-top: 20px;
    width: 150px;
  }
  .topWrap .ttl {
    width: 377px;
    position: absolute;
    top: 200px;
    left: 50%;
    margin-left: -505px;
  }
  .topWrap .ttl h1 {
    position: relative;
    width: 100%;
  }
  .topWrap .ttl .pc {
    position: relative;
    z-index: 2;
    display: block;
    margin: 100px 0 100px 10px;
    width: 220px;
    font-size: 17px;
    transition: 0.3s;
  }
  .topWrap .ttl .pc span {
    top: 25%;
  }
  .topWrap .ttl .pc:hover {
    opacity: 0.7;
  }
  .topWrap .btn.sp {
    display: none;
  }
}
.sec1 > div {
  width: 100%;
  background-color: #22542a;
  text-align: center;
  padding: 10% 0;
}
.sec1 > div h2 {
  line-height: 1.5;
  font-weight: 500;
  font-size: min(5.5vw, 37px);
  color: #fff;
  margin-bottom: 1.3em;
}
.sec1 > div h2 br {
  display: none;
}
.sec1 > div p {
  font-size: min(4vw, 15px);
  line-height: 1.4;
  color: #fff;
  margin-bottom: 1em;
}
.sec1 > div + img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .sec1 {
    position: relative;
  }
  .sec1 > div {
    width: 60%;
    position: relative;
    text-align: left;
    padding: 100px;
  }
  .sec1 > div h2 br {
    display: block;
  }
  .sec1 > div p {
    line-height: 1.6;
    margin-bottom: 1.2em;
  }
  .sec1 > div div {
    width: 380px;
    margin: 0 100px 0 auto;
  }
  .sec1 > div + img {
    position: absolute;
    width: 480px;
    top: 165px;
    right: 50%;
    margin-right: -485px;
    z-index: 2;
  }
}
.sec2 {
  padding: 10% 0;
  background-color: #ecece4;
}
.sec2 h2 {
  width: 90%;
  margin: 0 auto 5%;
  font-size: 25px;
  font-weight: 500;
  color: #22542a;
}
.sec2 h2 span {
  font-size: 50%;
  display: block;
  color: #22542a;
  margin-bottom: 1em;
}
.sec2 .recruitList {
  width: 90%;
  margin: 0 auto;
}
.sec2 .recruitList .summary__Btn {
  background-color: #fff;
  padding: 5% 40px 5% 5%;
  position: relative;
}
.sec2 .recruitList .summary__Btn h3 {
  font-size: min(5vw, 24px);
  color: #22542a;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}
.sec2 .recruitList .summary__Btn h3 + p {
  font-size: 13px;
  line-height: 1.5;
}
.sec2 .recruitList .summary__Btn::before {
  position: absolute;
  content: "";
  width: 21px;
  height: 1px;
  right: 15px;
  top: 50%;
  background-color: #22542a;
}
.sec2 .recruitList .summary__Btn::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 21px;
  right: 25px;
  top: calc(50% - 10px);
  background-color: #22542a;
  transition: transform 0.3s;
}
.sec2 .recruitList .summary__Btn.open::after {
  transform: rotate(90deg);
}
.sec2 .recruitList .data-content {
  background-color: #fff;
  padding: 0 5% 5%;
  overflow: hidden;
  display: none;
}
.sec2 .recruitList .data-content .mgt {
  margin-top: 1em;
}
.sec2 .recruitList .data-content h3 {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.sec2 .recruitList .data-content p {
  font-size: 13px;
  line-height: 1.5;
}
.sec2 .recruitList .data-content p strong {
  color: #22542a;
  font-weight: 700;
}
.sec2 .recruitList .data-content > img {
  width: 100%;
}
.sec2 .recruitList .data-content a {
  position: relative;
  width: 90%;
  max-width: 300px;
  margin: 5% auto;
  background-color: #2849cf;
  display: block;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 15px 0;
  border-radius: 999px;
}
.sec2 .recruitList .data-content a span {
  position: absolute;
  display: inline-block;
  right: 10%;
  top: 30%;
}
.sec2 .recruitList .data-content a span img {
  height: 15px;
  width: auto;
}
.sec2 .recruitList .data-content.open {
  display: block;
}
.sec2 .recruitList .data-content + .summary__Btn {
  margin-top: 5%;
}

@media screen and (min-width: 768px) {
  .sec2 {
    padding: 120px 0;
    position: relative;
  }
  .sec2 h2 {
    position: absolute;
    width: 60px;
    writing-mode: vertical-rl;
    top: 120px;
    left: 50%;
    z-index: 2;
    margin-left: -460px;
    font-size: 37px;
  }
  .sec2 h2 span {
    margin-left: 10px;
    font-size: 16px;
  }
  .sec2 .recruitList {
    width: 680px;
  }
  .sec2 .recruitList .summary__Btn {
    padding: 30px 80px 30px 30px;
    transition: opacity 0.3s;
  }
  .sec2 .recruitList .summary__Btn:hover {
    cursor: pointer;
    opacity: 0.7;
  }
  .sec2 .recruitList .summary__Btn.open:hover {
    opacity: 1;
  }
  .sec2 .recruitList .summary__Btn h3 + p {
    font-size: 15px;
  }
  .sec2 .recruitList .summary__Btn::before {
    width: 25px;
    right: 30px;
  }
  .sec2 .recruitList .summary__Btn::after {
    height: 25px;
    right: 42px;
    top: calc(50% - 12px);
  }
  .sec2 .recruitList .data-content {
    padding: 0 50px 30px;
  }
  .sec2 .recruitList .data-content .mgt {
    margin-top: 1.5em;
  }
  .sec2 .recruitList .data-content h3 {
    font-size: 16px;
  }
  .sec2 .recruitList .data-content p {
    font-size: 16px;
    line-height: 1.7;
  }
  .sec2 .recruitList .data-content a {
    margin: 50px auto 20px;
    transition: 0.3s;
  }
  .sec2 .recruitList .data-content a:hover {
    opacity: 0.7;
  }
}
.sec3 {
  margin: 10% 0;
}
.sec3 h2 {
  text-align: center;
  color: #22542a;
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 7%;
  line-height: 1;
}
.sec3 h2 span {
  font-size: 12px;
  color: #22542a;
  display: block;
  margin-bottom: 5px;
}
.sec3 .swiperBox {
  position: relative;
}
.sec3 .swiperBox .swiper-wrapper {
  width: 100%;
  margin: 0 auto;
}
.sec3 .swiperBox .swiper-wrapper .swiper-slide {
  text-align: center;
}
.sec3 .swiperBox .swiper-wrapper .swiper-slide .ph {
  margin: 0 auto 15px;
}
.sec3 .swiperBox .swiper-wrapper .swiper-slide .ph img {
  width: 60%;
  height: 70vw;
  object-fit: cover;
  object-position: center;
}
.sec3 .swiperBox .swiper-wrapper .swiper-slide p {
  font-size: 14px;
  line-height: 1.6;
  color: #22542a;
}
.sec3 .swiperBox .swiper-wrapper .swiper-slide p + p {
  font-size: 27px;
  color: #22542a;
  margin-bottom: 5px;
}
.sec3 .swiperBox .swiper-wrapper .swiper-slide span {
  font-size: 12px;
  display: block;
  color: #22542a;
}
.sec3 .swiperBox .swiper-wrapper .swiper-slide span span {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 0.8em;
  height: 0.1em;
  background: #22542a;
  transform: translateY(-1px);
}
.sec3 .swiperBox .swiper-wrapper .swiper-slide span span::before {
  content: "";
  width: 0.55em;
  height: 0.55em;
  border: 0.1em solid #22542a;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
.sec3 .swiperBox .swiper-button-prev, .sec3 .swiperBox .swiper-button-next {
  background-color: #22542a;
  height: 40px;
  margin: auto;
  width: 40px;
  border-radius: 25px;
}
.sec3 .swiperBox .swiper-button-prev::before, .sec3 .swiperBox .swiper-button-next::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  box-sizing: border-box;
}
.sec3 .swiperBox .swiper-button-prev::after, .sec3 .swiperBox .swiper-button-next::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 16px;
  height: 2px;
  background: #fff;
}
.sec3 .swiperBox .swiper-button-prev::before {
  border-right: 0;
  transform: rotate(-45deg);
  transform-origin: top left;
  left: 50%;
  margin-left: -9px;
}
.sec3 .swiperBox .swiper-button-next::before {
  border-left: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  right: 50%;
  margin-right: -9px;
}

@media screen and (min-width: 768px) {
  .sec3 {
    margin: 0;
    padding: 120px 0;
    position: relative;
  }
  .sec3 h2 {
    text-align: left;
    position: absolute;
    width: 60px;
    writing-mode: vertical-rl;
    top: 120px;
    left: 50%;
    z-index: 2;
    margin-left: -460px;
    font-size: 37px;
    line-height: 1;
  }
  .sec3 h2 span {
    margin-left: 10px;
    font-size: 16px;
  }
  .sec3 .swiperBox {
    width: calc(50% + 340px);
    margin: 0 0 0 auto;
    left: 50%;
    margin-left: -340px;
  }
  .sec3 .swiperBox .swiper-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .sec3 .swiperBox .swiper-wrapper .swiper-slide {
    width: 30% !important;
    text-align: left;
    overflow: hidden;
    transition: 0.3s;
  }
  .sec3 .swiperBox .swiper-wrapper .swiper-slide .ph img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: 65% center;
  }
  .sec3 .swiperBox .swiper-wrapper .swiper-slide p {
    font-size: 16px;
  }
  .sec3 .swiperBox .swiper-wrapper .swiper-slide:hover {
    opacity: 0.7;
    cursor: pointer;
  }
  .sec3 .swiperBox .swiper-button-prev, .sec3 .swiperBox .swiper-button-next {
    display: none;
  }
}
.sec3-popup .interview-Box {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  transform: translate3d(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.sec3-popup .interview-Box.show {
  opacity: 1;
  pointer-events: auto;
}
.sec3-popup .interview-Box-bg {
  position: absolute;
  z-index: 990;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.sec3-popup .interview-Box-bg div {
  display: none;
}
.sec3-popup .interview-Box-content {
  position: relative;
  z-index: 992;
  width: 100%;
  height: auto;
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.sec3-popup .interview-Box-content::-webkit-scrollbar {
  display: none;
}
.sec3-popup .interview-Box .inner {
  position: relative;
  width: 90%;
  margin: 40px 5% 100px;
  padding: 5% 5% 40px;
  background-color: #fff;
}
.sec3-popup .interview-Box .inner img {
  margin-bottom: 5%;
}
.sec3-popup .interview-Box .inner .job {
  text-align: center;
  font-size: 13px;
  color: #22542a;
  margin-bottom: 1em;
}
.sec3-popup .interview-Box .inner .name {
  text-align: center;
  font-size: 22px;
  color: #22542a;
  margin-bottom: 1em;
}
.sec3-popup .interview-Box .inner h3 {
  text-align: center;
  color: #22542a;
  font-size: min(5vw, 23px);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1em;
}
.sec3-popup .interview-Box .inner .txt {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 1em;
}
.sec3-popup .interview-Box .inner .txt + h3 {
  margin-top: 2em;
}
.sec3-popup .interview-Box .inner .closeBtn {
  cursor: pointer;
  position: relative;
  display: block;
  width: 200px;
  margin: 20px auto 0;
  border: 1px solid #3cb396;
  border-radius: 50px;
  padding: 0.5em 0;
  transition: 0.3s;
  text-align: center;
}
.sec3-popup .interview-Box .inner .closeBtn:hover {
  background-color: rgba(60, 179, 150, 0.2);
}
.sec3-popup .interview-Box .inner .closeBtn span {
  color: #3cb396;
}
.sec3-popup .interview-Box .inner .closeBtn::before, .sec3-popup .interview-Box .inner .closeBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 1px;
  height: 12px;
  background: #3cb396;
}
.sec3-popup .interview-Box .inner .closeBtn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sec3-popup .interview-Box .inner .closeBtn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .sec3-popup .interview-Box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 1024px;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .sec3-popup .interview-Box-bg {
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
  }
  .sec3-popup .interview-Box-bg div {
    display: block;
    height: calc(100% + 1px);
  }
  .sec3-popup .interview-Box-bg::-webkit-scrollbar {
    display: none;
  }
  .sec3-popup .interview-Box-content {
    width: 960px;
    max-height: calc(100vh - 100px);
    background-color: #fff;
  }
  .sec3-popup .interview-Box .inner {
    width: 100%;
    margin: 0;
    padding: 80px 120px;
  }
  .sec3-popup .interview-Box .inner img {
    margin-bottom: 50px;
  }
  .sec3-popup .interview-Box .inner .job {
    font-size: 19px;
  }
  .sec3-popup .interview-Box .inner .name {
    font-size: 30px;
    margin-bottom: 50px;
  }
  .sec3-popup .interview-Box .inner h3 {
    margin-bottom: 40px;
    font-size: 23px;
  }
  .sec3-popup .interview-Box .inner h3 br.sp {
    display: none;
  }
  .sec3-popup .interview-Box .inner .text {
    font-size: 16px;
  }
  .sec3-popup .interview-Box .inner .closeBtn {
    margin-top: 40px;
  }
}
.sec4 {
  padding: 10% 0;
  background-color: #ecece4;
}
.sec4 h2 {
  width: 90%;
  margin: 0 auto 8%;
  font-size: min(6vw, 37px);
  font-weight: 500;
  color: #22542a;
}
.sec4 h2 span {
  font-size: min(12.5px, 50%);
  display: block;
  color: #22542a;
  margin-bottom: 1em;
}
.sec4 .txtWrap {
  width: 90%;
  margin: 0 auto 10%;
}
.sec4 .txtWrap h3 {
  margin-bottom: 0.7em;
}
.sec4 .txtWrap h3 div {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #fff;
  padding: 5px 15px;
  color: #22542a;
  font-size: min(6.2vw, 48px);
  line-height: 1.4;
}
.sec4 .txtWrap h3 div span {
  display: block;
}
.sec4 .txtWrap h3 div span:nth-of-type(1) {
  width: 1.8em;
}
.sec4 .txtWrap p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 1em;
}

@media screen and (min-width: 768px) {
  .sec4 {
    padding: 120px 0;
  }
  .sec4 h2 {
    width: 920px;
    margin: 0 auto 70px;
    font-size: 37px;
    line-height: 1;
  }
  .sec4 h2 span {
    font-size: 16px;
  }
  .sec4 .txtWrap {
    position: relative;
    width: calc(50% + 460px);
    max-width: 1060px;
    margin-bottom: 80px;
    left: 50%;
    margin-left: -460px;
  }
  .sec4 .txtWrap > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .sec4 .txtWrap h3 {
    margin-bottom: 40px;
  }
  .sec4 .txtWrap h3 div span br {
    display: none;
  }
  .sec4 .txtWrap p {
    font-size: 16px;
    line-height: 1.8;
    width: 40%;
    max-width: 400px;
    margin-right: 60px;
  }
  .sec4 .txtWrap p + img {
    width: 600px;
    height: 340px;
  }
  .sec4 .txtWrap.reverse {
    right: 50%;
    margin-right: -460px;
    margin-left: auto;
    left: auto;
  }
  .sec4 .txtWrap.reverse h3 {
    text-align: right;
  }
  .sec4 .txtWrap.reverse h3 div span {
    text-align: left;
  }
  .sec4 .txtWrap.reverse p {
    order: 2;
    margin-left: 60px;
    margin-right: 0;
  }
  .sec4 .txtWrap.reverse p + img {
    order: 1;
  }
  .sec4 .txtWrap:last-of-type {
    margin-bottom: 0;
  }
}
.sec5 {
  width: 90%;
  margin: 15% auto;
}
.sec5 h2 {
  text-align: center;
  margin-bottom: 1em;
  font-size: min(5.8vw, 24px);
  letter-spacing: 0.1em;
  color: #22542a;
}
.sec5 .summary_block {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 20px;
}
.sec5 .summary_block .sp {
  display: block;
}
.sec5 .summary_block .pc {
  display: none;
}
.sec5 .data-summary {
  position: relative;
  width: 48%;
  height: 24.27vw;
  display: block;
  margin-bottom: 10px;
  padding: 0 1%;
  background: #fff;
  pointer-events: none;
}
.sec5 .data-summary::after {
  position: absolute;
  z-index: 3;
  content: "";
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 8px 8px 0 8px;
  border-color: #fff transparent transparent transparent;
  transition: 0.3s;
}
.sec5 .data-summary > div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 0.3s;
}
.sec5 .data-summary > div span {
  position: relative;
  z-index: 2;
  display: block;
  height: 40px;
  width: 40px;
  margin-right: 10px;
}
.sec5 .data-summary > div p {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
  text-align: left;
  color: #fff;
}
.sec5 .data-summary > div::before {
  position: absolute;
  z-index: 0;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 24vw 41vw;
}
.sec5 .data-summary.green > div {
  background: #17b961;
}
.sec5 .data-summary.green > div::before {
  border-color: transparent transparent #14ac53 transparent;
}
.sec5 .data-summary.green.open::after {
  border-color: #17b961 transparent transparent transparent;
}
.sec5 .data-summary.blue > div {
  background: #0abdd6;
}
.sec5 .data-summary.blue > div::before {
  border-color: transparent transparent #07b1cd transparent;
}
.sec5 .data-summary.blue.open::after {
  border-color: #0abdd6 transparent transparent transparent;
}
.sec5 .data-summary:active {
  opacity: 0.6;
}
.sec5 .data-summary.open::after {
  bottom: -15px;
}
.sec5 .data-content {
  position: absolute;
  z-index: -1;
  top: calc(24.27vw + 20px);
  left: 0;
  display: none;
  margin: 0;
  width: 100%;
  overflow: hidden;
  transition: 0.5s;
}
.sec5 .data-content.green {
  border-top: solid 3px #1ab962;
  border-bottom: solid 3px #1ab962;
}
.sec5 .data-content.blue {
  border-top: solid 3px #0abdd6;
  border-bottom: solid 3px #0abdd6;
}
.sec5 .data-content > div:not(:last-of-type) {
  border-bottom: dashed 1px #808080;
}
.sec5 .data-content.fig14 {
  display: none;
}
.sec5 .data-inner {
  padding: 30px 0;
  position: relative;
}
.sec5 .data-inner .green {
  color: #17b961;
}
.sec5 .data-inner .blue {
  color: #0abdd6;
}
.sec5 .data-inner.flex {
  display: flex;
  align-items: center;
}
.sec5 .data-inner p {
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}
.sec5 .data-inner p.full {
  width: 100%;
}
.sec5 .data-inner p span {
  display: block;
  font-size: 270%;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.sec5 .data-inner p span.unit {
  display: inline;
  font-size: 60%;
}
.sec5 .data-inner .dataImg {
  display: block;
}
.sec5 .data-inner .fade.fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.sec5 .data-inner .fade.fadeUp {
  opacity: 0;
  transform: translateY(50px);
}
.sec5 .follow {
  justify-content: center;
}
.sec5 .follow .dataImg {
  width: 30%;
  margin: 0 30px;
}
.sec5 .chart-pie svg {
  position: relative;
  width: 150px;
  height: 150px;
  transform: rotate(-90deg);
}
.sec5 .chart-pie svg circle {
  position: relative;
  fill: none;
  stroke-width: 10;
  stroke: #f2f2f2;
  stroke-dasharray: 440;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  opacity: 0;
}
.sec5 .chart-pie svg circle:nth-of-type(odd) {
  stroke: #0abdd6;
}
.sec5 .chart-pie svg circle:nth-of-type(even) {
  stroke: #17b961;
}
.sec5 .chart-pie svg circle:nth-of-type(1) {
  stroke: #f2f2f2;
  animation: none;
}
.sec5 .chart-pie.fade svg circle {
  animation: none;
}
.sec5 .chart-pie.fadeIn svg circle {
  animation: circleAnim 1s forwards;
}
.sec5 .dataPart-1_1 {
  display: flex;
  justify-content: space-around;
}
.sec5 .dataPart-1_1 .dataImg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
}
.sec5 .dataPart-1_1 svg circle {
  animation: circleAnim 1s forwards;
}
.sec5 .dataPart-1_1 svg circle.line1 {
  stroke-dashoffset: 176;
}
.sec5 .dataPart-1_1 svg circle.line2 {
  stroke-dashoffset: 290.4;
  transform: rotate(227deg);
  transform-origin: 50% 50%;
}
.sec5 .dataPart-1_3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.sec5 .dataPart-1_3 p {
  width: 50%;
}
.sec5 .dataPart-1_3 p span.age {
  font-size: 92%;
}
.sec5 .dataPart-1_3 p.full {
  width: 100%;
  color: #17b961;
  margin-bottom: 20px;
}
.sec5 .dataPart-1_3 .dataImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
}
.sec5 .dataPart-1_3 > div {
  position: relative;
}
.sec5 .dataPart-1_3 > div:nth-of-type(2) {
  display: flex;
  flex-wrap: wrap;
  width: 48%;
  margin-left: 20px;
}
.sec5 .dataPart-1_3 > div:nth-of-type(2) p {
  margin-bottom: 10px;
}
.sec5 .dataPart-1_3 > div:nth-of-type(2) p:nth-of-type(odd) {
  color: #17b961;
}
.sec5 .dataPart-1_3 > div:nth-of-type(2) p:nth-of-type(even) {
  color: #0abdd6;
}
.sec5 .dataPart-1_3 svg circle.line1 {
  stroke-dashoffset: 435.6;
}
.sec5 .dataPart-1_3 svg circle.line2 {
  stroke-dashoffset: 259.6;
  transform: rotate(13deg);
  transform-origin: 50% 50%;
}
.sec5 .dataPart-1_3 svg circle.line3 {
  stroke-dashoffset: 347.6;
  transform: rotate(170deg);
  transform-origin: 50% 50%;
}
.sec5 .dataPart-1_3 svg circle.line4 {
  stroke-dashoffset: 378.4;
  transform: rotate(255deg);
  transform-origin: 50% 50%;
}
.sec5 .dataPart-1_3 svg circle.line5 {
  stroke-dashoffset: 413.6;
  transform: rotate(315deg);
  transform-origin: 50% 50%;
}
.sec5 .dataPart-1_3 svg circle.line6 {
  stroke-dashoffset: 435.6;
  transform: rotate(347deg);
  transform-origin: 50% 50%;
}
.sec5 .dataPart-1_6 {
  flex-wrap: wrap;
}
.sec5 .dataPart-1_6 > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec5 .dataPart-1_6 > div p {
  border-bottom: solid 1px #0abdd6;
  letter-spacing: 1.5em;
}
.sec5 .dataPart-1_6 > div p span {
  display: inline;
}
.sec5 .dataPart-1_6 .dataImg {
  width: 20%;
  margin: 20px 30px;
}
.sec5 .dataSection2B {
  width: 94.5%;
  margin: 0 auto;
}
.sec5 .dataSection2Button {
  position: relative;
  margin: 10px auto;
  transition: 0.3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.sec5 .dataSection2Button > div {
  position: relative;
  display: flex;
  align-items: center;
  height: 30vw;
  padding: 0 0 3vw;
  border-radius: 5px;
  overflow: hidden;
}
.sec5 .dataSection2Button > div span {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 15px 0 18%;
  width: 70px;
  height: 70px;
}
.sec5 .dataSection2Button > div span img {
  width: 100%;
}
.sec5 .dataSection2Button > div p {
  position: relative;
  z-index: 2;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}
.sec5 .dataSection2Button > div::before {
  position: absolute;
  z-index: 0;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 33vw 85vw;
}
.sec5 .dataSection2Button::after {
  position: absolute;
  z-index: 3;
  content: "";
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #fff transparent transparent transparent;
  transition: 0.3s;
}
.sec5 .dataSection2Button.green > div {
  background: #1ab962;
}
.sec5 .dataSection2Button.green > div::before {
  border-color: transparent transparent #14ac53 transparent;
}
.sec5 .dataSection2Button.green.open::after {
  bottom: -20px;
  border-color: #1ab962 transparent transparent transparent;
}
.sec5 .dataSection2Button.blue > div {
  background: #0abdd6;
}
.sec5 .dataSection2Button.blue > div::before {
  border-color: transparent transparent #07b1cd transparent;
}
.sec5 .dataSection2Button.blue.open::after {
  bottom: -20px;
  border-color: #0abdd6 transparent transparent transparent;
}
.sec5 .dataSection2Button:active {
  opacity: 0.6;
}
.sec5 .dataSection2Fig {
  display: none;
  margin: 30px auto;
  width: 100%;
}
.sec5 .dataSection2Fig img {
  display: block;
  width: 100%;
}
.sec5 .dataSection2Fig.green {
  border-top: solid 3px #1ab962;
  border-bottom: solid 3px #1ab962;
}
.sec5 .dataSection2Fig.blue {
  border-top: solid 3px #0abdd6;
  border-bottom: solid 3px #0abdd6;
}

@media screen and (min-width: 768px) {
  .sec5 {
    width: 960px;
    margin: 100px auto;
  }
  .sec5 h2 {
    font-size: 30px;
    margin-bottom: 60px;
  }
  .sec5 .data-summary {
    width: calc(50% - 8px);
    height: 170px;
    padding: 0;
  }
  .sec5 .data-summary > div span {
    width: auto;
    height: auto;
    max-width: 90px;
    margin: 0 15px 0 0;
  }
  .sec5 .data-summary > div p {
    font-size: 20px;
  }
  .sec5 .data-summary > div::before {
    border-width: 0 0 170px 305px;
  }
  .sec5 .dataSection2B {
    position: relative;
    width: 100%;
    max-width: 960px;
    display: flex;
    justify-content: center;
    margin: 0 auto 25px;
  }
  .sec5 .dataSection2Button {
    width: 290px;
    height: 168px;
    margin: 0;
  }
  .sec5 .dataSection2Button > div {
    justify-content: center;
    box-sizing: border-box;
    height: 168px;
    padding: 0 10px 10px;
  }
  .sec5 .dataSection2Button > div span {
    width: auto;
    height: auto;
    max-width: 90px;
    margin: 0 15px 0 0;
  }
  .sec5 .dataSection2Button > div p {
    min-width: 100px;
  }
  .sec5 .dataSection2Button > div::before {
    border-width: 0 0 168px 29.3vw;
  }
  .sec5 .dataSection2Button::after {
    border-width: 15px 15px 0 15px;
  }
  .sec5 .dataSection2Button.green.open::after {
    bottom: -25px;
  }
  .sec5 .dataSection2Button.blue.open::after {
    bottom: -25px;
  }
  .sec5 .dataSection2Button.open.fig1 {
    margin-bottom: 2229px;
  }
  .sec5 .dataSection2Button.open.fig2 {
    margin-bottom: 580px;
  }
  .sec5 .dataSection2Button.open.fig3 {
    margin-bottom: 942px;
  }
  .sec5 .dataSection2Button.open.fig4 {
    margin-bottom: 1132px;
  }
  .sec5 .dataSection2Button:hover {
    cursor: pointer;
    opacity: 0.6;
  }
  .sec5 .dataSection2Fig {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    display: none;
    margin: 0;
    width: 100%;
    overflow: hidden;
  }
  .sec5 .dataSection2Fig + .dataSection2Button {
    margin-left: 35px;
  }
  .sec5 .dataSection2Fig.fig1 {
    height: 2189px;
  }
  .sec5 .dataSection2Fig.fig2 {
    height: 540px;
  }
  .sec5 .dataSection2Fig.fig3 {
    height: 902px;
  }
  .sec5 .dataSection2Fig.fig4 {
    height: 1092px;
  }
  .sec5 .dataSection2Fig img {
    width: 760px;
    margin: 0 auto;
  }
  .sec5 .dataSection2Fig.green {
    border-top: solid 5px #1ab962;
    border-bottom: solid 5px #1ab962;
  }
  .sec5 .dataSection2Fig.blue {
    border-top: solid 5px #0abdd6;
    border-bottom: solid 5px #0abdd6;
  }
}
.sec6 {
  padding-top: 0;
}
.sec6 h2 {
  text-align: center;
  margin-bottom: 1em;
  font-size: min(5.8vw, 24px);
  letter-spacing: 0.1em;
  color: #3cb396;
}
.sec6 .acc__wrap .data-content {
  width: 100%;
  color: #000;
  overflow: hidden;
  margin: 0;
  display: none;
  padding-bottom: 30px;
}
.sec6 .acc__wrap .data__inner {
  padding: 1.5em 1em;
}
.sec6 .acc__wrap .data__inner img {
  width: 80%;
  margin: 0 auto 2em;
  display: block;
}
.sec6 .summary__Btn {
  position: relative;
  display: block;
  width: 100%;
  height: 48vw;
  margin-top: 2px;
  cursor: pointer;
}
.sec6 .summary__Btn img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.sec6 .summary__Btn span {
  position: absolute;
  width: 80%;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  letter-spacing: 0.2em;
}
.sec6 .data-content {
  background: #ebecec;
}
.sec6 .data-content h2 {
  padding-top: 0.5em;
}
.sec6 .data-content .data__inner {
  padding: 30px 1em;
}
.sec6 .data-content .data__inner .Btn.arrow {
  padding: 0.5em 3em;
  margin-top: 1em;
}
.sec6 .data-content .data__inner .sec6_fig {
  width: 100%;
  margin-top: 1em;
}
.sec6 .data-content dl {
  width: 100%;
  margin: auto;
}
.sec6 .data-content dt, .sec6 .data-content dd {
  line-height: 1.6;
}
.sec6 .data-content dt br.pc, .sec6 .data-content dd br.pc {
  display: none;
}
.sec6 .data-content dt {
  border-top: solid 1px #3cb396;
  color: #3cb396;
  font-size: min(4vw, 16px);
  padding: 1.5em 1em 0;
}
.sec6 .data-content dd {
  font-size: min(3.84vw, 15px);
  padding: 1em 1em 1.5em;
}
.sec6 .data-content .tbl {
  width: 100%;
  border-collapse: collapse;
}
.sec6 .data-content .tbl th, .sec6 .data-content .tbl td {
  padding: 0.3em 0.2em;
  text-align: center;
}
.sec6 .data-content .tbl th:nth-of-type(1), .sec6 .data-content .tbl td:nth-of-type(1) {
  text-align: left;
}
.sec6 .data-content .tbl th + th {
  border-left: 1px solid #9e9e9e;
}
.sec6 .data-content .tbl td + td {
  border-left: 1px solid #9e9e9e;
}
.sec6 .data-content .tbl tbody tr {
  border-top: 1px solid #9e9e9e;
}
.sec6 .data-content .tbl + div {
  margin-top: 1em;
}
.sec6 .data-content .tbl + div p {
  margin-top: 0.5em;
}
.sec6 .data-content .tbl + div p span {
  color: #d81313;
  font-weight: bold;
}
.sec6 .data-content a.Btn {
  cursor: pointer;
  position: relative;
  display: block;
  width: 200px;
  margin: auto;
  border: 1px solid #3cb396;
  border-radius: 50px;
  padding: 0.5em 4em;
  transition: 0.3s;
}
.sec6 .data-content a.Btn:hover {
  background: #fff;
  color: rgba(35, 24, 21, 0.9);
}
.sec6 .data-content a.Btn span {
  color: #3cb396;
}
.sec6 .acc__innerWrap {
  margin-bottom: 40px;
}
.sec6 .acc__innerWrap .summary__Btn, .sec6 .acc__innerWrap .data-content {
  background: #fff;
}
.sec6 .acc__innerWrap .summary__Btn {
  height: auto;
  padding: 1em 2.5em 1em 1em;
  color: #3cb396;
  line-height: 1.6;
  font-size: 15px;
}
.sec6 .acc__innerWrap .summary__Btn::after {
  width: 8px;
  height: 8px;
  border-color: #3cb396;
  transform: rotate(45deg);
  right: 20px;
  top: 1.5em;
  transition: 0.4s;
}
.sec6 .acc__innerWrap .summary__Btn.open {
  margin-bottom: 0;
}
.sec6 .acc__innerWrap .summary__Btn.open::after {
  transform: rotate(135deg);
}
.sec6 .acc__innerWrap .data-content {
  padding: 0.5em 1em 1.5em;
}
.sec6 .acc__innerWrap .data-content p {
  font-size: 14px;
  line-height: 1.7;
}
.sec6 .acc__innerWrap .data-content p a {
  color: #3cb2d8;
  text-decoration: underline;
}
.sec6 .acc__innerWrap .data-content p a:hover {
  text-decoration: none;
}
.sec6 button.Btn {
  cursor: pointer;
  position: relative;
  display: block;
  margin: auto;
  border: 1px solid #3cb396;
  border-radius: 50px;
  padding: 0.5em 4em;
  transition: 0.3s;
}
.sec6 button.Btn:hover {
  background: #fff;
  color: rgba(35, 24, 21, 0.9);
}
.sec6 button.Btn span {
  color: #3cb396;
}
.sec6 .cross {
  position: absolute;
}
.sec6 .cross::before, .sec6 .cross::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 1px;
  height: 12px;
  background: #3cb396;
}
.sec6 .cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sec6 .cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sec6 .arrow {
  font-size: 14px;
  padding: 1em 4em;
}
.sec6 .arrow::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #3cb396;
  border-right: 1px solid #3cb396;
  background: none;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .sec6 .acc__wrap {
    position: relative;
    margin: auto;
    width: 1000px;
    padding-top: 276px;
  }
  .sec6 .acc__wrap > div {
    top: 0;
  }
  .sec6 .acc__wrap > div:nth-of-type(1) {
    left: 0;
  }
  .sec6 .acc__wrap > div:nth-of-type(3) {
    left: auto;
    right: 0;
  }
  .sec6 .summary__Btn {
    position: absolute;
    width: calc(50% - 20px);
    min-height: 1px;
    height: auto;
  }
  .sec6 .summary__Btn::before {
    content: "";
    display: block;
    padding-top: 57.5%;
  }
  .sec6 .summary__Btn img {
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.3s;
  }
  .sec6 .summary__Btn:hover img {
    opacity: 0.6;
  }
  .sec6 .data__inner {
    display: block;
    width: 800px;
    margin: auto;
  }
  .sec6 h2 {
    font-size: 24px;
    text-align: left;
    margin: 40px 0;
  }
  .sec6 .data-content {
    display: none;
    margin-top: 20px;
  }
  .sec6 .data-content dl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .sec6 .data-content dt, .sec6 .data-content dd {
    border-top: solid 1px #3cb396;
    border-bottom: none;
    padding: 1.5em 0;
  }
  .sec6 .data-content dt {
    width: 160px;
  }
  .sec6 .data-content dt br.pc {
    display: block;
  }
  .sec6 .data-content dd {
    width: calc(100% - 160px);
    padding-left: 3em;
  }
  .sec6 .data-content .tbl + div p {
    margin-top: 0;
  }
  .sec6 .data-content .tbl + div .sp {
    display: none;
  }
  .sec6 .data__inner .acc__innerWrap {
    width: 100%;
  }
  .sec6 .data__inner .summary__Btn {
    width: 100%;
    position: relative;
    font-size: 16px;
  }
  .sec6 .data__inner .summary__Btn::before {
    content: none;
  }
  .sec6 .data__inner .data-content {
    margin-top: 0;
    padding: 1em 3em 3em;
  }
  .sec6 .data__inner .data-content p {
    font-size: 15px;
  }
}
.sec7 .delican {
  width: 84%;
  margin: 3em auto;
  text-align: center;
}
.sec7 .delican h2 {
  margin-bottom: 1em;
}
.sec7 .delican .thumb-list {
  display: flex;
  justify-content: space-between;
}
.sec7 .delican .thumb-list img {
  width: 20%;
  border-radius: 50%;
}
.sec7 .delican .Btn {
  cursor: pointer;
  position: relative;
  display: inline-block;
  border: 1px solid #3cb396;
  border-radius: 50px;
  margin-top: 30px;
  padding: 0.5em 4em;
  transition: 0.3s;
}
.sec7 .delican .Btn span {
  color: #3cb396;
}
.sec7 .insta {
  width: 90%;
  margin: 0 auto 100px;
  display: block;
}
.sec7 .banner {
  width: 80%;
  margin: 15% auto;
}
.sec7 .banner a {
  display: block;
  margin-bottom: 5%;
}
.sec7 .bttomBtn {
  background-color: #ecece4;
  padding: 5% 0;
}
.sec7 .bttomBtn p {
  text-align: center;
  font-size: min(3.8vw, 13px);
  line-height: 1.8;
}
.sec7 .bttomBtn a {
  position: relative;
  background-color: #2849cf;
  width: 70%;
  margin: 5% auto 3%;
  display: block;
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding: 15px 0;
  border-radius: 999px;
}
.sec7 .bttomBtn a span {
  position: absolute;
  display: inline-block;
  right: 15%;
  top: 22%;
}
.sec7 .bttomBtn a span img {
  height: 15px;
  width: auto;
}

@media screen and (min-width: 768px) {
  .sec7 .delican {
    width: 640px;
    margin: 5em auto;
  }
  .sec7 .delican .Btn {
    margin-top: 50px;
    padding: 0.8em 4em;
  }
  .sec7 .delican .Btn.arrow {
    font-size: 16px;
  }
  .sec7 .delican .Btn:hover {
    background-color: #3cb396;
  }
  .sec7 .delican .Btn:hover span {
    color: #fff;
  }
  .sec7 .delican .Btn:hover.arrow::after, .sec7 .delican .Btn:hover.arrow::before {
    border-color: #fff;
  }
  .sec7 .insta {
    width: 870px;
    margin-bottom: 120px;
    transition: 0.3s;
  }
  .sec7 .insta:hover {
    opacity: 0.6;
  }
  .sec7 .banner {
    width: 790px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 80px auto;
  }
  .sec7 .banner a {
    width: 255px;
    margin-bottom: 0;
    transition: 0.3s;
  }
  .sec7 .banner a:hover {
    opacity: 0.5;
  }
  .sec7 .bttomBtn p {
    font-size: 23px;
  }
  .sec7 .bttomBtn p .sp {
    display: none;
  }
  .sec7 .bttomBtn a {
    width: 315px;
    font-size: 25px;
    margin: 40px auto 0;
    transition: 0.3s;
  }
  .sec7 .bttomBtn a:hover {
    opacity: 0.5;
  }
}