@charset "UTF-8";
/*!
Theme Name: CAF-2nd
Author: ubros
Description: CAF theme
Version: 1.0.0
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  vertical-align: baseline;
}

/* ブロック要素のデフォルトスタイルをリセット */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* HTML5要素の高さをリセット */
html {
  line-height: 1;
}

/* 引用スタイルをリセット */
blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* テーブル要素のスタイルをリセット */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* その他のスタイルをリセット */
body {
  position: relative;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, textarea {
  font: inherit;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.header {
  background: white;
  box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 9999;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo-container {
  padding: 20px 16px;
}
.header .logo-container .brand-logo {
  width: 320px;
}
.header .menu-container {
  height: 61px;
  padding: 20px 16px;
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.header .menu-container .menu-top {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 16px;
}
.header .menu-container .menu-top .sns-list {
  list-style: none;
  display: flex;
  gap: 8px;
}
.header .menu-container .menu-top .sns-list .icon {
  width: 24px;
  height: 24px;
}
.header .menu-container .menu-bottom .menu-list {
  list-style: none;
  display: flex;
  gap: 16px;
  font-weight: bold;
  font-size: 0.9rem;
}
.header #nav-drawer {
  display: none;
  position: relative;
}
.header #nav-drawer .menu-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80%;
  gap: 2rem;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0 16px;
  list-style: none;
}
.header #nav-drawer .nav-unshown {
  display: none;
}
.header #nav-drawer #nav-open {
  padding: 0 16px;
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}
.header #nav-drawer #nav-open span, .header #nav-drawer #nav-open span:before, .header #nav-drawer #nav-open span:after {
  position: absolute;
  height: 2px; /*線の太さ*/
  width: 20px; /*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: "";
  cursor: pointer;
}
.header #nav-drawer #nav-open span:before {
  bottom: -8px;
}
.header #nav-drawer #nav-open span:after {
  bottom: -16px;
}
.header #nav-drawer #nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.header #nav-drawer #nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 330px;
  height: 100%;
  background: #fff;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}
.header #nav-drawer #nav-input:checked ~ #nav-close {
  display: block;
  opacity: 0.5;
}
.header #nav-drawer #nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1024px) {
  .header {
    justify-content: space-between;
    height: auto;
  }
  .header #nav-drawer {
    display: block;
  }
  .header .logo-container {
    padding: 20px 16px;
  }
  .header .logo-container .brand-logo {
    width: 250px;
  }
  .header .menu-container {
    display: none;
  }
}

.footer {
  background: #373737;
  padding: 100px 16px;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer .container .footer-logo {
  max-width: 400px;
}
.footer .container .menu-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.footer .container .menu-container .menu-list {
  color: #fff;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 50px;
}
.footer .container .menu-container .sns-list {
  color: #fff;
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 20px;
  margin: 0 auto 10px auto;
}
.footer .container .menu-container .copy-right {
  text-align: center;
  color: #d3d3d3;
  font-size: 0.8rem;
}
@media screen and (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    gap: 50px;
  }
  .footer .container .footer-logo {
    padding: 0 16px;
  }
  .footer .container .menu-container {
    text-align: center;
    padding: 0 16px;
  }
  .footer .container .menu-container .menu-list {
    flex-direction: column;
    gap: 10px;
  }
}

a.button {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  min-width: 120px;
  padding: 1rem 4rem;
  font-weight: bold;
  border-radius: 4px;
  border: 1px solid #FF8E01;
  color: #FF8E01;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.2s ease-in;
}
a.button:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scaleY(1) scaleX(1.25);
  top: 100%;
  width: 140%;
  height: 180%;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
a.button:after {
  content: "";
  position: absolute;
  left: 55%;
  transform: translateX(-50%) scaleY(1) scaleX(1.45);
  top: 180%;
  width: 160%;
  height: 190%;
  background-color: #FF8E01;
  border-radius: 50%;
  display: block;
  transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
  z-index: -1;
}
a.button:hover {
  color: #ffffff;
  border: 1px solid #FF8E01;
}
a.button:hover:before {
  top: -35%;
  background-color: #FF8E01;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}
a.button:hover:after {
  top: -45%;
  background-color: #FF8E01;
  transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.allow-button {
  display: block;
  position: relative;
  padding: 1em 2em;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50vh;
  transition: 0.3s;
  border: 3px solid #fff;
  text-align: center;
}
.allow-button.orange {
  color: #FF8E01;
  border: 3px solid #FF8E01;
}
.allow-button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50vh;
}
.allow-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
}
.allow-button:hover {
  color: #fff;
  text-decoration: none;
  background-color: #FF8E01;
  border: 3px solid #FF8E01;
}
.allow-button:hover::after {
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
}
.allow-button.white:hover {
  color: #FF8E01;
  text-decoration: none;
  background-color: #fff;
  border: 3px solid #fff;
}
.allow-button.white:hover::after {
  border-top: 4px solid #FF8E01;
  border-right: 4px solid #FF8E01;
}

.gradient .title {
  animation: AnimationTitle 5s ease infinite;
  background: linear-gradient(to right, #cd374c, #0673a9, #14954c, #dcb55b);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

@keyframes AnimationTitle {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
form input, form textarea, form select {
  border: 1px solid #dcdcdc;
  padding: 5px 10px;
  border-radius: 10px;
  width: 100%;
}
form select {
  height: 40px;
}

.pagination {
  padding: 100px 20px;
}
.pagination > div {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.pagination > div a, .pagination > div span {
  display: inline-block;
  border: 1px solid #dcdcdc;
  padding: 5px 15px;
  border-radius: 100px;
  color: #555555;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s;
}
.pagination > div span {
  border: 0;
}
.pagination > div a:hover {
  background-color: #FF8E01;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .pagination {
    padding: 100px 20px 0;
  }
  .pagination > div {
    gap: 20px 15px;
    flex-wrap: wrap;
  }
  .pagination > div a, .pagination > div span {
    font-size: 1rem;
  }
}

.page-404 {
  padding: 200px 20px;
}
.page-404 h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.page-404 a {
  color: #FF8E01;
  text-decoration: underline;
}

.page-index {
  display: flex;
  flex-direction: column;
  gap: 130px;
}
.page-index h1 {
  position: relative;
  margin-bottom: 20px;
}
.page-index h1:after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 88px;
  left: 0;
  height: 6px;
  background: #FF8E01;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .page-index h1:after {
    left: calc(50% - 25px);
    width: 50px;
  }
}
.page-index .hero-container {
  position: relative;
  padding: 20px;
  height: 750px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: end;
  flex-direction: column;
  transition: background-image 2s ease-in-out;
}
.page-index .hero-container .challenge-path {
  position: absolute;
  top: -2px;
  left: 10%;
  width: 80%;
  z-index: 0;
  max-width: 1000px;
}
.page-index .hero-container .message-path {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 80%;
  z-index: 1;
  max-width: 800px;
}
.page-index .hero-container:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -70px;
  left: 0;
  height: 120px;
  width: 100%;
  background: #fff;
  transform: skewY(-3deg);
}
.page-index .about-container {
  display: flex;
  gap: 50px;
}
.page-index .about-container .title-container {
  display: flex;
  flex: 0.7;
  flex-direction: column;
  align-items: end;
  justify-content: center;
}
.page-index .about-container .title-container h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #222222;
}
.page-index .about-container .title-container span {
  font-size: 1.5rem;
  color: #222222;
}
.page-index .about-container .description-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 16px;
}
.page-index .video-container {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 1.4rem;
}
.page-index .video-container .player {
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  height: 315px;
  width: 560px;
}
.page-index .initiatives-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-index .initiatives-container h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #222222;
}
.page-index .initiatives-container span {
  font-size: 1.5rem;
  color: #222222;
}
.page-index .initiatives-container .description {
  margin: 20px 0;
  font-size: 1rem;
}
.page-index .initiatives-container .initiatives {
  display: flex;
  width: 100%;
  gap: 50px;
  margin-bottom: 50px;
}
.page-index .initiatives-container .initiatives .initiative-item {
  flex: 1;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
}
.page-index .initiatives-container .initiatives .initiative-item:before {
  border-radius: 20px;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.page-index .initiatives-container .initiatives .initiative-item span {
  z-index: 999;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  color: white;
  text-shadow: 0 5px 0 #000;
}
.page-index .initiatives-container .initiatives .initiative-item.try-challenge {
  background: url(assets/images/index/try-challenge.jpg) no-repeat center center;
  background-size: 130%;
}
.page-index .initiatives-container .initiatives .initiative-item.try-challenge:hover {
  background-size: 150%;
}
.page-index .initiatives-container .initiatives .initiative-item.exercise-habits {
  background: url(assets/images/index/exercise-habits.jpg) no-repeat center center;
  background-size: 130%;
}
.page-index .initiatives-container .initiatives .initiative-item.exercise-habits:hover {
  background-size: 150%;
}
.page-index .action-section {
  background: #FF8E01;
  padding: 50px 0;
}
.page-index .action-section .action-container {
  width: 100%;
}
.page-index .action-section .action-container .actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
.page-index .action-section .action-container .actions .allow-button {
  flex: 1;
}
.page-index .magazine {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.page-index .magazine.archive {
  padding: 0;
}
.page-index .magazine .title-container {
  display: flex;
  flex-direction: column;
}
.page-index .magazine .title-container h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #222222;
}
.page-index .magazine .title-container span {
  font-size: 1.5rem;
  color: #222222;
}
.page-index .magazine .button {
  max-width: 200px;
  align-self: center;
}
.page-index .partners-container {
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.page-index .partners-container .title-container {
  margin-bottom: 40px;
}
.page-index .partners-container .title-container h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
}
.page-index .partners-container .title-container h1:after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 88px;
  left: calc(50% - 44px);
  height: 6px;
  background: #FF8E01;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .page-index .partners-container .title-container h1:after {
    left: calc(50% - 25px);
    width: 50px;
  }
}
.page-index .partners-container .title-container p {
  text-align: center;
}
.page-index .partners-container .title-container span {
  font-size: 1.5rem;
}
.page-index .partners-container .logos {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  gap: 20px;
  justify-content: center;
}
.page-index .partners-container .logos .logo {
  height: 120px;
  width: 100%;
  max-width: 300px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
  margin-right: auto;
}
.page-index .partners-container .logos .logo.wide {
  grid-column: span 2;
  width: 100%;
  max-width: 600px;
}
.page-index .bottom-section {
  background: #373737;
}
.page-index .bottom-section .action-container {
  padding: 100px 16px 0 16px;
}
.page-index .bottom-section .action-container .actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.page-index .bottom-section .action-container .actions .allow-button {
  flex: 1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .page-index .hero-container {
    padding: 20px 20px 100px 20px;
    align-items: end;
    justify-content: end;
    flex-direction: column;
    height: 600px;
  }
  .page-index .hero-container .challenge-path {
    position: absolute;
    top: -2px;
    left: 5%;
    width: 90%;
    z-index: 0;
    max-width: 1000px;
  }
  .page-index .hero-container .message-path {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 80%;
    z-index: 1;
    max-width: 800px;
  }
  .page-index .about-container {
    padding: 0;
    flex-direction: column;
    gap: 25px;
  }
  .page-index .about-container .title-container {
    flex-direction: column;
    align-items: center;
  }
  .page-index .about-container .title-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .page-index .about-container .title-container span {
    font-size: 0.8rem;
    color: #222222;
  }
  .page-index .about-container .description-container {
    padding: 0 16px;
    text-align: center;
    align-items: center;
  }
  .page-index .about-container .description-container br {
    display: none;
  }
  .page-index .initiatives-container {
    width: 94%;
  }
  .page-index .initiatives-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .page-index .initiatives-container span {
    font-size: 0.8rem;
    color: #222222;
  }
  .page-index .initiatives-container .description {
    margin: 20px 0;
    padding: 0 16px;
    font-size: 1rem;
  }
  .page-index .initiatives-container .initiatives {
    gap: 10px;
  }
  .page-index .initiatives-container .initiatives .initiative-item {
    height: 200px;
  }
  .page-index .initiatives-container .initiatives .initiative-item span {
    font-size: 1.3rem;
  }
  .page-index .action-section {
    display: flex;
    justify-content: center;
  }
  .page-index .action-section .action-container {
    max-width: 94%;
  }
  .page-index .action-section .action-container .actions {
    flex-direction: row;
  }
  .page-index .magazine .title-container {
    flex-direction: column;
    align-items: center;
  }
  .page-index .magazine .title-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .page-index .magazine .title-container span {
    font-size: 0.8rem;
    color: #222222;
  }
  .page-index .magazine .articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    padding: 0 16px;
  }
  .page-index .magazine .articles .article {
    padding: 0;
  }
  .page-index .magazine .articles .article img {
    object-fit: cover;
    max-height: 280px;
  }
  .page-index .partners-container .title-container {
    flex-direction: column;
    align-items: center;
  }
  .page-index .partners-container .title-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .page-index .partners-container .title-container span {
    font-size: 0.8rem;
    color: #222222;
  }
  .page-index .partners-container .logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
    row-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .page-index .hero-container {
    position: relative;
    padding: 20px 20px 100px 20px;
    height: 300px;
    background: url(assets/images/backgrounds/hero_2.webp) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
  }
  .page-index .hero-container .challenge-path {
    position: absolute;
    top: -2px;
    left: 5%;
    width: 90%;
    z-index: 0;
    max-width: 1000px;
  }
  .page-index .hero-container .message-path {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 80%;
    z-index: 1;
    max-width: 800px;
  }
  .page-index .about-container {
    padding: 0;
    flex-direction: column;
    gap: 25px;
  }
  .page-index .about-container .title-container {
    flex-direction: column;
    align-items: center;
  }
  .page-index .about-container .title-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .page-index .about-container .title-container span {
    font-size: 0.8rem;
    color: #222222;
  }
  .page-index .about-container .description-container {
    padding: 0 16px;
    text-align: center;
    align-items: center;
  }
  .page-index .about-container .description-container br {
    display: none;
  }
  .page-index .video-container .player {
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
  }
  .page-index .initiatives-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .page-index .initiatives-container span {
    font-size: 0.8rem;
    color: #222222;
  }
  .page-index .initiatives-container .description {
    margin: 20px 0;
    padding: 0 16px;
    font-size: 1rem;
  }
  .page-index .initiatives-container .initiatives {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .page-index .initiatives-container .initiatives .initiative-item {
    margin: 0 16px;
    flex: inherit;
    height: 200px;
  }
  .page-index .initiatives-container .initiatives .initiative-item span {
    font-size: 1.3rem;
  }
  .page-index .action-section {
    display: flex;
    justify-content: center;
  }
  .page-index .action-section .action-container {
    max-width: 94%;
  }
  .page-index .action-section .action-container .actions {
    flex-direction: column;
  }
  .page-index .magazine .title-container {
    flex-direction: column;
    align-items: center;
  }
  .page-index .magazine .title-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .page-index .magazine .title-container span {
    font-size: 0.8rem;
    color: #222222;
  }
  .page-index .partners-container .title-container {
    flex-direction: column;
    align-items: center;
  }
  .page-index .partners-container .title-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .page-index .partners-container .title-container span {
    font-size: 0.8rem;
    color: #222222;
  }
  .page-index .partners-container .logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5px;
    row-gap: 5px;
  }
  .page-index .partners-container .logos .logo {
    height: 80px;
  }
  .page-index .bottom-section {
    padding: 50px 0 0;
  }
  .page-index .bottom-section .action-container {
    padding: 0 16px;
  }
  .page-index .bottom-section .action-container .actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .page-index .bottom-section .action-container .actions .allow-button {
    flex: 1;
    font-size: 0.8rem;
  }
}

.page-about {
  display: flex;
  flex-direction: column;
  gap: 150px;
}
.page-about > *:nth-child(2) {
  margin-top: -100px;
}
.page-about > *:nth-child(6) {
  background-color: #f0f0f0;
}
.page-about .sp-only {
  display: none;
}
.page-about .section-title {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  color: #222222;
}
.page-about .section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 88px;
  left: calc(50% - 44px);
  height: 6px;
  background: #FF8E01;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .page-about .section-title:after {
    left: calc(50% - 25px);
    width: 50px;
  }
}
.page-about .index-container {
  z-index: 9999;
  background: #f8f8f8;
  position: sticky;
  top: 94px;
  padding: 20px 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.page-about .index-container ul {
  list-style: none;
  display: flex;
  gap: 50px;
  justify-content: center;
}
.page-about .index-container ul li {
  padding: 0;
  font-size: 14px;
  transition: all 0.3s;
}
.page-about .index-container ul li:hover {
  font-weight: bold;
  color: #FF8E01;
}
.page-about .message-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 0;
}
.page-about .message-container .title-container {
  display: flex;
  flex: 0.7;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-about .message-container .title-container span {
  font-size: 1.5rem;
  color: #222222;
}
.page-about .message-container .description-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-about .message-container .description-container .sign {
  font-family: "Zen Old Mincho", serif;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-about .message-container .description-container .sign .company-name {
  font-weight: bold;
}
.page-about .message-container .description-container .sign .names {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.page-about .message-container .description-container .sign .names .yakusyoku-name {
  font-weight: bold;
}
.page-about .message-container .description-container .sign .names .sign-name {
  font-size: 1.5rem;
  font-weight: bold;
}
.page-about .message-container .description-container p {
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.page-about .divider {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-about .divider img {
  width: 600px;
  border-radius: 10px;
}
.page-about .philosophy-container {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.page-about .philosophy-container .title-container {
  display: flex;
  flex: 0.7;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-about .philosophy-container .title-container span {
  font-size: 1.5rem;
  color: #222222;
}
.page-about .philosophy-container .description-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-about .philosophy-container .description-container h3 {
  color: #FF8E01;
  font-size: 1.5rem;
  font-weight: bold;
}
.page-about .philosophy-container .description-container h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.page-about .philosophy-container .description-container img {
  max-width: 300px;
  border-radius: 10px;
}
.page-about .philosophy-container .description-container p {
  text-align: center;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.page-about .philosophy-container .description-container.core-competence h3 {
  margin-bottom: 20px;
}
.page-about .philosophy-container .description-container.core-competence .block-items {
  display: flex;
  gap: 30px;
}
.page-about .philosophy-container .description-container.core-competence .block-items img {
  width: 100%;
}
.page-about .philosophy-container .description-container.credo-container img {
  width: 100%;
  max-width: 800px;
}
.page-about .overview-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 75px 0;
}
.page-about .overview-container .title-container {
  display: flex;
  flex: 0.7;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  margin-bottom: 50px;
}
.page-about .overview-container .title-container h1 {
  font-size: 2rem;
  font-weight: bold;
}
.page-about .overview-container .title-container span {
  font-size: 1.5rem;
}
.page-about .overview-container .description-container {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.page-about .overview-container .description-container dl {
  display: flex;
  gap: 2rem;
}
.page-about .overview-container .description-container dl dt {
  flex: 0.2;
  text-align: right;
  font-size: 0.8rem;
  font-weight: bold;
}
.page-about .overview-container .description-container dl dd {
  flex: 1;
  width: 100%;
}
.page-about .overview-container .description-container dl dd ul {
  padding-left: 20px;
}
.page-about .member-container {
  display: flex;
  flex-direction: column;
  gap: 70px;
  max-width: 1000px;
}
.page-about .member-container .title-container {
  display: flex;
  flex: 0.7;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-about .member-container .title-container h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #222222;
}
.page-about .member-container .title-container span {
  font-size: 1.5rem;
  color: #222222;
}
.page-about .member-container .members-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.page-about .member-container .members-container .member-item {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
}
.page-about .member-container .members-container .member-item .image img {
  width: 200px;
  border-radius: 10px;
}
.page-about .member-container .members-container .member-item .detail {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}
.page-about .member-container .members-container .member-item .detail .profile {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1rem;
}
.page-about .member-container .members-container .member-item .detail .profile .name-block {
  display: inline-flex;
  flex-direction: column;
}
.page-about .member-container .members-container .member-item .detail .profile .name-block h1 {
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.5rem;
}
.page-about .member-container .members-container .member-item .detail .profile .name-block .ruby {
  font-weight: bold;
  line-height: 1rem;
}
.page-about .member-container .members-container .member-item .detail .profile h2 {
  font-size: 1rem;
  color: #4c4c4c;
}
.page-about .member-container .members-container .member-item .detail .profile-detail {
  display: flex;
  gap: 3rem;
  padding: 16px;
  background: #f6f6f6;
  font-size: 0.8rem;
  border-radius: 10px;
}
.page-about .member-container .members-container .member-item .detail .profile-detail .history {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-about .member-container .members-container .member-item .detail .profile-detail .history span {
  font-size: 1rem;
  font-weight: bold;
}
.page-about .member-container .members-container .member-item .detail .profile-detail .history dl {
  position: relative;
}
.page-about .member-container .members-container .member-item .detail .profile-detail .history dl dt {
  font-weight: bold;
  font-size: 0.7rem;
}
.page-about .member-container .members-container .member-item .detail .profile-detail .history dl dd {
  font-size: 0.9rem;
}
.page-about .member-container .members-container .member-item .detail .profile-detail .note {
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-about .member-container .members-container .member-item .detail .profile-detail .note span {
  font-size: 1rem;
  font-weight: bold;
}
.page-about .member-container .members-container .member-item .detail .profile-detail .note ul {
  padding-left: 20px;
}
@media screen and (max-width: 1024px) {
  .page-about {
    margin-top: 0;
  }
  .page-about .index-container {
    top: 62px;
  }
  .page-about .message-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .page-about .message-container .title-container {
    flex-direction: column;
    align-items: center;
  }
  .page-about .message-container .title-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .page-about .message-container .title-container span {
    font-size: 0.8rem;
    color: #222222;
  }
  .page-about .message-container .description-container {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .page-about .message-container .description-container h1 {
    font-size: 2rem;
    font-weight: bold;
  }
  .page-about .message-container .description-container p {
    font-size: 0.9rem;
  }
  .page-about .philosophy-container .description-container .block-items {
    flex-direction: row;
  }
  .page-about .divider {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-about .divider img {
    width: 100%;
    border-radius: 0;
  }
  .page-about .overview-container {
    padding: 64px 16px;
  }
  .page-about .overview-container .description-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .page-about .overview-container .description-container dl {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .page-about .overview-container .description-container dl dt {
    flex: 0.4;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
  }
  .page-about .overview-container .description-container dl dd {
    flex: 1;
    width: 100%;
    font-size: 0.8rem;
  }
  .page-about .overview-container .description-container dl dd ul {
    padding-left: 20px;
  }
  .page-about .member-container .title-container {
    flex-direction: column;
    align-items: center;
  }
  .page-about .member-container .title-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .page-about .member-container .title-container span {
    font-size: 0.8rem;
    color: #222222;
  }
  .page-about .member-container .members-container {
    display: flex;
    flex-direction: column;
    gap: 150px;
  }
  .page-about .member-container .members-container .member-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  .page-about .member-container .members-container .member-item .image img {
    max-width: 200px;
    border-radius: 10px;
  }
  .page-about .member-container .members-container .member-item .detail {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
  }
  .page-about .member-container .members-container .member-item .detail .profile {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
  }
  .page-about .member-container .members-container .member-item .detail .profile .name-block {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
  }
  .page-about .member-container .members-container .member-item .detail .profile .name-block h1 {
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  .page-about .member-container .members-container .member-item .detail .profile .name-block .ruby {
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1rem;
  }
  .page-about .member-container .members-container .member-item .detail .profile h2 {
    font-size: 1rem;
    color: #4c4c4c;
  }
  .page-about .member-container .members-container .member-item .detail .profile-detail {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 0.8rem;
    border-radius: 0;
  }
  .page-about .member-container .members-container .member-item .detail .profile-detail .history {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .page-about .member-container .members-container .member-item .detail .profile-detail .history span {
    font-size: 1rem;
    font-weight: bold;
  }
  .page-about .member-container .members-container .member-item .detail .profile-detail .history dl {
    position: relative;
  }
  .page-about .member-container .members-container .member-item .detail .profile-detail .history dl dt {
    font-weight: bold;
    font-size: 0.7rem;
  }
  .page-about .member-container .members-container .member-item .detail .profile-detail .history dl dd {
    font-size: 0.9rem;
  }
  .page-about .member-container .members-container .member-item .detail .profile-detail .note {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-wrap: break-word;
  }
  .page-about .member-container .members-container .member-item .detail .profile-detail .note span {
    font-size: 1rem;
    font-weight: bold;
  }
  .page-about .member-container .members-container .member-item .detail .profile-detail .note ul {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-about {
    margin-top: 100px;
    position: relative;
  }
  .page-about .sp-only {
    display: block;
  }
  .page-about .index-container {
    position: fixed;
    top: inherit;
    bottom: 0;
    background: #fff;
    padding: 20px 0;
    width: 100%;
  }
  .page-about .index-container ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 0 16px;
  }
  .page-about .index-container ul li {
    padding: 0;
    font-size: 12px;
    transition: all 0.3s;
    text-align: center;
  }
  .page-about .index-container ul li:hover {
    font-weight: bold;
    color: #FF8E01;
  }
  .page-about .message-container .description-container p {
    text-align: left;
  }
  .page-about .message-container .description-container p br {
    display: none;
  }
  .page-about .philosophy-container .description-container {
    padding-right: 16px;
    padding-left: 16px;
  }
  .page-about .philosophy-container .description-container p {
    text-align: left;
  }
  .page-about .philosophy-container .description-container p br {
    display: none;
  }
  .page-about .philosophy-container .description-container h2 {
    text-align: center;
    font-size: 1.6rem;
  }
  .page-about .members-container {
    padding-right: 16px;
    padding-left: 16px;
  }
  .page-about .philosophy-container .description-container .block-items {
    flex-direction: column;
  }
}

.page-participate {
  margin-top: 100px;
  padding: 100px 0;
}
.page-participate .container {
  max-width: 800px;
}

.page-inquiry {
  margin-top: 100px;
  padding: 100px 20px;
}
.page-inquiry .container {
  max-width: 800px;
}
.page-inquiry .container .title-container {
  display: flex;
  flex: 0.7;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  margin-bottom: 50px;
}
.page-inquiry .container .title-container h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #222222;
}
.page-inquiry .container .title-container span {
  font-size: 1.2rem;
  color: #222222;
}
.page-inquiry .container form > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-inquiry .container form input[type=submit] {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page-inquiry {
    margin-top: 50px;
  }
  .page-inquiry .container {
    width: inherit;
    padding: 0 16px;
  }
  .page-inquiry .partake-list {
    flex-wrap: wrap;
  }
  .page-inquiry .partake-list .partake-item {
    width: 100%;
  }
  .page-inquiry .title-container {
    flex-direction: column;
    align-items: center;
  }
  .page-inquiry .title-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .page-inquiry .title-container span {
    font-size: 0.8rem;
    color: #222222;
  }
}

.page-partake {
  margin-top: 100px;
  padding: 100px 0;
}
.page-partake .container {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.page-partake .title-container {
  display: flex;
  flex: 0.7;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.page-partake .title-container h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #222222;
}
.page-partake .title-container span {
  font-size: 1.5rem;
  color: #222222;
}
.page-partake .partake-list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 25px;
}
.page-partake .partake-list .partake-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-partake .partake-list .partake-item h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.page-partake .partake-list .partake-item a {
  color: #FF8E01;
  font-weight: bold;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .page-partake {
    margin-top: 50px;
  }
  .page-partake .container {
    width: inherit;
    padding: 0 16px;
  }
  .page-partake .partake-list {
    flex-wrap: wrap;
  }
  .page-partake .partake-list .partake-item {
    width: 100%;
  }
  .page-partake .title-container {
    flex-direction: column;
    align-items: center;
  }
  .page-partake .title-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .page-partake .title-container span {
    font-size: 0.8rem;
    color: #222222;
  }
}

.page-partake-personal {
  padding: 120px 20px 100px;
  color: #222222;
}
.page-partake-personal .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  line-height: 1.8;
}
.page-partake-personal h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222222;
  margin-bottom: 10px;
}
.page-partake-personal h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.page-partake-personal ul {
  padding-left: 40px;
}
.page-partake-personal a {
  color: #FF8E01;
  text-decoration: underline;
}
.page-partake-personal blockquote {
  background: #f3f3f3;
  border-radius: 8px;
  padding: 10px 20px;
  margin-top: 10px;
}
.page-partake-personal blockquote .title {
  font-weight: bold;
  margin-bottom: 3px;
}
.page-partake-personal blockquote span {
  display: block;
  font-size: 1rem;
}

.page-partake-corporation {
  padding: 120px 20px 100px;
  color: #222222;
}
.page-partake-corporation .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  line-height: 1.8;
}
.page-partake-corporation h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222222;
  margin-bottom: 10px;
}
.page-partake-corporation h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.page-partake-corporation h3 {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.page-partake-corporation ul {
  padding-left: 40px;
}
.page-partake-corporation a {
  color: #FF8E01;
  text-decoration: underline;
}

.page-lp-2025 {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding-bottom: 100px;
  align-items: center;
}
.page-lp-2025 .eye-catch-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(assets/images/lp-2025/caf-eyecatch.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 1024px) {
  .page-lp-2025 .eye-catch-container img {
    width: 90%;
  }
}
.page-lp-2025 .spofit-container {
  max-width: 900px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .page-lp-2025 .spofit-container {
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.page-lp-2025 .spofit-container .title {
  display: flex;
  gap: 22px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}
.page-lp-2025 .spofit-container .title .description {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.page-lp-2025 .spofit-container .movie-container .menus {
  position: relative;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .page-lp-2025 .spofit-container .movie-container .menus {
    position: sticky;
    top: 63px;
    left: 0;
    background: #fff;
  }
}
.page-lp-2025 .spofit-container .movie-container .menus .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 67px;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  opacity: 0.5;
  transition: all 0.3s;
  gap: 6px;
}
.page-lp-2025 .spofit-container .movie-container .menus .menu:first-child {
  border-top-left-radius: 16px;
}
.page-lp-2025 .spofit-container .movie-container .menus .menu:last-child {
  border-top-right-radius: 16px;
}
@media screen and (max-width: 1024px) {
  .page-lp-2025 .spofit-container .movie-container .menus .menu {
    font-size: 12px;
    line-height: 14px;
    flex-direction: column;
    gap: 6px;
  }
  .page-lp-2025 .spofit-container .movie-container .menus .menu img {
    max-height: 24px;
  }
}
.page-lp-2025 .spofit-container .movie-container .menus .menu.active {
  opacity: 1;
  font-weight: 700;
}
.page-lp-2025 .spofit-container .movie-container .menus .menu:hover {
  cursor: pointer;
  opacity: 1;
}
.page-lp-2025 .spofit-container .movie-container .menus .menu-1 {
  background: #D03E4F;
}
.page-lp-2025 .spofit-container .movie-container .menus .menu-2 {
  background: #2377A8;
}
.page-lp-2025 .spofit-container .movie-container .menus .menu-3 {
  background: #3A9C52;
}
.page-lp-2025 .spofit-container .movie-container .menu-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  gap: 40px;
  display: none;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .page-lp-2025 .spofit-container .movie-container .menu-container {
    padding: 16px;
  }
}
.page-lp-2025 .spofit-container .movie-container .menu-container.active {
  display: flex;
}
.page-lp-2025 .spofit-container .movie-container .menu-container.menu-container-1 {
  background: rgba(208, 62, 79, 0.1);
  border: 3px solid #D03E4F;
}
.page-lp-2025 .spofit-container .movie-container .menu-container.menu-container-2 {
  background: rgba(35, 119, 168, 0.1);
  border: 3px solid #2377A8;
}
.page-lp-2025 .spofit-container .movie-container .menu-container.menu-container-3 {
  background: rgba(58, 156, 82, 0.1);
  border: 3px solid #3A9C52;
}
.page-lp-2025 .spofit-container .movie-container .menu-container .description {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #000000;
}
@media screen and (max-width: 1024px) {
  .page-lp-2025 .spofit-container .movie-container .menu-container .description {
    text-align: left;
  }
  .page-lp-2025 .spofit-container .movie-container .menu-container .description p {
    display: inline;
  }
}
.page-lp-2025 .spofit-container .movie-container .menu-container iframe {
  max-width: 600px;
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 1024px) {
  .page-lp-2025 .spofit-container .movie-container .menu-container iframe {
    width: 100%;
    min-height: 315px;
  }
}
.page-lp-2025 .spofit-container .movie-container .menu-container .detail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
}
@media screen and (max-width: 1024px) {
  .page-lp-2025 .spofit-container .movie-container .menu-container .detail {
    flex-direction: column;
  }
}
.page-lp-2025 .spofit-container .movie-container .menu-container .detail .left-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.page-lp-2025 .spofit-container .movie-container .menu-container .detail .left-container .avatar {
  border-radius: 60px;
  width: 100px;
  max-width: 120px;
  height: 100px;
  max-height: 120px;
  overflow: hidden;
  border: 3px solid #fff;
  margin-bottom: 12px;
}
.page-lp-2025 .spofit-container .movie-container .menu-container .detail .left-container .label {
  font-size: 12px;
  line-height: 25px;
}
.page-lp-2025 .spofit-container .movie-container .menu-container .detail .left-container .name {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
}
.page-lp-2025 .spofit-container .movie-container .menu-container .detail .movie-point-container {
  background: #fff;
  padding: 20px;
  max-width: 458px;
  width: auto;
  border-radius: 16px;
}
.page-lp-2025 .spofit-container .movie-container .menu-container .detail .movie-point-container h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #FF8400;
  margin-bottom: 16px;
}
.page-lp-2025 .spofit-container .movie-container .menu-container .detail .movie-point-container ul {
  padding-left: 16px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
}

.page-privacy-policy {
  margin-top: 100px;
  padding: 100px 16px;
}
@media screen and (max-width: 768px) {
  .page-privacy-policy {
    margin-top: 0;
    padding: 50px 16px;
  }
}
.page-privacy-policy .container {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.page-privacy-policy .title-container {
  display: flex;
  flex: 0.7;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.page-privacy-policy .title-container h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #222222;
}
@media screen and (max-width: 768px) {
  .page-privacy-policy .title-container h1 {
    font-size: 2rem;
  }
}
.page-privacy-policy .title-container span {
  font-size: 1.5rem;
  color: #222222;
}
.page-privacy-policy .content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 40px;
}
.page-privacy-policy .content h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 20px;
}
.page-privacy-policy .content p {
  margin-bottom: 20px;
}
.page-privacy-policy .content ul {
  margin-bottom: 20px;
  padding-left: 40px;
}
.page-privacy-policy .content ul li {
  margin-bottom: 2px;
}
.page-privacy-policy .content a {
  display: inline-block;
  padding: 0 4px;
  color: #FF8400;
  text-decoration: underline;
}

.single-post {
  padding: 140px 20px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
.single-post .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.single-post .post-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-post .post-header h1 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.single-post .post-header .description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.single-post .post-header .description ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 5px;
}
.single-post .post-header .description ul li {
  font-size: 0.8rem;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 5px;
  background-color: #eaeaea;
}
.single-post .post-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-post .post-content h2 {
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: bold;
}
.single-post .post-content figcaption {
  font-size: 0.8rem;
  color: #666666;
  font-style: italic;
  text-align: center;
}
.single-post .post-content p {
  line-height: 1.8;
}
.single-post .post-content a {
  color: #FF8E01;
  text-decoration: underline;
}

.archive {
  padding: 140px 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.archive .title-container {
  display: flex;
  flex-direction: column;
}
.archive .title-container h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #222222;
}
.archive .title-container span {
  font-size: 1.5rem;
  color: #222222;
}
.archive .articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.archive .articles .article {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
.archive .articles .article > div {
  width: 100%;
}
.archive .articles .article img {
  object-fit: cover;
  width: 100%;
  max-height: 300px;
}
.archive .articles .article .published-at {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #222222;
}
.archive .articles .article .published-at .icon {
  width: 16px;
  height: 16px;
}
.archive .articles .article .tags {
  display: flex;
  gap: 8px;
}
.archive .articles .article .tags span {
  font-size: 0.8rem;
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid #f19c6a;
  background: #FF8E01;
  border-radius: 50px;
  color: #fff;
}
.archive .articles .article h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .archive {
    padding: 100px 0;
  }
  .archive .articles {
    padding: 0 16px;
    gap: 50px 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .archive {
    padding: 100px 0;
  }
  .archive .title-container {
    flex-direction: column;
    align-items: center;
  }
  .archive .title-container h1 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #222222;
  }
  .archive .title-container span {
    font-size: 0.8rem;
    color: #222222;
  }
  .archive .articles {
    gap: 50px 8px;
    grid-template-columns: repeat(1, 1fr);
  }
  .archive .articles .article {
    flex-direction: column;
    padding: 0 16px;
  }
  .archive .articles .article img {
    max-width: 100%;
  }
  .archive .articles .article h2 {
    font-size: 1.2rem;
    font-weight: bold;
  }
}

main {
  padding-top: 94.5px;
}
@media screen and (max-width: 1024px) {
  main {
    padding-top: 65.5px;
  }
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/*# sourceMappingURL=style.css.map */
