@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://
File name:style.css
Summary:base styles
Created:2025-02-01
--------------------------------------------------------------- */
/* Link */
/* ------------------------------------------------------------ */
a {
  color: #5F5F5F;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: text;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Animation */
/* ------------------------------------------------------------ */
a,
img {
  transition: all 0.5s ease;
}

.alpha:hover {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.ripple-link {
  position: relative;
}

.ripple {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgb(94, 172, 204);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes ripple-effect {
  from {
    transform: scale(0);
    opacity: 0.8;
  }
  to {
    transform: scale(10);
    opacity: 0;
  }
}
/* Font */
/* ------------------------------------------------------------ */
sup {
  font-size: 66%;
  vertical-align: top;
}

sub {
  font-size: 66%;
  vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */
.pc {
  display: inherit;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}
/* Button */
/* ------------------------------------------------------------ */
.btn1 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.btn1 a {
  display: block;
}
.btn1 a span {
  font-size: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  .btn1 a span {
    font-size: 14px;
  }
}
.btn1 a img {
  width: 3.472vw;
  max-width: 50px;
  margin-left: min(0.694vw, 10px);
  filter: drop-shadow(min(0.347vw, 5px) min(0.347vw, 5px) min(1.389vw, 10px) rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 768px) {
  .btn1 a img {
    width: 30px;
    margin-left: 5px;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.1));
  }
}

.btn2 {
  width: 24.722vw;
  max-width: 356px;
}
@media screen and (max-width: 768px) {
  .btn2 {
    width: 256px;
  }
}
.btn2 a {
  background: linear-gradient(80deg, #27A1B1 0%, #3BC3D5 50%, #27A1B1 100%);
  border-radius: min(0.694vw, 10px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4.861vw;
  max-height: 70px;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(1.389vw, 20px) rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .btn2 a {
    border-radius: 6px;
    height: 50px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  }
}
.btn2 a span {
  color: #fff;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .btn2 a span {
    font-size: 14px;
  }
}
.btn2 a img {
  width: 2.778vw;
  max-width: 40px;
  margin-left: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  .btn2 a img {
    width: 30px;
    margin-left: 5px;
  }
}

/* Style */
/* ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: min(1.111vw, 16px);
}
@media screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }
}
html body {
  background: linear-gradient(to right, rgba(59, 195, 213, 0) 0%, rgba(59, 195, 213, 0.12) 100%);
}
html body::-webkit-scrollbar {
  display: none;
}
html body header {
  position: relative;
  z-index: 2;
}
html body header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: min(0.347vw, 5px);
  background: #fff;
  box-sizing: border-box;
  width: calc(100% - min(2.778vw, 40px));
  height: 5.556vw;
  max-height: 80px;
  position: absolute;
  top: 0;
  margin: min(1.389vw, 20px) min(1.389vw, 20px) 0;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(1.389vw, 20px) rgba(0, 0, 0, 0.2);
}
html body header .inner > div {
  box-sizing: border-box;
  padding: 0 0 0 min(1.389vw, 20px);
}
html body header .inner > div h1 img {
  width: auto;
  height: 3.75vw;
  max-height: 54px;
}
html body header .inner > div div#nav_toggle {
  display: none;
}
html body header .inner #global_nav div {
  display: flex;
  justify-content: center;
  align-items: center;
}
html body header .inner #global_nav div ul:nth-of-type(1) {
  display: flex;
  justify-content: center;
  align-items: center;
}
html body header .inner #global_nav div ul:nth-of-type(1) li {
  margin-right: min(1.389vw, 20px);
}
html body header .inner #global_nav div ul:nth-of-type(1) li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.556vw;
  max-height: 80px;
}
html body header .inner #global_nav div ul:nth-of-type(1) li a span {
  font-size: min(1rem, 16px);
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
html body header .inner #global_nav div ul:nth-of-type(1) li a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
html body header .inner #global_nav div ul:nth-of-type(1) li a:hover span::after {
  background: #5F5F5F;
  bottom: -0.347vw;
}
html body header .inner #global_nav div ul:nth-of-type(2) {
  display: flex;
  justify-content: center;
  align-items: center;
}
html body header .inner #global_nav div ul:nth-of-type(2) li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13.194vw;
  max-width: 190px;
  height: 5.556vw;
  max-height: 80px;
}
html body header .inner #global_nav div ul:nth-of-type(2) li a img {
  width: 2.083vw;
  max-width: 30px;
  margin-right: min(0.694vw, 10px);
}
html body header .inner #global_nav div ul:nth-of-type(2) li a span {
  font-size: min(1rem, 16px);
  font-weight: 700;
  white-space: nowrap;
}
html body header .inner #global_nav div ul:nth-of-type(2) li:nth-of-type(1) a {
  background: rgba(59, 195, 213, 0.1);
}
html body header .inner #global_nav div ul:nth-of-type(2) li:nth-of-type(1) a span {
  color: #3BC3D5;
}
html body header .inner #global_nav div ul:nth-of-type(2) li:nth-of-type(2) a {
  background: rgba(59, 195, 213, 0.8);
  border-radius: 0 min(0.347vw, 5px) min(0.347vw, 5px) 0;
}
html body header .inner #global_nav div ul:nth-of-type(2) li:nth-of-type(2) a span {
  color: #fff;
}
@media screen and (max-width: 768px) {
  html body header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    background: #fff;
    box-sizing: border-box;
    width: calc(100% - 7.692vw);
    height: 50px;
    max-height: 50px;
    position: fixed;
    top: 0;
    margin: 10px 3.846vw 0;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  }
  html body header .inner > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    padding: 0 20px;
    z-index: 99;
  }
  html body header .inner > div h1 img {
    width: auto;
    height: 36px;
  }
  html body header .inner > div div#nav_toggle {
    display: block;
    background: #fff;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 30px;
  }
  html body header .inner > div div#nav_toggle span {
    width: 30px;
    height: 1px;
    display: block;
    background: #3BC3D5;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease-in-out, top 0.2s ease;
  }
  html body header .inner > div div#nav_toggle span:nth-child(1) {
    top: 9px;
  }
  html body header .inner > div div#nav_toggle span:nth-child(2) {
    top: 15px;
  }
  html body header .inner > div div#nav_toggle span:nth-child(3) {
    top: 21px;
  }
  html body header .inner #global_nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    z-index: 9;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  html body header .inner #global_nav div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 12px 0 0 12px;
    background: #fff;
    box-sizing: border-box;
    width: 250px;
    height: auto;
    max-height: -moz-fit-content;
    max-height: fit-content;
    padding: 50px 30px;
    opacity: 0;
    transform: translateX(250px);
    transition: transform 0.3s ease, opacity 0.1s ease;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  }
  html body header .inner #global_nav div ul {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  html body header .inner #global_nav div ul:nth-of-type(1) li {
    width: 100%;
  }
  html body header .inner #global_nav div ul:nth-of-type(1) li a {
    background-image: url(../img/icon_arrow_sp.svg);
    background-repeat: no-repeat;
    background-size: auto 8px;
    background-position: center right;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }
  html body header .inner #global_nav div ul:nth-of-type(1) li a span {
    color: #5F5F5F;
    font-size: 14px;
  }
  html body header .inner #global_nav div ul:nth-of-type(1) li a span::after {
    content: none;
  }
  html body header .inner #global_nav div ul:nth-of-type(1) li:nth-of-type(n+2) {
    margin: 25px 0 0;
  }
  html body header .inner #global_nav div ul:nth-of-type(2) {
    margin: 25px 0 0;
  }
  html body header .inner #global_nav div ul:nth-of-type(2) li {
    width: 100%;
  }
  html body header .inner #global_nav div ul:nth-of-type(2) li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 10px 20px;
    border-radius: 50px !important;
  }
  html body header .inner #global_nav div ul:nth-of-type(2) li a img {
    width: 20px;
    margin-right: 5px;
  }
  html body header .inner #global_nav div ul:nth-of-type(2) li a span {
    color: #5F5F5F;
    font-size: 14px;
  }
  html body header .inner #global_nav div ul:nth-of-type(2) li:nth-of-type(n+2) {
    margin: 25px 0 0;
  }
  html body header .inner.open > div #nav_toggle span:nth-child(1) {
    top: 15px !important;
    transform: rotate(45deg);
  }
  html body header .inner.open > div #nav_toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 0;
  }
  html body header .inner.open > div #nav_toggle span:nth-child(3) {
    top: 15px !important;
    transform: rotate(-45deg);
  }
  html body header .inner.open #global_nav {
    visibility: visible;
    opacity: 1;
  }
  html body header .inner.open #global_nav div {
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.5s ease, opacity 0.9s ease;
  }
}
html body main {
  overflow: hidden;
}
html body main#index section#mainvisual {
  margin-top: min(11.111vw, 160px);
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual {
    margin-top: 0;
  }
}
html body main#index section#mainvisual .swiper-container {
  position: relative;
  overflow: hidden;
}
html body main#index section#mainvisual .swiper-container .swiper-wrapper {
  height: auto;
}
html body main#index section#mainvisual .swiper-container .swiper-wrapper .swiper-slide {
  width: 55.555%;
  max-width: 800px;
  height: auto;
  border-radius: min(0.833vw, 12px);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .swiper-container .swiper-wrapper .swiper-slide {
    width: 85.185%;
    max-width: 460px;
    border-radius: 5px;
  }
}
html body main#index section#mainvisual .swiper-container .swiper-wrapper .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 66.625%;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .swiper-container .swiper-wrapper .swiper-slide::before {
    padding-top: 121.739%;
  }
}
html body main#index section#mainvisual .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#index section#mainvisual .swiper-container .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
}
html body main#index section#mainvisual .swiper-container .swiper-pagination-bullet-active {
  background: #3BC3D5;
}
html body main#index section#about {
  background-image: url(../img/bg_index_about.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#about {
    background-image: url(../img/bg_index_about_sp.png?date=20241225);
  }
}
html body main#index section#about .inner figure {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-top: min(4.167vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner figure {
    display: block;
    margin-top: 30px;
  }
}
html body main#index section#about .inner figure > p {
  width: 46.875%;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner figure > p {
    width: 100%;
    margin: 0 auto;
  }
}
html body main#index section#about .inner figure > figcaption {
  width: 48.437%;
  max-width: 620px;
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner figure > figcaption {
    width: 100%;
    margin: 20px auto 0;
  }
}
html body main#index section#about .inner figure > figcaption h3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
html body main#index section#about .inner figure > figcaption h3::before {
  content: attr(data-subtitle);
  display: block;
  white-space: pre-line;
  line-height: 1.25;
  font-size: min(1.5rem, 24px);
  margin-bottom: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner figure > figcaption h3::before {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
html body main#index section#about .inner figure > figcaption h3 span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: min(0.875rem, 14px);
  font-family: "Poppins";
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner figure > figcaption h3 span {
    font-size: 12px;
  }
}
html body main#index section#about .inner figure > figcaption h3 span small {
  color: #3BC3D5;
  font-size: min(0.75rem, 12px);
  margin-right: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner figure > figcaption h3 span small {
    font-size: 10px;
    margin-right: 5px;
  }
}
html body main#index section#about .inner figure > figcaption p:nth-of-type(1) {
  line-height: 1.75;
}
html body main#index section#about .inner figure > figcaption p:nth-of-type(2) {
  text-align: right;
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#about .inner figure > figcaption p:nth-of-type(2) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  html body main#index section#regist .inner {
    background-image: url(../img/bg_index_regist2_sp.png?date=20241225) !important;
    height: 89.444vw !important;
  }
}
html body main#index section#contents {
  background-position: left top;
}
html body main#index section#event {
  background-position: right top;
}
html body main#index section#contents {
  background-image: url(../img/bg_index_contents.png?date=20241225);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  html body main#index section#contents {
    background-image: url(../img/bg_index_contents_sp.png?date=20241225);
    background-size: 100% auto;
  }
}
html body main#index section#contents .inner div {
  display: grid;
  gap: min(2.778vw, 40px);
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: min(4.167vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#index section#contents .inner div {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }
}
html body main#index section#contents .inner div article {
  border-radius: min(0.833vw, 12px);
  width: 100%;
  max-width: 400px;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  html body main#index section#contents .inner div article {
    border-radius: 6px;
    max-width: 100%;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.05);
  }
}
html body main#index section#contents .inner div article a {
  display: block;
  width: 100%;
}
html body main#index section#contents .inner div article a figure {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #DDF0F3;
  border-radius: min(0.833vw, 12px);
}
html body main#index section#contents .inner div article a figure > p {
  width: 100%;
  border-radius: min(0.833vw, 12px);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#contents .inner div article a figure > p {
    border-radius: 6px;
  }
}
html body main#index section#contents .inner div article a figure > p::before {
  content: "";
  display: block;
  padding-top: 61.8%;
}
@media screen and (max-width: 768px) {
  html body main#index section#contents .inner div article a figure > p::before {
    padding-top: 40%;
  }
}
html body main#index section#contents .inner div article a figure > p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#index section#contents .inner div article a figure > p:hover img {
  transform: scale(1.1);
}
html body main#index section#contents .inner div article a figure figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  padding: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#contents .inner div article a figure figcaption {
    padding: 20px;
  }
}
html body main#index section#contents .inner div article a figure figcaption p:nth-of-type(1) {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.347vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#index section#contents .inner div article a figure figcaption p:nth-of-type(1) {
    gap: 5px;
  }
}
html body main#index section#contents .inner div article a figure figcaption p:nth-of-type(1) span {
  border-radius: min(0.347vw, 5px);
  background: #fff;
  font-size: min(0.875rem, 14px);
  padding: min(0.347vw, 5px) min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#contents .inner div article a figure figcaption p:nth-of-type(1) span {
    border-radius: 3px;
    font-size: 12px;
    padding: 5px 10px;
  }
}
html body main#index section#contents .inner div article a figure figcaption p:nth-of-type(2) {
  font-size: min(1.125rem, 18px);
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#contents .inner div article a figure figcaption p:nth-of-type(2) {
    font-size: 14px;
    margin-top: 20px;
  }
}
html body main#index section#contents .inner div article a figure figcaption h1 {
  margin-top: min(0.694vw, 10px);
  font-size: min(0.875rem, 14px);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 768px) {
  html body main#index section#contents .inner div article a figure figcaption h1 {
    margin-top: 10px;
    font-size: 12px;
  }
}
html body main#index section#contents .inner > p {
  margin-top: min(2.778vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#contents .inner > p {
    margin-top: 20px;
  }
}
html body main#index section#event {
  background-image: url(../img/bg_index_event.png?date=20241225);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  html body main#index section#event {
    background-image: url(../img/bg_index_event_sp.png?date=20241225);
    background-size: 100% auto;
  }
}
html body main#index section#event .inner div {
  display: grid;
  gap: min(2.778vw, 40px);
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: min(4.167vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner div {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }
}
html body main#index section#event .inner div article {
  border-radius: min(0.833vw, 12px);
  width: 100%;
  max-width: 400px;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner div article {
    border-radius: 6px;
    max-width: 100%;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.05);
  }
}
html body main#index section#event .inner div article a {
  display: block;
  width: 100%;
}
html body main#index section#event .inner div article a figure {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #DDF0F3;
  border-radius: min(0.833vw, 12px);
}
html body main#index section#event .inner div article a figure > p {
  width: 100%;
  border-radius: min(0.833vw, 12px);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner div article a figure > p {
    border-radius: 6px;
  }
}
html body main#index section#event .inner div article a figure > p::before {
  content: "";
  display: block;
  padding-top: 61.8%;
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner div article a figure > p::before {
    padding-top: 40%;
  }
}
html body main#index section#event .inner div article a figure > p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#index section#event .inner div article a figure > p:hover img {
  transform: scale(1.1);
}
html body main#index section#event .inner div article a figure figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  padding: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner div article a figure figcaption {
    padding: 20px;
  }
}
html body main#index section#event .inner div article a figure figcaption p:nth-of-type(1) {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.347vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner div article a figure figcaption p:nth-of-type(1) {
    gap: 5px;
  }
}
html body main#index section#event .inner div article a figure figcaption p:nth-of-type(1) span {
  border-radius: min(0.347vw, 5px);
  background: #fff;
  font-size: min(0.875rem, 14px);
  padding: min(0.347vw, 5px) min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner div article a figure figcaption p:nth-of-type(1) span {
    border-radius: 3px;
    font-size: 12px;
    padding: 5px 10px;
  }
}
html body main#index section#event .inner div article a figure figcaption p:nth-of-type(2) {
  font-size: min(1.125rem, 18px);
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner div article a figure figcaption p:nth-of-type(2) {
    font-size: 14px;
    margin-top: 20px;
  }
}
html body main#index section#event .inner div article a figure figcaption h1 {
  margin-top: min(0.694vw, 10px);
  font-size: min(0.875rem, 14px);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner div article a figure figcaption h1 {
    margin-top: 10px;
    font-size: 12px;
  }
}
html body main#index section#event .inner > p {
  margin-top: min(2.778vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#event .inner > p {
    margin-top: 20px;
  }
}
html body main#index section#supporters {
  background-image: url(../img/bg_index_supporters.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  html body main#index section#supporters {
    background-image: url(../img/bg_index_supporters_sp.png?date=20241225);
    background-size: 100% auto;
  }
}
@media screen and (max-width: 768px) {
  html body main#index section#supporters .inner {
    padding-top: 22.222vw !important;
    margin-top: -11.111vw !important;
  }
}
html body main#index section#supporters .inner p {
  display: block;
  background: #fff;
  border-radius: min(0.833vw, 12px);
  box-sizing: border-box;
  width: 84.375%;
  max-width: 1080px;
  padding: min(2.778vw, 40px);
  margin: min(4.167vw, 60px) auto 0;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.05);
  font-size: min(1rem, 16px);
}
@media screen and (max-width: 768px) {
  html body main#index section#supporters .inner p {
    border-radius: 6px;
    width: 100%;
    padding: 20px;
    margin: 30px auto 0;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.05);
    font-size: 14px;
  }
}
html body main#index section#supporters .inner ul {
  display: grid;
  gap: min(1.389vw, 20px);
  grid-template-columns: repeat(6, 1fr);
  background: #fff;
  border-radius: min(0.833vw, 12px);
  box-sizing: border-box;
  width: 84.375%;
  max-width: 1080px;
  padding: min(2.778vw, 40px);
  margin: min(4.167vw, 60px) auto 0;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  html body main#index section#supporters .inner ul {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 6px;
    width: 100%;
    padding: 20px;
    margin: 30px auto 0;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.05);
  }
}
html body main#index section#sns {
  background-image: url(../img/bg_index_sns.png?date=20241225);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  html body main#index section#sns {
    background-image: url(../img/bg_index_sns_sp.png?date=20241225);
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  html body main#index section#sns .inner {
    padding-top: 22.222vw !important;
    margin-top: -11.111vw !important;
  }
}
html body main#index section#sns .inner div {
  width: 100%;
  max-width: 1000px;
  margin: min(4.167vw, 60px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#sns .inner div {
    margin: 30px auto 0;
  }
}
html body main#index section#sns .inner div p {
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#sns .inner div p {
    margin-top: 20px;
  }
}
html body main#index section#sns .inner div ul {
  display: grid;
  gap: min(0.278vw, 4px);
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  html body main#index section#sns .inner div ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
html body main#index section#sns .inner div ul li {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#index section#sns .inner div ul li {
    display: flex;
    justify-content: center;
  }
}
html body main#index section#sns .inner div ul li a {
  width: 100%;
  overflow: hidden;
  position: relative;
}
html body main#index section#sns .inner div ul li a::before {
  content: "";
  display: block;
  padding-top: 133.116%;
}
html body main#index section#sns .inner div ul li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#index section#sns .inner div ul li a:hover img {
  transform: scale(1.1);
}
html body main#index section#contact {
  background-image: url(../img/bg_index_contact.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  html body main#index section#contact {
    background-image: url(../img/bg_index_contact_sp.png?date=20241225);
    background-size: 100% auto;
  }
}
html body main#index section#contact .inner div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: min(0.833vw, 12px);
  box-sizing: border-box;
  width: 84.375%;
  max-width: 1080px;
  padding: min(2.778vw, 40px);
  margin: min(4.167vw, 60px) auto 0;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  html body main#index section#contact .inner div {
    border-radius: 6px;
    width: 100%;
    padding: 20px;
    margin: 30px auto 0;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.05);
  }
}
html body main#index section#contact .inner div p:nth-of-type(1) {
  text-align: center;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#index section#contact .inner div p:nth-of-type(1) {
    font-size: 12px;
  }
}
html body main#index section#contact .inner div p:nth-of-type(2) {
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#contact .inner div p:nth-of-type(2) {
    margin-top: 20px;
  }
}
html body main:not(#index) section#title {
  background-image: url(../img/bg_title.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: relative;
  max-height: 500px;
}
@media screen and (max-width: 768px) {
  html body main:not(#index) section#title {
    background-image: url(../img/bg_title_sp.png?date=20241225);
    max-height: 405px;
  }
}
html body main:not(#index) section#title::before {
  content: "";
  display: block;
  padding-top: 34.722%;
}
@media screen and (max-width: 768px) {
  html body main:not(#index) section#title::before {
    padding-top: 75%;
  }
}
html body main:not(#index) section#title .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
html body main:not(#index) section#title .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  width: 100%;
  max-width: 1280px;
  margin: min(5.556vw, 80px) auto 0;
  padding: 0 min(5.556vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main:not(#index) section#title .inner h2 {
    padding: 0 3.846vw;
  }
}
html body main:not(#index) section#title .inner h2::before {
  content: attr(data-subtitle);
  font-family: "Montserrat";
  font-size: min(5.125rem, 82px);
  margin-bottom: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main:not(#index) section#title .inner h2::before {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
html body main:not(#index) section#title .inner h2 span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: min(1.5rem, 24px);
}
@media screen and (max-width: 768px) {
  html body main:not(#index) section#title .inner h2 span {
    font-size: 14px;
  }
}
html body main:not(#index) section#title .inner h2 span small {
  font-size: min(1.125rem, 18px);
  margin-right: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main:not(#index) section#title .inner h2 span small {
    font-size: 12px;
    margin-right: 5px;
  }
}
html body main:not(#index) .breadcrumbs {
  display: flex;
  align-items: center;
  max-width: 1280px;
  padding: 0 min(5.556vw, 80px);
  margin: min(4.167vw, 60px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main:not(#index) .breadcrumbs {
    padding: 0 3.846vw;
    margin: 30px auto 0;
  }
}
html body main:not(#index) .breadcrumbs li {
  display: flex;
  padding-right: 1.025em;
}
html body main:not(#index) .breadcrumbs li::after {
  content: "/";
  width: 1.05em;
  text-align: center;
  font-size: min(1.125rem, 18px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html body main:not(#index) .breadcrumbs li::after {
    font-size: 12px;
  }
}
html body main:not(#index) .breadcrumbs li:last-child {
  padding-right: 0;
}
html body main:not(#index) .breadcrumbs li:last-child::after {
  content: initial;
}
html body main:not(#index) .breadcrumbs li:last-child span {
  color: #3BC3D5;
  font-weight: 700;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
html body main:not(#index) .breadcrumbs li span {
  font-size: min(1.125rem, 18px);
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main:not(#index) .breadcrumbs li span {
    font-size: 12px;
  }
}
html body main:not(#index) .breadcrumbs li span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body main:not(#index) .breadcrumbs li span::after {
    content: none;
  }
}
html body main:not(#index) .breadcrumbs li a {
  white-space: nowrap;
}
html body main:not(#index) .breadcrumbs li a:hover span::after {
  background: #5F5F5F;
  bottom: -0.347vw;
}
html body main#about {
  margin-bottom: min(-2.083vw, -30px);
}
@media screen and (max-width: 768px) {
  html body main#about {
    margin-bottom: -6px;
  }
}
html body main#about .wrapper {
  background-image: url(../img/bg_about.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#about .wrapper {
    background-image: url(../img/bg_about_sp.png?date=20241225);
  }
}
html body main#about .wrapper section#message .inner figure {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#about .wrapper section#message .inner figure {
    display: block;
  }
}
html body main#about .wrapper section#message .inner figure:nth-of-type(2) {
  flex-direction: row-reverse;
  margin-top: min(4.167vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#about .wrapper section#message .inner figure:nth-of-type(2) {
    margin-top: 30px;
  }
}
html body main#about .wrapper section#message .inner figure > p {
  width: 46.875%;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  html body main#about .wrapper section#message .inner figure > p {
    width: 100%;
    margin: 0 auto;
  }
}
html body main#about .wrapper section#message .inner figure > figcaption {
  width: 48.437%;
  max-width: 620px;
}
@media screen and (max-width: 768px) {
  html body main#about .wrapper section#message .inner figure > figcaption {
    width: 100%;
    margin: 20px auto 0;
  }
}
html body main#about .wrapper section#message .inner figure > figcaption h3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
html body main#about .wrapper section#message .inner figure > figcaption h3::before {
  content: attr(data-subtitle);
  display: block;
  white-space: pre-line;
  line-height: 1.25;
  font-size: min(1.5rem, 24px);
  margin-bottom: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#about .wrapper section#message .inner figure > figcaption h3::before {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
html body main#about .wrapper section#message .inner figure > figcaption h3 span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: min(0.875rem, 14px);
  font-family: "Poppins";
}
@media screen and (max-width: 768px) {
  html body main#about .wrapper section#message .inner figure > figcaption h3 span {
    font-size: 12px;
  }
}
html body main#about .wrapper section#message .inner figure > figcaption h3 span small {
  color: #3BC3D5;
  font-size: min(0.75rem, 12px);
  margin-right: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#about .wrapper section#message .inner figure > figcaption h3 span small {
    font-size: 10px;
    margin-right: 5px;
  }
}
html body main#about .wrapper section#message .inner figure > figcaption p:nth-of-type(1) {
  line-height: 1.75;
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#about .wrapper section#message .inner figure > figcaption p:nth-of-type(1) {
    margin-top: 10px;
  }
}
html body main#contents .wrapper {
  background-image: url(../img/bg_contents.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper {
    background-image: url(../img/bg_contents_sp.png?date=20241225);
  }
}
html body main#contents .wrapper .migration {
  display: grid;
  gap: min(1.389vw, 20px);
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  padding: 0 min(5.556vw, 80px);
  margin: min(4.167vw, 60px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper .migration {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 3.846vw;
    margin: 30px auto 0;
  }
}
html body main#contents .wrapper .migration li a {
  background: #fff;
  border-radius: min(0.347vw, 5px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 4.167vw;
  max-height: 60px;
  padding: 0 min(1.389vw, 20px);
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper .migration li a {
    border-radius: 6px;
    height: 50px;
    padding: 0 10px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.05);
  }
}
html body main#contents .wrapper .migration li a span {
  font-size: min(1.25rem, 20px);
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper .migration li a span {
    font-size: 12px;
  }
}
html body main#contents .wrapper .migration li a span small {
  color: #3BC3D5;
  font-size: min(1rem, 16px);
  margin-right: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper .migration li a span small {
    font-size: 10px;
  }
}
html body main#contents .wrapper .migration li a img {
  width: 2.083vw;
  max-width: 30px;
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper .migration li a img {
    width: 20px;
  }
}
html body main#contents .wrapper section#list .inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  overflow: hidden;
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper section#list .inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
html body main#contents .wrapper section#list .inner div {
  display: grid;
  gap: min(2.778vw, 40px);
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper section#list .inner div {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
html body main#contents .wrapper section#list .inner div article {
  background: #fff;
  border-radius: min(0.833vw, 12px);
  width: 100%;
  max-width: 400px;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper section#list .inner div article {
    border-radius: 6px;
    max-width: 100%;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.05);
  }
}
html body main#contents .wrapper section#list .inner div article a {
  display: block;
  width: 100%;
}
html body main#contents .wrapper section#list .inner div article a figure {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #DDF0F3;
  border-radius: min(0.833vw, 12px);
}
html body main#contents .wrapper section#list .inner div article a figure > p {
  width: 100%;
  border-radius: min(0.833vw, 12px);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper section#list .inner div article a figure > p {
    border-radius: 6px;
  }
}
html body main#contents .wrapper section#list .inner div article a figure > p::before {
  content: "";
  display: block;
  padding-top: 61.8%;
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper section#list .inner div article a figure > p::before {
    padding-top: 40%;
  }
}
html body main#contents .wrapper section#list .inner div article a figure > p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#contents .wrapper section#list .inner div article a figure > p:hover img {
  transform: scale(1.1);
}
html body main#contents .wrapper section#list .inner div article a figure figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  padding: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper section#list .inner div article a figure figcaption {
    padding: 20px;
  }
}
html body main#contents .wrapper section#list .inner div article a figure figcaption p:nth-of-type(1) {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.347vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper section#list .inner div article a figure figcaption p:nth-of-type(1) {
    gap: 5px;
  }
}
html body main#contents .wrapper section#list .inner div article a figure figcaption p:nth-of-type(1) span {
  border-radius: min(0.347vw, 5px);
  background: #fff;
  font-size: min(0.875rem, 14px);
  padding: min(0.347vw, 5px) min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper section#list .inner div article a figure figcaption p:nth-of-type(1) span {
    border-radius: 3px;
    font-size: 12px;
    padding: 5px 10px;
  }
}
html body main#contents .wrapper section#list .inner div article a figure figcaption p:nth-of-type(2) {
  font-size: min(1.125rem, 18px);
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper section#list .inner div article a figure figcaption p:nth-of-type(2) {
    font-size: 14px;
    margin-top: 20px;
  }
}
html body main#contents .wrapper section#list .inner div article a figure figcaption h1 {
  margin-top: min(0.694vw, 10px);
  font-size: min(0.875rem, 14px);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 768px) {
  html body main#contents .wrapper section#list .inner div article a figure figcaption h1 {
    margin-top: 10px;
    font-size: 12px;
  }
}
html body main#contents .wrapper section#list .inner > p {
  margin-top: min(2.778vw, 40px);
}
html body main#contents-detail {
  margin-bottom: min(-2.083vw, -30px);
}
@media screen and (max-width: 768px) {
  html body main#contents-detail {
    margin-bottom: -6px;
  }
}
html body main#contents-detail .wrapper {
  background-image: url(../img/bg_media.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#contents-detail .wrapper {
    background-image: url(../img/bg_media_sp.png?date=20241225);
  }
}
html body main#contents-detail .wrapper section#article .inner > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  border-radius: min(0.833vw, 12px);
  box-sizing: border-box;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: min(4.167vw, 60px);
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  html body main#contents-detail .wrapper section#article .inner > div {
    border-radius: 6px;
    padding: 20px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
  }
}
html body main#contents-detail .wrapper section#article .inner > div > h3 {
  font-size: min(2rem, 32px);
  font-weight: 700;
  line-height: 1.75;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#contents-detail .wrapper section#article .inner > div > h3 {
    font-size: 16px;
  }
}
html body main#contents-detail .wrapper section#article .inner > div > time {
  display: block;
  width: 100%;
  margin-top: min(0.694vw, 10px);
  padding-bottom: min(2.778vw, 40px);
  border-bottom: 2px #D9D9D9 solid;
}
@media screen and (max-width: 768px) {
  html body main#contents-detail .wrapper section#article .inner > div > time {
    font-size: 12px;
    margin-top: 10px;
    padding-bottom: 20px;
    border-bottom: 1px #D9D9D9 solid;
  }
}
html body main#contents-detail .wrapper section#article .inner > div > figure {
  width: 100%;
  margin: min(2.778vw, 40px) 0;
}
@media screen and (max-width: 768px) {
  html body main#contents-detail .wrapper section#article .inner > div > figure {
    margin: 20px 0;
  }
}
html body main#contents-detail .wrapper section#article .inner > div > figure > p {
  width: 100%;
  max-width: 980px;
  border-radius: min(0.833vw, 12px);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contents-detail .wrapper section#article .inner > div > figure > p {
    border-radius: 6px;
  }
}
html body main#contents-detail .wrapper section#article .inner > div > figure > p::before {
  content: "";
  display: block;
  padding-top: 61.8%;
}
html body main#contents-detail .wrapper section#article .inner > div > figure > p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#contents-detail .wrapper section#article .inner > div > div {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area {
  width: 100%;
}
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents {
  line-height: 1.75;
}
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents a {
  color: #3BC3D5;
}
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents p > img {
  width: revert-layer;
  max-width: 100%;
}
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents h1,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents h2,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents h3,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents h4,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents h5,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents h6,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents p,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents i {
  all: revert;
}
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents h1::before,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents h2::before,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents h3::before,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents h4::before,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents h5::before,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents h6::before,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents p::before,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents i::before {
  content: none;
}
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents ul,
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents ol {
  list-style: revert;
  padding: revert;
}
html body main#contents-detail .wrapper section#article .inner > div > div > .display-area > .contents li {
  all: revert;
}
html body main#contents-detail .wrapper section#article .inner > div > div > .hidden-area {
  width: 100%;
  min-height: 20vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#contents-detail .wrapper section#article .inner > div > div > .hidden-area {
    min-height: 50vw;
  }
}
html body main#contents-detail .wrapper section#article .inner > div > div > .hidden-area > .contents {
  width: 100%;
  color: transparent;
  line-height: 1.75;
  opacity: 0.75;
  text-align: justify;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
  word-break: break-word;
}
html body main#contents-detail .wrapper section#article .inner > div > div > .hidden-area > .mask-area {
  display: flex;
  justify-content: center;
  align-items: center;
  background: hsla(0, 0%, 100%, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
html body main#contents-detail .wrapper section#article .inner > div > div > .hidden-area > .mask-area > .button-area {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  border-radius: min(0.833vw, 12px);
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: min(2.778vw, 40px);
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  html body main#contents-detail .wrapper section#article .inner > div > div > .hidden-area > .mask-area > .button-area {
    border-radius: 6px;
    padding: 20px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
  }
}
html body main#contents-detail .wrapper section#article .inner > div > div > .hidden-area > .mask-area > .button-area p:nth-of-type(1) {
  font-size: min(1.5rem, 24px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#contents-detail .wrapper section#article .inner > div > div > .hidden-area > .mask-area > .button-area p:nth-of-type(1) {
    text-align: center;
    font-size: 12px;
    line-height: 1.25;
  }
}
html body main#contents-detail .wrapper section#article .inner > div > div > .hidden-area > .mask-area > .button-area p:nth-of-type(2) {
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#contents-detail .wrapper section#article .inner > div > div > .hidden-area > .mask-area > .button-area p:nth-of-type(2) {
    margin-top: 20px;
  }
}
html body main#contents-detail .wrapper section#article .inner > div > p {
  margin-top: min(2.778vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#contents-detail .wrapper section#article .inner > div > p {
    margin-top: 20px;
  }
}
html body main#supporter-form .wrapper {
  background-image: url(../img/bg_privacy.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#supporter-form .wrapper {
    background-image: url(../img/bg_media_sp.png?date=20241225);
  }
}
html body main#complete .wrapper {
  background-image: url(../img/bg_privacy.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#complete .wrapper {
    background-image: url(../img/bg_media_sp.png?date=20241225);
  }
}
html body main#complete .wrapper section#contents .inner > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  border-radius: min(0.833vw, 12px);
  box-sizing: border-box;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: min(4.167vw, 60px);
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  html body main#complete .wrapper section#contents .inner > div {
    border-radius: 6px;
    padding: 20px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
  }
}
html body main#complete .wrapper section#contents .inner > div > strong {
  font-size: min(1.5rem, 24px);
}
@media screen and (max-width: 768px) {
  html body main#complete .wrapper section#contents .inner > div > strong {
    text-align: center;
    font-size: 14px;
    line-height: 1.25;
  }
}
html body main#complete .wrapper section#contents .inner > div > p:nth-of-type(1) {
  text-align: center;
  line-height: 1.75;
  margin-top: min(4.167vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#complete .wrapper section#contents .inner > div > p:nth-of-type(1) {
    margin-top: 20px;
  }
}
html body main#complete .wrapper section#contents .inner > div > p:nth-of-type(2) {
  margin-top: min(4.167vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#complete .wrapper section#contents .inner > div > p:nth-of-type(2) {
    margin-top: 30px;
  }
}
html body main#complete .wrapper section#contents .inner > div > div {
  border-radius: min(0.833vw, 12px);
  background: #FFFADF;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  padding: min(1.389vw, 20px) min(2.778vw, 40px);
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  html body main#complete .wrapper section#contents .inner > div > div {
    border-radius: 6px;
    width: 100%;
    padding: 20px;
    margin-top: 30px;
  }
}
html body main#complete .wrapper section#contents .inner > div > div > em {
  text-align: center;
  line-height: 1.5;
  margin: min(1.389vw, 20px) auto min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#complete .wrapper section#contents .inner > div > div > em {
    margin: 20px auto 10px;
  }
}
html body main#complete .wrapper section#contents .inner > div > div > p {
  text-align: center;
  font-size: min(0.875rem, 14px);
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#complete .wrapper section#contents .inner > div > div > p {
    font-size: 10px;
  }
}
html body main#complete .wrapper section#contents .inner > div > div > p a {
  color: #5F5F5F;
}
html body main#privacy .wrapper {
  background-image: url(../img/bg_privacy.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#privacy .wrapper {
    background-image: url(../img/bg_media_sp.png?date=20241225);
  }
}
html body main#privacy .wrapper section#contents .inner > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  border-radius: min(0.833vw, 12px);
  box-sizing: border-box;
  max-width: 1080px;
  margin: 0 auto;
  padding: min(4.167vw, 60px);
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  html body main#privacy .wrapper section#contents .inner > div {
    border-radius: 6px;
    padding: 20px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
  }
}
html body main#privacy .wrapper section#contents .inner > div p + em,
html body main#privacy .wrapper section#contents .inner > div ul + em,
html body main#privacy .wrapper section#contents .inner > div ol + em,
html body main#privacy .wrapper section#contents .inner > div table + em {
  margin-top: min(2.778vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#privacy .wrapper section#contents .inner > div p + em,
  html body main#privacy .wrapper section#contents .inner > div ul + em,
  html body main#privacy .wrapper section#contents .inner > div ol + em,
  html body main#privacy .wrapper section#contents .inner > div table + em {
    margin-top: 20px;
  }
}
html body main#privacy .wrapper section#contents .inner > div em {
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main#privacy .wrapper section#contents .inner > div em {
    font-size: 14px;
  }
}
html body main#privacy .wrapper section#contents .inner > div p {
  line-height: 1.75;
}
html body main#privacy .wrapper section#contents .inner > div p b {
  font-weight: 700;
}
html body main#privacy .wrapper section#contents .inner > div p a {
  color: #5F5F5F;
}
html body main#privacy .wrapper section#contents .inner > div p:nth-last-of-type {
  margin-bottom: 0;
}
html body main#privacy .wrapper section#contents .inner > div ol li {
  font-size: min(1rem, 16px);
  line-height: 1.75;
  margin-left: 1.325em;
  list-style-type: decimal;
}
@media screen and (max-width: 768px) {
  html body main#privacy .wrapper section#contents .inner > div ol li {
    font-size: 12px;
  }
}
html body main#privacy .wrapper section#contents .inner > div ul li {
  font-size: min(1rem, 16px);
  line-height: 1.75;
  text-indent: -1em;
  margin-left: 1em;
  list-style-type: none;
}
html body main#privacy .wrapper section#contents .inner > div ul li:before {
  content: "・";
}
@media screen and (max-width: 768px) {
  html body main#privacy .wrapper section#contents .inner > div ul li {
    font-size: 12px;
  }
}
html body main#privacy .wrapper section#contents .inner > div table {
  width: 100%;
  border: 1px #000 solid;
  border-collapse: collapse;
  table-layout: auto;
  empty-cells: show;
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#privacy .wrapper section#contents .inner > div table {
    margin-top: 10px;
  }
}
html body main#privacy .wrapper section#contents .inner > div table tr th {
  border: 1px #000 solid;
  padding: 5px 10px;
}
html body main#privacy .wrapper section#contents .inner > div table tr td {
  border: 1px #000 solid;
  padding: 5px 10px;
}
html body main#supporter-login {
  background-image: url(../img/bg_login.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  html body main#supporter-login {
    background-image: url(../img/bg_login_sp.png?date=20241225);
  }
}
html body main#supporter-login .wrapper {
  overflow: hidden;
}
html body main#supporter-login .wrapper section#login .inner > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  border-radius: min(0.833vw, 12px);
  box-sizing: border-box;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: min(4.167vw, 60px);
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div {
    border-radius: 6px;
    padding: 20px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
  }
}
html body main#supporter-login .wrapper section#login .inner > div > h3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
html body main#supporter-login .wrapper section#login .inner > div > h3::before {
  content: attr(data-subtitle);
  font-family: "Montserrat";
  font-size: min(2.5rem, 40px);
  margin-bottom: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div > h3::before {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
html body main#supporter-login .wrapper section#login .inner > div > h3 span {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: min(1.5rem, 24px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div > h3 span {
    font-size: 12px;
  }
}
html body main#supporter-login .wrapper section#login .inner > div > h3 span small {
  color: #3BC3D5;
  font-size: min(1.125rem, 18px);
  margin-top: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div > h3 span small {
    font-size: 10px;
    margin-top: 5px;
  }
}
html body main#supporter-login .wrapper section#login .inner > div form {
  width: 100%;
}
html body main#supporter-login .wrapper section#login .inner > div form dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 600px;
  margin: min(2.778vw, 40px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div form dl {
    display: block;
    margin: 20px auto 0;
  }
}
html body main#supporter-login .wrapper section#login .inner > div form dl:nth-of-type(n+2) {
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div form dl:nth-of-type(n+2) {
    margin-top: 20px;
  }
}
html body main#supporter-login .wrapper section#login .inner > div form dl dt {
  flex-shrink: 0;
  margin-right: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div form dl dt {
    width: 100%;
    margin: 0;
  }
}
html body main#supporter-login .wrapper section#login .inner > div form dl dt .wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: min(1.125rem, 18px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div form dl dt .wrap {
    font-size: 14px;
  }
}
html body main#supporter-login .wrapper section#login .inner > div form dl dd {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div form dl dd {
    margin-top: 10px;
  }
}
html body main#supporter-login .wrapper section#login .inner > div form dl dd .wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
html body main#supporter-login .wrapper section#login .inner > div form > p {
  text-align: center;
  line-height: 1.75;
  margin-top: min(2.778vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div form > p {
    margin-top: 20px;
  }
}
html body main#supporter-login .wrapper section#login .inner > div form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  display: flex;
  align-items: center;
  background: #F3F3F3;
  border-radius: min(0.347vw, 5px);
  outline: none;
  border: none;
  color: #5F5F5F;
  font-size: min(1rem, 16px);
  letter-spacing: 0.025em;
  width: 100%;
  height: min(4.167vw, 60px);
  padding: min(0.694vw, 10px) min(0.694vw, 10px);
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
    border-radius: min(0.347vw, 5px);
    font-size: 12px;
    height: 40px;
    padding: 0 5px;
  }
}
html body main#supporter-login .wrapper section#login .inner > div form > div.btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  margin-top: min(2.778vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div form > div.btn_area {
    line-height: 1.25;
    margin-top: 20px;
  }
}
html body main#supporter-login .wrapper section#login .inner > div form > div.btn_area .btn_submit {
  background: linear-gradient(80deg, #27A1B1 0%, #3BC3D5 50%, #27A1B1 100%);
  border-radius: min(0.694vw, 10px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24.722vw;
  max-width: 356px;
  height: 4.861vw;
  max-height: 70px;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(1.389vw, 20px) rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div form > div.btn_area .btn_submit {
    border-radius: 6px;
    width: 256px;
    height: 50px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  }
}
html body main#supporter-login .wrapper section#login .inner > div form > div.btn_area .btn_submit span {
  color: #fff;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div form > div.btn_area .btn_submit span {
    font-size: 14px;
  }
}
html body main#supporter-login .wrapper section#login .inner > div form > div.btn_area .btn_submit img {
  width: 2.778vw;
  max-width: 40px;
  margin-left: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-login .wrapper section#login .inner > div form > div.btn_area .btn_submit img {
    width: 30px;
    margin-left: 5px;
  }
}
html body main#supporter-index .wrapper {
  background-image: url(../img/bg_supporter.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper {
    background-image: url(../img/bg_media_sp.png?date=20241225);
  }
}
html body main#supporter-index .wrapper section#media .inner div {
  display: grid;
  gap: min(2.778vw, 40px);
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: min(4.167vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#media .inner div {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
  }
}
html body main#supporter-index .wrapper section#media .inner div article {
  background: #fff;
  border-radius: min(0.833vw, 12px);
  width: 100%;
  max-width: 400px;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#media .inner div article {
    border-radius: 6px;
    max-width: 100%;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.05);
  }
}
html body main#supporter-index .wrapper section#media .inner div article a {
  display: block;
  width: 100%;
}
html body main#supporter-index .wrapper section#media .inner div article a figure {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #DDF0F3;
  border-radius: min(0.833vw, 12px);
}
html body main#supporter-index .wrapper section#media .inner div article a figure > p {
  width: 100%;
  border-radius: min(0.833vw, 12px);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#media .inner div article a figure > p {
    border-radius: 6px;
  }
}
html body main#supporter-index .wrapper section#media .inner div article a figure > p::before {
  content: "";
  display: block;
  padding-top: 61.8%;
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#media .inner div article a figure > p::before {
    padding-top: 40%;
  }
}
html body main#supporter-index .wrapper section#media .inner div article a figure > p img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html body main#supporter-index .wrapper section#media .inner div article a figure > p:hover img {
  transform: scale(1.1);
}
html body main#supporter-index .wrapper section#media .inner div article a figure figcaption {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  padding: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#media .inner div article a figure figcaption {
    padding: 20px;
  }
}
html body main#supporter-index .wrapper section#media .inner div article a figure figcaption p:nth-of-type(1) {
  display: flex;
  flex-wrap: wrap;
  gap: min(0.347vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#media .inner div article a figure figcaption p:nth-of-type(1) {
    gap: 5px;
  }
}
html body main#supporter-index .wrapper section#media .inner div article a figure figcaption p:nth-of-type(1) span {
  border-radius: min(0.347vw, 5px);
  background: #fff;
  font-size: min(0.875rem, 14px);
  padding: min(0.347vw, 5px) min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#media .inner div article a figure figcaption p:nth-of-type(1) span {
    border-radius: 3px;
    font-size: 12px;
    padding: 5px 10px;
  }
}
html body main#supporter-index .wrapper section#media .inner div article a figure figcaption p:nth-of-type(2) {
  font-size: min(1.125rem, 18px);
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#media .inner div article a figure figcaption p:nth-of-type(2) {
    font-size: 14px;
    margin-top: 20px;
  }
}
html body main#supporter-index .wrapper section#media .inner div article a figure figcaption h1 {
  margin-top: min(0.694vw, 10px);
  font-size: min(0.875rem, 14px);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#media .inner div article a figure figcaption h1 {
    margin-top: 10px;
    font-size: 12px;
  }
}
html body main#supporter-index .wrapper section#media .inner > p {
  margin-top: min(2.778vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#media .inner > p {
    margin-top: 20px;
  }
}
html body main#supporter-index .wrapper section#mypage .inner div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: min(0.833vw, 12px);
  box-sizing: border-box;
  width: 84.375%;
  max-width: 1080px;
  padding: min(2.778vw, 40px);
  margin: min(4.167vw, 60px) auto 0;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#mypage .inner div {
    border-radius: min(0.833vw, 12px);
    width: 100%;
    padding: 20px;
    margin: 30px auto 0;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.05);
  }
}
html body main#supporter-index .wrapper section#mypage .inner div p:nth-of-type(1) {
  text-align: center;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 1.75;
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#mypage .inner div p:nth-of-type(1) {
    font-size: 12px;
  }
}
html body main#supporter-index .wrapper section#mypage .inner div p:nth-of-type(2) {
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#supporter-index .wrapper section#mypage .inner div p:nth-of-type(2) {
    margin-top: 20px;
  }
}
html body main section:not(#mainvisual):not(#title) .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: min(6.944vw, 100px) min(5.556vw, 80px);
}
@media screen and (max-width: 768px) {
  html body main section:not(#mainvisual):not(#title) .inner {
    padding: 11.111vw 3.846vw;
  }
}
html body main section:not(#mainvisual):not(#title) .inner h2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
html body main section:not(#mainvisual):not(#title) .inner h2::before {
  content: attr(data-subtitle);
  font-family: "Montserrat";
  font-size: min(5.125rem, 82px);
  margin-bottom: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main section:not(#mainvisual):not(#title) .inner h2::before {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
html body main section:not(#mainvisual):not(#title) .inner h2 span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: min(1.5rem, 24px);
}
@media screen and (max-width: 768px) {
  html body main section:not(#mainvisual):not(#title) .inner h2 span {
    font-size: 14px;
  }
}
html body main section:not(#mainvisual):not(#title) .inner h2 span small {
  color: #FF9EC1;
  font-size: min(1.125rem, 18px);
  margin-right: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main section:not(#mainvisual):not(#title) .inner h2 span small {
    font-size: 12px;
    margin-right: 5px;
  }
}
html body main section#regist {
  background-image: url(../img/bg_index_regist1.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  html body main section#regist {
    background: none;
  }
}
html body main section#regist .inner {
  background-image: url(../img/bg_index_regist2.png?date=20241225);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  html body main section#regist .inner {
    background-image: url(../img/bg_index_regist3_sp.png?date=20241225);
    height: 74.63vw;
  }
}
html body main section#regist .inner h2 {
  color: #fff;
}
html body main section#regist .inner div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: min(0.833vw, 12px);
  box-sizing: border-box;
  width: 84.375%;
  max-width: 1080px;
  padding: min(2.778vw, 40px);
  margin: min(4.167vw, 60px) auto 0;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 768px) {
  html body main section#regist .inner div {
    border-radius: 6px;
    width: 100%;
    padding: 20px;
    margin: 30px auto 0;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.05);
  }
}
html body main section#regist .inner div p:nth-of-type(1) {
  text-align: center;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  html body main section#regist .inner div p:nth-of-type(1) {
    font-size: 12px;
  }
}
html body main section#regist .inner div p:nth-of-type(2) {
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main section#regist .inner div p:nth-of-type(2) {
    margin-top: 20px;
  }
}
html body main section#inputarea .inner > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: #fff;
  border-radius: min(0.833vw, 12px);
  box-sizing: border-box;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: min(4.167vw, 60px);
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(2.083vw, 30px) rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div {
    border-radius: 6px;
    padding: 20px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.2);
  }
}
html body main section#inputarea .inner > div:nth-of-type(n+2) {
  margin-top: min(6.944vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div:nth-of-type(n+2) {
    margin-top: 11.111vw;
  }
}
html body main section#inputarea .inner > div > h3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
html body main section#inputarea .inner > div > h3::before {
  content: attr(data-subtitle);
  font-family: "Montserrat";
  font-size: min(2.5rem, 40px);
  margin-bottom: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div > h3::before {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
html body main section#inputarea .inner > div > h3 span {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  font-size: min(1.5rem, 24px);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div > h3 span {
    font-size: 12px;
  }
}
html body main section#inputarea .inner > div > h3 span small {
  color: #3BC3D5;
  font-size: min(1.125rem, 18px);
  margin-top: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div > h3 span small {
    font-size: 10px;
    margin-top: 5px;
  }
}
html body main section#inputarea .inner > div > p {
  text-align: center;
  line-height: 1.75;
  margin-top: min(2.778vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div > p {
    margin-top: 10px;
  }
}
html body main section#inputarea .inner > div form {
  width: 100%;
}
html body main section#inputarea .inner > div form .must {
  background: #3BC3D5;
  border-radius: min(0.347vw, 5px);
  color: #fff;
  font-size: min(0.75rem, 12px);
  padding: min(0.208vw, 3px) min(0.694vw, 10px);
  margin-left: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form .must {
    border-radius: 3px;
    padding: 3px 10px;
    margin-left: min(0.694vw, 10px);
  }
}
html body main section#inputarea .inner > div form .w50 {
  width: 50% !important;
}
html body main section#inputarea .inner > div form .error-message {
  display: block;
  text-align: left;
  margin-top: min(0.694vw, 10px);
  flex-basis: 100%;
  color: #f46d6d;
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form .error-message {
    margin-top: 5px;
  }
}
html body main section#inputarea .inner > div form dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: min(1.389vw, 20px) 0;
  border-bottom: 1px #9de1ea solid;
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form dl {
    display: block;
    padding: 20px 0;
  }
}
html body main section#inputarea .inner > div form dl:first-child {
  border-top: 1px #9de1ea solid;
  margin-top: min(2.778vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form dl:first-child {
    margin-top: 30px;
  }
}
html body main section#inputarea .inner > div form dl dt {
  flex-shrink: 0;
  width: 30%;
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form dl dt {
    width: 100%;
  }
}
html body main section#inputarea .inner > div form dl dt .wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: min(1.125rem, 18px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form dl dt .wrap {
    font-size: 14px;
  }
}
html body main section#inputarea .inner > div form dl dd {
  display: flex;
  align-items: center;
  width: 70%;
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form dl dd {
    width: 100%;
    margin-top: 10px;
  }
}
html body main section#inputarea .inner > div form dl dd .wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: 1.5;
  width: 100%;
}
html body main section#inputarea .inner > div form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  display: flex;
  align-items: center;
  background: #F3F3F3;
  border-radius: min(0.347vw, 5px);
  outline: none;
  border: none;
  color: #5F5F5F;
  font-size: min(1rem, 16px);
  letter-spacing: 0.025em;
  width: 100%;
  height: min(4.167vw, 60px);
  padding: 0 min(0.694vw, 10px);
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
    border-radius: min(0.347vw, 5px);
    font-size: 12px;
    height: 40px;
    padding: 0 5px;
  }
}
html body main section#inputarea .inner > div form textarea {
  height: min(20.833vw, 300px) !important;
  padding: min(0.694vw, 10px) !important;
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form textarea {
    height: 150px !important;
    padding: 5px !important;
  }
}
html body main section#inputarea .inner > div form input[type=file] {
  font-size: min(1rem, 16px);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form input[type=file] {
    font-size: 12px;
  }
}
html body main section#inputarea .inner > div form label {
  padding: 0;
}
html body main section#inputarea .inner > div form label + label {
  margin-left: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form label + label {
    margin-left: 10px;
  }
}
html body main section#inputarea .inner > div form .select {
  width: 100%;
  position: relative;
}
html body main section#inputarea .inner > div form .select::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-width: 0 2px 2px 0;
  border-color: #5F5F5F;
  border-style: solid;
  position: absolute;
  right: min(0.694vw, 10px);
  top: calc(50% - 8px);
  transform-origin: center;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form .select::after {
    right: 10px;
    top: calc(50% - 8px);
  }
}
html body main section#inputarea .inner > div form .radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
html body main section#inputarea .inner > div form .radio input[type=radio] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main section#inputarea .inner > div form .radio label {
  display: flex;
}
html body main section#inputarea .inner > div form .radio label span {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
html body main section#inputarea .inner > div form .radio label span::before {
  content: "";
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  margin: 0 min(0.694vw, 10px) 0 0;
  background: #ebf9fb;
  box-sizing: border-box;
  border-radius: 50%;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form .radio label span::before {
    margin: 0 5px 0 0;
  }
}
html body main section#inputarea .inner > div form .radio input[type=radio]:checked + span::before {
  border: 1px solid #3BC3D5;
}
html body main section#inputarea .inner > div form .radio input[type=radio]:checked + span::after {
  display: inline-block;
  position: absolute;
  left: 5px;
  content: "";
  width: 10px;
  height: 10px;
  background: #3BC3D5;
  border-radius: 50%;
  box-sizing: border-box;
  vertical-align: middle;
}
html body main section#inputarea .inner > div form .check {
  position: relative;
}
html body main section#inputarea .inner > div form .check input[type=checkbox] {
  position: absolute;
  visibility: hidden;
  width: auto;
}
html body main section#inputarea .inner > div form .check label {
  display: flex;
}
html body main section#inputarea .inner > div form .check label span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  cursor: pointer;
  position: relative;
  padding: 0 0 0 calc(20px + min(0.694vw, 10px));
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form .check label span {
    display: block;
    line-height: 1.25;
    padding: 0 0 0 25px;
  }
}
html body main section#inputarea .inner > div form .check label span::before, html body main section#inputarea .inner > div form .check label span::after {
  content: "";
  display: inline-block;
  position: absolute;
}
html body main section#inputarea .inner > div form .check label span::before {
  top: 50%;
  left: 0;
  background: #ebf9fb;
  width: 20px;
  height: 20px;
  margin: 0;
  transform: translateY(-50%);
  box-sizing: border-box;
  border-radius: 0;
}
html body main section#inputarea .inner > div form .check label span::after {
  top: 25%;
  left: 0;
  border-width: 2px;
  border-color: transparent transparent #3BC3D5 #3BC3D5;
  border-style: solid;
  width: 20px;
  height: 10px;
  transform: translateY(-50%) rotate(-45deg);
  opacity: 0;
}
html body main section#inputarea .inner > div form .check input[type=checkbox]:checked + span::after {
  opacity: 1;
}
html body main section#inputarea .inner > div form > div.btn_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  margin-top: min(2.778vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form > div.btn_area {
    line-height: 1.25;
    margin-top: 20px;
  }
}
html body main section#inputarea .inner > div form > div.btn_area button.btn_submit {
  background: linear-gradient(80deg, #27A1B1 0%, #3BC3D5 50%, #27A1B1 100%);
  border-radius: min(0.694vw, 10px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24.722vw;
  max-width: 356px;
  height: 4.861vw;
  max-height: 70px;
  box-shadow: min(0.347vw, 5px) min(0.347vw, 5px) min(1.389vw, 20px) rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form > div.btn_area button.btn_submit {
    border-radius: 6px;
    width: 256px;
    height: 50px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  }
}
html body main section#inputarea .inner > div form > div.btn_area button.btn_submit span {
  color: #fff;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form > div.btn_area button.btn_submit span {
    font-size: 14px;
  }
}
html body main section#inputarea .inner > div form > div.btn_area button.btn_submit img {
  width: 2.778vw;
  max-width: 40px;
  margin-left: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form > div.btn_area button.btn_submit img {
    width: 30px;
    margin-left: 5px;
  }
}
html body main section#inputarea .inner > div form > div.btn_area button + button {
  margin-top: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main section#inputarea .inner > div form > div.btn_area button + button {
    margin-top: 20px;
  }
}
html body main .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto min(6.944vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main .pagination {
    margin: 0 auto 11.111vw;
  }
}
html body main .pagination li {
  margin: 0 min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main .pagination li {
    margin: 0 5px;
  }
}
html body main .pagination li a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: min(0.694vw, 10px);
  background: #ebf9fb;
  min-height: min(4.167vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main .pagination li a {
    min-height: 30px;
  }
}
html body main .pagination li a img {
  width: auto;
  height: min(0.694vw, 10px) !important;
}
@media screen and (max-width: 768px) {
  html body main .pagination li a img {
    height: 8px !important;
  }
}
html body main .pagination li .page-numbers {
  width: min(4.167vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main .pagination li .page-numbers {
    width: 30px;
  }
}
html body main .pagination li .page-numbers.current {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: min(0.694vw, 10px);
  background: #3BC3D5;
  color: #fff;
  min-height: min(4.167vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main .pagination li .page-numbers.current {
    border-radius: 6px;
    min-height: 30px;
  }
}
html body main .pagination li span {
  font-size: min(1rem, 16px);
}
@media screen and (max-width: 768px) {
  html body main .pagination li span {
    font-size: 12px;
  }
}
html body main .mgn-top {
  margin-top: min(6.944vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main .mgn-top {
    margin-top: 60px;
  }
}
html body footer {
  background: #3BC3D5;
  border-radius: min(0.833vw, 12px) min(0.833vw, 12px) 0 0;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body footer {
    border-radius: 6px 6px 0 0;
  }
}
html body footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 91.666%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body footer .inner {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 0 3.846vw;
    position: initial;
  }
}
html body footer .inner > div {
  margin-top: min(4.167vw, 60px);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  html body footer .inner > div {
    text-align: center;
    padding: 0;
    margin-top: 60px;
  }
}
html body footer .inner > div h1 img {
  width: auto;
  height: 15vw;
  max-height: 216px;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 768px) {
  html body footer .inner > div h1 img {
    height: 160px;
  }
}
html body footer .inner > nav {
  box-sizing: border-box;
  width: 66.5%;
  padding: min(4.167vw, 60px) 0 min(4.167vw, 60px) min(2.778vw, 40px);
  border-left: 1px #fff solid;
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav {
    width: 100%;
    padding: 30px 0 0;
    border: none;
  }
}
html body footer .inner > nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav ul {
    justify-content: center;
  }
}
html body footer .inner > nav ul:nth-of-type(1) li {
  display: flex;
  justify-content: center;
  align-items: center;
}
html body footer .inner > nav ul:nth-of-type(1) li:nth-of-type(n+2)::before {
  content: "";
  width: 1px;
  height: 2.778vw;
  max-height: 40px;
  background-color: #fff;
  margin: 0 min(2.083vw, 30px);
  transform: rotate(25deg);
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav ul:nth-of-type(1) li:nth-of-type(n+2)::before {
    height: 12px;
  }
}
html body footer .inner > nav ul:nth-of-type(1) li a {
  color: #fff;
}
html body footer .inner > nav ul:nth-of-type(1) li a span {
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav ul:nth-of-type(1) li a span {
    font-size: 12px;
  }
}
html body footer .inner > nav ul:nth-of-type(1) li a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav ul:nth-of-type(1) li a span::after {
    content: none;
  }
}
html body footer .inner > nav ul:nth-of-type(1) li a:hover span::after {
  background: #fff;
  bottom: -0.347vw;
}
html body footer .inner > nav ul:nth-of-type(2) {
  margin-top: min(2.083vw, 30px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav ul:nth-of-type(2) {
    margin-top: 20px;
  }
}
html body footer .inner > nav ul:nth-of-type(2) li:nth-of-type(n+2) {
  margin-left: min(1.389vw, 20px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav ul:nth-of-type(2) li:nth-of-type(n+2) {
    margin-left: 10px;
  }
}
html body footer .inner > nav ul:nth-of-type(2) li a {
  color: #fff;
}
html body footer .inner > nav ul:nth-of-type(2) li a span {
  font-size: min(1rem, 16px);
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav ul:nth-of-type(2) li a span {
    font-size: 10px;
  }
}
html body footer .inner > nav ul:nth-of-type(2) li a span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav ul:nth-of-type(2) li a span::after {
    content: none;
  }
}
html body footer .inner > nav ul:nth-of-type(2) li a:hover span::after {
  background: #fff;
  bottom: -0.347vw;
}
html body footer .inner > nav ul:nth-of-type(3) {
  margin-top: min(2.778vw, 40px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav ul:nth-of-type(3) {
    margin-top: 20px;
  }
}
html body footer .inner > nav ul:nth-of-type(3) li {
  width: 50%;
}
html body footer .inner > nav ul:nth-of-type(3) li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 6.25vw;
  max-height: 90px;
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav ul:nth-of-type(3) li a {
    height: 60px;
  }
}
html body footer .inner > nav ul:nth-of-type(3) li a img {
  width: 2.778vw;
  max-width: 40px;
  margin-right: min(0.694vw, 10px);
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav ul:nth-of-type(3) li a img {
    width: 20px;
    margin-right: 5px;
  }
}
html body footer .inner > nav ul:nth-of-type(3) li a span {
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body footer .inner > nav ul:nth-of-type(3) li a span {
    font-size: 12px;
  }
}
html body footer .inner > nav ul:nth-of-type(3) li:nth-of-type(1) a {
  background: #ebf9fb;
}
html body footer .inner > nav ul:nth-of-type(3) li:nth-of-type(1) a span {
  color: #3BC3D5;
}
html body footer .inner > nav ul:nth-of-type(3) li:nth-of-type(2) a {
  background: #fff;
}
html body footer .inner > nav ul:nth-of-type(3) li:nth-of-type(2) a span {
  color: #3BC3D5;
}
html body footer .inner address {
  position: absolute;
  left: 0;
  bottom: min(4.167vw, 60px);
  margin-top: min(2.778vw, 40px);
  padding: min(1.042vw, 15px) min(1.389vw, 20px);
  border: 1px #fff solid;
}
@media screen and (max-width: 768px) {
  html body footer .inner address {
    position: initial;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    margin-top: 30px;
    padding: 15px 20px;
  }
}
html body footer .inner address p {
  text-align: left;
  font-size: min(1.125rem, 18px);
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  html body footer .inner address p {
    font-size: 14px;
  }
}
html body footer .inner address p a {
  color: #fff;
}
html body footer small {
  border-top: 1px #fff solid;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: min(0.75rem, 12px);
  width: 100%;
  padding: min(0.694vw, 10px) 0;
}
@media screen and (max-width: 768px) {
  html body footer small {
    border: none;
    font-size: 10px;
    padding: 30px 0 60px;
  }
}

/* Coming　soon */
/* ------------------------------------------------------------ */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 1.5em;
  z-index: 9999;
  /* :targetが付いたときに表示 */
  /* ポップアップの中身 */
}
.popup:target {
  display: flex;
  animation: fadeIn 0.25s ease;
}
.popup .popup-inner {
  background: #fff;
  padding: 1.5em;
  border-radius: 12px;
  max-width: 480px;
  width: calc(100% - 40px);
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.25s ease;
  /* 閉じるボタン */
}
.popup .popup-inner .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.5em;
  text-decoration: none;
  color: #555;
}
.popup .popup-inner h2 {
  text-align: center;
  font-size: min(1.125rem, 18px);
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .popup .popup-inner h2 {
    font-size: 16px;
  }
}
.popup .popup-inner p {
  text-align: center;
  font-size: min(1rem, 16px);
  line-height: 1.75;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .popup .popup-inner p {
    font-size: 14px;
  }
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */