@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
a {
  text-decoration: none;
  color: #fff;
}

.altiri-section {
  background-color: #F3F3F7;
}
.altiri-section header {
  width: 100%;
  height: 70px;
  background: #030B1C;
  position: sticky;
  top: 0;
  z-index: 110;
}
@media screen and (min-width: 620px) {
  .altiri-section header {
    display: none;
  }
}
.altiri-section header a.logo-link {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  z-index: 1000;
}
.altiri-section header a.logo-link img {
  width: 40px;
  margin: 0;
}
.altiri-section header .hamburger-menu {
  background: #030B1C;
}
.altiri-section header .altiri-menu-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  height: 44px;
  width: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
}
.altiri-section header .altiri-menu-btn span,
.altiri-section header .altiri-menu-btn span:before,
.altiri-section header .altiri-menu-btn span:after {
  content: "";
  display: block;
  height: 1px;
  width: 20px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
}
.altiri-section header .altiri-menu-btn span:before {
  bottom: 5px;
}
.altiri-section header .altiri-menu-btn span:after {
  top: 5px;
}
.altiri-section header .altiri-menu-btn-style:checked ~ .altiri-menu-btn {
  right: 9px;
}
.altiri-section header .altiri-menu-btn-style:checked ~ .altiri-menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
.altiri-section header .altiri-menu-btn-style:checked ~ .altiri-menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
.altiri-section header .altiri-menu-btn-style:checked ~ .altiri-menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
.altiri-section header .altiri-menu-btn-style {
  display: none;
}
.altiri-section header .menu-content {
  box-sizing: border-box;
  width: 100%;
  height: calc(100% - 70px);
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #030B1C;
  transition: all 0.5s;
  overflow-y: scroll;
  scrollbar-width: none;
  margin-top: 70px;
  padding: 20px 16px;
}
.altiri-section header .menu-content .altiri-link-button-white {
  margin: 48px auto 24px auto;
  width: calc(100% - 16px);
  font-size: 14px;
  font-weight: 600;
}
.altiri-section header .menu-content::-webkit-scrollbar {
  display: none;
}
.altiri-section header .altiri-menu-btn-style:checked ~ .menu-content {
  left: 0;
}
.altiri-section header .toggle {
  display: none;
}
.altiri-section header .menu-content .Label::after {
  color: #fff;
  transform: rotate(90deg);
}
.altiri-section header .content {
  transform: translateZ(0);
  max-height: 0px;
  margin: 0;
  background: #030B1C;
  padding: 0 20px;
  overflow: hidden;
  transition: all 0.8s ease;
}
.altiri-section header .content .altiri-list-nonstyle {
  margin: 24px 12px;
  padding: 0;
}
.altiri-section header .content li a {
  text-decoration: none;
  color: #fff;
}
.altiri-section header .toggle:checked + .Label {
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
.altiri-section header .toggle:checked + .Label + .content {
  width: 100%;
  max-height: 300px;
  transition: all 0.8s ease;
}
.altiri-section header .toggle:checked + .Label::before {
  transform: rotate(45deg);
}
.altiri-section header .toggle:checked + .Label::after {
  transform: rotate(-45deg);
}
.altiri-section .top_container {
  background: #030B1C;
}
.altiri-section .top_container .article_container .image_box {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 64vh;
}
.altiri-section .top_container .article_container .image_box img {
  transition: 1s all;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.altiri-section .top_container .article_container .image_box::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(rgba(36, 36, 36, 0), rgba(36, 36, 36, 0.9));
}
.altiri-section .top_container .article_container .image_box:hover img {
  transform: scale(1.1, 1.1);
  transition: 1s all;
}
.altiri-section .top_container .article_container .text_box {
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 12px;
  width: calc(100% - 24px);
  color: #fff;
  font-weight: 700;
  z-index: 3;
}
.altiri-section .top_container .article_container .text_box h4 {
  font-size: 14px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
}
.altiri-section .top_container .article_container .text_box p {
  font-size: 20px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
}
.altiri-section .top_container .article_container .text_box .story-tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.altiri-section .top_container .article_container .text_box .story-tags p {
  font-size: 12px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.16);
  font-weight: 600;
}
.altiri-section .top_container .article_container .txt-box {
  position: absolute;
  top: auto;
  bottom: 24px;
  left: 24px;
  width: calc(100% - 48px);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  z-index: 3;
  text-align: justify;
  line-break: strict;
  word-break: break-all;
  overflow-wrap: break-word;
}
.altiri-section .top_container .article_container .txt-box_cmpny {
  font-size: 20px;
}
.altiri-section .top_container .article_container .txt-box_ttl {
  margin-top: 7px;
  font-size: 16px;
}
.altiri-section .top_container .article_container .txt-box_person {
  margin-top: 4px;
  font-size: 12px;
}
.altiri-section .top_container .article_container .txt-box_ctgrs-ssns {
  margin-top: 13px;
  font-family: alternate-gothic-atf, sans-serif;
  font-size: 10px;
  line-height: 0.8;
  letter-spacing: 1.2px;
  font-weight: 300;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .altiri-section .top_container .article_container .txt-box_cmpny {
    font-size: 24px;
  }
  .altiri-section .top_container .article_container .txt-box_ttl {
    margin-top: 8px;
    font-size: 20px;
  }
  .altiri-section .top_container .article_container .txt-box_person {
    font-size: 14px;
  }
  .altiri-section .top_container .article_container .txt-box_ctgrs-ssns {
    margin-top: 16px;
    font-size: 12px;
  }
}
.altiri-section .side_menu {
  display: none;
  width: 30vw;
  background: #030B1C;
}
.altiri-section .side_menu .side_content {
  position: sticky;
  top: 13.83vh;
}
.altiri-section .side_menu .side_content .altiri-logo {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: calc((100vh - 432px) / 4) auto;
}
.altiri-section .side_menu .side_content .altiri-logo h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}
.altiri-section .side_menu .side_content .altiri-logo p {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.55em;
  text-align: center;
}
.altiri-section .side_menu .side_content .partner_link {
  width: 80%;
  max-width: 320px;
  margin: 0 auto;
  padding: 8px 12px;
}
.altiri-section .side_menu .side_content .partner_link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 20px;
}
.altiri-section .side_menu .side_content .partner_link a img {
  width: 20px;
  margin: auto 0;
}
.altiri-section .side_menu .side_content .partner_link:hover {
  background: rgba(255, 255, 255, 0.05);
}
.altiri-section .side_menu .side_content .partner_link:hover a {
  color: rgba(255, 255, 255, 0.7);
}
.altiri-section main {
  margin: 0 auto;
  color: #030B1C;
  background-color: #F3F3F7;
  width: 100%;
  max-width: inherit;
  padding: initial;
}
.altiri-section main .about-partner-story-wrapper {
  color: #030B1C;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px;
}
.altiri-section main .about-partner-story-wrapper p {
  text-align: justify;
}
.altiri-section main section {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 56px auto;
}
.altiri-section main section h2 {
  font-size: 25px;
  margin-bottom: 32px;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.altiri-section main section h3 {
  font-size: 14px;
  margin: 0;
}
.altiri-section main section p {
  font-size: 16px;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.altiri-section main .bottom_altiri_logo {
  width: 72px;
  margin: 0 auto 32px auto;
}
.altiri-section footer {
  width: 100%;
  background: #000;
}
.altiri-section footer .footer_partners {
  background: #020711;
}
.altiri-section footer .footer_partners .footer_wrapper {
  margin: 0 auto;
  padding: 48px 24px 56px 24px;
  max-width: 1200px;
}
.altiri-section footer .footer_partners .footer_wrapper p {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.55em;
  text-align: center;
  margin-bottom: 24px;
}
.altiri-section footer .footer_partners .topandexecutive_partners_logo_container {
  display: flex;
  width: 272px;
  margin: 0 auto;
}
.altiri-section footer .footer_partners .topandexecutive_partners_logo_container a {
  width: 50%;
}
.altiri-section footer .footer_partners .partners_logo_container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.altiri-section footer .footer_partners .partners_logo_container a {
  width: 33.3333333333%;
}
.altiri-section footer .footer_partners .partners_logo_container a img {
  opacity: 0.4;
}
.altiri-section footer .footer_links {
  background: #000;
}
.altiri-section footer .footer_links .footer_wrapper {
  margin: 0;
  padding: 48px 24px 56px 24px;
  max-width: 1200px;
}
.altiri-section footer .footer_links .footer_wrapper .site_links img {
  width: 198px;
  margin-bottom: 48px;
}
.altiri-section footer .footer_links .footer_wrapper .site_links ul {
  list-style: none;
  margin-bottom: 48px;
}
.altiri-section footer .footer_links .footer_wrapper .site_links ul li {
  font-size: 16px;
  margin-bottom: 16px;
}
.altiri-section footer .footer_links .footer_wrapper .site_links ul li a {
  color: #fff;
}
.altiri-section footer .footer_links .footer_wrapper .sns_links {
  display: flex;
}
.altiri-section footer .footer_links .footer_wrapper .sns_links a {
  margin-right: 20px;
}

@media screen and (min-width: 840px) {
  .altiri-section {
    background: #030b1c;
  }
  .altiri-section header {
    display: none;
  }
  .altiri-section .top_container {
    display: grid;
    grid-template-columns: 3fr 1fr;
  }
  .altiri-section .top_container .article_container {
    width: 70vw;
    flex-wrap: wrap;
    display: flex;
  }
  .altiri-section .top_container .article_container .image_box {
    position: relative;
    overflow: hidden;
    width: 35vw;
    height: 42vw;
  }
  .altiri-section .top_container .article_container .image_box img {
    transition: 1s all;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .altiri-section .top_container .article_container .image_box::after {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(rgba(36, 36, 36, 0), rgba(36, 36, 36, 0.9));
  }
  .altiri-section .top_container .article_container .text_box {
    top: auto;
    bottom: 0;
    left: 32px;
    width: calc(100% - 64px);
    position: absolute;
    z-index: 2;
  }
  .altiri-section .top_container .article_container .text_box h4 {
    font-size: 20px;
  }
  .altiri-section .top_container .article_container .text_box p {
    font-size: 24px;
    line-height: 140%;
    margin-bottom: 16px;
    text-align: justify;
  }
  .altiri-section .top_container .article_container .text_box .story-tags {
    display: flex;
    margin-bottom: 12px;
  }
  .altiri-section .top_container .article_container .text_box .story-tags p {
    font-size: 14px;
    margin-right: 4px;
  }
  .altiri-section .side_menu {
    display: block;
  }
  .altiri-section main {
    padding: 120px 24px 48px 24px;
  }
  .altiri-section main .about-partner-story-wrapper {
    margin: 0 auto;
  }
  .altiri-section main section {
    margin-bottom: 64px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    width: 100%;
    margin: 0 auto 88px auto;
  }
  .altiri-section main section h2 {
    font-size: 44px;
    margin-bottom: 32px;
    font-weight: 500;
    color: #030B1C;
  }
  .altiri-section main section h3 {
    font-size: 18px;
    letter-spacing: 0.2em;
    margin: 0;
    font-family: alternate-gothic-atf, sans-serif;
  }
  .altiri-section main section p {
    font-size: 18px;
  }
  .altiri-section main .bottom_altiri_logo {
    width: 100px;
    margin: 88px auto 32px auto;
  }
  .altiri-section footer {
    width: 100%;
    background: #000;
  }
  .altiri-section footer .footer_partners {
    background: #020711;
  }
  .altiri-section footer .footer_partners .footer_wrapper {
    margin: 0 auto;
    padding: 48px 0;
    width: 100%;
    max-width: 1200px;
  }
  .altiri-section footer .footer_partners .footer_wrapper p {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.55em;
    text-align: center;
    margin-bottom: 28px;
  }
  .altiri-section footer .footer_partners .topandexecutive_partners_logo_container {
    display: flex;
    width: 480px;
    margin: 0 auto;
  }
  .altiri-section footer .footer_partners .topandexecutive_partners_logo_container a {
    width: 50%;
  }
  .altiri-section footer .footer_partners .partners_logo_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .altiri-section footer .footer_partners .partners_logo_container a {
    width: 16.6666666667%;
  }
  .altiri-section footer .footer_partners .partners_logo_container a img {
    opacity: 0.4;
  }
  .altiri-section footer .footer_links .footer_wrapper {
    margin: 0 auto;
    padding: 48px 0;
    display: flex;
    justify-content: space-between;
  }
  .altiri-section footer .footer_links .footer_wrapper .site_links img {
    width: 218px;
    margin-bottom: 28px;
  }
  .altiri-section footer .footer_links .footer_wrapper .site_links ul {
    display: flex;
  }
  .altiri-section footer .footer_links .footer_wrapper .site_links ul li {
    font-size: 14px;
    margin-right: 40px;
  }
  .altiri-section footer .footer_links .footer_wrapper .sns_links {
    display: flex;
  }
  .altiri-section footer .footer_links .footer_wrapper .sns_links a {
    margin-right: 28px;
  }
}/*# sourceMappingURL=altiri-partner_story.css.map */