@charset "UTF-8";
:root {
  --main: #061971;
  --accent: #FFDA00;
  --txt: #111;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  scroll-behavior: smooth;
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
}

section {
  padding-block: 100px;
}

h2 {
  margin-bottom: 30px;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  text-align: center;
}

.ex {
  padding-block: 120px 60px;
}

.ex h2 {
  font-size: 4rem;
  text-align: left;
}

.ex h4 {
  font-size: 1.5rem;
  margin: 0 0 10px 0;
}

h3 {
  margin-bottom: 20px;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--main);
}

h4 {
  width: fit-content;
  margin: 0 auto 10px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--main);
  border-bottom: 1px solid var(--main);
}

p {
  line-height: 2.2;
}

a {
  color: var(--txt);
  text-decoration: none;
  cursor: pointer;
}

img {
  width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

li:hover a {
  color: var(--main);
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.btn a {
  display: inline-block;
  width: 100%;
  color: #fff;
}
.btn img {
  transition: transform 0.8s ease;
}
.btn:hover img {
  transform: scale(1.1);
}

.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.fadein.active {
  opacity: 1;
  transform: translateY(0);
}

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
header {
  position: fixed;
  top: 0;
  z-index: 99999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  padding: 30px;
  background-color: #fff;
}
header h1 {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 440px;
}
header h1 a {
  flex-shrink: 0;
}
header h1 p {
  flex: 1;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--main);
}
header ul.header__pc {
  display: flex;
  align-items: center;
  gap: 30px;
}
header ul.header__pc .entry_btn {
  width: 120px;
  padding: 5px;
  background-color: var(--main);
  border-radius: 50px;
  text-align: center;
  transition: transform 0.8s ease;
}
header ul.header__pc .entry_btn:hover {
  transform: scale(1.1);
}
header .toggle,
header ul.header__sp {
  display: none;
}
header li a {
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", sans-serif;
  font-weight: 700;
}

.mv {
  width: 100%;
  height: 100vh;
  padding: 0;
}
.mv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 100px;
}
.mv img {
  height: 100%;
  object-fit: cover;
}

.concept {
  text-align: center;
}
.concept__lead {
  margin-bottom: 75px;
}
.concept__video {
  width: 700px;
  aspect-ratio: 700/410;
  margin: 0 auto;
}
.concept__video iframe {
  width: 100%;
  height: 100%;
}

.about__bg {
  position: relative;
  z-index: -2;
  width: 100%;
  height: 460px;
  background-color: var(--main);
}
.about__bg h2,
.about__bg h4 {
  color: #fff;
}
.about__bg h4 {
  padding-top: 100px;
  border-color: #fff;
}
.about__container {
  width: 100%;
  margin-top: -200px;
}
.about__container a:hover .about__filter {
  transform: scale(1.1);
}
.about__container a:hover .about__btn {
  transform: translateX(10px);
}
.about__content {
  position: relative;
  z-index: -1;
  width: 100%;
  margin-bottom: 50px;
  padding: 2.5% 5%;
  overflow: hidden;
  color: #fff;
}
.about__content > * {
  position: relative;
  z-index: 2;
}
.about__filter {
  position: absolute;
  inset: 0;
  transition: transform 0.8s ease;
  z-index: 1;
}
.about__filter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.about__company {
  background: url(../images/about01.webp) no-repeat center 70%/cover;
}
.about__work {
  background: url(../images/about02.webp) no-repeat center 70%/cover;
}
.about__data {
  background: url(../images/about03.webp) no-repeat center/cover;
}
.about__num {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  font-size: 3.5rem;
}
.about__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.about__txt-title {
  margin-bottom: 20px;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 3rem;
}
.about__txt-desc {
  line-height: 1.8;
}
.about__btn {
  width: 75px;
  height: 75px;
  transition: transform 0.8s ease;
}

.interview {
  background-color: #F2F2F2;
}
.interview h4 {
  margin: 0 0 10px 0;
}
.interview__container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.interview__lead p {
  margin-bottom: 30px;
}
.interview__lead-title {
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
}
.interview__btn {
  display: inline-block;
}
.interview__slider {
  width: 100%;
  margin-left: calc(50% - 50vw);
}
.interview__slider .slick-slide {
  margin: 0 20px;
  width: 300px;
}
.interview__slider .slick-list {
  padding: 0 !important;
}
.interview__slider img {
  display: block;
  width: 300px;
  height: 400px;
  object-fit: cover;
}

.topics__lead {
  margin-bottom: 50px;
  text-align: center;
}
.topics__container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.topics__content {
  width: 50%;
  margin-bottom: 30px;
}
.topics__content-title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1.5rem;
}
.topics__content img {
  height: auto;
  object-fit: cover;
}
.topics__sub a {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.topics__sub img {
  width: 50%;
  object-fit: cover;
}
.topics__sub-title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 1.125rem;
}
.topics__sub-desc {
  font-size: 0.875rem;
}

.recruit {
  background-color: var(--accent);
}
.recruit__container {
  display: flex;
  gap: 40px;
}
.recruit__container a {
  width: 50%;
}
.recruit__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  background-color: #fff;
}
.recruit__content p {
  font-weight: 700;
  font-size: 1.5rem;
}
.recruit__content:hover .recruit__btn {
  transform: translateX(10px);
}
.recruit__btn {
  transition: transform 0.8s ease;
}

footer {
  padding-block: 50px;
}
footer div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 75px;
}
footer h1 {
  display: flex;
  align-items: center;
  width: 440px;
  gap: 10px;
}
footer h1 a {
  flex-shrink: 0;
}
footer h1 span {
  display: inline-block;
  flex: 1;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--main);
}
footer small {
  display: block;
  text-align: center;
}

@media (max-width: 1180px) {
  header ul.header__pc {
    display: none;
  }
  header .toggle {
    display: block;
    position: relative;
    top: 0;
    right: 0;
    z-index: 10000;
    width: 60px;
    height: 60px;
    background-color: var(--main);
    border-radius: 50%;
    padding: 10px;
    margin-left: auto;
    flex-shrink: 0;
  }
  header .toggle span {
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
  }
  header .toggle span:nth-of-type(1) {
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
  }
  header .toggle span:nth-of-type(2) {
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
  }
  header .header__sp {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    padding: 5%;
    background-color: #fff;
  }
  header .header__sp h1 {
    margin-bottom: 30px;
  }
  header .header__sp li {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-family: "Shippori Antique", sans-serif;
  }
  header .header__sp li span {
    display: block;
    color: var(--main);
    font-size: 0.875rem;
    font-family: "Josefin Sans", sans-serif;
  }
  header .header__sp .entry_btn {
    width: 80%;
    margin: 0 auto;
    padding: 5px;
    background-color: var(--main);
    border-radius: 50px;
    text-align: center;
    transition: transform 0.8s ease;
  }
  header .header__sp .entry_btn:hover {
    transform: scale(1.1);
  }
  .open .header__sp {
    display: block;
  }
  .open .toggle {
    background-color: var(--main);
  }
  .open .toggle span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: 999;
  }
  .open .toggle span:nth-of-type(2) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    z-index: 999;
  }
}
@media (max-width: 1024px) {
  .topics__container {
    flex-direction: column;
  }
  .topics__content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .inner,
  .wrapper {
    padding-inline: 3%;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .concept {
    padding-bottom: 0;
  }
  .concept__video {
    width: 100%;
  }
  .topics__sub {
    gap: 10px;
  }
  .topics__sub img {
    height: 120px;
  }
  .topics__sub-title {
    font-size: 1rem;
  }
  .interview h4 {
    margin: 0 auto 10px;
  }
  .interview__container {
    flex-direction: column;
  }
  .interview__btn {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  .interview__btn img {
    width: initial;
    max-width: 100%;
  }
  .recruit__container {
    flex-direction: column;
  }
  .recruit__container a {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .inner {
    width: 100%;
  }
  header {
    padding-inline: 3%;
  }
  header h1 {
    align-items: flex-end;
  }
  header h1 img {
    width: 190px;
  }
  header h1 span {
    font-size: 0.875rem;
  }
  header .toggle {
    width: 45px;
    height: 45px;
  }
  header .toggle span:nth-of-type(1) {
    top: 18px;
  }
  header .toggle span:nth-of-type(2) {
    top: 28px;
  }
  .mv video {
    width: 100%;
  }
  h2,
  .ex h2 {
    font-size: 2.4rem;
  }
  .concept__lead {
    text-align: left;
  }
  .about__bg {
    height: 400px;
  }
  .about__container {
    margin-top: -120px;
  }
  .about__num {
    font-size: 2.2rem;
  }
  .about__flex {
    align-items: center;
  }
  .about__txt-title {
    font-size: 2rem;
    margin: 40px 0;
  }
  .about__txt-desc {
    display: none;
  }
  .about__btn {
    width: 60px;
    height: 60px;
  }
  .interview__lead-title {
    font-size: 1.8rem;
  }
  footer div {
    flex-direction: column;
  }
  footer div h1 {
    width: 100%;
    flex-direction: column;
    margin-bottom: 40px;
  }
  footer div h1 a {
    display: inline-block;
    margin-bottom: 10px;
  }
}
.fv {
  width: 100%;
  padding: 0;
}
.fv img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.status {
  background-color: var(--main);
}
.status__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.status__content {
  width: 33.3333333333%;
  padding-block: 25px;
  text-align: center;
  background-color: #fff;
}
.status__content-head {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.status__content-desc span {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--main);
  line-height: 0;
}
.status__content img {
  width: 35%;
  margin-bottom: 35px;
}
.status__content > * {
  margin-bottom: 25px;
}

.message {
  background-color: #F2F2F2;
}
.message__container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 120px;
}
.message h4,
.message h2 {
  text-align: left;
}
.message h4 {
  margin: 0 0 10px 0;
}
.message__content {
  width: 58%;
}
.message__image img {
  width: 370px;
}

.history__container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.history__title {
  width: 350px;
  flex-shrink: 0;
}
.history__title h4 {
  font-size: 4rem;
  border: none;
  margin: 0 0 10px 0;
}
.history__title h2 {
  font-size: 1.5rem;
  text-align: left;
}
.history dl {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
}
.history dt {
  width: 20%;
  padding: 15px;
  font-weight: bold;
  border-bottom: 1px solid #E5E5E5;
}
.history dd {
  width: 80%;
  padding: 15px;
  border-bottom: 1px solid #E5E5E5;
}

@media (max-width: 1024px) {
  .status__container {
    flex-direction: column;
  }
  .status__content {
    width: 85%;
  }
  .message__container {
    flex-direction: column;
  }
  .message__content {
    width: 100%;
  }
  .message__image {
    text-align: center;
  }
  .history__container {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .status__content-head {
    font-size: 1.6rem;
  }
  .message__image img {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .history dl {
    flex-direction: column;
  }
  .history dl dt {
    width: 100%;
    border: none;
    padding: 15px 0 0 15px;
  }
  .history dl dd {
    width: 100%;
  }
}
.work__fv img {
  object-position: center 65%;
}

.lead {
  text-align: center;
}
.lead__sub {
  font-size: 1.5rem;
  font-weight: 700;
}
.lead__head {
  margin-top: -15px;
  font-size: 3rem;
  font-family: "Shippori Antique", sans-serif;
}

.frame {
  background-color: var(--main);
  text-align: center;
}
.frame__container {
  padding: 4%;
  background-color: #fff;
}
.frame__container-head {
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 700;
}
.frame__container img {
  display: inline-block;
  margin-block: 40px;
  width: 75%;
  height: auto;
  object-fit: cover;
}
.frame__content {
  display: flex;
  justify-content: space-between;
  width: 75%;
  margin: 0 auto;
}
.frame__content p {
  margin-bottom: 20px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
}
.frame__content li {
  text-align: left;
  list-style-type: disc;
  list-style-position: inside;
  font-weight: 700;
  line-height: 2.2;
}
.frame__content-merit {
  flex-basis: 50%;
  border-right: 1px solid #E5E5E5;
  padding-right: 20px;
}
.frame__content-merit p {
  background-color: var(--main);
}
.frame__content-demerit {
  flex-basis: 50%;
  padding-left: 20px;
}
.frame__content-demerit p {
  background-color: var(--accent);
}

.list__container {
  padding-top: 30px;
}
.list__content {
  display: flex;
  gap: 40px;
  margin-bottom: 100px;
}
.list__content img {
  width: 50%;
  object-fit: contain;
}
.list__content-txt p:first-child {
  font-size: 2rem;
  font-weight: 700;
}
.list__content-txt p:nth-of-type(2) {
  margin-bottom: 30px;
}
.list__content-txt p span {
  display: inline-block;
  padding-right: 15px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--main);
}
.list__content-txt a {
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .frame {
    padding-inline: 3%;
  }
}
@media (max-width: 768px) {
  .frame__container img {
    width: 100%;
  }
  .frame__content {
    flex-direction: column;
    width: 100%;
  }
  .frame__content-merit {
    padding-right: 0;
    border: none;
  }
  .frame__content-demerit {
    padding-left: 0;
  }
  .list__content {
    flex-direction: column-reverse;
  }
  .list__content img {
    width: 100%;
  }
  .list__content-txt a {
    display: block;
    text-align: center;
  }
  .list__content-txt img {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .frame__container-head {
    font-size: 1.6rem;
  }
  .list__content-txt img {
    width: 75%;
  }
}
.data__head {
  margin-bottom: 75px;
  padding-inline: 10px;
  font-size: 2rem;
  font-family: "Shippori Antique", sans-serif;
  text-align: center;
}
.data__container {
  display: flex;
  justify-content: space-between;
}
.data__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.data__box {
  display: flex;
  justify-content: space-around;
  flex-shrink: 0;
  width: calc((100% - 20px) / 2);
  border: 2px solid var(--main);
  padding: 30px;
}
.data__box img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.data__box-txt {
  align-self: flex-end;
}
.data__box-txt p {
  font-size: 1.2rem;
  line-height: normal;
  text-align: center;
  font-weight: 700;
}
.data__box-txt span {
  font-size: 4rem;
  color: var(--main);
}
.data__box-txt .txt {
  font-size: 2.5rem;
}

.system {
  background-color: #F2F2F2;
}
.system__container {
  display: flex;
  justify-content: space-between;
}
.system__content .polygon {
  width: 0;
  height: 0;
  margin: 20px auto;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 45px solid var(--main);
  text-align: center;
}
.system__box {
  padding: 25px;
  background-color: #fff;
}
.system__box-head {
  margin-bottom: 10px;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--main);
}

.interview__data {
  background-color: transparent;
}

@media (max-width: 1024px) {
  .data__container {
    justify-content: flex-start;
  }
  .data__content {
    flex-direction: column;
  }
  .data__box {
    width: 100%;
    padding: 30px 60px;
  }
}
@media (max-width: 768px) {
  .data__container {
    flex-direction: column;
  }
  .system__container {
    flex-direction: column;
  }
  .system__box {
    padding: 30px;
  }
  .system__box-head {
    font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .data__head {
    font-size: 1.6rem;
  }
  .data__box {
    padding: 30px;
  }
  .data__box-txt .txt {
    font-size: 2.2rem;
  }
}
.archive {
  padding-top: 0;
}
.archive__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 55px;
}
.archive__content-info {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
.archive__content:hover .archive__box-btn img {
  transform: translateX(10px);
}
.archive__content a:hover .archive__box img {
  transform: scale(1.1);
}
.archive__box {
  display: block;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.archive__box img {
  transition: transform 0.8s ease;
}
.archive__box-txt {
  position: absolute;
  writing-mode: vertical-rl;
  background-color: #fff;
  font-size: 1.75rem;
  font-family: "Shippori Antique", sans-serif;
  line-height: 1;
}
.archive__box .txt1 {
  top: 20px;
  right: 25px;
}
.archive__box .txt2 {
  top: 50px;
  right: 60px;
}
.archive__box-head {
  position: absolute;
  bottom: 0;
  left: 0;
  width: fit-content;
  padding-inline: 20px 40px;
  background-color: var(--main);
  color: #fff;
  border-top-right-radius: 50px;
  font-weight: 700;
  font-family: "Josefin Sans", sans-serif;
}
.archive__box-head span {
  display: inline-block;
  padding-left: 10px;
  font-size: 1.75rem;
}
.archive__box-btn {
  position: absolute;
  bottom: 8%;
  right: 6%;
}
.archive__box-btn img {
  width: 75px;
  height: 75px;
  transition: transform 0.8s ease;
}

@media (max-width: 1024px) {
  .inner {
    padding-inline: 3%;
  }
  .archive__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .archive__container {
    grid-template-columns: 1fr;
  }
}
.kv__content {
  display: block;
  position: relative;
  z-index: -1;
}
.kv__content img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: 68% 30%;
}
.kv__content-txt {
  position: absolute;
  writing-mode: vertical-rl;
  background-color: #fff;
  font-size: 3rem;
  font-family: "Shippori Antique", sans-serif;
  line-height: 1;
}
.kv__content .txt1 {
  top: 40px;
  right: 15%;
}
.kv__content .txt2 {
  top: 90px;
  right: 20%;
}
.kv__box {
  position: absolute;
  bottom: 0;
  left: 8%;
  padding: 3% 6%;
  background-color: #fff;
}
.kv__box-head {
  width: fit-content;
  padding-inline: 13%;
  background-color: var(--main);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-family: "Josefin Sans", sans-serif;
}
.kv__box-head span {
  display: inline-block;
  padding-left: 10px;
  font-size: 1.75rem;
}
.kv__box-info {
  font-size: 1.5rem;
  font-weight: 700;
}

.article {
  padding-bottom: 0;
}
.article__container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 100px;
}
.article__container img {
  width: 40%;
}
.article__content > p {
  margin-bottom: 40px;
}
.article__q {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1.75rem;
  font-weight: 700;
}
.article__q-num {
  padding-inline: 30px;
  background-color: var(--main);
  color: #fff;
  border-radius: 50px;
  line-height: 40px;
}
.article__q-head {
  padding-left: 20px;
  color: var(--main);
  line-height: 40px;
}
.article .reverse {
  flex-direction: row-reverse;
}

.article2 {
  padding-bottom: 50px;
  background-color: #F2F2F2;
}
.article2 .direction {
  flex-direction: column;
  gap: 0;
}
.article2 .direction img {
  width: 100%;
}

@media (max-width: 480px) {
  .kv__content-txt {
    font-size: 1.75rem;
  }
  .kv__content .txt1 {
    left: 25%;
    right: unset;
  }
  .kv__content .txt2 {
    left: 10%;
    right: unset;
  }
  .kv__box {
    left: 0;
  }
  .article__container {
    flex-direction: column-reverse;
  }
  .article__container img {
    width: 100%;
  }
  .article .reverse {
    flex-direction: column-reverse;
  }
  .article__q {
    font-size: 1.5rem;
  }
  .article__q-num {
    padding-inline: 16px;
  }
}
h2.column__title {
  font-size: 2.5rem;
}

.column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-top: 0;
}
.column__head {
  font-size: 1.5rem;
  font-weight: 700;
}
.column img {
  object-fit: cover;
}

@media (max-width: 768px) {
  .column {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .column {
    grid-template-columns: 1fr;
  }
}
.wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.post {
  padding-top: 0;
}
.post__container img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  margin-bottom: 50px;
}
.post__content {
  margin-bottom: 50px;
}
.post__content-head {
  margin-bottom: 15px;
  padding: 5px;
  background-color: #F2F2F2;
  font-size: 1.5rem;
  font-weight: 700;
  border-left: 8px solid var(--main);
}
.post__btn {
  text-align: center;
}
.post__btn a {
  display: inline-block;
}
.post__btn img {
  max-width: 100%;
}

@media (max-width: 480px) {
  .post__container img {
    height: 220px;
  }
  .post__btn img {
    width: 70%;
  }
}
/*===================================================
WP-Pagenaviのcss
===================================================*/
.wp-pagenavi {
  text-align: center;
  padding: 50px 0;
  font-size: 1.125rem;
}

/* 総ページ数 */
.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  padding: 5px 10px;
  font-size: 1.125rem;
  font-family: "Josefin Sans", sans-serif;
  color: var(--main);
  border: 1px solid var(--main);
  border-radius: 30px;
  transition: all 0.6s ease;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  background-color: var(--main);
  color: #fff;
}

.wp-pagenavi .page {
  padding: 20px;
}

.wp-pagenavi .current {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-inline: 10px;
  font-weight: bold;
  background-color: var(--main);
  color: #fff;
  border-radius: 50%;
}/*# sourceMappingURL=main.css.map */