@charset "UTF-8";

/* ------------------------------------------

* RESET

------------------------------------------ */
html,
body,
article,
section,
header,
footer,
nav,
aside,
address,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
pre,
blockquote,
figure,
figcaption,
ul,
ol,
li,
dl,
dt,
dd,
a,
span,
em,
strong,
time,
sub,
sup,
mark,
img,
iframe,
embed,
object,
param,
video,
audio,
source,
canvas,
map,
area,
table,
tbody,
thead,
tfoot,
tr,
th,
td,
caption,
form,
input,
label,
button,
select,
textarea,
fieldset,
legend {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

html {
  font-size: 10px;
}

body {
  overflow-x: hidden;
  color: #2f2f2f;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-size: 100%;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

form,
input,
label,
button,
select,
textarea,
fieldset,
legend {
  font: inherit;
}

a,
input {
  transition: all 0.2s ease;
}

a {
  color: #2f2f2f;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

sup,
sub {
  font-size: 60%;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: baseline;
}

em,
address {
  font-style: normal;
}

img {
  max-width: 100%;
  line-height: 1;
  font-size: 0;
  vertical-align: top;
}

* {
  box-sizing: border-box;
}

@media print, screen and (min-width: 1025px) {
}

@media screen and (max-width: 1024px) {
}

/* ------------------------------------------

* 共通パーツ

------------------------------------------ */
.body-fixed {
  overflow: hidden;
}

main {
  overflow: hidden;
  display: block;
  background: #f4f5fb;
}

.sec-title {
  margin-bottom: 0.85em;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.sec-title span {
  display: block;
  color: #7578ff;
  font-family: "Roboto", sans-serif;
  font-size: 0.5em;
  text-transform: uppercase;
}

.sec-lead {
  margin-bottom: 2em;
  font-weight: 700;
  text-align: center;
}

.sec-lead .marker-text {
  display: inline-block;
  margin: 0 0.2em;
  padding: 0.1em 0.2em 0.2em;
  line-height: 1;
}

.sec-lead .marker-yellow {
  background: #fff700;
}

.sec-inner-1050 {
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
}

.f-roboto {
  font-family: "Roboto", sans-serif;
  font-style: normal;
}

.fs-L {
  font-size: 125%;
}

.fs-XL {
  font-size: 145%;
}

main p + p {
  margin-top: 0.8em;
}

@media print, screen and (min-width: 1025px) {
  main {
    font-size: 1.7rem;
  }

  .sec {
    padding: 90px 4%;
  }

  .sec-title {
    font-size: 4.2rem;
  }

  .sec-lead {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1024px) {
  main {
    font-size: 3.9vw;
  }

  .sec {
    padding: 12vw 4vw;
  }

  .sec-title {
    font-size: 6.4vw;
  }

  .sec-lead {
    font-size: 4.3vw;
  }
}

/* ------------------------------------------

* btn-animation

------------------------------------------ */
.btn-animation a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  color: #ffffff;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  border-radius: 3em;
  background: #3eb53d;
  z-index: 1;
}

.btn-animation a span {
  display: inline-block;
  margin-right: 0.5em;
  padding: 0.2em 0.4em 0.3em 0.6em;
  color: #e04f5b;
  font-size: 80%;
  border-radius: 2em;
  background: #ffffff;
}

@media print, screen and (min-width: 1025px) {
  .btn-animation a {
    height: 95px;
    font-size: 3.2rem;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.15);
  }

  #header #site-menu .list-main .btn-animation {
    display: flex;
    align-items: center;
    height: 77px;
  }

  #header #site-menu .list-main .btn-animation a {
    width: 340px;
    height: 53px;
    font-size: 1.9rem;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  }

  .btn-animation.max-750 {
    width: 100%;
    max-width: 750px;
  }
}

@media screen and (max-width: 1024px) {
  .btn-animation a {
    flex-direction: column;
    height: 20vw;
    font-size: 4.8vw;
  }

  .btn-animation a span {
    margin: 0 0 2vw;
  }

  #header #site-menu .list-main .btn-animation {
    display: none;
  }
}

/* ---------------------------------------- animation */
.btn-animation {
  position: relative;
  transition: 0.2s;
  margin: auto;
}

.btn-animation::before,
.btn-animation::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border-radius: 50px;
  background: #ccff00;
  transform: translate3d(0, 0, 0);
}

.btn-animation::before {
  animation: btnanime 1.5s ease-out infinite;
}

.btn-animation::after {
  animation: btnanime 1.5s ease-out 1.5s infinite;
}

@keyframes btnanime {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.1;
  }
  to {
    transform: scale(1.2, 1.4);
    opacity: 0;
  }
}

#header #site-menu .list-main .btn-animation::before {
  animation: btnanime2 6s ease-out infinite;
}

#header #site-menu .list-main .btn-animation::after {
  animation: btnanime2 6s ease-out infinite;
}

@keyframes btnanime2 {
  20%,
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  5% {
    opacity: 0.1;
  }
  10% {
    transform: scale(1.2, 1.4);
    opacity: 0;
  }
}

/* ---------------------------------------- header */
#header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  z-index: 10000;
}

#header .header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header a {
  text-decoration: none;
}

#header #site-menu .list-main a {
  font-weight: 700;
}

@media print, screen and (min-width: 1025px) {
  #header {
    overflow: hidden;
  }

  #header .header-in {
    height: 77px;
    padding: 0 1.5%;
  }

  #header .head-logo {
    width: 185px;
  }

  #header #site-menu .list-main {
    display: flex;
  }

  #header #site-menu .list-main li {
    margin: 0 10px;
  }

  #header #site-menu .list-main li:last-of-type {
    margin-right: 0;
  }

  #header #site-menu .list-main li a {
    display: flex;
    align-items: center;
    height: 77px;
    padding: 0 5px;
    font-size: 1.56rem;
    text-align: center;
  }

  #header #menu-toggle {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  #header .header-in {
    height: 60px;
    padding: 0 2.5%;
  }

  #header .head-logo {
    width: 150px;
  }

  #header #menu-toggle {
    position: fixed;
    top: 0px;
    right: 10px;
    width: 60px;
    height: 60px;
    z-index: 10001;
  }

  #header #menu-toggle .toggle-in {
    position: relative;
    width: 100%;
    height: 100%;
  }

  #header #menu-toggle span {
    position: absolute;
    left: 11px;
    width: 40px;
    height: 3px;
    background: #1e2187;
    transition: all 0.2s ease;
  }

  #header #menu-toggle span:first-of-type {
    top: 20px;
  }

  #header #menu-toggle span:nth-of-type(2) {
    top: 29px;
  }

  #header #menu-toggle span:nth-of-type(3) {
    bottom: 19px;
  }

  #header #menu-toggle.is-active span:first-of-type {
    transform: translateY(8px) rotate(-45deg);
  }

  #header #menu-toggle.is-active span:nth-of-type(2) {
    opacity: 0;
  }

  #header #menu-toggle.is-active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }

  #header #site-menu {
    overflow-y: auto;
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    padding: 80px 8% 40px;
    background: #ffffff;
    transform: translateX(100%);
    transition: all 0.5s ease;
    z-index: 10000;
  }

  #header #site-menu.is-open {
    transform: translateX(0);
  }

  #header #site-menu .list-main li a {
    display: block;
    padding: 2.5vw 0;
    font-size: 4.8vw;
    font-weight: 700;
  }
}

/* -------------------------------- fadein */
.fadein {
  opacity: 0;
  transition: opacity 0.8s;
}

.fadein.is-inview {
  opacity: 1;
  transition-delay: 0.5s;
}

/* ------------------------------------------

* コンテンツ

------------------------------------------ */
/* ---------------------------------------- first-view */
#first-view {
  background: url(../img/bg_wave.png) no-repeat 38% 84%,
    linear-gradient(82deg, #99ddfd 0%, #f8ff95 100%);
  background-size: cover auto;
}

@media screen and (max-width: 1024px) {
  #first-view {
    background: url(../img/bg_wave.png) no-repeat 0% 0%,
      linear-gradient(82deg, #99ddfd 0%, #f8ff95 100%);
    background-size: cover;
  }
}

/* -------------------------------- kv */
#kv .kv-title {
  opacity: 0;
}

#kv .kv-title.kv-fadein {
  animation: kv-focus-in 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53) 0s both;
}

@keyframes kv-focus-in {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

#kv .kv-image .image {
  visibility: hidden;
}

@media print, screen and (min-width: 1025px) {
  #kv {
    padding: 100px 0 290px 0;
  }

  #kv .kv-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1120px;
    margin: auto;
    gap: 6%;
    padding-bottom: 100px;
  }

  #kv .kv-title {
    position: relative;
    width: 43%;
    padding-top: 20px;
    z-index: 1;
  }

  #kv .kv-image {
    position: relative;
    width: 48%;
    flex-shrink: 0;
  }

  #kv .kv-image .image img {
    border-radius: 20px;
    box-shadow: 4px 4px 32px 0px rgb(255 255 255);
  }

  #kv .kv-image .image1 {
    margin-right: -5%;
  }

  #kv .kv-image .image2 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: -3% 0% 0% -65%;
    width: 63%;
  }

  #kv .kv-image .image3 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: 4% 0% 0% 4%;
    width: 56%;
  }

  #kv .kv-image .image4 {
    position: absolute;
    top: 108%;
    left: -112%;
    width: 52%;
  }

  #kv .kv-image .image5 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: 28% 0% 0% 37%;
    width: 44%;
  }

  #kv .kv-image .image6 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: 40% 0% 0% -62%;
    width: 44%;
  }
}

@media screen and (max-width: 1024px) {
  #kv {
    overflow: hidden;
    padding: 100px 9vw 13vw;
  }

  #kv .kv-inner {
  }

  #kv .kv-title {
    width: 85%;
    margin: 0 auto 42px;
  }

  #kv .kv-image {
    position: relative;
  }

  #kv .kv-image .image img {
    border-radius: 8px;
    box-shadow: 4px 4px 10px 0px rgb(255 255 255);
  }

  #kv .kv-image .image1 {
    width: 100%;
  }

  #kv .kv-image .image2 {
    margin: -8% 0% 0% 45%;
    width: 68%;
  }

  #kv .kv-image .image3 {
    margin: -26% 0% 0% -12%;
    width: 50%;
  }

  #kv .kv-image .image4 {
    margin: 6% 0% 0% 0%;
    width: 52%;
  }

  #kv .kv-image .image5 {
    margin: -62% 0% 0% 63%;
    width: 42%;
  }

  #kv .kv-image .image6 {
    margin: 4% 0% 0% 58%;
    width: 42%;
  }
}

/* -------------------------------- lead */
#lead p {
  font-weight: 900;
  text-align: center;
}

#lead p + p {
  margin-top: 0.8em;
}

@media print, screen and (min-width: 1025px) {
  #lead {
    padding-bottom: 50px;
  }

  #lead p {
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 1024px) {
  #lead {
    padding: 0 4vw 12vw;
  }

  #lead p {
    font-size: 4.8vw;
  }
}

/* -------------------------------- status */
#status {
  background: #ffffff;
}

#status .st-num {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#status .st-num small {
  padding: 0.2em;
  font-weight: 700;
}

#status .st-num .square {
  display: inline-flex;
  gap: 2px;
}

#status .st-num .square span {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  border: 2px solid #d7d8e1;
  border-radius: 5px;
  background: #ffffff;
}

#status .st-num .slash {
  position: relative;
  padding: 0 20px;
  height: 50px;
}

#status .st-num .slash::before {
  content: "";
  position: absolute;
  top: 0px;
  width: 2px;
  height: 50px;
  border-left: solid 2px #2f2f2f;
  transform: rotate(15deg);
}

#status .st-num .st-num-current .square span {
  color: #1e2187;
}

#status .st-num .st-num-goal .square span {
  width: auto;
  border: 0;
  background: none;
}

#status .st-num .st-num-day .square span {
  color: #df0000;
}

#status .st-bar {
  position: relative;
  width: 100%;
  border-radius: 3em;
  background: #f0f1f9;
}

#status .st-bar .st-bar-inner {
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 3em;
  border: 2px solid #1e2187;
  background: #7578ff;
}

#status .st-bar .st-bar-text {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  font-weight: 700;
  text-align: center;
  z-index: 2;
}

#status .st-announce {
  font-weight: 700;
  text-align: center;
}

#status .st-note {
  text-align: center;
}

@media print, screen and (min-width: 1025px) {
  #status {
    padding: 50px 4% 60px;
  }

  #status .st-num small {
    font-size: 2rem;
  }

  #status .st-num .square span {
    width: 34px;
    height: 68px;
    line-height: 68px;
    font-size: 4rem;
  }

  #status .st-bar {
    max-width: 750px;
    height: 40px;
    margin: 18px auto;
  }

  #status .st-bar .st-bar-inner {
    min-width: 70px;
    height: 40px;
  }

  #status .st-bar .st-bar-text {
    font-size: 2rem;
    line-height: 40px;
  }

  #status .st-announce {
    font-size: 2.2rem;
  }

  #status .st-note {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1024px) {
  #status {
    padding: 8vw 4vw 9vw;
  }

  #status .st-num small {
    font-size: 3.9vw;
  }

  #status .st-num .square span {
    width: 7vw;
    height: 10.7vw;
    line-height: 10.7vw;
    font-size: 7.5vw;
  }

  #status .st-bar {
    width: 100%;
    height: 10vw;
    margin: 4.6vw auto 4.3vw;
  }

  #status .st-bar .st-bar-inner {
    min-width: 70px;
    height: 10vw;
  }

  #status .st-bar .st-bar-text {
    font-size: 4.8vw;
    line-height: 10vw;
  }

  #status .st-note {
    margin-bottom: 4.6vw;
    font-size: 2.9vw;
  }
}

/* -------------------------------- media */
#media-slider .slide-inner {
  padding: 17px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 4px 4px 16px 0px rgb(225 226 245);
  background: #ffffff;
}

#media-slider .slide-inner figure img {
  width: auto;
}

#media-slider .slide-inner p {
  font-weight: 700;
}

#media-slider .slide-inner p span {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}

#media .media-list {
  display: flex;
  border-radius: 12px;
  box-shadow: 4px 4px 32px 0px rgb(225 226 245);
  background: #ffffff;
}

#media .media-list .image img {
  border-radius: 12px;
}

#media .media-list .list-title {
  color: #1e2187;
  font-weight: 700;
}

#media .media-list .list ul {
  display: flex;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 1025px) {
  #media {
    padding-right: 0;
    padding-left: 0;
  }

  #media-slider {
    padding: 35px 0 45px;
  }

  #media-slider .swiper-wrapper {
    transition-timing-function: linear;
  }

  #media-slider .slide-inner figure {
    margin-bottom: 22px;
  }

  #media-slider .slide-inner figure img {
    max-height: 120px;
  }

  #media-slider .swiper-button-prev,
  #media-slider .swiper-button-next,
  #media .slide-container .swiper-pagination {
    display: none;
  }

  #media .media-list {
    padding: 22px;
  }

  #media .media-list .image {
    width: 30%;
  }

  #media .media-list .list {
    width: 70%;
    padding-left: 3.7%;
  }

  #media .media-list .list-title {
    margin-bottom: 10px;
    font-size: 2.4rem;
  }

  #media .media-list .list li {
    margin: 0 32px 5px 0;
  }
}

@media screen and (max-width: 1024px) {
  #media-slider {
    margin-bottom: 40px;
  }

  #media-slider .swiper-slide {
    height: auto;
    padding: 20px;
  }

  #media-slider .slide-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  #media-slider .slide-inner figure {
    width: 30%;
  }

  #media-slider .slide-inner p {
    padding-left: 10px;
  }

  #media .slide-container .swiper-pagination {
    bottom: -20px;
  }

  #media .media-list {
    flex-wrap: wrap;
    padding: 4vw;
  }

  #media .media-list .image {
    width: 60%;
    margin: 0 auto 4vw;
  }

  #media .media-list .list {
    width: 100%;
    text-align: center;
  }

  #media .media-list .list-title {
    margin-bottom: 2vw;
    font-size: 4.8vw;
  }

  #media .media-list .list ul {
    justify-content: center;
  }

  #media .media-list .list li {
    margin: 0 15px 5px;
  }
}

/* -------------------------------- issue */
#issue {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: url(../img/issue_bg.jpg) no-repeat center center;
  background-size: cover;
}

#issue > .container {
  position: relative;
  z-index: 2;
}

#issue .sec-lead .marker-text {
  color: #1e2187;
}

#issue .issue-image {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

#issue .issue-image img {
  border-radius: 12px;
}

/* object-bg */
#issue .object-bg1 {
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(calc(-50% - 380px));
  width: 677px;
  max-width: 100%;
  height: 538px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff6c00 0%, #fff360 100%);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
  filter: blur(100px);
  opacity: 0.3;
  z-index: 1;
}

#issue .object-bg2 {
  position: absolute;
  bottom: -172px;
  left: 50%;
  transform: translateX(calc(-50% + 390px));
  width: 677px;
  max-width: 100%;
  height: 538px;
  border-radius: 50%;
  background: linear-gradient(82deg, #99ddfd 0%, #f8ff95 100%);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
  filter: blur(100px);
  opacity: 0.3;
  z-index: 1;
}

#issue .object-bg3 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #00021c;
  backdrop-filter: blur(12px);
  opacity: 0.9;
}

@media print, screen and (min-width: 1025px) {
}

@media screen and (max-width: 1024px) {
}

/* -------------------------------- program */
#program .program-list .list-title {
  margin-bottom: 1em;
  padding: 0.3em 0.5em;
  color: #ffffff;
  text-align: center;
  background: #1e2187;
}

#program .swiper-modal-button {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

#program .swiper-modal-button li {
  position: relative;
  padding: 0 0 1em;
  text-align: center;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
}

#program .swiper-modal-button li::before {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 0px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #1e2187;
  border-right: 0;
  transform: rotate(45deg);
}

#program .swiper-modal-button li img {
  border-radius: 12px 12px 0 0;
}

#program .swiper-modal-button li .button-title {
  margin-top: 0.6em;
}

#program .swiper-modal-button.clm-4 li {
  box-shadow: 4px 4px 16px 0px rgb(225 226 245);
}

#program .swiper-modal-button.clm-2 li {
  box-shadow: 4px 4px 32px 0px rgb(225 226 245);
}

@media print, screen and (min-width: 1025px) {
  #program .program-list .list-title {
    font-size: 3rem;
  }

  #program .program-list .list-title.fs28 {
    font-size: 2.8rem;
    padding: 0.38em;
  }

  #program .swiper-modal-button {
    margin-bottom: 70px;
  }

  #program .swiper-modal-button.clm-4 {
    flex-direction: column;
    align-content: space-between;
    height: 500px;
  }

  #program .swiper-modal-button.clm-4 li {
    position: relative;
    width: 22.8%;
  }

  #program .swiper-modal-button.clm-4 li:nth-of-type(odd)::after,
  #program .swiper-modal-button.clm-4 li:nth-of-type(even)::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 45px;
    border-left: 2px dotted #7578ff;
  }

  #program .swiper-modal-button.clm-4 li:nth-of-type(odd)::after {
    bottom: -55px;
    transform: translateX(calc(-50% - 25px));
  }

  #program .swiper-modal-button.clm-4 li:nth-of-type(even)::after {
    top: -55px;
    transform: translateX(calc(-50% + 25px));
  }

  #program .swiper-modal-button.clm-3 li {
    width: 31.5%;
  }

  #program .swiper-modal-button.clm-2 li {
    width: 47%;
  }

  /* object */
  #program .program-list .container {
    position: relative;
  }

  #program .program-list .object-bg1,
  #program .program-list .object-bg2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
  }

  #program .program-list .object-bg1 img,
  #program .program-list .object-bg2 img {
    width: auto;
    height: 125px;
  }

  #program .program-list .object-bg1 p,
  #program .program-list .object-bg2 p {
    margin-top: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
  }

  #program .program-list .object-bg1 {
    left: -80px;
  }

  #program .program-list .object-bg2 {
    right: -100px;
  }

  #program .program-list .object-bg3 {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 5px), -50%);
  }

  #program .program-list .object-bg3::before {
    display: inline-block;
    content: "";
    width: 980px;
    height: 10px;
    background: #7578ff;
  }

  #program .program-list .object-bg3::after {
    display: inline-block;
    content: "";
    width: 0;
    height: 0;
    border: solid 10px transparent;
    border-left-color: #7578ff;
  }
}

@media screen and (max-width: 1024px) {
  #program .program-list .list-title {
    font-size: 5.3vw;
  }

  #program .swiper-modal-button.clm-4 li {
    position: relative;
    width: 44.5%;
    margin-bottom: 4.8vw;
  }

  #program .swiper-modal-button.clm-4 li:nth-of-type(odd)::after,
  #program .swiper-modal-button.clm-4 li:nth-of-type(even)::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10%;
    height: 1px;
    border-top: 2px dotted #7578ff;
  }

  #program .swiper-modal-button.clm-4 li:nth-of-type(odd)::after {
    right: -10%;
    transform: translateY(calc(-50% - 25px));
  }

  #program .swiper-modal-button.clm-4 li:nth-of-type(even)::after {
    left: -10%;
    transform: translateY(calc(-50% + 25px));
  }

  #program .swiper-modal-button.clm-2,
  #program .swiper-modal-button.clm-3 {
    margin-bottom: 10vw;
  }

  #program .swiper-modal-button.clm-2 li:nth-of-type(n + 2),
  #program .swiper-modal-button.clm-3 li:nth-of-type(n + 2) {
    margin-top: 4.8vw;
  }

  /* object */
  #program .program-list .container {
    position: relative;
    margin-bottom: 10vw;
    padding: 24vw 0 22vw;
  }

  #program .program-list .object-bg1,
  #program .program-list .object-bg2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  #program .program-list .object-bg1 img,
  #program .program-list .object-bg2 img {
    width: auto;
    height: 22vw;
  }

  #program .program-list .object-bg1 p,
  #program .program-list .object-bg2 p {
    margin-left: 2vw;
    font-size: 3.5vw;
    font-weight: 700;
    line-height: 1.3;
  }

  #program .program-list .object-bg1 {
    top: 0px;
  }

  #program .program-list .object-bg2 {
    bottom: 0px;
  }

  #program .program-list .object-bg3 {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 24vw;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: calc(100% - 51vw);
  }

  #program .program-list .object-bg3::before {
    display: inline-block;
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: calc(100% - 10px);
    background: #7578ff;
  }

  #program .program-list .object-bg3::after {
    display: inline-block;
    content: "";
    position: absolute;
    bottom: -10px;
    width: 0;
    height: 0;
    border: solid 10px transparent;
    border-top-color: #7578ff;
  }
}

/* modal */
.modal {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  background-color: rgba(43, 45, 59, 0.85);
  opacity: 0;
  pointer-events: none;
  z-index: 10010;
}

.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 5px;
  background: #ffffff;
  z-index: 10012;
}

.modal-inner {
  padding: 1.3em;
  text-align: center;
}

.modal-content img {
  border-radius: 5px 5px 0 0;
}

.modal-content .modal-title {
  color: #1e2187;
  font-size: 2rem;
}

.modalClose {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 40px;
  height: 40px;
  border: solid 1px #ffffff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10011;
}

.modalClose:hover {
  opacity: 0.7;
}

.modalClose span {
  position: relative;
}

.modalClose span::before,
.modalClose span::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 7px;
  width: 25px;
  height: 1px;
  background: #ffffff;
}

.modalClose span::before {
  transform: rotate(45deg);
}

.modalClose span::after {
  transform: rotate(-45deg);
}

.modalBg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10010;
}

#program .swiper-button-prev,
#program .swiper-button-next {
  color: #ffffff;
}

#program .swiper-button-prev {
  left: -50px;
}

#program .swiper-button-next {
  right: -50px;
}

@media screen and (max-width: 1024px) {
  .modal .swiper-button-next,
  .modal .swiper-button-prev {
    transform: scale(0.6);
  }

  .modal {
    padding: 40px;
  }

  .modal-content .modal-title {
    font-size: 4.8vw;
  }

  .modalClose {
    right: 0px;
  }

  #program .swiper-button-prev {
    left: -32px;
  }

  #program .swiper-button-next {
    right: -32px;
  }
}

/* person */
.person {
  border-radius: 12px;
  box-shadow: 4px 4px 32px 0px rgb(225 226 245);
  background: #ffffff;
}

.person .person-title {
  color: #1e2187;
  font-weight: 900;
  text-align: center;
}

.person .person-box .image img {
  border-radius: 12px;
}

.person .person-box .detail-title span {
  display: block;
  font-size: 77%;
}

.person .person-box .detail-text:first-of-type {
  position: relative;
  margin-bottom: 50px;
}

.person .person-box .detail-text:first-of-type::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 42px solid transparent;
  border-left: 42px solid transparent;
  border-top: 25px solid #7578ff;
  border-bottom: 0;
}

@media print, screen and (min-width: 1025px) {
  .person {
    padding: 22px;
  }

  .person .person-title {
    font-size: 3rem;
    margin-bottom: 22px;
  }

  .person .person-box {
    display: flex;
    justify-content: center;
  }

  .person .person-box .image {
    width: 37%;
  }

  .person .person-box .detail {
    width: 63%;
    padding-left: 4%;
  }

  .person .person-box .detail-title {
    margin-bottom: 15px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1024px) {
  .person {
    padding: 4vw;
  }

  .person .person-title {
    font-size: 5.3vw;
    margin-bottom: 4vw;
  }

  .person .person-box .image {
    width: 40%;
    margin: 0 auto 4vw;
  }

  .person .person-box .detail-title {
    margin-bottom: 4vw;
    font-size: 4.3vw;
    text-align: center;
  }
}

/* map */
.sec-map {
  max-width: 980px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 1024px) {
  .sec-map {
    margin: 0 auto 30px;
  }
}

/* -------------------------------- output */
#output {
  background: #ffffff;
}

#output .output-list {
  counter-reset: listnum;
}

#output .output-list li::before {
  counter-increment: listnum;
  content: counter(listnum);
  display: inline-block;
  position: absolute;
  top: -12px;
  left: -12px;
  width: 43px;
  height: 43px;
  line-height: 43px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  text-align: center;
  border-radius: 12px;
  background: #1e2187;
}

#output .output-list li {
  position: relative;
  border-radius: 12px;
  box-shadow: 4px 4px 16px 0px rgb(225 226 245);
}

#output .output-list li img {
  border-radius: 12px 12px 0 0;
}

#output .output-list li .list-title {
  color: #1e2187;
  text-align: center;
}

#output .output-list li .list-title em {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  line-height: 1.2;
}

#output .output-list li .list-title span {
  display: inline-block;
  font-size: 220%;
  line-height: 1;
  background: linear-gradient(transparent 60%, #fff700 30%);
}

@media print, screen and (min-width: 1025px) {
  #output .output-list {
    display: flex;
    justify-content: center;
  }

  #output .output-list li {
    width: 30%;
    max-width: 395px;
    margin: 0 15px;
  }

  #output .output-list li .inner {
    padding: 17px 22px 22px;
  }

  #output .output-list li .list-title {
    margin-bottom: 17px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  #output .output-list li:nth-of-type(n + 2) {
    margin-top: 7vw;
  }

  #output .output-list li .inner {
    padding: 4vw;
  }

  #output .output-list li .list-title {
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}

/* -------------------------------- ambassador */
/* amb-list */
#ambassador .amb-list {
  counter-reset: listnum;
  text-align: center;
}

#ambassador .amb-list li::before {
  counter-increment: listnum;
  content: counter(listnum);
  position: absolute;
  color: #7578ff;
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 900;
}

#ambassador .amb-list li {
  position: relative;
}

#ambassador .amb-list li img {
  max-height: 300px;
}

#ambassador .amb-list li p {
  color: #1e2187;
  font-weight: 700;
}

/* amb-message */
#ambassador .amb-message {
  color: #008bcb;
  font-weight: 900;
  text-align: center;
}

#ambassador .amb-about {
  max-width: 800px;
  text-align: center;
  border: 5px solid #008bcb;
  border-radius: 12px;
  background: #ffffff;
}

@media print, screen and (min-width: 1025px) {
  /* amb-list */
  #ambassador .amb-list {
    display: flex;
    justify-content: center;
    margin: 75px 0 55px;
  }

  #ambassador .amb-list li {
    width: 20%;
    max-width: 295px;
    margin: 0 40px;
  }

  #ambassador .amb-list li::before {
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
  }

  #ambassador .amb-list li p {
    margin-bottom: 40px;
    font-size: 2.2rem;
  }

  #ambassador .amb-list li picture img {
    max-width: 200px;
  }

  /* amb-message */
  #ambassador .amb-message {
    margin-bottom: 40px;
    font-size: 3rem;
  }

  #ambassador .amb-about {
    margin: 0 auto 40px;
    padding: 22px 22px 30px;
  }

  #ambassador .amb-about .about-title {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }

  #ambassador .amb-about figure {
    max-width: 480px;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 1024px) {
  /* amb-list */
  #ambassador .amb-list {
    margin-bottom: 10.7vw;
  }

  #ambassador .amb-list li {
    display: flex;
    align-items: center;
  }

  #ambassador .amb-list li:nth-of-type(n + 2) {
    margin-top: 7vw;
  }

  #ambassador .amb-list li::before {
    position: static;
    width: 10%;
    font-size: 7.5vw;
  }

  #ambassador .amb-list li p {
    width: 65%;
    padding-right: 4%;
    font-size: 5.3vw;
    text-align: left;
  }

  #ambassador .amb-list li picture {
    width: 25%;
  }

  /* amb-message */
  #ambassador .amb-message {
    margin-bottom: 7vw;
    font-size: 5.3vw;
  }

  #ambassador .amb-about {
    margin-bottom: 9vw;
    padding: 4vw;
  }

  #ambassador .amb-about .about-title {
    margin-bottom: 2vw;
    font-size: 4.3vw;
  }

  #ambassador .amb-about figure {
    width: 75%;
    margin: 0 auto 3vw;
  }
}

/* -------------------------------- significance */
#significance {
  background: #ffffff;
}

#significance .image {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

#significance .image img {
  border-radius: 12px;
}

@media print, screen and (min-width: 1025px) {
}

@media screen and (max-width: 1024px) {
  #significance .sec-lead:first-of-type {
    margin-bottom: 5.3vw;
  }

  #significance .image {
    margin: 5.3vw 0;
  }
}

/* -------------------------------- results */
#results .results-list li h3 {
  position: relative;
  width: 90%;
  margin: 0 auto 15px;
  padding: 0.3em 0 0.6em;
  color: #ffffff;
  line-height: 1.35;
  text-align: center;
  border-radius: 8px;
  background: #1e2187;
}

#results .results-list li h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1e2187;
}

#results .results-list li h3 span {
  color: #fff700;
  font-size: 195%;
}

#results .results-list li img {
  border-radius: 12px 12px 0 0;
}

#results .results-list li .inner {
  border-radius: 12px;
  box-shadow: 4px 4px 16px 0px rgb(225 226 245);
  background: #ffffff;
}

@media print, screen and (min-width: 1025px) {
  #results .results-list li h3 {
    margin: 0 auto 15px;
  }

  #results .results-list {
    display: flex;
    justify-content: center;
  }

  #results .results-list li {
    width: 30%;
    max-width: 395px;
    margin: 0 15px;
  }

  #results .results-list li .inner p {
    padding: 17px 22px 22px;
  }
}

@media screen and (max-width: 1024px) {
  #results .results-list li:nth-of-type(n + 2) {
    margin-top: 7vw;
  }

  #results .results-list li .inner p {
    padding: 4vw;
  }
}

/* -------------------------------- voice */
#voice {
  position: relative;
  background: #008bcb;
}

#voice .object-bg1 {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: calc(100% - 95px);
  background: url(../img/bg_circle.png) no-repeat center top;
  background-size: cover;
  opacity: 0.3;
}

#voice .container {
  position: relative;
  z-index: 1;
}

#voice .sec-title,
#voice .sec-title span,
#voice .sec-lead {
  color: #ffffff;
}

#voice .voice-slider-title span {
  display: inline-block;
  padding: 0.3em 2.5em;
  color: #ffffff;
  text-align: center;
  border-radius: 1.5em;
  background: #1e2187;
}

#voice-slider .slide-inner figure {
  width: 120px;
}

#voice-slider .slide-inner figure img {
  border-radius: 50%;
}

#voice-slider .slide-inner .voice-title {
  color: #1e2187;
}

@media print, screen and (min-width: 1025px) {
  #voice {
    padding: 50px 0 190px;
    border-radius: 100px 100px 0 0;
  }

  #voice .voice-slider-title span {
    font-size: 2.75rem;
  }

  #voice-slider {
    padding: 35px 35px 0;
  }

  #voice-slider .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  #voice-slider .swiper-slide {
    width: calc(50% - 40px);
    max-width: 580px;
    margin: 0 20px 40px;
    border-radius: 12px;
    box-shadow: 4px 4px 16px 0px rgb(0 128 187);
    background: #ffffff;
  }

  #voice-slider .slide-inner {
    display: flex;
    padding: 17px 22px 22px;
  }

  #voice-slider .slide-inner .text {
    width: calc(100% - 120px);
    padding-left: 15px;
  }

  #voice-slider .slide-inner .voice-title em {
    display: inline-block;
    margin-right: 0.8em;
    font-size: 2rem;
  }

  #voice-slider .swiper-button-prev,
  #voice-slider .swiper-button-next,
  #voice .slide-container .swiper-pagination {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  #voice {
    padding: 9vw 4vw 20vw;
    border-radius: 12vw 12vw 0 0;
  }

  #voice .voice-slider-title {
    margin-bottom: 4vw;
  }

  #voice .voice-slider-title span {
    font-size: 4.3vw;
  }

  #voice .slide-container {
    margin-bottom: 15vw;
  }

  #voice-slider .swiper:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  #voice-slider .swiper-slide {
    border-radius: 12px;
    box-shadow: 4px 4px 16px 0px rgb(0 128 187);
    background: #ffffff;
  }

  #voice-slider .slide-inner {
    padding: 4vw;
  }

  #voice-slider .slide-inner figure {
    margin: 0 auto 4vw;
  }

  #voice-slider .slide-inner .voice-title {
    margin-bottom: 3.2vw;
    font-size: 3.5vw;
    text-align: center;
  }

  #voice-slider .slide-inner .voice-title em {
    margin-right: 0.8em;
    font-size: 4.3vw;
  }

  #voice
    .swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    background: #1e2187;
  }
}


/* ------------------------------------------

* supporters

------------------------------------------ */
#supporters {
  position: relative;
  background: #f4f5fb;
  z-index: 1;
  padding: 50px 0 190px;
}

@media screen and (max-width: 1024px) {
  #supporters {
    margin-top: -10vw;
    padding: 9vw 4vw 12vw;
    border-radius: 12vw 12vw 0 0;
  }
}

.supporters {
  background-color: #f4f5fb;
  padding: 50px 0 190px;
  border-radius: 100px 100px 0 0;
  margin-top: -110px;
  @media screen and (max-width: 1024px) {
    border-radius: none;
  }
}

.supporters-wrapper {
  display: flex;
  text-align: left;
  padding: 24px 30px;
  max-width: 800px;
  margin: auto;
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  @media screen and (max-width: 1024px) {
    display: block;
    padding: 15px 30px;
    text-align: center;
  }
}

.supporters-mt-24 {
  margin-top: 24px;
  @media screen and (max-width: 1024px) {
    margin-bottom: 32px;
  }
}

.supporters-wrapper h3 {
  margin-bottom: 0 !important;
  @media screen and (max-width: 1024px) {
    margin-bottom: 16px !important;
  }
}

.supporters-wrapper img {
  margin-right: 24px;
  width: 180px;
  height: 180px;
  object-fit: cover;
  @media screen and (max-width: 1024px) {
    width: 90%;
    height: auto;
    margin: auto;
    margin-bottom: 16px;
    display: inline-block;
  }
}

.supporters-message-wrapper {
  width: 72%;
  @media screen and (max-width: 1024px) {
    width: 100%;
  }
}

.supporters-name-bold {
  font-weight: bold;
  font-size: 32px;
  border-bottom: none !important;

}

.supporters-message {
  text-align: left;
  width: 72%;
  @media screen and (max-width: 1024px) {
    width: 100%;
  }
}

/* -------------------------------- return */
#return {
  position: relative;
  background: #ffffff;
  z-index: 1;
}

#return .return-list {
  counter-reset: listnum;
}

#return .return-list li {
  border-radius: 12px;
  box-shadow: 4px 4px 16px 0px rgb(225 226 245);
}

#return .return-list li img {
  border-radius: 12px 12px 0 0;
}

#return .return-list li .list-title {
  color: #1e2187;
  font-weight: 900;
  text-align: center;
}

#return .return-list li .list-title span {
  position: relative;
  padding-left: 1.3em;
}

#return .return-list li .list-title span::before {
  counter-increment: listnum;
  content: counter(listnum) ".";
  position: absolute;
  top: 50%;
  left: -0.3em;
  transform: translateY(-50%);
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}

@media print, screen and (min-width: 1025px) {
  #return {
    margin-top: -110px;
    padding: 50px 0 90px;
    border-radius: 100px 100px 0 0;
  }

  #return .return-list {
    display: flex;
    justify-content: center;
  }

  #return .return-list li {
    width: 23%;
    max-width: 395px;
    margin: 0 15px;
  }

  #return .return-list li .inner {
    padding: 17px 22px 22px;
  }

  #return .return-list li .list-title {
    margin-bottom: 17px;
    font-size: 2rem;
  }

  #return .return-list li .list-title span::before {
    font-size: 3.4rem;
  }
}

@media screen and (max-width: 1024px) {
  #return {
    margin-top: -10vw;
    padding: 9vw 4vw 12vw;
    border-radius: 12vw 12vw 0 0;
  }

  #return .return-list li:nth-of-type(n + 2) {
    margin-top: 7vw;
  }

  #return .return-list li .inner {
    padding: 4vw;
  }

  #return .return-list li .list-title {
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }

  #return .return-list li .list-title span::before {
    font-size: 7.5vw;
  }
}

/* -------------------------------- message */
#message {
  position: relative;
  background: linear-gradient(82deg, #99ddfd 0%, #f8ff95 100%);
  overflow: hidden;
}

#message .object-bg1 {
  content: "";
  position: absolute;
  opacity: 0.35;
}

#message .container {
  position: relative;
  z-index: 1;
}

#message .msg-profile {
  text-align: center;
}

#message .msg-profile figure img {
  border-radius: 12px;
}

#message .msg-profile .profile-title span {
  display: block;
}

#message .msg-text {
  margin: 0 auto;
}

@media print, screen and (min-width: 1025px) {
  #message .object-bg1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
  }

  #message .msg-profile figure {
    margin-bottom: 20px;
  }

  #message .msg-profile figure img {
    max-width: 450px;
  }

  #message .msg-profile .profile-title {
    margin-bottom: 30px;
    font-size: 2rem;
  }

  #message .msg-profile .profile-title span {
    font-size: 1.4rem;
  }

  #message .msg-text {
    max-width: 800px;
  }
}

@media screen and (max-width: 1024px) {
  #message .object-bg1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }

  #message .msg-profile figure {
    margin-bottom: 4vw;
  }

  #message .msg-profile figure img {
    width: 70%;
  }

  #message .msg-profile .profile-title {
    margin-bottom: 3.2vw;
    font-size: 4.3vw;
  }

  #message .msg-profile .profile-title span {
    font-size: 3.5vw;
  }
}

/* -------------------------------- faq */
#faq .ac-box {
  width: 100%;
}

#faq .ac-box-inner {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.3s ease-out;
}

#faq .ac-btn {
  position: relative;
  font-weight: 700;
  cursor: pointer;
}

#faq .ac-btn::before {
  content: "Q";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-weight: 900;
  text-align: center;
  background: #1e2187;
  border-radius: 12px;
}

#faq .ac-btn span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#faq .ac-btn.active span {
  transform: translateY(-50%) rotate(135deg);
}

#faq .ac-btn span::before,
#faq .ac-btn span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  background: #1e2187;
}

#faq .ac-panel {
  display: none;
}

@media print, screen and (min-width: 1025px) {
  #faq .faq-list {
    margin-bottom: 60px;
  }

  #faq .ac-box {
    max-width: 800px;
    margin: 0 auto 30px;
  }

  #faq .ac-box-inner:hover,
  #faq .ac-box-inner.active {
    width: 110%;
  }

  #faq .ac-btn {
    padding: 25px 60px 25px 75px;
  }

  #faq .ac-btn::before {
    left: 20px;
    width: 40px;
    height: 40px;
    line-height: 33px;
    font-size: 2.6rem;
  }

  #faq .ac-btn span {
    right: 20px;
    width: 17px;
    height: 17px;
  }

  #faq .ac-btn span::before {
    width: 100%;
    height: 3px;
  }

  #faq .ac-btn span::after {
    width: 3px;
    height: 100%;
  }

  #faq .ac-panel {
    padding: 10px 50px 30px;
  }
}

@media screen and (max-width: 1024px) {
  #faq .faq-list {
    margin-bottom: 10vw;
  }

  #faq .ac-box {
    margin-bottom: 6vw;
  }

  #faq .ac-btn {
    padding: 4vw 9vw 4vw 13vw;
  }

  #faq .ac-btn::before {
    left: 3.5vw;
    width: 7vw;
    height: 7vw;
    line-height: 6vw;
    font-size: 5vw;
    border-radius: 1vw;
  }

  #faq .ac-btn span {
    right: 2vw;
    width: 5vw;
    height: 5vw;
  }

  #faq .ac-btn span::before {
    width: 100%;
    height: 1vw;
  }

  #faq .ac-btn span::after {
    width: 1vw;
    height: 100%;
  }

  #faq .ac-panel {
    padding: 2vw 4vw 4vw;
  }
}

/* -------------------------------- introduce */
#introduce {
  background: #ffffff;
}

#introduce .intro-top .intro-title {
  color: #1e2187;
  text-align: center;
}

#introduce .intro-bottom {
  display: flex;
  flex-wrap: wrap;
}

#introduce .intro-bottom .image {
  width: calc(100% / 3);
}

@media print, screen and (min-width: 1025px) {
  #introduce {
    padding: 70px 0 0;
  }

  #introduce .intro-top {
    margin-bottom: 40px;
  }

  #introduce .intro-top .image {
    max-width: 350px;
    margin: 0 auto 20px;
  }

  #introduce .intro-top .intro-title {
    margin-bottom: 20px;
    font-size: 2.75rem;
  }
}

@media screen and (max-width: 1024px) {
  #introduce {
    padding: 10vw 0 0;
  }

  #introduce .intro-top {
    margin-bottom: 6.3vw;
    padding: 0 4vw;
  }

  #introduce .intro-top .image {
    width: 60%;
    margin: 0 auto 4vw;
  }

  #introduce .intro-top .intro-title {
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}

/* ------------------------------------------

* swiper

------------------------------------------ */
.slide-container {
  position: relative;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -37px;
}

.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 25px;
  height: 8px;
  margin: 5px;
  border-radius: 8px;
  background: #7578ff;
  transition: all 0.2s ease;
  cursor: pointer;
}

.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 45px;
}

/* ------------------------------------------

* footer

------------------------------------------ */
#footer {
  background: #141664;
  color: #fff;
  font-size: 1.2rem;
  height: auto;
  padding: 15px 0;
}

#footer a {
  color: #fff;
  text-decoration: none;
}

.footer_l {
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list1 {
  order: 2;
}

.list2 {
  order: 1;
}

.list3 {
  order: 3;
}

.corporation br {
  display: none;
}

.footer_sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_sns li {
  width: 40px;
  margin: 0 10px;
}

.copyright {
  text-align: right;
}

.copyright ul > li {
  display: inline-block;
  padding-right: 4px;
}

@media screen and (max-width: 1024px) {
  #footer {
    padding: 25px 15px 76px;
    text-align: center;
  }

  .footer_l {
    flex-wrap: wrap;
  }

  .list1,
  .list2,
  .list3 {
    width: 100%;
  }

  .footer_sns {
    margin: 20px 0;
  }

  .copyright {
    text-align: center;
  }

  .copyright p {
    margin-top: 15px;
  }
}

/* fix-cv */
@media screen and (min-width: 768px) {
  .fix-cv {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .fix-cv {
    overflow: hidden;
    display: none;
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 8px 1.2em;
    background: rgba(255, 255, 255, 0.8);
    z-index: 200;
  }

  .fix-cv .btn-animation a {
    font-size: 1.6rem;
    flex-direction: row;
    height: 50px;
  }

  .fix-cv .btn-animation a span {
    margin: 0 10px 0 0;
  }
  .fix-cv .btn-animation:before {
    animation: btnanime2 6s ease-out infinite;
  }

  .fix-cv .btn-animation:after {
    animation: btnanime2 6s ease-out infinite;
  }
}
