@charset "utf-8";
/* CSS Document */
/* mikan 2.0*/
/* 1024pxでタブレット移行想定*/

body {
  position: relative;
  z-index: 0;
  background: #f9f8ff;
  font-family: "Noto Sans JP", serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  /* font-feature-settings: "palt"; */
  color: #393939;
}
body.menu_open {
  position: fixed;
  width: 100%;
  height: 100vh;
}

/*ヘッダー */
.block_header {
  position: fixed;
  z-index: 999;
  top: 30px;
  left: 0;
  width: 100vw;
  .inner {
    background-color: rgba(255, 255, 255, 0.67);
    padding: 16px 16px 16px 35px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1286px;
    max-width: 94.14%;
    margin: 0 auto;
    backdrop-filter: blur(30px);
  }
  .logo {
    width: 130px;
  }
  @media screen and (max-width: 1024px) {
    position: fixed;
    top: calc(20 / 375 * 100vw);
    .inner {
      background-color: rgba(255, 255, 255, 0);
      padding: 0 2.96%;
      border-radius: 0;
      max-width: 100%;
      backdrop-filter: blur(0);
    }
  }
  @media screen and (max-width: 768px) {
    position: fixed;
    top: calc(20 / 375 * 100vw);
    .inner {
      background-color: rgba(255, 255, 255, 0);
      padding: 0 6.135%;
      border-radius: 0;
      max-width: 100%;
      backdrop-filter: blur(0);
    }
    .logo {
      width: calc(140 / 375 * 100vw);
    }
  }
}

/*ヘッダーメニュー ------------------------------*/

.box_menu {
}
.box_menu ul {
  display: flex;
  align-items: center;
  gap: 0 50px;
  font-weight: bold;
  font-size: 14px;
  line-height: calc(36 / 14);
  color: #000;
}
.box_menu ul li {
}
.box_menu ul li.ttl {
  display: none;
}
.box_menu ul li a {
  display: block;
}
.box_menu ul li.contact a {
  width: 164px;
  aspect-ratio: 164 / 49;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(to left, #ff1414 0%, #4b00c4 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  &::before {
    content: "";
    background-image: url("../img/common/icon_contact.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 32px;
    aspect-ratio: 32 / 29;
    margin-top: 5px;
  }
}

.box_menu .btn_menu {
  width: 70px;
  height: 50px;
  border-radius: 25px;
  background: linear-gradient(-135deg, #ff1414 0%, #4b00c4 100%);

  position: relative;
  z-index: 9999;

  cursor: pointer;
  transition: all 0.5s;

  display: none;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.box_menu .btn_menu .bar {
  width: 26px;
  height: 1px;
  background: #fff;
  clip-path: polygon(0 0, 69% 0, 69% 50%, 76.69% 50%, 76.69% 0, 100% 0, 100% 100%, 76.69% 100%, 76.69% 50%, 69% 50%, 69% 100%, 0 100%);
  transition: 0.3s;
  &:nth-of-type(2) {
    transform: scale(-1, 1);
  }
}

.box_menu .btn_menu.open {
  background: rgba(255, 255, 255, 0.15);
}
.box_menu .btn_menu.open .bar {
  width: 28px;
  clip-path: polygon(0 0, 45% 0, 45% 50%, 55% 50%, 55% 0, 100% 0, 100% 100%, 55% 100%, 55% 50%, 45% 50%, 45% 100%, 0 100%);
  transform: translateY(5px) rotate(-30deg);
  &:nth-of-type(2) {
    transform: translateY(-4px) rotate(30deg);
  }
}

.box_menu .btn_menu .text {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 10px;
  line-height: 1;
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .box_menu .btn_menu {
    display: flex;
  }
  .box_menu ul {
    position: absolute;
    top: -55px;
    right: 0;
    z-index: 999;
    padding: 115px 0 0 55px;
    flex-flow: column;
    align-items: flex-start;
    gap: 34px 0;
    transform: translateX(100%);
    width: 100%;
    height: 100dvh;
    width: 293px;
    height: calc(100vh + 55px);
    height: calc(100svh + 55px);
    height: calc(100dvh + 55px);

    background: linear-gradient(#ff1414 0%, #4b00c4 100%);
    opacity: 0.98;

    transition: 0.3s;

    color: #fff;
    font-size: 16px;
    font-weight: bold;
  }

  .box_menu.open ul {
    transform: translateX(0);
  }
  .box_menu ul li.ttl {
    display: block;
    font-size: 3.125em;
    line-height: 1;
    margin-bottom: 13px;
  }

  .box_menu ul li.contact {
    margin-top: 7px;
  }
  .box_menu ul li.contact a {
    width: 176px;
    aspect-ratio: 176 / 71;
    color: #fff;
    border-radius: 8px;
    background: none;
    border: 1px solid #fff;
    gap: 14px;
    font-size: 14px;
    &::before {
      content: "";
      width: 32px;
      aspect-ratio: 32 / 29;
      margin-top: 5px;
    }
  }
}
@media screen and (max-width: 768px) {
  .box_menu ul {
    width: 78.13%;

    top: calc(-20 / 375 * 100vw);
    padding: min(calc(155 / 375 * 100vw), 115px) 0 0 min(calc(55 / 375 * 100vw), 55px);
    gap: min(calc(34 / 375 * 100vw), 34px) 0;
    height: calc(100vh + calc(20 / 375 * 100vw));
    height: calc(100svh + calc(20 / 375 * 100vw));
    height: calc(100dvh + calc(20 / 375 * 100vw));
    font-size: min(calc(16 / 375 * 100vw), 16px);
  }

  .box_menu ul li.ttl {
    margin-bottom: calc(13 / 375 * 100vw);
  }

  .box_menu ul li.contact {
    margin-top: calc(7 / 375 * 100vw);
  }
  .box_menu ul li.contact a {
    width: min(calc(176 / 375 * 100vw), 176px);
    border-radius: min(calc(8 / 375 * 100vw), 8px);
    gap: min(calc(14 / 375 * 100vw), 14px);
    font-size: min(calc(14 / 375 * 100vw), 14px);
    &::before {
      content: "";
      width: min(calc(32 / 375 * 100vw), 31px);
      margin-top: min(calc(5 / 375 * 100vw), 5px);
    }
  }
}

/* .block_footer   ------------------------------*/
.block_footer {
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding: 160px 0 58px;

  .footer_top {
    margin: 0 auto;
    width: 1204px;
    max-width: 88.14%;
    padding-right: 3.48%;
    display: flex;
    justify-content: space-between;

    .box_ttl {
      width: 794px;
      max-width: 70%;
      .footer_logo {
        display: block;
        width: 30.98%;
        margin-top: 90px;
      }
    }
    .footer_menu {
      display: flex;
      flex-flow: column;
      gap: 50px 0;

      a {
        font-weight: bold;
        font-size: 10px;

        .en {
          display: block;
          font-weight: 600;
          font-size: 24px;
          margin-bottom: 5px;
        }
      }
      .footer_logo {
        display: none;
      }
      .sns {
        display: none;
      }
    }
  }

  .footer_bottom {
    margin: 0 auto;
    width: 1204px;
    max-width: 88.14%;

    margin-top: 43px;
    padding-top: 43px;
    border-top: 1px solid #cecce6;

    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content: space-between;

    font-size: 12px;
    letter-spacing: 0;
    gap: 24px 0;
    .box_link {
      display: flex;
      align-items: center;
      gap: 0 60px;
    }
    .box_sns {
      display: flex;
      align-items: center;
      gap: 0 30px;
      * {
        flex-shrink: 1;
      }
    }
  }
  .box_scroll {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    font-weight: 600;
    font-size: 341px;
    line-height: 0.72;
    color: #f2f1fb;
    .item {
      animation: scroll_04 20s linear infinite;
      width: fit-content;
      white-space: nowrap;
    }
  }
  @media screen and (max-width: 1024px) {
    .box_sns {
      width: 100%;
      justify-content: center;
    }
  }
  @media screen and (max-width: 768px) {
    padding: calc(60 / 375 * 100vw) 0 calc(60 / 375 * 100vw);

    .footer_top {
      max-width: 85.87%;
      padding-right: 0;

      .box_ttl {
        max-width: 29.85%;
        margin-left: 9%;
        .footer_logo {
          display: none;
        }
      }
      .footer_menu {
        display: flex;
        flex-flow: column;
        gap: calc(29 / 375 * 100vw) 0;

        a {
          font-size: calc(10 / 375 * 100vw);

          .en {
            font-size: calc(20 / 375 * 100vw);
            margin-bottom: calc(5 / 375 * 100vw);
          }
        }
        .footer_logo {
          display: block;
          margin-top: auto;
          width: calc(124 / 375 * 100vw);
        }
        .sns {
          margin-top: calc(11 / 375 * 100vw);
          display: flex;
          justify-content: space-between;
          align-items: center;
          * {
            width: calc(20 / 375 * 100vw);
          }
        }
      }
    }

    .footer_bottom {
      max-width: 85.87%;
      margin-top: calc(42 / 375 * 100vw);
      padding-top: calc(24 / 375 * 100vw);
      flex-flow: row-reverse;
      align-items: flex-end;
      font-size: calc(10 / 375 * 100vw);
      .box_link {
        width: calc(100 / 375 * 100vw);
        flex-flow: column;
        align-items: flex-start;
        gap: calc(19 / 375 * 100vw) 0;
      }
      .box_sns {
        display: none;
      }
    }
    .box_scroll {
      position: absolute;
      z-index: -1;
      bottom: 0;
      left: 0;
      overflow: hidden;
      display: flex;
      white-space: nowrap;
      font-weight: 600;
      font-size: calc(96 / 375 * 100vw);
      line-height: 0.72;
      color: #f2f1fb;
      .item {
        animation: scroll_04 10s linear infinite;
      }
    }
  }
}

@keyframes scroll_04 {
  100% {
    translate: -100% 0;
  }
}

/* 共用  ------------------------------*/

.en {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.sp_only,
.sp_only02 {
  display: none;
}
.sp_only03 {
  display: contents;
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: contents;
  }
  .pc_only02 {
    display: none;
  }
  .sp_only {
    display: inline;
  }
  .sp_only02 {
    display: block;
  }
  .sp_only03 {
    display: block;
  }
}

.text00 {
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}
.text01 {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .text00 {
    font-size: calc(14 / 375 * 100vw);
  }
  .text01 {
    font-size: calc(16 / 375 * 100vw);
  }
}

.btn00 {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  height: 70px;
  width: fit-content;
  min-width: 198px;

  padding: 0 50px;
  background: #000;
  color: #fff;
  font-size: 16px;

  &::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    background-image: url("../img/common/dec_btn00.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    top: 50%;
    left: -11px;
    transform: translate(0, -50%);
    width: 46px;
    aspect-ratio: 1;
  }
  @media screen and (max-width: 768px) {
    border-radius: calc(99 / 375 * 100vw);
    height: calc(55 / 375 * 100vw);
    width: fit-content;
    min-width: calc(145 / 375 * 100vw);
    padding: 0 calc(46 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
    &::after {
      left: calc(-14 / 375 * 100vw);
      width: calc(40 / 375 * 100vw);
    }
  }
}

.ttl_sec {
  font-weight: bold;
  font-size: 40px;
  &.adjust01 {
    line-height: 1.5;
  }
  &.adjust02 {
    margin-bottom: 32px;
  }
  .en {
    font-weight: 600;
    font-size: 14px;
    color: #4b00c4;
    display: flex;
    align-items: center;
    gap: 0 9.8px;
    margin-bottom: 20px;
    &::before {
      content: "";
      z-index: 0;
      background-image: url("../img/common/dec_ttl_a.svg");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;
      width: 17px;
      aspect-ratio: 1;
    }
  }

  @media screen and (max-width: 768px) {
    font-size: calc(28 / 375 * 100vw);
    .en {
      font-size: calc(12 / 375 * 100vw);
      gap: 0 calc(5 / 375 * 100vw);
      margin-bottom: calc(16 / 375 * 100vw);
      &::before {
        width: calc(14 / 375 * 100vw);
      }
    }
    &.adjust02 {
      margin-bottom: calc(24 / 375 * 100vw);
    }
  }
}

/* to_topボタン  ------------------------------*/
/* flag_onが付与された要素を通過した際にボタンが出てくる仕様です。 */
.block_float {
  overflow: hidden;
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;

  .inner {
    margin: 0 auto;
    width: 100%;
  }
  .inner .btn_likn {
    margin-left: auto;
    width: 64px;
    display: flex;
    pointer-events: auto;
    cursor: pointer;
    transform: translateX(100%);
    transition: 0.3s;
  }
  &.on .inner .btn_likn {
    transform: translateX(0);
  }
  @media screen and (max-width: 768px) {
    bottom: 0;

    .inner .btn_likn {
      margin-left: auto;
      width: min(calc(220 / 375 * 100vw), 220px);
      display: flex;
      pointer-events: auto;
      cursor: pointer;
      transform: translateX(100%);
      transition: 0.3s;
      margin-right: min(calc(-6 / 375 * 100vw), -6px);
    }
  }
}
/* アコーディオン  ------------------------------*/
/*アコーディオン（以下のJSとセットで）*/
.accordion {
  padding: 20px 0 200px;
}
.accordion .ttl {
  font-size: 20px;
  display: block;
  cursor: pointer;
  &::-webkit-details-marker {
    display: none;
  }
}
.accordion .cont {
  display: grid;
  transition: padding 0.3s, grid-template-rows 0.3s;
  grid-template-rows: 0fr;
  padding: 0 20px;
}
.accordion.open .cont {
  grid-template-rows: 1fr;
  padding: 20px 20px;
  background-color: azure;
}
.accordion .cont .cont_inner {
  overflow: hidden;
}
/*
<script>
document.querySelectorAll(".accordion dt").forEach(dt => {
dt.addEventListener("click", function() {
this.closest('.accordion').classList.toggle("open");
});
});       
</script>
*/
