@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*Break Point (for viequ house)
---------------------------------*/
/*font
---------------------------------*/
header {
  position: fixed;
  top: 1%;
  left: 0;
  right: 0;
  width: 99%;
  margin: auto;
  background: rgba(255, 255, 255, 0.4274509804);
  backdrop-filter: blur(10px);
  z-index: 1000;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media print, screen and (max-width: 768px) {
  header {
    top: 0;
    width: 100%;
    background: #fff;
  }
}
header.scrolled {
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  margin: 0 auto;
  padding-inline: 0.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (max-width: 768px) {
  .header-content {
    gap: 20px;
  }
}

.logo {
  width: 10%;
  padding: 1% 0.5%;
}
@media print, screen and (max-width: 768px) {
  .logo {
    width: 50%;
    padding: 4% 4% 3.4%;
    z-index: 10000;
  }
}

.h-btn {
  width: 85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 3%;
}
@media print, screen and (max-width: 768px) {
  nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1em;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
}
nav a:hover {
  color: var(--primary-green);
}
nav a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-green);
  -webkit-animation: slideIn 0.3s ease;
          animation: slideIn 0.3s ease;
}

@-webkit-keyframes slideIn {
  from {
    width: 0;
    left: 50%;
  }
  to {
    width: 100%;
    left: 0;
  }
}

@keyframes slideIn {
  from {
    width: 0;
    left: 50%;
  }
  to {
    width: 100%;
    left: 0;
  }
}
.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: var(--text-dark);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 600;
}
.social-btn:hover {
  background: var(--primary-green);
  color: white;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 12px rgba(6, 172, 56, 0.3);
          box-shadow: 0 4px 12px rgba(6, 172, 56, 0.3);
}
.social-btn:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 13%;
  margin: 0.5% 0;
}
.cta-button a {
  width: 100%;
  color: white;
  padding: 4% 3% 6%;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
}
.cta-button a:hover {
  background: #ff8400;
  color: #FFF;
}
.cta-button a:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.cta-button a.closed {
  background: #999;
  cursor: not-allowed;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.cta-button a.closed:hover {
  background: #999;
  -webkit-transform: none;
          transform: none;
}

.header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}
body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

@media print, screen and (max-width: 768px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 100% !important;
    height: 100vh !important;
    background: #fff !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    padding: 0 0 60vh !important;
    gap: 0 !important;
    -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
    -webkit-transition: right 0.3s ease !important;
    transition: right 0.3s ease !important;
    z-index: 1000 !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  nav.active {
    right: 0 !important;
  }
  nav a {
    width: 100%;
    font-size: 1rem !important;
    padding: 5% 5% !important;
    border-bottom: 1px solid #b5b5b5 !important;
  }
  nav a.form {
    border-bottom: none !important;
    position: absolute;
    top: 37%;
    margin-inline: auto;
    text-align: center;
    background: -webkit-gradient(linear, left top, right top, from(#ffc047), to(#ff9211));
    background: linear-gradient(90deg, #ffc047 0%, #ff9211 100%);
    color: #fff;
    width: 90%;
    border-radius: 8px;
  }
}
.footer {
  padding: 4% 0 2%;
}
@media print, screen and (max-width: 768px) {
  .footer {
    padding: 18% 0 2%;
  }
}
.footer-container {
  margin: 0 auto;
  padding: 0 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media print, screen and (max-width: 768px) {
  .footer-container {
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer-logo {
  width: 300px;
  max-width: 200px;
  padding-bottom: 4%;
}
.footer-logo p {
  font-weight: 600;
  font-size: 1.3em;
}
@media print, screen and (max-width: 768px) {
  .footer-logo p {
    font-size: 3vw;
  }
}
.footer-logo p:first-child {
  padding-bottom: 5%;
}
.footer-logo p:nth-child(2) {
  padding-bottom: 4%;
}
.footer-logo a {
  font-weight: 500;
  font-size: 1.1em;
  text-decoration: underline;
  padding-bottom: 3%;
}
@media print, screen and (max-width: 768px) {
  .footer-logo a {
    font-size: 3vw;
  }
}
.footer-info p {
  font-size: 1em;
}
@media print, screen and (max-width: 768px) {
  .footer-info p {
    font-size: 2.5vw;
    text-align: left;
  }
}

.lp-pc-social {
  margin-top: 20px;
}
@media print, screen and (max-width: 768px) {
  .lp-pc-social {
    margin-bottom: 20px;
  }
}
.lp-pc-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media print, screen and (max-width: 1023.9px) {
  .-M {
    display: none !important;
  }
}

@media print, screen and (min-width: 1024px) {
  .-underM {
    display: none !important;
  }
}

.-underSM {
  display: none !important;
}
@media only screen and (max-width:389px) {
  .-underSM {
    display: block;
  }
}

img {
  width: 100%;
}

body {
  font-family: "Plain", "Shin Go Regular", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #000;
  font-size: min(1.5vw, 16px);
}

.container {
  position: relative;
  margin: 0 auto;
  padding: 0;
}

.bg-bl {
  background: linear-gradient(135deg, #22cb69 0%, #167fd3 100%);
}

.bg-bl90 {
  background: -webkit-gradient(linear, left top, right top, from(#22cb69), to(#167fd3));
  background: linear-gradient(90deg, #22cb69 0%, #167fd3 100%);
}

.bg-or {
  background: -webkit-gradient(linear, left top, right top, from(#ffc047), to(#ff9211));
  background: linear-gradient(90deg, #ffc047 0%, #ff9211 100%);
}

.bg-w {
  background: #fff;
}

.-en {
  font-family: "Jost", sans-serif;
}

/*.-en{font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;}*/
.-num {
  font-family: "Jost";
}

.w50 {
  width: 50%;
}
@media print, screen and (max-width: 768px) {
  .w50 {
    width: 100%;
  }
}

.w80 {
  width: 80%;
}

@media print, screen and (max-width: 1440px) {
  .pin_M {
    padding-inline: 4%;
  }
}
@media print, screen and (max-width: 768px) {
  .pin_M {
    padding-inline: unset;
  }
}

.maxw600 {
  max-width: 600px;
}

.maxw1400 {
  max-width: 1400px;
}

.border_u {
  border-bottom: 1px solid #000;
}

.btn-primary, .btn-secondary {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: -webkit-gradient(linear, left top, right top, from(#ffc047), to(#ff9211));
  background: linear-gradient(90deg, #ffc047 0%, #ff9211 100%);
}
.btn-primary {
  width: 100%;
  font-size: 1.7em;
  letter-spacing: 0.5rem;
}
@media print, screen and (max-width: 768px) {
  .btn-primary {
    font-size: 4.3vw;
    padding: 2% 4%;
    margin: auto;
    border-radius: 6px;
  }
}
.btn-primary a {
  display: inline-block;
  width: 100%;
  padding: 1.25% 1% 1.5%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: bold;
}
.btn-primary a:hover {
  background: #ff8400;
  color: #FFF;
}
.btn-secondary {
  width: 48%;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
@media print, screen and (max-width: 768px) {
  .btn-secondary {
    width: 48%;
    font-size: 2.8vw;
    padding: 1.5%;
    border-radius: 6px;
  }
}
.btn-secondary a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1.3% 1% 1.6%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media print, screen and (max-width: 768px) {
  .btn-secondary a {
    padding: 1.5% 0.5%;
  }
}
.btn-secondary a:after {
  display: block;
  content: "▶";
  color: #fff;
  font-size: 0.7rem;
  padding-left: 5%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media print, screen and (max-width: 768px) {
  .btn-secondary a:after {
    font-size: 1.5vw;
    padding-left: 3%;
  }
}
.btn-secondary a:hover {
  background: #ff8400;
}
.btn-secondary a:hover:after {
  color: #FFF;
}
.btn-toggle {
  color: #fff;
  padding: 15px 40px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.btn-toggle:hover {
  opacity: 0.9;
}

.sp-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media print, screen and (max-width: 768px) {
  .sp-ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.sp-ttl p {
  font-family: none;
  font-size: min(2vw, 2.5rem);
  font-weight: 600;
  color: #000;
  padding-left: 2.5%;
}
@media print, screen and (max-width: 768px) {
  .sp-ttl p {
    font-size: 5vw;
    padding: 0;
    margin: -3% auto auto;
  }
}

.section-title-en {
  font-weight: 300;
  letter-spacing: 6px;
}
.section-title-en.ttl-01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3% 0% -13% auto;
  right: 0%;
  text-align: right;
  font-size: 5.8em;
}
@media print, screen and (max-width: 768px) {
  .section-title-en.ttl-01 {
    margin: 2% auto 12%;
    text-align: center;
  }
}
.section-title-en.ttl-02, .section-title-en.ttl-03, .section-title-en.ttl-04, .section-title-en.ttl-05 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(5vw, 5em);
  background: -webkit-gradient(linear, left top, right top, from(#22cb69), to(#167fd3));
  background: linear-gradient(90deg, #22cb69, #167fd3);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media print, screen and (max-width: 768px) {
  .section-title-en.ttl-02, .section-title-en.ttl-03, .section-title-en.ttl-04, .section-title-en.ttl-05 {
    margin-inline: auto;
    font-size: 9vw;
  }
}
.section-title-en.ttl-02 span, .section-title-en.ttl-03 span, .section-title-en.ttl-04 span, .section-title-en.ttl-05 span {
  font-family: none;
  font-size: min(2vw, 2.5rem);
  font-weight: 600;
  color: #000;
}
@media print, screen and (max-width: 768px) {
  .section-title-en.ttl-02 span, .section-title-en.ttl-03 span, .section-title-en.ttl-04 span, .section-title-en.ttl-05 span {
    font-size: 5vw;
  }
}
.section-title-en.ttl-02 {
  padding: 6% 0 3% 0;
}
@media print, screen and (max-width: 768px) {
  .section-title-en.ttl-02 {
    padding: 17% 0 1% 0;
  }
}
.section-title-en.ttl-03 {
  margin: 0 auto;
  text-align: center;
  padding: 2% 0 4%;
  line-height: 1.4;
}
.section-title-en.ttl-03 span {
  display: block;
  text-align: center;
}
.section-title-en.ttl-04 {
  margin: 0 auto;
  text-align: center;
  padding: 2% 0 0;
  line-height: 1.4;
}
.section-title-en.ttl-04 span {
  display: block;
  text-align: center;
}
.section-title-en.ttl-05 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
  line-height: 1.4;
}
@media print, screen and (max-width: 768px) {
  .section-title-en.ttl-05 {
    margin: 0 auto 3%;
  }
}
.section-title-en.ttl-05 p {
  padding-left: 2.5%;
}
@media print, screen and (max-width: 768px) {
  .section-title-en.ttl-05 p {
    font-size: 6vw;
    margin: -4% auto auto;
    padding: 0;
  }
}
.section-title-ja {
  font-size: 24px;
  text-align: center;
  margin-bottom: 60px;
}

.mv {
  position: relative;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media print, screen and (max-width: 768px) {
  .mv {
    height: 100vh;
  }
}
.mv-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media print, screen and (max-width: 768px) {
  .mv-video {
    height: 100vh;
  }
}
.mv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv-content {
  max-width: 850px;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 2% 2% 4%;
  padding-top: min(160px, 10vw);
}
@media print, screen and (max-width: 768px) {
  .mv-content {
    padding: 0 2% 4vw;
  }
}
.mv-logo {
  margin-bottom: 40px;
}
@media print, screen and (max-width: 768px) {
  .mv-logo {
    width: 80%;
    margin: 0 auto 6vw;
  }
}
.mv-logo img {
  height: auto;
}
.mv-title {
  display: block;
  width: 100%;
  font-size: 2.6em;
  letter-spacing: 0.5rem;
  font-style: italic;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 1%;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media print, screen and (max-width: 768px) {
  .mv-title {
    width: 83%;
    margin-inline: auto;
    margin-bottom: 5vw;
    font-size: 3.5em;
    line-height: 3;
    letter-spacing: 0;
  }
}
.mv-date {
  /*font-size: 2.5em;*/
  font-weight: 700;
  letter-spacing: 0.1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.mv-date .f01 {
  font-size: 2rem;
}
@media print, screen and (max-width: 768px) {
  .mv-date .f01 {
    font-size: 4vw;
  }
}
.mv-date .f02 {
  font-size: 3rem;
}
@media print, screen and (max-width: 768px) {
  .mv-date .f02 {
    font-size: 6vw;
  }
}
.mv-date .f03 {
  font-size: 1.4rem;
  font-weight: 500;
}
@media print, screen and (max-width: 768px) {
  .mv-date .f03 {
    font-size: 3vw;
  }
}
.mv-info {
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin-bottom: 6%;
}
.mv-info.-place {
  font-size: 1.35em;
  letter-spacing: 0;
}
@media print, screen and (max-width: 768px) {
  .mv-info.-place {
    font-size: 12px;
  }
}
@media print, screen and (max-width: 768px) {
  .mv-info {
    font-size: 2.8vw;
    padding-block: 1.3% 3%;
    letter-spacing: 1px;
  }
}
.mv-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media print, screen and (max-width: 768px) {
  .mv-buttons {
    width: 95%;
    margin: 4vw auto;
    gap: 10px;
  }
}
.mv-cap {
  text-align: center;
  padding: 0 1%;
  font-size: 0.8em;
  font-weight: 600;
  color: #FFF;
}
@media print, screen and (max-width: 768px) {
  .mv-cap {
    font-size: 3vw;
  }
}

.section-intro {
  background: #fff;
  padding: 4% 0 3%;
}

.intro-container {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  max-width: 1300px;
}
.intro-title-green {
  font-size: 30px;
  letter-spacing: 0.3rem;
  font-weight: bold;
  font-style: italic;
  margin: 1% auto;
  background: -webkit-gradient(linear, left top, right top, from(#22cb69), to(#167fd3));
  background: linear-gradient(90deg, #22cb69, #167fd3);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.intro-title-green strong {
  font-size: 4.3vw;
  display: block;
  line-height: 1.4;
}
@media print, screen and (max-width: 768px) {
  .intro-title-green strong {
    font-size: 28px;
    letter-spacing: 0;
  }
}
@media print, screen and (max-width: 768px) {
  .intro-title-green {
    margin: 4% auto;
    font-size: 5.3vw;
  }
}
.intro-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}
.intro-text {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 2.2;
  margin-top: 40px;
}
.intro-text strong {
  font-weight: bold;
}
@media print, screen and (max-width: 768px) {
  .intro-text {
    font-size: 3.2vw;
    line-height: 2;
    margin-top: 20px;
  }
}
.intro-divider {
  width: 80%;
  max-width: 1200px;
  height: 1px;
  background: #3189e3;
  margin: 3% auto;
}
@media print, screen and (max-width: 768px) {
  .intro-divider {
    width: 90%;
    max-width: 1200px;
    height: 1px;
    background: #3189e3;
    margin: 6% auto 5%;
  }
}
.intro-week-title {
  font-size: 3.2em;
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.6rem;
}
@media print, screen and (max-width: 768px) {
  .intro-week-title {
    letter-spacing: 0.2rem;
    padding-block: 1%;
    font-size: 3.7em;
  }
}
.intro-week-subtitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2em;
  font-style: italic;
  font-weight: bold;
  margin: 10px auto 25px;
  padding-inline: 6px;
  background: -webkit-gradient(linear, left top, right top, from(#22cb69), to(#167fd3));
  background: linear-gradient(90deg, #22cb69, #167fd3);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media print, screen and (max-width: 768px) {
  .intro-week-subtitle {
    padding-bottom: 0;
    margin-bottom: 20px;
    font-size: 3.6em;
  }
}
.intro-week-cards {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
@media print, screen and (max-width: 768px) {
  .intro-week-cards {
    padding-top: 3%;
    margin-top: 40px;
  }
}
.intro-week-cards .week-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 2% 0;
}
@media print, screen and (max-width: 768px) {
  .intro-week-cards .week-inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.intro-week-cards .week-inner .inner01 {
  position: relative;
  width: 60%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff;
  padding: 1% 1% 1.5%;
  margin: 0 2%;
}
@media print, screen and (max-width: 768px) {
  .intro-week-cards .week-inner .inner01 {
    width: 80%;
    margin: 8% auto;
  }
}
.intro-week-cards .week-inner .inner02 {
  width: 48%;
  padding: 1.5%;
}
@media print, screen and (max-width: 768px) {
  .intro-week-cards .week-inner .inner02 {
    width: 90%;
    margin: 0 auto 4%;
  }
}
.intro-week-cards .week-inner .inner02 h4 {
  font-size: 40px;
}
@media print, screen and (max-width: 768px) {
  .intro-week-cards .week-inner .inner02 h4 {
    font-size: 9vw;
  }
}
.intro-week-cards .week-inner .inner02 ul {
  font-size: 33px;
  line-height: 1.6;
}
@media print, screen and (max-width: 768px) {
  .intro-week-cards .week-inner .inner02 ul {
    font-size: 5.5vw;
  }
}
.intro-week-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}
.intro-week-card h4 {
  font-size: 2.1em;
  font-weight: bold;
  margin-bottom: 1%;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .intro-week-card h4 {
    font-size: 7vw;
  }
}
.intro-week-card h4 span {
  font-size: 1.7rem;
}
@media print, screen and (max-width: 768px) {
  .intro-week-card h4 span {
    font-size: 4vw;
  }
}
.intro-week-card ul {
  list-style: none;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .intro-week-card ul {
    font-size: 5vw;
  }
}
.intro-week-card ul li {
  margin-bottom: 5px;
  font-weight: bold;
}
.intro-week-card ul span {
  font-size: 18px;
  display: block;
  font-weight: normal;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .intro-week-card ul span {
    font-size: 13px;
  }
}
.intro-week-note {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -17%;
  margin: auto;
  display: block;
  width: 100%;
  font-size: 1rem;
  color: #fff;
}
@media print, screen and (max-width: 768px) {
  .intro-week-note {
    bottom: -11%;
    font-size: 3.1vw;
  }
}

.section-slider {
  padding: 0;
  margin-bottom: 5%;
  margin: 0 auto;
}

/* スライダーのwrapper */
.infinite-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* スライド */
.infinite-slider .swiper-slide {
  height: 50vw !important; /* 高さを指定 */
  max-height: 300px;
  width: auto !important;
}

/* スライド内の画像 */
.infinite-slider .swiper-slide img {
  width: auto;
  height: 100%;
}

.section-special {
  color: #fff;
  margin-top: 4%;
  padding: 1% 0 5%;
  background: url("/images/lp/pagerdutyontourtokyo2026/bg01.webp") center/cover no-repeat, -webkit-gradient(linear, left top, right top, from(#22cb69), to(#167fd3));
  background: url("/images/lp/pagerdutyontourtokyo2026/bg01.webp") center/cover no-repeat, linear-gradient(90deg, #22cb69 0%, #167fd3 100%);
}
@media print, screen and (max-width: 768px) {
  .section-special {
    margin-top: 10%;
    padding: 12% 0 10%;
  }
}

.special-speaker {
  width: 76%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .special-speaker {
    width: 100%;
    margin: 0 auto 8% !important;
    gap: 0;
  }
}
.special-speaker.s01 {
  margin-top: 10%;
}
@media print, screen and (max-width: 768px) {
  .special-speaker.s01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
.special-speaker.s02 {
  margin: -5% 1% auto auto;
}
@media print, screen and (max-width: 768px) {
  .special-speaker.s02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
}
.special-speaker.s03 {
  margin: 7% auto auto 10%;
}
@media print, screen and (max-width: 768px) {
  .special-speaker.s03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.speaker-image {
  width: 52%;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media print, screen and (max-width: 768px) {
  .speaker-image {
    width: 60%;
  }
}
.speaker-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.speaker-info {
  /*flex: 1;*/
  /*max-width: 350px;*/
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .speaker-info {
    padding-top: 7%;
  }
}
.speaker-company-logo {
  height: 30px;
  margin-bottom: 10px;
}
.speaker-role {
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 1%;
  line-height: 1.3;
}
@media print, screen and (max-width: 768px) {
  .speaker-role {
    font-size: 3.5vw;
  }
}
.speaker-name {
  font-size: 3em;
  font-weight: 400;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .speaker-name {
    font-size: 6vw;
  }
}
.speaker-suffix {
  font-size: 0.5em;
  font-weight: normal;
}

.section-speakers {
  padding: 0 0 7%;
  margin: auto;
  background: url("/images/lp/pagerdutyontourtokyo2026/bg02.webp") top/cover no-repeat;
  background-position-y: 15%;
}

.speakers-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media print, screen and (max-width: 768px) {
  .speakers-grid {
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
.speakers-toggle {
  text-align: center;
}

.speaker-card {
  overflow: hidden;
  padding-bottom: 4%;
}
.speaker-card-image {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.speaker-card-image figure:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.speaker-card-logo {
  width: 75%;
  margin: auto;
  padding: 1% 0 4%;
}
.speaker-card-info {
  padding: 1%;
}
.speaker-card-role {
  font-size: 1em;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .speaker-card-role {
    font-size: 2.5vw;
    line-height: 1.3;
  }
}
.speaker-card-name {
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .speaker-card-name {
    font-size: 5vw;
  }
}

.img-wrap {
  position: relative;
  display: inline-block;
}

.img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 80%, rgb(255, 255, 255) 100%);
  pointer-events: none;
}

.section-schedule {
  padding: 80px 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(34, 203, 105, 0.1764705882)), to(rgba(22, 127, 211, 0.1764705882)));
  background: linear-gradient(90deg, rgba(34, 203, 105, 0.1764705882) 0%, rgba(22, 127, 211, 0.1764705882) 100%);
}
@media print, screen and (max-width: 768px) {
  .section-schedule {
    padding: 12% 0;
  }
}

.schedule-content {
  max-width: 1400px;
  margin: 0 auto;
}
.schedule-item {
  margin-bottom: 40px;
  /*padding: 30px;*/
  backdrop-filter: blur(10px);
}
@media print, screen and (max-width: 768px) {
  .schedule-item {
    width: 90%;
    margin-inline: auto;
    overflow-x: scroll;
  }
}
.schedule-item .swip {
  padding: 3% 1% 1%;
  /*text-align: center;*/
  font-size: 3.5vw;
}
.schedule-time {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
@media print, screen and (max-width: 768px) {
  .schedule-time {
    font-size: 5vw;
    margin-bottom: 1%;
  }
}
@media print, screen and (max-width: 768px) {
  .schedule-detail.col2 {
    width: 180%;
  }
}
.schedule-detail h4 {
  font-size: 1.3em;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: 1% 2%;
}
@media print, screen and (max-width: 768px) {
  .schedule-detail h4 {
    font-size: 3vw;
  }
}
.schedule-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.schedule-description {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}
.schedule-speakers {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -1%;
  padding-bottom: 3%;
}
@media print, screen and (max-width: 768px) {
  .schedule-speakers {
    gap: 14px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 5%;
  }
}
.schedule-speakers h5 {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.8em;
}
@media print, screen and (max-width: 768px) {
  .schedule-speakers h5 {
    font-size: 4vw;
  }
  .schedule-speakers h5.h5_02 {
    padding-block: 5%;
  }
}
.schedule-speakers h5.thum {
  min-height: 6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -3% auto -3%;
}
@media print, screen and (max-width: 768px) {
  .schedule-speakers h5.thum {
    margin: 3% auto 0%;
  }
}
.schedule-speakers figure {
  width: 30%;
}
@media print, screen and (max-width: 768px) {
  .schedule-speakers figure {
    width: 23%;
  }
}
.schedule-speakers ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.schedule-speakers ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  margin: 0 2%;
  gap: 4%;
}
@media print, screen and (max-width: 768px) {
  .schedule-speakers ul li {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 8%;
    gap: 4%;
  }
}
.schedule-speakers ul li.col1 {
  width: 84%;
}
@media print, screen and (max-width: 768px) {
  .schedule-speakers ul li.col1 {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .schedule-speakers ul li.col1 figure {
    width: 30%;
  }
  .schedule-speakers ul li.col1 .schedule-speaker-info {
    width: 80% !important;
    text-align: center;
  }
  .schedule-speakers ul li.col1 .schedule-speaker-info p {
    margin: 8% auto 2% !important;
  }
}
.schedule-speakers ul li.acc {
  display: block;
  width: 84%;
}
@media print, screen and (max-width: 768px) {
  .schedule-speakers ul li.acc {
    width: 90%;
    margin: -11% auto 4%;
  }
  .schedule-speakers ul li.acc.sp01 {
    margin: -4% auto 4%;
  }
}
.schedule-speaker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.schedule-speaker img:first-child {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.schedule-speaker-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media print, screen and (max-width: 768px) {
  .schedule-speaker-info {
    width: 62%;
  }
}
.schedule-speaker-info p {
  font-size: 1.2em;
  line-height: 1.5;
}
@media print, screen and (max-width: 768px) {
  .schedule-speaker-info p {
    font-size: 3vw;
  }
}
.schedule-speaker-info p span {
  font-size: 1.4em;
  font-weight: bold;
}
@media print, screen and (max-width: 768px) {
  .schedule-speaker-info p span {
    font-size: 4vw;
  }
}
.schedule-company-logo {
  width: 40%;
  margin-bottom: 6%;
}
@media print, screen and (max-width: 768px) {
  .schedule-company-logo {
    width: 50%;
  }
}
.schedule-sessions {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
  padding: 30px;
  backdrop-filter: blur(10px);
}
.schedule-dual {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.schedule-session {
  padding: 0.5%;
}

.track-title {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media print, screen and (max-width: 768px) {
  .track-title {
    font-size: 5vw;
    line-height: 1.3;
  }
}
.track-title span {
  font-size: 2.6rem;
}
@media print, screen and (max-width: 768px) {
  .track-title span {
    font-size: 8vw;
  }
}
.track-title.ttla {
  background: #17c27e;
}
.track-title.ttlb {
  background: #0498b2;
}

.session-label {
  display: inline-block;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}
.session-label.business {
  background: #167fd3;
}
.session-label.technical {
  background: #22cb69;
}

.section-sponsors {
  padding: 80px 0;
  background: #fff;
}

.sponsors-tier {
  margin-bottom: 60px;
}
.sponsors-tier-title {
  font-size: 1.8em;
  font-weight: 500;
  text-align: center;
  margin: 2% auto 3%;
  color: #04b299;
}
@media print, screen and (max-width: 768px) {
  .sponsors-tier-title {
    font-size: 4vw;
  }
}
.sponsors-grid {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}
.sponsors-grid.gold {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
@media print, screen and (max-width: 768px) {
  .sponsors-grid.gold {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.sponsor-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
}
.sponsor-logo img {
  max-width: 470px;
  max-height: 65px;
  width: auto;
  height: auto;
}
@media print, screen and (max-width: 768px) {
  .sponsor-logo img {
    max-width: 330px;
    max-height: 50px;
  }
}
.sponsor-logo img.sp01 {
  max-height: 140px;
}
@media print, screen and (max-width: 768px) {
  .sponsor-logo img.sp01 {
    max-height: 65px;
  }
}
.sponsor-logo .sponsor-corp {
  font-size: 1.2em;
  font-weight: 700;
  text-align: center;
  padding: 6% 0 0;
}
@media print, screen and (max-width: 768px) {
  .sponsor-logo .sponsor-corp {
    font-size: 3.5vw;
  }
}

.section-outline {
  padding: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(34, 203, 105, 0.1764705882)), to(rgba(22, 127, 211, 0.1764705882)));
  background: linear-gradient(90deg, rgba(34, 203, 105, 0.1764705882) 0%, rgba(22, 127, 211, 0.1764705882) 100%);
}
.section-outline.-out {
  margin-top: 130px;
}
@media print, screen and (max-width: 768px) {
  .section-outline {
    padding: 13% 0% 6%;
  }
  .section-outline.-out {
    margin-top: 70px;
  }
}

.outline-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media print, screen and (max-width: 768px) {
  .outline-layout {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.outline-left {
  width: 90%;
  max-width: 760px;
  margin: auto;
}
.outline-left .sp-ttl {
  padding-bottom: 3%;
}
.outline-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media print, screen and (max-width: 768px) {
  .outline-list {
    padding-bottom: 3%;
  }
}
.outline-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 110px 10px 1fr;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 0 0 15px;
}
@media print, screen and (max-width: 1440px) {
  .outline-item {
    padding: 0 0 2%;
  }
}
@media print, screen and (max-width: 768px) {
  .outline-item {
    display: block;
  }
}
.outline-item dt {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.05rem;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .outline-item dt {
    font-size: 13px;
    text-align: left;
  }
}
.outline-item dd {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05rem;
}
@media print, screen and (max-width: 1440px) {
  .outline-item dd {
    line-height: 1.5;
  }
}
@media print, screen and (max-width: 768px) {
  .outline-item dd {
    font-size: 13px;
  }
}
.outline-images img {
  width: 100%;
  height: auto;
  display: block;
}

.section-gallery {
  background: url(/images/lp/pagerdutyontourtokyo2026/bg_foot.webp);
  background-size: cover;
  padding: 8% 1%;
}

.f-btnArea {
  max-width: 500px;
  margin: 80px auto 0;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .f-btnArea {
    margin: 40px auto;
    padding: 0 18px;
  }
}
.f-btnArea.-out {
  margin-top: 10px;
  margin-bottom: 0;
}
.f-btnArea .btn-primary a {
  padding: 18px 0 20px;
}
@media print, screen and (max-width: 768px) {
  .f-btnArea .btn-primary a {
    padding: 10px 0;
  }
}

.f-txt {
  font-size: 20px;
  color: #FFF;
  line-height: 2;
}
@media print, screen and (max-width: 768px) {
  .f-txt {
    font-size: 13px;
  }
}
.f-txt.-btm {
  margin-top: 20px;
}

.gallery-grid {
  width: 92%;
  max-width: 1400px;
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr 0 1fr 0 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media print, screen and (max-width: 768px) {
  .gallery-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery-item {
  position: relative;
  padding-top: 75%;
  margin: 2%;
  overflow: hidden;
}
.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.gallery-logo {
  text-align: center;
  margin-top: 80px;
}
@media print, screen and (max-width: 768px) {
  .gallery-logo {
    margin-top: 40px;
  }
}
.gallery-logo .txt {
  color: #fff;
  font-size: 2em;
  padding: 20px 1% 2%;
  font-weight: bold;
}
@media print, screen and (max-width: 768px) {
  .gallery-logo .txt {
    font-size: 4vw;
  }
}
.gallery-logo .ttl {
  width: 96%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 10px;
}
@media print, screen and (max-width: 768px) {
  .gallery-logo .ttl {
    width: 76%;
    margin-top: 20px;
  }
}

.accordion-toggle {
  width: 100%;
  background: #0f2b5c;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  -webkit-transition: background 0s;
  transition: background 0s;
  text-align: center;
}
@media print, screen and (max-width: 768px) {
  .accordion-toggle {
    padding: 3%;
  }
}
.accordion-toggle:hover {
  background: #1a3d7a;
}
.accordion-toggle:focus {
  outline: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0s ease-out;
  transition: max-height 0s ease-out;
  background: #0f2b5c;
  color: #fff;
}
.accordion-content.active {
  margin-top: 20px;
  max-height: 1000px;
  -webkit-transition: max-height 0s ease-in;
  transition: max-height 0s ease-in;
}
.accordion-content p {
  padding: 20px;
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.accordion-close {
  width: 100%;
  background: transparent;
  color: #fff;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: background 0s;
  transition: background 0s;
  text-align: center;
}
.accordion-close:hover {
  background: rgba(255, 255, 255, 0.1);
}
.accordion-close:focus {
  outline: none;
}

.float {
  position: fixed;
  bottom: 1%;
  right: 1%;
  z-index: 100;
}
@media print, screen and (max-width: 768px) {
  .float {
    bottom: 1%;
    right: 1%;
  }
}
.float a {
  position: relative;
  display: block;
  width: 100%;
  letter-spacing: 2px;
}
.float a .round {
  -webkit-animation: rotation 16s linear infinite;
          animation: rotation 16s linear infinite;
  height: 12em;
  width: 12em;
  margin-left: 1.3vw;
  letter-spacing: 0;
}
@media print, screen and (max-width: 768px) {
  .float a .round {
    height: 19em;
    width: 19em;
  }
}
.float a .btn {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.3vw;
  right: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 9em;
  height: 9em;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#ffc047), to(#ff9211));
  background: linear-gradient(90deg, #ffc047 0%, #ff9211 100%);
  border-radius: 50%;
}
@media print, screen and (max-width: 768px) {
  .float a .btn {
    height: 7em;
    width: 7em;
    font-size: 3.5vw;
  }
}
.float a .btn p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.float a .btn p:hover {
  background: #ff8400;
  color: #FFF;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 20s infinite linear 0.5s both;
          animation: infinity-scroll-left 20s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 22vw;
}
@media print, screen and (max-width: 768px) {
  .scroll-infinity__item {
    width: 60vw;
  }
}

.scroll-infinity__item > img {
  width: 100%;
}
