/*
  Theme Name:project
*/
:root {
  --borderColor: #dddddd;
  --siteColorRed: #f0322f;
  --siteGray: #9e9d9d;
  --black: #222;
  --white: #fff;
  --primary-green: #00ab5b;
  --secondary-green: #77c52e;
}

.page-numbers {
  display: flex;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
  margin-top: 20px;
}
.page-numbers > li > span,
.page-numbers > li > a {
  width: 35px;
  height: 35px;
  color: #333;
  border: 1px solid var(--siteGray);
  border-radius: 5px;
}
.page-numbers > li > span {
  opacity: 0.4;
}
.page-numbers > li > .dots {
  width: auto;
  height: auto;
  border: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f6fafa;
  font-family: "Hiragino Sans", "Yu Gothic", "Roboto", sans-serif;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  color: var(--siteGray);
  border: 1px solid var(--siteGray);
  padding: 40px 15px;
  font-size: 10px;
  border-radius: 20px;
  display: flex;
  z-index: -1;
}

@media screen and (max-width: 520px) {
  .swiper-button-prev:after {
    transform: translateX(-4px);
    padding: 32px 10px !important;
  }
  .swiper-button-next:after {
    padding: 32px 10px !important;
    transform: translateX(4px);
  }
}
@media screen and (max-width: 1100px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1101px) {
  .sp {
    display: none !important;
  }
}
header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
}
header .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 新しいヘッダー構成 */
.headerContainer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px 0;
}

/* PCの時にヘッダーコンテナを中央揃え */
@media (min-width: 901px) {
  .headerContainer {
    align-items: center;
  }
}

.logoArea {
  flex: 0 0 auto;
}

.logo {
  display: block;
}

.logo img {
  max-height: 60px;
  width: auto;
}

.navigationArea {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 40px;
}

.loginArea {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
  width: 100%;
}

.menuArea {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

/* SP用のヘッダー */
@media (max-width: 900px) {
  .headerContainer {
    padding: 4px 0;
  }
  
  .logo img {
    max-height: 50px;
  }
  
  .navigationArea {
    margin-left: 20px;
  }
  
  .menuArea {
    display: none;
  }
  
  .loginArea {
    margin: 5px 0;
  }
}
.headerNav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mainNav {
  /* margin-left: auto; を削除 */
}
.mainNav .menu {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 14px;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 4px 0;
  background: #222;
  border-radius: 2px;
  transition: 0.3s;
}
.spMenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 20px;
}

/* ハンバーガーメニューのアニメーション */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.spMenu.open {
  display: flex;
}
.spMenu .menu {
  flex-direction: column;
  gap: 24px;
  list-style: none;
  align-items: center;
  width: 100%;
  max-width: 300px;
}
.spMenu .menu li {
  width: 100%;
  text-align: center;
}
.spMenu .menu a {
  display: block;
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}
.spMenu .menu a:hover {
  background-color: #f5f5f5;
}

/* ログインリンクのスタイル */
.loginLinks {
  display: flex;
  gap: 12px;
}

.login-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: opacity 0.3s;
  background: #111;
  padding: 6px 12px;
  border-radius: 20px;
}

.login-link:hover {
  opacity: 0.7;
  text-decoration: none;
  color: #00ab5b;
}

.spLoginLinks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 300px;
}

.sp-login-link {
  display: block;
  padding: 16px;
  background-color: #111;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 50px;
  transition: background-color 0.3s;
}

.sp-login-link:hover {
  background-color: #333;
  color: #fff;
  text-decoration: none;
}

/* topをトップに変更 */
.mainNav .menu a[href="/"],
.spMenu .menu a[href="/"] {
  position: relative;
}
.mainNav .menu a[href="/"]::after,
.spMenu .menu a[href="/"]::after {
  content: "トップ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: inherit;
  color: inherit;
}
.mainNav .menu a[href="/"] span,
.spMenu .menu a[href="/"] span {
  visibility: hidden;
}
@media (max-width: 900px) {
  .mainNav {
    display: none;
  }
  .loginLinks {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (min-width: 901px) {
  .spMenu {
    display: none !important;
  }
  .spLoginLinks {
    display: none !important;
  }
}
header .inner .headerNav .logo {
  transition: 0.1s;
}
header .inner .headerNav .logo:hover {
  opacity: 0.4;
}
header .inner .headerNav .menu-menu-1-container {
  width: 100%;
  overflow: auto;
}
header .inner .headerNav .menu-menu-1-container ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--borderColor);
  border-top: 1px solid var(--borderColor);
}
header .inner .headerNav .menu-menu-1-container ul a {
  font-size: 16px;
  display: block;
  align-content: center;
  height: 2.75rem;
  padding: 0 0.75rem;
  transition: 0.1s;
}
header .inner .headerNav .menu-menu-1-container ul a.active {
  background-color: #00ab5b !important;
  color: #fff !important;
  border-radius: 8px !important;
}
header .inner .headerNav .menu-menu-1-container ul a:hover {
  opacity: 0.4;
}
header .inner .accountButtons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
header .inner .accountButtons .login {
  height: 2.75rem;
  border: 1px solid var(--borderColor);
  color: black;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  background-color: #fff;
  font-weight: 700;
}
header .inner .accountButtons .companyLegister {
  color: #fff;
  background-color: #0052d5;
  border-radius: 0.25rem;
  gap: 0.25rem;
  height: 2.75rem;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
}
header .inner .accountButtons .companyLegister span {
  width: 17px;
  height: 17px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  background-color: #fff;
  border-radius: 50px;
}

@media screen and (max-width: 1100px) {
  header .inner .headerNav .accountButtons .login {
    display: none;
  }
  header .inner .headerNav .menu-menu-1-container ul a {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 800px) {
  header .inner .headerNav .menu-menu-1-container ul {
    overflow: auto;
    width: 830px;
  }
  header .inner .headerNav .menu-menu-1-container ul a {
    font-size: 12px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 520px) {
  header .inner .accountButtons {
    margin-right: 1rem !important;
  }
  header .inner .accountButtons .companyLegiste {
    font-size: 10px;
  }
}
main {
  min-height: 100vh;
}
main .inner {
  padding: 0 5rem;
}

@media screen and (max-width: 768px) {
  main .inner {
    padding: 0 20px;
  }
}
main .inner .maxWidth {
  max-width: 1500px;
  margin: 0 auto;
}
main .inner .maxWidth section:first-of-type {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 55px;
}
main .inner .maxWidth section:first-of-type .president {
  width: 100%;
}
main .inner .maxWidth section:first-of-type .president .subheading {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
@media screen and (max-width: 1100px) {
  main .inner .maxWidth section:first-of-type .president .subheading {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 800px) {
  main .inner .maxWidth section:first-of-type .president .subheading {
    flex-direction: row;
    align-items: flex-end;
  }
}
/* main .inner .maxWidth section:first-of-type .president .subheading .pickup,
main .inner .maxWidth section:first-of-type .businessPerson .subheading .pickup {
  font-size: 24px !important;
  color: #00ab5b !important;
} */
main .inner .maxWidth section:first-of-type .president .subheading .separate {
  display: flex;
  align-items: center;
}
main .inner .maxWidth section:first-of-type .president .subheading .separate img {
  width: 40px;
  height: 40px;
}
main .inner .maxWidth section:first-of-type .president .subheading .separate .title {
  font-size: 20px;
  font-weight: 700;
  margin-left: 10px;
}
main .inner .maxWidth section:first-of-type .president .contents ul {
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 25px;
}
main .inner .maxWidth section:first-of-type .president .contents ul a {
  gap: 16px;
  display: flex;
  flex-direction: column;
  transition: 0.1s;
}
main .inner .maxWidth section:first-of-type .president .contents ul a:hover {
  opacity: 0.4;
}
main .inner .maxWidth section:first-of-type .president .contents ul a img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
main .inner .maxWidth section:first-of-type .president .contents ul a p {
  font-size: 24px;
}
main .inner .maxWidth section:first-of-type .businessPerson {
  max-width: 448px;
  width: 100%;
}
main .inner .maxWidth section:first-of-type .businessPerson .subheading {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
@media screen and (max-width: 1100px) {
  main .inner .maxWidth section:first-of-type .businessPerson .subheading {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 800px) {
  main .inner .maxWidth section:first-of-type .businessPerson .subheading {
    flex-direction: row;
    align-items: flex-end;
  }
}
/* main .inner .maxWidth section:first-of-type .businessPerson .subheading .pickup,
main .inner .maxWidth section:first-of-type .businessPerson .subheading .pickup {
  font-size: 24px !important;
  color: #00ab5b !important;
} */
main .inner .maxWidth section:first-of-type .businessPerson .subheading .separate {
  display: flex;
  align-items: center;
}
main .inner .maxWidth section:first-of-type .businessPerson .subheading .separate img {
  width: 40px;
  height: 40px;
}
main .inner .maxWidth section:first-of-type .businessPerson .subheading .separate .title {
  font-size: 20px;
  font-weight: 700;
  margin-left: 10px;
}
main .inner .maxWidth section:first-of-type .businessPerson .contents > ul {
  gap: 12px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 520px) {
  main .inner .maxWidth section:first-of-type .businessPerson .contents > ul {
    grid-template-columns: 1fr;
  }
}
main .inner .maxWidth section:first-of-type .businessPerson .contents > ul a {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  transition: 0.1s;
}
main .inner .maxWidth section:first-of-type .businessPerson .contents > ul a:hover {
  opacity: 0.4;
}
main .inner .maxWidth section:first-of-type .businessPerson .contents > ul a img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
main .inner .maxWidth section:first-of-type .businessPerson .contents > ul a .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
main .inner .maxWidth section:first-of-type .businessPerson .contents > ul a .text p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  main .inner .maxWidth section:first-of-type .businessPerson .contents > ul a .text p {
    font-size: 14px;
  }
}
main .inner .maxWidth section:first-of-type .businessPerson .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
main .inner .maxWidth section:first-of-type .businessPerson .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
main .inner .maxWidth section:first-of-type .businessPerson .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
main .inner .maxWidth section:first-of-type .businessPerson .more a:hover {
  opacity: 0.4;
}

/* 社長の思いセクションの「もっと見る」ボタン */
main .inner .maxWidth section:first-of-type .president .more {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
}

main .inner .maxWidth section:first-of-type .president .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: #111;
  color: #fff;
  border-radius: 40px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}

main .inner .maxWidth section:first-of-type .president .more a:hover {
  opacity: 0.4;
}

/* sponsoredセクションの「もっと見る」ボタン */
main .inner .maxWidth section:first-of-type .businessPerson .more {
  display: flex;
  justify-content: space-around;
}

main .inner .maxWidth section:first-of-type .businessPerson .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: #111;
  color: #fff;
  border-radius: 40px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  /* margin-top: 55px; */
}
main .inner .maxWidth section:nth-of-type(2) .container {
  width: 70%;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .subheading {
  display: flex;
  gap: 10px;
  align-items: center;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .subheading img {
  width: 60px;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 520px) {
  main .inner .maxWidth section:nth-of-type(2) .container .affairs .contents > ul {
    grid-template-columns: 1fr;
  }
  main .inner .maxWidth section:nth-of-type(2) .container .affairs .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  main .inner .maxWidth section:nth-of-type(2) .container .affairs .contents > ul a .text {
    justify-content: center !important;
  }
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .contents > ul a:hover {
  opacity: 0.4;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .more {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: #111;
  color: #fff;
  border-radius: 40px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  main .inner .maxWidth section:nth-of-type(2) .container .affairs .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs > h2 {
  font-size: 22px;
  margin-top: 15px;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking {
  background-color: hsla(204, 0%, 100%, 1);
  background-image: radial-gradient(circle at 0% 0%, hsla(295.99999999999994, 77%, 74%, 0.35) 3.1210986267166043%, transparent 40%), radial-gradient(circle at 20% 0%, hsl(151.43deg 77% 74% / 35%) 3.1210986267166043%, transparent 40%), radial-gradient(circle at 40% 0%, hsla(186.61764705882354, 77%, 74%, 0.35) 3.1210986267166043%, #00000000 40%), radial-gradient(circle at 60% 0%, hsla(127.0588235294118, 77%, 74%, 0.35) 3.1210986267166043%, transparent 40%), radial-gradient(circle at 80% 0%, hsla(62.20588235294117, 77%, 74%, 0.35) 3.1210986267166043%, transparent 40%), radial-gradient(circle at 100% 0%, hsla(23.823529411764703, 77%, 74%, 0.35) 3%, transparent 40%);
  background-blend-mode: normal, normal, normal, normal, normal, normal;
  border-radius: 20px;
  padding: 16px 24px;
  margin-top: 30px;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .contents .number {
  display: flex;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .contents .number li {
  width: 33%;
  color: #fff;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .contents .number li:first-of-type span {
  background-color: #00ab5b !important;
  color: #fff !important;
  padding: 8px;
  border-radius: 8px;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .contents .number li:nth-of-type(2) span {
  background-color: #00ab5b !important;
  color: #fff !important;
  padding: 8px;
  border-radius: 8px;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .contents .number li:nth-of-type(3) span {
  background-color: #00ab5b !important;
  color: #fff !important;
  padding: 8px;
  border-radius: 8px;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .widget h2 {
  display: none;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .widget ul {
  margin-top: 30px;
  width: 100%;
  position: relative;
  opacity: 0.8;
  display: flex;
  gap: 18px;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .widget ul li {
  display: flex;
  flex-direction: column;
  width: 32%;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .widget ul li:hover {
  opacity: 0.4;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .widget ul li img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .widget ul li a {
  font-weight: 700;
  margin-top: 14px;
  font-size: 16px;
}

/* ランキング見出しを太字にする */
main .inner .maxWidth section:nth-of-type(2) .container .affairs h2 {
  font-weight: 700;
}
main .inner .maxWidth section:nth-of-type(2) .container .affairs small {
  display: none;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview {
  margin-top: 50px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .subheading img {
  width: 60px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview > p {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 520px) {
  main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .contents > ul {
    grid-template-columns: 1fr;
  }
  main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .contents > ul a .text {
    justify-content: center !important;
  }
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .contents > ul a:hover {
  opacity: 0.4;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .more {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: #111;
  color: #fff;
  border-radius: 40px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .OBOGInterview .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview {
  margin-top: 10px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview > p {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 520px) {
  main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .contents > ul {
    grid-template-columns: 1fr;
  }
  main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .contents > ul a .text {
    justify-content: center !important;
  }
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .contents > ul a:hover {
  opacity: 0.4;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .more {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: #111;
  color: #fff;
  border-radius: 40px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  main .inner .maxWidth section:nth-of-type(2) .container .groupInterview .studentInterview .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews {
  margin-top: 50px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .subheading img {
  width: 60px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .news {
  display: flex;
  gap: 20px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews > p {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews .contents > ul {
  gap: 12px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 520px) {
  main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews .contents > ul {
    grid-template-columns: 1fr;
  }
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews .contents > ul a {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews .contents > ul a:hover {
  opacity: 0.4;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews .contents > ul a img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews .contents > ul a .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews .contents > ul a .text p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews .contents > ul a .text p {
    font-size: 14px;
  }
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews .more {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: #111;
  color: #fff;
  border-radius: 40px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .OBOGNews .more a:hover {
  opacity: 0.4;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews {
  margin-top: 10px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews > p {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .contents > ul {
  gap: 12px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 520px) {
  main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .contents > ul {
    grid-template-columns: 1fr;
  }
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .contents > ul a {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .contents > ul a:hover {
  opacity: 0.4;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .contents > ul a img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .contents > ul a .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .contents > ul a .text p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .contents > ul a .text p {
    font-size: 14px;
  }
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .more {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: #111;
  color: #fff;
  border-radius: 40px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  main .inner .maxWidth section:nth-of-type(2) .container .groupNews .studentNews .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
main .inner .maxWidth section:nth-of-type(2) .container .serialization {
  margin-top: 45px;
}
main .inner .maxWidth section:nth-of-type(2) .container .serialization .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
main .inner .maxWidth section:nth-of-type(2) .container .serialization .subheading img {
  width: 60px;
}
main .inner .maxWidth section:nth-of-type(2) .container .serialization .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
main .inner .maxWidth section:nth-of-type(2) .container .serialization .mySwiper {
  margin-top: 30px;
  width: 90%;
}
main .inner .maxWidth section:nth-of-type(2) .container .serialization .mySwiper a {
  transition: 0.1s;
}
@media (any-hover: hover) {
  main .inner .maxWidth section:nth-of-type(2) .container .serialization .mySwiper a:hover {
    opacity: 0.4;
  }
}
main .inner .maxWidth section:nth-of-type(2) .container .serialization .mySwiper a img {
  width: 85%;
  margin: 0 auto;
}
main .inner .maxWidth section:nth-of-type(2) .container .more {
  margin-top: 25px;
  display: flex;
  justify-content: space-around;
}
main .inner .maxWidth section:nth-of-type(2) .container .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  background: #111;
  color: #fff;
  border-radius: 40px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
main .inner .maxWidth section:nth-of-type(2) .container .more a:hover {
  opacity: 0.4;
}

@media screen and (max-width: 1100px) {
  main .inner {
    padding: 0 3rem;
  }
  main .inner .maxWidth section:first-of-type .president .subheading,
  main .inner .maxWidth section:first-of-type .businessPerson .subheading {
    gap: 0;
  }
  main .inner .maxWidth section:nth-of-type(2) {
    flex-direction: column;
  }
  main .inner .maxWidth section:nth-of-type(2) .container {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  main .inner {
    padding: 0 1.5rem;
  }
  main .inner .maxWidth section:first-of-type .businessPerson {
    max-width: 100%;
  }
  main .inner .maxWidth section:nth-of-type(2) .serialization .mySwiper {
    width: 100% !important;
  }
  main .inner .maxWidth section:nth-of-type(2) .serialization .mySwiper img {
    width: 78% !important;
  }
}
@media screen and (max-width: 520px) {
  main .inner {
    padding: 0 1rem;
  }
  main .inner .maxWidth section:first-of-type .president .contents ul {
    flex-direction: column;
    display: flex;
  }
  main .inner .maxWidth section:first-of-type .president .contents ul li:nth-of-type(2) {
    display: none;
  }
  main .inner .maxWidth section:first-of-type .businessPerson .contents > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  main .inner .maxWidth section:first-of-type .businessPerson .contents > ul li:first-of-type {
    grid-column: 1/3;
  }
  main .inner .maxWidth section:first-of-type .businessPerson .contents > ul li:nth-of-type(2) {
    grid-column: 1/2;
  }
  main .inner .maxWidth section:first-of-type .businessPerson .contents > ul li:nth-of-type(3) {
    grid-column: 2/3;
  }
  main .inner .maxWidth section:first-of-type .businessPerson .contents > ul a {
    grid-template-columns: 1fr;
  }
  main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .contents .number li {
    width: 50%;
  }
  main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .contents .number li:nth-of-type(3) {
    display: none;
  }
  main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .widget ul li {
    width: 50%;
  }
  main .inner .maxWidth section:nth-of-type(2) .container .affairs .ranking .widget ul li:nth-of-type(3) {
    display: none;
  }
  main .inner .maxWidth section:nth-of-type(2) .container .groupNews .news {
    flex-direction: column;
  }
}
.page-template-page-president-php > div {
  margin-top: 60px !important;
}

@media screen and (max-width: 768px) {
  .page-template-page-president-php > div {
    margin-top: 0px !important;
  }
}
.page-template-page-president-php > div > div > .contents ul {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
@media screen and (max-width: 520px) {
  .page-template-page-president-php > div > div > .contents ul {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 800px) {
  .page-template-page-president-php > div {
    padding: 0 16px !important;
  }
}
.page-template-page-president-php .president {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 55px;
  padding: 0 80px;
}
.page-template-page-president-php .president .presidentPageDiv .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.page-template-page-president-php .president .presidentPageDiv .subheading img {
  width: 60px;
}
.page-template-page-president-php .president .presidentPageDiv .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.page-template-page-president-php .president .presidentPageDiv .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 520px) {
  .page-template-page-president-php .president .presidentPageDiv .contents > ul {
    grid-template-columns: 1fr;
  }
  .page-template-page-president-php .president .presidentPageDiv .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-template-page-president-php .president .presidentPageDiv .contents > ul a .text {
    justify-content: center !important;
  }
}
.page-template-page-president-php .president .presidentPageDiv .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}
.page-template-page-president-php .president .presidentPageDiv .contents > ul a:hover {
  opacity: 0.4;
}
.page-template-page-president-php .president .presidentPageDiv .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
.page-template-page-president-php .president .presidentPageDiv .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-template-page-president-php .president .presidentPageDiv .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}
.page-template-page-president-php .president .presidentPageDiv .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
.page-template-page-president-php .president .presidentPageDiv .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.page-template-page-president-php .president .presidentPageDiv .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
.page-template-page-president-php .president .presidentPageDiv .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  .page-template-page-president-php .president .presidentPageDiv .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1100px) {
  .president {
    flex-direction: column;
  }
}

/* sponsoredテンプレート用のスタイル */
/* sponsoredテンプレート用のスタイル（社長の想いベース） */
.page-template-page-sponsored-php > div,
.page-template-page-sponsored-php .president {
  margin-top: 60px !important;
}

@media screen and (max-width: 768px) {
  .page-template-page-sponsored-php > div,
  .page-template-page-sponsored-php .president {
    margin-top: 0px !important;
  }
}

.page-template-page-sponsored-php > div > div > .contents ul {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

@media screen and (max-width: 520px) {
  .page-template-page-sponsored-php > div > div > .contents ul {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 800px) {
  .page-template-page-sponsored-php > div {
    padding: 0 16px !important;
  }
}

.page-template-page-sponsored-php .president {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 55px;
  padding: 0 80px;
}
.page-template-page-sponsored-php .president .presidentPageDiv .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.page-template-page-sponsored-php .president .presidentPageDiv .subheading img {
  width: 60px;
}
.page-template-page-sponsored-php .president .presidentPageDiv .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.page-template-page-sponsored-php .president .presidentPageDiv .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.page-template-page-sponsored-php .president .presidentPageDiv .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}
.page-template-page-sponsored-php .president .presidentPageDiv .contents > ul a:hover {
  opacity: 0.4;
}
.page-template-page-sponsored-php .president .presidentPageDiv .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
.page-template-page-sponsored-php .president .presidentPageDiv .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-template-page-sponsored-php .president .presidentPageDiv .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}
.page-template-page-sponsored-php .president .presidentPageDiv .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
.page-template-page-sponsored-php .president .presidentPageDiv .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.page-template-page-sponsored-php .president .presidentPageDiv .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
.page-template-page-sponsored-php .president .presidentPageDiv .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  .page-template-page-sponsored-php .president .presidentPageDiv .contents > ul {
    grid-template-columns: 1fr;
  }
  .page-template-page-sponsored-php .president .presidentPageDiv .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-template-page-sponsored-php .president .presidentPageDiv .contents > ul a .text {
    justify-content: center !important;
  }
}

@media screen and (max-width: 520px) {
  .page-template-page-sponsored-php .president .presidentPageDiv .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1100px) {
  .page-template-page-sponsored-php .president {
    flex-direction: column;
  }
}

.page-id-12 > div {
  margin-top: 60px !important;
}

@media screen and (max-width: 768px) {
  .page-id-12 > div {
    margin-top: 0px !important;
  }
}
.page-id-12 > div > div > .contents ul {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
@media screen and (max-width: 520px) {
  .page-id-12 > div > div > .contents ul {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 800px) {
  .page-id-12 > div {
    padding: 0 16px !important;
  }
}
.page-id-12 .affairs {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 55px;
  padding: 0 80px;
}
.page-id-12 .affairs .affairsDiv .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.page-id-12 .affairs .affairsDiv .subheading img {
  width: 60px;
}
.page-id-12 .affairs .affairsDiv .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.page-id-12 .affairs .affairsDiv .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 520px) {
  .page-id-12 .affairs .affairsDiv .contents > ul {
    grid-template-columns: 1fr;
  }
  .page-id-12 .affairs .affairsDiv .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-id-12 .affairs .affairsDiv .contents > ul a .text {
    justify-content: center !important;
  }
}
.page-id-12 .affairs .affairsDiv .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}
.page-id-12 .affairs .affairsDiv .contents > ul a:hover {
  opacity: 0.4;
}
.page-id-12 .affairs .affairsDiv .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
.page-id-12 .affairs .affairsDiv .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-id-12 .affairs .affairsDiv .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}
.page-id-12 .affairs .affairsDiv .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
.page-id-12 .affairs .affairsDiv .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.page-id-12 .affairs .affairsDiv .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
.page-id-12 .affairs .affairsDiv .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  .page-id-12 .affairs .affairsDiv .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1100px) {
  .affairs {
    flex-direction: column;
  }
}
.page-id-14 > div {
  margin-top: 60px !important;
}

@media screen and (max-width: 768px) {
  .page-id-14 > div {
    margin-top: 0px !important;
  }
}
.page-id-14 > div > div > .contents ul {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
@media screen and (max-width: 520px) {
  .page-id-14 > div > div > .contents ul {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 800px) {
  .page-id-14 > div {
    padding: 0 16px !important;
  }
}
.page-id-14 .OBOG {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 55px;
  padding: 0 80px;
}
.page-id-14 .OBOG .OBOGPageDiv .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.page-id-14 .OBOG .OBOGPageDiv .subheading img {
  width: 60px;
}
.page-id-14 .OBOG .OBOGPageDiv .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.page-id-14 .OBOG .OBOGPageDiv .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 520px) {
  .page-id-14 .OBOG .OBOGPageDiv .contents > ul {
    grid-template-columns: 1fr;
  }
  .page-id-14 .OBOG .OBOGPageDiv .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-id-14 .OBOG .OBOGPageDiv .contents > ul a .text {
    justify-content: center !important;
  }
}
.page-id-14 .OBOG .OBOGPageDiv .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}
.page-id-14 .OBOG .OBOGPageDiv .contents > ul a:hover {
  opacity: 0.4;
}
.page-id-14 .OBOG .OBOGPageDiv .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
.page-id-14 .OBOG .OBOGPageDiv .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-id-14 .OBOG .OBOGPageDiv .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}
.page-id-14 .OBOG .OBOGPageDiv .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
.page-id-14 .OBOG .OBOGPageDiv .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.page-id-14 .OBOG .OBOGPageDiv .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
.page-id-14 .OBOG .OBOGPageDiv .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  .page-id-14 .OBOG .OBOGPageDiv .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1100px) {
  .OBOG {
    flex-direction: column;
  }
}

/* 就活コラム用スタイル */
.jobColumn {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 55px;
  padding: 0 80px;
}

.jobColumn .jobColumnPageDiv .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}

.jobColumn .jobColumnPageDiv .subheading img {
  width: 60px;
}

.jobColumn .jobColumnPageDiv .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.jobColumn .jobColumnPageDiv .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media screen and (max-width: 520px) {
  .jobColumn .jobColumnPageDiv .contents > ul {
    grid-template-columns: 1fr;
  }
  .jobColumn .jobColumnPageDiv .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .jobColumn .jobColumnPageDiv .contents > ul a .text {
    justify-content: center !important;
  }
}

.jobColumn .jobColumnPageDiv .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}

.jobColumn .jobColumnPageDiv .contents > ul a:hover {
  opacity: 0.4;
}

.jobColumn .jobColumnPageDiv .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}

.jobColumn .jobColumnPageDiv .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.jobColumn .jobColumnPageDiv .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}

.jobColumn .jobColumnPageDiv .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}

.jobColumn .jobColumnPageDiv .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.jobColumn .jobColumnPageDiv .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}

.jobColumn .jobColumnPageDiv .more a:hover {
  opacity: 0.4;
}

@media screen and (max-width: 520px) {
  .jobColumn .jobColumnPageDiv .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1100px) {
  .jobColumn {
    flex-direction: column;
  }
}


@media screen and (max-width: 768px) {
  .jobColumn {
    padding: 0 20px;
  }
}

.page-template-page-jobColumn-php > div {
  margin-top: 60px !important;
}

@media screen and (max-width: 768px) {
  .page-template-page-jobColumn-php > div {
    margin-top: 0px !important;
  }
}
.page-id-16 > div {
  margin-top: 60px !important;
}

@media screen and (max-width: 768px) {
  .page-id-16 > div {
    margin-top: 0px !important;
  }
}
.page-id-16 > div > div > .contents ul {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
@media screen and (max-width: 520px) {
  .page-id-16 > div > div > .contents ul {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 800px) {
  .page-id-16 > div {
    padding: 0 16px !important;
  }
}
.page-id-16 .students {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 120px;
  padding: 0 80px;
}
.page-id-16 .students .studentsPageDiv .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.page-id-16 .students .studentsPageDiv .subheading img {
  width: 60px;
}
.page-id-16 .students .studentsPageDiv .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.page-id-16 .students .studentsPageDiv .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 520px) {
  .page-id-16 .students .studentsPageDiv .contents > ul {
    grid-template-columns: 1fr;
  }
  .page-id-16 .students .studentsPageDiv .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-id-16 .students .studentsPageDiv .contents > ul a .text {
    justify-content: center !important;
  }
}
.page-id-16 .students .studentsPageDiv .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}
.page-id-16 .students .studentsPageDiv .contents > ul a:hover {
  opacity: 0.4;
}
.page-id-16 .students .studentsPageDiv .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
.page-id-16 .students .studentsPageDiv .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-id-16 .students .studentsPageDiv .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}
.page-id-16 .students .studentsPageDiv .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
.page-id-16 .students .studentsPageDiv .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.page-id-16 .students .studentsPageDiv .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
.page-id-16 .students .studentsPageDiv .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  .page-id-16 .students .studentsPageDiv .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1100px) {
  .students {
    flex-direction: column;
  }
}
.page-id-18 > div {
  margin-top: 60px !important;
}

@media screen and (max-width: 768px) {
  .page-id-18 > div {
    margin-top: 0px !important;
  }
}
.page-id-18 > div > div > .contents ul {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
@media screen and (max-width: 520px) {
  .page-id-18 > div > div > .contents ul {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 800px) {
  .page-id-18 > div {
    padding: 0 16px !important;
  }
}
.page-id-18 .companyNews {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 55px;
  padding: 0 80px;
}
.page-id-18 .companyNews .companyNewsPageDiv .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.page-id-18 .companyNews .companyNewsPageDiv .subheading img {
  width: 60px;
}
.page-id-18 .companyNews .companyNewsPageDiv .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.page-id-18 .companyNews .companyNewsPageDiv .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 520px) {
  .page-id-18 .companyNews .companyNewsPageDiv .contents > ul {
    grid-template-columns: 1fr;
  }
  .page-id-18 .companyNews .companyNewsPageDiv .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-id-18 .companyNews .companyNewsPageDiv .contents > ul a .text {
    justify-content: center !important;
  }
}
.page-id-18 .companyNews .companyNewsPageDiv .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}
.page-id-18 .companyNews .companyNewsPageDiv .contents > ul a:hover {
  opacity: 0.4;
}
.page-id-18 .companyNews .companyNewsPageDiv .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
.page-id-18 .companyNews .companyNewsPageDiv .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-id-18 .companyNews .companyNewsPageDiv .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}
.page-id-18 .companyNews .companyNewsPageDiv .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
.page-id-18 .companyNews .companyNewsPageDiv .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.page-id-18 .companyNews .companyNewsPageDiv .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
.page-id-18 .companyNews .companyNewsPageDiv .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  .page-id-18 .companyNews .companyNewsPageDiv .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1100px) {
  .companyNews {
    flex-direction: column;
  }
}
.page-id-20 > div {
  margin-top: 60px !important;
}

@media screen and (max-width: 768px) {
  .page-id-20 > div {
    margin-top: 0px !important;
  }
}
.page-id-20 > div > div > .contents ul {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
@media screen and (max-width: 520px) {
  .page-id-20 > div > div > .contents ul {
    grid-template-columns: 1fr !important;
  }
}
@media screen and (max-width: 800px) {
  .page-id-20 > div {
    padding: 0 16px !important;
  }
}
.page-id-20 .studentsNews {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 120px;
  padding: 0 80px;
}
.page-id-20 .studentsNews .studentsNewsPageDiv .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.page-id-20 .studentsNews .studentsNewsPageDiv .subheading img {
  width: 60px;
}
.page-id-20 .studentsNews .studentsNewsPageDiv .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.page-id-20 .studentsNews .studentsNewsPageDiv .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 520px) {
  .page-id-20 .studentsNews .studentsNewsPageDiv .contents > ul {
    grid-template-columns: 1fr;
  }
  .page-id-20 .studentsNews .studentsNewsPageDiv .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-id-20 .studentsNews .studentsNewsPageDiv .contents > ul a .text {
    justify-content: center !important;
  }
}
.page-id-20 .studentsNews .studentsNewsPageDiv .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}
.page-id-20 .studentsNews .studentsNewsPageDiv .contents > ul a:hover {
  opacity: 0.4;
}
.page-id-20 .studentsNews .studentsNewsPageDiv .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
.page-id-20 .studentsNews .studentsNewsPageDiv .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-id-20 .studentsNews .studentsNewsPageDiv .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}
.page-id-20 .studentsNews .studentsNewsPageDiv .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
.page-id-20 .studentsNews .studentsNewsPageDiv .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.page-id-20 .studentsNews .studentsNewsPageDiv .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
.page-id-20 .studentsNews .studentsNewsPageDiv .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  .page-id-20 .studentsNews .studentsNewsPageDiv .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1100px) {
  .studentsNews {
    flex-direction: column;
  }
}
.series {
  margin-top: 40px;
  padding: 0 80px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  .series {
    margin-top: 0;
  }
}
.series .divide .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.series .divide .subheading img {
  width: 60px;
}
.series .divide .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.series .divide section {
  gap: 20px;
  align-items: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.series .divide section img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.series .divide section .text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.series .divide section .text p:first-of-type {
  font-size: 24px;
  font-weight: 700;
}
.series .divide section .text p:nth-of-type(2) {
  font-size: 14px;
  line-height: 1.7;
}
.series .divide .share {
  max-width: 825px;
  margin: 24px auto;
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #383838;
}
.series .divide .share p {
  font-size: 15px;
  font-weight: 700;
}
.series .divide .share .apps {
  max-width: 200px;
  display: flex;
  justify-content: space-between;
  margin: 16px auto 0;
  gap: 25px;
}
.series .divide .share .apps a {
  transition: 0.4s ease;
}
@media (any-hover: hover) {
  .series .divide .share .apps a:hover {
    opacity: 0.5;
  }
  .series .divide .share .apps a img {
    width: 45px;
    height: 45px;
  }
}
.series .divide .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 520px) {
  .series .divide .contents > ul {
    grid-template-columns: 1fr;
  }
  .series .divide .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .series .divide .contents > ul a .text {
    justify-content: center !important;
  }
}
.series .divide .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}
.series .divide .contents > ul a:hover {
  opacity: 0.4;
}
.series .divide .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
.series .divide .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.series .divide .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}
.series .divide .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
.series .divide .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.series .divide .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
.series .divide .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  .series .divide .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.companyInformation {
  display: flex;
  margin-top: 25px;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid var(--borderColor);
  padding: 40px;
  gap: 16px;
  margin-bottom: 25px;
}
.companyInformation > div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--borderColor);
}
.companyInformation > div p:first-of-type {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
}
.companyInformation > div p:nth-of-type(2) {
  font-weight: 400;
  font-size: 14px;
}

@media screen and (max-width: 1100px) {
  .series {
    flex-direction: column;
  }
}
@media screen and (max-width: 800px) {
  .series {
    padding: 0 35px;
  }
}
@media screen and (max-width: 520px) {
  .series {
    padding: 0 15px;
  }
  .series .divide section {
    grid-template-columns: 1fr;
  }
}
.single-company_pickup .banners {
  display: none;
}
.single-company_pickup main {
  max-width: 1200px;
  margin: 120px auto 0;
  padding: 0 20px;
}
.single-company_pickup main section:first-of-type {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.single-company_pickup main section:first-of-type > img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}
.single-company_pickup main section:first-of-type .name {
  display: flex;
  align-items: center;
  gap: 20px;
}
.single-company_pickup main section:first-of-type .name h1 {
  font-size: 42px;
  font-weight: 700;
}
.single-company_pickup main section:first-of-type .text {
  font-size: 18px;
  line-height: 1.4;
}
.single-company_pickup main section:first-of-type .details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.single-company_pickup main section:first-of-type .details p {
  font-weight: 700;
}
.single-company_pickup main section:first-of-type .details a {
  color: #8de0d2;
  margin-top: 8px;
}
.single-company_pickup main section:first-of-type .details div:last-of-type img {
  width: 35px;
  height: 35px;
  background-color: black;
  border-radius: 50%;
  padding: 5px;
  margin-top: 15px;
}
.single-company_pickup main section:nth-of-type(2) .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.single-company_pickup main section:nth-of-type(2) .subheading img {
  width: 60px;
}
.single-company_pickup main section:nth-of-type(2) .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.single-company_pickup main section:nth-of-type(2) .contents > ul {
  gap: 12px;
  margin-top: 24px;
  display: grid;
  flex-direction: column;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 520px) {
  .single-company_pickup main section:nth-of-type(2) .contents > ul {
    grid-template-columns: 1fr;
  }
}
.single-company_pickup main section:nth-of-type(2) .contents > ul a {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  transition: 0.1s;
}
.single-company_pickup main section:nth-of-type(2) .contents > ul a:hover {
  opacity: 0.4;
}
.single-company_pickup main section:nth-of-type(2) .contents > ul a img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.single-company_pickup main section:nth-of-type(2) .contents > ul a .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.single-company_pickup main section:nth-of-type(2) .contents > ul a .text p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  .single-company_pickup main section:nth-of-type(2) .contents > ul a .text p {
    font-size: 14px;
  }
}
.single-company_pickup main section:nth-of-type(2) .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
.single-company_pickup main section:nth-of-type(2) .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.single-company_pickup main section:nth-of-type(2) .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
.single-company_pickup main section:nth-of-type(2) .more a:hover {
  opacity: 0.4;
}
.single-company_pickup main section:nth-of-type(3) .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.single-company_pickup main section:nth-of-type(3) .subheading img {
  width: 60px;
}
.single-company_pickup main section:nth-of-type(3) .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.single-company_pickup main section:nth-of-type(3) .contents > ul {
  gap: 12px;
  margin-top: 24px;
  display: grid;
  flex-direction: column;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 520px) {
  .single-company_pickup main section:nth-of-type(3) .contents > ul {
    grid-template-columns: 1fr;
  }
}
.single-company_pickup main section:nth-of-type(3) .contents > ul a {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  transition: 0.1s;
}
.single-company_pickup main section:nth-of-type(3) .contents > ul a:hover {
  opacity: 0.4;
}
.single-company_pickup main section:nth-of-type(3) .contents > ul a img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.single-company_pickup main section:nth-of-type(3) .contents > ul a .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.single-company_pickup main section:nth-of-type(3) .contents > ul a .text p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  .single-company_pickup main section:nth-of-type(3) .contents > ul a .text p {
    font-size: 14px;
  }
}
.single-company_pickup main section:nth-of-type(3) .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
.single-company_pickup main section:nth-of-type(3) .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.single-company_pickup main section:nth-of-type(3) .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
.single-company_pickup main section:nth-of-type(3) .more a:hover {
  opacity: 0.4;
}
.single-company_pickup main .companyInformation {
  display: flex;
  margin-top: 80px;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid var(--borderColor);
  padding: 40px;
  gap: 16px;
}
.single-company_pickup main .companyInformation > div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--borderColor);
}
.single-company_pickup main .companyInformation > div p:first-of-type {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
}
.single-company_pickup main .companyInformation > div p:nth-of-type(2) {
  font-weight: 400;
  font-size: 14px;
}
.single-company_pickup main .share {
  max-width: 825px;
  margin: 24px auto;
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
  margin-bottom: 0;
  border-bottom: 1px solid #383838;
}
.single-company_pickup main .share p {
  font-size: 15px;
  font-weight: 700;
}
.single-company_pickup main .share .apps {
  max-width: 200px;
  display: flex;
  justify-content: space-between;
  margin: 16px auto 0;
  gap: 25px;
}
.single-company_pickup main .share .apps a {
  transition: 0.4s ease;
}
@media (any-hover: hover) {
  .single-company_pickup main .share .apps a:hover {
    opacity: 0.5;
  }
  .single-company_pickup main .share .apps a img {
    width: 45px;
    height: 45px;
  }
}
.single-company_pickup .companyPickup {
  padding: 85px 20px;
  background-color: #f3f2f2;
  margin-bottom: -120px;
}
.single-company_pickup .companyPickup > div {
  max-width: 1100px;
  margin: 0 auto;
}
.single-company_pickup .companyPickup > div .contents ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.single-company_pickup .companyPickup > div .contents ul img {
  width: 100%;
}
.single-company_pickup .companyPickup > div .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.single-company_pickup .companyPickup > div .subheading img {
  width: 60px;
}
.single-company_pickup .companyPickup > div .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (max-width: 520px) {
  .single-company_pickup main section:first-of-type .text {
    font-size: 13px;
  }
  .single-company_pickup main section:first-of-type > img {
    height: 90px;
  }
}
@media screen and (max-width: 800px) {
  .companyPickup > div .contents ul {
    grid-template-columns: 1fr !important;
  }
  .single-company_pickup main .share {
    padding-bottom: 40px;
  }
  .single-company_pickup .companyPickup {
    padding: 20px 20px;
  }
}
.single-company_articles section {
  margin: 70px auto;
  display: flex;
  justify-content: center;
  padding: 0 80px;
  gap: 30px;
  max-width: 1200px;
}
.single-company_articles section .articlePage .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.single-company_articles section .articlePage .subheading img {
  width: 60px;
}
.single-company_articles section .articlePage .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.single-company_articles section .articlePage .thumbnail img {
  width: 100%;
}
.single-company_articles section .articlePage h1 {
  margin-top: 45px;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
}
.single-company_articles section .articlePage .share {
  max-width: 825px;
  margin: 24px auto;
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #383838;
}
.single-company_articles section .articlePage .share p {
  font-size: 15px;
  font-weight: 700;
}
.single-company_articles section .articlePage .share .apps {
  max-width: 200px;
  display: flex;
  justify-content: space-between;
  margin: 16px auto 0;
  gap: 25px;
}
.single-company_articles section .articlePage .share .apps a {
  transition: 0.4s ease;
}
@media (any-hover: hover) {
  .single-company_articles section .articlePage .share .apps a:hover {
    opacity: 0.5;
  }
  .single-company_articles section .articlePage .share .apps a img {
    width: 45px;
    height: 45px;
  }
}
.single-company_articles section .articlePage .contents > ul {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 520px) {
  .single-company_articles section .articlePage .contents > ul {
    grid-template-columns: 1fr;
  }
  .single-company_articles section .articlePage .contents > ul a {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }
  .single-company_articles section .articlePage .contents > ul a .text {
    justify-content: center !important;
  }
}
.single-company_articles section .articlePage .contents > ul a {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: 0.1s;
}
.single-company_articles section .articlePage .contents > ul a:hover {
  opacity: 0.4;
}
.single-company_articles section .articlePage .contents > ul a img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
}
.single-company_articles section .articlePage .contents > ul a .text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.single-company_articles section .articlePage .contents > ul a .text p {
  font-size: 16px;
  font-weight: 700;
}
.single-company_articles section .articlePage .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
.single-company_articles section .articlePage .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.single-company_articles section .articlePage .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
.single-company_articles section .articlePage .more a:hover {
  opacity: 0.4;
}
@media screen and (max-width: 520px) {
  .single-company_articles section .articlePage .contents > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 1100px) {
  .single-company_articles section {
    flex-direction: column;
  }
}
@media screen and (max-width: 800px) {
  .single-company_articles section {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .single-company_articles section {
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 520px) {
  .single-company_articles section .articlePage h1 {
    font-size: 24px;
    margin-top: 30px;
  }
}
.single {
}
.single .main {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .single .main {
    margin-top: 0;
  }
  
  footer {
    margin-top: 120px;
  }
  
  footer .policy ul {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
  }
  
  footer .policy ul li {
    display: block !important;
    margin: 0 !important;
  }
}
.single .main .tops {
  max-width: 825px;
  margin: 70px auto 24px;
}
.single .main .tops figure img {
  width: 100%;
}
.single .main .tops .title {
  background: #fff;
  padding: 30px 32px 40px;
  margin: -60px auto 40px;
  max-width: calc(100% - 80px);
  position: relative;
  z-index: 1;
}
.single .main .tops .title h1 {
  margin-bottom: 24px;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
}
.single .main .tops .title .detail time {
  color: var(--siteGray);
}
.single .main .contents {
  max-width: 825px;
  margin: 24px auto;
}
.single .main .contents p {
  margin-top: 12px;
  line-height: 1.4;
}
.single .main .bottom .share {
  max-width: 825px;
  margin: 24px auto;
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 150px;
  margin-bottom: 150px;
  border-bottom: 1px solid #383838;
}
.single .main .bottom .share p {
  font-size: 15px;
  font-weight: 700;
}
.single .main .bottom .share .apps {
  max-width: 200px;
  display: flex;
  justify-content: space-between;
  margin: 16px auto 0;
  gap: 25px;
}
.single .main .bottom .share .apps a {
  transition: 0.4s ease;
}
@media (any-hover: hover) {
  .single .main .bottom .share .apps a:hover {
    opacity: 0.5;
  }
  .single .main .bottom .share .apps a img {
    width: 45px;
    height: 45px;
  }
}
.single .main .bottom .other {
  display: flex;
  max-width: 1100px;
  gap: 30px;
  justify-content: space-between;
  max-width: 1170px;
  margin: 0 auto;
}
.single .main .bottom .other .youtube {
  display: flex;
  width: 100%;
  align-items: center;
  max-width: 570px;
  flex-direction: column;
  padding: 65px 0;
  margin: 0 auto;
  height: 100%;
  background-color: #eceaea;
  transition: 0.1s;
}
@media (any-hover: hover) {
  .single .main .bottom .other .youtube:hover {
    opacity: 0.6;
  }
}
.single .main .bottom .other .youtube span:first-of-type {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
}
.single .main .bottom .other .youtube span:nth-of-type(2) {
  margin-bottom: 36px;
  font-size: 15px;
  font-weight: 700px;
}
.single .main .bottom .other .youtube span:nth-of-type(3) {
  font-size: 16px;
  padding-bottom: 14px;
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #383838;
}
.single .main .bottom .other .youtube span:nth-of-type(3) img {
  width: 34px;
  margin-right: 28px;
}
.single .main .bottom .other .otherInformation {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 30px;
}
.single .main .bottom .other .otherInformation .top {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  gap: 20px;
  height: 68%;
}
.single .main .bottom .other .otherInformation .top a {
  width: 100%;
  height: 100%;
  background: #23363a;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.1s;
}
@media (any-hover: hover) {
  .single .main .bottom .other .otherInformation .top a:hover {
    opacity: 0.6;
  }
}
.single .main .bottom .other .otherInformation .bottom {
  height: 27%;
  display: flex;
  gap: 20px;
}
.single .main .bottom .other .otherInformation .bottom a {
  background-color: #fff;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border: 1px solid var(--borderColor);
  transition: 0.1s;
}
@media (any-hover: hover) {
  .single .main .bottom .other .otherInformation .bottom a:hover {
    opacity: 0.6;
  }
}
.single .main .pageTop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 90px;
  margin-bottom: -85px;
}
.single .main .pageTop a {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 700;
  align-items: center;
  transition: all 0.4s ease;
  gap: 8px;
}
.single .main .pageTop a::before {
  background: #1f3134;
  content: "";
  width: 1px;
  height: 40px;
}

@media screen and (max-width: 1100px) {
  .single .main .tops {
    width: 100%;
    max-width: 100%;
  }
  .single .main .tops .title {
    margin: -10px auto 32px;
    max-width: calc(100% - 30px);
  }
  .single .main .contents {
    padding: 0 20px;
  }
  .single .main > .bottom .other {
    flex-direction: column;
  }
  .single .main > .bottom .other .otherInformation {
    max-width: 93%;
    height: 425px;
    margin: 0 auto;
  }
  .single .main > .bottom .other .otherInformation .bottom {
    height: 17%;
    flex-direction: column;
    align-items: center;
  }
  .single .main > .bottom .other .otherInformation .bottom a {
    padding: 24px 0;
  }
  .single .main .banners {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .single .main .bottom .other .otherInformation .top {
    height: 50%;
  }
}
.banners {
  width: 310px;
  flex-shrink: 0;
}
.banners .otherContent {
  margin-bottom: 24px;
  gap: 0;
}
.banners .otherContent .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.banners .otherContent .subheading img {
  width: 60px;
}
.banners .otherContent .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.banners .otherContent .contents > ul {
  gap: 12px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 520px) {
  .banners .otherContent .contents > ul {
    grid-template-columns: 1fr;
  }
}
.banners .otherContent .contents > ul a {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  transition: 0.1s;
}
.banners .otherContent .contents > ul a:hover {
  opacity: 0.4;
}
.banners .otherContent .contents > ul a img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.banners .otherContent .contents > ul a .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.banners .otherContent .contents > ul a .text p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  font-weight: 700;
}
@media screen and (max-width: 800px) {
  .banners .otherContent .contents > ul a .text p {
    font-size: 14px;
  }
}
.banners .otherContent .contents > ul a .text time {
  font-weight: 400;
  color: var(--siteGray);
  margin-top: 6px;
}
.banners .otherContent .more {
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}
.banners .otherContent .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--siteGray);
  border-radius: 8px !important;
  font-size: 12px;
  font-weight: 700;
  transition: 0.1s;
}
.banners .otherContent .more a:hover {
  opacity: 0.4;
}
.banners > div {
  gap: 38px;
  display: flex;
  flex-direction: column;
}
.banners > div a {
  width: 100%;
  display: block;
  transition: 0.1s;
}
.banners > div a:hover {
  opacity: 0.4;
}
.banners > div a img {
  border-radius: 3px;
  width: 100%;
}
.banners > div .companyPickup .contents ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.banners > div .companyPickup .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.banners > div .companyPickup .subheading img {
  width: 60px;
}
.banners > div .companyPickup .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

/* 企業ピックアップの見出しスタイル（直接指定） */
.companyPickup .subheading {
  display: flex;
  margin-top: 40px;
  gap: 10px;
  align-items: center;
}
.companyPickup .subheading img {
  width: 60px;
}
.companyPickup .subheading .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
.banners > div .smallBanner {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer {
  background: #222;
  color: #fff;
  padding: 24px 0;
  margin-top: 120px;
}
footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
footer .policy {
  margin-top: 32px;
  text-align: center;
}
footer .policy ul {
  margin: 0 0 8px 0;
  padding: 0;
  list-style: none;
}
footer .policy ul li {
  display: inline-block;
  margin: 0 18px;
  padding: 0;
}
footer .policy ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: 400;
  transition: color 0.2s;
}
footer .policy ul li a:hover {
  color: #b2d8b2;
}
footer .policy ul li:last-child {
  margin-right: 0;
}
footer .policy {
  margin-bottom: 16px;
}
footer .policy ul {
  margin-bottom: 0;
}
footer .policy ul li {
  margin-bottom: 0;
}
footer .policy ul li a {
  line-height: 2.2;
}
footer .policy ul {
  display: inline-block;
}
footer .policy {
  margin-bottom: 0;
}
footer .container {
  text-align: center;
}
footer small {
  display: block;
  color: #fff;
  opacity: 0.7;
  font-size: 1em;
  font-weight: 400;
  margin-top: 24px;
  margin-bottom: 0;
}

@media screen and (max-width: 1100px) {
  .banners {
    width: 100%;
  }
  .banners > div .companyPickup .contents ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .banners > div .smallBanner {
    overflow: scroll;
    flex-direction: row;
    width: 100%;
    margin: 0 auto;
  }
  .banners > div .smallBanner a {
    width: 250px;
  }
}
@media screen and (max-width: 800px) {
  main .inner .maxWidth section:first-of-type {
    flex-direction: column;
    margin-top: 0;
  }
}
@media screen and (max-width: 520px) {
  .banners > div .companyPickup .contents ul {
    grid-template-columns: repeat(1, 1fr);
  }
  footer .container {
    flex-direction: column;
  }
  footer .container .sns {
    width: 100%;
  }
}

.headerNav .logo img {
  width: 200px;
  height: auto;
  max-width: 100%;
}
.headerNav .logo .tagline {
  font-size: 1em;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .headerNav .logo img {
    width: 150px;
  }
  .headerNav .logo .tagline {
    font-size: 0.85em;
    white-space: nowrap;
  }
}

@media screen and (min-width: 1101px) {
  .page-id-20 > div {
    margin-top: 150px;
  }
  .banners {
    width: 310px;
    flex-shrink: 0;
    margin-top: 40px;
  }
}

/* ナビゲーションの「top」を「トップ」に変更 */
/* バナーコンテナのスタイル */
.banner-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}

.banner-container a {
  display: block;
  width: 100%;
}

.banner-container img {
  width: 100%;
  height: auto;
  display: block;
}

.mainNav .menu a[href="/"]::after {
  content: "トップ";
}

/* ========================================
   利用規約・プライバシーポリシーページ（シンプルデザイン）
   ======================================== */

/* ページ共通スタイル */
.terms-content,
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.8;
}

/* ページタイトルのマージン調整 */
.page-header {
  margin-top: 60px;
  margin-bottom: 30px;
}

.page-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--black);
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-green);
}

.terms-intro,
.privacy-intro {
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.terms-intro p,
.privacy-intro p {
  margin: 0;
  font-size: 16px;
  color: var(--black);
}

/* セクションスタイル */
.terms-section,
.privacy-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.terms-section h2,
.privacy-section h2 {
  font-size: 20px;
  font-weight: bold;
  color: var(--black);
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e0e0e0;
}

.terms-section h3,
.privacy-section h3 {
  font-size: 18px;
  font-weight: bold;
  color: var(--black);
  margin: 20px 0 10px 0;
}

.terms-section h4,
.privacy-section h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--black);
  margin: 15px 0 8px 0;
}

.terms-section h5,
.privacy-section h5 {
  font-size: 15px;
  font-weight: bold;
  color: var(--black);
  margin: 12px 0 6px 0;
}

/* 段落スタイル */
.terms-section p,
.privacy-section p {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--black);
  line-height: 1.7;
}

/* リストスタイル */
.terms-section ol,
.privacy-section ol {
  margin: 12px 0;
  padding-left: 20px;
}

.terms-section ul,
.privacy-section ul {
  margin: 12px 0;
  padding-left: 20px;
}

.terms-section li,
.privacy-section li {
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--black);
  line-height: 1.6;
}

.terms-section ul ul,
.privacy-section ul ul {
  margin: 6px 0;
  padding-left: 20px;
}

/* シンプルな要素 */
.purpose-item {
  margin: 15px 0;
  padding: 10px 0;
  border-left: 3px solid #e0e0e0;
  padding-left: 15px;
}

.purpose-item h3 {
  margin-top: 0;
  color: var(--black);
}

.third-party-info {
  margin: 12px 0;
  padding: 10px 0;
  border-left: 3px solid #e0e0e0;
  padding-left: 15px;
}

.request-procedure {
  margin: 15px 0;
  padding: 10px 0;
  border-left: 3px solid #e0e0e0;
  padding-left: 15px;
}

.document-requirements {
  margin: 12px 0;
  padding: 8px 0;
  border-left: 2px solid #f0f0f0;
  padding-left: 12px;
}

.agent-documents {
  margin: 8px 0;
  padding: 6px 0;
  border-left: 2px solid #f0f0f0;
  padding-left: 12px;
}

.contact-info {
  margin: 12px 0;
  padding: 10px 0;
  border-left: 3px solid #e0e0e0;
  padding-left: 15px;
}

.cookie-info,
.web-beacon,
.device-id {
  margin: 15px 0;
  padding: 10px 0;
  border-left: 3px solid #e0e0e0;
  padding-left: 15px;
}

.cookie-detail {
  margin: 10px 0;
  padding: 6px 0;
  border-left: 2px solid #f0f0f0;
  padding-left: 12px;
}

.note {
  font-size: 13px;
  color: var(--siteGray);
  font-style: italic;
  margin-top: 8px;
}

/* フッター */
.terms-footer,
.privacy-footer {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.last-updated {
  font-size: 13px;
  color: var(--siteGray);
  font-weight: normal;
}

/* リンクスタイル */
.terms-content a,
.privacy-content a {
  color: var(--black);
  text-decoration: underline;
}

.terms-content a:hover,
.privacy-content a:hover {
  color: var(--siteGray);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .terms-content,
  .privacy-content {
    padding: 20px 15px;
    margin: 0 10px;
  }
  
  .page-header {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  
  .page-title {
    font-size: 24px;
  }
  
  .terms-section h2,
  .privacy-section h2 {
    font-size: 18px;
  }
  
  .terms-section h3,
  .privacy-section h3 {
    font-size: 16px;
  }
  
  .terms-section p,
  .privacy-section p,
  .terms-section li,
  .privacy-section li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .terms-content,
  .privacy-content {
    padding: 15px 10px;
    margin: 0 5px;
  }
  
  .page-header {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  
  .page-title {
    font-size: 20px;
  }
  
  .terms-section h2,
  .privacy-section h2 {
    font-size: 16px;
  }
  
  .terms-section h3,
  .privacy-section h3 {
    font-size: 15px;
  }
}