@charset "UTF-8";

:root {
  --color-navy: #44769A;
}

body {
  color: #454545;
}

div.ibd-note button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none
}

div.ibd-note {
  max-width: none;
  width: 100%;
  margin-bottom:80px;
  margin-top:40px;
}

div.ibd-note a, button {
  transition: opacity .3s;
}

@media (any-hover: hover) {
  div.ibd-note a:hover, button:hover {
    opacity: .7;
  }
}

.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

.ibd-note .inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 3vw;
  box-sizing: border-box;
}

.round-head {
  position: relative;
  margin-top: -100px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  z-index: 1;
}

.download-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  transition: opacity .3s, visibility .3s;
  z-index: 100;
}

.download-btn.is-out {
  opacity: 0;
  visibility: hidden;
}

.download-btn a {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #fff;
  padding: 10px 64px 10px 16px;
  border-top-left-radius: 8px;
  background: var(--color-navy) url(/support/assets/images/download_arrow.svg) no-repeat center right 12px / 24px auto;
}
@media screen and (max-width: 768px) {
  .download-btn {

    bottom: 0px;

  }
}

/* -------------------------------------
  mv
------------------------------------- */

.mv {
  width: 100%;
  padding: 30px 30px 120px;
  background: url(/support/assets/images/texture.png), url(/support/assets/images/sp_hand.png), url(/support/assets/images/kv_green_r.png), url(/support/assets/images/kv_green_l.png), url(/support/assets/images/kv_bg.png);
  background-repeat: no-repeat;
  background-position: center center, bottom 55px right -10%, top 0px right, bottom 50px left, bottom center;
  background-size: cover, clamp(280px,32%,480px) auto, min(11%,160px) auto, min(15%,220px) auto, cover;
  --webkit-backdrop-filter: opacity(.4);
  backdrop-filter: opacity(.4);
  box-sizing: border-box;
  border-radius: 40px;
}
  
.mv__inner {
  position: relative;
  max-width: 800px;
  height: 100%;
  margin: auto;
  box-sizing: border-box;
}

.mv__content {
  position: relative;
}

.mv__icon {
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 150%;
  color: var(--color-navy);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: #fff;
}

.mv__hgroup {
  margin-top: 24px;
}

.mv__hgroup-text {
  font-size: clamp(1.6rem, 1.4444vw, 1.8rem);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 175%;

}

.mv__hgroup-text span:nth-of-type(1) {
  letter-spacing: -0.02em;
}

.mv__hgroup-text span:nth-of-type(2) {
  letter-spacing: 0.01em;
}

.mv__hgroup-title {
  width: clamp(350px, 30.9vw, 425px);
  margin-top: 24px;
}

.mv__sup {
  display: flex;
  align-items: end;
  margin-top: 23px;
}

.mv__sup .sup {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  padding: 3px 16px;
  background-color: var(--color-navy);
  border-radius: 16px;
}

.mv__sup .sup-wrap {
  display: flex;
  align-items: center;
}

.mv__sup .department {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 120%;
  margin-left: 16px;
  padding-bottom: 3px;
}

.mv__sup .name {
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 100%;
  margin-left: 20px;
  padding-bottom: 3px;
}

.mv__sup .name span {
  font-size: 1.6rem;
  margin-left: 4px;
}

.scroll {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 50px;
  padding-left: calc(40px + 16px);
}

.scroll::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  margin-right: 16px;
  border-radius: 50%;
  background: url(/support/assets/images/scroll.svg) no-repeat center center / contain;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-fill-mode:forwards;
  animation-duration:3s;
  animation-timing-function:ease-in;
  animation-delay: 0.5s;
  animation-direction:normal;
  }
  

  @keyframes fadeInAnime{
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }
.slidein {
  animation-name: slideIn;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode:forwards;
  }
   
  @keyframes slideIn {
    0% {
      transform: translateX(180px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
    }
    40%,100% {
      opacity: 1;
    }
  }

/* -------------------------------------
  about
------------------------------------- */

.about {
  padding: 240px 0 100px;
  background-color: #F7F6F4;
}

.about__inner {
  max-width: 860px;
  margin: -180px auto 100px auto;
  padding: 0 3vw;
  box-sizing: border-box;
}

.about__wrap {
  display: flex;
  justify-content: space-between;
}

.about__images {
  width: 34.73%;
}

.about__image:nth-of-type(1) {
  width: 100%;
}

.about__image:nth-of-type(2) {
  width: 65.2%;
  margin: 80px 0 0 auto;
}

.about__desc {
  padding-top: 55px;
  margin-left: 13.8%;
}

.about__text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.4;
  color: var(--color-navy);
  text-align: center;

}


/* -------------------------------------
  movie
------------------------------------- */

.movie {

  position: relative;
  margin-top: 125px;
  padding: 0px 0 48px;
  box-sizing: border-box;
  margin:  0 auto;
}

.movie::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  aspect-ratio: 1454 / 463;
  width: 100%;
  background: url(/support/assets/images/about_bg.png) no-repeat center center / cover;

}

.movie__content {
  position: relative;
  width: 676px;
  margin: auto;
  transition: opacity .3s;
  cursor: pointer;
  
}

.movie__content::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.5);
  border: 1px solid #C7C7C7;
  border-radius: 31px;
  left: 0;
}

@media (any-hover: hover) {
  .movie__content:hover {
    opacity: .7;
  }
}

.movie__content img {
  display: block;
  width: 100%;
  aspect-ratio: 676 / 381;
  border-radius: 31px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-navy);
  padding-top: 88px;
  background: url(/support/assets/images/btn_play.svg) no-repeat center top / 73px auto;
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal__container,
.modal__overlay {
  will-change: transform;
}

.modal__overlay {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(230,243,250,.7);
  z-index: 100;
}

.modal__container {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
}

.modal__map-img {
  width: min(800px,100%);
  max-height: 80vh;
  object-fit: contain;
}

.modal__close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background-color: var(--color-navy);
  border-radius: 50%;
  cursor: pointer;
}

.modal__close::before, .modal__close::after {
  position: absolute;
  content: '';
  top: 23px;
  left: 16px;
  width: 16px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
}

.modal__close::before {
  transform: rotate(45deg);
}

.modal__close::after {
  transform: rotate(-45deg);
}

.modal__movie {
  width: min(1200px,100%);
}

.modal__movie > * {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
}

@keyframes mmfadeIn {
  from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmfadeOut {
  from { opacity: 1; }
    to { opacity: 0; }
}

.modal[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s;
}

.modal[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s;
}


/* -------------------------------------
  troubles
------------------------------------- */

.troubles-head {
  padding: 92px 0 182px;
  background: #CAE6EB url(/support/assets/images/img_troubles_00.png) no-repeat center bottom / contain;
}

.troubles-head__text {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.75;
  text-align: center;
}

.troubles-body {
  padding: 160px 0 200px;
  background-color: #fff;
  border-radius: 80px;
}

.troubles {
  position: relative;
}

.troubles + .troubles {
  margin-top: 160px;
}

.troubles__num {
  position: absolute;
  top: -4%;
  left: -4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--color-navy);
  border: 8px solid #fff;
  box-sizing: content-box;
}

.troubles__num span:nth-of-type(1) {
  font-size: 1.4rem;
}

.troubles__num span:nth-of-type(2) {
  font-size: 4rem;
}

.troubles__head img {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.troubles__content {
  padding: 0 7.25%;
  background-color: #F7F6F4;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.troubles__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10.8%;
  padding: 80px 0;
}

.troubles__items:nth-of-type(n+2) {
  border-top: 1px solid rgba(69,69,69,0.3);
}

.troubles__desc {
  flex: 1;
}

.troubles__title {
  font-size: 2.4rem;
}

.troubles__text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 16px;
}

.troubles__box {
  margin-top: 32px;
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
}

.troubles-box__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-navy);
}

.troubles__lists {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  margin-top: 8px;
}

.troubles-box__text,
.troubles__list li {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;

}

.troubles__list li::before {
  content: '・';
  letter-spacing: -0.15em;
}

.troubles__img {
  width: 40.3%;
}


/* -------------------------------------------------
  download
------------------------------------------------- */

.download {
  position: relative;
  margin-top: -80px;
  padding: 200px 0 170px;
  background-image: url(/support/assets/images/texture.png), url(/support/assets/images/footer_green_r.png), url(/support/assets/images/footer_green_l.png), url(/support/assets/images/footer_bg.png);
  background-repeat: no-repeat;
  background-position: center center, right bottom, left bottom, bottom center;
  background-size: cover, min(15%,218px) auto, min(15.2%,220px) auto, cover;
}

.download__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9.3%;
  max-width: 1032px;
  margin: auto;
}

.download__img {
  width: 23%;
}

.download__desc {
  flex: 1;
}

.download__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-navy);
}

.download__wrap {
  display: flex;
  margin-top: 40px;
}

.download__access {
  flex: 1;
}

.download__sub-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-navy);
}

.download__links {
  display: flex;
  margin-top: 20px;
  gap: 7.5%;
}

.download-links__title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.download-links__qr {
  margin-top: 10px;
}

.download-links__btn {
  display: block;
  margin-top: 16px;
}

.download-links__items:nth-of-type(2) .download-links__btn {
  margin-top: 18px;
}

.download__search {
  display: flex;
  flex-direction: column;
  width: 52.3%;
  margin-left: 4.8%;
  padding-left: 4.8%;
  border-left: 1px solid rgba(69,69,69,0.3);
}

.download-search__img {
  margin-top: 24px;
}

.download-search__text {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(69,69,69,0.75);
  margin-top: auto;
  padding-left: 1em;
  text-indent: -1em;
}

#page-top button {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  padding-left: 56px;
  cursor: pointer;
}

#page-top button::before {
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(/support/assets/images/pagetop.svg) no-repeat center center / contain;
}



/* -------------------------------------------------
  responsive
------------------------------------------------- */

@media screen and (max-width: 960px) {
  main {
    padding-top: 124px;
  }
  .about__wrap {
    flex-direction: column;
    align-items: center;
  }
  .about__images {
    display: flex;
    width: 80%;
  }
  .about__image:nth-of-type(2) {
    margin: auto 0 20px 30px;
  }
  .about__desc {
    margin: 0;
  }
}


@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .ibd-note .inner {
    padding: 0 5.8vw;
  }
  .round-head {
    margin-top: -40px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
  .download-btn a {
    padding-right: 52px;
  }

  /* mv */
  .mv {
    padding: 34px 0 424px;
    background-image: url(/support/assets/images/texture.png), url(/support/assets/images/sp_hand_sp.png), url(/support/assets/images/kv_green_sp.png), url(/support/assets/images/kv_bg_sp.png);
    background-position: center center, bottom -20px center, bottom center, bottom center;
    background-size: cover, 414px auto, 100% auto, cover;
  }
  .mv__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .mv__icon {
    position: absolute;
    top: 230px;
    left: 50%;
    transform: translateX(60%);
    font-size: 1.1rem;
    width: 72px;
    height: 72px;
  }
  .mv__hgroup {
    margin: 0;
  }
  .mv__hgroup-text {
    font-size: 1.5rem;
  }
  .mv__hgroup-title {
    width: 242px;
  }
  .mv__sup {
    align-items: stretch;
  }
  .mv__sup .sup-wrap {
    display: block;
  }
  .mv__sup .sup {
    display: grid;
    place-items: center;
    border-radius: 8px;
  }
  .mv__sup .department,
  .mv__sup .name span {
    font-size: 1.3rem;
  }
  .mv__sup .name {
    font-size: 1.5rem;
  }
  .scroll {
    display: none;
  }

  /* about */
  .about {
    padding: 240px 0 130px;
  }
  .about__inner {
    padding: 0 44px;
    margin-bottom:0;
  }
  .about__wrap {
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
  .about__images,
  .about__desc {
    display: contents;
  }
  .about__image:nth-of-type(1) {
    width: 86%;
    margin-left: auto;
    order: 2;
  }
  .about__image:nth-of-type(2) {
    width: 74%;
    margin: 0;
    order: 4;
  }
  .about__text {
    font-size: 1.2rem;
    line-height: 2.0;
    width: auto;
    margin: 0;
  }
  .about__text:nth-of-type(1) {
    order: 1;
  }
  .about__text:nth-of-type(2) {
    order: 3;
  }
  .about__text:nth-of-type(3) {
    order: 5;
  }

  /* movie */
  .movie {
    margin-top: 0px;
    padding: 36px 0 30px;
  }
  .movie::before {
    aspect-ratio: 828 / 454;
    background-image: url(/support/assets/images/about_bg_sp.png);
  }
  .movie__content {
    width: 100%;
  }
  .movie__content::before,
  .movie__content img {
    border-radius: 22px;
  }
  .play-btn {
    font-size: 1.4rem;
    padding-top: 60px;
    background-size: 48px auto;
  }
  .modal__close {
    top: 30px;
    right: 30px;
  }

  /* troubles */
  .troubles-head {
    padding: 56px 0 257px;
    background-image: url(/support/assets/images/img_troubles_00_sp.png);
  }
  .troubles-head__text {
    font-size: 2.4rem;
  }
  .troubles-body {
    padding: 98px 0 56px;
    border-radius: 40px;
  }
  .troubles + .troubles {
    margin-top: 98px;
  }
  .troubles__head img {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }
  .troubles__num {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    border-width: 4px;
  }
  .troubles__num span:nth-of-type(1) {
    font-size: 1.2rem;
  }
  .troubles__num span:nth-of-type(2) {
    font-size: 2.8rem;
  }
  .troubles__content {
    padding: 0 24px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .troubles__items {
    display: block;
    padding: 45px 0 56px;
  }
  .troubles__text {
    font-size: 1.6rem;
  }
  .troubles__box {
    margin-top: 24px;
  }
  .troubles__img {
    width: 100%;
    margin-top: 40px;
  }

  /* download */
  .download {
    padding: 160px 0;
    background-image: url(/support/assets/images/footer_green_r_sp.png), 
      url(/support/assets/images/footer_green_l_sp.png),
      url(/support/assets/images/footer_green_r_sp02.png), 
      url(/support/assets/images/footer_green_l_sp02.png), 
      url(/support/assets/images/footer_bg_sp.png);
    background-position: right top 45%, left top 45%, right bottom, left bottom, center bottom;
    background-size: 55px auto, 104px auto, 111px auto, 90px auto, cover;
  }
  .download__content {
    flex-direction: column;
  }
  .download__desc {
    display: contents;
  }
  .download__title {
    font-size: 1.6rem;
    text-align: center;
    order: 1;
  }
  .download__img {
    width: 48.7%;
    margin-top: 56px;
    order: 2;
  }
  .download__wrap {
    display: block;
    order: 3;
  }
  .download__sub-title {
    font-size: 1.6rem;
    text-align: center;
  }
  .download-links__title,
  .download-links__qr {
    display: none;
  }
  .download__links {
    margin-top: 8px;
  }
  .download__search {
    width: 100%;
    margin: 40px 0 0;
    padding: 0;
    border: none;
  }
  .download-search__text {
    margin-top: 40px;
  }
}
@media screen and (max-width: 460px) {
  .mv__content{
    padding:1em;
  }
  .mv__hgroup-text {
    font-size: 1.0rem;
}
.about__text {
  font-size: 1.1rem;
  line-height: 2.0;
  width: auto;
  margin: 0;
}
.download__sub-title {
  font-size: 1.4rem;
  text-align: center;
}
}
@media screen and (max-width: 380px) {
  .mv__icon {

    top: 260px;

}
.about__inner {
  padding: 0px;

}
  .about__text {
    font-size: 1.0rem;
    line-height: 2.0;
    width: auto;
    margin: 0;
  }
  .ibd-note-btn a {

    font-size: 1.6em!important;

}
}
.ibd-note-btn {
  display:inline-block;
  max-width:100%;
}
.ibd-note-btn a{
  display:flex;
  background-color: #44769a;
  color:#ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-size:2em;
  padding:0.5em 3em;
  align-items: center;
  font-weight: 500;
}
.round-right {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 0.65em;
  height: 0.65em;
  transform: translateX(-25%) rotate(45deg);
margin-left:1em;
}

.round-right::before, .round-right::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.15em;
}

.round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.15em;
}