@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&Noto+Serif+JP:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Special+Gothic+Expanded+One&display=swap");
:root {
  /* custom color */
  --black: #000;
  --white: #fff;
  --kous-black: #333;
  --gray: #ddd;
  --blue: blue;
  --main_blue: #00aaf2;
  --dark_blue: #0068b7;
  --lightblue_bg: #f1f6f8;
  --border: #C9C9C9;
  --border_blue: #CED2D6;
  --time_color: #BBBCBE;
  /* template color */
  --main-color: var(--kous-black);
  --main-bg-color: var(--white);
  --main-border-color: #e1e1e1;
  /* footer */
  --footer-menu-border: var(--gray);
  --copyright-bg: var(--white);
  --copyright-color: var(--kous-black);
  /* hamburger menu */
  --hamburger-trigger-bg: var(--kous-black);
  --hamburger-trigger-bar: var(--white);
  --hamburger-bg: var(--dark_blue);
  --hamburger-border: var(--white);
  --hamburger-color: var(--white);
  /* pagenavi */
  --pagenavi-navi-bg: var(--blue);
  --pagenavi-navi-border: var(--white);
  /* contact page Navi*/
  --form-page-tab: #F1F6F8;
  --form-tab-border: transparent;
  --form-tab-line: #173F92;
  --form-page-active: #00AAF2;
  --form-active-color: var(--white);
  /* policy */
  --policy-dt-color: var(--kous-black);
  --policy-link-color: var(--dark_blue);
  /* 404 */
  --404-h1_color: var(--kous-black);
  --404-p_color: #C9C9C9;
  --404-menu-border: #C9C9C9;
}

/* form */
.mw_wp_form {
  --form-bg-color: #F1F6F8;
  --form-white: var(--white);
  --form-red: #c50000;
  --form-gray: #999999;
  --form-border: #cccccc;
  --form-policy-linkcolor: var(--dark_blue);
  --form-go-bg: var(--dark_blue);
  --form-go-color: var(--white);
  --form-back-bg: var(--dark_blue);
}

:root {
  font-size: 16px;
}

.mincho {
  font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 500;
}

.disp__only {
  display: none;
}
@media screen and (max-width: 900px) {
  .disp__only.--mobile {
    display: block;
  }
}
@media screen and (max-width: 450px) {
  .disp__only.--sp {
    display: block;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex._fdr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 900px) {
  .flex._fdr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-title_front {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px clamp(8px, 3.125vw, 40px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 900px) {
  .c-title_front {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-title_front p {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  color: var(--main_blue);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 1.2109375em;
}
@media screen and (max-width: 900px) {
  .c-title_front p {
    font-size: clamp(3rem, 10vw, 8rem);
  }
}
.c-title_front h2 {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  line-height: 1.7777777778em;
  position: relative;
  top: clamp(8px, 1.171875vw, 15px);
}
@media screen and (max-width: 450px) {
  .c-title_front h2 {
    top: unset;
  }
}
.c-title_lower {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(8px, 1.25vw, 16px);
}
.c-title_lower::before {
  content: "";
  display: inline-block;
  width: clamp(24px, 3.5555555556vw, 32px);
  height: auto;
  aspect-ratio: 2/1;
  border-radius: 60px;
  background-color: var(--main_blue);
}
.c-title_lower b {
  display: block;
  font-size: clamp(1.5rem, 3.5555555556vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 901px) and (max-width: 1200px) {
  .c-title_lower b {
    white-space: nowrap;
  }
}

.c-arrow {
  position: relative;
  display: block;
  aspect-ratio: 48/24;
  width: 48px;
  height: auto;
  background-color: var(--kous-black);
  border-radius: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-arrow span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  overflow: hidden;
  display: block;
  aspect-ratio: 16/8;
  width: 16px;
  height: auto;
}
.c-arrow span svg {
  position: absolute;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0s;
  transition: all 0s;
}
.c-arrow span svg:nth-of-type(2) {
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
}
.c-arrow._w {
  background: var(--white);
}
.c-arrow._w svg path {
  fill: var(--kous-black);
}

.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: var(--main_blue);
  color: var(--white);
  padding-left: 32px;
  padding-right: 72px;
  border-radius: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: clamp(240px, 29.3333333333vw, 264px);
  height: clamp(48px, 6.2222222222vw, 56px);
  overflow: hidden;
}
.c-button b {
  position: relative;
  top: 1px;
  z-index: 1;
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 600;
}
.c-button .-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media (hover: hover) {
  .c-button:hover {
    opacity: 1;
    background-color: var(--kous-black);
  }
  .c-button:hover .c-arrow {
    background-color: var(--main_blue);
  }
  .c-button:hover .c-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-button:hover .c-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .c-button:hover .c-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (hover: none) {
  .c-button {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .c-button:active {
    opacity: 1;
    background-color: var(--kous-black);
  }
  .c-button:active .c-arrow {
    background-color: var(--main_blue);
  }
  .c-button:active .c-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-button:active .c-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .c-button:active .c-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.c-button_movie {
  position: relative;
  aspect-ratio: 1/1;
  width: clamp(120px, 20.4444444444vw, 184px);
  height: auto;
  padding-bottom: 40px;
  padding-bottom: clamp(32px, 8.8888888889vw, 40px);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-button_movie b {
  text-align: center;
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: inherit;
}
.c-button_movie::before {
  content: "";
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  background: var(--kous-black);
  position: absolute;
  top: calc(50% + 16px);
  left: 50%;
  -webkit-transform: translate(-50%, -59%);
          transform: translate(-50%, -59%);
  border-radius: 50%;
  z-index: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 900px) {
  .c-button_movie::before {
    top: calc(50% + 12px);
  }
}
.c-button_movie .-arrow {
  z-index: 1;
  position: absolute;
  left: 50%;
  bottom: 32px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 900px) {
  .c-button_movie .-arrow {
    bottom: 24px;
  }
}
@media screen and (max-width: 450px) {
  .c-button_movie .-arrow {
    bottom: 20px;
  }
}
.c-button_movie:hover {
  opacity: 1;
}
.c-button_movie:hover::before {
  background: var(--main_blue);
  -webkit-transform: translate(-50%, -59%) scale(1.17);
          transform: translate(-50%, -59%) scale(1.17);
}
.c-button_movie:hover .c-arrow span svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-button_movie:hover .c-arrow span svg:nth-of-type(1) {
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
}
.c-button_movie:hover .c-arrow span svg:nth-of-type(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.c-bnr {
  margin-top: clamp(120px, 12.5vw, 160px);
}
.c-bnr .-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 32px;
  position: relative;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 72px;
  padding-bottom: clamp(40px, 3.75vw, 48px);
  padding-left: clamp(32px, 3.75vw, 48px);
  padding-right: clamp(32px, 5vw, 64px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.04);
          box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}
@media screen and (max-width: 450px) {
  .c-bnr .-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    gap: 0px;
  }
  .c-bnr .-link .-arrow {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 16px;
  }
}
.c-bnr .-link .-left {
  display: contents;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 451px) {
  .c-bnr .-link .-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
@media screen and (min-width: 451px) {
  .c-bnr .-link .-right {
    -ms-flex-preferred-size: 50.7042253521%;
        flex-basis: 50.7042253521%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media screen and (max-width: 450px) {
  .c-bnr .-link .-right {
    margin-top: 24px;
  }
}
@media (hover: hover) {
  .c-bnr .-link:hover {
    opacity: 1;
  }
  .c-bnr .-link:hover .c-arrow {
    background-color: var(--main_blue);
  }
  .c-bnr .-link:hover .c-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-bnr .-link:hover .c-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .c-bnr .-link:hover .c-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (hover: none) {
  .c-bnr .-link {
    -webkit-transition: all 0s;
    transition: all 0s;
  }
  .c-bnr .-link:active {
    opacity: 1;
  }
  .c-bnr .-link:active .c-arrow {
    background-color: var(--main_blue);
  }
  .c-bnr .-link:active .c-arrow span svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-bnr .-link:active .c-arrow span svg:nth-of-type(1) {
    -webkit-transform: translateX(120%);
            transform: translateX(120%);
  }
  .c-bnr .-link:active .c-arrow span svg:nth-of-type(2) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.c-bnr .-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.c-bnr .-head h2 {
  font-size: clamp(0.9375rem, 1.7777777778vw, 1rem);
  font-weight: 600;
}
.c-bnr .-head p {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: clamp(1.5rem, 3.6666666667vw, 2.0625rem);
  color: var(--main_blue);
  line-height: 1;
  text-transform: capitalize;
}
.c-bnr .-icon {
  position: absolute;
  top: clamp(20px, 1.875vw, 24px);
  right: clamp(20px, 1.875vw, 24px);
  aspect-ratio: 1/1;
  width: 48px;
  height: auto;
}

.c-fade {
  clip-path: inset(0 100% 0% 0);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.c-fade._slow {
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}
.c-fade.--view {
  clip-path: inset(0 0% 0% 0);
}