@charset "utf-8";

@font-face {
  font-family: "DIN Alternate";
  src: url('../fonts/DINAlternate-Bold.ttf');
}

@font-face {
  font-family: "Noto Sans JP";
  src: url('../fonts/NotoSansJP.ttf');
}

/*-----------------------------------------------------------
reset
-----------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  overflow: auto;
}

/* 
body {
  font-family: "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
} */

table, pre, code, select, input, textarea, kbd, var, ins, del, samp, h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}

br {
  vertical-align: middle;
  /* FFで改行あるなしで高さが微妙に変わるのを回避 */
}

address, cite, dfn, em, var {
  font-style: normal;
}

img {
  border: none;
  vertical-align: bottom;
  line-height: 1;
  -ms-interpolation-mode: bicubic;
  width: auto;
  max-width: 100%;
  height: auto;
  /* 大きい画像縮小してもキレイ */
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

ul, ol, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

form label {
  cursor: pointer;
}

select option {
  padding: 0 5px;
}

input, textarea {
  margin: 1px;
  padding: 2px;
  line-height: 1;
}

textarea {
  overflow: auto;
}

input, button, textarea, select, optgroup, option {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

a {
  cursor: pointer;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

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

  /* iphone用inputタグの初期化 */
  input[type="button"],
  input[type="reset"],
  input[type="submit"] {
    -webkit-appearance: none;
    margin-bottom: 10px;
  }
}

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
  width: 100% !important;
  color: #333;
  line-height: 1.6;
  overflow: hidden;
  font-size: 1.8rem;
  /* max-width: 1920px; */
  margin: 0 auto;
}

body.open {
  height: 150vh;
}

/*リンク表示方法*/

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  color: #1F58A6;
}

a img {
  transition: .5s;
}

/*-----------------------------------------------------------
PCサイズ
-----------------------------------------------------------*/

.pc {
  display: block;
}

.sp {
  display: none;
}

.pc-flex {
  display: flex;
}

.sp-flex {
  display: none;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hArea {
  width: 100%;
  z-index: 999;
  background: #fff;
  height: 96px;
  position: relative;
}

.hLogo {
  position: relative;
  z-index: 9999;
}

.hLogo img {
  display: block;
}

.subHead {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  background-color: #EFF4FF;
  max-height: 0;
  height: 100%;
  overflow: hidden;
  transition: all .3s ease;
}

.subHead.active {
  max-height: 71px;
}

.header-pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.6rem;
  height: 100%;
  padding: 0 48px;
  border-bottom: 1px solid #D5D5D5;
}

.nav-pc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.nav-pc .nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}

.nav-pc .nav-item-last {
  font-weight: 500;
  color: #1F58A6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-pc .nav-trigger {
  font-weight: 500;
  color: #1F58A6;
  position: relative;
}

.nav-pc .nav-trigger:hover {
  cursor: pointer;
}

.nav-pc .nav-item.active .nav-trigger {
  height: 100%;
  line-height: 96px;
}

.nav-pc .nav-item.active .nav-trigger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: #1F58A6;
}

.nav-pc .nav-child-list {
  position: absolute;
  z-index: 0;
  width: max-content;
  bottom: 0;
  transform: translateY(100%);
  height: 71px;
  opacity: 0;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  pointer-events: none;
}

.nav-pc .nav-child-list.nav-last {
  left: 0;
  width: 100%;
}

.nav-pc .nav-item.active .nav-child-list {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.nav-pc .nav-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.nav-pc .nav-child:hover {
  color: #1F58A6;
}

.hFunction {
  display: flex;
  align-items: center;
}

.hFunction .select-lang {
  display: flex;
  align-items: center;
  border-left: 1px solid #D5D5D5;
  border-right: 1px solid #D5D5D5;
  padding: 0 16px;
  margin-right: 24px;
  color: #333;
  height: 18px;
}

.hFunction .hBtn {
  width: 151px;
  height: 48px;
  background-color: #1F58A6;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
  border-radius: 30px;
}

.select-lang select {
  background: transparent;
  padding: 5px;
  font-size: 13px;
  line-height: 1;
  border: 0;
  outline: 0px;
  border-radius: 0;
  height: 34px;
  color: #333;
}

.mainArea {
  width: 100%;
  /* max-width: 1740px; */
}

.mv_bottom {
  position: relative;
  padding: 40px 0;
  background: url("../img/top/mv_bg.png") no-repeat center / cover;
}

.mv-text {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  color: #fff;
  line-height: 1;
}

.mv-text .mv-title {
  font-size: 32px;
  font-weight: bold;
}

.mv-text .mv-subtitle {
  font-size: 24px;
}

.mv-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.btn-common {
  width: 320px;
  height: 64px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #002B89;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 7vw;
  transition: all .3s ease;
}

.btn-common:hover {
  cursor: pointer;
  background-color: #D1DDF8;
}

.mv_person {
  position: absolute;
  bottom: 0;
  right: 60px;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  color: #1F58A6;
  margin-bottom: 40px;
  text-align: center;
}

section {
  padding: 72px 0;
}

.section-topic {
  background-color: #EFF4FF;
}

.topic-slider {
  max-width: 936px;
  margin: 0 auto;
}

.topic-slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.topic-slider .slide-item {
  margin: 0 36px;
}

.topic-slider .slick-arrow {
  z-index: 99;
  top: calc(50% - 28px);
}

.topic-slider .slick-prev {
  left: -105px;
  background: url("data:image/svg+xml,%3Csvg width='34' height='57' viewBox='0 0 34 57' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M33 0.599971L0.999999 28.6L33 56.6' stroke='%231F58A6'/%3E%3C/svg%3E%0A") no-repeat center !important;
}

.topic-slider .slick-prev::before {
  content: "";
}

.topic-slider .slick-next {
  right: -105px;
  background: url("data:image/svg+xml,%3Csvg width='34' height='57' viewBox='0 0 34 57' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0.599971L33 28.6L0.999999 56.6' stroke='%231F58A6'/%3E%3C/svg%3E%0A") no-repeat center !important;
}

.topic-slider .slick-next:before {
  content: "";
}

.topic-slider .slick-dots {
  position: relative;
  bottom: 0;
  margin-top: 17px;
}

.topic-slider .slick-dots li {
  background-color: #757575;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border-radius: 50%;
}

.topic-slider .slick-dots button {
  width: 8px;
  height: 8px;
}

.topic-slider .slick-dots button::before {
  content: none;
}

.topic-slider .slick-dots li.slick-active {
  background-color: #1F58A6;
}


.section-service {
  padding-left: 25px;
  padding-right: 25px;
}

.service-block {
  display: flex;
  justify-content: center;
  max-width: 1058px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 40px;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-img {
  flex: 0 0 508px;
}

.service-content {
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 32px;
}

.service-1 .service-content {
  background-color: #002B89;
}

.service-2 .service-content {
  background-color: #E31F73;
}

.service-3 .service-content {
  background-color: #5EBAA1;
}

.service-icon {
  margin: 0 auto;
  margin-bottom: 24px;
}

.service-1 .service-icon {
  max-width: 240px;
  margin-bottom: 32.42px;
}

.service-2 .service-icon {
  max-width: 342.8px;
}

.service-3 .service-icon {
  max-width: 382.6px;
}

.service-title {
  font-size: 24px;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 24px;
}

.service-subtitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 18px;
  line-height: 28px;
  text-align: start;
}

.service-btn {
  margin: 24px auto 0;
}

.section-news {
  background-color: #EFF4FF;
  padding-left: 25px;
  padding-right: 25px;
}

.news-block {
  border-radius: 14px;
  max-width: 1056px;
  margin: 0 auto;
  overflow: hidden;
}

.news-tabs {
  display: flex;
}

.news-tabs a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  background-color: #1F58A6;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.news-tabs a.inactive {
  background-color: rgba(51, 51, 51, 0.2);
  color: #333;
}

.news-container {
  padding: 8px 48px 32px;
  background-color: #fff;
}

.news-list {
  margin-bottom: 32px;
}

.news-item {
  padding: 24px 0;
  border-bottom: 1px solid #D5D5D5;
}

.news-item a {
  color: #333;
}

.news-item-info {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 16px;
}

.news-item-info .tag {
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 105px;
  height: 24px;
  background: rgba(213, 213, 213, 0.5);
}

.news-item-title {
  font-size: 18px;
}

.news-btn {
  margin: 0 auto;
  border: 1px solid #002B89;
  color: #002B89;
}

.about-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 988px;
  margin: 0 auto;
}

.section-about.about-ir {
  background-color: #EFF4FF;
}

.section-about.about-ir .about-block {
  flex-direction: row-reverse;
}

.section-about.about-ir .about-content {
  transform: translateX(50px);
}

.about-content {
  max-width: 373px;
}

.about-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 32px;
  color: #1F58A6;
}

.about-desc {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 32px;
}

.about-btn {
  color: #fff;
  background-color: #1F58A6;
}

.about-img {
  max-width: 546.67px;
  border-radius: 14px;
  overflow: hidden;
}

footer {
  background-color: rgba(213, 213, 213, 0.2);
  padding: 52.6px 25px;
}

.footer-top {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
}

.footer-label, .footer-list li a {
  font-size: 16px;
  line-height: 28px;
  color: #333;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-label {
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-label:last-child {
  margin-bottom: 0;
}

.footer-col:last-child .footer-label {
  display: flex;
}


.footer-list li a:hover {
  color: #1F58A6;
}

.footer-middle {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 30px 0;
  border-top: 1px solid #D5D5D5;
  border-bottom: 1px solid #D5D5D5;
  max-width: 1056px;
  margin: 0 auto;
  font-size: 16px;
}

.footer-middle a {
  color: #333;
}

.footer-middle a:hover {
  color: #1F58A6;
}

.footer-bottom {
  padding: 40px 0;
  display: flex;
  align-items: center;
  max-width: 1056px;
  margin: 0 auto;
  gap: 53.21px;
}

.copy-right {
  font-size: 14px;
  line-height: 28px;
  color: #333;
}

.scroll-to-top {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  background-color: #1F58A6;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='15' viewBox='0 0 24 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.1667 13.4335L12.3333 1.76685L1.5 13.4335' stroke='white' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  bottom: 59.4px;
  right: 8.75vw;
  z-index: 100;
  display: none;
}

.scroll-to-top:hover {
  cursor: pointer;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .pc-flex {
    display: none;
  }

  .sp-flex {
    display: flex;
  }

  .btn-common {
    max-width: 320px;
    width: 100%;
  }

  .hArea {
    height: 56px;
    border-bottom: 1px solid #D5D5D5;
  }

  .header-sp {
    height: 100%;
  }

  .header-main {
    background: #fff;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 9999;
    border-bottom: 1px solid #D5D5D5;
  }

  .menu-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 9999;
  }

  .menu-trigger:hover {
    cursor: pointer;
  }

  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .hamburger {
    position: relative;
    width: 18px;
    height: 14px;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1F58A6;
    border-radius: 4px;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 6px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(17px) rotate(-45deg);
    transform: translateY(17px) rotate(-45deg);
    top: -10px;
  }

  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-17px) rotate(45deg);
    transform: translateY(-17px) rotate(45deg);
    bottom: -12px;
  }

  .menu-trigger .text {
    margin-top: 3px;
    font-size: 10px;
    line-height: 14px;
  }

  .menu-trigger .text.close {
    display: none;
  }

  .menu-trigger .text.show {
    display: block;
  }

  .menu-trigger.active .text.close {
    display: block;
  }

  .menu-trigger.active .text.show {
    display: none;
  }

  /*gnav*/
  .gnav {
    /* display: none; */
    height: 150vh;
    position: absolute;
    width: 100%;
    z-index: 999;
    transition: .5s;
    left: 0;
    top: 0;
    /* opacity: 0; */
    /* display: none; */
    transform: translateY(-150vh);
    overflow: auto;
  }

  .gnav__overlay {
    background: rgba(0, 0, 0, .5);
    /* display: none; */
    position: absolute;
    width: 100%;
    z-index: 1;
    inset: 0;
  }

  .gnav.active {
    width: 100%;
    /* opacity: 1; */
    transform: translateY(0);
  }

  .gnav__menu {
    display: block;
    width: 100%;
    justify-content: start;
  }

  .gnav__wrap {
    align-items: baseline;
    height: auto;
    justify-content: center;
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 0;
    background: #fff;
    padding: 56px 0 20px;
    transform: translate(0, -100%);
    transition: .5s;
  }

  .active .gnav__wrap {
    transform: translate(0, 0);
  }


  .nav-trigger, .nav-child {
    width: 100%;
    height: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
    padding: 0 32px;
    border-bottom: 1px solid #D5D5D5;
  }

  .nav-child:hover {
    cursor: pointer;
    background-color: #1F58A6;
    color: #fff;
  }

  .gnav .nav-item-last {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.8rem;
    color: #1F58A6;
    font-weight: bold;
    padding: 0 32px;
    height: 58px;
    border-bottom: 1px solid #D5D5D5;
  }

  .nav-trigger {
    color: #1F58A6;
    font-weight: bold;
    transition: all .3s ease;
  }

  .nav-trigger .language {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #333;
    font-size: 1.3rem;
  }

  .nav-item.active .nav-trigger img {
    transform: rotate(180deg);
  }

  .nav-child-list {
    overflow: hidden;
    max-height: 0;
    background-color: #EFF4FF;
    transition: max-height .3s ease-out;
  }

  .nav-item.active .nav-child-list {
    max-height: 100vh;
    transition: max-height .5s ease-in;
  }

  .gnav .hBtn {
    width: 279px;
    height: 48px;
    background-color: #1F58A6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
    margin: 0 auto;
    margin-top: 20px;
  }

  .closeBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 0 auto;
    margin-top: 20px;
    border: 0;
    background-color: transparent;
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
  }

  .mv-top {
    height: 52.56vw;
  }

  .mv_bottom {
    height: 50vw;
    padding: 2.8vw 25px;
    background: url("../img/top/mv_bg_top_sp.png") no-repeat center / cover;
  }

  .mv_bottom::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 29vw;
    background: url("../img/top/mv_bg_sp.png") no-repeat center / cover;
  }

  .mv-text {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 8.14vw;
    position: relative;
    z-index: 2;
    line-height: 1.375;
  }

  .mv-text .mv-title {
    font-size: 5.58vw;
    margin-bottom: 5px;
  }

  .mv-text .mv-subtitle {
    font-size: 3.72vw;
  }

  .mv-btn-group {
    gap: 16px;
    position: relative;
    z-index: 2;
  }

  .section-mv .mv-btn {
    width: 100%;
    height: 11.62vw;
    font-size: 3.72vw;
  }

  .mv_person {
    width: 31.78vw;
    right: 4.11vw;
    top: -8.8vw;
    bottom: unset;
  }

  section {
    padding: 9.3vw 0;
  }

  .section-title {
    font-size: 6.51vw;
    line-height: 9.4vw;
    margin-bottom: 7.44vw;
  }

  .topic-slider .slide-item {
    margin: 0 12px;
    width: 55.814vw;
    opacity: .3;
  }

  .topic-slider .slick-center {
    opacity: 1;
  }

  .topic-slider .slick-prev {
    left: 20px;
  }

  .topic-slider .slick-next {
    right: 20px;
  }

  .topic-slider {
    max-width: 100vw;
  }

  .service-block {
    flex-direction: column;
  }

  .service-img {
    flex: unset;
  }

  .service-content {
    padding: 32px 21px;
  }

  .service-icon {
    margin-bottom: 3.72vw;
  }

  .service-1 .service-icon {
    max-width: 78.6vw;
    margin-bottom: 3.789vw;
  }

  .service-2 .service-icon {
    max-width: 66.73vw;
  }

  .service-3 .service-icon {
    max-width: 66.73vw;
  }

  .service-title {
    font-size: 5.12vw;
    line-height: 7.67vw;
    white-space: nowrap;
    margin-bottom: 1.86vw;
  }

  .service-subtitle {
    font-size: 3.721vw;
    line-height: 5.388vw;
    margin-bottom: 1.86vw;
  }

  .service-desc {
    font-size: 3.721vw;
    line-height: 5.388vw;
  }

  .service-btn {
    margin: 3.721vw auto 0;
  }

  .news-tabs a {
    height: 56px;
  }

  .news-container {
    padding: 16px 24px 32px;
  }

  .news-list {
    margin-bottom: 24px;
  }

  .news-item {
    padding: 16px 0;
  }

  .news-item-info {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .news-item-title {
    font-size: 16px;
  }

  .section-about {
    padding-left: 49px;
    padding-right: 49px;
  }

  .section-about.about-ir .about-content {
    transform: translateX(0);
  }

  .about-content {
    max-width: 100%;
  }

  .about-title {
    font-size: 6.51vw;
    margin-bottom: 32px;
    text-align: center;
  }

  .about-desc {
    font-size: 3.721vw;
    line-height: 6.51vw;
    margin-bottom: 32px;
  }

  .about-img {
    max-width: 100%;
    margin-bottom: 32.8px;
  }

  .about-btn {
    margin: 0 auto;
  }

  /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
  footer {
    padding: 40px 25px;
  }

  .footer-top {
    padding: 0 28px;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-label {
    font-size: 18px;
  }

  .footer-middle {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 40px 26px;
  }

  .footer-middle a {
    color: #333;
    font-size: 16px;
  }


  .footer-bottom {
    padding: 48px 0 0;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }

  .scroll-to-top {
    right: 25px;
    bottom: 40px;
  }
}
/* max-width: 414px ここまで */
@media screen and (max-width: 414px) {
  .mv-text .mv-title.en {
    font-size: 18px;
  }
  .mv_person.en {
    width: 31.78vw;
    right: 0.11vw;
    top: -5.8vw;
    bottom: unset;
  }
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */