@charset "UTF-8";
/* ==========================================================================//
//
// top
//
// ========================================================================== */
@-webkit-keyframes scrollDotMove {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
}
@keyframes scrollDotMove {
  0% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0;
  }
}
/* mv
---------------------------------------------------------- */
.mv {
  position: sticky;
  top: var(--header_height);
  width: 100%;
  height: calc(100vh - var(--header_height));
  z-index: 1;
}
@media all and (min-width: 751px) {
  .mv {
    top: 0;
    height: 100vh;
  }
}
.mv_img {
  height: 100%;
  clip-path: inset(5%);
}
.mv_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv_txt {
  position: absolute;
  bottom: 160px;
  left: 50px;
  right: 50px;
}
@media all and (min-width: 751px) {
  .mv_txt {
    bottom: auto;
    left: auto;
    top: 50%;
    right: 8.5%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.mv_txt .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}
@media all and (min-width: 751px) {
  .mv_txt .logo {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.mv_txt .logo img {
  width: 90px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media all and (min-width: 751px) {
  .mv_txt .logo img {
    width: 110px;
  }
}
.mv_txt .logo span {
  color: #fff;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
}
@media all and (min-width: 751px) {
  .mv_txt .logo span {
    font-size: 13px;
  }
}
.mv_txt .logo {
  opacity: 0;
  -webkit-animation: fadeIn 1s forwards 0.4s;
          animation: fadeIn 1s forwards 0.4s;
}
.mv_txt .copy {
  color: #fff;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.2em;
  line-height: 1.7;
}
@media all and (min-width: 751px) {
  .mv_txt .copy {
    font-size: clamp(24px, 2.34vw, 32px);
    line-height: 1.875;
  }
}
.mv_txt .copy {
  opacity: 0;
  -webkit-animation: fadeUp 1s forwards 1s;
          animation: fadeUp 1s forwards 1s;
}
.mv_txt .txt {
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.025em;
  line-height: 2;
  margin-top: 10px;
}
@media all and (min-width: 751px) {
  .mv_txt .txt {
    font-size: clamp(12px, 1.09vw, 15px);
    margin-top: 20px;
  }
}
.mv_txt .txt {
  opacity: 0;
  -webkit-animation: fadeUp 1s forwards 1s;
          animation: fadeUp 1s forwards 1s;
}
.mv_txt .link {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-top: 26px;
}
@media all and (min-width: 751px) {
  .mv_txt .link {
    font-size: clamp(12px, 1.09vw, 15px);
    margin-top: 44px;
  }
}
.mv_txt .link {
  opacity: 0;
  -webkit-animation: fadeUp 1s forwards 1.4s;
          animation: fadeUp 1s forwards 1.4s;
}
.mv_txt .link .arrow {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #fff;
  margin-left: 14px;
  margin-bottom: 3px;
}
.mv_txt .link .arrow::before {
  position: absolute;
  content: "";
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  background-color: inherit;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
}
@media (hover: hover) {
  .mv_txt .link .arrow {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .mv_txt .link:hover .arrow {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
}
.mv .scroll_down {
  position: absolute;
  bottom: 60px;
  left: 80px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
}
@media all and (min-width: 751px) {
  .mv .scroll_down {
    left: 160px;
    bottom: 80px;
  }
}
.mv .scroll_down_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.mv .scroll_down_text {
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.1em;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-out 1.5s forwards;
          animation: fadeIn 1s ease-out 1.5s forwards;
}
@media all and (min-width: 751px) {
  .mv .scroll_down_text {
    font-size: 13px;
  }
}
.mv .scroll_down_oval {
  position: relative;
  width: 16px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-out 2s forwards;
          animation: fadeIn 1s ease-out 2s forwards;
}
@media all and (min-width: 751px) {
  .mv .scroll_down_oval {
    width: 20px;
    height: 32px;
    border-radius: 32px;
  }
}
.mv .scroll_down_dot {
  position: absolute;
  top: 8px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-animation: scrollDotMove 2s ease-in-out 2.5s infinite;
          animation: scrollDotMove 2s ease-in-out 2.5s infinite;
}
@media all and (min-width: 751px) {
  .mv .scroll_down_dot {
    left: 6px;
    width: 4px;
    height: 4px;
  }
}
.mv .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(222, 108, 47, 0.85);
  opacity: 0; /* 最初は透明 */
  pointer-events: none;
}

/* intro
---------------------------------------------------------- */
.intro {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 120px 0;
}
@media all and (min-width: 751px) {
  .intro {
    padding: 200px 0;
  }
}
.intro .logo {
  text-align: center;
  margin-bottom: 40px;
}
@media all and (min-width: 751px) {
  .intro .logo {
    margin-bottom: 80px;
  }
}
.intro .logo img {
  width: 90px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media all and (min-width: 751px) {
  .intro .logo img {
    width: 110px;
  }
}
.intro .copy {
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 20px;
  line-height: 2;
  margin-left: 1em;
}
@media all and (min-width: 751px) {
  .intro .copy {
    font-size: 30px;
    line-height: 1.66;
  }
}
.intro .txt {
  margin-top: 22px;
}
@media all and (min-width: 751px) {
  .intro .txt {
    margin-top: 46px;
  }
}
.intro .txt p {
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 2;
  margin-bottom: 1.9em;
}

/* 上に被るエリア
---------------------------------------------------------- */
.cover_area {
  position: relative;
  z-index: 2;
  background-color: #fff;
}

/* service
---------------------------------------------------------- */
.service_sec_wrap {
  padding: 70px 0 60px;
}
@media all and (min-width: 751px) {
  .service_sec_wrap {
    padding: 160px 0 100px;
  }
}

.service_sec .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
}
@media all and (min-width: 751px) {
  .service_sec .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.7%;
  }
}
.service_sec .box_txt {
  padding: 0 20px;
}
@media all and (min-width: 751px) {
  .service_sec .box_txt {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px 6%;
  }
}
@media all and (min-width: 751px) and (max-width: 1140px) {
  .service_sec .box_txt {
    padding: 0 4%;
  }
}
@media all and (min-width: 751px) {
  .service_sec .box_img {
    width: 57.5%;
  }
}
@media all and (min-width: 751px) and (max-width: 1140px) {
  .service_sec .box_img {
    width: 50%;
  }
}
.service_sec .sec_ttl {
  margin-bottom: 26px;
}
@media all and (min-width: 751px) {
  .service_sec .sec_ttl {
    margin-bottom: 40px;
  }
}
.service_sec .sec_ttl .en {
  color: #646C7E;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  font-size: 13px;
  margin-bottom: 4px;
}
@media all and (min-width: 751px) {
  .service_sec .sec_ttl .en {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.service_sec .sec_ttl .jp {
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 22px;
}
@media all and (min-width: 751px) {
  .service_sec .sec_ttl .jp {
    font-size: clamp(22px, 2.19vw, 30px);
  }
}
.service_sec .more_btn {
  margin-top: 22px;
}
@media all and (min-width: 751px) {
  .service_sec .more_btn {
    margin-top: 46px;
  }
}
.service_sec .more_btn a {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
}
@media all and (min-width: 751px) {
  .service_sec .more_btn a {
    font-size: 15px;
    letter-spacing: 0.075em;
  }
}
.service_sec .more_btn a .arrow {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 1px;
  background-color: #2C2F36;
  margin-left: 14px;
  margin-bottom: 3px;
}
.service_sec .more_btn a .arrow::before {
  position: absolute;
  content: "";
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  background-color: inherit;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
}
@media (hover: hover) {
  .service_sec .more_btn a .arrow {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .service_sec .more_btn a:hover .arrow {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
}
.service_sec:not(:last-child) {
  margin-bottom: 70px;
}
@media all and (min-width: 751px) {
  .service_sec:not(:last-child) {
    margin-bottom: 80px;
  }
}
@media all and (min-width: 751px) {
  .service_sec:nth-child(odd) .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/* features
---------------------------------------------------------- */
.sec_features {
  padding: 10px;
}
@media all and (min-width: 751px) {
  .sec_features {
    padding-top: calc(var(--header_height) + 10px);
    height: 100vh;
    padding: 30px;
  }
}
.sec_features .features_container {
  position: relative;
  height: 100%;
}
@media all and (min-width: 960px) {
  .sec_features .features_container::before {
    position: absolute;
    content: "";
    top: 7.3%;
    left: 32%;
    bottom: 7.3%;
    width: 1px;
    background-color: #fff;
    opacity: 0.42;
    z-index: 10;
  }
}
.sec_features .sec_ttl {
  position: absolute;
  top: 30px;
  left: 20px;
  color: #fff;
  z-index: 10;
}
@media all and (min-width: 751px) {
  .sec_features .sec_ttl {
    top: 7.3%;
    left: 4.8%;
  }
}
@media all and (max-width: 750px) {
  .sec_features .sec_ttl {
    display: none;
  }
}
.sec_features .sec_ttl .en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  font-size: 13px;
  margin-bottom: 2px;
}
@media all and (min-width: 751px) {
  .sec_features .sec_ttl .en {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.sec_features .sec_ttl .jp {
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 22px;
}
@media all and (min-width: 751px) {
  .sec_features .sec_ttl .jp {
    font-size: clamp(20px, 2.04vw, 28px);
  }
}
@media all and (min-width: 751px) {
  .sec_features .features_slider {
    height: 100%;
  }
}
.sec_features .feature_list {
  position: relative;
}
@media all and (min-width: 751px) {
  .sec_features .feature_list {
    height: 100%;
  }
}
@media all and (min-width: 751px) {
  .sec_features .feature_item {
    position: absolute;
    inset: 0;
  }
}
@media all and (max-width: 750px) {
  .sec_features .feature_item {
    position: relative;
  }
  .sec_features .feature_item:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media all and (max-width: 750px) {
  .sec_features .feature_item.js_scroll {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  .sec_features .feature_item.js_scroll.scroll_active {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 1;
  }
}
.sec_features .feature_item .sec_ttl_sp {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  z-index: 10;
}
@media all and (min-width: 751px) {
  .sec_features .feature_item .sec_ttl_sp {
    display: none;
  }
}
.sec_features .feature_item .sec_ttl_sp .en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  font-size: 13px;
  margin-bottom: 2px;
}
.sec_features .feature_item .sec_ttl_sp .jp {
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 22px;
}
.sec_features .feature_item .item_img {
  position: relative;
  height: 100%;
}
@media all and (max-width: 750px) {
  .sec_features .feature_item .item_img {
    height: auto;
    aspect-ratio: 1/1;
  }
}
.sec_features .feature_item .item_img::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: #3c4048;
  opacity: 0.6;
}
.sec_features .feature_item .item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec_features .feature_item .item_index {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 12px;
  position: absolute;
}
@media all and (min-width: 751px) {
  .sec_features .feature_item .item_index {
    top: auto;
    right: auto;
    bottom: 7.3%;
    left: 4.8%;
    font-size: 15px;
  }
}
.sec_features .feature_item .item_index span {
  opacity: 0.5;
  margin-left: 6px;
}
@media all and (max-width: 750px) {
  .sec_features .feature_item .item_index {
    top: 25px;
    right: 20px;
  }
}
@media all and (min-width: 751px) {
  .sec_features .feature_item .item_txt {
    position: absolute;
    color: #fff;
    bottom: 7.3%;
    left: 47%;
    right: 4.8%;
  }
}
@media all and (max-width: 750px) {
  .sec_features .feature_item .item_txt .txt_wrap {
    padding: 40px 10px;
  }
}
.sec_features .feature_item .item_txt .ttl {
  margin-bottom: 24px;
}
@media all and (min-width: 751px) {
  .sec_features .feature_item .item_txt .ttl {
    margin-bottom: 40px;
  }
}
.sec_features .feature_item .item_txt .ttl .en {
  opacity: 0.62;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.1em;
  font-size: 13px;
}
@media all and (min-width: 751px) {
  .sec_features .feature_item .item_txt .ttl .en {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.sec_features .feature_item .item_txt .ttl .jp {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
}
@media all and (min-width: 751px) {
  .sec_features .feature_item .item_txt .ttl .jp {
    font-size: clamp(16px, 1.83vw, 25px);
  }
}
.sec_features .feature_item .item_txt .desc {
  letter-spacing: 0.075em;
}
@media all and (min-width: 751px) {
  .sec_features .feature_item .item_txt .desc {
    letter-spacing: 0.1em;
  }
}

/* area
---------------------------------------------------------- */
.sec_area {
  margin-top: 60px;
}
@media all and (min-width: 751px) {
  .sec_area {
    margin-top: 100px;
  }
}
.sec_area .area_content {
  position: relative;
}
.sec_area .area_txt {
  padding: 0 20px 30px;
}
@media all and (min-width: 881px) {
  .sec_area .area_txt {
    position: absolute;
    top: 50%;
    left: 10.8%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 40%;
    padding: 0;
  }
}
.sec_area .area_txt .sec_ttl {
  margin-bottom: 26px;
}
@media all and (min-width: 881px) {
  .sec_area .area_txt .sec_ttl {
    margin-bottom: 60px;
  }
}
@media all and (min-width: 881px) and (max-width: 1000px) {
  .sec_area .area_txt .sec_ttl {
    margin-bottom: 24px;
  }
}
.sec_area .area_txt .sec_ttl .en {
  color: #646C7E;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  font-size: 13px;
  margin-bottom: 4px;
}
@media all and (min-width: 751px) {
  .sec_area .area_txt .sec_ttl .en {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.sec_area .area_txt .sec_ttl .jp {
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 22px;
}
@media all and (min-width: 751px) {
  .sec_area .area_txt .sec_ttl .jp {
    font-size: clamp(22px, 2.19vw, 30px);
  }
}
.sec_area .area_txt .lead {
  margin-bottom: 20px;
}
@media all and (min-width: 881px) {
  .sec_area .area_txt .lead {
    margin-bottom: 36px;
  }
}
@media all and (min-width: 881px) and (max-width: 1000px) {
  .sec_area .area_txt .lead {
    margin-bottom: 20px;
  }
}
.sec_area .area_txt .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px 50px;
}
@media screen and (min-width: 881px) and (max-width: 1000px) {
  .sec_area .area_txt .list {
    gap: 16px 50px;
  }
}
@media all and (min-width: 751px) {
  .sec_area .area_txt .item {
    width: 100%;
  }
}
@media all and (min-width: 751px) and (max-width: 880px) {
  .sec_area .area_txt .item {
    width: auto;
  }
}
.sec_area .area_txt .item_ttl {
  position: relative;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding-left: 1em;
  margin-bottom: 10px;
}
@media all and (min-width: 751px) {
  .sec_area .area_txt .item_ttl {
    font-size: 14px;
  }
}
@media screen and (min-width: 751px) and (min-width: 881px) and (max-width: 1000px) {
  .sec_area .area_txt .item_ttl {
    font-size: 13px;
    margin-bottom: 5px;
  }
}
.sec_area .area_txt .item_ttl::before {
  position: absolute;
  content: "";
  top: 0.55em;
  left: 0;
  aspect-ratio: 1;
  width: 4px;
  background-color: #2C2F36;
  border-radius: 50%;
}
.sec_area .area_txt .item_txt {
  color: #646C7E;
}
@media all and (min-width: 751px) {
  .sec_area .area_txt .item_txt {
    font-size: 15px;
  }
}
@media screen and (min-width: 751px) and (min-width: 881px) and (max-width: 1000px) {
  .sec_area .area_txt .item_txt {
    font-size: 13px;
  }
}
.sec_area .area_txt .item_txt span {
  display: inline-block;
}
.sec_area .area_map {
  overflow: hidden;
}
.sec_area .area_map svg {
  width: 100%;
  height: 100%;
}
@media all and (min-width: 881px) {
  .sec_area .area_map svg.map_sp {
    display: none;
  }
}
@media all and (max-width: 880px) {
  .sec_area .area_map svg.map_pc {
    display: none;
  }
}
.sec_area .area_map #area {
  opacity: 1;
  transform-box: fill-box;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: circleanime 3s infinite;
          animation: circleanime 3s infinite;
}
@-webkit-keyframes circleanime {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
}
@keyframes circleanime {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 0;
  }
}

/* 追従バナー
---------------------------------------------------------- */
.info_banner {
  position: fixed;
  bottom: 30px;
  right: 0;
  width: min(280px, 90%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  background-color: #e2e2e2;
  -webkit-transform: translateX(calc(100% - 38px));
          transform: translateX(calc(100% - 38px));
  z-index: 50;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.54, 0.14, 0.47, 0.92);
  transition: -webkit-transform 0.5s cubic-bezier(0.54, 0.14, 0.47, 0.92);
  transition: transform 0.5s cubic-bezier(0.54, 0.14, 0.47, 0.92);
  transition: transform 0.5s cubic-bezier(0.54, 0.14, 0.47, 0.92), -webkit-transform 0.5s cubic-bezier(0.54, 0.14, 0.47, 0.92);
}
@media all and (min-width: 751px) {
  .info_banner {
    -webkit-transform: translateX(calc(100% - 45px));
            transform: translateX(calc(100% - 45px));
  }
}
.info_banner.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.info_banner .info_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 38px;
  padding: 15px 5px;
}
@media all and (min-width: 751px) {
  .info_banner .info_btn {
    width: 45px;
    padding: 24px 5px;
  }
}
.info_banner .info_btn .info_ttl {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.1em;
  font-size: 11px;
  letter-spacing: 0.15em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding-top: 24px;
}
@media all and (min-width: 751px) {
  .info_banner .info_btn .info_ttl {
    font-size: 14px;
    padding-top: 28px;
  }
}
.info_banner .info_btn .info_ttl::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  aspect-ratio: 1;
  width: 14px;
  background-image: url(../images/common/icon_info.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media all and (min-width: 751px) {
  .info_banner .info_btn .info_ttl::before {
    width: 18px;
  }
}
@media (hover: hover) {
  .info_banner .info_btn {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .info_banner .info_btn:hover {
    background-color: #d1d1d1;
  }
}
.info_banner .info_link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  padding-left: 10px;
}
.info_banner .info_link .post_date {
  color: #646C7E;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.1em;
  font-size: 12px;
  margin-bottom: 6px;
}
.info_banner .info_link .post_ttl {
  font-size: 13px;
  line-height: 2;
}
@media all and (min-width: 751px) {
  .info_banner .info_link .post_ttl {
    font-size: 14px;
    line-height: 1.71;
  }
}
.info_banner .info_link .arrow {
  position: relative;
  display: block;
  width: 32px;
  height: 1px;
  background-color: #2C2F36;
  margin-left: auto;
  margin-top: 10px;
}
@media all and (min-width: 751px) {
  .info_banner .info_link .arrow {
    margin-top: 16px;
  }
}
.info_banner .info_link .arrow::before {
  position: absolute;
  content: "";
  top: calc(50% - 0.5px);
  right: 0;
  width: 7px;
  height: 1px;
  background-color: inherit;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
}
@media (hover: hover) {
  .info_banner .info_link .arrow {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .info_banner .info_link:hover .arrow {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
}
/*# sourceMappingURL=top.css.map */