@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
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.8;
  overflow-x: clip;
}
body * {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* Noto Sans JP */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
/* Lato */
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
.header {
  background-color: #242b8e;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}

.header__inner {
  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;
  padding-left: 26px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.header__logo {
  width: 88px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__logo {
    padding: 10px 0;
  }
}

.header__menu-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media print, screen and (max-width: 1023.9px) {
  .header__menu-area {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__menu-area.-active {
    opacity: 1;
    pointer-events: initial;
  }
}

.header__menu {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 20px;
}
.header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .header__menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.header__link {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media print, screen and (max-width: 1023.9px) {
  .header__link {
    color: #000099;
  }
}
@media (hover: hover) {
  .header__link:hover {
    opacity: 0.6;
    text-decoration: underline;
  }
}

.header__button {
  color: #fff;
  width: 218px;
  line-height: 1;
  font-size: 18px;
  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;
  background-image: -webkit-linear-gradient(180deg, rgb(224, 54, 87) 1%, rgb(241, 207, 48) 100%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media print, screen and (max-width: 1023.9px) {
  .header__button {
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
  }
}
@media (hover: hover) {
  .header__button:hover {
    opacity: 0.6;
  }
}

.hamburger {
  height: 20px;
  width: 30px;
  position: relative;
  display: block;
  background-color: transparent;
  border: none;
  z-index: 100000;
}
@media print, screen and (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.hamburger.-active span {
  background: #000099;
}
.hamburger.-active span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.hamburger.-active span:nth-of-type(2) {
  display: none;
}
.hamburger.-active span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  top: 50%;
}
.hamburger span {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: block;
  height: 2px;
  background-color: #fff;
  width: 100%;
  position: absolute;
  left: 0;
}
.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}

.b-ftr {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.b-ftr * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.b-ftr *::before, .b-ftr *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.b-ftr img, .b-ftr svg {
  display: block;
}

.b-ftr img {
  width: 100%;
  height: auto;
}

.b-ftr a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.b-ftr a:hover {
  color: inherit;
  text-decoration: none !important;
}

.b-ftr a:hover img {
  opacity: 1;
}

.b-ftr a:focus {
  outline: transparent !important;
}

.b-ftr {
  color: #fff;
  background-color: #1a2792;
}

@media screen and (min-width: 768px) {
  .b-ftr {
    min-width: 980px;
  }
}
@media print {
  .b-ftr {
    min-width: 980px;
  }
}
.b-ftr .b-ftr--inr {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .b-ftr .b-ftr--inr {
    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 {
  .b-ftr .b-ftr--inr {
    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 screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr--inr {
    padding-top: 33.7188872621px;
    padding-bottom: 26.5446559297px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr--inr {
    padding-top: 3.4407027818vw;
    padding-bottom: 2.7086383602vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr--inr {
    padding-top: 55.0512445095px;
    padding-bottom: 43.3382137628px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr--inr {
    padding-top: 75px;
    padding-bottom: 44.5px;
  }
}
@media print {
  .b-ftr .b-ftr--inr {
    padding-top: 47px;
    padding-bottom: 37px;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.b-ftr .b-ftr__cnt__sns__ttl {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  -webkit-transform: skew(-8deg);
  transform: skew(-8deg);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr__cnt__sns__ttl {
    font-size: 21.5226939971px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr__cnt__sns__ttl {
    font-size: 2.196193265vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr__cnt__sns__ttl {
    font-size: 35.1390922401px;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__ttl {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__sns__ttl {
    line-height: 1.3333333333;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__ttl {
    line-height: 1.3333333333;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__sns__ttl {
    letter-spacing: 0.015em;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__ttl {
    letter-spacing: 0.015em;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__sns__ttl {
    font-weight: 800;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__ttl {
    font-weight: 800;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__sns__ttl {
    font-size: 21px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__sns__ttl {
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__sns__ttl {
    letter-spacing: 0.015em;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__sns__ttl {
    font-weight: 800;
  }
}
.b-ftr .b-ftr__cnt__sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr__cnt__sns__list {
    padding-left: 33.7188872621px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr__cnt__sns__list {
    padding-left: 3.4407027818vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr__cnt__sns__list {
    padding-left: 55.0512445095px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__sns__list {
    margin-top: 25px;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__list {
    padding-left: 47px;
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr [class*=b-ftr__cnt__sns__list__itm--] + [class*=b-ftr__cnt__sns__list__itm--] {
    margin-left: 18.6530014641px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr [class*=b-ftr__cnt__sns__list__itm--] + [class*=b-ftr__cnt__sns__list__itm--] {
    margin-left: 1.9033674963vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr [class*=b-ftr__cnt__sns__list__itm--] + [class*=b-ftr__cnt__sns__list__itm--] {
    margin-left: 30.4538799414px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr [class*=b-ftr__cnt__sns__list__itm--] + [class*=b-ftr__cnt__sns__list__itm--] {
    margin-left: 62px;
  }
}
@media print {
  .b-ftr [class*=b-ftr__cnt__sns__list__itm--] + [class*=b-ftr__cnt__sns__list__itm--] {
    margin-left: 26px;
  }
}
.b-ftr .b-ftr__cnt__sns__list__itm__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff !important;
}

@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link {
    -webkit-transition: border-bottom 0.45s ease;
    transition: border-bottom 0.45s ease;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__list__itm__link {
    -webkit-transition: border-bottom 0.45s ease;
    transition: border-bottom 0.45s ease;
  }
}
.b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
  -webkit-transform: skew(-8deg);
  transform: skew(-8deg);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    font-size: 10.0439238653px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    font-size: 1.0248901903vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    font-size: 16.3982430454px;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    line-height: 2.8571428571;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    line-height: 2.8571428571;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    letter-spacing: 0.015em;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    letter-spacing: 0.015em;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    font-weight: 600;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    font-weight: 600;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    line-height: 1.1764705882;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    letter-spacing: 0.015em;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    font-weight: 600;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    -webkit-transition: border-bottom-color 0.45s ease;
    transition: border-bottom-color 0.45s ease;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    -webkit-transition: border-bottom-color 0.45s ease;
    transition: border-bottom-color 0.45s ease;
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    margin-left: 7.8916544656px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    margin-left: 0.8052708638vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    margin-left: 12.8843338214px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    margin-left: 13px;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__list__itm__link__txt {
    margin-left: 11px;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__sns__list__itm__link:hover .b-ftr__cnt__sns__list__itm__link__txt {
    border-bottom-color: #fff;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__list__itm__link:hover .b-ftr__cnt__sns__list__itm__link__txt {
    border-bottom-color: #fff;
  }
}
.b-ftr .b-ftr__cnt__sns__list__itm__link__ico {
  display: block;
}

.b-ftr .b-ftr__cnt__sns__list__itm__link__ico svg {
  width: 100%;
  height: 100%;
}

.b-ftr .b-ftr__cnt__sns__list__itm__link__ico svg path {
  fill: #fff;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr__cnt__sns__list__itm--facebook .b-ftr__cnt__sns__list__itm__link__ico {
    width: 20.0878477306px;
    height: 20.0878477306px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr__cnt__sns__list__itm--facebook .b-ftr__cnt__sns__list__itm__link__ico {
    width: 2.0497803807vw;
    height: 2.0497803807vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr__cnt__sns__list__itm--facebook .b-ftr__cnt__sns__list__itm__link__ico {
    width: 32.7964860908px;
    height: 32.7964860908px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__sns__list__itm--facebook .b-ftr__cnt__sns__list__itm__link__ico {
    width: 30.5px;
    height: 30.5px;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__list__itm--facebook .b-ftr__cnt__sns__list__itm__link__ico {
    width: 28px;
    height: 28px;
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr__cnt__sns__list__itm--youtube .b-ftr__cnt__sns__list__itm__link__ico {
    width: 22.9575402635px;
    height: 16.5007320644px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr__cnt__sns__list__itm--youtube .b-ftr__cnt__sns__list__itm__link__ico {
    width: 2.3426061493vw;
    height: 1.6837481698vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr__cnt__sns__list__itm--youtube .b-ftr__cnt__sns__list__itm__link__ico {
    width: 37.4816983895px;
    height: 26.9399707174px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__sns__list__itm--youtube .b-ftr__cnt__sns__list__itm__link__ico {
    width: 30.5px;
    height: 22px;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__sns__list__itm--youtube .b-ftr__cnt__sns__list__itm__link__ico {
    width: 32px;
    height: 23px;
  }
}
.b-ftr .b-ftr__cnt__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr__cnt__list {
    font-size: 7.8916544656px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr__cnt__list {
    font-size: 0.8052708638vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr__cnt__list {
    font-size: 12.8843338214px;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__list {
    font-size: 11px;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__list {
    line-height: 2;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__list {
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__list {
    letter-spacing: 0.05em;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__list {
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__list {
    font-weight: 400;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__list {
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__list {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__list {
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__list {
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__list {
    font-weight: 400;
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr__cnt__list {
    margin-top: 15.065885798px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr__cnt__list {
    margin-top: 1.5373352855vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr__cnt__list {
    margin-top: 24.5973645681px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__list {
    margin-top: 70px;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__list {
    margin-top: 21px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__list__itm {
    width: 48.0597014925%;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__list__itm:nth-child(2n) {
    margin-left: 13px;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__list__itm + .b-ftr__cnt__list__itm {
    position: relative;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__list__itm + .b-ftr__cnt__list__itm {
    position: relative;
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr__cnt__list__itm + .b-ftr__cnt__list__itm {
    margin-left: 15.7833089312px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr__cnt__list__itm + .b-ftr__cnt__list__itm {
    margin-left: 1.6105417277vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr__cnt__list__itm + .b-ftr__cnt__list__itm {
    margin-left: 25.7686676428px;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__list__itm + .b-ftr__cnt__list__itm {
    margin-left: 22px;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__list__itm + .b-ftr__cnt__list__itm::before {
    content: "";
    position: absolute;
    top: 50%;
    left: remPc(-10);
    z-index: 1;
    width: 1px;
    height: remPc(13);
    opacity: 0.3;
    background-color: #fff;
    -webkit-transform: translateY(-50%) skew(-10deg);
    transform: translateY(-50%) skew(-10deg);
  }
}
@media print {
  .b-ftr .b-ftr__cnt__list__itm + .b-ftr__cnt__list__itm::before {
    content: "";
    position: absolute;
    top: 50%;
    left: remPc(-10);
    z-index: 1;
    width: 1px;
    height: remPc(13);
    opacity: 0.3;
    background-color: #fff;
    -webkit-transform: translateY(-50%) skew(-10deg);
    transform: translateY(-50%) skew(-10deg);
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr__cnt__list__itm + .b-ftr__cnt__list__itm::before {
    left: -7.1742313324px;
    height: 9.3265007321px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr__cnt__list__itm + .b-ftr__cnt__list__itm::before {
    left: -0.7320644217vw;
    height: 0.9516837482vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr__cnt__list__itm + .b-ftr__cnt__list__itm::before {
    left: -11.7130307467px;
    height: 15.2269399707px;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__list__itm + .b-ftr__cnt__list__itm::before {
    left: -10px;
    height: 13px;
  }
}
.b-ftr .b-ftr__cnt__list__itm__link {
  color: #fff !important;
}

@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__list__itm__link {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    -webkit-transition: border-bottom-color 0.45s ease;
    transition: border-bottom-color 0.45s ease;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__list__itm__link {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
    -webkit-transition: border-bottom-color 0.45s ease;
    transition: border-bottom-color 0.45s ease;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__list__itm__link:hover {
    border-bottom-color: #fff;
  }
}
.b-ftr .b-ftr__cnt__copy {
  opacity: 0.5;
}

@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr__cnt__copy {
    font-size: 7.1742313324px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr__cnt__copy {
    font-size: 0.7320644217vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr__cnt__copy {
    font-size: 11.7130307467px;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__copy {
    font-size: 10px;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__copy {
    line-height: 2.2;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__copy {
    line-height: 2.2;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__copy {
    letter-spacing: 0.03em;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__copy {
    letter-spacing: 0.03em;
  }
}
@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__cnt__copy {
    font-weight: 400;
  }
}
@media print {
  .b-ftr .b-ftr__cnt__copy {
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__copy {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__copy {
    line-height: 1.1;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__copy {
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__copy {
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__cnt__copy {
    position: absolute;
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__logo {
    margin-top: 35px;
  }
}
.b-ftr .b-ftr__logo__img--wrpr {
  display: inline-block;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .b-ftr .b-ftr__logo__img--wrpr {
    width: remPc(264);
    -webkit-transition: opacity 0.45s ease;
    transition: opacity 0.45s ease;
  }
  .b-ftr .b-ftr__logo__img--wrpr:hover {
    opacity: 0.7;
  }
}
@media print {
  .b-ftr .b-ftr__logo__img--wrpr {
    width: remPc(264);
    -webkit-transition: opacity 0.45s ease;
    transition: opacity 0.45s ease;
  }
  .b-ftr .b-ftr__logo__img--wrpr:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) and (max-width: 980px) {
  .b-ftr .b-ftr__logo__img--wrpr {
    width: 189.3997071742px;
  }
}
@media screen and (min-width: 981px) and (max-width: 1600px) {
  .b-ftr .b-ftr__logo__img--wrpr {
    width: 19.3265007321vw;
  }
}
@media screen and (min-width: 1601px) {
  .b-ftr .b-ftr__logo__img--wrpr {
    width: 309.224011713px;
  }
}
@media screen and (max-width: 767px) {
  .b-ftr .b-ftr__logo__img--wrpr {
    width: 162.5px;
  }
}
@media print {
  .b-ftr .b-ftr__logo__img--wrpr {
    width: 264px;
  }
}
.b-ftr html, .b-ftr body, .b-ftr div, .b-ftr span, .b-ftr object, .b-ftr iframe, .b-ftr h1, .b-ftr h2, .b-ftr h3, .b-ftr h4, .b-ftr h5, .b-ftr h6, .b-ftr p, .b-ftr blockquote, .b-ftr pre, .b-ftr abbr, .b-ftr address, .b-ftr cite, .b-ftr code, .b-ftr del, .b-ftr dfn, .b-ftr em, .b-ftr img, .b-ftr ins, .b-ftr kbd, .b-ftr q, .b-ftr samp, .b-ftr small, .b-ftr strong, .b-ftr sub, .b-ftr sup, .b-ftr var, .b-ftr b, .b-ftr i, .b-ftr dl, .b-ftr dt, .b-ftr dd, .b-ftr ol, .b-ftr ul, .b-ftr li, .b-ftr fieldset, .b-ftr form, .b-ftr label, .b-ftr legend, .b-ftr table, .b-ftr caption, .b-ftr tbody, .b-ftr tfoot, .b-ftr thead, .b-ftr tr, .b-ftr th, .b-ftr td, .b-ftr article, .b-ftr aside, .b-ftr canvas, .b-ftr details, .b-ftr figcaption, .b-ftr figure, .b-ftr footer, .b-ftr header, .b-ftr hgroup, .b-ftr menu, .b-ftr nav, .b-ftr section, .b-ftr summary, .b-ftr time, .b-ftr mark, .b-ftr audio, .b-ftr video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}

.b-ftr body {
  line-height: 1;
}

.b-ftr article, .b-ftr aside, .b-ftr details, .b-ftr figcaption, .b-ftr figure, .b-ftr footer, .b-ftr header, .b-ftr hgroup, .b-ftr menu, .b-ftr nav, .b-ftr section {
  display: block;
}

.b-ftr nav ul {
  list-style: none;
}

.b-ftr blockquote, .b-ftr q {
  quotes: none;
}

.b-ftr blockquote:before, .b-ftr blockquote:after, .b-ftr q:before, .b-ftr q:after {
  content: "";
  content: none;
}

.b-ftr a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

.b-ftr ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

.b-ftr mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

.b-ftr del {
  text-decoration: line-through;
}

.b-ftr abbr[title], .b-ftr dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

.b-ftr table {
  border-collapse: collapse;
  border-spacing: 0;
}

.b-ftr hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

.b-ftr input, .b-ftr select {
  vertical-align: middle;
}

.b-ftr img, .b-ftr video {
  font-size: 0;
  line-height: 0;
}

.l-frm {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .l-frm {
    width: 92.093704246%;
    max-width: 1473.4992679356px;
  }
}
@media print {
  .l-frm {
    width: 92.093704246%;
    max-width: 1473.4992679356px;
  }
}
@media screen and (max-width: 767px) {
  .l-frm {
    width: 89.3333333333%;
  }
}
html {
  scroll-padding-top: 100px;
}
@media only screen and (max-width: 767.9px) {
  html {
    scroll-padding-top: 40px;
  }
}

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

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

@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@-webkit-keyframes svg {
  0% {
    fill: transparent;
    stroke-dashoffset: 400px;
  }
  80% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    stroke: #000099;
    fill: #000099;
  }
}
@keyframes svg {
  0% {
    fill: transparent;
    stroke-dashoffset: 400px;
  }
  80% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    stroke: #000099;
    fill: #000099;
  }
}
@-webkit-keyframes anime {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.3;
  }
  to {
    -webkit-transform: scale(1.3, 1.3);
            transform: scale(1.3, 1.3);
    opacity: 0;
  }
}
@keyframes anime {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
  90% {
    opacity: 0.3;
  }
  to {
    -webkit-transform: scale(1.3, 1.3);
            transform: scale(1.3, 1.3);
    opacity: 0;
  }
}
@-webkit-keyframes anime2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  to {
    opacity: 1;
  }
}
@keyframes anime2 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.75;
  }
  to {
    opacity: 1;
  }
}
/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.section-heading {
  color: #000099;
  font-size: 100px;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-style: italic;
  padding-right: 30px;
}
@media only screen and (max-width: 767.9px) {
  .section-heading {
    font-size: 36px;
  }
}
.section-heading.-center {
  text-align: center;
  position: relative;
  border-top: 2px solid #000099;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.section-heading.-pr_none {
  padding-right: 0;
}

.fixed-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.fixed-bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.fixed-link {
  position: fixed;
  right: 30px;
  bottom: 25px;
  z-index: 190;
  width: 150px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
  opacity: 1;
}
@media only screen and (max-width: 767.9px) {
  .fixed-link {
    right: 19px;
    bottom: 18px;
    width: 90px;
  }
}
.fixed-link.-active {
  opacity: 1;
}
.fixed-link.-hidden {
  opacity: 0;
  pointer-events: none;
}
.fixed-link::before, .fixed-link::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 150px;
  height: 150px;
  top: 0px;
  left: 0;
  border-radius: 200px;
  background: #ffdb46;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
@media only screen and (max-width: 767.9px) {
  .fixed-link::before, .fixed-link::after {
    content: "";
    width: 90px;
    height: 90px;
  }
}
.fixed-link::before {
  -webkit-animation: anime 3s ease-out infinite;
          animation: anime 3s ease-out infinite;
}
.fixed-link::after {
  -webkit-animation: anime 3s ease-out 1s infinite;
          animation: anime 3s ease-out 1s infinite;
}
@media (hover: hover) {
  .fixed-link:hover {
    opacity: 0.6;
  }
}

.st0 {
  stroke: #000099;
  stroke-width: 2;
  stroke-miterlimit: 10;
}

.mv__heading {
  position: relative;
  z-index: 1;
}
.mv__heading svg {
  width: 100%;
}
.mv__heading path,
.mv__heading line,
.mv__heading rect,
.mv__heading polygon {
  stroke: transparent;
  stroke-width: 0.3px;
  stroke-dasharray: 300px;
  fill: transparent;
  stroke-dashoffset: 300px;
}
.mv__heading.-active path,
.mv__heading.-active line,
.mv__heading.-active rect,
.mv__heading.-active polygon {
  -webkit-animation: svg 2.1s ease-in 0.6s both;
          animation: svg 2.1s ease-in 0.6s both;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.mv {
  position: relative;
  background: #edf2f5;
}
@media print, screen and (max-width: 1023.9px) {
  .mv {
    height: 55vh;
  }
}

.mv__text-area {
  padding-top: 6%;
  padding-left: 8%;
  z-index: 1;
  width: 100%;
}
@media only screen and (max-width: 767.9px) {
  .mv__text-area {
    width: calc(100% - 40px);
    top: 8%;
  }
}

.mv__text-area-inner {
  max-width: 70vw;
}
@media only screen and (max-width: 767.9px) {
  .mv__text-area-inner {
    max-width: 100%;
  }
}

.mv__heading {
  margin-left: 0%;
  width: 100%;
}

.mv__wing {
  -webkit-transition: width 1.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
  transition: width 1.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0;
}
.mv__wing.-active {
  width: 100%;
}
.mv__wing img {
  width: 100vw;
  max-width: none;
}
@media only screen and (max-width: 767.9px) {
  .mv__wing {
    top: 30%;
    -webkit-transition: width 1.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
    transition: width 1.3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
  }
}

.mv__text2 {
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  position: relative;
  z-index: 1;
  margin-top: 1%;
  margin-left: -10px;
  width: 74.5%;
}
.mv__text2.-active {
  opacity: 1;
}
@media only screen and (max-width: 767.9px) {
  .mv__text2 {
    width: 100%;
  }
}

.mv__text {
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  position: relative;
  z-index: 1;
  margin-top: 3%;
  width: 71%;
}
.mv__text.-active {
  opacity: 1;
}
@media only screen and (max-width: 767.9px) {
  .mv__text {
    width: 100%;
  }
}

.mv__osaka {
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  position: relative;
  z-index: 1;
  margin-top: 4.5%;
  width: 46.5%;
}
.mv__osaka.-active {
  opacity: 1;
}
.mv__osaka:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767.9px) {
  .mv__osaka {
    width: 100%;
  }
}

.mv__text3 {
  opacity: 0;
  -webkit-transition: 1.2s;
  transition: 1.2s;
  position: relative;
  z-index: 1;
  margin-top: 2.6%;
  width: 60.5%;
}
.mv__text3.-active {
  opacity: 1;
}
@media only screen and (max-width: 767.9px) {
  .mv__text3 {
    width: 100%;
  }
}

.greeting {
  margin-top: 12.5%;
}
@media only screen and (max-width: 767.9px) {
  .greeting {
    margin-top: 0px;
  }
}

.greeting__inner {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767.9px) {
  .greeting__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.greeting__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 6px;
}
@media only screen and (max-width: 767.9px) {
  .greeting__row {
    margin-bottom: 0px;
  }
}
.greeting__row::before {
  content: "";
  border-top: 2px solid #000099;
  position: absolute;
  top: 50px;
  z-index: -1;
  left: calc(50% - 50vw);
  display: block;
  height: 1px;
  width: 100vw;
}

.greeting__text-area {
  padding-top: 50px;
}
@media print, screen and (min-width: 768px) {
  .greeting__text-area {
    width: 70%;
  }
}
@media print, screen and (min-width: 768px) {
  .greeting__text-area .section-heading {
    margin-left: -10px;
  }
}

.greeting__description strong {
  font-size: 110%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, yellow));
  background: linear-gradient(transparent 70%, yellow 70%);
}
@media only screen and (max-width: 767.9px) {
  .greeting__description {
    font-size: 13px;
  }
}

.greeting__prof-area {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767.9px) {
  .greeting__prof-area {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) {
  .greeting__prof-area {
    width: 30%;
  }
}
@media print, screen and (min-width: 768px) {
  .greeting__prof-area.-sp {
    display: none;
  }
}
@media only screen and (max-width: 767.9px) {
  .greeting__prof-area.-pc {
    display: none;
  }
}

@media only screen and (max-width: 767.9px) {
  .greeting__prof {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

.greeting__name {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
}
@media only screen and (max-width: 767.9px) {
  .greeting__name {
    font-size: 16px;
  }
}

.greeting__position {
  text-align: center;
}
@media only screen and (max-width: 767.9px) {
  .greeting__position {
    font-size: 12px;
  }
}

.keynote {
  margin-top: 100px;
  padding: 200px 0;
  position: relative;
  background-image: -webkit-linear-gradient(-180deg, rgb(233, 239, 243) 0%, rgb(250, 252, 254) 50%, rgb(233, 239, 243) 99%);
  background-size: cover;
  background-clip: padding-box;
  /* 上下を平行に斜めで切り抜くためのclip-path */
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0 100%);
}
@media only screen and (max-width: 767.9px) {
  .keynote {
    padding: 100px 0;
    clip-path: polygon(0 10%, 100% 5%, 100% 90%, 0 95%);
    margin-top: 0;
  }
}

.keynote__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}
.keynote__inner.-n2 {
  margin: 40px auto 0;
  width: 950px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767.9px) {
  .keynote__inner.-n2 {
    width: 100%;
  }
}
@media only screen and (max-width: 767.9px) {
  .keynote__inner {
    padding-right: 20px;
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.keynote__heading {
  position: relative;
  padding-top: 30px;
  margin-left: -8px;
}
.keynote__heading::before {
  content: "";
  border-top: 2px solid #000099;
  position: absolute;
  top: 50px;
  left: 0;
  display: block;
  height: 1px;
  width: 100vw;
}
@media only screen and (max-width: 767.9px) {
  .keynote__heading::before {
    width: 100%;
    top: 30px;
  }
}

.keynote__title {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.4;
}
.keynote__title.-long {
  width: 20rem;
  display: block;
}
@media only screen and (max-width: 767.9px) {
  .keynote__title {
    font-size: 23px;
  }
}

.keynote__name {
  font-size: 23px;
  font-weight: bold;
  margin-top: 30px;
}
@media only screen and (max-width: 767.9px) {
  .keynote__name {
    font-size: 20px;
    margin-top: 20px;
  }
}
.keynote__name span {
  font-size: 14px;
}

.keynote__position {
  font-size: 16px;
  line-height: 1.4;
}
@media only screen and (max-width: 767.9px) {
  .keynote__position {
    font-size: 13px;
  }
}
.keynote__position strong {
  font-size: 20px;
}
@media only screen and (max-width: 767.9px) {
  .keynote__position strong {
    font-size: 17px;
  }
}

@media print, screen and (min-width: 768px) {
  .keynote__person {
    width: 33%;
    margin-left: auto;
    margin-right: 60px;
  }
}
.keynote__person.-n2 {
  margin: 0 auto;
  margin-right: auto;
  margin-left: 0;
  width: 440px;
}
@media only screen and (max-width: 767.9px) {
  .keynote__person.-n2 {
    width: 100%;
    margin-bottom: 40px;
  }
}

.speakers {
  margin-top: 100px;
}
@media only screen and (max-width: 767.9px) {
  .speakers {
    margin-top: 10px;
  }
}

.speakers__heading {
  text-align: center;
  position: relative;
  border-top: 2px solid #000099;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767.9px) {
  .speakers__heading {
    margin-top: 50px;
  }
}

.speakers__row {
  display: -ms-grid;
  display: grid;
  gap: 25px;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(4, 1fr);
  padding-right: 10px;
  padding-left: 10px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767.9px) {
  .speakers__row {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.speakers__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  grid-area: span 3;
  gap: 0;
  -webkit-transition: all 0.12s;
  transition: all 0.12s;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767.9px) {
  .speakers__item {
    margin-bottom: 15px;
  }
}
.speakers__item:hover {
  opacity: 0.6;
}
.speakers__item.-none {
  pointer-events: none;
}

.speakers__name {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  line-height: 1.6;
}
@media only screen and (max-width: 767.9px) {
  .speakers__name {
    font-size: 14px;
  }
}
.speakers__name span {
  font-size: 12px;
}

.speakers__position {
  margin-top: 2px;
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
}
.speakers__position strong {
  font-size: 18px;
}
@media only screen and (max-width: 767.9px) {
  .speakers__position strong {
    font-size: 13.5px;
  }
}
@media only screen and (max-width: 767.9px) {
  .speakers__position {
    font-size: 11px;
    line-height: 1.4;
  }
}

.speakers__img {
  max-width: 100%;
  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;
  margin-right: auto;
  margin-left: auto;
}

.andMore {
  text-align: center;
  margin: 30px auto 0;
  font-size: 22px;
  font-weight: bold;
}

.time-table {
  margin-top: 100px;
  padding-bottom: 220px;
  background-color: #eff4f8;
  position: relative;
  /* 上下を平行に斜めで切り抜くためのclip-path */
  clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
}
@media only screen and (max-width: 767.9px) {
  .time-table {
    clip-path: polygon(0 6%, 100% 5%, 100% 94%, 0 95%);
    padding-top: 130px;
    padding-bottom: 180px;
    margin-top: 0;
    margin-bottom: -120px;
  }
}

.time-table__inner {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
}
.time-table__inner.-size-l {
  max-width: 1300px;
}
@media only screen and (max-width: 767.9px) {
  .time-table__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.time-table__heading {
  text-align: right;
  padding-top: 50px;
  position: relative;
}
@media only screen and (max-width: 767.9px) {
  .time-table__heading {
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .time-table__heading {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}
.time-table__heading::before {
  content: "";
  border-top: 2px solid #000099;
  position: absolute;
  top: 50px;
  left: 0;
  display: block;
  height: 1px;
  width: 100vw;
}
@media only screen and (max-width: 767.9px) {
  .time-table__heading::before {
    width: 100%;
  }
}
@media only screen and (max-width: 767.9px) {
  .time-table__heading .section-heading {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 767.9px) {
  .time-table__row-wrap {
    overflow-x: scroll;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    position: relative;
    overflow-y: hidden;
  }
}

.time-table__sp-wrap {
  position: relative;
}
@media only screen and (max-width: 767.9px) {
  .time-table__sp-wrap {
    overflow-y: hidden;
    overflow-x: scroll;
    padding-bottom: 100px;
  }
}

.-sc {
  position: absolute;
  top: 100px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 34vw;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.6);
  height: 90px;
  width: 90px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  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;
  -webkit-animation-name: anime2;
          animation-name: anime2;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media print, screen and (min-width: 768px) {
  .-sc {
    display: none;
  }
}

.time-table__row {
  display: -ms-grid;
  display: grid;
  margin-top: 80px;
  gap: 10px;
}
@media only screen and (max-width: 767.9px) {
  .time-table__row {
    width: 1290px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin-top: 0;
  }
  .time-table__row.-t1 {
    margin-top: 20px;
  }
}
.time-table__row.-col_1 {
  -ms-grid-columns: 1 1fr;
  grid-template-columns: 1 1fr;
}
.time-table__row.-col_2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.time-table__row.-col_3 {
  -ms-grid-columns: (32.3%)[3];
  grid-template-columns: repeat(3, 32.3%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.time-table__row.-col_4 {
  -ms-grid-columns: (24.45%)[4];
  grid-template-columns: repeat(4, 24.45%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.time-table__row.-mt_large {
  margin-top: 120px;
}
@media print, screen and (min-width: 768px) {
  .time-table__row.-mt_large {
    margin-top: 180px;
  }
}
.time-table__row.-mt-less {
  margin-top: 0px;
}
@media only screen and (max-width: 767.9px) {
  .time-table__row.-mt-less {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 767.9px) {
  .time-table__row.-mt-lessSp {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767.9px) {
  .time-table__row.-mt-lessSp2 {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767.9px) {
  .time-table__row.-mt-clo {
    margin-top: 40px;
  }
}

.tt-title {
  text-align: center;
  position: relative;
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #000099;
  font-weight: bold;
}
@media only screen and (max-width: 767.9px) {
  .tt-title {
    margin-bottom: 20px;
    text-align: left;
    -webkit-text-size-adjust: 100%;
    padding-left: 30px;
  }
}
.tt-title::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #000099;
  background-color: #fff;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
}
@media only screen and (max-width: 767.9px) {
  .tt-title::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 9px;
    border: 1px solid #000099;
    background-color: #fff;
    -webkit-transform: skewX(-15deg);
            transform: skewX(-15deg);
  }
}
.tt-title span {
  position: relative;
}
.tt-title small {
  font-size: 70%;
}

.tt-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  grid-area: span 3;
  gap: 0;
}

.tt-child-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.-soon {
  pointer-events: none;
}

.tt-time {
  text-align: center;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 36px;
  margin-top: 20px;
}
@media only screen and (max-width: 767.9px) {
  .tt-time {
    text-align: left;
    margin-top: 0;
    -webkit-text-size-adjust: 100%;
    font-size: 26px;
  }
  .tt-time.-spcont {
    padding-left: 20px;
    margin-top: -30px;
  }
}
.tt-time span {
  font-size: 26px;
}
@media only screen and (max-width: 767.9px) {
  .tt-time span {
    font-size: 20px;
    -webkit-text-size-adjust: 100%;
  }
}
.tt-time.-mt-less {
  margin-top: 0;
}
.tt-time.-mt-less.-sp {
  margin-top: -30px;
}
@media only screen and (max-width: 767.9px) {
  .tt-time.-mt-clo {
    margin-top: 70px;
  }
}
.tt-time.-mt {
  margin-top: 80px;
}

a.tt-card {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  a.tt-card:hover {
    opacity: 0.6;
  }
}
a.tt-card.-soon {
  pointer-events: none;
}
a.tt-card.-cen {
  text-align: center;
}
@media only screen and (max-width: 767.9px) {
  a.tt-card.-cen {
    text-align: left;
  }
}
a.tt-card.-close {
  opacity: 0;
  pointer-events: none;
}

.tt-card__cat {
  background-color: #008caa;
  color: #fff;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__cat {
    font-size: 18px;
    -webkit-text-size-adjust: 100%;
    text-align: left;
    padding-left: 16px;
  }
}
@media only screen and (max-width: 767.9px) {
  .tt-card__cat.-splef {
    text-align: left;
    padding-left: 15px;
  }
}
.tt-card__cat.-puc {
  background: #f08300;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__cat.-puc {
    text-align: left;
    padding-left: 15px;
  }
}

.tt-card__body {
  padding: 26px 18px;
  height: 100%;
  background-color: #fff;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__body {
    padding: 15px;
  }
}
.tt-card__body:not(.-satellite) {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  grid-area: span 3;
  gap: 0;
}
.tt-card__body.-satellite {
  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;
}
.tt-card__body.-h0 {
  height: auto;
}

.tt-card__title {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6;
  text-align: center;
}
.tt-card__title.-puc {
  font-size: 17px;
  font-weight: normal;
  line-height: 2;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__title.-puc {
    font-size: 14px;
    -webkit-text-size-adjust: 100%;
  }
}
.tt-card__title.-puc span {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__title.-puc span {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767.9px) {
  .tt-card__title {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-align: left;
  }
}

.inline {
  pointer-events: none;
}

.tt-card__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__flex {
    gap: 4px;
  }
}
.tt-card__flex.-n2 {
  gap: 10px;
}
.tt-card__flex.-n2 .tt-card__prof {
  width: 135px;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__flex.-n2 .tt-card__prof {
    width: 135px;
  }
}
.tt-card__flex.-n2-l {
  gap: 10px;
}
.tt-card__flex.-n2-l .tt-card__prof {
  width: 185px;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__flex.-n2-l .tt-card__prof {
    width: 180px;
  }
}
.tt-card__flex.-n2-w {
  gap: 10px;
}
.tt-card__flex.-n2-w .tt-card__prof {
  width: 315px;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__flex.-n2-w .tt-card__prof {
    width: 200px;
  }
}
.tt-card__flex.-n4 .tt-card__prof {
  width: 180px;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__flex.-n4 .tt-card__prof {
    width: 180px;
  }
}
.tt-card__flex .tt-card__prof {
  width: 320px;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__flex .tt-card__prof {
    width: 180px;
  }
}
@media only screen and (max-width: 767.9px) {
  .tt-card__flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.tt-card__prof {
  display: block;
  text-align: center;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__prof {
    text-align: left;
  }
}

.tt-card__img {
  max-width: 120px;
  margin: 0 auto 10px;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__img {
    margin: 0 0 10px;
  }
}

.tt-card__name {
  font-weight: bold;
  font-size: 15px;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__name {
    -webkit-text-size-adjust: 100%;
  }
}
.tt-card__name.-cen {
  text-align: center;
}
.tt-card__name span {
  font-size: 12px;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__name span {
    -webkit-text-size-adjust: 100%;
  }
}

.tt-card__position {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.5;
}
.tt-card__position strong {
  font-size: 17px;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__position {
    font-size: 12px !important;
    -webkit-text-size-adjust: 100%;
  }
}

.tt-card__more {
  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;
  gap: 15px;
  text-align: center;
  color: #000099;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
}
@media only screen and (max-width: 767.9px) {
  .tt-card__more {
    margin-top: 20px;
    -webkit-text-size-adjust: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.tt-card__more::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #000099;
  border-right: 0;
}

.tt-card__satellite {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

.ttCap {
  font-size: 14px;
  color: #aa0000;
  margin-top: 55px;
}
@media only screen and (max-width: 767.9px) {
  .ttCap {
    font-size: 12px;
    padding-left: 20px;
  }
}

.outline {
  margin-top: 100px;
}
@media only screen and (max-width: 767.9px) {
  .outline {
    margin-top: 60px;
  }
}

.outline__table {
  margin-top: 0px;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 250px) 40px 1fr;
  grid-template-columns: minmax(0, 250px) 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media only screen and (max-width: 767.9px) {
  .outline__table {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
    margin-top: -50px;
  }
}
@media only screen and (max-width: 767.9px) {
  .outline__table dt {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  .outline__table dt {
    text-align: right;
  }
}
.outline__table dt,
.outline__table dd {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
@media only screen and (max-width: 767.9px) {
  .outline__table dt,
  .outline__table dd {
    font-size: 13.5px;
  }
}
@media print, screen and (min-width: 768px) {
  .outline__table dt:last-of-type,
  .outline__table dd:last-of-type {
    border: none;
  }
}
@media only screen and (max-width: 767.9px) {
  .outline__table dd:last-of-type {
    border: none;
  }
}

.outline__map {
  margin-top: 100px;
}
@media only screen and (max-width: 767.9px) {
  .outline__map {
    margin-top: 50px;
  }
}
.outline__map iframe {
  aspect-ratio: 1400/560;
  width: 100%;
  /*  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%); */
}
@media only screen and (max-width: 767.9px) {
  .outline__map iframe {
    aspect-ratio: 2/1;
  }
}

.sponsors {
  padding-top: 100px;
  padding-bottom: 200px;
  background: #fff;
}
@media only screen and (max-width: 767.9px) {
  .sponsors {
    padding-bottom: 100px;
  }
}
.sponsors h4 {
  text-align: center;
  color: #242b8e;
  font-size: 23px;
  margin: 150px auto 0px;
  font-weight: bold;
}
@media only screen and (max-width: 767.9px) {
  .sponsors h4 {
    margin-top: 100px;
  }
}
.sponsors h4.-nomt {
  margin-top: 0;
}
.sponsors .section-heading {
  margin-bottom: 0;
}
.sponsors .cap {
  text-align: right;
  font-size: 12px;
  padding-right: 5%;
  margin-top: 50px;
}

.sponsors__row {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  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;
  gap: 100px;
}
@media only screen and (max-width: 767.9px) {
  .sponsors__row {
    padding-right: 20px;
    padding-left: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}
.sponsors__row + .sponsors__row {
  margin-top: 50px;
}
.sponsors__row.-pla {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  gap: 150px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767.9px) {
  .sponsors__row.-pla {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
  }
}
.sponsors__row.-gold {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sponsors__row.-gold .sponsors__item {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
@media only screen and (max-width: 767.9px) {
  .sponsors__row.-gold {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .sponsors__row.-gold a {
    width: 60%;
  }
}
.sponsors__row.-sil {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sponsors__row.-sil .sponsors__item {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.sponsors__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 355px;
}

.-google {
  max-width: 630px;
}
@media only screen and (max-width: 767.9px) {
  .-google {
    max-width: 100%;
  }
}

.-aws {
  max-width: 280px;
}
@media only screen and (max-width: 767.9px) {
  .-aws {
    max-width: 50%;
  }
}

.-log {
  max-width: 590px;
}
@media only screen and (max-width: 767.9px) {
  .-log {
    max-width: 90%;
  }
}

.-abeam {
  max-width: 270px;
}

.-jmac {
  max-width: 240px;
}

.-domo {
  max-width: 170px;
}

.-box {
  max-width: 160px;
}

.-ms {
  margin-top: 22px;
}
.modal {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal .prof-img {
  max-width: 100%;
}

.modal figure {
  width: 20%;
}

.modal .prof-box {
  width: 77%;
}

.modal .prof-box .position {
  font-size: 18px;
  font-weight: bold;
}

.modal .prof-box-long .position {
  font-size: 18px;
  font-weight: bold;
}

.modal .prof-box .name {
  font-size: 30px;
  font-weight: bold;
  margin: 10px 0;
}

.modal .prof-box-long .name {
  font-size: 30px;
  font-weight: bold;
  margin: 10px 0;
}

.modal .name span {
  font-size: 20px;
}

.modal .prof-box .career {
  font-size: 14px;
  line-height: 2;
}

.modal .prof-box-long .career {
  font-size: 14px;
  line-height: 2;
}

.modal .btn_close {
  position: absolute;
  top: 20px;
  right: 20px;
  max-height: 36px;
  cursor: pointer;
}

.modal .btn_close:hover {
  opacity: 0.5;
}

@media (max-width: 960px) {
  .modal {
    padding: 15px;
    display: block;
  }
  .modal figure {
    width: 60%;
    margin: 10px auto 10px;
  }
  .modal .prof-box .position {
    font-size: 13px;
    font-weight: bold;
  }
  .modal .prof-img {
    margin: 0px;
  }
  .modal .prof-box {
    margin-left: 0;
    margin-top: 0px;
    margin-right: 0;
    width: 100%;
  }
  .modal #kunii figure {
    width: 100%;
  }
  .modal .prof-box .name {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
  }
  .modal .name span {
    font-size: 15px;
  }
  .modal .prof-box .career {
    font-size: 13px;
    line-height: 1.6;
  }
}
.tt-box__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.tt-box__flex.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tt-box__flex.start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.tt-box__top-area {
  margin-bottom: 20px;
}

.tt-box__cat {
  margin-right: 10px;
  padding-top: 4px;
  padding-right: 30px;
  padding-bottom: 4px;
  padding-left: 30px;
  text-align: center;
  background-color: #008caa;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.06em;
}

.tt-box__date {
  font-size: 16px;
  letter-spacing: 0.06em;
}

.tt-box__ttl {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.06em;
}

.tt-box__body {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.tt-box__prof {
  margin-right: 40px;
  width: 23%;
}
.tt-box__prof.-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  gap: 20px;
}
@media screen and (max-width: 800px) {
  .tt-box__prof.-flex {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.tt-box .tt-box__fig {
  margin: 0 auto 10px;
  width: 130px;
}

.tt-box__position {
  margin-bottom: 8px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .tt-box__position {
    font-size: 11px;
  }
}
.tt-box__position.-mb {
  margin-bottom: 25px;
}

.tt-box__name {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.tt-box__name span {
  margin-left: 6px;
  font-size: 14px;
}

.tt-box__desc {
  width: 68%;
  font-size: 16px;
  line-height: 2.2;
}
.tt-box__desc.-w100 {
  width: 100%;
}
.tt-box__desc.-key {
  width: 50%;
}
@media screen and (max-width: 800px) {
  .tt-box__desc.-key {
    width: 100%;
  }
}
.tt-box__desc.-key2 {
  width: 69%;
}
@media screen and (max-width: 800px) {
  .tt-box__desc.-key2 {
    width: 100%;
  }
}
.tt-box__desc.-ses {
  width: 82%;
}
@media screen and (max-width: 800px) {
  .tt-box__desc.-ses {
    width: 100%;
  }
}
.tt-box__desc.-ses2 {
  width: 67%;
}
@media screen and (max-width: 800px) {
  .tt-box__desc.-ses2 {
    width: 100%;
  }
}
.tt-box__desc.-ses3 {
  width: 60%;
}
@media screen and (max-width: 800px) {
  .tt-box__desc.-ses3 {
    width: 100%;
  }
}

.tt-box__desc.w100 {
  width: 100%;
}

.tt-box.tt-box--multi .tt-box__prof-wrap {
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 40px;
}

.tt-box.tt-box--multi .tt-box__prof {
  width: 100%;
}

.tt-box.tt-box--multi .tt-box__desc {
  width: 100%;
}

.modal.modal--tt {
  padding: 50px 40px 40px 50px;
  overflow-y: hidden;
}

@media screen and (max-width: 800px) {
  .modal.modal--tt {
    padding: 70px 12px 12px;
  }
  #time-table .event {
    height: auto;
    padding: 20px 10px;
  }
  #time-table .event .event-content .e-speaker {
    display: block;
    margin-bottom: 12px;
  }
  #time-table .event .event-content .e-speaker-name {
    margin-right: 0;
    margin-bottom: 0;
  }
  .tt-box__flex {
    display: block;
  }
  .tt-box__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tt-box__top-area {
    margin-bottom: 10px;
  }
  .tt-box__date {
    margin-top: 10px;
    margin-bottom: 0px;
  }
  .tt-box__cat {
    margin-right: 0;
    padding: 4px 16px;
    font-size: 16px;
  }
  .tt-box__prof {
    margin-right: 0px;
    margin-bottom: 10px;
    width: 100%;
  }
  .tt-box__desc {
    width: 100%;
    line-height: 1.6;
    font-size: 13.5px;
  }
  .tt-box__ttl {
    font-size: 17px;
  }
  .tt-box.tt-box--multi .tt-box__prof-wrap {
    margin-bottom: 16px;
  }
  .tt-box.tt-box--multi .tt-box__desc {
    line-height: 1.6;
    font-size: 13px;
  }
}