@charset "UTF-8";
/****************************************************

Break Point Settings

****************************************************/
/* Visivility depends on the device */
.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

/****************************************************

format

****************************************************/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.8;
}

body {
  margin: 0 auto;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke: 0;
}

h1, h2, h3, h4 {
  line-height: 1.3;
  font-size: clamp(24px, 3.11vw, 36px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inner {
    min-width: calc(100% - 40px);
  }
}

.sec-title {
  position: relative;
  background: #0073BD;
  border-radius: 0 1em 1em 0;
  color: #fff;
  text-align: left;
  line-height: 1;
  padding: 0.4em 1em 0.5em 4em;
}

.sec-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3em;
  height: auto;
  aspect-ratio: 194 / 234;
  background: url(../images/character.webp) no-repeat center/contain;
  transform: translateY(5%);
}

@media screen and (max-width: 768px) {
  .sec-title {
    margin-left: -20px;
    font-size: 5.625vw;
  }
  .sec-title::before {
    width: 2.5em;
    left: 0.5em;
  }
}

.link-btn01 {
  position: relative;
  background: #F9FF65;
  color: #26AAFF;
  font-size: clamp(15px, 4.8vw, 20px);
  font-weight: 600;
  line-height: 1;
  padding: 0.3em 3em 0.4em 1em;
  border-radius: 1.1em;
  margin-bottom: 0.2em;
  opacity: 1;
  transition: ease 0.3s;
}

.link-btn01:hover {
  opacity: 0.5;
}

.link-btn01::after {
  content: '';
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  background: url(../images/arrow01.webp) no-repeat center/contain;
}

.app01, .app02 {
  opacity: 1;
  transition: ease 0.3s;
}

.app01:hover, .app02:hover {
  opacity: 0.5;
}

.btn-wrap {
  width: 100%;
  text-align: center;
  padding: min(3.75vw, 60px) 0 0;
}

@media screen and (max-width: 768px) {
  .btn-wrap {
    padding-top: 5vw;
  }
}

.link-btn02-subtext {
  font-size: clamp(20px, 6vw, 28px);
  font-weight: 600;
  color: #0073BD;
  margin-bottom: 0.3em;
}

@media screen and (max-width: 768px) {
  .link-btn02-subtext {
    font-size: 4.375vw;
  }
}

.link-btn02 {
  position: relative;
  background: #0073BD;
  color: #fff;
  font-size: clamp(24px, 7.5vw, 36px);
  font-weight: 600;
  padding: 0.6em 2.5em 0.7em 4em;
  line-height: 1;
  border-radius: 0.4em;
  display: inline-block;
  margin: 0 auto;
  border: solid 2px #0073BD;
  transition: ease 0.3s;
}

.link-btn02:hover {
  background: #fff;
  color: #0073BD;
}

.link-btn02:hover::after {
  background: url(../images/arrow02.webp) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .link-btn02 {
    font-size: 4.68vw;
  }
}

.link-btn02::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3em;
  aspect-ratio: 194 / 234;
  background: url(../images/character.webp) no-repeat center/contain;
}

.link-btn02::after {
  content: '';
  position: absolute;
  right: 0.7em;
  top: 50%;
  width: 0.9em;
  height: 0.9em;
  transform: translateY(-50%);
  background: url(../images/arrow03.webp) no-repeat center/contain;
  transition: ease 0.3s;
}

.annotation {
  text-align: center;
  padding: min(7.5vw, 120px) 0 min(2.5vw, 40px);
}

@media screen and (max-width: 768px) {
  .annotation {
    padding: 12.5vw 0 10px;
  }
}

.annotation p {
  text-align: justify;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .annotation p {
    font-size: 10px;
  }
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 0 !important;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 0 !important;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: opacity;
}

/* フェードの切り替わりをCSS側でも補佐する */
.splide--fade .splide__slide {
  transition: opacity 1500ms ease !important;
}

/****************************************************

基本設計

****************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-size: min(1.69vw, 18px);
  padding: 10px 0;
  background: #fff;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
}

.header h1 {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-200%);
  color: transparent;
}

.header .inner {
  max-width: 1920px;
}

.header .inner .flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .inner .flex .sitelogo {
  height: 40px;
  width: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .sitelogo {
    height: 5.2vw;
    min-height: 20px;
  }
}

.header .inner .flex .sitelogo img {
  width: auto;
  height: 100%;
  display: block;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu {
    position: absolute;
    top: 0;
    right: 0;
    font-size: min(5vw, 20px);
    background: #000;
    background: rgba(0, 115, 189, 0.85);
    width: 100vw;
    max-width: 500px;
    height: 100vh;
    transform: translateX(101%);
    transition: ease 0.3s 0.2s;
  }
  .header .inner .flex .menu.active {
    transform: translateX(0);
    transition: ease 0.5s;
  }
  .header .inner .flex .menu.active ul {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.header .inner .flex .menu ul {
  display: flex;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu ul {
    position: absolute;
    left: 50%;
    top: 30%;
    height: auto;
    display: block;
    margin: 0 auto;
    z-index: 2;
    transform: translate(-50%, -40%);
    opacity: 0;
    transition: ease 0.3s 0.5s;
  }
}

.header .inner .flex .menu ul li {
  width: 8em;
  height: 100%;
  border-right: 1px solid #999;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu ul li {
    width: 100%;
    border-bottom: 1px solid #fff;
    border-right: 0;
  }
}

.header .inner .flex .menu ul li:last-of-type {
  border-right: 0;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu ul li:last-of-type {
    border-bottom: 0;
  }
}

.header .inner .flex .menu ul li a {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
  line-height: 1;
  padding: 0.3em 0 0.4em;
  align-content: center;
  transition: transform ease 0.3s;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu ul li a {
    position: relative;
    color: #fff;
    z-index: 2;
    padding: 1em 1em;
    font-size: 20px;
    font-weight: 500;
    min-width: 200px;
  }
}

.header .inner .flex .menu ul li a::after {
  content: 'TOP';
  position: absolute;
  top: 101%;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
  line-height: 1;
  padding: 0.3em 0 0.4em;
  align-content: center;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu ul li a::after {
    content: '';
  }
}

.header .inner .flex .menu ul li a.a2::after {
  content: 'キャンペーン';
}

.header .inner .flex .menu ul li a.a3::after {
  content: 'アプリ機能';
}

.header .inner .flex .menu ul li a.a4::after {
  content: '登録方法';
}

.header .inner .flex .menu ul li a.a5::after {
  content: 'FAQ';
}

.header .inner .flex .menu ul li a:hover {
  transform: translateY(-101%);
}

@media screen and (max-width: 768px) {
  .header .inner .flex .menu ul li a:hover {
    transform: none;
  }
}

.header .inner .flex .spmenu-open {
  display: none;
}

@media screen and (max-width: 768px) {
  .header .inner .flex .spmenu-open {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    height: 100%;
    max-height: 60px;
    width: auto;
    aspect-ratio: 1 / 1;
    z-index: 3;
  }
  .header .inner .flex .spmenu-open span {
    position: absolute;
    top: calc(50% - 1.5px);
    left: 20%;
    display: block;
    width: 60%;
    height: 3px;
    background: #0073BD;
  }
  .header .inner .flex .spmenu-open span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #0073BD;
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: center;
    transform: translateY(-325%);
    transition: ease 0.3s;
  }
  .header .inner .flex .spmenu-open span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #0073BD;
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: center;
    transform: translateY(325%);
    transition: ease 0.3s;
  }
}

@media screen and (max-width: 768px) {
  .header .inner .flex .spmenu-open.active span {
    background: transparent;
  }
  .header .inner .flex .spmenu-open.active span::before {
    transform: translateY(0) rotate(45deg);
    background: #fff;
  }
  .header .inner .flex .spmenu-open.active span::after {
    transform: translateY(0) rotate(-45deg);
    background: #fff;
  }
}

#gototop {
  position: fixed;
  right: 20px;
  bottom: 60px;
  width: 12.5vw;
  max-width: 60px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: white;
  box-shadow: 6px 6px 3px rgba(0, 0, 0, 0.15);
  border-radius: 0.3em;
  z-index: 12;
}

@media screen and (max-width: 768px) {
  #gototop {
    bottom: 20vw;
  }
}

#gototop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top {
  width: 100%;
  height: auto;
  max-height: 100vh;
  aspect-ratio: 16 / 9;
  font-size: 2vw;
}

@media screen and (max-width: 768px) {
  .top {
    aspect-ratio: unset;
    max-height: none;
  }
}

@media screen and (min-width: 2000px) {
  .top {
    aspect-ratio: 16 / 8;
  }
}

.top .top-inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.top .top-inner .dammy {
  width: 100%;
  height: 60px;
}

@media screen and (max-width: 768px) {
  .top .top-inner .dammy {
    height: 12.5vw;
    max-height: 60px;
  }
}

.top .top-inner .flex {
  width: 100%;
  height: calc(100% - 60px - 2.7em - 2em);
  display: flex;
  justify-content: flex-end;
  margin: 1em auto;
}

@media screen and (max-width: 768px) {
  .top .top-inner .flex {
    height: auto;
    align-items: center;
    justify-content: space-between;
  }
  .top .top-inner .flex .title {
    width: 19%;
    margin: 0 5.5%;
  }
}

.top .top-inner .flex .left {
  width: 35%;
  font-size: 1.5vw;
}

@media screen and (min-width: 2000px) {
  .top .top-inner .flex .left {
    font-size: min(1.85vw, 39px);
  }
}

.top .top-inner .flex .left #slide01a {
  pointer-events: auto;
}

.top .top-inner .flex .left .title {
  width: auto;
  height: 53%;
  display: block;
  margin: 0 auto 1.5em;
}

.top .top-inner .flex .left .splide__slide {
  margin-top: 1em;
  font-size: 1em;
  font-size: min(1.25vw, 2.5vh);
  font-weight: 600;
  line-height: 1.9;
  color: #0073BD;
  background: #fff;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top .top-inner .flex .left .splide__slide {
    text-align: left;
    font-size: 3.43vw;
  }
}

.top .top-inner .flex .left .splide__slide p {
  display: inline-block;
  text-align: left;
  opacity: 0;
  transform: translateX(-10%);
  transition: linear 1s;
}

.top .top-inner .flex .left .splide__slide span {
  display: inline-block;
  font-size: 1.3em;
  line-height: 1.3;
  font-weight: 800;
  background: linear-gradient(transparent 50%, #ffff00 50%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.5s 1s ease-out;
}

@media screen and (max-width: 768px) {
  .top .top-inner .flex .left .splide__slide span {
    font-size: 1.2em;
  }
}

.top .top-inner .flex .left .splide__slide.is-active p {
  opacity: 1;
  transform: translateX(0);
}

.top .top-inner .flex .left .splide__slide.is-active span {
  background-size: 100% 100%;
  transition-delay: 1s;
}

.top .top-inner .flex .left .splide__slide.is-active span:nth-of-type(2) {
  transition-delay: 1s;
}

.top .top-inner .flex .left .splide__slide.is-active span:nth-of-type(3) {
  transition-delay: 1.5s;
}

@media screen and (max-width: 768px) {
  .top .top-inner .flex .left {
    font-size: 4.68vw;
    width: 70%;
    height: auto;
    text-align: left;
  }
  .top .top-inner .flex .left .sp-imgbox {
    width: 100%;
    height: auto;
    aspect-ratio: 25/24;
    border-radius: 5vw 0 0 5vw;
    margin-bottom: 4vw;
  }
  .top .top-inner .flex .left .sp-imgbox.i01 {
    background: url(../images/top-img01-sp.webp) no-repeat center/cover;
  }
  .top .top-inner .flex .left .sp-imgbox.i02 {
    background: url(../images/top-img02-sp.webp) no-repeat center/cover;
  }
  .top .top-inner .flex .left .sp-imgbox.i03 {
    background: url(../images/top-img03-sp.webp) no-repeat center/cover;
  }
  .top .top-inner .flex .left .sp-imgbox.i04 {
    background: url(../images/top-img04-sp.webp) no-repeat center/cover;
  }
}

.top .top-inner .flex .right {
  width: 65%;
}

.top .top-inner .flex .right #slide01b {
  height: 100%;
  pointer-events: auto;
}

.top .top-inner .flex .right #slide01b .splide__track {
  height: 100%;
}

.top .top-inner .flex .right .splide__slide {
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: min(3.33vw, 50px);
  border-radius: 1.5em 0 0 1.5em;
  margin: 0 1px;
}

.top .top-inner .flex .right .splide__slide.i01 {
  background: url(../images/top-img01.webp) no-repeat center/cover;
}

.top .top-inner .flex .right .splide__slide.i02 {
  margin-bottom: 0;
  background: url(../images/top-img02.webp) no-repeat center/cover;
}

.top .top-inner .flex .right .splide__slide.i03 {
  background: url(../images/top-img03.webp) no-repeat center/cover;
}

.top .top-inner .flex .right .splide__slide.i04 {
  background: url(../images/top-img04.webp) no-repeat center/cover;
}

.top .top-inner .flex02 {
  width: 100%;
  max-width: 1920px;
  height: 2.7em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3%;
  gap: 3%;
  margin: 0 auto;
}

@media screen and (min-width: 2000px) {
  .top .top-inner .flex02 {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .top .top-inner .flex02 {
    margin-top: 5vw;
    display: block;
    position: relative;
    height: auto;
    padding: 0 5%;
  }
}

.top .top-inner .flex02 .subtitle {
  width: 56%;
}

@media screen and (max-width: 768px) {
  .top .top-inner .flex02 .subtitle {
    width: 100%;
  }
}

.top .top-inner .flex02 .wrap {
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: solid 2px #0073BD;
  border-radius: min(0.8vw, 20px);
  padding: min(0.8vw, 20px);
}

@media screen and (max-width: 768px) {
  .top .top-inner .flex02 .wrap {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 5vw;
    padding: 3vw;
    gap: 2vw;
  }
}

.top .top-inner .flex02 .wrap img {
  width: 42%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .top .top-inner .flex02 .wrap img {
    width: 60%;
  }
}

.top .top-inner .flex02 .wrap .app01 {
  width: 26%;
  height: auto;
  font-size: 10px;
}

.top .top-inner .flex02 .wrap .app01 img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .top .top-inner .flex02 .wrap .app01 {
    width: 45%;
  }
}

.top .top-inner .flex02 .wrap .app02 {
  width: 28.5%;
  height: auto;
  font-size: 10px;
}

.top .top-inner .flex02 .wrap .app02 img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .top .top-inner .flex02 .wrap .app02 {
    width: 51%;
  }
}

.sec {
  width: 100%;
  padding: min(7.5vw, 120px) 0 0;
}

@media screen and (max-width: 768px) {
  .sec {
    padding-top: 12.5vw;
  }
}

#news .wrap, #infomation .wrap {
  width: 100%;
  border: #0073BD solid 1px;
  padding: 1.5em;
  overflow: scroll;
  height: 16em;
}

@media screen and (max-width: 768px) {
  #news .wrap, #infomation .wrap {
    padding: 0.8em 1em 1em;
    font-size: 3.43vw;
  }
}

#news .wrap .news-text, #infomation .wrap .news-text {
  padding-bottom: 1em;
  margin-bottom: 0.7em;
  border-bottom: 1px solid #ccc;
}

#news .wrap .news-text:last-of-type, #infomation .wrap .news-text:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

#news .wrap .news-text .date, #infomation .wrap .news-text .date {
  display: block;
  color: #999999;
}

#campaign #slide03 {
  width: 100%;
}

@media screen and (max-width: 768px) {
  #campaign #slide03 {
    display: block;
    width: 86%;
    margin: 0 auto;
  }
}

#campaign #slide03.is-limited-count .splide__list {
  display: flex !important;
  justify-content: center !important;
}

#campaign #slide03.is-limited-count .splide__slide {
  flex: 0 0 calc(33.333% - 1px) !important;
  max-width: calc(33.333% - 1px) !important;
}

@media screen and (max-width: 768px) {
  #campaign #slide03.is-limited-count .splide__slide {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

#campaign #slide03 li {
  width: calc(100% / 3);
  padding: 0 1.5em;
  /* 開いた時の状態 */
}

@media screen and (max-width: 768px) {
  #campaign #slide03 li {
    width: 100%;
    border-left: 0;
    border-right: 0;
    padding: 0;
  }
}

#campaign #slide03 li a .imgbox {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #campaign #slide03 li a .imgbox {
    width: 100%;
    margin: 0 auto;
  }
}

#campaign #slide03 li a .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: ease 0.5s;
}

#campaign #slide03 li a:hover .imgbox img {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  #campaign #slide03 li a:hover .imgbox img {
    transform: none;
  }
}

#campaign #slide03 li a .campaign-title {
  width: 100%;
  font-size: 1.3em;
  font-weight: 600;
  color: #0073BD;
  margin-top: 1em;
  text-align: justify;
  line-height: 1.6;
  display: block;
}

#campaign #slide03 li a .campaign-text {
  width: 100%;
  margin-top: 1em;
  text-align: justify;
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

#campaign #slide03 li.is-open .campaign-text {
  -webkit-line-clamp: initial;
  display: block;
}

#campaign #slide03 li .news-more-btn {
  margin-top: 15px;
  background: #fff;
  border: 1px solid #333;
  padding: 5px 15px;
  cursor: pointer;
  font-size: 0.85em;
  margin: 1em auto 0;
  transition: ease 0.3s;
}

#campaign #slide03 li .news-more-btn:hover {
  background: #333;
  color: #fff;
}

#campaign #slide03 .splide__arrows .splide-prev {
  width: 2em;
  height: auto;
  background: none;
  transform: translateX(-180%);
  opacity: 1;
}

#campaign #slide03 .splide__arrows .splide-prev img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  #campaign #slide03 .splide__arrows .splide-prev {
    left: 0;
    top: 80vw;
    width: 6.5vw;
    transform: translateX(-150%);
  }
}

#campaign #slide03 .splide__arrows .splide-next {
  width: 2em;
  height: auto;
  background: none;
  transform: translateX(180%);
  opacity: 1;
}

#campaign #slide03 .splide__arrows .splide-next img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  #campaign #slide03 .splide__arrows .splide-next {
    right: 0;
    top: 80vw;
    width: 6.5vw;
    transform: translateX(150%);
  }
}

#function {
  width: 100%;
  overflow: hidden;
}

#function .wrap01, #function .wrap02 {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1;
  font-size: min(1.81vw, 18px);
  padding-bottom: min(7.5vw, 144px);
}

#function .wrap01::before, #function .wrap02::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 400vw;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #26AAFF;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  #function .wrap01::after, #function .wrap02::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10%;
    height: 700vw;
    width: 120vw;
    transform: translate(-50%, 10%);
    background: #26AAFF;
    z-index: -2;
  }
}

#function .wrap01 .sec-subtitle, #function .wrap02 .sec-subtitle {
  font-size: min(3.75vw, 72px);
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  margin: 2em auto 1em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .sec-subtitle, #function .wrap02 .sec-subtitle {
    font-size: 5.625vw;
  }
}

#function .wrap01 .box, #function .wrap02 .box {
  width: calc(50% - 1em);
  border: solid 0.25em #fff;
  border-radius: 1em;
  padding: 1em 1.2em;
  margin-bottom: 3em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box, #function .wrap02 .box {
    position: relative;
    width: 100%;
    padding: 5vw;
    border-radius: 5vw;
  }
  #function .wrap01 .box.sp-pb, #function .wrap02 .box.sp-pb {
    padding-bottom: 18vw;
  }
  #function .wrap01 .box .link-btn01, #function .wrap02 .box .link-btn01 {
    position: absolute;
    bottom: 2vw;
    left: 5.5%;
    font-size: 4.375vw !important;
    width: 89%;
    display: block;
    text-align: center;
    margin-top: 0.7em;
    padding: 0.5em;
  }
}

#function .wrap01 .box .flex, #function .wrap02 .box .flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box .flex, #function .wrap02 .box .flex {
    flex-wrap: wrap;
  }
}

#function .wrap01 .box .flex .textarea, #function .wrap02 .box .flex .textarea {
  width: 43%;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box .flex .textarea, #function .wrap02 .box .flex .textarea {
    width: 100%;
  }
}

#function .wrap01 .box .flex .textarea .number-wrap, #function .wrap02 .box .flex .textarea .number-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
}

#function .wrap01 .box .flex img, #function .wrap02 .box .flex img {
  width: 47%;
  height: auto;
  transform-origin: top right;
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box .flex img, #function .wrap02 .box .flex img {
    width: 60%;
    transform: scale(1);
    margin-left: 40%;
  }
}

#function .wrap01 .box .flex .img-wrap-mv, #function .wrap02 .box .flex .img-wrap-mv {
  position: relative;
  width: 47%;
  height: auto;
  transform-origin: top right;
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box .flex .img-wrap-mv, #function .wrap02 .box .flex .img-wrap-mv {
    width: 60%;
    margin-left: 40%;
    transform: scale(1);
  }
}

#function .wrap01 .box .flex .img-wrap-mv img, #function .wrap02 .box .flex .img-wrap-mv img {
  width: 100%;
  height: auto;
  transform: unset;
  margin-left: 0;
}

#function .wrap01 .box .flex .img-wrap-mv .mv-box, #function .wrap02 .box .flex .img-wrap-mv .mv-box {
  position: absolute;
  top: 12.4%;
  left: 6.4%;
  z-index: 2;
  width: 87.67%;
  height: auto;
  aspect-ratio: 1/1.745;
  background: #Ffff;
  display: block;
  overflow: hidden;
}

#function .wrap01 .box .flex .img-wrap-mv .mv-box video, #function .wrap02 .box .flex .img-wrap-mv .mv-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#function .wrap01 .box .flex .img-wrap-mv .ticket-box, #function .wrap02 .box .flex .img-wrap-mv .ticket-box {
  position: absolute;
  top: 12.4%;
  left: 6.4%;
  z-index: 2;
  width: 87.67%;
  height: auto;
  aspect-ratio: 1/1.78;
  background: #Ffff;
  display: block;
  overflow: hidden;
}

#function .wrap01 .box .flex .img-wrap-mv .ticket-box img, #function .wrap02 .box .flex .img-wrap-mv .ticket-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: auto;
  transform-origin: right center;
  transform: translate(-50%, -50%);
}

#function .wrap01 .box .flex .img-wrap-mv .ticket-box img.anime01, #function .wrap02 .box .flex .img-wrap-mv .ticket-box img.anime01 {
  transform: translate(-50%, -70%);
  animation: ticket01 5s linear 0s infinite;
}

#function .wrap01 .box .flex .img-wrap-mv .ticket-box img.anime02, #function .wrap02 .box .flex .img-wrap-mv .ticket-box img.anime02 {
  transform: translate(-50%, -30%);
  animation: ticket02 5s linear 0s infinite;
}

@keyframes ticket01 {
  0%, 10% {
    transform: translate(-50%, -70%) rotate(0);
  }
  30% {
    transform: translate(-50%, -85%) rotate(30deg);
  }
  70% {
    transform: translate(-50%, -85%) rotate(30deg);
  }
  90%, 100% {
    transform: translate(-50%, -70%) rotate(0);
  }
}

@keyframes ticket02 {
  0%, 10% {
    transform: translate(-50%, -30%) rotate(0);
  }
  30% {
    transform: translate(-50%, -15%) rotate(-30deg);
  }
  70% {
    transform: translate(-50%, -15%) rotate(-30deg);
  }
  90%, 100% {
    transform: translate(-50%, -30%) rotate(0);
  }
}

#function .wrap01 .box .flex .img-wrap-mv2, #function .wrap02 .box .flex .img-wrap-mv2 {
  position: relative;
  width: 47%;
  height: auto;
  transform-origin: top right;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box .flex .img-wrap-mv2, #function .wrap02 .box .flex .img-wrap-mv2 {
    width: 60%;
    margin-left: 40%;
  }
}

#function .wrap01 .box .flex .img-wrap-mv2 .mock, #function .wrap02 .box .flex .img-wrap-mv2 .mock {
  width: 100%;
  height: auto;
  transform-origin: top right;
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box .flex .img-wrap-mv2 .mock, #function .wrap02 .box .flex .img-wrap-mv2 .mock {
    transform: scale(1);
    margin-left: 0;
  }
}

#function .wrap01 .box .flex .img-wrap-mv2 .mv-box, #function .wrap02 .box .flex .img-wrap-mv2 .mv-box {
  position: absolute;
  top: 13.4%;
  left: -2.6%;
  z-index: 2;
  width: 95.67%;
  height: 30.6vw;
  max-height: 430px;
  background: #Ffff;
  display: block;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box .flex .img-wrap-mv2 .mv-box, #function .wrap02 .box .flex .img-wrap-mv2 .mv-box {
    top: 12.4%;
    left: 7.2%;
    width: 86.6%;
    height: 73.75vw;
    max-height: none;
  }
}

#function .wrap01 .box .flex .img-wrap-mv2 .mv-box #slide04, #function .wrap02 .box .flex .img-wrap-mv2 .mv-box #slide04 {
  width: 100%;
}

#function .wrap01 .box .flex .img-wrap-mv2 .mv-box #slide04 .splide__slide img, #function .wrap02 .box .flex .img-wrap-mv2 .mv-box #slide04 .splide__slide img {
  width: 100%;
  transform: scale(1);
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box .flex .img-wrap-mv2 .mv-box #slide04 .splide__slide img, #function .wrap02 .box .flex .img-wrap-mv2 .mv-box #slide04 .splide__slide img {
    margin-left: 0;
  }
}

#function .wrap01 .box02, #function .wrap02 .box02 {
  width: 100%;
  border: solid 0.25em #fff;
  border-radius: 1em;
  padding: 1em 1.2em;
  margin-bottom: 3em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box02, #function .wrap02 .box02 {
    position: relative;
    width: 100%;
    padding: 5vw;
    border-radius: 5vw;
  }
}

#function .wrap01 .box02 .flex, #function .wrap02 .box02 .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box02 .flex, #function .wrap02 .box02 .flex {
    flex-wrap: wrap;
  }
}

#function .wrap01 .box02 .flex .textarea, #function .wrap02 .box02 .flex .textarea {
  width: 72%;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box02 .flex .textarea, #function .wrap02 .box02 .flex .textarea {
    width: 100%;
  }
}

#function .wrap01 .box02 .flex .textarea .flex02, #function .wrap02 .box02 .flex .textarea .flex02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box02 .flex .textarea .flex02, #function .wrap02 .box02 .flex .textarea .flex02 {
    flex-wrap: wrap;
  }
  #function .wrap01 .box02 .flex .textarea .flex02 .function-text03, #function .wrap02 .box02 .flex .textarea .flex02 .function-text03 {
    position: absolute;
    top: 110vw;
    left: 5%;
    font-size: 3.75vw;
    width: 7em;
    text-indent: -1em;
    padding-left: 1em;
  }
}

#function .wrap01 .box02 .flex .textarea .flex02 .flex02-wrap, #function .wrap02 .box02 .flex .textarea .flex02 .flex02-wrap {
  width: 68%;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box02 .flex .textarea .flex02 .flex02-wrap, #function .wrap02 .box02 .flex .textarea .flex02 .flex02-wrap {
    width: 100%;
  }
}

#function .wrap01 .box02 .flex .textarea .flex02 .smooz, #function .wrap02 .box02 .flex .textarea .flex02 .smooz {
  width: 28%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box02 .flex .textarea .flex02 .smooz, #function .wrap02 .box02 .flex .textarea .flex02 .smooz {
    position: absolute;
    left: 3%;
    top: 70vw;
    width: 40%;
    z-index: -1;
  }
}

#function .wrap01 .box02 .flex .textarea .flex02 .smooz img, #function .wrap02 .box02 .flex .textarea .flex02 .smooz img {
  width: 75%;
  height: auto;
}

#function .wrap01 .box02 .flex .textarea .number-wrap02, #function .wrap02 .box02 .flex .textarea .number-wrap02 {
  display: flex;
  width: 100%;
  align-items: flex-end;
  gap: 1em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box02 .flex .textarea .number-wrap02, #function .wrap02 .box02 .flex .textarea .number-wrap02 {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5vw;
    display: block;
  }
}

#function .wrap01 .box02 .flex .textarea .number-wrap02 .number, #function .wrap02 .box02 .flex .textarea .number-wrap02 .number {
  transform: translate(-15%, 10%);
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box02 .flex .textarea .number-wrap02 .number, #function .wrap02 .box02 .flex .textarea .number-wrap02 .number {
    transform: unset;
  }
}

#function .wrap01 .box02 .flex .textarea .number-wrap02 .number-text, #function .wrap02 .box02 .flex .textarea .number-wrap02 .number-text {
  font-size: clamp(10px, 3.11vw, 37px);
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box02 .flex .textarea .number-wrap02 .number-text, #function .wrap02 .box02 .flex .textarea .number-wrap02 .number-text {
    font-size: 5vw;
  }
}

#function .wrap01 .box02 .flex .textarea .number-wrap02 .link-btn01, #function .wrap02 .box02 .flex .textarea .number-wrap02 .link-btn01 {
  font-size: clamp(10px, 1.6vw, 20px);
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box02 .flex .textarea .number-wrap02 .link-btn01, #function .wrap02 .box02 .flex .textarea .number-wrap02 .link-btn01 {
    font-size: 4.375vw;
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 0.7em;
    padding: 0.5em;
  }
}

#function .wrap01 .box02 .flex .img01, #function .wrap02 .box02 .flex .img01 {
  width: 21.2%;
  height: auto;
  transform-origin: top right;
  transform: scale(1.12);
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box02 .flex .img01, #function .wrap02 .box02 .flex .img01 {
    width: 60%;
    transform: scale(1);
    margin-left: 40%;
    margin-top: 3vw;
    margin-bottom: 28vw;
  }
}

#function .wrap01 .function-text01, #function .wrap02 .function-text01 {
  text-align: left;
  color: #fff;
  font-weight: 800;
  line-height: 1.5;
  font-size: 2.2em;
  margin-bottom: 0.3em;
  font-size: clamp(15px, 2.8vw, 40px);
}

@media screen and (max-width: 768px) {
  #function .wrap01 .function-text01, #function .wrap02 .function-text01 {
    font-size: 5.625vw;
    line-height: 1.3;
  }
}

#function .wrap01 .function-text01 .link-btn01, #function .wrap02 .function-text01 .link-btn01 {
  font-size: clamp(10px, 1.6vw, 20px);
  transform: translateY(-23%);
  display: inline-block;
}

#function .wrap01 .box.b2 .function-text01, #function .wrap02 .box.b2 .function-text01 {
  font-size: clamp(15px, 2.6vw, 36px);
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box.b2 .function-text01, #function .wrap02 .box.b2 .function-text01 {
    font-size: 5.625vw;
    line-height: 1.3;
    width: 90%;
  }
}

#function .wrap01 .box.b2 .link-btn01, #function .wrap02 .box.b2 .link-btn01 {
  font-size: clamp(10px, 1.6vw, 20px);
  transform: none;
  display: inline-block;
  white-space: nowrap;
  margin-top: 1em;
  line-height: 1;
  padding: 0.5em 2.3em 0.6em 0.7em;
  border: solid 2px #0073BD;
  color: #0073BD;
  margin-bottom: 13em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box.b2 .link-btn01, #function .wrap02 .box.b2 .link-btn01 {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    width: 100%;
    font-size: 4.375vw;
  }
}

#function .wrap01 .box.b2 .link-btn01::after, #function .wrap02 .box.b2 .link-btn01::after {
  transform: translateY(-50%);
  right: 0.5em;
  background: url(../images/arrow02.webp) no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .box.b2, #function .wrap02 .box.b2 {
    position: relative;
  }
  #function .wrap01 .box.b2 img, #function .wrap02 .box.b2 img {
    margin-bottom: 15vw;
  }
  #function .wrap01 .box.b2 .number-wrap, #function .wrap02 .box.b2 .number-wrap {
    bottom: 15vw !important;
  }
}

#function .wrap01 .function-text02, #function .wrap02 .function-text02 {
  color: #fff;
  font-weight: 600;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0.3em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .function-text02, #function .wrap02 .function-text02 {
    font-size: 4.375vw;
    line-height: 1.5;
  }
}

#function .wrap01 .function-text02.mb1, #function .wrap02 .function-text02.mb1 {
  margin-bottom: 15em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .function-text02.mb1, #function .wrap02 .function-text02.mb1 {
    margin-bottom: 1em;
  }
}

#function .wrap01 .function-text02.mb2, #function .wrap02 .function-text02.mb2 {
  margin-bottom: 11.3em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .function-text02.mb2, #function .wrap02 .function-text02.mb2 {
    margin-bottom: 1em;
  }
}

#function .wrap01 .function-text02.mb3, #function .wrap02 .function-text02.mb3 {
  margin-bottom: 21.7em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .function-text02.mb3, #function .wrap02 .function-text02.mb3 {
    margin-bottom: 1em;
  }
}

#function .wrap01 .function-text03, #function .wrap02 .function-text03 {
  color: #fff;
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1.4;
  text-align: justify;
  text-indent: -1em;
  padding-left: 1em;
}

#function .wrap01 .function-text03.mb1, #function .wrap02 .function-text03.mb1 {
  margin-bottom: 14em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .function-text03.mb1, #function .wrap02 .function-text03.mb1 {
    margin-bottom: 1em;
  }
}

#function .wrap01 .function-text04, #function .wrap02 .function-text04 {
  color: #fff;
  font-size: min(2.33vw, 27px);
  font-weight: 700;
  line-height: 1.5;
  text-align: justify;
  margin-top: 0.5em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .function-text04, #function .wrap02 .function-text04 {
    font-size: 4.5vw;
  }
}

#function .wrap01 .number, #function .wrap02 .number {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: min(11.25vw, 180px);
  color: #fff;
  line-height: 1;
  margin-left: 0.1em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .number, #function .wrap02 .number {
    font-size: 30vw;
    margin-left: 0;
  }
}

#function .wrap01 .number-text, #function .wrap02 .number-text {
  font-size: 2em;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

#function .wrap01 .number-text.mb, #function .wrap02 .number-text.mb {
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .number-text, #function .wrap02 .number-text {
    font-size: 5vw;
  }
}

#function .wrap01 .min .function-text02, #function .wrap02 .min .function-text02 {
  line-height: 1.7;
}

#function .wrap01 .min .number-text, #function .wrap02 .min .number-text {
  font-size: 1.5em;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #function .wrap01 .min .number-text, #function .wrap02 .min .number-text {
    font-size: 5vw;
    width: 6em;
    line-height: 1.2;
  }
}

@media screen and (max-width: 768px) {
  #function .wrap01 .min .function-text03.mb1, #function .wrap02 .min .function-text03.mb1 {
    position: absolute;
    top: 40vw;
    left: 0;
    font-size: 3.75vw;
    width: 7em;
    text-indent: -1em;
    padding-left: 1em;
  }
}

#function .wrap02 {
  padding-bottom: 1vw;
}

#function .wrap02::before {
  background: #0073BD;
}

@media screen and (max-width: 768px) {
  #function .wrap02::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0%;
    height: 450vw;
    width: 120vw;
    transform: translate(-50%, 10%);
    background: #0073BD;
    z-index: -2;
  }
}

#function .wrap02 h4,
#function .wrap02 .function-text01,
#function .wrap02 .function-text02,
#function .wrap02 .function-text03,
#function .wrap02 .number,
#function .wrap02 .number-text {
  color: #0073BD;
}

#function .wrap02 h4.mb1,
#function .wrap02 .function-text01.mb1,
#function .wrap02 .function-text02.mb1,
#function .wrap02 .function-text03.mb1,
#function .wrap02 .number.mb1,
#function .wrap02 .number-text.mb1 {
  margin-bottom: 18.5em;
}

@media screen and (max-width: 768px) {
  #function .wrap02 h4.mb1,
  #function .wrap02 .function-text01.mb1,
  #function .wrap02 .function-text02.mb1,
  #function .wrap02 .function-text03.mb1,
  #function .wrap02 .number.mb1,
  #function .wrap02 .number-text.mb1 {
    margin-bottom: 1em;
  }
}

#function .wrap02 h4.mb2,
#function .wrap02 .function-text01.mb2,
#function .wrap02 .function-text02.mb2,
#function .wrap02 .function-text03.mb2,
#function .wrap02 .number.mb2,
#function .wrap02 .number-text.mb2 {
  margin-bottom: 14.6em;
}

@media screen and (max-width: 768px) {
  #function .wrap02 h4.mb2,
  #function .wrap02 .function-text01.mb2,
  #function .wrap02 .function-text02.mb2,
  #function .wrap02 .function-text03.mb2,
  #function .wrap02 .number.mb2,
  #function .wrap02 .number-text.mb2 {
    margin-bottom: 1em;
  }
}

#function .wrap02 h4.mb3,
#function .wrap02 .function-text01.mb3,
#function .wrap02 .function-text02.mb3,
#function .wrap02 .function-text03.mb3,
#function .wrap02 .number.mb3,
#function .wrap02 .number-text.mb3 {
  margin-bottom: 14em;
}

@media screen and (max-width: 768px) {
  #function .wrap02 h4.mb3,
  #function .wrap02 .function-text01.mb3,
  #function .wrap02 .function-text02.mb3,
  #function .wrap02 .function-text03.mb3,
  #function .wrap02 .number.mb3,
  #function .wrap02 .number-text.mb3 {
    margin-top: 6.5em;
  }
}

@media screen and (max-width: 768px) {
  #function .wrap02 .function-text03 {
    position: absolute;
    font-size: 3.75vw;
    width: 7em;
    margin-top: 0.1em;
  }
}

#function .wrap02 .box {
  background: #fff;
}

#function .wrap02-sub {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: min(7.5vw, 144px);
  background: #fff;
  overflow: hidden;
  z-index: 2;
}

#function .wrap02-sub::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 400vw;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #0073BD;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  #menber #slide02 {
    width: 86%;
    margin: 0 auto;
  }
}

#menber #slide02 .splide__slide {
  position: relative;
  font-size: min(5.25vw, 84px);
}

@media screen and (max-width: 768px) {
  #menber #slide02 .splide__slide {
    padding: 0;
    width: 100%;
  }
}

#menber #slide02 .splide__slide.target02 {
  display: none;
}

#menber #slide02 .splide__slide img {
  width: 70%;
  margin-left: 30%;
  margin-top: 0.25em;
  margin-bottom: 0.3em;
  display: block;
}

@media screen and (max-width: 768px) {
  #menber #slide02 .splide__slide img {
    margin-bottom: 0.5em;
    margin-top: 0;
  }
}

#menber #slide02 .splide__slide img.img02 {
  width: 75%;
  margin-left: 25%;
}

#menber #slide02 .splide__slide img.img02a {
  width: 72%;
  margin-left: 23%;
}

#menber #slide02 .splide__slide .step {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Inter", sans-serif;
  font-size: min(5.25vw, 84px);
  z-index: -1;
  opacity: 0.2;
}

#menber #slide02 .splide__slide .step p {
  font-size: 0.75em;
  font-weight: 900;
  line-height: 1;
  color: #0073BD;
}

@media screen and (max-width: 768px) {
  #menber #slide02 .splide__slide .step p {
    font-size: 7vw;
  }
}

#menber #slide02 .splide__slide .step p.big {
  font-size: 2em;
  line-height: 0.8;
  margin-left: 0.05em;
}

@media screen and (max-width: 768px) {
  #menber #slide02 .splide__slide .step p.big {
    font-size: 25vw;
    text-align: center;
    margin: 0.05em 0 0;
  }
}

#menber #slide02 .splide__slide .imgarea {
  position: relative;
  width: 100%;
  aspect-ratio: 275/425;
  margin-top: 0.25em;
  margin-bottom: 0.3em;
}

#menber #slide02 .splide__slide .imgarea .imgarea-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#menber #slide02 .splide__slide .imgarea p {
  font-size: min(1.56vw, 14px);
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  #menber #slide02 .splide__slide .imgarea p {
    font-size: 3.75vw;
  }
}

#menber #slide02 .splide__slide .imgarea p.mt {
  padding-top: 13em;
}

#menber #slide02 .splide__slide .imgarea p a {
  color: #0073BD;
  text-decoration: underline;
}

#menber #slide02 .splide__slide .imgarea button {
  position: relative;
  font-size: min(1.81vw, 20px);
  font-weight: 600;
  display: block;
  text-align: center;
  border: solid 1px #0073BD;
  width: 12em;
  padding: 0.5em 2em 0.6em 1em;
  margin: 0 auto 0.7em;
  color: #0073BD;
  background: #fff;
  border-radius: 0.5em;
}

@media screen and (max-width: 768px) {
  #menber #slide02 .splide__slide .imgarea button {
    font-size: 4.375vw;
  }
}

#menber #slide02 .splide__slide .imgarea button::after {
  content: '';
  position: absolute;
  right: 1em;
  top: 50%;
  width: 0.9em;
  height: 0.9em;
  transform: translateY(-50%);
  background: url(../images/arrow02.webp) no-repeat center/contain;
}

#menber #slide02 .splide__slide .imgarea button.active {
  background: #0073BD;
  color: #fff;
}

#menber #slide02 .splide__slide .imgarea button.active::after {
  background: url(../images/arrow03.webp) no-repeat center/contain;
}

#menber #slide02 .splide__slide .menber-text01 {
  font-size: 0.3em;
  font-weight: 600;
  color: #0073BD;
  text-align: justify;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #menber #slide02 .splide__slide .menber-text01 {
    font-size: 4.375vw;
  }
}

#menber #slide02 .splide__slide .menber-text01a {
  font-size: min(1.43vw, 16px);
  font-weight: 600;
  color: #0073BD;
  text-align: justify;
  line-height: 1.5;
  text-indent: -2em;
  padding-left: 2em;
}

@media screen and (max-width: 768px) {
  #menber #slide02 .splide__slide .menber-text01a {
    font-size: 3.75vw;
  }
}

#menber #slide02 .splide__slide .menber-text01a.noindent {
  text-indent: 0;
  padding-left: 0;
}

#menber #slide02 .splide__slide .menber-text02 {
  font-size: min(1.43vw, 16px);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background: #0073BD;
  padding: 0.5em 0.5em 0.6em;
  display: table;
  margin-bottom: 0.8em;
}

@media screen and (max-width: 768px) {
  #menber #slide02 .splide__slide .menber-text02 {
    font-size: 3.43vw;
  }
}

#menber #slide02 .splide__slide .menber-text03 {
  font-size: min(1.43vw, 14px);
  font-weight: 400;
  margin-top: 1em;
  color: #000;
  text-align: justify;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #menber #slide02 .splide__slide .menber-text03 {
    font-size: 3.43vw;
    margin-top: 0.5em;
  }
}

#menber #slide02 .splide__arrows .splide-prev {
  width: 2em;
  height: auto;
  background: none;
  transform: translateX(-180%);
  opacity: 1;
}

#menber #slide02 .splide__arrows .splide-prev img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  #menber #slide02 .splide__arrows .splide-prev {
    left: 0;
    top: 60vw;
    width: 6.5vw;
    transform: translateX(-150%);
  }
}

#menber #slide02 .splide__arrows .splide-next {
  width: 2em;
  height: auto;
  background: none;
  transform: translateX(180%);
  opacity: 1;
}

#menber #slide02 .splide__arrows .splide-next img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  #menber #slide02 .splide__arrows .splide-next {
    right: 0;
    top: 60vw;
    width: 6.5vw;
    transform: translateX(150%);
  }
}

.footer {
  position: relative;
  width: 100%;
  padding: 60px 0 0;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 7.5vw 0 0;
    margin-bottom: 24vw;
  }
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(5, 117, 189, 0.99) 0, rgba(48, 179, 231, 0.99) 20%, rgba(62, 177, 100, 0.99) 40%, rgba(62, 177, 100, 0.99) 60%, rgba(48, 179, 231, 0.99) 80%, rgba(5, 117, 189, 0.99) 100%);
}

.footer .inner {
  text-align: center;
}

.footer .inner .sitelogo {
  width: 90%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .footer .inner .sitelogo {
    width: 50%;
    max-width: 200px;
  }
}

.footer .inner .sitelogo img {
  width: 100%;
  height: auto;
}

.footer .inner .copyright {
  font-size: 12px;
  margin-top: 3em;
}

@media screen and (max-width: 768px) {
  .footer .inner .copyright {
    font-size: 10px;
    margin-top: 7vw;
  }
}

.subfooter {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 115, 189, 0.15);
  z-index: 11;
  padding: 10px 0;
}

.subfooter .wrap {
  width: 42%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: solid 2px #0073BD;
  border-radius: min(0.8vw, 20px);
  padding: min(0.8vw, 20px);
  margin: 0 auto;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .subfooter .wrap {
    width: 100%;
    border: 0;
    background: none;
    justify-content: center;
    gap: 5vw;
  }
}

.subfooter .wrap img {
  width: 42%;
  height: auto;
}

.subfooter .wrap .app01 {
  width: 26%;
  height: auto;
  font-size: 10px;
}

.subfooter .wrap .app01 img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .subfooter .wrap .app01 {
    width: 41%;
  }
}

.subfooter .wrap .app02 {
  width: 28.5%;
  height: auto;
  font-size: 10px;
}

@media screen and (max-width: 768px) {
  .subfooter .wrap .app02 {
    width: 44.5%;
  }
}

.subfooter .wrap .app02 img {
  width: 100%;
  height: auto;
}

#gototop,
#fixfooter {
  transform: translateY(200%);
  transition: ease 0.5s;
}

@media screen and (max-width: 768px) {
  #gototop,
  #fixfooter {
    transform: translateY(350%);
    transition: ease 0.6s;
  }
}

#gototop.active,
#fixfooter.active {
  transform: translateY(0);
}

.faq {
  padding: min(12vw, 160px) 0;
}

@media screen and (max-width: 768px) {
  .faq {
    padding-top: 20vw;
  }
}

.faq .qa_list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  font-size: min(12vw, 20px);
}

@media screen and (max-width: 768px) {
  .faq .qa_list {
    font-size: min(5.3vw, 20px);
  }
}

.faq .qa_list .question_text {
  position: relative;
  font-size: 1em;
  line-height: 1.5;
  padding-bottom: 0.5em;
  padding-right: 2em;
  margin-bottom: 0.5em;
  margin-top: 1em;
  color: #0073BD;
  border-bottom: 1px solid #0073BD;
  cursor: pointer;
}

.faq .qa_list .question_text::before, .faq .qa_list .question_text::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.9em;
  height: 2px;
  background: #0073BD;
  transform: translateY(-50%);
  transition: ease 0.3s;
}

.faq .qa_list .question_text.active::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq .qa_list .answer_text {
  font-size: 0.8em;
  color: #333;
  line-height: 2;
  overflow: hidden;
  height: auto;
  max-height: 0;
  transition: ease 0.3s;
}

.faq .qa_list .answer_text.active {
  max-height: 10em;
}
