/* body {
  font-family:
    "Yu Gothic",
    "Hiragino Sans",
    sans-serif;

  color: #222;
  line-height: 1.7;
}
 */
.logo {
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  /* text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.8), 
    0 4px 8px rgba(0, 0, 0, 0.8), 
    0 8px 16px rgba(0, 0, 0, 0.8); */
}

.logo a {
  color: #fff;
}

header.active .logo a {
  color: #222;
  text-shadow: none;
}

.container {
  width: min(1100px, 92%);
  margin: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  height: 58px;

  background: #23489b;
  color: #fff;

  border-radius: 999px;

  font-weight: bold;

  transition: .3s;

  &:hover {
    opacity: .8;
  }
}

.center {
  text-align: center;
}

/* =========================
      mv
    ========================= */
/* 
.mv {
  height: 600px;
  position: relative;
  overflow: hidden;
  background-image: url(../img/index/index_mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
 */
.mv {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.mv_bg {
  position: absolute;
  inset: 0;
  background:
    url("../img/index/index_mv.jpg") center / cover no-repeat;
  z-index: -2;
}

.mv::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* .mv_inner{
	width:100%;
	height:100%;
	position:relative;
	display:flex;
	align-items:center;
}
 */
.mv_photo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 500px;
  z-index: 2;
}

.mv_photo img {
  width: 100%;
  height: auto;
  display: block;
}

.mv_copy {
  position: absolute;
  /* top: 45%; */
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffff;
  text-align: left;
  overflow: hidden;
  width: min(90%, 720px);
}

.mv_copy_inner {
  display: block;
}

.mv_copy_inner {
  position: relative;
  padding: 60px 80px;
}

メインビジュアルテキスト背景 
.mv_copy_inner::before{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);

    width:820px;
    height:380px;

    background:
    radial-gradient(
        ellipse,
        rgba(16,55,130,.80) 0%,
        rgba(35,110,210,.55) 35%,
        rgba(90,185,255,.30) 70%,
        rgba(90,185,255,0) 100%
    );

    filter:blur(35px);
    z-index:-2;
    opacity: .92;
}

.mv_copy_inner::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, transparent 0%, rgb(35 110 210 / 21%) 20%, rgb(3 97 186 / 53%) 50%, rgba(35, 110, 210, .12) 80%, #00000000 100%);
    filter:blur(25px);
    z-index:-1;
}

.mv_copy h1 {
  font-size: 58px;
  margin-bottom: 16px;
  letter-spacing: .08em;
  text-shadow:
    0 3px 15px rgba(0, 0, 0, .35);
}

.mv_copy p {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: .15em;
  text-align: center;
  text-shadow:
    0 9px 15px rgb(0 0 0);
}

.mv_profile {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;

  border: 2px solid;
  border-radius: 30px;
  width: 500px;
  margin: 0 auto;
  text-shadow:
    0 9px 15px rgb(0 0 0);
}

.mv_profile span {
  /* color: #284794; */
  font-size: 25px;
  font-weight: bold;
  letter-spacing: .08em;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, .4);
  position: relative;
  /*   background-color: #dbeeff; */
  padding: 0 10px;
  border-radius: 15px;
}

.mv_profile span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 18px;
  background: rgba(255, 255, 255, .7);
}

.mv_photo.slide-in {
  overflow: hidden;
  display: block;
}

.mv_copy.slide-in {
  overflow: hidden;
  display: block;
}

/* メインビジュアル　名前 */
.mv_name_img {
  display: block;
  width: min(90vw, 600px);
  height: auto;
  margin: 0 auto 10px;
}

.mv_copy_img {
  display: block;
  width: min(80vw, 480px);
  height: auto;
  margin: 0 auto 30px;
}

.report {
  background: #f7f7f7;

  &__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

    margin-bottom: 40px;
  }
}

.report-card {
  background: #fff;
  padding: 20px;

  p {
    text-align: center;
    margin-top: 16px;
    font-weight: bold;
  }
}

/* =========================
      report sns
    ========================= */
.top_info {
  background: #f5f5f5;
}

.info_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info_title {
  font-size: 36px;
  color: #294d9b;
  margin-bottom: 30px;
  font-weight: bold;
  border-left: none;
}

.report_list {
  display: flex;
  gap: 20px;
}

.report_item {
  flex: 1;
}

.report_item p {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}

.report_item a {
  color: #222;
}

.report_item img {
  display: block;
  transition: .3s ease;
  color: #222;
}

.report_item img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
}

.sns_box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 20px;
}

.sns_div {
  display: flex;
}

.sns_btn {
  display: flex;
  align-items: center;
  gap: 22px;
  width: 250px;
  min-height: 95px;
  padding: 5px 20px;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
  transition: .3s;

  &:hover {
    transform: translateY(-3px);
    opacity: .9;
  }

  &_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;

    img {
      width: 36px;
      height: auto;
    }
  }

  &_text {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: .05em;
  }
}

.sns_btn_text {
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: .05em;
}

.sns_btn_icon {
  width: 40px;
  height: 40px;
  background-color: #ffff;
  padding: 13px;
  border-radius: 50px;
}

.x {
  background: #111;
}

.insta {
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.fb_iframe_widget {
  display: block !important;
  height: 500px;
}

.fb_iframe_widget iframe {
  height: 500px !important;
}

iframe {
  height: auto;
}

.fb-page,
.fb-page span,
.fb-page iframe {
  display: block !important;
}

.fb-page span {
  line-height: 0;
}

.fb-page iframe {
  margin: 0 !important;
}

/* =========================
      greeting
    ========================= */

.greeting {
  position: relative;
  /*  background:
    linear-gradient(rgba(255, 255, 255, .7), rgba(255, 255, 255, .7)),
    url("../img/index/greeting_img01.jpg") center/cover no-repeat; */
}

.greeting_text {
  max-width: 850px;
  margin: auto;
  /* text-align: center; */
  font-size: 18px;
  margin-bottom: 40px;
}

/* =========================
      policy
    ========================= */

.policy {
  background: #f8fbff;
}

.policy_cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.policy_card {
  background: #dfeaf8;
  border-radius: 28px;
  padding: 22px;
}

.policy_card h3 {
  color: #294d9b;
  font-size: 30px;
  margin-bottom: 18px;
  border-left: none;
}

.policy_title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.policy_title img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

.policy_card p {
  margin-top: 18px;
}

/* =========================
      gallery
    ========================= */

.gallery {
  overflow: hidden;
  padding: 0;
}

.gallery_track {
  display: flex;
  width: max-content;
  animation: galleryLoop 40s linear infinite;
  will-change: transform;
}

.gallery_list {
  display: flex;
  gap: 14px;
  padding-right: 14px;
  contain: layout;
}

.gallery_list img {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
  object-fit: cover;
}

/* 右→左へ流れる */
@keyframes galleryLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@media(max-width:768px) {
  .gallery_list img {
    width: 220px;
    height: 150px;
  }
}

/* =========================
      links
    ========================= */

.link_boxes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.link_box img {
  transition: .3s ease;
  border-radius: 10px;
}

.link_box img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .15);
}

/* 
.link_box {
  height: 80px;
  background: #eee;
}
 */
.policy {
  background: #f8fbff;

  &__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

.policy-card {
  background: #dce9f7;

  padding: 24px;

  border-radius: 24px;

  h3 {
    font-size: 28px;
    color: #23489b;
    margin: 20px 0 10px;
  }
}

@media(max-width:2560px) {
  .mv_copy_inner {
    margin-top: 50px;
  }
}

/* 
@media(max-width:2000px) {
  .mv_copy_inner {
    margin-top: 0px;
  }
}
 */
@media(max-width:1500px) {
  .mv {
    height: 600px;
  }

  .mv_photo {
    width: 40%;
    left: -40px;
  }

  .mv_copy {
    width: 100%;
    padding-right: 20px;
    /* 
    width: 55%;
    left: 64%; */
    left: 58%;
  }

  .mv_copy h1 {
    font-size: 42px;
    white-space: nowrap;
  }

  .mv_text {
    font-size: 20px;
  }

  /*  .mv_bg {
    background:
      url("../img/index/index_mv_tb.jpg") center / cover no-repeat;
  } */
}

@media screen and (min-width: 1144px) and (max-width: 1500px) {
  .mv_photo {
    width: 500px;
  }

}

@media screen and (max-width: 870px) {
  .mv_profile {
    width: 400px;
  }

  .mv_profile span {
    font-size: 13px;
  }

  .info_wrap {
    display: block;
  }

  .mv_copy_inner {
    padding: 60px 0px;
  }
}

@media screen and (max-width: 800px) {
  .mv_copy_inner h1 {
    white-space: nowrap;
  }

  .mv_copy_inner img {
    width: 65%;
  }
  .mv_copy_inner::after{
    background:none;
  }
}

@media screen and (max-width: 768px) {
  .mv_copy h1 {
    font-size: 2em;
  }

  .mv_copy_inner img {
    width: 50%;
  }

  /*   
  .nav {
    display: none;
  }

  .hamburger {
    flex-direction: column;
    gap: 6px;

    background: none;
    border: none;

    span {
      width: 30px;
      height: 2px;
      background: #fff;
    }
  }
 */
  .mv {
    height: 600px;

    &__person {
      width: 220px;
    }

    &__copy {

      h2 {
        font-size: 36px;
      }

      p {
        font-size: 16px;
      }
    }
  }

  .mv_copy {
    top: 250px;
    width: 100%;
    left: 65%;
  }

  .mv_copy p {
    font-size: 16px;
  }

  .mv_photo {
    width: 60%;
  }

  .report__items,
  .policy__cards,
  .footer__inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .policy_cards {
    display: block;
  }

  .policy_card {
    margin-bottom: 30px;
  }

  .link_boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .info_wrap {
    display: block;
  }

  .mv_profile {
    justify-content: center;
    gap: 10px;
    width: 300px;
  }

  .mv_profile span {
    font-size: 13px;
  }
/* 
  .mv_profile span:not(:last-child)::after {
    display: none;
  } */

  .policy_card h3 {
    padding: 0px;
  }
}

@media screen and (max-width: 600px) {
  .mv_photo {
    width: 55%;
    left: -20px;
  }

  .mv_copy {
    width: 100%;
    padding-top: 40px;
    text-align: center;
    left: 53%;
  }
}

@media screen and (max-width: 636px) {
  .sns_btn {
    width: 200px;
  }

  .mv_copy_inner img {
    width: 100%;
  }

  .mv_copy_inner img {
    width: 65%;
  }

  .mv_name_img {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .sns_box {
    margin-left: 0px;
    margin-top: 30px;
  }

  .mv_copy_inner img {
    width: 100%;
  }

  .sns_btn {
    width: auto;
  }

  .sns_div {
    display: block;
  }

  .mv_photo {
    width: 45%;
  }
}