@charset "UTF-8";
:root {
  --base-1: #0e246d;
  --base-2: #24a7cd;
  --light: #f0f3fc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic", YuGothic, "Yu Gothic", "Yu Gothic UI", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "Meiryo UI", sans-serif;
  overflow-x: clip;
}
body.error404 .entry-title {
  font-size: clamp(1.563rem, 1.354rem + 0.69vw, 2.188rem);
}
body.error404 .separate-containers.no-sidebar .site-main {
  padding: 100px 0;
  text-align: center;
}

.serif_ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
}

.serif_en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
}

.inner {
  width: 100%;
  max-width: 1480px;
  padding: 0 20px;
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}

.separate-containers .inside-article {
  padding: 20px;
}

.full_width {
  position: relative;
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-right: calc(50% - 50dvw);
  overflow: hidden;
}

.original_button .wp-block-button .wp-block-button__link {
  color: var(--base-1);
  border: 1px solid var(--base-1);
  border-radius: 5px;
  padding: 10px 40px;
  transition: all 0.3s;
  position: relative;
  width: 250px;
}
@media screen and (max-width: 480px) {
  .original_button .wp-block-button .wp-block-button__link {
    padding: 5px 40px;
    width: 200px;
  }
}
.original_button .wp-block-button .wp-block-button__link:after {
  content: "";
  background-image: url(../img/common/icon_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 11.5px;
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.original_button .wp-block-button .wp-block-button__link:hover {
  content: "";
  background: var(--base-1);
  color: #fff;
}
.original_button .wp-block-button .wp-block-button__link:hover:after {
  background-image: url(../img/common/icon_arrow_wh.svg);
}

ol {
  margin-left: 1.2em;
}

ul {
  margin-left: 1.5em;
}

.contents_title-ja {
  font-family: "Shippori Mincho", serif;
  color: #9ba3bb;
  font-size: 18px;
  line-height: 1;
}

.featured-image {
  display: none;
}

.inside-header {
  padding: 4px 40px !important;
}
@media screen and (max-width: 480px) {
  .inside-header {
    padding: 10px 20px !important;
  }
}

@media screen and (max-width: 480px) {
  .main-navigation .menu-toggle {
    position: relative;
    width: 40px;
    height: 10px;
  }
  .main-navigation .menu-toggle .gp-icon.icon-menu-bars svg {
    display: none;
  }
  .main-navigation .menu-toggle .gp-icon.icon-menu-bars:before, .main-navigation .menu-toggle .gp-icon.icon-menu-bars:after {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--base-1);
    display: block;
    position: absolute;
    left: 0;
    transition: all 0.3s;
  }
  .main-navigation .menu-toggle .gp-icon.icon-menu-bars:before {
    top: 0;
  }
  .main-navigation .menu-toggle .gp-icon.icon-menu-bars:after {
    bottom: 0;
  }
  .main-navigation.toggled .gp-icon.icon-menu-bars:before {
    transform: rotate(25deg);
    top: 5px;
  }
  .main-navigation.toggled .gp-icon.icon-menu-bars:after {
    transform: rotate(-25deg);
    bottom: 5px;
  }
}
@media screen and (max-width: 480px) {
  .main-navigation.toggled .main-nav > ul {
    display: block !important;
  }
  .main-navigation .main-nav {
    display: block !important;
  }
  .main-navigation .main-nav {
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 260ms ease, opacity 260ms ease, visibility 0s linear 260ms;
  }
  .main-navigation.toggled .main-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 260ms ease, opacity 260ms ease, visibility 0s;
  }
}
@media screen and (max-width: 480px) {
  .main-navigation .main-nav ul {
    position: absolute;
    background: var(--base-1);
    width: calc(50% + 50vw);
    height: 100vh;
    padding: 40px 20px;
  }
}
.main-navigation .main-nav ul li a {
  line-height: 2;
}
@media screen and (max-width: 480px) {
  .main-navigation .main-nav ul li a {
    color: #fff !important;
    padding: 20px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
  }
  .main-navigation .main-nav ul li a:after {
    content: url(../img/common/icon_arrow_wh.svg);
    position: absolute;
    right: 5px;
  }
}
.main-navigation .main-nav ul li.contact a {
  color: var(--base-1);
  outline: 1px solid;
  transition: all 0.3s;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1450980392);
}
@media screen and (max-width: 480px) {
  .main-navigation .main-nav ul li.contact a {
    outline: 0;
    text-align: center;
    border-bottom: 0;
    margin-top: 40px;
    padding: 5px;
  }
  .main-navigation .main-nav ul li.contact a:after {
    content: none;
  }
}
.main-navigation .main-nav ul li.contact a:hover {
  background: var(--base-1);
  color: #fff !important;
  outline: 0;
}

.has-inline-mobile-toggle #site-navigation.toggled {
  margin: 0;
}

.site-header .header-image {
  width: 260px;
}
@media screen and (max-width: 480px) {
  .site-header .header-image {
    width: 210px;
  }
}
@media screen and (max-width: 480px) {
  .site-header .menu-toggle {
    padding: 0;
  }
}
.site-header.fixed {
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.page-hero__inner {
  margin: 70px auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 480px) {
  .page-hero__inner {
    margin: 40px auto 30px;
    flex-direction: column;
    gap: 50px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.page-hero__title {
  text-transform: capitalize;
  line-height: 1;
  margin: 0;
}
.page-hero__title .mini {
  display: block;
  font-size: 25px;
  position: relative;
  padding-left: 20px;
  margin-top: 20px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 480px) {
  .page-hero__title .mini {
    font-size: 20px;
  }
}
.page-hero__title .mini:before {
  content: "";
  background: var(--base-2);
  width: 7px;
  height: 7px;
  display: inline-block;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
}
.page-hero__media {
  max-width: 970px;
  height: 300px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 480px) {
  .page-hero__media {
    height: 200px;
    width: calc(100vw - 20px);
  }
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.page-hero__breadcrumb {
  position: absolute;
  background: #fff;
  bottom: 0;
  right: 0;
  padding: 5px 15px;
  font-family: "Shippori Mincho", serif;
}
.page-hero__breadcrumb .breadcrumbs span {
  padding: 0 0.5em;
}
@media screen and (max-width: 480px) {
  .page-hero__breadcrumb .breadcrumbs span {
    font-size: 14px;
  }
}
.page-hero.single .page-hero__breadcrumb {
  position: unset;
  text-align: right;
  padding: 80px 20px;
}
@media screen and (max-width: 480px) {
  .page-hero.single .page-hero__breadcrumb {
    padding: 40px 10px 0;
    text-align: left;
  }
  .page-hero.single .page-hero__breadcrumb .current-item {
    display: block;
  }
}

.footer_cta {
  background-image: url(../img/common/cta_bg_pc.jpg);
  background-size: cover;
  background-position: center;
  padding: 120px;
  position: relative;
}
@media screen and (max-width: 480px) {
  .footer_cta {
    background-image: url(../img/common/cta_bg_sp.jpg);
    padding: 90px 0;
  }
}
.footer_cta__inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .footer_cta__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.footer_cta__title {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 75px;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .footer_cta__title {
    font-size: 60px;
  }
}
.footer_cta__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 20px;
  border: 1px solid;
  border-radius: 4px;
  padding: 15px 50px;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .footer_cta__btn {
    font-size: 15px;
  }
}
.footer_cta__btn:after {
  content: "";
  background-image: url(../img/common/icon_arrow_wh.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 12px;
}
@media screen and (max-width: 480px) {
  .footer_cta__btn:after {
    width: 10px;
    height: 8px;
  }
}
.footer_cta__btn:hover {
  color: #fff;
  opacity: 0.8;
}
.footer_cta__pagetop {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Shippori Mincho", serif;
  color: var(--base-1);
  gap: 10px;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  .footer_cta__pagetop {
    width: 80px;
    height: 80px;
  }
}
.footer_cta .pagetop_wrap {
  max-width: 1920px;
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.site-footer .footer-widgets-container {
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .site-footer .footer-widgets-container .footer_logo {
    margin: 0 auto;
    width: 270px;
  }
}
.site-footer .footer-widgets-container .footer-widget-2 .widget {
  padding-left: 0;
}
.site-footer .footer_info p {
  margin-bottom: 0;
}
.site-footer .widget_nav_menu {
  font-family: "Shippori Mincho", serif;
}
.site-footer .widget_nav_menu a {
  color: var(--base-1);
}
.site-footer .widget_nav_menu .sub-menu {
  margin-left: 0;
}
.site-footer .widget_nav_menu .sub-menu li:before {
  content: "ー ";
}
.site-footer .footer_ninsyo p {
  color: var(--base-1);
  font-size: 13px;
  line-height: 1.4;
}

@media screen and (max-width: 480px) {
  .site-footer .footer-widgets-container .footer-widget-2 {
    flex: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 40px;
  }
}
.site-footer .footer-widgets-container .footer-widget-3 {
  flex: unset;
}
.site-footer .footer-widgets-container .footer-widget-3 .inner-padding {
  padding: 0;
}

.front-main {
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 480px) {
  .front-main {
    height: 90vh;
  }
}
.front-main__video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.front-main__video:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--base-1);
  opacity: 0.4;
  z-index: 1;
}
.front-main__video video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  width: auto;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.front-main__inner {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 5%;
  margin: auto;
  z-index: 2;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 480px) {
  .front-main__inner {
    bottom: 0;
    top: 0;
  }
}
.front-main__title {
  font-size: 110px;
  line-height: 1.1;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .front-main__title {
    font-size: 43px;
  }
}
.front-main__title .wrap {
  display: block;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 30px 0 20px;
}
@media screen and (max-width: 480px) {
  .front-main__title .wrap {
    padding: 0 20px;
    white-space: nowrap;
  }
}
.front-main__title .wrap:first-of-type {
  margin-bottom: 20px;
}
.front-main__catch {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  padding-left: 100px;
}
@media screen and (max-width: 480px) {
  .front-main__catch {
    font-size: 18px;
    padding-left: 0;
  }
}
.front-main__banner {
  display: block;
  width: 450px;
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  .front-main__banner {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  .front-main__banner .pc_img {
    display: none;
  }
}
.front-main__banner .sp_img {
  display: none;
}
@media screen and (max-width: 480px) {
  .front-main__banner .sp_img {
    display: block;
  }
}
.front-main__news {
  position: absolute;
  bottom: -25px;
  left: 0;
  z-index: 90;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px;
  background: var(--base-1);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
  padding: 10px 30px 10px 100px;
}
@media screen and (min-width: 1920px) {
  .front-main__news {
    left: calc(50% - 960px);
  }
}
@media screen and (max-width: 480px) {
  .front-main__news {
    width: 90%;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 10px 16px;
  }
}
.front-main__news:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: -100%;
  background: var(--base-1);
}
.front-main__news .title {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
  margin: 0;
}
.front-main__news a {
  color: #fff;
  font-size: 14px;
}
.front-main__news a .date {
  padding-right: 1em;
  font-family: "Shippori Mincho", serif;
}

.front-title {
  font-size: 95px;
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .front-title {
    font-size: 60px;
  }
}
.front-title .serif_ja {
  display: block;
  color: #9ba3bb;
  font-size: 18px;
  margin-top: 1em;
}

.front-message {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, var(--light) 50%);
  padding-bottom: 100px;
  margin-bottom: 50px;
}
@media screen and (max-width: 480px) {
  .front-message {
    padding-bottom: 50px;
  }
}
.front-message .wp-block-group__inner-container {
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .front-message .wp-block-group__inner-container {
    padding-bottom: 50px;
  }
}
.front-message .wp-block-group__inner-container p {
  margin-bottom: 10px;
}
.front-message .wp-block-group__inner-container .message_big {
  padding: 0;
  border-bottom: 1px solid;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
.front-message__vision {
  gap: 80px;
}
@media screen and (max-width: 480px) {
  .front-message__vision {
    gap: 40px;
  }
}
.front-message__vision .wrap {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .front-message__vision .wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.front-message__vision .wrap.open:before {
  content: url(../img/top/top_open_pc.svg);
  display: block;
  width: 300px;
  height: 100px;
}
@media screen and (max-width: 480px) {
  .front-message__vision .wrap.open:before {
    content: url(../img/top/top_open_sp.svg);
    text-align: center;
  }
}
.front-message__vision .wrap.soft:before {
  content: url(../img/top/top_soft_pc.svg);
  display: block;
  width: 300px;
  height: 100px;
}
@media screen and (max-width: 480px) {
  .front-message__vision .wrap.soft:before {
    content: url(../img/top/top_soft_sp.svg);
    text-align: center;
  }
}

.front-service {
  justify-content: flex-start;
  gap: 100px;
  margin-bottom: 130px;
}
@media screen and (max-width: 480px) {
  .front-service {
    flex-direction: column;
    gap: 50px;
    margin-bottom: 100px;
  }
}
.front-service__img {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .front-service__img {
    width: 100%;
  }
}
.front-service__lead {
  flex: 1;
  max-width: 450px;
}
@media screen and (max-width: 480px) {
  .front-service__lead {
    max-width: 100%;
  }
}
.front-service__title {
  position: absolute;
  top: -80px;
  right: -70px;
}
@media screen and (max-width: 480px) {
  .front-service__title {
    right: -20px;
    top: -50px;
  }
}
.front-service__title .wp-block-group__inner-container {
  padding: 0;
}
.front-service__title .serif_en,
.front-service__title .serif_ja {
  margin: 0;
}
.front-service__title .serif_ja {
  font-size: 35px;
  color: #fff;
  background: linear-gradient(var(--base-1), var(--base-2));
  padding: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 480px) {
  .front-service__title .serif_ja {
    font-size: 20px;
    padding: 10px;
  }
}
.front-service__title .serif_en {
  font-size: 20px;
  color: var(--base-1);
  padding-left: 1em;
}
@media screen and (max-width: 480px) {
  .front-service__title .serif_en {
    font-size: 15px;
    color: var(--base-2);
  }
}
.front-service.reverce {
  justify-content: flex-end;
}
@media screen and (max-width: 480px) {
  .front-service.reverce {
    flex-direction: column-reverse;
  }
}
.front-service.reverce .front-service__title {
  right: unset;
  left: -40px;
}
@media screen and (max-width: 480px) {
  .front-service.reverce .front-service__title {
    left: -20px;
  }
}
.front-service.reverce .front-service__title .wp-block-group__inner-container {
  padding: 0 20px 20px 0;
}
@media screen and (max-width: 480px) {
  .front-service.reverce .front-service__title .wp-block-group__inner-container {
    padding: 0 10px 10px 0;
  }
}

.front-recruit {
  padding: 100px 0 0;
  background-image: linear-gradient(180deg, var(--light) 0%, var(--light) 50%, #fff 50%, #fff 100%);
}
.front-recruit__title {
  margin-bottom: 80px;
  gap: 80px;
}
@media screen and (max-width: 480px) {
  .front-recruit__title {
    gap: 50px;
  }
  .front-recruit__title .front-title {
    margin-right: auto;
  }
}
.front-recruit__title * {
  margin: 0;
}
.front-recruit__lead {
  max-width: 900px;
  padding: 70px 20px 100px;
  gap: 80px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .front-recruit__lead {
    gap: 30px;
  }
  .front-recruit__lead .original_button {
    margin-left: auto;
  }
}
.front-recruit__lead p {
  margin-bottom: 1em;
}

.front-contents {
  background-image: linear-gradient(90deg, #fff 0%, #fff 50%, var(--light) 50%, var(--light) 100%);
  padding: 100px 0;
}

.front-company {
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .front-company {
    gap: 80px;
  }
}
.front-company .front-title {
  margin-bottom: 50px;
}
.front-company__img {
  position: absolute;
  width: 45%;
  height: 470px;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .front-company__img {
    position: unset;
    width: 100%;
    height: auto;
  }
}

.front-news .front-title {
  margin-bottom: 50px;
}
.front-news__list {
  gap: 40px;
  padding: 50px;
  border: 1px solid var(--base-1);
  background: #fff;
}
@media screen and (max-width: 480px) {
  .front-news__list {
    padding: 40px 20px;
  }
}
.front-news__loop {
  flex: 1;
}
.front-news__loop .gb-loop-item {
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  gap: 40px;
  border-bottom: 1px solid var(--base-1);
  padding-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .front-news__loop .gb-loop-item {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0;
  }
}
.front-news__loop .gb-loop-item:last-of-type {
  border-bottom: 0;
}
.front-news__loop .gb-loop-item h2.gb-text {
  margin-bottom: 0;
  font-family: inherit;
  font-size: 16px;
}
.front-news__loop .gb-loop-item p.gb-text {
  font-family: "Shippori Mincho", serif;
  color: var(--base-1);
  width: 8%;
}
@media screen and (max-width: 480px) {
  .front-news__loop .gb-loop-item p.gb-text {
    width: 100%;
  }
}
.front-news__loop .gb-query-loop-pagination {
  display: none;
}
.front-news .original_button {
  margin: 0 auto;
}

.archive main {
  padding-bottom: 100px;
}

.archive-link {
  margin: 0 20px;
}
.archive-link__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 30px 50px;
  border-bottom: 1px solid #bfc8e4;
  position: relative;
}
@media screen and (max-width: 480px) {
  .archive-link__wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 30px 20px 10px;
    gap: 5px;
  }
}
.archive-link__wrap:before, .archive-link__wrap:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 20px;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #444;
  transform-origin: calc(100% - 0.5px) 50%;
}
.archive-link__wrap:before {
  transform: rotate(45deg);
}
.archive-link__wrap:after {
  transform: rotate(-45deg);
}
.archive-link__date {
  width: 8%;
}
@media screen and (max-width: 480px) {
  .archive-link__date {
    width: 100%;
  }
}
.archive-link__cats {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #dbe1f5;
  padding: 0 15px;
  line-height: 1.4;
  color: var(--base-1);
  text-align: center;
}
@media screen and (max-width: 480px) {
  .archive-link__cats {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.archive-link__title {
  flex: 1;
  margin-bottom: 0;
  line-height: 1.6;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.nav-links .page-numbers {
  background: #f1f2f8;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Shippori Mincho", serif;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 480px) {
  .nav-links .page-numbers {
    width: 40px;
    height: 40px;
  }
}
.nav-links .page-numbers.current {
  background: var(--base-1);
  color: #fff;
}
.nav-links .page-numbers.next, .nav-links .page-numbers.prev {
  display: none;
}

.wp-singular.single-post .site.grid-container {
  max-width: 940px;
  padding: 0 20px 100px;
}
@media screen and (max-width: 480px) {
  .wp-singular.single-post .site.grid-container {
    padding-bottom: 60px;
  }
}

.single-wrap__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.single-wrap__date {
  text-align: center;
  color: var(--base-1);
  font-family: "Shippori Mincho", serif;
  line-height: 1.2;
  padding-right: 30px;
  border-right: 1px solid var(--base-1);
  margin-right: 30px;
}
@media screen and (max-width: 480px) {
  .single-wrap__date {
    padding-right: 20px;
    margin-right: 20px;
  }
}
.single-wrap__date-year {
  display: block;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .single-wrap__date-year {
    font-size: 16px;
  }
}
.single-wrap__date-md {
  font-size: 40px;
}
@media screen and (max-width: 480px) {
  .single-wrap__date-md {
    font-size: 25px;
  }
}
.single-wrap__cats {
  background: #dbe1f5;
  padding: 0 15px;
  line-height: 1.4;
  color: var(--base-1);
  text-align: center;
  margin-bottom: 60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 480px) {
  .single-wrap__cats {
    margin-bottom: 40px;
  }
}
.single-wrap__title {
  color: #444;
  font-size: 30px;
  flex: 1;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .single-wrap__title {
    font-size: 18px;
  }
}
.single-wrap__nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #444;
  padding-top: 50px;
  margin-top: 50px;
  gap: 20px;
}
.single-wrap__nav-prev, .single-wrap__nav-next {
  width: 50%;
}
.single-wrap__nav-prev a {
  padding-left: 20px;
}
.single-wrap__nav-prev a:before, .single-wrap__nav-prev a:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: 0.5px 50%;
}
.single-wrap__nav-prev a:before {
  transform: rotate(45deg);
}
.single-wrap__nav-prev a:after {
  transform: rotate(-45deg);
}
.single-wrap__nav-next a {
  padding-right: 20px;
}
.single-wrap__nav-next a:before, .single-wrap__nav-next a:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 1px;
  border-radius: 9999px;
  background-color: #444;
  transform-origin: calc(100% - 0.5px) 50%;
}
.single-wrap__nav-next a:before {
  transform: rotate(45deg);
}
.single-wrap__nav-next a:after {
  transform: rotate(-45deg);
}
.single-wrap__nav a {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  line-height: 1.4;
  display: block;
  position: relative;
}
@media screen and (max-width: 480px) {
  .single-wrap__nav a {
    font-size: 12px;
  }
}
.single-wrap h2.wp-block-heading {
  font-family: inherit;
  background: #f7f8fc;
  font-size: 20px;
  padding: 15px 10px 15px 20px;
  border-left: 4px solid var(--base-1);
  margin-bottom: 20px;
}

.home .site-header {
  background: unset;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}
.home .site-header .main-navigation .main-nav ul li a {
  color: #fff;
  transition: all 0.3s;
}
.home .site-header .main-navigation .menu-toggle .gp-icon.icon-menu-bars:before,
.home .site-header .main-navigation .menu-toggle .gp-icon.icon-menu-bars:after {
  background: #fff;
}
.home .site-header.fixed {
  background: #fff;
}
.home .site-header.fixed .main-navigation .main-nav ul li a {
  color: inherit;
}
.home .site-header.fixed .main-navigation .menu-toggle .gp-icon.icon-menu-bars:before,
.home .site-header.fixed .main-navigation .menu-toggle .gp-icon.icon-menu-bars:after {
  background: var(--base-1);
}
.home .site-main {
  margin: 0;
}
.home .inside-article {
  padding-top: 0;
  padding-bottom: 0;
}
.home .footer_cta__pagetop {
  background: var(--light);
}

@media screen and (min-width: 1024px) {
  .pc_hide {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .tab_hide {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .sp_hide {
    display: none;
  }
}
/*# sourceMappingURL=common.css.map */