html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased; /* macOS用 (Chrome, Safari) */
  -moz-osx-font-smoothing: grayscale;  /* macOS Firefox用 */
  scroll-behavior: smooth;
}
@media screen and (min-width:1400px) {
  html {
    font-size: calc(100vw / 1400 * 10);
  }
}
@media screen and (max-width:1040px) {
  html {
    font-size: calc(100vw / 1040 * 10);
  }
}

@media screen and (max-width:768px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }
}
body {
  color: #000;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
}
.f_sans {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}
.f_cursive {
  font-family: 'Cedarville Cursive', cursive;
  font-weight: 400;
}
.body_container {
  opacity: 0;
  overflow: hidden;
  transition: .6s ease;
}
.lazy .body_container {
  opacity: 1;
}
.max1280 {
  margin: 0 auto;
  max-width: 1280rem;
}
.max1000 {
  margin: 0 auto;
  max-width: 100rem;
}
img {
  height: auto;
  max-width: 100%;
  width: 100%;
}
a {
  transition: .3s;
}
.anchor {
  display: flex;
  margin-top: -8.7rem;
  padding-top: 8.7rem;
}
@media screen and (max-width: 768px) {
  .anchor {
    margin-top: -5.8rem;
    padding-top: 5.8rem;
  }
}
strong {
  font-weight: inherit;
}
/* ---------------------------------------------------------------------------
//  ttlA
--------------------------------------------------------------------------- */
.ttlA {
  text-align: center;
}
.ttlA .eng {
  background: linear-gradient(136deg, #00c073 17.08%, #1d2087 91.58%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 2.4rem;
  line-height: calc(16/24);
  -webkit-text-fill-color: transparent;
}
.ttlA .jp {
  font-size: 3.2rem;
  line-height: calc(16/32);
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .ttlA {
    text-align: center;
  }
  .ttlA .eng {
    font-size: 1.8rem;
    line-height: calc(10/18);
  }
  .ttlA .jp {
    font-size: 2.4rem;
    line-height: calc(10/24);
  }
}
/* ---------------------------------------------------------------------------
//  btnA
--------------------------------------------------------------------------- */
.btnA {
  align-items: center;
  align-items: center;
  background: #fff;
  border: solid 1px #000;
  border-radius: 10rem;
  box-shadow: .5rem .8rem .5rem 0 rgba(0, 0, 0, .20);
  display: flex;
  font-weight: 400;
  gap: 1.4rem;
  height: 6rem;
  justify-content: center;
  margin: 0 auto;
  width: 34rem;
}
.btnA::after {
  background-image: url(../img/btn_arrow01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 3.2rem;
  transition: .3s;
  width: 2.8rem;
}
.btnA:hover {
  background: #000;
  box-shadow: .2rem .5rem .2rem 0 rgba(0, 0, 0, .50);
  color: #fff;
  gap: 0;
}
.btnA:hover:after {
  width: 0;
}
@media screen and (max-width: 768px) {
  .btnA {
    width: 33rem;
  }
}
/* ---------------------------------------------------------------------------
//  btnB
--------------------------------------------------------------------------- */
.btnB {
  align-items: center;
  background: #fff;
  border: solid 1px #000;
  border-radius: 100%;
  display: flex;
  filter: drop-shadow(.5rem .8rem .5rem rgba(0, 0, 0, .25));
  flex-direction: column;
  height: 10.6rem;
  justify-content: center;
  line-height: 2;
  width: 10.6rem;
}
.btnB::after {
  background-image: url(../img/btn_arrow01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 3.2rem;
  transition: .3s;
  width: 2.8rem;
}
.btnB:hover {
  background: #000;
  box-shadow: .2rem .5rem .2rem 0 rgba(0, 0, 0, .50);
  color: #fff;
}
.btnB:hover:after {
  height: 0;
  width: 0;
}
@media screen and (max-width: 768px) {
  .btnB {
    font-size: 1.35rem;
    height: 8.2rem;
    width: 8.2rem;
  }
  .btnB::after {
    height: 2.41rem;
    width: 2.06rem;
  }
}
/* ---------------------------------------------------------------------------
//  topFv
--------------------------------------------------------------------------- */
.topFv .container .wrap {
  height: 92.1rem;
  padding-top: 17.6rem;
  position: relative;
}
.topFv .container .wrap .copy {
  margin-left: auto;
  margin-right: 0;
  position: relative;
  width: 37.9rem;
  z-index: 7;
}
.topFv .container .wrap .copy .h1 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: calc(70/48);
  white-space: nowrap;
}
.topFv .container .wrap .copy .cross {
  position: absolute;
  right: 1.5rem;
  top: 1.8rem;
  width: 11.1rem;
}
.topFv .container .wrap .copy .arrows {
  bottom: -4rem;
  height: 14.4rem;
  left: -21.7rem;
  position: absolute;
  width: 19.8rem;
}
.topFv .container .wrap .copy .arrows .arrow {
  position: absolute;
  width: 8.5rem;
}
.topFv .container .wrap .copy .arrows .arrow:nth-of-type(1) {
  right: 0;
}
.topFv .container .wrap .copy .arrows .arrow:nth-of-type(2) {
  left: 0;
  margin: auto;
  right: 0;
}
.topFv .container .wrap .copy .arrows .arrow:nth-of-type(3) {
  left: 0;
}
.topFv .container .wrap .pic_imgs .img {
  position: absolute;
}
.topFv .container .wrap .pic_imgs .img:nth-of-type(1) {
  bottom: 0;
  right: -21.7rem;
  width: 128rem;
  z-index: 1;
}
.topFv .container .wrap .pic_imgs .img:nth-of-type(2) {
  bottom: 25.8rem;
  right: 15.7rem;
  width: 78.9rem;
  z-index: 0;
}
.topFv .container .wrap .machine_imgs .img {
  position: absolute;
}
.topFv .container .wrap .machine_imgs .img:nth-of-type(1) {
  left: 0;
  top: 16rem;
  width: 40.9rem;
  z-index: 2;
}
.topFv .container .wrap .machine_imgs .img:nth-of-type(2) {
  left: -25.2rem;
  top: 35.8rem;
  width: 46.7rem;
  z-index: 3;
}
.topFv .container .wrap .machine_imgs .img:nth-of-type(3) {
  left: 11.2rem;
  top: 62.4rem;
  width: 19.2rem;
  z-index: 4;
}
.topFv .container .wrap .machine_imgs .img:nth-of-type(4) {
  left: 25.5rem;
  top: 67.3rem;
  width: 25.9rem;
  z-index: 5;
}
.topFv .container .wrap .machine_imgs .img:nth-of-type(5) {
  left: -1rem;
  top: 73rem;
  width: 57.9rem;
  z-index: 6;
}
@media screen and (max-width: 768px) {
  .topFv .container .wrap {
    height: 68.3rem;
    padding-top: 31.4rem;
  }
  .topFv .container .wrap .copy {
    margin-right: 1.1rem;
    width: 21.3rem;
  }
  .topFv .container .wrap .copy .h1 {
    font-size: 2.7rem;
    line-height: calc(38/27);
  }
  .topFv .container .wrap .copy .cross {
    right: .8rem;
    top: 1.16rem;
    width: 6.4rem;
  }
  .topFv .container .wrap .copy .arrows {
    bottom: -3.5rem;
    height: 8.3rem;
    left: -12.5rem;
    width: 11.4rem;
  }
  .topFv .container .wrap .copy .arrows .arrow {
    width: 4.8rem;
  }
  .topFv .container .wrap .pic_imgs .img:nth-of-type(1) {
    right: -6rem;
    width: 61.7rem;
  }
  .topFv .container .wrap .pic_imgs .img:nth-of-type(2) {
    bottom: inherit;
    right: -5rem;
    top: 13.2rem;
    width: 39.1rem;
  }
  .topFv .container .wrap .machine_imgs .img:nth-of-type(1) {
    left: 1.6rem;
    top: 5.7rem;
    width: 18rem;
  }
  .topFv .container .wrap .machine_imgs .img:nth-of-type(2) {
    left: -9.3rem;
    top: 14.4rem;
    width: 20.6rem;
  }
  .topFv .container .wrap .machine_imgs .img:nth-of-type(3) {
    left: 2.8rem;
    top: 25.8rem;
    width: 11.3rem;
  }
  .topFv .container .wrap .machine_imgs .img:nth-of-type(4) {
    left: 7.2rem;
    top: 46.3rem;
    width: 8.3rem;
  }
  .topFv .container .wrap .machine_imgs .img:nth-of-type(5) {
    left: -1.2rem;
    top: 47.6rem;
    width: 18.5rem;
  }
}
/* ---------------------------------------------------------------------------
//  top01
--------------------------------------------------------------------------- */
.top01 {
  position: relative;
}
.top01 .wrap {
  padding: 12.6rem 0 12.6rem;
}
.top01 .wrap .flex {
  display: flex;
  gap: 7.5rem;
  margin-top: 6rem;
}
.top01 .wrap .flex .left {
  height: 61.3rem;
  position: relative;
  width: calc((100% - 7.5rem) / 2);
}
.top01 .wrap .flex .left .img {
  position: absolute;
  right: 0;
  top: 0;
  width: 72.1rem;
}
.top01 .wrap .flex .right {
  width: calc((100% - 7.5rem) / 2);
}
.top01 .wrap .flex .right .ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: calc(47/24);
}
.top01 .wrap .flex .right .ttl strong {
  color: #05a577;
}
.top01 .wrap .flex .right .desc {
  line-height: calc(28/16);
  margin-top: 2rem;
  text-align: justify;
}
.top01 .copy {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 120rem;
  position: absolute;
  width: 100%;
}
.top01 .copy .txt {
  font-size: 4.8rem;
  font-weight: 700;
  height: 21rem;
  line-height: calc(70/48);
  white-space: nowrap;
  width: 33.6rem;
}
.top01 .copy .txt strong {
  color: #05a577;
}
.top01 .copy .arrows {
  height: 21.8rem;
  position: relative;
  width: 30rem;
}
.top01 .copy .arrows .arrow {
  position: absolute;
  width: 12.7rem;
}
.top01 .copy .arrows .arrow:nth-of-type(1) {
  left: 0;
}
.top01 .copy .arrows .arrow:nth-of-type(2) {
  left: 0;
  margin: auto;
  right: 0;
}
.top01 .copy .arrows .arrow:nth-of-type(3) {
  right: 0;
}
.top01 .copy .cross {
  margin-left: 2rem;
  width: 13.2rem;
}
@media screen and (max-width: 768px) {
  .top01 {
    position: relative;
  }
  .top01 .wrap {
    padding: 5.3rem 2.3rem 0;
  }
  .top01 .wrap .flex {
    flex-direction: column;
    gap: 2.3rem;
    margin-top: 12.3rem;
  }
  .top01 .wrap .flex .left {
    height: auto;
    width: 100%;
  }
  .top01 .wrap .flex .left .img {
    height: 27.2rem;
    left: -4.2rem;
    position: relative;
    width: 32rem;
  }
  .top01 .wrap .flex .left .img img {
    height: 100%;
    max-width: inherit;
    object-fit: cover;
    width: 100%;
  }
  .top01 .wrap .flex .right {
    width: 100%;
  }
  .top01 .wrap .flex .right .ttl {
    font-size: 1.8rem;
    line-height: calc(28/18);
  }
  .top01 .wrap .flex .right .desc {
    letter-spacing: -.03rem;
  }
  .top01 .copy {
    align-items: flex-start;
    bottom: inherit;
    justify-content: flex-start;
    padding-left: 2.3rem;
    top: 15.2rem;
  }
  .top01 .copy .txt {
    font-size: 2.4rem;
    height: 10.1rem;
    line-height: calc(34/24);
    width: 16.8rem;
  }
  .top01 .copy .arrows {
    height: 5.3rem;
    margin-left: 1rem;
    margin-top: 1rem;
    width: 7.2rem;
  }
  .top01 .copy .arrows .arrow {
    width: 3.08rem;
  }
  .top01 .copy .cross {
    margin-left: .4rem;
    margin-top: 1.4rem;
    width: 5.5rem;
  }
}
/* ---------------------------------------------------------------------------
//  top02
--------------------------------------------------------------------------- */
.top02 {
  position: relative;
}
.top02 .wrap {
  padding: 16.2rem 0 0;
}
.top02 .wrap .flex {
  display: flex;
  flex-direction: row-reverse;
  gap: 8.3rem;
  margin-top: 4rem;
  position: relative;
}
.top02 .wrap .flex .left {
  height: 36.4rem;
  position: relative;
  width: 50%;
}
.top02 .wrap .flex .left .img {
  left: 0;
  position: absolute;
  top: 0;
  width: 75.5rem;
}
.top02 .wrap .flex .right {
  width: calc(50% - 8.3rem);
}
.top02 .wrap .flex .right .desc {
  line-height: calc(28/16);
  margin-top: 3rem;
  text-align: justify;
}
.top02 .wrap .btnA {
  margin-top: 19.5rem;
}
.top02 .copy {
  align-items: center;
  bottom: 8.7rem;
  color: #fff;
  display: flex;
  height: 33.6rem;
  justify-content: flex-end;
  padding-right: 3.6rem;
  position: absolute;
  right: calc((100vw - 100rem) / 2);
  width: 100vw;
}
.top02 .copy .bg {
  background: #3b8fa6;
  content: '';
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  width: 100%;
}
.top02 .copy .txt {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: calc(64/44);
  margin-left: 4.3rem;
  white-space: nowrap;
  width: 39.6rem;
}
.top02 .copy .arrows {
  height: 21.8rem;
  position: relative;
  width: 30rem;
}
.top02 .copy .arrows .arrow {
  position: absolute;
  width: 12.7rem;
}
.top02 .copy .arrows .arrow:nth-of-type(1) {
  left: 0;
}
.top02 .copy .arrows .arrow:nth-of-type(2) {
  left: 0;
  margin: auto;
  right: 0;
}
.top02 .copy .arrows .arrow:nth-of-type(3) {
  right: 0;
}
.top02 .copy .cross {
  margin-left: 2.4rem;
  width: 11.1rem;
}
@media screen and (max-width: 768px) {
  .top02 {
    position: relative;
  }
  .top02 .wrap {
    padding: 5rem 2.3rem 0;
  }
  .top02 .wrap .flex {
    flex-direction: column;
    gap: 10.7rem;
    margin-top: 5rem;
  }
  .top02 .wrap .flex .left {
    height: auto;
    position: relative;
    width: 100%;
  }
  .top02 .wrap .flex .left .img {
    height: 20.4rem;
    position: relative;
    width: calc(100% + 2.3rem);
  }
  .top02 .wrap .flex .left .img  img {
    height: 100%;
    max-width: inherit;
    object-fit: cover;
    width: 42.3rem;
  }
  .top02 .wrap .flex .right {
    width: 100%;
  }
  .top02 .wrap .flex .right .desc {
    margin-top: 0;
  }
  .top02 .wrap .btnA {
    margin-top: 2.3rem;
  }
  .top02 .copy {
    align-items: flex-start;
    bottom: inherit;
    height: 13.6rem;
    justify-content: center;
    padding-right: 0;
    right: 0;
    top: 29.7rem;
    width: 100vw;
  }
  .top02 .copy .txt {
    font-size: 2.4rem;
    line-height: calc(34/24);
    margin-left: .6rem;
    margin-top: 1.9rem;
    width: 21.6rem;
  }
  .top02 .copy .arrows {
    height: 5.3rem;
    margin-top: 2.3rem;
    width: 7.2rem;
  }
  .top02 .copy .arrows .arrow {
    width: 3.08rem;
  }
  .top02 .copy .arrows .arrow:nth-of-type(1) {
    left: 0;
  }
  .top02 .copy .arrows .arrow:nth-of-type(2) {
    left: 0;
    margin: auto;
    right: 0;
  }
  .top02 .copy .arrows .arrow:nth-of-type(3) {
    right: 0;
  }
  .top02 .copy .cross {
    margin-left: .9rem;
    margin-top: 2.5rem;
    width: 4.74rem;
  }
}
/* ---------------------------------------------------------------------------
//  top03
--------------------------------------------------------------------------- */
.top03 {
  position: relative;
}
.top03 .wrap {
  padding: 14.2rem 0 9.5rem;
}
.top03 .copy {
  height: 21.8rem;
  margin: 5.7rem auto 0;
  position: relative;
  width: 30.8rem;
}
.top03 .copy .txt {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: calc(64/44);
  white-space: nowrap;
}
.top03 .copy .arrows {
  height: 21.8rem;
  left: -47.9rem;
  position: absolute;
  width: 30rem;
}
.top03 .copy .arrows .arrow {
  position: absolute;
  width: 12.7rem;
}
.top03 .copy .arrows .arrow:nth-of-type(1) {
  left: 0;
}
.top03 .copy .arrows .arrow:nth-of-type(2) {
  left: 0;
  margin: auto;
  right: 0;
}
.top03 .copy .arrows .arrow:nth-of-type(3) {
  right: 0;
}
.top03 .copy .cross {
  bottom: 0;
  height: 11.1rem;
  left: -16rem;
  margin: auto;
  position: absolute;
  top: 0;
  width: 11.1rem;
}
.top03 .wrap .cards {
  display: flex;
  gap: 3.5rem;
  margin-left: calc((100vw - 100rem) / 2);
  margin-top: 1.1rem;
  max-width: 113.5rem;
  width: 100%;
}
.top03 .wrap .cards .card {
  width: calc((100% - 3.5rem) / 2);
}
.top03 .wrap .cards .card .img {
  aspect-ratio: 550/396;
  overflow: hidden;
}
.top03 .wrap .cards .card .img img {
  height: 100%;
  max-width: inherit;
  object-fit: cover;
  width: 100%;
}
.top03 .wrap .cards .card .bottom {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  padding-top: 2rem;
}
.top03 .wrap .cards .card .bottom .txt {
  max-width: calc((100% - 11.8rem));
}
.top03 .wrap .cards .card .bottom .txt .comment {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2;
}
.top03 .wrap .cards .card .bottom .txt .profile {
  line-height: calc(28/16);
  margin-top: .6rem;
}
.top03 .wrap .cards .card .bottom .btn_wrap {
  width: 10.6rem;
}
@media screen and (max-width: 768px) {
  .top03 .wrap {
    padding: 6rem 2.3rem 5rem;
  }
  .top03 .copy {
    align-items: flex-start;
    display: flex;
    height: auto;
    justify-content: flex-end;
    margin: 5.7rem auto 0;
    width: 100%;
  }
  .top03 .copy .txt {
    font-size: 2.4rem;
    margin-left: 1rem;
  }
  .top03 .copy .arrows {
    height: 5.3rem;
    left: 0;
    margin-left: 1rem;
    margin-top: .6rem;
    position: relative;
    width: 7.2rem;
  }
  .top03 .copy .arrows .arrow {
    width: 3.08rem;
  }
  .top03 .copy .cross {
    height: auto;
    left: 0;
    margin: 1rem 0 0 1rem;
    position: relative;
    width: 4.74rem;
  }
  .top03 .wrap .cards {
    flex-direction: column;
    gap: 4rem;
    margin-left: 0;
    margin-top: 1rem;
  }
  .top03 .wrap .cards .card {
    width: 100%;
  }
  .top03 .wrap .cards .card .bottom {
    align-items: center;
    display: flex;
    gap: .8rem;
    padding-top: 1rem;
  }
  .top03 .wrap .cards .card .bottom .txt {
    max-width: calc(100% - 8.2rem);
  }
  .top03 .wrap .cards .card .bottom .txt .comment {
    font-size: 1.8rem;
    line-height: calc(28/18);
  }
  .top03 .wrap .cards .card .bottom .btn_wrap {
    width: 8.2rem;
  }
}
/* ---------------------------------------------------------------------------
//  footer01
--------------------------------------------------------------------------- */
.footer01 {
  background: linear-gradient(136deg, #00c073 17.08%,#1d2087 91.58%);
}
.footer01 .wrap {
  padding: 9.2rem 0 6.6rem;
}
.footer01 .copy {
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: center;
}
.footer01 .copy .txt {
  font-size: 4.7rem;
  font-weight: 700;
  line-height: calc(64/44);
  margin-left: 1.4rem;
  white-space: nowrap;
}
.footer01 .copy .arrows {
  height: 21.8rem;
  position: relative;
  width: 30rem;
}
.footer01 .copy .arrows .arrow {
  position: absolute;
  width: 12.7rem;
}
.footer01 .copy .arrows .arrow:nth-of-type(1) {
  left: 0;
}
.footer01 .copy .arrows .arrow:nth-of-type(2) {
  left: 0;
  margin: auto;
  right: 0;
}
.footer01 .copy .arrows .arrow:nth-of-type(3) {
  right: 0;
}
.footer01 .copy .cross {
  margin-left: -.9rem;
  margin-top: 3.8rem;
  width: 12.4rem;
}
.footer01 .btn_wrap {
  margin-top: 3rem;
}
.footer01 .btnA {
  background: transparent;
  border: solid 1px #fff;
  color: #fff;
}
.footer01 .btnA::after {
  background-image: url(../img/btn_arrow02.svg);
}
.footer01 .btnA:hover {
  background: #fff;
  color: #000;
}
.footer02 {
  background: #fff;
}
.footer02 .wrap {
  align-items: center;
  display: flex;
  height: 5rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 124rem;
  padding: 0 2rem;
}
.footer02 .wrap .links {
  color: #1d2087;
  display: flex;
  font-size: 1.4rem;
  gap: 2rem;
  line-height: calc(24/14);
}
.footer02 .wrap .links .link:hover {
  opacity: .7;
}
.footer02 .wrap .copyright {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footer01 .wrap {
    padding: 3.8rem 2.3rem;
  }
  .footer01 .copy .txt {
    font-size: 2.4rem;
    margin-left: .6rem;
  }
  .footer01 .copy .arrows {
    height: 5.3rem;
    width: 7.2rem;
  }
  .footer01 .copy .arrows .arrow {
    width: 3.08rem;
  }
  .footer01 .copy .cross {
    margin-left: -.4rem;
    margin-top: 1.8rem;
    width: 6.1rem;
  }
  .footer01 .btn_wrap {
    margin-top: 2.5rem;
  }
  .footer02 .wrap {
    height: 4rem;
    justify-content: center;
  }
  .footer02 .wrap .links {
    display: none;
  }
  .footer02 .wrap .copyright {
    font-size: 1rem;
  }
}
/* ---------------------------------------------------------------------------
//  モーダル
--------------------------------------------------------------------------- */
#modal-overlay {
  background: #404040;
  display: none;
  height: 100vh;
  left: 0;
  mix-blend-mode: multiply;
  opacity: .5;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 2000;
}
#modal {
  display: none;
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 94rem;
  z-index: 2001;
}
.modal-content {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  overflow: auto;
  padding: 10rem 2rem;
}
.modal-content dl {
  align-items: flex-start;
  display: flex;
  justify-content: center;
  position: relative;
}
.modal-content dl dt {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: 50%;
}
.modal-content dl dt span {
  font-weight: 400;
}
.modal-content dl dt strong {
  font-size: 2.6rem;
  font-weight: 500;
}
.modal-content dl dd {
  font-weight: 500;
  line-height: 2.2;
  text-align: justify;
  width: 50%;
}
#closeModal {
  background-image: url(../img/common/modal_close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 2.4rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
  transition: .3s;
  width: 2.4rem;
}
#closeModal:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  #modal {
    width: calc(100% - 6rem);
  }
  .modal-content {
    max-height: calc(100vh - 16rem);
    padding: 6rem 1.5rem;
  }
  .modal-content dl {
    flex-direction: column;
    gap: 2rem;
  }
  .modal-content dl dt {
    font-size: 1.4rem;
    gap: 1rem;
    width: 100%;
  }
  .modal-content dl dt strong {
    font-size: 2.4rem;
  }
  .modal-content dl dd {
    font-size: 1.4rem;
    width: 100%;
    width: 100%;
  }
  #closeModal {
    height: 2rem;
    width: 2rem;
  }
}
/* ---------------------------------------------------------------------------
//  to_top
--------------------------------------------------------------------------- */
.to_top {
  bottom: 2.5rem;
  display: block;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 2.5rem;
  width: 8rem;
  z-index: 10;
}
.to_top.active {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .to_top {
    bottom: 1.8rem;
    right: 1.5rem;
    width: 5rem;
  }
}
/* ---------------------------------------------------------------------------
//  header
--------------------------------------------------------------------------- */
.header {
  background: #fff;
  height: 8.7rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 90;
}
.header .wrap {
  height: 100%;
  margin: 0 auto;
  max-width: 124rem;
  padding: 0 2rem;
  position: relative;
}
.header .wrap .fix_wrap {
  display: flex;
  justify-content: flex-end;
  left: 0;
  margin: 0 auto;
  max-width: 124rem;
  pointer-events: none;
  position: fixed;
  right: 2rem;
  right: 0;
  top: -1.8rem;
  width: 100%;
  z-index: 100;
}
.header .wrap .fix {
  align-items: center;
  display: flex;
  height: 17.6rem;
  justify-content: center;
  pointer-events: all;
  position: relative;
  right: 2rem;
  width: 17.6rem;
  z-index: 100;
}
.header .wrap .fix::before {
  background-image: url(../img/fix_cross.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  filter: drop-shadow(0 3.659px 3.659px rgba(0, 0, 0, .25));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.header .wrap .fix::after {
  background: #fff;
  bottom: 0;
  content: '';
  height: 4.3rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: .1rem;
}
.header .wrap .fix .link {
  font-size: 1.4rem;
  position: relative;
  text-align: center;
  width: 50%;
  z-index: 2;
}
.header a:hover {
  opacity: .7;
}
.header .wrap .fix .link01 {
  color: #ff0;
  line-height: 1;
}
.header .wrap .fix .link02 {
  color: #fff;
  line-height: 1.7;
}
.header .wrap .global {
  align-items: flex-end;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding-bottom: .4rem;
  padding-right: 20rem;
  width: 100%;
}
.header .wrap .global .logo {
  flex-grow: 1;
  max-width: 32.6rem;
  padding-right: 2rem;
  position: relative;
  z-index: 100;
}
.header .wrap .global .menu {
  width: 53rem;
}
.header .wrap .global .menu .links {
  color: #1d2087;
  display: flex;
  font-size: 1.4rem;
  gap: 1.5rem;
  line-height: 2;
  white-space: nowrap;
  width: 100%;
}
.header .wrap .h_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .header {
    height: 5.8rem;
    position: fixed;
  }
  .header::before {
    background: #fff;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 99;
  }
  .header .wrap {
    padding: 0 1.2rem;
  }
  .header .wrap .fix_wrap {
    right: -1.4rem;
    top: -.7rem;
  }
  .header .wrap .fix {
    height: 6.6rem;
    right: 0;
    width: 6.6rem;
  }
  .header .wrap .fix::before {
    background-image: url(../img/fix_cross.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    filter: drop-shadow(0 3.659px 3.659px rgba(0, 0, 0, .25));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .header .wrap .fix::after {
    display: none;
  }
  .header .wrap .fix .link {
    align-items: center;
    display: flex;
    font-size: 1.4rem;
    height: 100%;
    justify-content: center;
    padding-bottom: .2rem;
    width: 100%;
  }
  .header .wrap .fix .link01 {
    font-size: 0;
  }
  .header .wrap .fix .link01::before {
    content: 'Entry';
    font-size: 1.2rem;
  }
  .header .wrap .fix .link02 {
    display: none;
  }
  .header .wrap .global {
    align-items: center;
    padding-bottom: 0;
    padding-right: 0;
  }
  .header .wrap .global .logo {
    flex-grow: inherit;
    padding-right: 0;
    width: 19.8rem;
  }
  .header .wrap .global .menu {
    background: rgba(255,255,255,.9);
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    position: fixed;
    top: 0;
    transition: .3s;
    width: 100%;
  }
  .header .wrap .global .menu .links {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    gap: 4rem;
    justify-content: center;
    margin: auto;
    padding: 15rem 0 9rem;
  }
  .header.open .wrap .global .menu {
    opacity: 1;
    pointer-events: all;
  }
  .header .wrap .global .menu .corporate {
    align-items: center;
    background: #fff;
    border: solid 1px #1d2087;
    display: flex;
    height: 5.4rem;
    justify-content: center;
    width: 26rem;
  }
  .header .wrap .h_btn {
    display: block;
    height: 100%;
    position: absolute;
    right: 6rem;
    width: 5.5rem;
    z-index: 100;
  }
  .header .wrap .h_btn::before, .header .wrap .h_btn::after {
    background: #1c2084;
    content: '';
    height: 1px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    transition: .3s;
    width: 2.5rem;
  }
  .header .wrap .h_btn::before {
    top: 2rem;
  }
  .header .wrap .h_btn::after {
    top: 3.3rem;
  }
  .header.open  .wrap .h_btn::before {
    top: 2.65rem;
    transform: rotate(225deg);
  }
  .header.open  .wrap .h_btn::after {
    top: 2.65rem;
    transform: rotate(-225deg);
  }
}
/* ---------------------------------------------------------------------------
//  breads
--------------------------------------------------------------------------- */
.bread_wrap {
  background: #fff;
  position: absolute;
  top: 8.7rem;
  width: 100%;
}
.breads {
  display: flex;
  font-size: 1.2rem;
  font-weight: 400;
  gap: .6rem;
  height: 9.6rem;
  left: 0;
  margin: 0 auto;
  max-width: 124rem;
  padding: 2rem 2rem;
}
.breads .bread {
  display: flex;
  gap: .3rem;
}
.breads .bread .link:hover {
  opacity: .7;
}
.breads .bread:last-of-type {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .bread_wrap {
    top: 5.8rem;
  }
  .breads {
    font-size: 1rem;
    gap: .4rem;
    padding: .5rem 2.3rem;
  }
  .breads .bread {
    gap: .2rem;
  }
}
/* ---------------------------------------------------------------------------
//  space
--------------------------------------------------------------------------- */
.space_wrap {
  height: 100vh;
}
.space {
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
.space01 {
  display: flex;
}
.space01 .img {
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  width: calc(100% / 3);
}
.space01 .img:nth-of-type(1) {
  background-image: url(../img/3minutes_bg01.jpg);
}
.space01 .img:nth-of-type(2) {
  background-image: url(../img/3minutes_bg02.jpg);
}
.space01 .img:nth-of-type(3) {
  background-image: url(../img/3minutes_bg03.jpg);
}
.space02 .img {
  background-image: url(../img/interview01_bg01.jpg);
  background-position: left 20% center ;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}
.space03 .img {
  background-image: url(../img/interview02_bg01.jpg);
  background-position: right 20% center ;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .space_wrap {
    height: calc(100vh - 5.8rem);
  }
  .space_wrap:has(.space02), .space_wrap:has(.space03) {
    height: auto;
  }
  .space {
    height: calc(100vh - 5.8rem);
    position: fixed;
    top: 5.8rem;
    width: 100%;
    z-index: -1;
  }
  .space01 {
    flex-direction: column;
  }
  .space01 .img {
    height: calc((100vh - 5.8rem) / 3);
    width: 100%;;
  }
  .space01 .img {
    background-position: center 30%;
    background-size: cover;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .space01 .img:nth-of-type(1) {
    background-image: url(../img/3minutes_bg01.jpg);
  }
  .space01 .img:nth-of-type(2) {
    background-image: url(../img/3minutes_bg02.jpg);
  }
  .space01 .img:nth-of-type(3) {
    background-image: url(../img/3minutes_bg03.jpg);
  }
  .space02, .space03 {
    aspect-ratio: 3/4;
    height: auto;
    position: static;
  }
  .space02 .img {
    aspect-ratio: 3/4;
    height: auto;
  }
  .space03 .img {
    aspect-ratio: 3/4;
    background-position: right 40% center ;
    height: auto;
  }
}
/* ---------------------------------------------------------------------------
//  pageFv01
--------------------------------------------------------------------------- */
.pageFv01 {
  background: #fff;
  position: relative;
}
.pageFv01 .container .wrap {
  margin-top: 17.6rem;
  position: relative;
}
.pageFv01 .container .wrap .copy {
  display: flex;
  flex-direction: column;
  height: 74.1rem;
  justify-content: center;
  margin-left: auto;
  position: relative;
  white-space: nowrap;
  width: 33.6rem;
  z-index: 2;
}
.pageFv01 .container .wrap .copy .h1 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: calc(16/24);
}
.pageFv01 .container .wrap .copy .deco {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 3.5rem;
}
.pageFv01 .container .wrap .copy .deco .cross {
  position: relative;
  top: -1.5rem;
  width: 11.1rem;
}
.pageFv01 .container .wrap .copy .deco .arrows {
  height: 14.4rem;
  position: relative;
  width: 19.8rem;
}
.pageFv01 .container .wrap .copy .deco .arrows .arrow {
  position: absolute;
  width: 8.43rem;
}
.pageFv01 .container .wrap .copy .deco .arrows .arrow:nth-of-type(1) {
  right: 0;
}
.pageFv01 .container .wrap .copy .deco .arrows .arrow:nth-of-type(2) {
  left: 0;
  margin: auto;
  right: 0;
}
.pageFv01 .container .wrap .copy .deco .arrows .arrow:nth-of-type(3) {
  left: 0;
}
.pageFv01 .container .wrap .copy .desc {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: calc(70/48);
  margin-top: 1.7rem;
}
.pageFv01 .container .wrap .pic {
  background-image: url(../img/3minutesFv_pic01.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 74.1rem;
  left: calc(-1 * ((100vw - 100rem) / 2));
  position: absolute;
  top: 0;
  width: calc(50% + 24.7rem + ((100vw - 100rem) / 2));
}
@media screen and (max-width: 768px) {
  .pageFv01 .container .wrap {
    margin-top: 9rem;
    padding-top: 22rem;
  }
  .pageFv01 .container .wrap .copy {
    background: rgba(255,255,255,1);
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    padding: 3rem 2.3rem 0;
    width: calc(100% - 2.3rem);
  }
  .pageFv01 .container .wrap .copy .h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    width: 100%;
  }
  .pageFv01 .container .wrap .copy .deco {
    align-items: flex-start;
    gap: .9rem;
    margin-top: 3rem;
  }
  .pageFv01 .container .wrap .copy .deco .cross {
    top: -1.8rem;
    width: 4.74rem;
  }
  .pageFv01 .container .wrap .copy .deco .arrows {
    height: 5.3rem;
    top: -.8rem;
    width: 7.2rem;
  }
  .pageFv01 .container .wrap .copy .deco .arrows .arrow {
    width: 4.8rem;
    width: 3.08rem;
  }
  .pageFv01 .container .wrap .copy .deco .arrows .arrow:nth-of-type(1) {
    right: 0;
  }
  .pageFv01 .container .wrap .copy .deco .arrows .arrow:nth-of-type(2) {
    left: 0;
    margin: auto;
    right: 0;
  }
  .pageFv01 .container .wrap .copy .deco .arrows .arrow:nth-of-type(3) {
    left: 0;
  }
  .pageFv01 .container .wrap .copy .desc {
    font-size: 2.4rem;
    line-height: calc(34/24);
    margin-left: .9rem;
  }
  .pageFv01 .container .wrap .pic {
    height: 25rem;
    left: 0;
    width: calc(100% - 2.3rem);
  }
}
/* ---------------------------------------------------------------------------
//  minutes01
--------------------------------------------------------------------------- */
.minutes01 {
  background: #fff;
  position: relative;
}
.minutes01 .wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 12rem 3.2rem 10rem;
  position: relative;
  text-align: center;
}
.minutes01 .wrap .head_ttl {
  background: linear-gradient(136deg, #00c073 17.08%, #1d2087 91.58%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 3.6rem;
  text-align: center;
  -webkit-text-fill-color: transparent;
}
.minutes01 .wrap .desc {
  font-size: 2.4rem;
  line-height: calc(47/24);
  margin-top: 3rem;
}
.minutes01 .wrap .support {
  margin-top: 8.4rem;
  position: relative;
  width: 100%;
}
.minutes01 .wrap .support .ttl {
  background: #fff;
  font-size: 4rem;
  font-weight: 700;
  left: 0;
  line-height: 1.4;
  padding: 2rem 1.5rem 2rem 0;
  position: absolute;
  text-align: left;
  top: 6rem;
  z-index: 3;
}
.minutes01 .wrap .support .ttl span {
  display: inline-block;
  margin-top: 1rem;
  width: 31.5rem;
}
@media screen and (max-width:768px) {
  .minutes01 .wrap {
    padding: 6rem 2.3rem;
  }
  .minutes01 .wrap .head_ttl {
    font-size: 2.4rem;
  }
  .minutes01 .wrap .desc {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 4rem;
  }
  .minutes01 .wrap .support {
    margin-top: 4rem;
    padding-top: 10rem;
    position: relative;
    width: 100%;
  }
  .minutes01 .wrap .support .ttl {
    font-size: 1.8rem;
    top: 0;
  }
  .minutes01 .wrap .support .ttl span {
    margin-top: .6rem;
    width: 14.5rem;
  }
  .minutes01 .wrap .support .img {
    left: calc(-1 * (2.5vw + 2.3rem));
    position: relative;
    width: 105vw;
  }
}
/* ---------------------------------------------------------------------------
//  minutes02
--------------------------------------------------------------------------- */
.minutes02 {
  /* background: #fff; */
  position: relative;
}
.minutes02 .container {
  display: flex;
  flex-wrap: wrap;
}
.minutes02 .wrap {
  color: #fff;
  position: relative;
}
.minutes02 .wrap::before {
  background-image: repeating-linear-gradient(
  -45deg,
  lightgray 0,           /* 線の色 */
  lightgray 1px,         /* 線の太さ */
  transparent 1px,  /* 線の末尾 */
  transparent 1rem  /* 次の線までの間隔 */
  );
  content: '';
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  opacity: .1;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.minutes02 .wrap01 {
  background: #4fb485;
  padding: 7.8rem 0 9rem;
  width: 100%;
  z-index: 1;
}
.minutes02 .wrap02 {
  background: #3d8c81;
  padding: 9rem 0 10rem;
  padding-left: calc((100vw - 100rem) /2);
  padding-right: 4rem;
  width: 50%;
}
.minutes02 .wrap03 {
  background: #0c747c;
  padding: 9rem 0 10rem;
  padding-left: 4rem;
  padding-right: calc((100vw - 100rem) /2);
  width: 50%;
}
.minutes02 .wrap03::after {
  background-image: url(../img/3minutes02_img01.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  width: 30.5rem;
}
/* .minutes02 .wrap .inner {
  position: relative;
  z-index: 3;
} */
.minutes02 .wrap01 .inner {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}

.minutes02 .wrap01 .inner .head {
  display: flex;
  flex-direction: column;
  left: 0;
  position: absolute;
  top: .5rem;
}
.minutes02 .wrap01 .inner .head .eng {
  align-items: center;
  display: flex;
  font-size: 2.4rem;
  gap: .9rem;
}
.minutes02 .wrap01 .inner .head .eng .img {
  width: 11rem;
}
.minutes02 .wrap01 .inner .head .ttl {
  font-size: 3.2rem;
  line-height: .5;
  margin-top: 2.7rem;
}
.minutes02 .wrap01 .inner .head + .desc {
  display: flex;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: calc(70/48);
  margin-bottom: 9rem;
  margin-left: auto;
}
.minutes02 .wrap .group {
  height: 100%;
  position: relative;
  width: 100%;
}
.minutes02 .wrap .group .ttl {
  align-items: center;
  background: #fff;
  color: #12607f;
  display: flex;
  font-size: 3.6rem;
  height: 5.7rem;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 3;
}
.minutes02 .wrap .group .ttl::before {
  background: #fff;
  content: '';
  height: 100%;
  position: absolute;
  right: 100%;
  width: 100vw;
}
.minutes02 .wrap01 .group .ttl::before {
  right: 100%;
}
.minutes02 .wrap02 .group .ttl::before {
  right: 100%;
}
.minutes02 .wrap03 .group .ttl::before {
  left: 100%;
}
.minutes02 .wrap .group .desc {
  line-height: 1.75;
  margin-top: 3rem;
  position: relative;
  text-align: justify;
  z-index: 3;
}
.minutes02 .wrap .group .pic {
  position: relative;
  z-index: 3;
}
.minutes02 .wrap .group .gunma {
  filter: drop-shadow(0 0 .8rem rgba(0, 0, 0, .25));
  position: absolute;
  right: -4.6rem;
  top: -8.5rem;
  width: 47rem;
  z-index: 4;
}
.minutes02 .wrap .group .gunma .arrows {
  height: 6.47rem;
  left: 19.1rem;
  position: absolute;
  top: 13rem;
  width: 4.7rem;
}
.minutes02 .wrap .group .gunma .arrows .arrow {
  position: absolute;
  width: 100%;
}
.minutes02 .wrap .group .gunma .arrows .arrow:nth-of-type(1) {
  top: 0;
}
.minutes02 .wrap .group .gunma .arrows .arrow:nth-of-type(2) {
  bottom: 0;
  margin: auto;
  top: 0;
}
.minutes02 .wrap .group .gunma .arrows .arrow:nth-of-type(3) {
  bottom: 0;
}
.minutes02 .wrap .group .gunma .sup {
  bottom: 7.5rem;
  font-size: 1rem;
  position: absolute;
  right: 4.6rem;
}
.minutes02 .wrap03 .group .machine01 {
  mix-blend-mode: multiply;
  position: absolute;
  right: -28rem;
  top: 19.4rem;
  width: 55rem;
  z-index: 3;
}
.minutes02 .wrap03 .group .machine02 {
  bottom: -17.3rem;
  left: -14rem;
  position: absolute;
  width: 64.8rem;
  z-index: 4;
}
.minutes02 .wrap03 .group .machine02 img {
  filter: drop-shadow(0 .4rem .4rem rgba(0, 0, 0, .25));
}
@media screen and (max-width:768px) {
  .minutes02 .container {
    display: block;
  }
  .minutes02 .wrap01 {
    padding: 6rem 2.3rem;
    width: 100%;
    z-index: 1;
  }
  .minutes02 .wrap02 {
    background: #3d8c81;
    padding: 6rem 2.3rem!important;
    width: 100%;
  }
  .minutes02 .wrap03 {
    background: #0c747c;
    padding: 6rem 2.3rem 21rem!important;
    width: 100%;
  }
  .minutes02 .wrap03::after {
    background-image: url(../img/3minutes02_img01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    width: 30.5rem;
  }
  /* .minutes02 .wrap .inner {
  position: relative;
  z-index: 3;
} */
  .minutes02 .wrap01 .inner {
    display: block;
  }
  .minutes02 .wrap01 .inner .head {
    position: static;
  }
  .minutes02 .wrap01 .inner .head .eng {
    font-size: 1.6rem;
  }
  .minutes02 .wrap01 .inner .head .eng .img {
    width: 4.74rem;
  }
  .minutes02 .wrap01 .inner .head .ttl {
    font-size: 2rem;
    margin-top: 2rem;
  }
  .minutes02 .wrap01 .inner .head + .desc {
    font-size: 2.4rem;
    margin-bottom: 4rem;
    margin-top: 4rem;
  }
  .minutes02 .wrap .group .ttl {
    font-size: 2rem;
    height: 4rem;
    margin-bottom: 2rem;
  }
  .minutes02 .wrap01 .group .ttl::before {
    left: 100%;
    right: inherit;
  }
  .minutes02 .wrap02 .group .ttl::before {
    right: 100%;
  }
  .minutes02 .wrap03 .group .ttl::before {
    left: 100%;
  }
  .minutes02 .wrap .group .desc {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  .minutes02 .wrap .group .pic {
    position: relative;
    z-index: 3;
  }
  .minutes02 .wrap .group .gunma {
    margin-top: 2rem;
    position: relative;
    right: -1.6rem;
    top: 0;
    width: 100%;
  }
  .minutes02 .wrap .group .gunma .arrows {
    left: 13rem;
    top: 7rem;
  }
  .minutes02 .wrap .group .gunma .sup {
    bottom: 0;
    font-size: 1rem;
    right: 2rem;
  }
  .minutes02 .wrap03 .group .machine01 {
    right: -12rem;
    top: 7rem;
    width: 45rem;
  }
  .minutes02 .wrap03 .group .machine02 {
    bottom: -25.3rem;
    left: -9rem;
    width: 40rem;
  }
}
/* ---------------------------------------------------------------------------
//  minutes03
--------------------------------------------------------------------------- */
.minutes03 {
  background: #fff;
  position: relative;
}
.minutes03 .wrap {
  padding: 14rem 0 23rem;
}
.minutes03 .wrap .head .eng {
  align-items: center;
  display: flex;
  font-size: 2.4rem;
  gap: .9rem;
}
.minutes03 .wrap .head .eng .txt {
  background: linear-gradient(136deg, #00c073 17.08%, #1d2087 91.58%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.minutes03 .wrap .head .eng .img {
  width: 11rem;
}
.minutes03 .wrap .head .ttl {
  font-size: 3.2rem;
  line-height: .5;
  margin-top: 2.7rem;
}
.minutes03 .wrap .belt {
  background: #3b8fa6;
  margin-top: 2.7rem;
  padding: 1.7rem 0;
  position: relative;
}
.minutes03 .wrap .belt::before {
  background: #3b8fa6;
  content: '';
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  width: 100vw;
}
.minutes03 .wrap .belt .desc {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: calc(40/24);
}
.minutes03 .wrap .belt .license {
  bottom: 2rem;
  box-shadow: .4rem .4rem .4rem 0 rgba(0, 0, 0, .25);
  height: 27.3rem;
  overflow: hidden;
  position: absolute;
  width: 19rem;
}
.minutes03 .wrap .belt .license01 {
  right: 26.8rem;
}
.minutes03 .wrap .belt .license02 {
  right: 4rem;
}
.minutes03 .wrap .belt .license img {
  height: 100%;
  max-width: inherit;
  object-fit: cover;
  width: 100%;
}
.minutes03 .wrap .points {
  margin-top: 7.7rem;
}
.minutes03 .wrap .points .point {
  display: flex;
}
.minutes03 .wrap .points .point + .point {
  margin-top: 6rem;
}
.minutes03 .wrap .points .point .txt {
  padding-right: 3.9rem;
  width: 50%;
}
.minutes03 .wrap .points .point .txt .ttl {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: calc(70/48);
}
.minutes03 .wrap .points .point .txt .desc {
  line-height: 1.75;
  margin-top: 6rem;
  text-align: justify;
}
.minutes03 .wrap .points .point .img {
  height: 36.4rem;
  position: relative;
  width: 50%;
}
.minutes03 .wrap .points .point .img img {
  height: 100%;
  left: 0;
  max-width: 64rem;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: calc(100% + ((100vw - 100rem) / 2));
}
@media screen and (max-width:768px) {
  .minutes03 .wrap {
    padding: 6rem 2.3rem 12rem;
  }
  .minutes03 .wrap .head .eng {
    font-size: 1.6rem;
  }
  .minutes03 .wrap .head .eng .img {
    width: 4.74rem;
  }
  .minutes03 .wrap .head .ttl {
    font-size: 2rem;
    margin-top: 2rem;
  }
  .minutes03 .wrap .belt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2.7rem;
    padding: 2rem 1.7rem 2rem 0;
  }
  .minutes03 .wrap .belt .desc {
    font-size: 1.7rem;
  }
  .minutes03 .wrap .belt .license {
    aspect-ratio: 190/273;
    height: auto;
    margin-top: 2rem;
    position: static;
    width: calc((100% - 1.7rem) / 2);
  }
  .minutes03 .wrap .points {
    margin-top: 5rem;
  }
  .minutes03 .wrap .points .point {
    flex-direction: column;
  }
  .minutes03 .wrap .points .point + .point {
    margin-top: 5rem;
  }
  .minutes03 .wrap .points .point .txt {
    padding-right: 0;
    width: 100%;
  }
  .minutes03 .wrap .points .point .txt .ttl {
    font-size: 2.4rem;
  }
  .minutes03 .wrap .points .point:nth-of-type(even) .txt .ttl {
    text-align: right;
  }
  .minutes03 .wrap .points .point .txt .desc {
    margin-top: 1.5rem;
  }
  .minutes03 .wrap .points .point .img {
    aspect-ratio: 640/364;
    height: auto;
    margin-top: 2rem;
    position: relative;
    width: calc(100% + 2.3rem);
  }
  .minutes03 .wrap .points .point:nth-of-type(even) .img {
    left: -2.3rem;
  }
  .minutes03 .wrap .points .point .img img {
    max-width: 100%;
    position: relative;
    width: 100%;
  }
}
/* ---------------------------------------------------------------------------
//  team01
--------------------------------------------------------------------------- */
.team01 {
  background: #f3f2f2;
  position: relative;
}
.team01 .wrap {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  padding: 3rem 0 7rem;
  position: relative;
}
.team01 .copy {
  align-items: center;
  display: flex;
  height: 21.8rem;
  left: -9rem;
  position: absolute;
  top: -10.9rem;
}
.team01 .copy .txt {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: calc(64/44);
  margin-left: 2rem;
  white-space: nowrap;
}
.team01 .copy .arrows {
  height: 21.8rem;
  position: relative;
  width: 30rem;
}
.team01 .copy .arrows .arrow {
  position: absolute;
  width: 12.7rem;
}
.team01 .copy .arrows .arrow:nth-of-type(1) {
  left: 0;
}
.team01 .copy .arrows .arrow:nth-of-type(2) {
  left: 0;
  margin: auto;
  right: 0;
}
.team01 .copy .arrows .arrow:nth-of-type(3) {
  right: 0;
}
.team01 .copy .cross {
  height: 11.1rem;
  margin-left: 2rem;
  width: 11.1rem;
}
.team01 .wrap .cards {
  display: flex;
  gap: 5.5rem;
  margin-top: 6.5rem;
  width: 100%;
}
.team01 .wrap .cards .card {
  background: #fff;
  padding: 2.5rem;
  width: calc((100% - 5.5rem) / 2);
}
.team01 .wrap .cards .card .img {
  aspect-ratio: 550/396;
  overflow: hidden;
}
.team01 .wrap .cards .card .img img {
  height: 100%;
  max-width: inherit;
  object-fit: cover;
  width: 100%;
}
.team01 .wrap .cards .card .bottom {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  padding-top: 2rem;
}
.team01 .wrap .cards .card .bottom .txt {
  max-width: calc((100% - 11.8rem));
  white-space: nowrap;
}
.team01 .wrap .cards .card .bottom .txt .comment {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2;
}
.team01 .wrap .cards .card .bottom .txt .profile {
  line-height: calc(28/16);
  margin-top: .6rem;
}
.team01 .wrap .cards .card .bottom .btn_wrap {
  position: relative;
  width: 10.6rem;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .team01 .wrap {
    align-items: center;
    padding: 8rem 2.3rem 5rem;
  }
  .team01 .copy {
    align-items: flex-start;
    display: flex;
    height: auto;
    justify-content: flex-end;
    left: -2.3rem;
    margin: 5.7rem auto 0;
    width: 100%;
  }
  .team01 .copy .txt {
    font-size: 2.4rem;
    margin-left: 1rem;
  }
  .team01 .copy .arrows {
    height: 5.3rem;
    left: 0;
    margin-left: 1rem;
    margin-top: .6rem;
    position: relative;
    width: 7.2rem;
  }
  .team01 .copy .arrows .arrow {
    width: 3.08rem;
  }
  .team01 .copy .cross {
    height: auto;
    left: 0;
    margin: 1rem 0 0 1rem;
    position: relative;
    width: 4.74rem;
  }
  .team01 .wrap .cards {
    flex-direction: column;
    gap: 4rem;
    margin-left: 0;
    margin-top: 4rem;
  }
  .team01 .wrap .cards .card {
    padding: 1.7rem;
    width: 100%;
  }
  .team01 .wrap .cards .card .bottom {
    align-items: center;
    display: flex;
    gap: .8rem;
    padding-top: 1rem;
  }
  .team01 .wrap .cards .card .bottom .txt {
    max-width: calc(100% - 8.2rem);
  }
  .team01 .wrap .cards .card .bottom .txt .comment {
    font-size: 1.8rem;
    line-height: calc(28/18);
  }
  .team01 .wrap .cards .card .bottom .btn_wrap {
    transform: scale(.7);
    width: 8.2rem;
  }
}
/* ---------------------------------------------------------------------------
//  team02
--------------------------------------------------------------------------- */
.team02 {
  background: #f3f2f2;
  position: relative;
}
.team02 .wrap {
  display: flex;
  justify-content: space-between;
  padding: 9rem 0 7rem;
}
.team02 .wrap .head {
  align-items: flex-start;
  display: flex;
  flex-direction: column-reverse;
  margin-top: -2rem;
  width: 50%;
}
.team02 .wrap .head .ttlA {
  margin-top: 2rem;
  text-align: left;
}
.team02 .copy {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  top: -10.9rem;
}
.team02 .copy .txt {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: calc(64/44);
  margin-top: 2rem;
  white-space: nowrap;
  width: 100%;
}
.team02 .copy .arrows {
  height: 21.8rem;
  position: relative;
  width: 30rem;
}
.team02 .copy .arrows .arrow {
  position: absolute;
  width: 12.7rem;
}
.team02 .copy .arrows .arrow:nth-of-type(1) {
  left: 0;
}
.team02 .copy .arrows .arrow:nth-of-type(2) {
  left: 0;
  margin: auto;
  right: 0;
}
.team02 .copy .arrows .arrow:nth-of-type(3) {
  right: 0;
}
.team02 .copy .cross {
  height: 11.1rem;
  margin-left: 2rem;
  width: 11.1rem;
}
.team02 .wrap .cards {
  width: calc((100% - 5.5rem) / 2);
}
.team02 .wrap .cards .card {
  background: #fff;
  padding: 2.5rem;
}
.team02 .wrap .cards .card .img {
  aspect-ratio: 550/396;
  overflow: hidden;
}
.team02 .wrap .cards .card .img img {
  height: 100%;
  max-width: inherit;
  object-fit: cover;
  width: 100%;
}
.team02 .wrap .cards .card .bottom {
  align-items: center;
  display: flex;
  gap: 1.2rem;
  padding-top: 2rem;
}
.team02 .wrap .cards .card .bottom .txt {
  max-width: calc((100% - 11.8rem));
  white-space: nowrap;
}
.team02 .wrap .cards .card .bottom .txt .comment {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2;
}
.team02 .wrap .cards .card .bottom .txt .profile {
  line-height: calc(28/16);
  margin-top: .6rem;
}
.team02 .wrap .cards .card .bottom .btn_wrap {
  position: relative;
  width: 10.6rem;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .team02 .wrap {
    align-items: center;
    flex-direction: column;
    padding: 8rem 2.3rem 5rem;
  }
  .team02 .wrap .head {
    display: block;
    margin-top: 0;
    width: 100%;
  }
  .team02 .wrap .head .ttlA {
    margin-top: 0;
    text-align: center;
  }
  .team02 .copy {
    align-items: flex-start;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    left: -2.3rem;
    margin: 5.7rem auto 0;
    position: absolute;
    top: -10.9rem;
    width: 100%;
  }
  .team02 .copy .txt {
    font-size: 2.4rem;
    margin-left: 1rem;
    margin-top: 0;
    width: auto;
  }
  .team02 .copy .arrows {
    height: 5.3rem;
    left: 0;
    margin-left: 1rem;
    margin-top: .6rem;
    position: relative;
    width: 7.2rem;
  }
  .team02 .copy .arrows .arrow {
    width: 3.08rem;
  }
  .team02 .copy .cross {
    height: auto;
    left: 0;
    margin: 1rem 0 0 1rem;
    position: relative;
    width: 4.74rem;
  }
  .team02 .wrap .cards {
    flex-direction: column;
    gap: 4rem;
    margin-left: 0;
    margin-top: 4rem;
    width: 100%;
  }
  .team02 .wrap .cards .card {
    padding: 1.7rem;
    width: 100%;
  }
  .team02 .wrap .cards .card .bottom {
    align-items: center;
    display: flex;
    gap: .8rem;
    padding-top: 1rem;
  }
  .team02 .wrap .cards .card .bottom .txt {
    max-width: calc(100% - 8.2rem);
  }
  .team02 .wrap .cards .card .bottom .txt .comment {
    font-size: 1.8rem;
    line-height: calc(28/18);
  }
  .team02 .wrap .cards .card .bottom .btn_wrap {
    transform: scale(.7);
    width: 8.2rem;
  }
}
/* ---------------------------------------------------------------------------
//  interviewFv
--------------------------------------------------------------------------- */
.interviewFv {
  background: #fff;
  position: relative;
}
.interviewFv .container .wrap {
  align-items: center;
  display: flex;
  height: 65.2rem;
  margin-top: 17.6rem;
  position: relative;
}
.interviewFv .container .wrap .copy {
  background: #fff;
  padding: 4rem 6.6rem 2rem 0;
  position: relative;
  white-space: nowrap;
  z-index: 2;
}
.interviewFv .container .wrap .copy::before {
  background: #fff;
  content: '';
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  width: 100vw;
}
.interviewFv .container .wrap .copy .h1 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: calc(16/24);
}
.interviewFv .container .wrap .copy .deco {
  align-items: center;
  display: flex;
  gap: 2rem;
  margin-top: 8rem;
}
.interviewFv .container .wrap .copy .deco .cross {
  position: relative;
  width: 11.1rem;
}
.interviewFv .container .wrap .copy .deco .arrows {
  height: 14.4rem;
  position: relative;
  width: 19.8rem;
}
.interviewFv .container .wrap .copy .deco .arrows .arrow {
  position: absolute;
  width: 8.43rem;
}
.interviewFv .container .wrap .copy .deco .arrows .arrow:nth-of-type(1) {
  right: 0;
}
.interviewFv .container .wrap .copy .deco .arrows .arrow:nth-of-type(2) {
  left: 0;
  margin: auto;
  right: 0;
}
.interviewFv .container .wrap .copy .deco .arrows .arrow:nth-of-type(3) {
  left: 0;
}
.interviewFv .container .wrap .copy .desc {
  font-size: 4rem;
  font-weight: 700;
  line-height: calc(70/48);
  margin-top: 2rem;
}
.interviewFv .container .pic {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.interviewFv01 .container .pic {
  background-image: url(../img/interview_fv01.jpg);
}
.interviewFv02 .container .pic {
  background-image: url(../img/interview_fv02.jpg);
}
@media screen and (max-width: 768px) {
  .interviewFv .container {
    margin-top: 9rem;
  }
  .interviewFv .container .wrap {
    height: auto;
    justify-content: center;
    margin-top: auto;
  }
  .interviewFv .container .wrap .copy {
    display: flex;
    flex-wrap: nowrap;
    flex-wrap: wrap;
    padding: 2rem 2.3rem 0;
    position: relative;
    width: 100%;
  }
  .interviewFv .container .wrap .copy::before {
    display: none;
  }
  .interviewFv .container .wrap .copy .h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    width: 100%;
  }
  .interviewFv .container .wrap .copy .deco {
    align-items: flex-start;
    gap: .9rem;
    justify-content: flex-end;
    margin-top: 1rem;
    padding-right: .9rem;
    width: 40%;
  }
  .interviewFv .container .wrap .copy .deco .cross {
    top: -.5rem;
    width: 4.74rem;
  }
  .interviewFv .container .wrap .copy .deco .arrows {
    height: 5.3rem;
    top: -.8rem;
    width: 7.2rem;
  }
  .interviewFv .container .wrap .copy .deco .arrows .arrow {
    width: 4.8rem;
    width: 3.08rem;
  }
  .pageFv01 .container .wrap .copy .deco .arrows .arrow:nth-of-type(1) {
    right: 0;
  }
  .interviewFv .container .wrap .copy .deco .arrows .arrow:nth-of-type(2) {
    left: 0;
    margin: auto;
    right: 0;
  }
  .interviewFv .container .wrap .copy .deco .arrows .arrow:nth-of-type(3) {
    left: 0;
  }
  .interviewFv .container .wrap .copy .desc {
    font-size: 1.8rem;
    line-height: calc(34/24);
    margin-top: 0;
    width: 60%;
  }
  .interviewFv .container  .pic {
    height: 25rem;
    left: 0;
    position: static;
    width: 100%;
  }
}
/* ---------------------------------------------------------------------------
//  interview01
--------------------------------------------------------------------------- */
.interview01 {
  background: #fff;
  position: relative;
}
.interview01 .wrap {
  padding: 12rem 0;
}
.interview01 .wrap .profile {
  display: flex;
  gap: 5.6rem;
}
.interview01 .wrap .profile .img {
  width: calc((100% - 5.6rem) / 2);
}
.interview01 .wrap .profile .img img {
  height: 100%;
  max-width: inherit;
  object-fit: cover;
  width: 100%;
}
.interview01 .wrap .profile .txt {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  width: calc((100% - 5.6rem) / 2);
}
.interview01 .wrap .profile .txt .ttl {
  background: linear-gradient(136deg, #00c073 17.08%,#1d2087 91.58%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 2rem;
  text-align: center;
  -webkit-text-fill-color: transparent;
}
.interview01 .wrap .profile .txt .name {
  font-size: 2.8rem;
  line-height: 2;
  margin-top: auto;
}
.interview01 .wrap .profile .txt .name small {
  font-size: 1.6rem;
}
.interview01 .wrap .profile .txt .desc {
  font-size: 1.8rem;
  line-height: 1.77;
  margin-top: .7rem;
  text-align: justify;
}
.interview01 .wrap .comment {
  background: #000;
  border-radius: 2rem;
  margin-top: 10rem;
  padding: .1rem;
  position: relative;
}
.interview01 .wrap .comment::before {
  background-image: url(../img/tri.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 4.4rem;
  content: '';
  height: 6rem;
  left: 6rem;
  position: absolute;
  top: -5.5rem;
  width: 4.4rem;
}
.interview01 .wrap .comment .inner {
  align-items: center;
  background: #fff;
  border-radius: 2rem;
  display: flex;
  gap: 5.6rem;
  height: 27rem;
  padding: 6rem 2.5rem 2.5rem;
  position: relative;
}
.interview01 .wrap .comment .inner .ttl {
  align-items: center;
  background-color: #ba1d20;
  background-image: url(../img/plus01.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 3.8rem;
  border-radius: 100rem;
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  height: 4.5rem;
  left: 0;
  margin: auto;
  padding-left: 4.5rem;
  position: absolute;
  right: 0;
  top: -2.25rem;
  width: 35.4rem;
}
.interview01 .wrap .comment .inner .desc01 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  width: calc((100% - 5.6rem) / 2);
}
.interview01 .wrap .comment .inner .desc02 {
  line-height: 1.75;
  text-align: justify;
  width: calc((100% - 5.6rem) / 2);
}
@media screen and (max-width: 768px) {
  .interview01 .wrap {
    padding: 6rem 2.3rem;
  }
  .interview01 .wrap .profile {
    display: block;
  }
  .interview01 .wrap .profile .img {
    width: 100%;
  }
  .interview01 .wrap .profile .txt {
    align-items: center;
    width: 100%;
  }
  .interview01 .wrap .profile .txt .ttl {
    font-size: 2.4rem;
    margin-bottom: 0;
    margin-top: 2rem;
  }
  .interview01 .wrap .profile .txt .name {
    font-size: 2rem;
    margin-top: 1rem;
  }
  .interview01 .wrap .profile .txt .name small {
    font-size: 1.2rem;
  }
  .interview01 .wrap .profile .txt .desc {
    font-size: 1.6rem;
    line-height: 1.75;
  }
  .interview01 .wrap .comment {
    border-radius: 1rem;
    margin-top: 6rem;
  }
  .interview01 .wrap .comment::before {
    left: 1rem;
    top: -4rem;
  }
  .interview01 .wrap .comment .inner {
    border-radius: 1rem;
    display: block;
    gap: 5.6rem;
    height: auto;
    padding: 5rem 1.7rem 2.5rem;
  }
  .interview01 .wrap .comment .inner .ttl {
    background-size: 3rem;
    font-size: 1.6rem;
    height: 6rem;
    left: inherit;
    margin: 0;
    right: 1rem;
    top: -3rem;
    width: 26rem;
  }
  .interview01 .wrap .comment .inner .desc01 {
    font-size: 2.4rem;
    width: 100%;
  }
  .interview01 .wrap .comment .inner .desc02 {
    margin-top: 1.5rem;
    width: 100%;
  }
}
/* ---------------------------------------------------------------------------
//  interview02
--------------------------------------------------------------------------- */
.interview02 {
  background: #fff;
  position: relative;
}
.interview02 .wrap {
  padding: 12rem 0;
}
.interview02 .wrap .flex {
  display: flex;
  gap: 5.6rem;
}
.interview02 .wrap .flex > div {
  width: calc((100% - 5.6rem) / 2);
}
.interview02 .wrap .flex .txt .ttl {
  align-items: center;
  background-color: #b0d6c7;
  background-image: url(../img/plus01.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 3.8rem;
  border-radius: 100rem;
  color: #fff;
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  height: 4.5rem;
  left: 0;
  margin: auto;
  margin-bottom: 3.2rem;
  padding-left: 4.5rem;
  width: 100%;
}
.interview02 .wrap .flex .txt .desc {
  line-height: 1.75;
  margin-top: 3.2rem;
  text-align: justify;
}
.interview02 .wrap .flex .txt .desc + .ttl {
  margin-top: 10rem;
}
.interview02 .wrap .flex .txt .copy {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
}
.interview02 .wrap .flex .txt .copy strong {
  color: #05a577;
}
.interview02 .wrap .flex .img:has(.frame) {
  height: 74.1rem;
  position: relative;
}
.interview02 .wrap .flex .img .frame img {
  height: 100%;
  max-width: inherit;
  object-fit: cover;
  object-position: right;
  width: 100%;
}
.interview02 .wrap .flex .img .frame {
  height: 100%;
  max-width: 58.6rem;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: calc(100% + ((100vw - 100rem) / 2));
}
.interview02 .wrap .flex01 .img .frame {
  right: 0;
}
.interview02 .wrap .flex02 {
  flex-direction: row-reverse;
  margin-top: 7rem;
}
.interview02 .wrap .flex03 {
  align-items: center;
  flex-direction: row-reverse;
  margin-top: 12rem;
}
.interview02 .wrap .flex03 .img .frame {
  left: 0;
}
.interview02 .wrap .flex03 .txt .ttl {
  background-color: #ba1d20;
}
@media screen and (max-width: 768px) {
  .interview02 .wrap {
    padding: 6rem 2.3rem  12rem;
  }
  .interview02 .wrap .flex {
    flex-direction: column;
    gap: 4rem;
  }
  .interview02 .wrap .flex > div {
    width: 100%;
  }
  .interview02 .wrap .flex .txt .ttl {
    background-size: 3rem;
    font-size: 1.6rem;
    height: 6rem;
  }
  .interview02 .wrap .flex .txt .desc + .ttl {
    margin-top: 4rem;
  }
  .interview02 .wrap .flex .txt .copy {
    font-size: 2.7rem;
    white-space: nowrap;
  }
  .interview02 .wrap .flex .txt .copy + .desc {
    margin-top: 1.6rem;
  }
  .interview02 .wrap .flex .img:has(.frame) {
    aspect-ratio: 586/741;
    height: auto;
    width: calc(100vw - 2.3rem);
  }
  .interview02 .wrap .flex .img .frame img {
    height: 100%;
    max-width: inherit;
    object-fit: cover;
    object-position: right;
    width: 100%;
  }
  .interview02 .wrap .flex .img .frame {
    width: 100%;
  }
  .interview02 .wrap .flex01 {
    flex-direction: column-reverse;
  }
  .interview02 .wrap .flex01 .img .frame {
    right: 2.3rem;
  }
  .interview02 .wrap .flex02 {
    flex-direction: column-reverse;
    margin-top: 6rem;
  }
  .interview02 .wrap .flex03 {
    align-items: stretch;
    flex-direction: column-reverse;
    margin-top: 6rem;
  }
}
/* ---------------------------------------------------------------------------
//  simpleFv
--------------------------------------------------------------------------- */
.simpleFv {
  background: linear-gradient(-287deg, #00c073 14.06%, #1d2087 70.93%);
  position: relative;
}
.simpleFv .container .wrap {
  color: #fff;
  margin-top: 17.6rem;
  padding: 9.6rem 0 9.6rem;
  position: relative;
}
.simpleFv .container .wrap .ttl {
  font-size: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .simpleFv .container .wrap {
    margin-top: 9rem;
    padding: 6rem 2.3rem;
  }

  .simpleFv .container .wrap .ttl {
    font-size: 2.7rem;
    text-align: center;
  }
}
/* ---------------------------------------------------------------------------
//  entry01
--------------------------------------------------------------------------- */
.entry01 {
  background: #fff;
  position: relative;
}
.entry01 .wrap {
  padding: 2rem 0 12rem;
}
.entry01 .wrap .btns {
  display: flex;
  font-size: 2rem;
  gap: 6rem;
  justify-content: center;
  line-height: 1;
  margin-bottom: 11rem;
  position: relative;
}
.entry01 .wrap .btns::before {
  background: #000;
  content: '';
  height: 100% ;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: .1rem;
  width: 1px;
}
.entry01 .wrap .btns .btn:hover {
  opacity: .7;
}
.entry01 .wrap .job + .job {
  margin-top: 9rem;
}
.entry01 .wrap .job .ttl {
  border: solid 1px #878787;
  font-size: 2.2rem;
  margin-bottom: 5.6rem;
  padding: 2rem 3rem;
}
.entry01 .wrap .job .requirements dl {
  border-bottom: 1px solid #cacaca;
  display: flex;
  line-height: 1.75;
}
.entry01 .wrap .job .requirements dl:first-of-type {
  border-top: 1px solid #cacaca;
}
.entry01 .wrap .job .requirements dl dt {
  background: #fbf9f3;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 1.5rem 4.8rem ;
  width: 16.7rem;
}
.entry01 .wrap .job .requirements dl dd {
  padding: 1.5rem 4.8rem;
  width: calc(100% - 16.7rem);
}
@media screen and (max-width:768px) {
  .entry01 .wrap {
    padding: 4rem 2.3rem 6rem;
  }
  .entry01 .wrap .btns {
    font-size: 1.8rem;
    gap: 4rem;
    margin-bottom: 10rem;
  }
  .entry01 .wrap .job + .job {
    margin-top: 6rem;
  }
  .entry01 .wrap .job .ttl {
    font-size: 2rem;
    margin-bottom: 3rem;
    padding: 1.6rem 2.4rem;
  }
  .entry01 .wrap .job .requirements dl {
    display: block;
  }
  .entry01 .wrap .job .requirements dl dt {
    padding: 1.5rem 1.2rem ;
    width: 100%;
  }
  .entry01 .wrap .job .requirements dl dd {
    font-size: 1.4rem;
    padding: 1.5rem 1.2rem;
    width: 100%;
  }
}
/* ---------------------------------------------------------------------------
//  entry02
--------------------------------------------------------------------------- */
.entry02 {
  background: rgba(231,228,216,.41);
  position: relative;
}
.entry02 .container {
  padding: 15rem 0;
}
.entry02 .wrap01 {
  display: flex;
}
.entry02 .wrap01 .head {
  width: calc(100% - 67.7rem);
}
.entry02 .wrap01 .head .eng {
  align-items: center;
  display: flex;
  font-size: 2.4rem;
  gap: .9rem;
}
.entry02 .wrap01 .head .eng .img {
  width: 11rem;
}
.entry02 .wrap01 .head .eng .txt {
  background: linear-gradient(136deg, #00c073 17.08%, #1d2087 91.58%);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  -webkit-text-fill-color: transparent;
  top: -.5rem;
  width: calc(100% - 11.9rem);
}
.entry02 .wrap01 .head .ttl {
  font-size: 3.2rem;
  line-height: .5;
  margin-top: 2.7rem;
}
.entry02 .wrap01 .txt {
  line-height: 1.75;
  text-align: justify;
  width: 67.7rem;
}
.entry02 .wrap01 .txt .p01 {
  border-bottom: dotted 1px;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.entry02 .wrap01 .txt .p03 {
  font-weight: 500;
  margin-top: 1rem;
}
.entry02 .wrap02 {
  margin-top: 8rem;
}
::placeholder {
  color: #b2b2b2;
}
.entry_form dl {
  color: #4a413b;
  display: flex;
}
.entry_form dl + dl {
  border-top: solid 1px #e8e8e8;
}
.entry_form dl dt {
  font-weight: 500;
  padding: 3.5rem 2rem;
  width: calc(100% - 67.7rem);
}
.entry_form dl dt small {
  font-size: 1.4rem;
}
.entry_form dl dd {
  padding: 2.2rem 0 2.2rem 4.8rem;
  position: relative;
  width: 67.7rem;
}
.entry_form dl dd .required {
  align-items: center;
  background: #d10606;
  color: #fff;
  display: flex;
  font-size: 1.2rem;
  font-weight: 500;
  height: 2.1rem;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 3.8rem;
  width: 3.8rem;
}
.entry_form dl dd input[type=text] {
  background: #fff;
  padding: 1.4rem;
  width: 100%;
}
.entry_form dl dd input[type=email] {
  background: #fff;
  padding: 1.4rem;
  width: 100%;
}
.entry_form dl dd textarea {
  background: #fff;
  height: 25rem;
  padding: 1.4rem;
  resize: none;
  width: 100%;
}
.entry_form dl dd .sup {
  display: flex;
  font-size: 1.4rem;
  white-space: nowrap;
}
.entry_form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  padding: 1.4rem 0;
}
.entry_form .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
  padding: 1.4rem 0;
  white-space: nowrap;
}
/* 共通 */
.design input {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px!important;
}
.design input + span {
  cursor: pointer;
  display: inline-block;
  font-weight: 500;
  padding: 0 0 0 2rem;
  position: relative;
}
.design input:checked + span::after {
  opacity: 1!important;
}
/* チェックボックス */
.design input[type=checkbox] + span:before {
  border: 1px solid #4a413b;
  content: '';
  display: block;
  height: 1.7rem;
  left: 0;
  position: absolute;
  top: calc(1px + .3rem);
  width: 1.7rem;
}
.design input[type=checkbox] + span::after {
  background-color: #05a577;
  content: '';
  display: block;
  height: 1rem;
  left: calc(1px + .25rem);
  opacity: 0;
  position: absolute;
  top: calc(1px + .65rem);
  width: 1rem;;
}
/* ラジオボタン */
.design input[type=radio] + span::before {
  border: 1px solid #4a413b;
  border-radius: 50%;
  content: '';
  display: block;
  height: 1.7rem;
  left: 0;
  position: absolute;
  top: calc(1px + .3rem);
  width: 1.7rem;
}
.design input[type=radio] + span::after {
  background-color: #05a577;
  border-radius: 50%;
  content: '';
  display: block;
  height: 1rem;
  left: calc(1px + .25rem);
  opacity: 0;
  position: absolute;
  top: calc(1px + .65rem);
  width: 1rem;;
}
.submit {
  align-items: center;
  align-items: center;
  background: #05a577;
  border: solid 1px #05a577;
  border-radius: 10rem;
  box-shadow: .5rem .8rem .5rem 0 rgba(0, 0, 0, .20);
  color: #fff;
  display: flex;
  font-weight: 400;
  gap: 1.4rem;
  height: 6rem;
  justify-content: center;
  margin: 0 auto;
  margin-top: 7rem;
  overflow: hidden;
  position: relative;
  transition: .3s;
  width: 34rem;
}
.submit input {
  height: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
.submit::after {
  background-image: url(../img/btn_arrow02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  height: 3.2rem;
  position: absolute;
  right: 6rem;
  transition: .3s;
  width: 2.8rem;
}
.submit:hover {
  background: #fff;
  box-shadow: .2rem .5rem .2rem 0 rgba(0, 0, 0, .50);
  color: #05a577;
  gap: 0;
}
.submit:hover:after {
  width: 0;
}
@media screen and (max-width: 768px) {
  .entry02 .container {
    padding: 6rem 2.3rem 8rem;
  }
  .entry02 .wrap01 {
    display: block;
  }
  .entry02 .wrap01 .head {
    width: 100%;
  }
  .entry02 .wrap01 .head .eng {
    font-size: 2rem;;
  }
  .entry02 .wrap01 .head .eng .img {
    width: 9rem;
  }
  .entry02 .wrap01 .head .eng .txt {
    width: calc(100% - 9.9rem);
  }
  .entry02 .wrap01 .txt {
    margin-top: 3rem;
    width: 100%;
  }
  .entry02 .wrap01 .txt .p03 span {
    left: -1rem;
    position: relative;
    white-space: nowrap;
  }
  .entry02 .wrap02 {
    margin-top: 4rem;
  }
  .entry_form dl {
    display: block;
    padding: 2rem 0;
  }
  .entry_form dl dt {
    align-items: center;
    display: flex;
    font-weight: 500;
    padding: 0;
    width: 100%;
  }
  .entry_form dl dt small {
    font-size: 1.4rem;
  }
  .entry_form dl dd {
    margin-top: 1.6rem;
    padding: 0;
    width: 100%;
  }
  .entry_form dl dd .required {
    left: inherit;
    right: 0;
    top: -3.7rem;
    width: 3.8rem;
  }
  .entry_form dl dd input[type=text] {
    padding: 1.4rem 1rem;
  }
  .entry_form dl dd input[type=email] {
    padding: 1.4rem 1rem;
  }
  .entry_form dl dd textarea {
    padding: 1.4rem 1rem;
  }
  .entry_form dl dd .sup {
    font-size: 1.3rem;
    white-space: normal;
  }
  .entry_form .wpcf7-radio {
    gap: 1rem 2.2rem;
    padding: 0;
  }
  .entry_form .wpcf7-checkbox {
    gap: 1rem 2.2rem;
    margin-bottom: 1rem;
    padding: 0;
  }
  .submit {
    margin-top: 4rem;
    width: 33rem;
  }
}
/* ---------------------------------------------------------------------------
//  thanks01
--------------------------------------------------------------------------- */
.thanks01 .container {
  padding: 8rem 0 12rem;
}
.thanks01 .wrap .ttl {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
.thanks01 .wrap .desc {
  line-height: 1.75;
  margin-bottom: 6rem;
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks01 .container {
    padding: 4rem 2.3rem 8rem;
  }
  .thanks01 .wrap .ttl {
    font-size: 2rem;
  }
  .thanks01 .wrap .desc {
    margin-bottom: 6rem;
    margin-top: 3rem;
    text-align: center;
  }
}

/* ---------------------------------------------------------------------------
//  PC/SP
--------------------------------------------------------------------------- */
.forSP {
  display: none;
}
@media screen and (max-width:768px) {
  .forSP {
    display: block;
  }
  .forPC {
    display: none;
  }
}
.grecaptcha-badge{
  opacity: 0!important;
  pointer-events: none;
}
body:has(.entry_form) .grecaptcha-badge{
  opacity: .9!important;
  pointer-events: all;
}
.grecaptcha-badge{
  bottom: 6rem!important;
}
@media screen and (max-width:768px) {
  .grecaptcha-badge{
  bottom: 0!important;
}
}