@charset "UTF-8";

:root {
  --color-black: #000000;
  --color-white: #ffffff;

  --color-corporate: #005BAB;

  --ja: "Noto Sans JP", sans-serif;
  --en: "Sofia Sans Condensed", sans-serif;





  --header: 6rem;
  scroll-padding: var(--header);

}




@media screen and (max-width:767px) {
  :root {
    --header: 4rem;
    scroll-padding: var(--header);
  }
}


/*================================================
 *  一般・共通設定
 ================================================*/
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--ja);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  background: var(--color-white);
  color: var(--color-black);

}

main {
  overflow-y: clip;
}

a {
  text-decoration: none;
  transition: all .4s;

}

p {}

a:hover {
  opacity: 1;
}

img {
  max-width: 100%;

  display: block;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 1.6rem;
}

ul,
ol,
dl {
  margin: 0;
  letter-spacing: 0.05em;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}




@media (max-width: 767px) {
  html {
    font-size: clamp(1px, 3.125vw, 10px);
  }
}



/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;

}


.hd span {
  display: block;
  color: var(--color-corporate);
  font-weight: 700;
}



.hd .en {
  font-family: var(--en);
  font-size: 7rem;
  line-height: 1;
  margin-bottom: 2.6rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hd .ja {}

.ttl_ani {
  overflow: hidden;
}

.ttl_ani .char {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.85, 0, .15, 1);
  transition-delay: calc(.35s + var(--i) * .05s);
}

.ttl_ani.on .char {
  transform: translateY(0);
}



@media (max-width: 767px) {
  .hd .en {
    font-size: 4.4rem;
    margin-bottom: 1.6rem;
  }
}



/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 3rem 0;
}


.nav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  margin: 0 auto;
}

.nav_left {
  width: 21.8rem;
}

.nav_menu {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 4rem;
}

.nav_menu li {
  position: relative;
}

.nav_menu span,
.nav_menu a {
  font-weight: 600;
  cursor: pointer;
  transition: all .4s;
  display: inline-block;
}

.nav_menu span:hover,
.nav_menu a:hover {
  color: var(--color-corporate);
}

.nav_menu a.sp {
  display: none;
}

.nav_menu .label {
  padding-right: 1.7rem;
  position: relative;
}

.nav_menu .label::before,
.nav_menu .label::after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 0.2rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-corporate);
  transition: all .2s;
}

.nav_menu .label::after {
  transform: translateY(-50%) rotate(90deg);
}

.nav_menu .label.open::after {
  transform: translateY(-50%) rotate(0deg);
}

.nav_menu #acc {
  position: relative;
  padding-bottom: 4rem;
  margin-bottom: -4rem;
}

.nav_menu .detail {
  position: absolute;
  left: 50%;
  min-width: 21.4rem;
  top: 4rem;
  border-radius: 0.8rem;

  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(1rem);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0s linear 0.4s;
  pointer-events: none;
}

.nav_menu li:hover .detail,
.nav_menu li.is-hover .detail {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0s;
  pointer-events: auto;
}


.nav_menu .detail ul {
  padding: 3rem 0;
  text-align: center;
  background: #FFFFFF;
  font-size: 1.4rem;
  border-radius: 0.8rem;
}

.nav_menu .detail ul li:not(:first-child) {
  margin-top: 1rem;
}






@media screen and (max-width:767px) {
  header {
    padding-top: 4.6rem;
  }

  .nav_inner {}

  .nav_left {
    max-width: 15.2rem;
    width: 44%;
    position: relative;
    z-index: 201;
  }

  .hamburger {
    position: absolute;
    right: 4.5%;
    top: 4rem;
    width: 6.7rem;
    height: 4rem;
    cursor: pointer;
    z-index: 300;
    transition: all .2s ease-out;
    background: #000000B2;
    border-radius: 0.5rem;
  }

  .hamburger::before,
  .hamburger::after {
    position: absolute;
    content: "";
    font-size: 1.2rem;
    font-family: var(--en);
    text-transform: uppercase;
    top: 56%;
    transform: translateY(-50%);
    left: 0.68rem;
    transition: all .4s ease-out;
    color: var(--color-white);
    line-height: 1;
  }

  .hamburger::before {
    content: "MENU";
    opacity: 1;
  }

  .hamburger::after {
    content: "CLOSE";
    opacity: 0;
  }

  .open_nav .hamburger::before {
    opacity: 0;
  }

  .open_nav .hamburger::after {
    opacity: 1;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    right: 0.8rem;
    width: 2rem;
    height: 1px;
    background-color: var(--color-white);
    transition: all .4s ease-out;

  }

  .hamburger__line--1 {
    top: 38%;
  }

  .hamburger__line--2 {
    top: 50%;
  }

  .hamburger__line--3 {
    top: 62%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: rotate(30deg);
    top: 50%;
  }

  .open_nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open_nav .hamburger__line--3 {
    transform: rotate(-30deg);
    top: 50%;
  }


  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    transition: all .4s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 17rem 0 10rem;
    opacity: 0;
    pointer-events: none;
  }

  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }

  .nav_menu {
    width: 78.66%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav_menu li {
    border-bottom: 1px solid #0000001A;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    width: 100%;
  }

  .nav_menu>li {
    order: 10;
  }

  .nav_menu>li:first-child {
    order: 2;
  }

  .nav_menu>li#acc {
    order: 1;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
  }

  .nav_menu>li:nth-child(3) {
    order: 3;
  }







  .nav_menu span,
  .nav_menu a {
    font-size: 2rem;
    color: #04376F;
    display: block;
  }


  .nav_menu>li#acc a.sp {
    padding-bottom: 3rem;
    display: inline-block;
  }

  .nav_menu .label {
    /* padding-bottom: 3rem;
    padding-right: 0; */
    display: none;
  }

  .nav_menu .label::before,
  .nav_menu .label::after {
    content: none;
  }

  .nav_menu li:hover .detail,
  .nav_menu li.is-hover .detail,
  .nav_menu li .detail {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%) translateY(0);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease,
      visibility 0s;
    pointer-events: auto;

    display: block;
    position: static;
    transform: translateX(0%);
    min-width: unset;
  }

  .nav_menu .detail ul {
    padding: 0;
    text-align: left;
  }

  .nav_menu .detail ul li {
    border-bottom: none;
    margin: 0;
    padding: 0;
  }

  .nav_menu .detail ul li:not(:first-child) {
    margin-top: 1.5rem;
  }

  .nav_menu .detail ul a {

    font-weight: 500;
    font-size: 1.8rem;
    position: relative;
    padding: 0;
    padding-left: 1.5rem;
  }

  .nav_menu .detail ul a::before {
    position: absolute;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    display: inline-block;
    background-image: url(../images/nav_arrow.webp);
    width: 0.96rem;
    height: 1.2rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .nav_menu .detail ul a::after {
    position: absolute;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    display: inline-block;
    background-image: url(../images/nav_line.webp);
    width: 0.57rem;
    height: 0.85rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}


/*================================================
* mainVisual
================================================*/

#mainVisual {
  height: 77.56vw;
  overflow-x: clip;
  max-height: 130rem;
}

#mainVisual::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/mv_bg.webp);
  width: 100vw;
  height: 142vw;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.mv_inner {
  width: 88.88%;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

/* .mv_catch {
  position: absolute;
  top: 14.65vw;
  left: 46.41%;
  min-width: 48rem;
} */
.mv_catch {
  position: absolute;
  top: clamp(13rem, 14.65vw, 21.1rem);
  left: clamp(37.41%, calc(61.2vw - 21.3rem), 46.41%);
  /* width: 48rem; */
  /* max-width: calc(100vw - 4rem); */
  min-width: 48rem;
}

/* @media (max-width: 895px) {
  .mv_catch {
    left: 37.41%;
  }
} */

.mv_catch h2 {
  /* font-size: 6.8rem; */
  /* font-size: 4.722vw; */
  font-size: clamp(4.8rem, 4.722vw, 6.8rem);
  font-weight: 700;
  line-height: 1.3;
  /* margin-bottom: 5rem; */
  margin-bottom: 3.47vw;
  /* white-space: nowrap; */
}

.mv_catch h2 span {
  /* font-size: 2.8rem; */
  /* font-size: 1.944vw; */
  font-size: clamp(2rem, 1.944vw, 2.8rem);
  display: block;
  margin-bottom: 1rem;
}


.mv_catch .en {
  font-family: var(--en);
  /* font-size: 1.4rem; */
  /* font-size: 1vw; */
  font-size: clamp(1rem, 0.9722vw, 1.4rem);
  text-transform: uppercase;
}



.mv_bg {
  position: absolute;
  width: 100vw;
  max-width: 170rem;
  left: 50%;
  transform: translateX(-50%);
  top: -8vw;
  /* top: -3.77vw; */
  isolation: isolate;
}



.mv_bg-line {
  width: 100%;

}



.mv-bg-line-art svg path,
.mv-bg-line-art .mv-bg-line-inner path {
  mix-blend-mode: multiply;
}


.mv_bg-line {
  width: 100%;
}

.mv_bg-line,
.mv_bg-line__svg {
  overflow: visible;
}

.mv_bg-line__svg {
  display: block;
  width: 100%;
  height: auto;
}

.mv_bg,
.mv_bg-line,
.mv_bg-line__svg {
  overflow: visible;
}



.mv-mask-line {
  stroke-width: 55.8vw;
  stroke-dasharray: 1;
  stroke-dashoffset: -1;
  animation: none;
}

#mainVisual.is-mv-start .mv-bg-line-image {
  animation: mvBgLineFadeIn 0.9s ease-out forwards;
}

#mainVisual.is-mv-start .mv-mask-line {
  animation: mvLineMaskDrawReverse 2.8s cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
}

.mv-bg-line-image {
  opacity: 0;
}

@keyframes mvBgLineFadeIn {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

@keyframes mvLineMaskDrawReverse {
  from {
    stroke-dashoffset: -1;
  }

  to {
    stroke-dashoffset: 0;
  }
}


.mv_scroll-wrap {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.mv_scroll {
  position: absolute;
  left: 3rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.mv_scroll-txt {
  writing-mode: vertical-rl;
  font-size: 1.2rem;
  line-height: 1;
  font-family: var(--en);
}

.mv_scroll-dots {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: center;
}

.mv_scroll-dots span {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;

}

.mv_scroll-dots span:nth-child(1) {
  animation: mvScrollDot01 1.2s ease-in-out infinite;
}

.mv_scroll-dots span:nth-child(2) {
  animation: mvScrollDot02 1.2s ease-in-out infinite;
}

.mv_scroll-dots span:nth-child(3) {
  animation: mvScrollDot03 1.2s ease-in-out infinite;
}

@keyframes mvScrollDot01 {

  0%,
  100% {
    background: rgba(0, 91, 171, 0.2);
  }

  20% {
    background: rgba(0, 91, 171, 0.1);
  }

  40% {
    background: rgba(0, 91, 171, 0.5);
  }

  60% {
    background: #005bab;
  }

  80% {
    background: rgba(0, 91, 171, 0.5);
  }
}

@keyframes mvScrollDot02 {

  0%,
  100% {
    background: rgba(0, 91, 171, 0.5);
  }

  20% {
    background: #ccdeee;
  }

  40% {
    background: rgba(0, 91, 171, 0.1);
  }

  60% {
    background: rgba(0, 91, 171, 0.5);
  }

  80% {
    background: #005bab;
  }
}

@keyframes mvScrollDot03 {

  0%,
  100% {
    background: #005bab;
  }

  20% {
    background: #80add5;
  }

  40% {
    background: #ccdeee;
  }

  60% {
    background: rgba(0, 91, 171, 0.1);
  }

  80% {
    background: rgba(0, 91, 171, 0.5);
  }
}


@media (max-width: 767px) {
  #mainVisual {
    height: 247.2vw;
    max-height: 92.7rem;
  }

  #mainVisual::before {
    background-image: url(../images/mv_bg_sp.webp);
    width: 100vw;
    height: 506.666vw;
  }

  .mv_inner {
    width: 92%;
  }

  .mv_catch {
    top: 45.86vw;
    top: clamp(1rem, 45.86vw, 17.2rem);
    left: 0;
    min-width: unset;
  }

  .mv_catch h2 {

    margin-bottom: 1em;
    font-size: clamp(4rem, 12.8vw, 4.8rem);
  }

  .mv_catch h2 span {
    /* font-size: 2.6rem; */
    font-size: clamp(2rem, 69.33vw, 2.6rem);
    line-height: 1.5;
    display: block;
    margin-bottom: 2rem;
  }

  .mv_catch .en {
    font-size: 1.4rem;
  }




  .mv_bg {
    /* top: 65.5vw; */

    top: clamp(1rem, 65.5vw, 24.6rem);
    transform: translateX(0);
    left: auto;
    right: 0;
    /* width: 120.68vw;
    height: 188.54vw;

    max-width: 45.2rem;
    max-height: 70.2rem; */


    width: 100vw;
    height: 188.54vw;

    /* max-width: 37.5rem;
    max-height: 70.7rem; */
    max-width: 47.5rem;
    max-height: 80.7rem;
  }

  /* .mv_bg.sp,
  .mv_bg.sp .mv_bg-line,
  .mv_bg.sp .mv_bg-line__svg {
    overflow: visible;
  } */



  .mv-mask-line-sp {
    stroke-width: 120vw;
    stroke-dasharray: 1;
    stroke-dashoffset: -1;
    animation: none;
  }

  #mainVisual.is-mv-start .mv-mask-line-sp {
    animation: mvLineMaskDrawSp 2.8s cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
  }

  @keyframes mvLineMaskDrawSp {
    from {
      stroke-dashoffset: -1;
    }

    to {
      stroke-dashoffset: 0;
    }
  }

  .mv_scroll {
    left: 5.3%;
    bottom: 4rem;
  }
}




/*================================================
* message
================================================*/
#message {
  padding-bottom: 16rem;
  overflow-x: clip;
}

/* .msg_ill01 {
  position: absolute;
  display: block;
  width: 12.3rem;
  height: 19.3rem;
  bottom: 62.6rem;
  left: 0;
} */

.msg_ill01 {
  position: absolute;
  display: block;
  width: 12.3rem;
  height: 19.3rem;
  bottom: 62.6rem;
  left: 0;
}

.msg_ill01__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}


.msg_ill02 {
  position: absolute;
  display: block;
  max-width: 33.8rem;
  width: 23.4vw;
  aspect-ratio: 338 / 375;
  bottom: 25.4rem;
  right: 0;
}

.msg_ill02__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}



.msg-mask-image {
  opacity: 0;
}

.msg-mask-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: none;
}

.js-scroll-mask.is-mask-start .msg-mask-image {
  animation: msgMaskImageFade 0.6s ease-out forwards;
}

.js-scroll-mask.is-mask-start .msg-mask-line {
  animation: msgMaskDraw 2.4s cubic-bezier(0.2, 0.8, 0.25, 1) forwards;
}

@keyframes msgMaskImageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes msgMaskDraw {
  from {
    stroke-dashoffset: 1;
  }

  to {
    stroke-dashoffset: 0;
  }
}


.js-scroll-mask.sp {
  display: none;
}


/* .msg_ill02 {
  position: absolute;
  max-width: 33.8rem;
  width: 23.4vw;
  bottom: 25.4rem;
  right: 0;
} */





















#message::before,
#message::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

/* #message::before {
  background-image: url(../images/message_bg01.webp);
  width: 12.3rem;
  height: 19.3rem;
  bottom: 62.6rem;
  left: 0;
} */

/* #message::after {
  background-image: url(../images/message_bg02.webp);
  max-width: 33.8rem;
  max-height: 37.5rem;
  width: 23.4vw;
  height: 26vw;
  bottom: 25.4rem;
  right: 0;
} */

.message_wrap {
  width: 69.166%;
  min-width: 74rem;
  margin: 0 auto;
}

.message_inner {
  width: 80%;
  margin: 0 auto;
  min-width: 68rem;
}

.message_inner p {
  line-height: 2.2;
}

.message_inner h3 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 5rem;
  margin-bottom: 6rem;
}

.message_inner h3 span {
  display: block;
  font-size: 1.8rem;
  margin-top: 2rem;
}

.message_img {
  margin: 8rem 0 10rem;
}

.message_name {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.message_name div {
  text-align: center;
  font-size: 1.8rem;
}

.message_name div span {
  display: block;
  font-size: 1.5rem;
  /* margin-bottom: 1rem; */
}

.message_name div:first-of-type {
  margin-right: 19.4%;
}




.message_inner h4 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 6rem;
}

.message_inner h4+p {
  margin-top: 4rem;
}


.message_txt {
  position: relative;
  z-index: 1;
}

.message_txt::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/message_circle.svg);
  width: 138.5rem;
  height: 138.5rem;
  bottom: -50rem;
  left: -89rem;
  z-index: -1;
  pointer-events: none;
}


@media (max-width: 767px) {
  #message {
    padding-bottom: 13rem
  }

  .js-scroll-mask.pc {
    display: none;
  }

  .js-scroll-mask.sp {
    display: block;
  }





  .msg_ill01_sp {
    position: absolute;
    display: block;
    width: 47.3vw;
    max-width: 9.8rem;
    aspect-ratio: 98 / 121;
    bottom: auto;
    top: 86rem;
    left: 0;
  }

  .msg_ill01_sp__svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
  }




  .msg_ill02_sp {
    position: absolute;
    display: block;
    max-width: 21rem;
    width: 56vw;
    aspect-ratio: 210 / 145;
    bottom: 0;
    right: 0;
  }

  .msg_ill02_sp__svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
  }








  .message_wrap {
    width: 100%;
    min-width: unset;
  }

  .message_inner {
    width: 82%;
    min-width: 29rem;
  }

  .message_inner p {
    font-size: 1.5rem;
  }

  .message_inner h3 {
    font-size: 3rem;
    margin-bottom: 4rem;
    letter-spacing: -0.05em;
  }

  .message_inner h3 span {
    letter-spacing: 0;
  }

  .message_inner h4 {
    font-size: 2rem;
  }

  .message_name {
    margin-top: 2.6rem;
  }

  .message_name div {
    font-size: 1.6rem;
    width: 50%;
  }

  .message_name div span {
    font-size: 1.3rem;
  }

  .message_name div:first-of-type {
    margin-right: 0;
  }

  .message_txt::before {
    content: none;
  }

  .message_swiper .swiper-slide img {
    width: 100%;
    aspect-ratio: 375/268;
    height: auto;
    overflow: hidden;
    object-fit: cover;
  }

}




/*================================================
* group
================================================*/

#group {
  background: #EBF6FF;
  padding-top: 16rem;
  padding-bottom: calc(7rem + 14.6rem);
}

#group h2 {
  text-align: center;
  margin-bottom: 10rem;
}

#group h2 .en {
  justify-content: center;
}

.group_inner {
  width: 97%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* max-width: 140rem; */
}

.group_box {
  padding: 7rem 5.8% 2.8rem;
  position: relative;
}

.group_box .btn {
  font-family: var(--en);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  gap: 2rem;
  color: var(--color-black);
}



.group_box .btn span {
  display: block;
  width: 3.45rem;
  height: 3.45rem;
  position: relative;
  background: transparent;
  border-radius: 0.4rem;
  transition: all .4s;
}

.group_box .btn:hover span {
  background: rgb(255 255 255 / 70%);
}

.group_box .btn span::before,
.group_box .btn span::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/icon_arrow.webp);
  width: 3.66rem;
  height: 3.7rem;
  top: 0;
  left: 0;
  transition: all .2s;
}

.group_box .btn span::after {
  background-image: url(../images/icon_arrow_h.webp);
  opacity: 0;
  mix-blend-mode: multiply;
}

.group_box .btn:hover span::after {
  opacity: 1;
}




.group_box.box01 {
  color: var(--color-white);
  background: linear-gradient(115deg, #066DCD 1.65%, #7DC3FF 128.91%);

  width: calc(100% + 5.6rem);
  margin-right: -5.6rem;
  padding-right: calc(5.6rem + 5.8%);

  clip-path: polygon(0 0,
      100% 0,
      100% 14.6rem,
      calc(100% - 5.6rem) 14.6rem,
      calc(100% - 5.6rem) 100%,
      0 100%);
}

.group_box.box02 {
  /* background: linear-gradient(119.79deg, #2DAEDB 1.74%, #A4E7D6 119.99%);
  top: 14.6rem; */


  position: relative;
  top: 14.6rem;

  margin-left: -5.6rem;
  padding-left: calc(5.6rem + 5.8%);

  background: linear-gradient(119.79deg, #2DAEDB 1.74%, #A4E7D6 119.99%);

  clip-path: polygon(5.6rem 0,
      100% 0,
      100% 100%,
      0 100%,
      0 calc(100% - 14.6rem),
      5.6rem calc(100% - 14.6rem));



}

.group_box h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.group_box h3 span {
  display: inline-block;
}

.group_box p {
  padding: 5rem 2rem 8rem;
  line-height: 2;
}



.group_box .en {
  position: absolute;
  top: 2rem;
  /* left: 1rem; */
  left: 1%;
  font-family: var(--en);
  font-size: 1.2rem;
  color: #0058A6;
  white-space: nowrap;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  width: auto;
  height: auto;
  transform: none;
  padding-top: 1rem;
}

.group_box .en::before {
  position: absolute;
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  background: #0058A6;
  border-radius: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.group_box.box02 .en {
  color: #3DA1B7;
  left: auto;
  /* right: 1rem; */
  right: 1%;
}

.group_box.box02 .en::before {
  background: #3DA1B7;
}




.group_guide01 {
  /* width: fit-content; */
  position: relative;
  z-index: 1;
  max-width: 65rem;
  margin: 0 auto 3rem;
}

.group_guide01::before {
  position: absolute;
  content: "";
  width: 42%;
  aspect-ratio: 1/1;
  background: #1C7DD6;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .5;
  z-index: -1;
}

.group_circle {
  width: 32.4%;
  aspect-ratio: 1/1;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: #086ECE;
  border-radius: 100%;
  font-size: 1.3rem;
  margin: 0 auto;
  min-width: 16rem;
}

.group_circle img {
  width: 55%;
  margin: 0 auto;
}


.group_guide01 .circle_clm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13%;
  /* gap: 8rem; */
  /* margin: -3.6rem 0; */
  margin: -6% 0;
}

.group_guide01 .circle_clm .group_circle {
  margin: 0;
}

.group_guide02 {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 2.5%;
  /* gap: 2rem 1.5rem; */
  position: relative;
  z-index: 1;
  max-width: 65rem;
  margin: 0 auto 11rem;
}

.group_guide02::before {
  position: absolute;
  content: "";
  width: 87.5%;
  height: 80%;
  min-width: 35rem;
  background: #3F9FB5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .35;
  z-index: -1;
}

.group_square {
  width: 36.2%;
  background: #C8F3FB;
  font-size: 1.3rem;
  text-align: center;
  padding: 2.8rem 0.5rem 2rem;
  border-radius: 0.8rem;
  min-height: 20rem;
  min-width: 16rem;
}

.group_square img {
  width: 55%;
  margin: 0 auto 1.2rem;
}

.group_square:not(:has(br)) img {
  margin-bottom: 3rem;
}

.group_square div span {
  display: inline-block;
}

@media (max-width: 767px) {
  #group {
    padding: 12rem 0;
  }

  #group h2 {
    text-align: left;
    margin-bottom: 8rem;
    padding-left: 9.33%;
  }

  #group h2 .en {
    justify-content: start;
  }

  .group_inner {
    width: 90.9%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }

  .group_box {
    /* padding: 6rem 1.8rem 2.8rem; */
    padding: 6rem 5% 2.8rem;
  }

  .group_box.box01 {
    width: 100%;
    margin-right: 0;
    padding-right: 5%;
    clip-path: none;
  }

  .group_box.box02 {
    top: 0;
    margin-left: 0;
    padding-left: 5%;
    clip-path: none;
  }


  .group_box h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }

  .group_box p {
    padding: 4rem 0rem 6rem;
  }




  .group_circle {
    width: 33vw;
    /* font-size: 2.93vw; */
    font-size: clamp(1px, 2.93vw, 1.1rem);
    min-width: unset;
    line-height: 1.45;
    max-width: 17rem;
  }

  .group_circle img {
    width: 48%;
  }

  .group_guide01 .circle_clm {
    gap: 17.6vw;
    margin: -6% 0;
  }

  .group_guide01::before {
    width: 51.5%;
    max-width: 24rem;
  }

  .group_guide02 {
    gap: 1rem 2.66vw;
    margin: 0 auto 3rem;
    max-width: 37rem;
  }

  .group_square img {
    width: 63%;
    margin: 0 auto 1.2rem;
  }

  .group_square {
    width: 38.3vw;
    /* font-size: 2.93vw; */
    font-size: clamp(1px, 2.93vw, 1.1rem);
    padding: 1.4rem 0.5rem 1rem;
    /* min-height: 36vw; */
    min-width: unset;
    max-width: 17rem;
    min-height: unset;
    aspect-ratio: 140/136;
  }

  .group_square:not(:has(br)) img {
    margin-bottom: 2rem;
  }

  .group_guide02::before {
    width: 85.33vw;
    height: 37.6vw;
    min-width: unset;
  }

  .group_box .en {
    top: 1rem;
    left: auto;
    right: 1%;
    font-size: 1.1rem;
  }

  .group_box.box02 .en {
    right: 1%;
  }


}




/*================================================
* outline
================================================*/

#outline {
  padding: 16rem 0 17rem;
}

.outline_inner {
  width: 83%;
  margin: 0 auto;
  min-width: 74rem;
}

.outline_clm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 10rem;
}

.outline_list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.outline_list dt {
  width: 20rem;
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #9F9F9F4D;
  margin-bottom: 2.5rem;
}

.outline_list dd {
  width: calc(100% - 20rem);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.75;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #9F9F9F4d;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.outline_list dt:last-of-type,
.outline_list dd:last-of-type {
  border-bottom: 1px solid transparent;
}

.outline_list dd a {
  text-decoration: underline;
  color: #1A73F0;
}

.outline_list dd ul li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 1rem;
}

.outline_list dd ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

.outline_right {}

.outline_right .inner {
  width: 82%;
  margin-left: auto;
  display: flex;
  gap: 1.5rem;
  min-width: 35rem;
}


.outline_right .ttl {
  width: 10.5rem;
  font-size: 1.5rem;
}

.outline_right .list {
  width: calc(100% - 12rem);
  min-width: 24rem;
}

.outline_right .list li {
  display: flex;
  align-items: stretch;
  font-weight: 400;
  font-size: 1.4rem;
}

.outline_right .list li .pos {
  width: 50%;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #9F9F9F4d;
  margin-bottom: 1.5rem;
}

.outline_right .list li .name {
  width: 50%;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #9F9F9F4d;
}

.outline_right .list li:last-child .pos,
.outline_right .list li:last-child .name {
  border: none;
}

#outline iframe {
  display: block;
  width: 95.8%;
  margin: 5rem auto 0;
  height: 46rem;
}

@media (max-width: 767px) {
  #outline {
    padding: 12rem 0 16rem;
  }

  .outline_inner {
    width: 81.33%;
    min-width: unset;
  }

  .outline_inner .hd .en {
    flex-wrap: wrap;
  }

  .outline_clm {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 8rem;
  }



  .outline_list dt:last-of-type,
  .outline_list dd:last-of-type {
    border-bottom: 1px solid #9F9F9F4d;
  }

  .outline_list dt {
    width: 7rem;
    font-size: 1.3rem;
  }

  .outline_list dd {
    width: calc(100% - 7rem);
    font-size: 1.3rem;
  }

  .outline_right .inner {
    min-width: unset;
    width: 100%;
  }

  .outline_right .ttl {
    width: 7rem;
    font-size: 1.3rem;
  }

  .outline_right .list {
    width: calc(100% - 7rem);
    min-width: unset;
    font-size: 1.3rem;
  }

  .outline_right .list li .pos {
    min-width: 107px;
  }

  .outline_right .list li .name {
    text-align: right;
  }

  #outline iframe {
    width: 100%;
    margin-top: 5rem;
    height: 22.8rem;
  }

}




/*================================================
* 
================================================*/




@media (max-width: 767px) {}




/*================================================
* access
================================================*/





@media (max-width: 767px) {}




/*================================================
* 
================================================*/




@media (max-width: 767px) {}




/*================================================
* access
================================================*/





@media (max-width: 767px) {}




/*================================================
* 
================================================*/




@media (max-width: 767px) {}




/*================================================
* access
================================================*/





@media (max-width: 767px) {}




/*================================================
 *  footer
 ================================================*/
footer {
  padding: 7rem 0 4.4rem;
  color: var(--color-white);
  background: url(../images/ft_bg.webp) no-repeat center top/cover;
  /* min-height: 46rem; */
}

.ft_inner {
  width: 89.166%;
  margin: 0 auto;
}


.ft_logo {
  width: 29rem;
  margin-bottom: 12rem;
}

.ft_right {
  width: fit-content;
  margin-left: auto;
}

.ft_nav {
  display: flex;
  align-items: start;
  gap: 12rem;
}

.ft_nav ul li {
  margin-bottom: 3rem;
}

.ft_nav ul li a {
  font-weight: 700;
  border-bottom: 1px solid transparent;
}

.ft_nav ul li a:hover {
  border-bottom: 1px solid var(--color-white);
}

.ft_nav ul li ul {
  margin-top: 2rem;
}

.ft_nav ul li li {
  margin-top: 1rem;
  margin-bottom: 0;
  position: relative;
  padding-left: 1.6rem;
}

.ft_nav ul li li a {
  font-weight: 500;
  font-size: 1.4rem;
}

.ft_nav ul li li::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/ft_nav_line.webp);
  width: 0.56rem;
  height: 0.86rem;
  top: 0.4rem;
  left: 0;
}



.ft_right .copy {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 3rem;
  font-family: var(--en);
  font-weight: 400;
  text-align: right;
}




@media (max-width: 767px) {
  footer {
    padding: 7rem 0 4.4rem;
    background: url(../images/ft_bg_sp.webp) no-repeat center top/cover;

  }

  .ft_inner {
    width: 84%;
    margin: 0 auto;
  }

  .ft_logo {
    width: 20.7rem;
    margin-bottom: 6rem;
  }

  .ft_nav {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    gap: 0 2.4rem;
  }

  .ft_nav ul li a {
    font-size: 1.4rem;
  }

  .ft_nav ul li li a {
    font-size: 1.2rem;
  }

  .ft_right {
    width: 100%;
    margin-left: auto;
  }

  .ft_right .copy {
    margin-top: 7rem;
    text-align: center;
  }
}