@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --inner-padding-inline: 1.5rem;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: clamp(56.25%, 0.8333333333vw, 62.5%);
  }
}
@media screen and (max-width: 960px) {
  html {
    font-size: clamp(56.25%, 1.0416666667vw, 62.5%);
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  position: relative;
  color: #333333;
  font-size: 1.6rem;
  font-weight: normal;
  font-family: "Roboto", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.8;
  background-color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
body h1, body h2, body h3, body h4, body h5, body h6, body p, body dl, body dt, body dd, body form, body fieldset, body legend, body pre, body blockquote, body em, body button, body address, body noscript {
  font-family: "Roboto", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a {
  color: #333333;
  text-decoration: none;
  display: inline-block;
}

em {
  color: #006FA0;
  font-weight: bold;
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

picture {
  display: block;
}

button {
  cursor: pointer;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
}

.pc-view {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-view {
    display: none;
  }
}

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

.text-center {
  text-align: center;
}

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

.flex-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}

.mb-12 {
  margin-bottom: 1.2rem;
}

.mb-16 {
  margin-bottom: 1.6rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-48 {
  margin-bottom: 4.8rem;
}

.l-header-caution {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.l-header-caution.header-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.l-caution {
  height: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #C77F07;
  background-image: -webkit-linear-gradient(135deg, #CF8A02 25%, transparent 25%, transparent 50%, #CF8A02 50%, #CF8A02 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, #CF8A02 25%, transparent 25%, transparent 50%, #CF8A02 50%, #CF8A02 75%, transparent 75%, transparent);
  background-size: 3rem 3rem;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: height 0.4s ease, opacity 0.3s ease, padding 0.4s ease, margin 0.4s ease;
  transition: height 0.4s ease, opacity 0.3s ease, padding 0.4s ease, margin 0.4s ease;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 4rem;
}
.l-caution.is-hidden {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .l-caution {
    height: 4rem;
    padding: 0 1rem;
  }
}
.l-caution .top-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-caution__textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .l-caution__textarea {
    gap: 0.4rem;
  }
}
.l-caution__textarea .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-caution__textarea .icon img {
  width: 2.4rem;
}
@media screen and (max-width: 768px) {
  .l-caution__textarea .icon img {
    height: 1.8rem;
  }
}
.l-caution__textarea .text a {
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l-caution__textarea .text a {
    font-size: 1.4rem;
  }
}
.l-caution__textarea .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-caution__textarea .arrow img {
  width: 1.6rem;
}
.l-caution .close-button {
  border: none;
  background-color: transparent;
}

.l-header {
  height: 8.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 4rem;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.8), transparent);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 7.8rem;
    padding-left: 1.5rem;
  }
  .l-header.menu-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.l-header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.l-header .logo img {
  width: 9.6rem;
}
@media screen and (max-width: 768px) {
  .l-header .logo img {
    width: 8rem;
  }
}
.l-header .logo__catch {
  font-size: 1.4rem;
  font-family: "Roboto", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .l-header .logo__catch {
    display: none;
  }
}

.l-nav-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  background-color: #006FA0;
  border-radius: 0 0 0 2rem;
  padding: 0 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-nav-cta {
    padding: 0 1rem 0 1.5rem;
    gap: 0.8rem;
  }
}
.l-nav-cta::before {
  content: url("/top/assets/images/kado-primary-01.svg");
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  left: -2rem;
}
.l-nav-cta .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .l-nav-cta .nav {
    position: fixed;
    inset: auto 0 0 0;
    height: calc(100vh - 4rem);
    background-color: rgba(0, 111, 160, 0.9);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    padding: 10.2rem 0 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition-property: opacity, visibility;
    transition-property: opacity, visibility;
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
  }
  @supports (height: 100svh) {
    .l-nav-cta .nav {
      height: calc(100svh - 4rem);
    }
  }
}
@media screen and (max-width: 768px) {
  .l-nav-cta .nav.no-caution {
    inset: 0;
    height: 100vh;
  }
  @supports (height: 100svh) {
    .l-nav-cta .nav.no-caution {
      height: 100svh;
    }
  }
}
.l-nav-cta .nav__list a {
  font-size: 1.4rem;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l-nav-cta .nav__list a {
    padding: 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid #2795c5;
    border-bottom: 1px solid #0a5d83;
  }
}
.l-nav-cta .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
.l-nav-cta .cta__list a {
  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: 0.4rem;
  width: 9.6rem;
  height: 4.4rem;
  background-color: #ffffff;
  border-radius: 1rem;
  text-decoration: none;
  color: #333333;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.l-nav-cta .cta__list a .icon {
  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;
}
.l-nav-cta .cta__list a .label {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .l-nav-cta .cta__list a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    width: 5.4rem;
    height: 5.4rem;
  }
  .l-nav-cta .cta__list a .label {
    font-size: 1.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-nav-cta .cta__list a:hover {
    background-color: #ABCBD9;
  }
}
.l-nav-cta .hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-nav-cta .hamburger {
    width: 5.4rem;
    height: 5.4rem;
    border: none;
    background-color: transparent;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 901;
  }
  .l-nav-cta .hamburger__lines {
    position: relative;
    width: 3rem;
    height: 2.2rem;
    display: block;
  }
  .l-nav-cta .hamburger__lines .line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.2rem;
    background: #fff;
    border-radius: 999px;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transition-property: opacity, top, -webkit-transform;
    transition-property: opacity, top, -webkit-transform;
    transition-property: transform, opacity, top;
    transition-property: transform, opacity, top, -webkit-transform;
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
  }
  .l-nav-cta .hamburger__lines .line.line--1 {
    top: 0;
  }
  .l-nav-cta .hamburger__lines .line.line--2 {
    top: 1rem;
  }
  .l-nav-cta .hamburger__lines .line.line--3 {
    top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-nav-cta.is-open .nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .l-nav-cta.is-open .line.line--1 {
    top: 1rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .l-nav-cta.is-open .line.line--2 {
    opacity: 0;
    -webkit-transform: scaleX(0.6);
            transform: scaleX(0.6);
  }
  .l-nav-cta.is-open .line.line--3 {
    top: 1rem;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

body .top-wrap {
  width: 100%;
  max-width: calc(124rem + var(--inner-padding-inline) * 2);
  padding: 0 var(--inner-padding-inline);
  margin: 0 auto;
}
body .main {
  padding: 14.8rem 0 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  body .main {
    padding: 11.8rem 0 0;
  }
}
body .main.no-caution {
  padding: 8.8rem 0 0;
}
@media screen and (max-width: 768px) {
  body .main.no-caution {
    padding: 7.8rem 0 0;
  }
}
body .main .common-title__label {
  position: relative;
  padding-left: 2.4rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  margin-bottom: 2rem;
}
body .main .common-title__label::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background-color: #BA272D;
}
body .main .common-title__text {
  font-size: 2.8rem;
  margin: 0;
}
body .main .common-parallax {
  position: absolute;
  pointer-events: none;
  z-index: 100;
}
body .main .common-parallax__item {
  position: absolute;
  will-change: transform;
}

.mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv {
    display: block;
    padding: 0 1.6rem;
    overflow: hidden;
    min-height: calc(100vh - 11.8rem);
  }
  @supports (min-height: 100svh) {
    .mv {
      min-height: calc(100svh - 11.8rem);
    }
  }
}
.mv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  width: 50vw;
}
@media screen and (max-width: 768px) {
  .mv__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    z-index: 100;
    bottom: 2.4rem;
  }
}
.mv__title .title-en img {
  width: max(56rem, 90%);
}
.mv__title .title-jp img {
  width: max(56rem, 90%);
}
.mv__title .title-sp img {
  width: auto;
  height: 35vh;
}
@supports (height: 100svh) {
  .mv__title .title-sp img {
    height: 35svh;
  }
}
.mv__image {
  width: calc(50vw - 6rem);
}
@media screen and (max-width: 768px) {
  .mv__image {
    position: absolute;
    inset: 0;
    width: 100%;
    display: grid;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.mv__image img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mv__image img {
    width: auto;
    height: 66vh;
  }
  @supports (height: 100svh) {
    .mv__image img {
      height: 66svh;
    }
  }
}
.mv .aniversary-logo {
  position: absolute;
  right: 3rem;
  top: 3rem;
  z-index: 100;
}
.mv .aniversary-logo img {
  width: 15.6rem;
}
@media screen and (max-width: 768px) {
  .mv .aniversary-logo img {
    width: auto;
    height: 12vh;
  }
  @supports (height: 100svh) {
    .mv .aniversary-logo img {
      height: 12svh;
    }
  }
}

.news {
  margin-bottom: 12rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news {
    margin-bottom: 8rem;
  }
}
.news .top-wrap {
  position: relative;
  z-index: 101;
}
.news__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}
.news__tab {
  gap: 0.6rem;
  color: #006FA0;
  background-color: #DFEAEF;
  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;
  width: 17rem;
  padding: 1.2rem 2.4rem;
  border-radius: 1rem 1rem 0 0;
  border: none;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
@media screen and (max-width: 768px) {
  .news__tab {
    padding: 1.2rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.news__tab .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .news__tab .icon {
    display: none;
  }
}
.news__tab .label {
  font-size: 1.4rem;
  line-height: 1;
}
.news__tab.is-active {
  color: #ffffff;
  background-color: #006FA0;
}
@media (hover: hover) and (pointer: fine) {
  .news__tab:hover {
    opacity: 0.8;
  }
}
.news__contents {
  margin-left: calc(50% - 50vw + var(--inner-padding-inline));
  margin-right: calc(50% - 50vw + var(--inner-padding-inline));
  background-color: #006FA0;
  border-radius: 1rem;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}
@media screen and (max-width: 768px) {
  .news__contents {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    -webkit-transform: translateY(2rem);
            transform: translateY(2rem);
  }
}
.news__contents .contents-inner {
  width: 100%;
  max-width: 124rem;
  margin: 0 auto;
  border: 1px solid #006FA0;
  border-radius: 0 1rem 1rem 1rem;
  background-color: #ffffff;
  padding: 2.4rem;
  -webkit-transform: translateY(-5rem);
          transform: translateY(-5rem);
}
@media screen and (max-width: 768px) {
  .news__contents .contents-inner {
    border-radius: 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding: 2.4rem var(--inner-padding-inline);
    -webkit-transform: translateY(-2rem);
            transform: translateY(-2rem);
  }
}
.news__panel {
  display: none;
}
.news__panel.is-active {
  display: block;
}
.news__panel .panel-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .news__panel .panel-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.news__panel .panel-contents .newslist {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.news__panel .panel-contents .newslist__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
}
.news__panel .panel-contents .newslist__lists .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .news__panel .panel-contents .newslist__lists .list {
    gap: 1rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news__panel .panel-contents .newslist__lists .list .date {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #006FA0;
  line-height: 1;
  width: 10rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10rem;
          flex: 0 0 10rem;
  border-right: 1px solid #006FA0;
}
@media screen and (max-width: 768px) {
  .news__panel .panel-contents .newslist__lists .list .date {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.news__panel .panel-contents .newslist__lists .list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  text-decoration: none;
  color: #333333;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
@media (hover: hover) and (pointer: fine) {
  .news__panel .panel-contents .newslist__lists .list a:hover {
    color: #006FA0;
  }
}
@media screen and (max-width: 768px) {
  .news__panel .panel-contents .newslist__lists .list a {
    width: 100%;
  }
}
.news__panel .panel-contents .newslist__lists .list a .link-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .news__panel .panel-contents .newslist__lists .list a .link-text {
    font-size: 1.4rem;
    white-space: normal;
  }
}
.news__panel .panel-contents .newslist__lists .list a img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.news__panel .panel-contents .more-btn a {
  text-decoration: none;
  color: #006FA0;
  background-color: #DFEAEF;
  border: 1px solid #006FA0;
  padding: 1.2rem 2.4rem;
  border-radius: 6rem;
  font-size: 1.4rem;
  font-weight: 700;
  width: 13rem;
  text-align: center;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
@media (hover: hover) and (pointer: fine) {
  .news__panel .panel-contents .more-btn a:hover {
    background-color: #006FA0;
    color: #ffffff;
  }
}
.news__parallax {
  left: -18rem;
  top: 15rem;
  width: inherit;
  right: 0;
  bottom: 0;
}
.news__parallax img {
  width: 34rem;
}

.service {
  padding: 8rem 0;
  background-color: #DFEAEF;
  position: relative;
}
.service .top-wrap {
  position: relative;
  z-index: 101;
}
.service::before {
  content: "";
  width: 42.2rem;
  height: 3.8rem;
  background-color: #ffffff;
  border-radius: 0 0 0 2rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .service::before {
    width: 40%;
  }
}
.service::after {
  content: url("/top/assets/images/kado-white-01.svg");
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  right: 42.2rem;
}
@media screen and (max-width: 768px) {
  .service::after {
    right: 40%;
  }
}
.service__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .service__title {
    -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: start;
    gap: 2rem;
  }
}
.service__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .service__tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.service__tab {
  gap: 0.6rem;
  color: #006FA0;
  background-color: #ffffff;
  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;
  padding: 1.2rem 2.4rem;
  border-radius: 23rem;
  border: none;
  font-size: 1.4rem;
  height: 4.6rem;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.service__tab.is-active {
  color: #ffffff;
  background-color: #006FA0;
}
@media (hover: hover) and (pointer: fine) {
  .service__tab:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .service__tab {
    height: 4.6rem;
  }
}
.service__panel {
  display: none;
}
.service__panel.is-active {
  display: block;
}
.service__grid {
  display: grid;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .service__grid {
    gap: 2rem;
  }
}
.service__grid .grid-card {
  height: 28rem;
  border-radius: 3.2rem;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
@media (hover: hover) and (pointer: fine) {
  .service__grid .grid-card:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
}
@media screen and (max-width: 768px) {
  .service__grid .grid-card {
    height: 21rem;
    border-radius: 2rem;
  }
}
.service__grid .grid-link {
  width: 100%;
  height: 100%;
  padding: 3.2rem;
  text-decoration: none;
  position: relative;
  display: block;
}
@media screen and (max-width: 768px) {
  .service__grid .grid-link {
    padding: 2.4rem;
  }
}
.service__grid .grid-link .service-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.8rem;
}
@media screen and (max-width: 768px) {
  .service__grid .grid-link .service-title {
    gap: 2rem;
  }
}
.service__grid .grid-link .service-title__logo {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}
.service__grid .grid-link .service-title__caption {
  font-size: 1.6rem;
  line-height: 2;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .service__grid .grid-link .service-title__caption {
    font-size: 1.4rem;
  }
}
.service__grid .grid-link .service-circle {
  position: absolute;
  top: -6rem;
  right: -4rem;
  z-index: 100;
  mix-blend-mode: soft-light;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.service__grid .grid-link .service-circle img {
  width: 16.8rem;
}
.service__grid .grid-link .service-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 7.2rem;
  height: 7.2rem;
  background-color: #ffffff;
  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;
  border-radius: 3.2rem 0 3.2rem 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .service__grid .grid-link .service-arrow {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 2rem 0 2rem 0;
  }
}
.service__grid .grid-link .service-arrow::before {
  content: url(/top/assets/images/kado-white-01.svg);
  width: 2rem;
  height: 2rem;
  bottom: 0;
  right: 7.2rem;
  position: absolute;
  z-index: 101;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .service__grid .grid-link .service-arrow::before {
    right: 5.6rem;
  }
}
.service__grid .grid-link .service-arrow__inner {
  width: 100%;
  overflow: hidden;
}
.service__grid .grid-link .service-arrow__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  -webkit-transform: translateX(-3.2rem);
          transform: translateX(-3.2rem);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .service__grid .grid-link .service-arrow__track {
    -webkit-transform: translateX(-4.2rem);
            transform: translateX(-4.2rem);
  }
}
.service__grid .grid-link .service-arrow__track img {
  width: 2.6rem;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (hover: hover) and (pointer: fine) {
  .service__grid .grid-link:hover .service-circle {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  .service__grid .grid-link:hover .service-arrow__track {
    -webkit-transform: translateX(2.4rem);
            transform: translateX(2.4rem);
  }
}
.service .connect-grid {
  grid-template-columns: repeat(6, 1fr);
  grid-template-areas: "hikari hikari hikari simple simple simple" "flets flets docomo docomo au au";
}
@media screen and (max-width: 768px) {
  .service .connect-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "hikari" "simple" "flets" "docomo" "au";
  }
}
.service .connect-grid .hikari-card {
  grid-area: hikari;
  background-image: url("/top/assets/images/serivce-dtihikari-bg.png");
}
@media screen and (max-width: 768px) {
  .service .connect-grid .hikari-card .grid-link .service-title__logo img {
    width: 12rem;
  }
}
.service .connect-grid .simple-card {
  grid-area: simple;
  background-image: url("/top/assets/images/serivce-simple-bg.png");
}
.service .connect-grid .flets-card {
  grid-area: flets;
  background-image: url("/top/assets/images/serivce-flets-bg.png");
}
.service .connect-grid .docomo-card {
  grid-area: docomo;
  background-image: url("/top/assets/images/serivce-docomo-bg.png");
}
.service .connect-grid .au-card {
  grid-area: au;
  background-image: url("/top/assets/images/serivce-au-bg.png");
}
.service .mobile-grid,
.service .other-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .service .mobile-grid,
  .service .other-grid {
    grid-template-columns: 1fr;
  }
}
.service .mobile-grid .dtisim-card,
.service .other-grid .dtisim-card {
  background-image: url("/top/assets/images/serivce-au-bg.png");
}
.service .mobile-grid .dtisim-card .service-title__caption,
.service .other-grid .dtisim-card .service-title__caption {
  color: #333333;
}
@media screen and (max-width: 768px) {
  .service .mobile-grid .dtisim-card .grid-link .service-title__logo img,
  .service .other-grid .dtisim-card .grid-link .service-title__logo img {
    width: 15rem;
  }
}
.service .mobile-grid .wimax-card,
.service .other-grid .wimax-card {
  background-image: url("/top/assets/images/serivce-dtihikari-bg.png");
}
@media screen and (max-width: 768px) {
  .service .mobile-grid .wimax-card .grid-link .service-title__logo img,
  .service .other-grid .wimax-card .grid-link .service-title__logo img {
    width: 25rem;
  }
}
.service .mobile-grid .serversman-card,
.service .other-grid .serversman-card {
  background-image: url("/top/assets/images/serivce-flets-bg.png");
}
@media screen and (max-width: 768px) {
  .service .mobile-grid .serversman-card .grid-link .service-title__logo img,
  .service .other-grid .serversman-card .grid-link .service-title__logo img {
    width: 25rem;
  }
}
.service .mobile-grid .ubic-card,
.service .other-grid .ubic-card {
  background-image: url("/top/assets/images/serivce-simple-bg.png");
}
@media screen and (max-width: 768px) {
  .service .mobile-grid .ubic-card .grid-link .service-title__logo img,
  .service .other-grid .ubic-card .grid-link .service-title__logo img {
    width: 11rem;
  }
}
.service .mobile-grid .vps-card,
.service .other-grid .vps-card {
  background-image: url("/top/assets/images/serivce-dtihikari-bg.png");
}
@media screen and (max-width: 768px) {
  .service .mobile-grid .vps-card .grid-link .service-title__logo img,
  .service .other-grid .vps-card .grid-link .service-title__logo img {
    width: 25rem;
  }
}
.service__parallax {
  right: -9rem;
  bottom: -8rem;
  width: 43.8rem;
  height: 34.8rem;
  left: auto;
  top: auto;
}
.service__parallax img {
  width: 43.8rem;
}

.campaign {
  background-color: #006FA0;
  padding: 8rem 0;
  position: relative;
}
.campaign::before {
  content: "";
  width: 42.2rem;
  height: 3.8rem;
  background-color: #DFEAEF;
  border-radius: 0 0 2rem 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .campaign::before {
    width: 40%;
  }
}
.campaign::after {
  content: url("/top/assets/images/kado-primarylight-01.svg");
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  left: 42.2rem;
}
@media screen and (max-width: 768px) {
  .campaign::after {
    left: 40%;
  }
}
.campaign__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .campaign__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.campaign__textarea {
  width: 24rem;
  padding-top: 4rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24rem;
          flex: 0 0 24rem;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .campaign__textarea {
    padding-top: 2rem;
    padding-left: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.campaign__textarea .common-title {
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .campaign__textarea .common-title {
    margin-bottom: 2rem;
  }
}
.campaign__carousel {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 1;
  margin-right: calc(50% - 50vw);
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .campaign__carousel {
    padding-left: 0;
  }
}
.campaign__carousel .slide__label {
  padding: 0 1.2rem;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  border-radius: 1rem 1rem 0 0;
  width: 13.5rem;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
.campaign__carousel .slide__thumb {
  border-radius: 0 1rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .campaign__carousel .slide__thumb img {
    width: 100%;
  }
}
.campaign__carousel .slide__caption {
  padding: 2rem;
  background-color: #ffffff;
  font-weight: 700;
  border-radius: 0 0 1rem 1rem;
}
.campaign__carousel .slide__btn {
  text-align: center;
  margin-top: 1.6rem;
}
.campaign__carousel .slide__btn a {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  padding: 1.2rem 3.2rem;
  background-color: #006FA0;
  border-radius: 3rem;
  text-decoration: none;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
@media (hover: hover) and (pointer: fine) {
  .campaign__carousel .slide__btn a:hover {
    background-color: #05577a;
  }
}
.campaign__carousel .slide.dti-hikari .slide__label {
  background-color: #054CE8;
}
.campaign__carousel .slide.dti-simple .slide__label {
  background-color: #09CAEF;
}
.campaign__carousel .slide.dti-docomo .slide__label {
  background-color: #BA272D;
}
.campaign__carousel .slide.au-hikari .slide__label {
  background-color: #EB5505;
}
.campaign .mv-swiper {
  margin-left: -2rem;
  width: calc(100% + 2rem);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .campaign .mv-swiper {
    margin-left: 0;
    width: 100%;
  }
}
.campaign .mv-swiper .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.campaign .mv-swiper .swiper-wrapper .swiper-slide {
  width: 26rem;
}
@media screen and (max-width: 768px) {
  .campaign .mv-swiper .swiper-wrapper .swiper-slide {
    width: 60vw;
  }
}
.campaign .mv-swiper .swiper-wrapper .swiper-slide .mv-card {
  display: block;
}
.campaign .mv-swiper__pagination {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
}
.campaign .mv-swiper__pagination .swiper-pagination-current,
.campaign .mv-swiper__pagination .swiper-pagination-total {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
}
.campaign .mv-swiper__prev, .campaign .mv-swiper__next {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  max-width: 2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2rem;
          flex: 0 0 2rem;
  /* flexで潰されるのをふせぐ */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.campaign .mv-swiper__fraction {
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}
.campaign .mv-swiper__fraction .sep {
  margin: 0 0.4rem;
}

.about {
  padding: 8rem 0;
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
.about__textarea {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 44rem;
          flex: 0 1 44rem;
}
.about__textarea .common-title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .about__textarea .common-title {
    margin-bottom: 3rem;
  }
}
.about__textarea .caption {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .about__textarea .caption {
    font-size: 1.4rem;
  }
}
.about__image {
  margin-right: calc(50% - 50vw);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  margin-top: 4rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__image {
    margin-right: 0;
    margin-top: 0;
  }
}
.about__image .about-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.about__image .about-bg img {
  width: clamp(50rem, 60vw, 82rem);
}
@media screen and (max-width: 768px) {
  .about__image .about-bg img {
    width: 100%;
  }
}
.about .aniversary-logo {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.about .aniversary-logo img {
  width: 15.6rem;
}
@media screen and (max-width: 768px) {
  .about .aniversary-logo img {
    width: 10rem;
  }
}

.logo-strip {
  overflow: hidden;
  border-top: 1px solid #006FA0;
  border-bottom: 1px solid #006FA0;
  padding: 4rem 0;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .logo-strip {
    padding: 2rem 0;
  }
}
.logo-strip__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: logo-strip-scroll 40s linear infinite;
          animation: logo-strip-scroll 40s linear infinite;
}
@-webkit-keyframes logo-strip-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes logo-strip-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.member {
  padding: 8rem 0;
  background-color: #DFEAEF;
}
.member .common-title {
  margin-bottom: 4.8rem;
}
.member__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12rem;
}
@media screen and (max-width: 768px) {
  .member__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.member__content .title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 15rem;
          flex: 0 0 15rem;
}
@media screen and (max-width: 768px) {
  .member__content .title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
}
.member__content .title__num {
  font-family: "Outfit", sans-serif;
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  background-color: #006FA0;
  border-radius: 4.4rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .member__content .title__num {
    margin-bottom: 0;
    padding: 0 2rem;
  }
}
.member__content .title__text {
  font-size: 2rem;
  border: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  background-image: none;
}
.member .mypage {
  padding-bottom: 4rem;
  border-bottom: 1px solid #ABCBD9;
}
.member .mypage__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  grid-template-areas: "support support" "mydti mymail";
}
@media screen and (max-width: 768px) {
  .member .mypage__content {
    grid-template-areas: "support support" "mydti mydti" "mymail mymail";
    gap: 2rem;
  }
}
.member .mypage__content .support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 4px 8px rgba(31.46, 31.46, 31.46, 0.1);
          box-shadow: 0px 4px 8px rgba(31.46, 31.46, 31.46, 0.1);
  grid-area: support;
}
@media screen and (max-width: 768px) {
  .member .mypage__content .support {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.member .mypage__content .support__title {
  background-color: #006FA0;
  color: #ffffff;
  font-size: 2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 19rem;
          flex: 0 1 19rem;
  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;
  border-radius: 1rem 0 0 1rem;
}
@media screen and (max-width: 768px) {
  .member .mypage__content .support__title {
    border-radius: 1rem 1rem 0 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 1.2rem;
    font-size: 1.8rem;
  }
}
.member .mypage__content .support__lists {
  background-color: #ffffff;
  padding: 2rem 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  border-radius: 0 1rem 1rem 0;
}
@media screen and (max-width: 768px) {
  .member .mypage__content .support__lists {
    padding: 2rem;
    border-radius: 0 0 1rem 1rem;
  }
}
.member .mypage__content .support__lists .list__link {
  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;
  gap: 2rem;
  text-decoration: none;
  color: #333333;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
@media (hover: hover) and (pointer: fine) {
  .member .mypage__content .support__lists .list__link:hover {
    color: #006FA0;
  }
}
@media screen and (max-width: 768px) {
  .member .mypage__content .support__lists .list__link {
    font-size: 1.4rem;
  }
}
.member .mypage__content .mymail .link,
.member .mypage__content .mydti .link {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 4px 8px rgba(31.46, 31.46, 31.46, 0.1);
          box-shadow: 0px 4px 8px rgba(31.46, 31.46, 31.46, 0.1);
}
.member .mypage__content .mymail .link__image,
.member .mypage__content .mydti .link__image {
  border-radius: 1rem 0 0 1rem;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12rem;
          flex: 0 0 12rem;
}
@media screen and (max-width: 768px) {
  .member .mypage__content .mymail .link__image,
  .member .mypage__content .mydti .link__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10rem;
            flex: 0 0 10rem;
  }
}
.member .mypage__content .mymail .link__image img,
.member .mypage__content .mydti .link__image img {
  width: 12rem;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.member .mypage__content .mymail .link__label,
.member .mypage__content .mydti .link__label {
  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: 2rem 2.4rem;
  background-color: #ffffff;
  border-radius: 0 1rem 1rem 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
@media screen and (max-width: 768px) {
  .member .mypage__content .mymail .link__label,
  .member .mypage__content .mydti .link__label {
    padding: 1.6rem;
  }
}
.member .mypage__content .mymail .link__label .text,
.member .mypage__content .mydti .link__label .text {
  font-size: 2rem;
  color: #333333;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.member .mypage__content .mymail .link__label .arrow,
.member .mypage__content .mydti .link__label .arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #006FA0;
  background-color: #ffffff;
  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: end;
  overflow: hidden;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.member .mypage__content .mymail .link__label .arrow__inner,
.member .mypage__content .mydti .link__label .arrow__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  will-change: transform;
  -webkit-transform: translateX(-0.75rem);
          transform: translateX(-0.75rem);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.member .mypage__content .mymail .link__label .arrow__inner img,
.member .mypage__content .mydti .link__label .arrow__inner img {
  width: 1.2rem;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (hover: hover) and (pointer: fine) {
  .member .mypage__content .mymail .link:hover .link__image img,
  .member .mypage__content .mydti .link:hover .link__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .member .mypage__content .mymail .link:hover .link__label,
  .member .mypage__content .mydti .link:hover .link__label {
    background-color: #05577a;
  }
  .member .mypage__content .mymail .link:hover .link__label .text,
  .member .mypage__content .mydti .link:hover .link__label .text {
    color: #ffffff;
  }
  .member .mypage__content .mymail .link:hover .link__label .arrow,
  .member .mypage__content .mydti .link:hover .link__label .arrow {
    background-color: #006FA0;
  }
  .member .mypage__content .mymail .link:hover .link__label .arrow__inner,
  .member .mypage__content .mydti .link:hover .link__label .arrow__inner {
    -webkit-transform: translateX(2.5rem);
            transform: translateX(2.5rem);
  }
}
.member .mypage__content .mymail {
  grid-area: mymail;
}
.member .mypage__content .mydti {
  grid-area: mydti;
}
.member .setting {
  padding-top: 4rem;
  border-top: 1px solid #ffffff;
}
.member .setting__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 12rem);
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .member .setting__content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 10rem);
    gap: 2rem;
  }
}
.member .setting__content .card__link {
  text-decoration: none;
  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: 2rem 2.4rem;
  background-color: #ffffff;
  border-radius: 1rem;
  height: 100%;
  -webkit-box-shadow: 0px 4px 8px rgba(31.46, 31.46, 31.46, 0.1);
          box-shadow: 0px 4px 8px rgba(31.46, 31.46, 31.46, 0.1);
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
@media screen and (max-width: 768px) {
  .member .setting__content .card__link {
    padding: 1.6rem;
    gap: 1rem;
  }
}
.member .setting__content .card__link .text {
  font-size: 2rem;
  line-height: 1.5;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8rem;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
@media screen and (max-width: 768px) {
  .member .setting__content .card__link .text {
    -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: start;
    gap: 0.4rem;
    padding: 0;
    font-size: 1.4rem;
  }
}
.member .setting__content .card__link .arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #006FA0;
  background-color: #ffffff;
  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: end;
  overflow: hidden;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.member .setting__content .card__link .arrow__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  will-change: transform;
  -webkit-transform: translateX(-0.75rem);
          transform: translateX(-0.75rem);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.member .setting__content .card__link .arrow__inner img {
  width: 1.2rem;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (hover: hover) and (pointer: fine) {
  .member .setting__content .card__link:hover {
    background-color: #05577a;
  }
  .member .setting__content .card__link:hover .text {
    color: #ffffff;
  }
  .member .setting__content .card__link:hover .arrow {
    background-color: #006FA0;
  }
  .member .setting__content .card__link:hover .arrow__inner {
    -webkit-transform: translateX(2.5rem);
            transform: translateX(2.5rem);
  }
}

.dti-links {
  padding: 8rem 0;
  background-color: #05577a;
}
@media screen and (max-width: 768px) {
  .dti-links {
    padding: 4rem 0;
  }
}
.dti-links__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .dti-links__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.dti-links__inner .link {
  height: 12rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.dti-links__inner .link__button {
  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;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid #ffffff;
  text-decoration: none;
  padding: 0 4rem;
  -webkit-box-shadow: 0px 4px 8px rgba(31.46, 31.46, 31.46, 0.1);
          box-shadow: 0px 4px 8px rgba(31.46, 31.46, 31.46, 0.1);
  position: relative;
}
@media screen and (max-width: 768px) {
  .dti-links__inner .link__button {
    padding: 1.6rem;
  }
}
.dti-links__inner .link__button .textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  line-height: 1;
}
.dti-links__inner .link__button .textarea__sub {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .dti-links__inner .link__button .textarea__sub {
    font-size: 1.4rem;
  }
}
.dti-links__inner .link__button .textarea__title {
  font-size: 4rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .dti-links__inner .link__button .textarea__title {
    font-size: 3rem;
  }
}
.dti-links__inner .link__button .arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #006FA0;
  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: end;
  overflow: hidden;
  -webkit-transition-property: mix-blend-mode;
  transition-property: mix-blend-mode;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.dti-links__inner .link__button .arrow__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  will-change: transform;
  -webkit-transform: translateX(-0.75rem);
          transform: translateX(-0.75rem);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.dti-links__inner .link__button .arrow__inner img {
  width: 1.2rem;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (hover: hover) and (pointer: fine) {
  .dti-links__inner .link__button:hover {
    mix-blend-mode: luminosity;
  }
  .dti-links__inner .link__button:hover .arrow__inner {
    -webkit-transform: translateX(2.5rem);
            transform: translateX(2.5rem);
  }
}
.dti-links__inner .club-off .link__button {
  background-image: url(/top/assets/images/dticluboff.webp);
  background-size: cover;
}
.dti-links__inner .club-off .link__button .textarea {
  color: #ffffff;
}
.dti-links__inner .club-off .link__button .arrow {
  background-color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .dti-links__inner .club-off .link__button:hover .arrow {
    background-color: #006FA0;
  }
}
.dti-links__inner .tips-station .link__button {
  background-image: url(/top/assets/images/dtistation.webp);
  background-size: cover;
}
.dti-links__inner .tips-station .link__button .textarea {
  color: #333333;
}
.dti-links__inner .tips-station .link__button .arrow {
  background-color: #006FA0;
}
@media (hover: hover) and (pointer: fine) {
  .dti-links__inner .tips-station .link__button:hover .arrow {
    background-color: #ffffff;
  }
}