@charset "UTF-8";
/* 下線がうにょんってなって、うにょんってなるアニメーション */
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&display=swap");
@-webkit-keyframes linkborder {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background-color: #333641;
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #333641;
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  50.1% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #0439bf;
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background-color: #0439bf;
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}
@keyframes linkborder {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background-color: #333641;
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #333641;
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  50.1% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background-color: #0439bf;
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background-color: #0439bf;
    -webkit-transform-origin: left;
    transform-origin: left;
  }
}
/* 回転のアニメーション */
@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  99.9%,
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  99.9%,
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* 矢印が行って帰るアニメーション */
@-webkit-keyframes c-link {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  50.1% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}
@keyframes c-link {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  50% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  50.1% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}
/* 矢印が行って帰るアニメーション */
@-webkit-keyframes c-link2 {
  0% {
    background-size: 100% 1px;
    background-position: right 0 bottom 0;
  }
  49% {
    background-size: 0% 1px;
    background-position: right 0 bottom 0;
  }
  50% {
    background-size: 0% 1px;
    background-position: left 0 bottom 0;
  }
  100% {
    background-size: 100% 1px;
    background-position: left 0 bottom 0;
  }
}
@keyframes c-link2 {
  0% {
    background-size: 100% 1px;
    background-position: right 0 bottom 0;
  }
  49% {
    background-size: 0% 1px;
    background-position: right 0 bottom 0;
  }
  50% {
    background-size: 0% 1px;
    background-position: left 0 bottom 0;
  }
  100% {
    background-size: 100% 1px;
    background-position: left 0 bottom 0;
  }
}
/* 矢印が行って帰るアニメーション */
@-webkit-keyframes c-arrow {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes c-arrow {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
  }
  50.1% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
*[data-san="fade"] {
  opacity: 0;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
*[data-san="fade"].is-active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

*[data-san="ttl"] span {
  opacity: 0;
  -webkit-transform: translateY(2em);
  transform: translateY(2em);
  -webkit-transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
*[data-san="ttl"].is-active span {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

*[data-san="subline"] {
  opacity: 0;
  -webkit-transform: translateY(2em);
  transform: translateY(2em);
  -webkit-transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
*[data-san="subline"]::before {
  -webkit-transform: translateY(-2em) scaleX(0);
  transform: translateY(-2em) scaleX(0);
  -webkit-transform-origin: left;
  transform-origin: left;
  -webkit-transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.6s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
*[data-san="subline"].is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
*[data-san="subline"].is-active::before {
  -webkit-transform: translateY(0) scaleX(1);
  transform: translateY(0) scaleX(1);
}

/* テキストスライドのアニメーション */
@-webkit-keyframes scrolltext {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -3939px;
  }
}
@keyframes scrolltext {
  0% {
    background-position: 0;
  }
  100% {
    background-position: -3939px;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.mv__swiper .swiper-slide-active img,
.mv__swiper .swiper-slide-duplicate-active img,
.mv__swiper .swiper-slide-prev img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
  animation: zoomUp 10s linear 0s 1 normal both;
  display: block;
}
.mv__swiper .slide-img img {
  display: block;
}

/* ==============================
		  common.scss
================================= */
/*---------------------------------------------------------
	全ページ共通スタイル
---------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
  height: -webkit-fill-availabel;
}

@media screen and (max-width: 1120px) {
  .is-drawerActive {
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

/* 要素設定*/
body {
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-stretch: 50%;
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  line-height: 2;
  color: #333641;
  text-align: justify;
  font-weight: 400;
  background-color: #fff;
  color: #333641;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  min-height: -webkit-fill-availabel;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

@supports (-webkit-touch-callout: none) {
  body {
    min-height: 100vh;
    min-height: -webkit-fill-availabel;
  }
}
button,
a {
  color: #333641;
}

/* responsive */
.sp-inline,
.sp-block {
  display: none;
}

@media screen and (max-width: 992px) {
  .sp-none {
    display: none;
  }

  .sp-inline {
    display: inline;
  }

  .sp-block {
    display: block;
  }
}
.en {
  font-family: "Jura", sans-serif;
}

/*---------------------------------------------------------
	ヘッダー
---------------------------------------------------------*/
.header {
  width: 100%;
  overflow: hidden;
}
.header .header__logo a {
  color: #fff;
}
.header.scroll .header__logo a {
  color: #0439bf;
}
.fixed .header.scroll .header__logo a {
  color: #fff;
}
.header.scroll .header__nav .header__nav__list .header__nav__item a {
  color: #333641;
}
@media screen and (max-width: 1120px) {
  .header.scroll .header__nav .header__nav__list .header__nav__item a {
    color: #fff;
  }
}
.header.scroll .header__nav .header__nav__list .header__nav__item a::before {
  background-color: #333641;
}
.header.scroll .header__mail .header__mail__figure svg.circle {
  fill: #e536a5;
}
.header .header__logo {
  position: fixed;
  top: 53px;
  left: 50px;
  z-index: 5;
  color: #fff;
  font-family: "Syncopate", sans-serif;
  font-size: 23px;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header .header__logo {
    top: 24px;
    left: 20px;
    font-size: 20px;
  }
}
.header .header__mail {
  position: fixed;
  top: 22px;
  right: 34px;
  z-index: 3;
  display: block;
}
@media screen and (max-width: 1120px) {
  .header .header__mail {
    top: 0;
    right: 50px;
  }
}
.header .header__mail .header__mail__figure {
  position: relative;
  display: block;
  width: 138px;
  height: 138px;
}
@media screen and (max-width: 1120px) {
  .header .header__mail .header__mail__figure {
    display: none;
  }
}
.header .header__mail .header__mail__figure svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  fill: #fff;
}
.header .header__mail .header__mail__figure svg.base {
  fill: #e536a5;
}
.header .header__mail .header__mail__figure svg.circle {
  opacity: 0.4;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-name: circle;
  animation-name: circle;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@media (hover: hover) and (pointer: fine) {
  .header .header__mail:hover .header__mail__figure svg.base {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.header .header__mail .header__mail__sp {
  display: none;
  background-color: #e536a5;
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.261;
  height: 53px;
}
@media screen and (max-width: 1120px) {
  .header .header__mail .header__mail__sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.header .header__mail .header__mail__sp figure {
  width: 20px;
  height: 10px;
  margin-right: 6px;
}

/*---------------------------------------------------------
	ハンバーガー
---------------------------------------------------------*/
.hamburger {
  display: none;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: fixed;
  top: 60px;
  right: 50px;
  z-index: 5;
  width: 68px;
  height: 68px;
  margin: auto;
  -webkit-box-shadow: 0 0 2rem transparent;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1120px) {
  .hamburger {
    display: inline-block;
    width: 50px;
    height: 53px;
    top: 0;
    right: 0;
    background-color: #0439bf;
  }
}
.hamburger .hamburger__line {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 68px;
  height: 3px;
  background-color: #fff;
  -webkit-transition: inherit;
  transition: inherit;
  z-index: 4;
}
@media screen and (max-width: 1120px) {
  .hamburger .hamburger__line {
    width: 22px;
    height: 2px;
  }
}
.hamburger .hamburger__line::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
  top: -22px;
}
@media screen and (max-width: 1120px) {
  .hamburger .hamburger__line::before {
    top: -10px;
  }
}
.hamburger[aria-expanded="true"] {
  mix-blend-mode: inherit;
}
.hamburger[aria-expanded="true"] .hamburger__line {
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger[aria-expanded="true"] .hamburger__line::before {
  top: 0;
  background-color: #fff;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.hamburger .hamburger__visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

/*---------------------------------------------------------
	メニュー
---------------------------------------------------------*/
.header__nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 860px;
  margin: 0;
  padding: 44px 195px 0 0;
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transition-delay: 0;
  transition-delay: 0;
}
@media screen and (max-width: 1120px) {
  .header__nav {
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }
}
.header__nav .header__nav__list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 1120px) {
  .header__nav .header__nav__list {
    position: fixed;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 90px 16px;
    background-color: #0439bf;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
    transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
    overflow-y: scroll;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.header__nav .header__nav__list .header__nav__item {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1120px) {
  .header__nav .header__nav__list .header__nav__item {
    width: 100%;
  }
}
@media screen and (max-width: 1120px) {
  .header__nav .header__nav__list .header__nav__item:first-child a {
    border-top: 1px solid #dcdee6;
  }
}
.header__nav .header__nav__list .header__nav__item a {
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  color: #fff;
  display: inline-block;
  margin: 0;
  position: relative;
}
.header__nav .header__nav__list .header__nav__item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99), -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav .header__nav__list .header__nav__item a:hover::before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
}
@media screen and (max-width: 1120px) {
  .header__nav .header__nav__list .header__nav__item a {
    padding: 24px 14px 20px;
    border-bottom: 1px solid #dcdee6;
    width: 100%;
  }
}
.header__nav .header__nav__list .header__nav__item a:hover {
  color: #f0f2f5;
}
.header__nav .header__nav__list .header__nav__item .subline {
  display: none;
  font-family: "Syncopate", sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 1120px) {
  .header__nav .header__nav__list .header__nav__item .subline {
    display: block;
  }
}
.header__nav .header__nav__list .header__nav__item .headline {
  font-size: 16px;
}
@media screen and (max-width: 1120px) {
  .header__nav .header__nav__list .header__nav__item .headline {
    font-size: 11px;
  }
}
.header__nav .header__nav__list .header__nav__join {
  margin: 50px auto 80px;
  padding: 0;
  background-color: #e536a5;
  display: none;
  width: calc(100% - 20px);
}
@media screen and (max-width: 1120px) {
  .header__nav .header__nav__list .header__nav__join {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(60% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .header__nav .header__nav__list .header__nav__join {
    width: calc(100% - 20px);
  }
}
.header__nav .header__nav__list .header__nav__join a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: #fff;
  padding: 14px 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__nav .header__nav__list .header__nav__join a {
    padding: 44px 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__nav .header__nav__list .header__nav__join .header__nav__join__text {
    width: calc(100% - 138px);
  }
}
.header__nav .header__nav__list .header__nav__join .header__nav__join__text .subline {
  font-family: "Syncopate", sans-serif;
  line-height: 1;
  font-size: 22px;
  letter-spacing: -0.05em;
}
.header__nav .header__nav__list .header__nav__join .header__nav__join__text .headline {
  font-size: 11px;
}
.header__nav .header__nav__list .header__nav__join .header__nav__join__img {
  position: relative;
  display: block;
  width: 138px;
  height: 138px;
}
.header__nav .header__nav__list .header__nav__join .header__nav__join__img svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  fill: #fff;
}
.header__nav .header__nav__list .header__nav__join .header__nav__join__img svg.base {
  fill: #e536a5;
}
.header__nav .header__nav__list .header__nav__join .header__nav__join__img svg.circle {
  opacity: 0.4;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-name: circle;
  animation-name: circle;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.header__nav[aria-hidden="false"] {
  opacity: 1;
}
@media screen and (max-width: 1120px) {
  .header__nav[aria-hidden="false"] {
    pointer-events: auto;
  }
}
.header__nav[aria-hidden="true"] {
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 1120px) {
  .header__nav[aria-hidden="true"] {
    opacity: 0;
    pointer-events: none;
  }
}
/*---------------------------------------------------------
	フッター
---------------------------------------------------------*/
.footer {
  padding: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0 0;
  }
}
.footer .footer__top {
  padding: 105px 0 80px;
  background: #f0f2f5;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(62.5%, #f0f2f5), color-stop(62.5%, rgba(240, 242, 245, 0)));
  background: -webkit-linear-gradient(bottom, #f0f2f5 62.5%, rgba(240, 242, 245, 0) 62.5%);
  background: linear-gradient(0deg, #f0f2f5 62.5%, rgba(240, 242, 245, 0) 62.5%);
}
@media screen and (max-width: 768px) {
  .footer .footer__top {
    padding: 5px 0 28px;
  }
}
.footer .footer__top .top__flex {
  width: calc(100% - (100% - 1280px) / 2);
  margin-left: calc((100% - 1280px) / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1480px) {
  .footer .footer__top .top__flex {
    width: calc(100% - 14px);
    margin-left: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__top .top__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
.footer .footer__top .top__flex__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 56px 56px 70px 62px;
  background-color: #0439bf;
  color: #fff;
  width: 500px;
  height: 500px;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
@media screen and (max-width: 1120px) {
  .footer .footer__top .top__flex__contact {
    width: calc(50%);
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__top .top__flex__contact {
    padding: 34px 12px 40px 24px;
    width: 100%;
    height: auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer__top .top__flex__contact:hover {
    background-color: #001491;
  }
  .footer .footer__top .top__flex__contact:hover .top__flex__link-top .headline::after {
    -webkit-animation: c-link 0.5s cubic-bezier(0.55, 0.05, 0.22, 0.99);
    animation: c-link 0.5s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  }
  .footer .footer__top .top__flex__contact:hover .arrow {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .footer .footer__top .top__flex__contact:hover .arrow svg {
    -webkit-animation: c-arrow 0.5s linear;
    animation: c-arrow 0.5s linear;
  }
}
.footer .footer__top .top__flex__contact .top__flex__link-bottom .text {
  width: calc(100% - 80px);
}
.footer .footer__top .top__flex__join {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 56px 56px 70px 70px;
  background-color: #e536a5;
  color: #fff;
  width: calc(100% - 500px);
  height: 500px;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
@media screen and (max-width: 1120px) {
  .footer .footer__top .top__flex__join {
    width: calc(50%);
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__top .top__flex__join {
    padding: 32px 10px 36px 24px;
    width: 100%;
    height: auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer__top .top__flex__join:hover {
    background-color: #e4007f;
  }
  .footer .footer__top .top__flex__join:hover .top__flex__link-top .headline::after {
    -webkit-animation: c-link 0.5s cubic-bezier(0.55, 0.05, 0.22, 0.99);
    animation: c-link 0.5s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  }
  .footer .footer__top .top__flex__join:hover .top__flex__link-bottom .icon svg.icon__arrow {
    -webkit-animation: c-arrow 0.5s linear;
    animation: c-arrow 0.5s linear;
  }
}
.footer .footer__top .top__flex__join .top__flex__link-bottom .text {
  width: calc(100% - 160px);
}
.footer .footer__top .top__flex__link-top .headline {
  font-family: "Syncopate", sans-serif;
  line-height: 1;
  font-size: 37px;
  position: relative;
  display: inline-block;
  padding-top: 40px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .footer .footer__top .top__flex__link-top .headline {
    font-size: 27px;
    padding-top: 26px;
  }
}
.footer .footer__top .top__flex__link-top .headline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 3px;
  width: 36px;
  height: 20px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2237px%22%20height%3D%2216px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(0%2C%2020%2C%20145)%22%20d%3D%22M27.232%2C15.911%20L18.165%2C10.700%20L27.232%2C5.490%20L36.195%2C10.700%20L27.232%2C15.911%20Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(89%2C%20230%2C%20255)%22%20d%3D%22M18.270%2C10.700%20L9.203%2C5.490%20L18.270%2C0.279%20L27.232%2C5.490%20L18.270%2C10.700%20Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(247%2C%2089%2C%20189)%22%20d%3D%22M9.203%2C15.911%20L0.136%2C10.700%20L9.203%2C5.490%20L18.165%2C10.700%20L9.203%2C15.911%20Z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.footer .footer__top .top__flex__link-top .headline::after {
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.footer .footer__top .top__flex__link-top .subline {
  font-size: 15px;
  margin-top: 6px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer .footer__top .top__flex__link-top .subline {
    margin-top: 0;
    font-size: 12px;
  }
}
.footer .footer__top .top__flex__link-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer .footer__top .top__flex__link-bottom .text {
  font-size: 15px;
  line-height: 1.733;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .footer .footer__top .top__flex__link-bottom .text {
    font-size: 12px;
    padding-top: 24px;
  }
}
.footer .footer__top .top__flex__link-bottom .icon {
  position: relative;
  width: 160px;
  height: 160px;
}
@media screen and (max-width: 768px) {
  .footer .footer__top .top__flex__link-bottom .icon {
    width: 90px;
    height: 90px;
    margin-top: 18px;
  }
}
.footer .footer__top .top__flex__link-bottom .icon svg {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  width: 160px;
  height: 160px;
  fill: #fff;
}
.footer .footer__top .top__flex__link-bottom .icon svg.icon__arrow {
  width: 17px;
  height: 13px;
  top: 75%;
  left: calc(50% - 9px);
}
@media screen and (max-width: 768px) {
  .footer .footer__top .top__flex__link-bottom .icon svg.icon__arrow {
    top: 72%;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__top .top__flex__link-bottom .icon svg {
    width: 90px;
    height: 90px;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer__top .top__flex__link-bottom .icon svg use {
    -webkit-transform: scale(0.57);
    transform: scale(0.57);
  }
}
.footer .footer__top .top__flex__link-bottom .icon svg.circle {
  opacity: 0.4;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-name: circle;
  animation-name: circle;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.footer .footer__top .top__flex__link-bottom .arrow {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
@media screen and (max-width: 768px) {
  .footer .footer__top .top__flex__link-bottom .arrow {
    width: 60px;
    height: 60px;
    margin-top: 18px;
  }
}
.footer .footer__top .top__banner {
  margin: 84px auto 0;
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

   -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}

@media screen and (max-width: 768px) {
  .footer .footer__top .top__banner {
    padding: 0 14px 0 30px;
    margin: 36px auto 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer .footer__top .top__banner a {
  /* margin-right: 10px; */
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  .footer .footer__top .top__banner a {
    width: calc(50% - 4px);
    margin-right: 0;
    margin-bottom: 8px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer__top .top__banner a:hover {
    opacity: 0.7;
  }
}

/* .footer .footer__top .top__banner a:nth-child(5n) {
  margin-right: 0;
} */

.footer .footer__top .top__banner a:nth-child(4n) {
  margin-right: 0;
}


.footer .footer__top .top__banner a:nth-child(n+5) {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .footer .footer__top .top__banner a:nth-child(n+5) {
    margin-top: 0px;
  }
}



.footer .footer__bottom {
  padding: 72px 0 80px;
  background-color: #dcdee6;
  color: #333641;
}
@media screen and (max-width: 768px) {
  .footer .footer__bottom {
    padding: 40px 0 24px;
  }
}
.footer .footer__bottom .footer__bottom__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .footer .footer__bottom .footer__bottom__inner {
    padding: 0 30px;
  }
}
.footer .footer__bottom .footer__bottom__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .footer .footer__bottom .footer__bottom__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
  }
}
.footer .footer__bottom .footer__bottom__content .footer__address .headline {
  font-family: "Syncopate", sans-serif;
  color: #0439bf;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .footer .footer__bottom .footer__bottom__content .footer__address .headline {
    font-size: 20px;
  }
}
.footer .footer__bottom .footer__bottom__content .footer__address .add {
  margin-top: 32px;
  font-size: 14px;
  color: #040e42;
  line-height: 1.571;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .footer .footer__bottom .footer__bottom__content .footer__address .add {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.77;
  }
}
.footer .footer__bottom .footer__bottom__content .footer__links {
  display: block;
}
.footer .footer__bottom .footer__bottom__content .footer__links .footer__links__inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .footer .footer__bottom .footer__bottom__content .footer__links .footer__links__inline {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer .footer__bottom .footer__bottom__content .footer__links a {
  margin-right: 36px;
  font-size: 15px;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .footer .footer__bottom .footer__bottom__content .footer__links a {
    width: calc(50% - 1px);
    font-size: 11px;
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.footer .footer__bottom .footer__bottom__content .footer__links a:last-child {
  margin-right: 0;
}
.footer .footer__bottom .footer__bottom__content .footer__links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333641;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99), -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
@media (hover: hover) and (pointer: fine) {
  .footer .footer__bottom .footer__bottom__content .footer__links a:hover::before {
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.footer .footer__bottom .footer__bottom__copy {
  display: block;
  margin-top: 100px;
  font-family: "Syncopate", sans-serif;
  font-size: 11px;
  color: rgba(4, 14, 66, 0.302);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.07em;
}
@media screen and (max-width: 768px) {
  .footer .footer__bottom .footer__bottom__copy {
    margin-top: 50px;
    font-size: 10px;
  }
}

/*---------------------------------------------------------
	マウスストーカー
---------------------------------------------------------*/
.js-cursor__main {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  background: #333641;
  border-radius: 50%;
  z-index: 1001;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border: 1px solid #333641;
}
@media screen and (max-width: 992px) {
  .js-cursor__main {
    display: none;
  }
}
.is-moved .js-cursor__main {
  opacity: 1;
}
.is-outside .js-cursor__main {
  opacity: 0;
}
.is-hover .js-cursor__main {
  width: 5rem;
  height: 5rem;
  top: -3.5rem;
  left: -3.5rem;
  mix-blend-mode: multiply;
}

.js-cursor__option {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #ddd;
  z-index: 1000;
  -webkit-transition: opacity 0.2s 0.2s, background 0.2s;
  transition: opacity 0.2s 0.2s, background 0.2s;
}
.is-moved .js-cursor__option {
  opacity: 0;
}
.is-outside .js-cursor__option {
  opacity: 0;
}
.is-hover .js-cursor__option {
  background: #00ffff;
}

.view-btn {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  padding: 2rem 0;
}
@media screen and (max-width: 992px) {
  .view-btn {
    font-size: 1.3rem;
    padding: 1.2rem 0;
  }
}
.view-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333641;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.view-btn:hover {
  color: #0439bf;
}
.view-btn:hover::before {
  -webkit-animation-name: linkborder;
  animation-name: linkborder;
  -webkit-animation-delay: cubic-bezier(0.55, 0.05, 0.22, 0.99);
  animation-delay: cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-animation-duration: 0.65s;
  animation-duration: 0.65s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.view-btn:hover .view-btn__svg {
  fill: #0439bf;
}
.view-btn .view-btn__svg {
  fill: #333641;
}

/*---------------------------------------------------------
	common-data
---------------------------------------------------------*/
.pagetop {
  position: fixed;
  bottom: 0px;
  right: 46px;
  width: 100px;
  height: 100px;
  z-index: 2;
  mix-blend-mode: difference;
}
@media screen and (max-width: 992px) {
  .pagetop {
    bottom: 0px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}
.pagetop::before {
  content: "";
  position: absolute;
  bottom: 53px;
  right: 38px;
  background-color: #fff;
  width: 65px;
  height: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media screen and (max-width: 992px) {
  .pagetop::before {
    bottom: 22px;
    right: 14px;
    width: 22px;
    height: 3px;
  }
}
.pagetop::after {
  content: "";
  position: absolute;
  bottom: 53px;
  right: -5px;
  background-color: #fff;
  width: 65px;
  height: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 992px) {
  .pagetop::after {
    bottom: 22px;
    right: 0px;
    width: 22px;
    height: 3px;
  }
}
.pagetop .pagetop__visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 30px;
  }
}

.c-headline {
  position: relative;
  padding-left: 42px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .c-headline {
    padding-left: 30px;
  }
}
.c-headline::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 36px;
  height: 12px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2237px%22%20height%3D%2216px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(0%2C%2020%2C%20145)%22%20d%3D%22M27.232%2C15.911%20L18.165%2C10.700%20L27.232%2C5.490%20L36.195%2C10.700%20L27.232%2C15.911%20Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(89%2C%20230%2C%20255)%22%20d%3D%22M18.270%2C10.700%20L9.203%2C5.490%20L18.270%2C0.279%20L27.232%2C5.490%20L18.270%2C10.700%20Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(247%2C%2089%2C%20189)%22%20d%3D%22M9.203%2C15.911%20L0.136%2C10.700%20L9.203%2C5.490%20L18.165%2C10.700%20L9.203%2C15.911%20Z%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.8s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.8s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  min-width: 0.4em;
}
@media screen and (max-width: 768px) {
  .c-headline::before {
    width: 24px;
  }
}
.c-headline.is-active {
  opacity: 1;
}
.c-headline.is-active::before {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.c-headline.is-active .headline span {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.c-headline.is-active .subline {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.c-headline .headline {
  font-size: 52px;
  font-family: "Syncopate", sans-serif;
  color: #0439bf;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
  overflow: hidden;
}
.c-headline .headline span {
  display: inline-block;
  -webkit-transition: all 0.8s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.8s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  min-width: 0.4em;
}
@media screen and (max-width: 768px) {
  .c-headline .headline {
    font-size: 27px;
  }
}
.c-headline .subline {
  font-size: 16px;
  color: #333641;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 5px;
  -webkit-transition: all 0.8s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.8s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  opacity: 0;
  min-width: 0.4em;
}
@media screen and (max-width: 768px) {
  .c-headline .subline {
    margin-top: 8px;
    font-size: 12px;
  }
}

.c-subline {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 14px;
  font-family: "Syncopate", sans-serif;
  color: #0439bf;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-subline {
    font-size: 10px;
  }
}
.is-active .c-subline span {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.is-active .c-subline span::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
.c-subline span {
  position: relative;
  display: inline-block;
  -webkit-transition: all 0.9s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.9s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  opacity: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.c-subline span::before {
  content: "";
  position: absolute;
  bottom: calc(-150% - 24px);
  left: calc(50%);
  display: block;
  width: 1px;
  height: 150%;
  background-color: #0439bf;
  -webkit-transition: all 0.9s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0.7s;
  transition: all 0.9s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0.7s;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
@media screen and (max-width: 768px) {
  .c-subline span::before {
    bottom: calc(-50% - 24px);
    height: 70%;
  }
}

.c-headline2 {
  font-size: 26px;
  line-height: 1.15;
  position: relative;
  margin: 0.8em 0 1.35em;
  padding: 0.5em 0.5em 0.4em 30px;
  background: #fff;
}
@media screen and (max-width: 992px) {
  .c-headline2 {
    font-size: 20px;
  }
}
.c-headline2::before {
  content: "";
  position: absolute;
  display: block;
  top: 8px;
  left: 8px;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212px%22%20height%3D%2212px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(89%2C%20230%2C%20255)%22%20d%3D%22M0.0%2C0.0%20L6.0%2C0.0%20L6.0%2C5.999%20L0.0%2C5.999%20L0.0%2C0.0%20Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(229%2C%2054%2C%20165)%22%20d%3D%22M0.0%2C5.999%20L6.0%2C5.999%20L6.0%2C12.0%20L0.0%2C12.0%20L0.0%2C5.999%20Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(0%2C%2020%2C%20145)%22%20d%3D%22M6.0%2C0.0%20L12.0%2C0.0%20L12.0%2C5.999%20L6.0%2C5.999%20L6.0%2C0.0%20Z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.c-headline3 {
  font-size: 22px;
  line-height: 1.5;
  padding: 14px 0;
  margin-bottom: 1.35em;
  position: relative;
}
.c-headline3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(5%, #0439bf), color-stop(5%, #d6dbe2));
  background: -webkit-linear-gradient(left, #0439bf 5%, #d6dbe2 5%);
  background: linear-gradient(90deg, #0439bf 5%, #d6dbe2 5%);
}

.c-btn {
  position: relative;
  -webkit-transition: all 1s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 1s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  display: inline-block;
}
.c-btn span {
  position: relative;
  display: inline-block;
  padding: 22px 70px 22px 56px;
  font-size: 16px;
  line-height: 1;
  border: 1px solid #dcdee6;
  border-radius: 44px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 1px 0 #c4cdd9;
  box-shadow: 0 1px 1px 0 #c4cdd9;
  -webkit-transition: all 1s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 1s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
@media screen and (max-width: 768px) {
  .c-btn span {
    font-size: 13px;
    padding: 22px 47px 22px 24px;
  }
}
.c-btn span.line::before {
  display: none;
}
.c-btn span mark {
  display: inline;
  background-color: inherit;
  background-position: right 100% bottom 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333));
  background-image: -webkit-linear-gradient(#333, #333);
  background-image: linear-gradient(#333, #333);
  background-repeat: no-repeat;
  background-size: 100% 1px;
}
.c-btn span::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 56px;
  width: calc(100% - 70px - 56px);
  height: 1px;
  background-color: #040e42;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99), -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
@media screen and (max-width: 768px) {
  .c-btn span::before {
    left: 24px;
    width: calc(100% - 47px - 24px);
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.c-btn i {
  position: absolute;
  right: 15px;
  top: calc(50% - 15px);
  border-radius: 50%;
  background-color: #0439bf;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-btn i {
    right: 10px;
    top: calc(50% - 12px);
    width: 28px;
    height: 28px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-btn:hover span::before {
    -webkit-animation: c-link 0.5s linear;
    animation: c-link 0.5s linear;
  }
  .c-btn:hover span mark {
    -webkit-animation: c-link2 0.5s linear both;
    animation: c-link2 0.5s linear both;
  }
  .c-btn:hover i svg {
    -webkit-animation: c-arrow 0.5s linear;
    animation: c-arrow 0.5s linear;
  }
}

.swiper-slide {
  padding: 12px 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .swiper-slide {
    height: auto !important;
  }
}
.swiper-slide .swiper-slide__base {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
@media (hover: hover) and (pointer: fine) {
  .swiper-slide .swiper-slide__base:hover {
    -webkit-box-shadow: 0 2px 26px 0 #ccd1d8;
    box-shadow: 0 2px 26px 0 #ccd1d8;
  }
  .swiper-slide .swiper-slide__base:hover + .swiper-slide__base__figure img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.swiper-slide .swiper-slide__base__figure {
  width: 100%;
  max-width: 360px;
  height: 15vw;
  max-height: 200px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .swiper-slide .swiper-slide__base__figure {
    width: 100%;
    height: 45vw;
  }
}
.swiper-slide .swiper-slide__base__figure img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  max-width: 360px;
  height: 15vw;
  max-height: 200px;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99), -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
@media screen and (max-width: 768px) {
  .swiper-slide .swiper-slide__base__figure img {
    width: 100%;
    height: 45vw;
  }
}
.swiper-slide .swiper-slide__base__time {
  display: block;
  margin-top: 28px;
  font-size: 10px;
  font-family: "Syncopate", sans-serif;
  color: rgba(0, 35, 167, 0.5);
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .swiper-slide .swiper-slide__base__time {
    margin-top: 20px;
  }
}
.swiper-slide .swiper-slide__base__headline {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 8px;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 84px;
  /* 28px * 3 lines */
}
@media screen and (max-width: 768px) {
  .swiper-slide .swiper-slide__base__headline {
    font-size: 15px;
    line-height: 22px;
    height: 66px;
    /* 22px * 3 lines */
  }
}
@supports (-webkit-line-clamp: 3) {
  .swiper-slide .swiper-slide__base__headline {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.swiper-slide .swiper-slide__base__cat {
  margin-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .swiper-slide .swiper-slide__base__cat {
    margin-top: 16px;
  }
}
.swiper-slide .swiper-slide__base__cat li a {
  position: relative;
  z-index: 2;
  display: block;
  background: #fff;
  border-radius: 2em;
  font-size: 13px;
  line-height: 2.1;
  padding: 0 13px;
  -webkit-box-shadow: 0 1px 1px 0 #c4cdd9;
  box-shadow: 0 1px 1px 0 #c4cdd9;
  margin-right: 5px;
  margin-bottom: 6px;
  color: #0439bf;
  -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: opacity 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
@media screen and (max-width: 768px) {
  .swiper-slide .swiper-slide__base__cat li a {
    font-size: 10px;
    line-height: 2.4;
  }
}
@media (hover: hover) and (pointer: fine) {
  .swiper-slide .swiper-slide__base__cat li a:hover {
    opacity: 0.5;
  }
}
.swiper-slide .swiper-slide__base__tag {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 1.4;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .swiper-slide .swiper-slide__base__tag {
    margin-top: 2px;
  }
}
.swiper-slide .swiper-slide__base__tag li a {
  font-size: 12px;
  color: #0439bf;
  margin-right: 18px;
}
@media screen and (max-width: 768px) {
  .swiper-slide .swiper-slide__base__tag li a {
    font-size: 10px;
    opacity: 0.7;
    margin-right: 1.5em;
  }
}
.swiper-slide .swiper-slide__base__tag li a::before {
  content: "#";
}

/* 追記 */

.swiper-slide__base__thema {
  position: absolute;
  left: -2px;
  top: 13px;
  display: flex;
  align-items: center;
  gap: 0 6px;
  writing-mode: vertical-rl; /* 縦書きの方向を指定 */
}

@media screen and (max-width: 768px) {
  .swiper-slide__base__thema {
  }
}

.swiper-slide__base__thema-color {
  width: 8px;
  height: 8px;
  display: inline-block;
  background-color: #0439bf;
  transform: translateX(-1px);
}

.swiper-slide__base__thema-txt {
  color: #001491;
  display: inline-block;
  width: calc(100% - 8px - 6px);
  font-size: 11px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  font-family: "Montserrat", sans-serif;
}

/* ----- */

.c-subheader {
  width: 100%;
  height: 470px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-subheader {
    height: 380px;
  }
}
.c-subheader .c-subheader__container {
  width: 100%;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: column;
  -ms-flex-wrap: column;
  flex-wrap: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .c-subheader .c-subheader__container {
    padding: 60px 20px 30px;
  }
}
.c-subheader .c-subheader__title {
  color: #fff;
}
.c-subheader .c-subheader__title .headline {
  font-size: 60px;
  font-family: "Syncopate", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .c-subheader .c-subheader__title .headline {
    font-size: 32px;
  }
}
.c-subheader .c-subheader__title .headline::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  display: block;
  width: 36px;
  height: 20px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2237px%22%20height%3D%2216px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(0%2C%2020%2C%20145)%22%20d%3D%22M27.232%2C15.911%20L18.165%2C10.700%20L27.232%2C5.490%20L36.195%2C10.700%20L27.232%2C15.911%20Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(89%2C%20230%2C%20255)%22%20d%3D%22M18.270%2C10.700%20L9.203%2C5.490%20L18.270%2C0.279%20L27.232%2C5.490%20L18.270%2C10.700%20Z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(247%2C%2089%2C%20189)%22%20d%3D%22M9.203%2C15.911%20L0.136%2C10.700%20L9.203%2C5.490%20L18.165%2C10.700%20L9.203%2C15.911%20Z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center center;
}
.c-subheader .c-subheader__title .subline {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .c-subheader .c-subheader__title .subline {
    font-size: 14px;
    line-height: 1.4;
  }
}
.c-subheader .c-subheader__bg {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #0439bf;
}
.c-subheader .c-subheader__bg img {
  opacity: 0.35;
  width: 100%;
  height: 470px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-subheader .c-subheader__bg img {
    height: 380px;
  }
}

.c-breadcrumb {
  padding: 20px 0;
}
.c-breadcrumb .c-breadcrumb__list {
  width: 100%;
  max-width: 1360px;
  padding: 0 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb .c-breadcrumb__list {
    padding: 0 20px;
  }
}
.c-breadcrumb .c-breadcrumb__item {
  font-size: 12px;
  line-height: 1;
  margin-bottom: 1em;
  letter-spacing: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-breadcrumb .c-breadcrumb__item {
    font-size: 11px;
  }
}
.c-breadcrumb .c-breadcrumb__item:first-child {
  font-family: "Syncopate", sans-serif;
}
.c-breadcrumb .c-breadcrumb__item:not(:last-child) {
  padding-right: 2em;
  margin-right: 8px;
}
.c-breadcrumb .c-breadcrumb__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(50%);
  right: 0;
  display: block;
  width: 18px;
  height: 1px;
  background-color: #040e42;
  opacity: 0.2;
}
.c-breadcrumb .c-breadcrumb__item a {
  color: #0439bf;
  position: relative;
}
.c-breadcrumb .c-breadcrumb__item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #0439bf;
  width: 100%;
  height: 1px;
}
@media (hover: hover) and (pointer: fine) {
  .c-breadcrumb .c-breadcrumb__item a:hover::before {
    -webkit-animation: c-link 0.5s linear;
    animation: c-link 0.5s linear;
  }
}

.c-next-pager .c-next-pager__container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  border-top: 1px solid #dcdee6;
  border-bottom: 1px solid #dcdee6;
}
.c-next-pager .c-next-pager__container a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 40px 60px 48px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-next-pager .c-next-pager__container a {
    padding: 20px 14px 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.c-next-pager .c-next-pager__container a i {
  position: absolute;
  bottom: 65px;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0439bf;
}
@media screen and (max-width: 1480px) {
  .c-next-pager .c-next-pager__container a i {
    right: 16px;
  }
}
@media screen and (max-width: 768px) {
  .c-next-pager .c-next-pager__container a i {
    bottom: 32px;
    right: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-next-pager .c-next-pager__container a:hover i svg {
    -webkit-animation: c-arrow 0.5s linear;
    animation: c-arrow 0.5s linear;
  }
  .c-next-pager .c-next-pager__container a:hover .c-next-pager__figure img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  .c-next-pager .c-next-pager__container a:hover .c-next-pager__title .headline span::before {
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.c-next-pager .c-next-pager__container .c-next-pager__figure {
  width: 200px;
  height: 200px;
  background: #0439bf;
  overflow: hidden;
}
.c-next-pager .c-next-pager__container .c-next-pager__figure img {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99), -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.c-next-pager .c-next-pager__container .c-next-pager__title {
  width: calc(50% - 170px);
  padding: 15px 15px 15px 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .c-next-pager .c-next-pager__container .c-next-pager__title {
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 768px) {
  .c-next-pager .c-next-pager__container .c-next-pager__title {
    width: 100%;
    padding: 14px 0;
  }
}
.c-next-pager .c-next-pager__container .c-next-pager__title .headline {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.667;
}
@media screen and (max-width: 768px) {
  .c-next-pager .c-next-pager__container .c-next-pager__title .headline {
    font-size: 24px;
  }
}
.c-next-pager .c-next-pager__container .c-next-pager__title .headline span {
  position: relative;
  display: inline-block;
}
.c-next-pager .c-next-pager__container .c-next-pager__title .headline span::before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333641;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99), -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.c-next-pager .c-next-pager__container .c-next-pager__title .subline {
  font-size: 13px;
  font-family: "Syncopate", sans-serif;
  color: #0439bf;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .c-next-pager .c-next-pager__container .c-next-pager__title .subline {
    font-size: 11px;
  }
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
}
.c-modal.is-open {
  pointer-events: auto;
}
.c-modal[aria-hidden="true"] {
  opacity: 0;
  -webkit-animation: mmfadeOut 0s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  animation: mmfadeOut 0s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.c-modal[aria-hidden="true"] .swiper-container-fade .swiper-slide-active,
.c-modal[aria-hidden="true"] .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: none;
}
.c-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  -webkit-animation: mmfadeIn 0.8s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  animation: mmfadeIn 0.8s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}
.c-modal[aria-hidden="false"] .swiper-container-fade .swiper-slide-active,
.c-modal[aria-hidden="false"] .swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.c-modal .c-modal__area {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.c-modal .c-modal__area__dialog {
  width: calc(100% - 32px);
  max-width: calc(100% - 32px);
  max-height: calc(90vh - 60px);
  position: relative;
  cursor: initial;
  margin: 0 auto;
  display: block;
  background-color: #fff;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.09);
  overflow-y: scroll;
}
.c-modal .c-modal__area__dialog:hover .c-modal__area__close {
  opacity: 1;
}
.c-modal .c-modal__area__dialog.size {
  max-width: 900px;
}
.c-modal .c-modal__area__dialog.movie {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000;
  overflow: hidden;
}
.c-modal .c-modal__area__dialog.movie .c-modal__area__close {
  z-index: 2;
}
.c-modal .c-modal__area__dialog.movie .c-modal__area__close::before {
  background-color: #fff;
}
.c-modal .c-modal__area__dialog.movie .c-modal__area__close::after {
  background-color: #fff;
}
.c-modal .c-modal__area__dialog.movie iframe {
  height: calc(56.25vw - 16px);
  max-height: calc(90vh - 60px);
  width: calc(146vh);
}
@supports (aspect-ratio: 16/9) {
  .c-modal .c-modal__area__dialog.movie iframe {
    aspect-ratio: 16/9;
    width: auto;
  }
}
.c-modal .c-modal__area__dialog .c-modal__area__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  opacity: 0;
}
.c-modal .c-modal__area__dialog .c-modal__area__close:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.c-modal .c-modal__area__dialog .c-modal__area__close::before {
  position: absolute;
  display: block;
  width: 120%;
  height: 3px;
  background-color: inherit;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
  top: 24px;
  right: -5px;
  background-color: #333641;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-modal .c-modal__area__dialog .c-modal__area__close::after {
  position: absolute;
  display: block;
  width: 120%;
  height: 3px;
  background-color: inherit;
  content: "";
  -webkit-transition: inherit;
  transition: inherit;
  top: 24px;
  right: -5px;
  background-color: #333641;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-modal .c-modal__area__dialog .ps__thumb-y {
  background-color: #cacaca;
}
.c-modal .c-modal__area__dialog .ps--active-x > .ps__rail-x,
.c-modal .c-modal__area__dialog .ps--active-y > .ps__rail-y {
  background-color: #efefef;
}
.c-modal .c-modal__area__dialog .ps__rail-y {
  width: 10px;
}

/* Animation */
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.swiper-wrapper {
  height: auto !important;
  padding-bottom: 35px;
}

@media screen and (max-width: 768px) {
  .swiper-wrapper {
    padding-bottom: 10px;
  }
}

ol {
  counter-reset: number 0;
}
ol li {
  position: relative;
  padding-left: 1.5em;
}
ol li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  font-size: 0.9em;
  counter-increment: number;
  content: counter(number) ".";
  color: #0439bf;
  font-family: "Syncopate";
  display: inline-block;
}

/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* たいとる */

.c-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .c-title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.c-title-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 16px;
}
@media screen and (max-width: 768px) {
  .c-title-left {
    gap: 0 8px;
  }
}

.c-title-left__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-title-left__icon {
    width: 50px;
    height: 50px;
  }
}

.c-title-left__icon-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .c-title-left__icon-img {
    width: 60%;
  }
}

.c-title-left__text {
  color: #0439bf;
  font-size: 32px;
  letter-spacing: 0;
  font-weight: bold;
  font-family: "Syncopate", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-title-left__text {
    font-size: 22px;
  }
}

.c-title-right {
  padding-left: 32px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-title-right {
    padding-left: 12px;
  }
}
.c-title-right::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  background-color: #d6dbe2;
  height: 100%;
}

.c-title-right__text {
  font-size: 14px;
  line-height: calc(23 / 14);
  color: #040e42;
}

@media screen and (max-width: 768px) {
  .c-title-right__text {
    font-size: 12px;
  }
}

/* --------------------------------
テーマリスト 
-----------------------------------*/

.c-title-wrap + .c-theme-list {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .c-title-wrap + .c-theme-list {
    margin-top: 30px;
  }
}

.c-theme-list {
  display: -webkit-box; /* Safari, iOS, および Android ブラウザー用 */ /* Firefox ブラウザー用 */
  display: -ms-flexbox; /* Internet Explorer 10 用 */ /* Chrome, Safari, および Opera ブラウザー用 */
  display: flex; /* Safari, iOS, および Android ブラウザー用 */
  -moz-align-items: stretch; /* Firefox ブラウザー用 */
  -ms-align-items: stretch; /* Internet Explorer 10 用 */
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 21px;
}

@media screen and (max-width: 768px) {
  .c-theme-list {
    /* Chrome, Safari, および Opera ブラウザー用 */
    -ms-flex-direction: column; /* Internet Explorer 10 用 */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.c-theme-item {
  background-color: #fff;
  /* padding: 36px 30px; */
  width: calc((100% - 42px) / 3);
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: -webkit-box-shadow 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -o-transition: box-shadow 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: box-shadow 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: box-shadow 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99), -webkit-box-shadow 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}

@media screen and (max-width: 768px) {
  .c-theme-item {
    width: 100%;
  }
}

.c-theme-item:hover {
  -webkit-box-shadow: 0 2px 26px #dce1e8;
  box-shadow: 0 2px 26px #dce1e8;
}

.c-theme-item:hover .c-theme-item__btn span::before {
  -webkit-animation: c-link 0.5s linear;
  animation: c-link 0.5s linear;
}

.c-theme-item:hover i svg {
  -webkit-animation: c-arrow 0.5s linear;
  animation: c-arrow 0.5s linear;
}

.c-theme-item__link {
  display: block;
  height: 100%;
  padding: 36px 30px 120px;
}

@media screen and (max-width: 768px) {
  .c-theme-item__link {
    padding: 36px 30px 80px;
  }
}

.c-theme-item__img {
  width: 100%;
}

.c-theme-item__img img {
  width: 100%;
}

.c-theme-item__img + .c-theme-item__lead {
  margin-top: 27px;
}

@media screen and (max-width: 768px) {
  .c-theme-item__img + .c-theme-item__lead {
    margin-top: 14px;
  }
}

.c-theme-item__lead {
  font-size: 16px;
  line-height: calc(33 / 16);
  letter-spacing: 0;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .c-theme-item__lead {
    font-size: 13px;
    line-height: 1.923;
  }
}

.c-theme-item__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 30px;
}

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

.c-theme-item__btn {
  position: relative;
  -webkit-transition: all 1s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -o-transition: all 1s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 1s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
  position: absolute;
  bottom: 53px;
  right: 36px;
}

@media screen and (max-width: 768px) {
  .c-theme-item__btn {
    bottom: 20px;
    right: 20px;
  }
}

.c-theme-item__btn:hover span::before {
  -webkit-animation: c-link 0.5s linear;
  animation: c-link 0.5s linear;
}

.c-theme-item__btn:hover i svg {
  -webkit-animation: c-arrow 0.5s linear;
  animation: c-arrow 0.5s linear;
}

.c-theme-item__btn span {
  position: relative;
  display: inline-block;
  padding-right: 42px;
  font-size: 16px;
  line-height: 1;
  -webkit-transition: all 1s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -o-transition: all 1s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: all 1s cubic-bezier(0.55, 0.05, 0.22, 0.99);
}

@media screen and (max-width: 768px) {
  .c-theme-item__btn span {
    font-size: 13px;
    /* padding: 22px 47px 22px 24px; */
    padding-right: 47px;
  }
}

.c-theme-item__btn span::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0px;
  width: calc(100% - 42px);
  height: 1px;
  background-color: #040e42;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -o-transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  transition: transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99), -webkit-transform 0.3s cubic-bezier(0.55, 0.05, 0.22, 0.99);
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
@media screen and (max-width: 768px) {
  .c-theme-item__btn span::before {
    /* left: 24px; */
    /* width: calc(100% - 48px - 24px); */
    width: calc(100% - 47px);
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.c-theme-item__btn i {
  position: absolute;
  right: 0px;
  top: calc(50% - 15px);
  border-radius: 50%;
  background-color: #0439bf;
  width: 30px;
  height: 30px;
  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;
}

@media screen and (max-width: 768px) {
  .c-theme-item__btn i {
    right: 10px;
    top: calc(50% - 12px);
    width: 28px;
    height: 28px;
  }
}

/* --------------------------------
もっとみる
-----------------------------------*/

.c-viewbtn {
  text-align: center;
  margin-top: 60px;
}

.c-viewbtn .c-btn {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .c-viewbtn {
    margin-top: 20px;
  }
}
