@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* ----------------------------------------------------------
 media query
---------------------------------------------------------- */
/* max-width */
/* min-width */
/* ----------------------------------------------------------
 color
---------------------------------------------------------- */
/* ==========================================================================
 HTML5 display definitions
========================================================================== */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: block;
  filter: drop-shadow(0px 0px #000);
  width: 100%;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

input::placeholder,
textarea::placeholder {
  color: #a7a7a7;
  opacity: 1;
}

/* ==========================================================================
 Base
========================================================================== */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  font-size: 67.5%;
  line-height: 1.5;
  overflow-x: hidden;
  background: #ffffff;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
}
@media screen and (max-width:767px) {
  html {
    scroll-padding-top: 90px;
  }
}

body {
  margin: 0;
  position: relative;
  z-index: 0;
  -webkit-font-smoothing: antialiased;
  color: #333333;
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  counter-reset: number 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  br.sp {
    display: none;
  }
}
/* ==========================================================================
 Links
========================================================================== */
a {
  background: transparent;
}

a:focus {
  outline: 0;
}

a:active,
a:hover {
  outline: 0;
}

a,
a:visited {
  color: inherit;
  transition: all 0.3s;
  text-decoration: none;
}

a:hover,
a:focus,
a:visited:hover,
a:visited:focus {
  opacity: 1;
}

a:link,
a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
 Lists
========================================================================== */
dl,
ol,
ul {
  margin: 0;
}

dd {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style-type: none;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

ul,
li {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}

/* ==========================================================================
 Typography
========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-rendering: optimizelegibility;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
}

h1 {
  font-size: 2.5rem;
  line-height: 1;
}

h2 {
  font-size: 2rem;
  line-height: 1.5;
}

h3 {
  font-size: 1.8rem;
  line-height: 1.5;
}

h4 {
  font-size: 1.6rem;
  line-height: 1.5;
}

h5 {
  font-size: 1.6rem;
  line-height: 1.5;
}

p, a, span, td, th, li, address, dt, dd {
  font-size: 1.6rem;
}
@media print, screen and (max-width:1200px) {
  p, a, span, td, th, li, address, dt, dd {
    font-size: 14px;
  }
}

p, a, td, th, li, address, dt, dd {
  font-weight: 400;
}

address {
  font-style: normal;
}

.align-c {
  text-align: center;
}

.align-l {
  text-align: left;
}

.align-r {
  text-align: right;
}

.sml {
  font-size: 13px;
  margin-bottom: 2rem !important;
}
@media screen and (max-width:767px) {
  .sml {
    font-size: 12px;
  }
}

/* ==========================================================================
 Figures,Images
========================================================================== */
img:not(.post-contents img) {
  width: 100%;
  height: 100%;
  border: 0;
  image-rendering: -webkit-optimize-contrast;
  display: block;
  object-fit: cover;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

.img-r {
  overflow: hidden;
  border-radius: 25px;
}
@media screen and (max-width:767px) {
  .img-r {
    border-radius: 15px;
  }
}

.img-r img {
  border-radius: 25px;
}
@media screen and (max-width:767px) {
  .img-r img {
    border-radius: 15px;
  }
}

/* ==========================================================================
 Animation
========================================================================== */
.ani {
  opacity: 0;
  overflow: hidden;
}
.ani span {
  display: block;
}
.ani.is-active {
  opacity: 1;
}
.ani.is-active span {
  animation: posY-110per-up 0.6s ease-out both;
}
.ani.is-active p:first-child,
.ani.is-active span:first-child {
  margin: 0;
}

@keyframes posY-110per-up {
  from {
    opacity: 0;
    transform: translateY(110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes posY-100-up {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-in {
  overflow: hidden;
  display: block;
}

.slide-in_inner {
  display: block;
}

.leftAnime {
  opacity: 0;
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1s;
  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: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fadeTrigger {
  transition-duration: 0.5s;
  transition-property: opacity, transform;
  transform: translate3d(0, 50px, 0);
  opacity: 0;
}

.fadeTextAppear {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* ==========================================================================
 Cursor
========================================================================== */
#cursor {
  pointer-events: none;
  position: fixed;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: #145d3a;
  transform: translate(-100px, -100px);
  border-radius: 50%;
  z-index: 999;
}
@media screen and (max-width:960px) {
  #cursor {
    display: none;
  }
}

#stalker {
  pointer-events: none;
  position: fixed;
  top: -16px;
  left: -16px;
  width: 32px;
  height: 32px;
  background: rgba(88, 88, 88, 0.5);
  border-radius: 50%;
  transform: translate(-100px, -100px);
  transition: 0.15s;
  transition-timing-function: ease-out;
  z-index: 998;
}
@media screen and (max-width:960px) {
  #stalker {
    display: none;
  }
}

#stalker.is-stalker {
  top: -40px;
  left: -40px;
  width: 80px;
  height: 80px;
  transition: 0.15s;
  background: rgba(88, 88, 88, 0.5);
}

/* ==========================================================================
 Layout
========================================================================== */
@media screen and (max-width:767px) {
  .sp-hide {
    display: none;
  }
}

.pc-hide {
  display: none !important;
}
@media screen and (max-width:960px) {
  .pc-hide {
    display: block !important;
  }
}
@media screen and (max-width:767px) {
  .pc-hide {
    display: block !important;
  }
}

.l-lr {
  padding-right: 8.33333vw;
  padding-left: 8.33333vw;
}
@media screen and (max-width:1400px) {
  .l-lr {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media screen and (max-width:960px) {
  .l-lr {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}
@media screen and (max-width:767px) {
  .l-lr {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

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

.l-tb {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
@media screen and (max-width:960px) {
  .l-tb {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
}
@media screen and (max-width:767px) {
  .l-tb {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}

.l-tb-p {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media print, screen and (max-width:1200px) {
  .l-tb-p {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
@media screen and (max-width:960px) {
  .l-tb-p {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
@media screen and (max-width:767px) {
  .l-tb-p {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* ==========================================================================
 Flex
========================================================================== */
.l-flex {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 5rem !important;
  align-items: center !important;
}
@media screen and (max-width:767px) {
  .l-flex {
    gap: 3rem !important;
  }
}

.l-flex .flex-l,
.l-flex .flex-r {
  width: calc(50% - 2.5rem);
}
@media screen and (max-width:767px) {
  .l-flex .flex-l,
  .l-flex .flex-r {
    width: 100% !important;
  }
}

.reverse {
  flex-direction: row-reverse;
}

/* ==========================================================================
 Background
========================================================================== */
.bg {
  background: #F8F8F8;
}

.bg2 {
  background: #F6FFFA;
}

.bg3 {
  background: #E9FFF3;
}

/* ==========================================================================
 Overlay
========================================================================== */
.overlay {
  position: relative;
  display: block;
}

.overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(88, 88, 88, 0.5);
  z-index: 1;
}

/* ==========================================================================
 Button
========================================================================== */
.btn-wrap {
  text-align: center;
  margin-top: 5rem !important;
}
@media screen and (max-width:767px) {
  .btn-wrap {
    margin-top: 3rem !important;
  }
}
.btn-wrap a,
.btn-wrap button {
  display: inline-block;
  width: 250px;
  background: #145d3a;
  color: #ffffff;
  text-align: center;
  line-height: 4;
  border: 0;
  border-radius: 200px;
  font-weight: 700;
}
@media print, screen and (max-width:1200px) {
  .btn-wrap a,
  .btn-wrap button {
    line-height: 3;
  }
}

.btn-wrap a,
.btn-wrap button,
.contact-btn a {
  transition: all 0.3s;
}
.btn-wrap a:hover,
.btn-wrap button:hover,
.contact-btn a:hover {
  opacity: 0.6;
}

.contact-btn a {
  background: #145d3a;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 10px;
}

.contact-btn-w a {
  background: #ffffff;
  color: #145d3a;
  border: 2px solid #145d3a !important;
}

.l-flex .flex-r .btn-wrap a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ==========================================================================
 Header
========================================================================== */
#header {
  width: calc(100% - 4rem);
  z-index: 10;
  box-sizing: border-box;
  position: fixed;
  transition: all 0.3s ease-out;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  z-index: 99999999;
  background: #ffffff;
  margin-top: 2rem;
  margin-left: 2rem;
  margin-right: 2rem;
  border-radius: 10rem;
  padding: 0 5rem;
  box-shadow: 0 3px 20px 0 rgba(25, 25, 25, 0.2);
}
@media screen and (max-width:1024px) {
  #header {
    height: 70px;
    padding: 0px 3rem;
    display: block;
    padding-right: calc(3rem - 20px);
  }
}
@media screen and (max-width:1024px) {
  #header #header_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }
}
#header.is-top {
  background: #ffffff;
  box-shadow: 0 0 5px 0px #ddd;
}
@media screen and (max-width:1024px) {
  #header.is-top #header_inner {
    height: 50px;
  }
}

/* logo
----------------------------------------- */
#logo_wrap,
#footer_logo {
  width: 60px;
}
@media screen and (max-width:1024px) {
  #logo_wrap,
  #footer_logo {
    width: 40px;
  }
}
@media screen and (max-width:767px) {
  #logo_wrap,
  #footer_logo {
    width: 30px;
  }
}
#logo_wrap .site-title,
#footer_logo .site-title {
  margin: 0 !important;
}

#logo_wrap h1 {
  margin: 0;
}

.logo-wrap a {
  display: block;
}
.logo-wrap a svg {
  width: 150px;
}
.logo-wrap a .logo-g {
  fill: #ffffff;
}

.logo-wrap .logo-g:not(.home .logo-wrap .logo-g),
.is-top .logo-wrap .logo-g {
  fill: #145d3a;
}

.logo-wrap p {
  font-size: 1.2rem;
  line-height: 1;
}

/* navigation
----------------------------------------- */
#menu {
  width: 100%;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
}
@media print, screen and (max-width:1200px) {
  .nav__list {
    gap: 2rem;
  }
}
@media screen and (max-width:1024px) {
  .nav__list {
    display: block;
  }
}

.nav__list li a {
  border-bottom: none;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  transition: all 1s;
}
@media screen and (max-width:1300px) {
  .nav__list li a {
    font-size: 1.4rem;
  }
}
@media print, screen and (max-width:1200px) {
  .nav__list li a {
    font-size: 14px;
  }
}

.nav__list li a:hover {
  opacity: 0.5 !important;
}

.is-top #menu ul li a {
  height: 70px;
}

@media screen and (max-width:1024px) {
  #menu ul li a {
    padding: 1rem 3rem;
    text-decoration: none;
  }
  #menu ul li {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    margin-bottom: 2rem;
  }
  #menu ul li.contact-btn {
    border-left: 0;
    border-right: 0;
  }
  #menu ul li:last-child {
    margin-bottom: 0;
  }
  #menu #menu-nav_inner {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    transform: translate3d(-10px, 0, 0) translate(-50%, -50%);
  }
  #nav_inner {
    text-align: center;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: -webkit-transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
    transition: transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
  }
  #menu.open #nav_inner {
    pointer-events: auto;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  #menu-nav_inner {
    opacity: 0;
    -webkit-transition: opacity ease 0.6s 0s, -webkit-transform ease 0.6s 0s;
    transition: opacity ease 0.6s 0s, transform ease 0.6s 0s;
  }
  #menu.open #menu-nav_inner {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) translate(-50%, -50%);
    transform: translate3d(0, 0, 0) translate(-50%, -50%);
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
  }
}
/* Hamburger Menu
----------------------------------------- */
.toggle {
  display: none;
}

@media screen and (max-width:1024px) {
  .toggle {
    display: block;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 3;
    top: 0;
    position: relative;
  }
  .toggle span {
    display: block;
    position: absolute;
    width: 30px;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: solid 2px #145d3a;
  }
  .toggle.active span {
    border-bottom: solid 2px #145d3a;
  }
  .toggle span:nth-child(1) {
    top: 30px;
  }
  .toggle span:nth-child(2) {
    top: 38px;
  }
  .toggle.active span:nth-child(1) {
    top: 35px;
    transform: translateX(-50%) rotate(-45deg);
  }
  .toggle.active span:nth-child(2) {
    top: 35px;
    transform: translateX(-50%) rotate(45deg);
  }
}
.drop-menu {
  position: relative;
  padding-right: 2rem;
}
@media screen and (max-width:1024px) {
  .drop-menu {
    position: initial;
    padding-right: 0;
  }
}

.drop-menu::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #111111;
  border-bottom: 0;
}
@media screen and (max-width:1024px) {
  .drop-menu::before {
    border-right: 0;
    border-left: 0;
    border-top: 0;
  }
}

.sub-menu {
  background-color: #ffffff;
  top: 5rem;
  left: 0;
  position: absolute;
  top: 100%;
  transform: scaleY(0);
  transform-origin: center top;
  transition: transform 0.3s;
  width: max-content;
  z-index: 1;
  padding: 2rem;
}
@media screen and (max-width:1024px) {
  .sub-menu {
    position: initial;
    transform: initial;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    background: initial;
  }
}

@media screen and (max-width:1024px) {
  .sub-menu li {
    width: 50%;
    margin-bottom: 0 !important;
    border-bottom: 1px solid #ddd !important;
  }
}

@media screen and (max-width:1024px) {
  .sub-menu li:nth-child(1),
  .sub-menu li:nth-child(2) {
    border-top: 1px solid #ddd !important;
  }
}

.sub-menu li a {
  font-size: 1.4rem;
  margin: 1rem 0;
  border-bottom: 1px solid #ddd !important;
}
@media screen and (max-width:1024px) {
  .sub-menu li a {
    border-bottom: 0 !important;
    font-size: 14px;
    margin: 0 !important;
    text-align: left;
    padding: 1rem !important;
  }
}

.sub-menu li:last-child a {
  margin: 0;
}

.drop-menu:hover .sub-menu {
  transform: scaleY(1);
}

.tab-link a {
  position: relative;
}

.tab-link a:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translatey(-50%);
  background: url(../images/tab-link.svg) no-repeat center center/contain;
  width: 12px;
  height: 12px;
}
@media screen and (max-width:1024px) {
  .tab-link a:before {
    right: 10px;
  }
}

/* ==========================================================================
 Footer
========================================================================== */
#footer {
  position: relative;
}
#footer p {
  margin: 0;
}
#footer #footer_inner {
  position: relative;
  background: #145d3a;
  color: #ffffff;
}
@media screen and (max-width:960px) {
  #footer #footer_inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
#footer #footer_inner #footer_content {
  display: flex;
  padding-bottom: 100px;
  gap: 5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width:767px) {
  #footer #footer_inner #footer_content {
    padding-bottom: 100px;
  }
}
#footer #footer_inner #footer_content .footer-item {
  width: calc(70% - 2.5rem);
  display: flex;
  gap: 5rem;
  justify-content: flex-end;
}
@media print, screen and (max-width:1200px) {
  #footer #footer_inner #footer_content .footer-item {
    width: calc(70% - 2.5rem);
  }
}
@media screen and (max-width:960px) {
  #footer #footer_inner #footer_content .footer-item {
    width: calc(60% - 2.5rem);
  }
}
@media screen and (max-width:767px) {
  #footer #footer_inner #footer_content .footer-item {
    width: 100%;
    justify-content: initial;
    gap: 3rem;
  }
}
#footer #footer_inner #footer_content .footer-item:first-child {
  width: calc(30% - 2.5rem);
  display: block;
}
@media print, screen and (max-width:1200px) {
  #footer #footer_inner #footer_content .footer-item:first-child {
    width: calc(30% - 2.5rem);
  }
}
@media screen and (max-width:960px) {
  #footer #footer_inner #footer_content .footer-item:first-child {
    width: calc(40% - 2.5rem);
  }
}
@media screen and (max-width:767px) {
  #footer #footer_inner #footer_content .footer-item:first-child {
    text-align: center;
    margin: 0 auto;
    width: 100%;
  }
}
#footer #footer_inner #footer_content .footer-item #footer_logo {
  margin-bottom: 2rem;
}
@media screen and (max-width:767px) {
  #footer #footer_inner #footer_content .footer-item #footer_logo {
    margin: 0 auto 2rem auto;
  }
}
#footer #footer_inner #footer_content .footer-item .nav__list {
  display: block;
}
#footer #footer_inner #footer_content .footer-item .nav__list li {
  margin-bottom: 2rem;
}
#footer #footer_inner #footer_content .footer-item .nav__list li:last-child {
  margin-bottom: 0;
}
#footer #footer_inner #footer_content .footer-item .nav__list li a {
  font-size: 1.4rem;
}
@media screen and (max-width:767px) {
  #footer #footer_inner #footer_content .footer-item .nav__list li a {
    font-size: 12px;
  }
}
#footer #footer_inner #footer_content .footer-item .nav__list li.tab-link a:before {
  background: url(../images/tab-link-r.svg) no-repeat center center/contain;
}
#footer #footer_inner #footer_bottom a, #footer #footer_inner #footer_bottom p {
  color: #ffffff;
  font-size: 12px;
}
#footer #footer_inner #footer_bottom #copyright {
  text-align: center;
  font-size: 12px;
}

/* ==========================================================================
 Swiper
========================================================================== */
.swiper-wrapper {
  user-select: none;
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.swiper-button {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (max-width:767px) {
  .swiper-button {
    margin-top: 0rem;
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  width: 60px;
  height: 60px;
  background-color: #145d3a;
  border-radius: 100px;
}
@media screen and (max-width:767px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}

.swiper-button-prev:before,
.swiper-button-next:before {
  content: "" !important;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 20px;
  width: 20px;
}

.swiper-button-next:after {
  content: "" !important;
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 50%;
  transform: translatex(-50%);
  width: 20px;
  height: auto;
  background: url(../images/arrow.svg) no-repeat center/contain;
}

.swiper-button-prev:after {
  content: "" !important;
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 0;
  left: 50%;
  transform: translatex(-50%);
  width: 20px;
  height: auto;
  background: url(../images/arrow_l.svg) no-repeat center/contain;
}

/* ==========================================================================
 404
========================================================================== */
.error404 #content {
  padding-top: 10rem;
}

#post_not_inner h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width:767px) {
  #post_not_inner h1 {
    font-size: 2rem;
  }
}

/* ==========================================================================
 Block Editor
========================================================================== */
.accent-change {
  color: #111111;
}

.accent-bottom {
  border-bottom: 1px solid #111111;
  padding-bottom: 5px;
}

.wp-block-list {
  padding-left: 2rem;
}
.wp-block-list li {
  list-style: inherit;
  margin-left: inherit;
}

/* ==========================================================================
 全ページ共通
========================================================================== */
/* タイトル
----------------------------------------- */
.title-wrap {
  margin-bottom: 5rem !important;
}
@media screen and (max-width:820px) {
  .title-wrap {
    margin-bottom: 3rem !important;
  }
}

.sec-title {
  color: #82BA9F;
  font-size: 1.8rem;
  font-weight: 700;
}

.sec-title-jp,
.sec-title-jp p,
.sec-title-jp span {
  font-size: 4rem;
  color: #145d3a;
  margin-bottom: 2rem;
  font-weight: 900;
  line-height: 1.5;
}
@media screen and (max-width:1600px) {
  .sec-title-jp,
  .sec-title-jp p,
  .sec-title-jp span {
    font-size: 3.5rem;
  }
}
@media screen and (max-width:1400px) {
  .sec-title-jp,
  .sec-title-jp p,
  .sec-title-jp span {
    font-size: 3rem;
  }
}
@media print, screen and (max-width:1200px) {
  .sec-title-jp,
  .sec-title-jp p,
  .sec-title-jp span {
    font-size: 2.7rem;
  }
}
@media screen and (max-width:960px) {
  .sec-title-jp,
  .sec-title-jp p,
  .sec-title-jp span {
    font-size: 2.3rem;
  }
}
@media screen and (max-width:767px) {
  .sec-title-jp,
  .sec-title-jp p,
  .sec-title-jp span {
    font-size: 1.8rem;
  }
}

/* テキスト
----------------------------------------- */
.sec-text {
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width:960px) {
  .sec-text {
    font-size: 1.4rem !important;
  }
}
@media screen and (max-width:767px) {
  .sec-text {
    font-size: 14px !important;
    text-align: left;
  }
}

/* ページヘッダー
----------------------------------------- */
#page_header {
  padding: 20rem 0 10rem 0;
  position: relative;
}
@media screen and (max-width:960px) {
  #page_header {
    height: 40rem;
  }
}
@media screen and (max-width:767px) {
  #page_header {
    height: 100%;
    padding: 13rem 0 5rem 0;
  }
}
@media screen and (max-width:960px) {
  #page_header .sec-title-jp p, #page_header .sec-title-jp span {
    font-size: 3rem;
  }
}
@media screen and (max-width:767px) {
  #page_header .sec-title-jp p, #page_header .sec-title-jp span {
    font-size: 2.3rem;
  }
}

.hero-content {
  width: 100%;
}
@media screen and (max-width:820px) {
  .hero-content {
    position: initial;
    transform: initial;
  }
}
@media print, screen and (max-width:1200px) {
  .hero-content .btn-wrap a, .hero-content .btn-wrap button {
    display: inline-block;
    width: 100%;
  }
}

.page-normal .hero-content,
.page-archive .hero-content {
  text-align: center;
}
.page-normal .hero-content p, .page-normal .hero-content h1, .page-normal .hero-content h2, .page-normal .hero-content h3, .page-normal .hero-content h4, .page-normal .hero-content h5, .page-normal .hero-content h6,
.page-archive .hero-content p,
.page-archive .hero-content h1,
.page-archive .hero-content h2,
.page-archive .hero-content h3,
.page-archive .hero-content h4,
.page-archive .hero-content h5,
.page-archive .hero-content h6 {
  margin: 0;
}
.page-normal .hero-content .page-subtitle-en,
.page-archive .hero-content .page-subtitle-en {
  margin-bottom: 0.25em;
  color: #82BA9F;
  font-size: 1.8rem;
  font-weight: 700;
}
.page-normal .hero-content .page-title,
.page-archive .hero-content .page-title {
  margin: 0;
}

/* お問い合わせ
----------------------------------------- */
.header-text {
  margin-top: 2rem !important;
  font-weight: 700;
}
@media screen and (max-width:767px) {
  .header-text {
    text-align: left;
  }
}

/* 固定ページでの記事リスト
----------------------------------------- */
.article-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
@media screen and (max-width:767px) {
  .article-wrap {
    gap: 3rem 2rem;
  }
}
.article-wrap article {
  width: calc(33.3333333333% - 3.3333333rem);
  transition: all 0.3s;
}
@media screen and (max-width:767px) {
  .article-wrap article {
    width: calc(50% - 1rem);
  }
}
.article-wrap article:hover {
  opacity: 0.6;
}
.article-wrap article .post-title {
  margin-top: 1rem;
}

/* ==========================================================================
 サービスページ共通
========================================================================== */
.page-service {
  /* ページヘッダー
  ----------------------------------------- */
  /* about
  ----------------------------------------- */
  /* Flow ご依頼のながれ
  ----------------------------------------- */
}
.page-service h1, .page-service h2, .page-service h3, .page-service h4, .page-service h5, .page-service h6 {
  margin-top: 0;
}
.page-service #page_header {
  height: 100%;
  padding: 20rem 0;
  background: url(../images/mv_bg.png) no-repeat top center/cover;
}
@media screen and (max-width:960px) {
  .page-service #page_header {
    height: 70vh;
  }
}
@media screen and (max-width:820px) {
  .page-service #page_header {
    height: 100%;
    padding-top: 15rem;
    padding-bottom: 10rem;
  }
}
@media screen and (max-width:767px) {
  .page-service #page_header {
    padding-top: 13rem;
    padding-bottom: 5rem;
  }
}
.page-service #page_header #services_item h1 {
  margin-bottom: 0;
}
.page-service #page_header #services_item h1 span {
  color: #145d3a;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.5em;
}
@media print, screen and (max-width:1200px) {
  .page-service #page_header #services_item h1 span {
    font-size: 4rem;
  }
}
@media screen and (max-width:960px) {
  .page-service #page_header #services_item h1 span {
    font-size: 3rem;
  }
}
@media screen and (max-width:767px) {
  .page-service #page_header #services_item h1 span {
    font-size: 2.3rem;
  }
}
.page-service #page_header #services_item .sec-text {
  font-size: 2rem;
  margin: 1rem 0 0 0;
}
@media print, screen and (max-width:1200px) {
  .page-service #page_header #services_item .sec-text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:960px) {
  .page-service #page_header #services_item .sec-text {
    font-size: 1.5rem;
  }
}
.page-service #page_header #services_item .sec-text span {
  font-size: 2rem;
}
@media print, screen and (max-width:1200px) {
  .page-service #page_header #services_item .sec-text span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:960px) {
  .page-service #page_header #services_item .sec-text span {
    font-size: 1.5rem;
  }
}
.page-service #page_header #services_item .slide-in_inner {
  height: 50rem;
}
@media print, screen and (max-width:1200px) {
  .page-service #page_header #services_item .slide-in_inner {
    height: 35rem;
  }
}
@media screen and (max-width:960px) {
  .page-service #page_header #services_item .slide-in_inner {
    height: 30rem;
  }
}
@media screen and (max-width:820px) {
  .page-service #page_header #services_item .slide-in_inner {
    height: 20rem;
  }
}
.page-service #page_header #services_item .l-flex {
  gap: 3rem !important;
}
@media print, screen and (max-width:1200px) {
  .page-service #page_header #services_item .l-flex {
    gap: 1rem !important;
  }
}
@media screen and (max-width:820px) {
  .page-service #page_header #services_item .l-flex {
    margin: 3rem 0;
  }
}
@media screen and (max-width:820px) {
  .page-service #page_header #services_item .l-flex .btn-wrap {
    margin-top: 0 !important;
  }
}
.page-service #page_header #services_item .l-flex .btn-wrap a {
  padding: 0 2rem;
  border: 2px solid #145d3a;
  background: #ffffff;
  color: #145d3a;
}
@media screen and (max-width:767px) {
  .page-service #page_header #services_item .l-flex .btn-wrap a {
    width: 220px;
  }
}
.page-service #page_header #services_item .l-flex .btn-wrap:last-child a {
  background: #145d3a;
  color: #ffffff;
}
@media screen and (max-width:820px) {
  .page-service #about01 .l-flex .flex-r, .page-service #about02 .l-flex .flex-r, .page-service #about03 .l-flex .flex-r {
    width: 70% !important;
    margin-left: auto;
  }
}
@media screen and (max-width:820px) {
  .page-service #about01 .l-flex.reverse .flex-r, .page-service #about02 .l-flex.reverse .flex-r, .page-service #about03 .l-flex.reverse .flex-r {
    margin-left: initial;
    margin-right: auto;
  }
}
.page-service #about01 p, .page-service #about02 p, .page-service #about03 p {
  font-size: 1.8rem;
}
@media screen and (max-width:767px) {
  .page-service #about01 p, .page-service #about02 p, .page-service #about03 p {
    font-size: 14px;
  }
}
.page-service #flow .flow-wrap .flow-item {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5rem;
  padding-left: 5rem;
  margin-bottom: 5rem;
  position: relative;
}
@media screen and (max-width:820px) {
  .page-service #flow .flow-wrap .flow-item {
    display: block;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
}
.page-service #flow .flow-wrap .flow-item::before {
  color: #145d3a;
  counter-increment: number 1;
  content: "0" counter(number);
  display: block;
  font-size: 2rem;
  left: 0;
  position: absolute;
  top: 2px;
  font-weight: 900;
  line-height: 1;
}
.page-service #flow .flow-wrap .flow-item::after {
  background: #145d3a;
  content: "";
  display: block;
  height: calc(100% - 40px);
  left: 11px;
  position: absolute;
  bottom: 0px;
  width: 1px;
}
.page-service #flow .flow-wrap .flow-item:last-child {
  border-bottom: 0;
}
.page-service #flow .flow-wrap .flow-item:last-child::after {
  height: 0;
}
.page-service #flow .flow-wrap .flow-item h3 {
  font-size: 1.6rem;
  width: calc(30% - 2.5rem);
}
@media screen and (max-width:960px) {
  .page-service #flow .flow-wrap .flow-item h3 {
    width: calc(40% - 2.5rem);
  }
}
@media screen and (max-width:820px) {
  .page-service #flow .flow-wrap .flow-item h3 {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.page-service #flow .flow-wrap .flow-item p {
  width: 70%;
}
@media screen and (max-width:960px) {
  .page-service #flow .flow-wrap .flow-item p {
    width: 60%;
  }
}
@media screen and (max-width:820px) {
  .page-service #flow .flow-wrap .flow-item p {
    width: 100%;
  }
}

/* ==========================================================================
 資料ダウンロードページ（共通）
========================================================================== */
.download-swiper {
  margin-bottom: 10rem;
}
@media screen and (max-width:767px) {
  .download-swiper {
    margin-bottom: 5rem;
  }
}

#form_comp .wp-block-file a:not([download]) {
  display: none !important;
}
#form_comp .wp-block-file__button {
  margin: 0;
  padding: 0;
}

/* ==========================================================================
 パンくず
========================================================================== */
.breadcrumb__item {
  display: inline;
  margin-right: 2rem;
  position: relative;
}
.breadcrumb__item span {
  text-transform: uppercase;
}
.breadcrumb__item:after {
  content: "／";
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translatey(-50%);
  font-size: 13px;
}
.breadcrumb__item:last-child {
  padding-right: 0rem;
}
.breadcrumb__item:last-child::after {
  content: "";
}
.breadcrumb__item a {
  transition: opacity 0.6s;
}
.breadcrumb__item a:hover {
  opacity: 0.6;
}

/* ==========================================================================
 カスタム投稿
========================================================================== */
/* アーカイブページ(共通)
----------------------------------------- */
.term-list {
  gap: 1rem !important;
  margin-bottom: 5rem !important;
}
@media screen and (max-width:767px) {
  .term-list {
    gap: 0 !important;
    align-items: initial !important;
  }
}
@media screen and (max-width:767px) {
  .term-list li {
    width: calc((100% - 1rem) / 2);
  }
}
.term-list a {
  display: inline-block;
  width: 100%;
  background: #ffffff;
  color: #145d3a;
  text-align: center;
  line-height: 4;
  border: 1px solid #145d3a;
  border-radius: 200px;
  font-weight: 700;
  line-height: 2.5;
  transition: all 0.3s;
}
@media screen and (max-width:1400px) {
  .term-list a {
    padding: 0;
  }
}
@media print, screen and (max-width:1200px) {
  .term-list a {
    line-height: 3;
  }
}
@media screen and (max-width:820px) {
  .term-list a {
    line-height: 2;
  }
}
@media screen and (max-width:767px) {
  .term-list a {
    display: flex;
    align-items: center;
    height: 100%;
    text-align: left;
    border-radius: 0.75rem;
  }
}
.term-list a:hover {
  opacity: 0.6;
}
.term-list .current-cat a {
  background: #145d3a;
  color: #ffffff;
}

@media screen and (max-width:820px) {
  .column-term {
    gap: 1rem !important;
  }
}
.column-term li a {
  padding: 0.5rem 2rem;
}
@media screen and (max-width:767px) {
  .column-term li a {
    padding: 0.5rem 1rem;
  }
}

.column-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
@media screen and (max-width:820px) {
  .column-flex {
    gap: 3rem;
  }
}
@media screen and (max-width:767px) {
  .column-flex {
    gap: 2rem;
  }
}
.column-flex article {
  width: calc(33.3333333333% - 3.3333333rem);
}
@media screen and (max-width:820px) {
  .column-flex article {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width:767px) {
  .column-flex article {
    width: calc(50% - 1rem);
  }
}
.column-flex article a {
  transition: all 0.2s;
}
.column-flex article a:hover {
  opacity: 0.6;
}
.column-flex .column-flex-item {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
@media screen and (max-width:767px) {
  .column-flex .column-flex-item {
    gap: 2rem;
  }
}
.column-flex .column-flex-item article {
  width: calc(33.3333333333% - 3.3333333rem);
}
@media screen and (max-width:820px) {
  .column-flex .column-flex-item article {
    width: calc(50% - 1.5rem);
  }
}
@media screen and (max-width:767px) {
  .column-flex .column-flex-item article {
    width: calc(50% - 1rem);
  }
}
.column-flex .column-flex-item article a {
  transition: all 0.2s;
}
.column-flex .column-flex-item article a:hover {
  opacity: 0.6;
}
.column-flex .column-flex-item article .post-thumbnail img {
  object-fit: contain;
}

#archive_wrap .column-flex-item article .post-thumbnail img {
  object-fit: cover;
}

article .post-thumbnail:not(#single_l article .post-thumbnail):not(.post-type-archive-template article .post-thumbnail):not(.tax-powerpoint_category article .post-thumbnail),
.related-post .post-thumbnail {
  height: 35rem;
}
@media screen and (max-width:1800px) {
  article .post-thumbnail:not(#single_l article .post-thumbnail):not(.post-type-archive-template article .post-thumbnail):not(.tax-powerpoint_category article .post-thumbnail),
  .related-post .post-thumbnail {
    height: 30rem;
  }
}
@media screen and (max-width:1400px) {
  article .post-thumbnail:not(#single_l article .post-thumbnail):not(.post-type-archive-template article .post-thumbnail):not(.tax-powerpoint_category article .post-thumbnail),
  .related-post .post-thumbnail {
    height: 25rem;
  }
}
@media print, screen and (max-width:1200px) {
  article .post-thumbnail:not(#single_l article .post-thumbnail):not(.post-type-archive-template article .post-thumbnail):not(.tax-powerpoint_category article .post-thumbnail),
  .related-post .post-thumbnail {
    height: 20rem;
  }
}
@media screen and (max-width:960px) {
  article .post-thumbnail:not(#single_l article .post-thumbnail):not(.post-type-archive-template article .post-thumbnail):not(.tax-powerpoint_category article .post-thumbnail),
  .related-post .post-thumbnail {
    height: 15rem;
  }
}
@media screen and (max-width:767px) {
  article .post-thumbnail:not(#single_l article .post-thumbnail):not(.post-type-archive-template article .post-thumbnail):not(.tax-powerpoint_category article .post-thumbnail),
  .related-post .post-thumbnail {
    height: 10rem;
  }
}

.post-title {
  overflow-wrap: break-word;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: left;
  margin-bottom: 0 !important;
  font-size: 2rem;
  margin-top: 1rem;
}
@media print, screen and (max-width:1200px) {
  .post-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width:960px) {
  .post-title {
    font-size: 14px;
  }
}
@media screen and (max-width:767px) {
  .post-title {
    width: 100%;
  }
}

.single .post-title {
  margin: 2rem 0 !important;
  -webkit-line-clamp: initial;
  font-size: 3rem;
  line-height: 1.3;
  border-bottom: 1px dotted;
  padding-bottom: 1rem;
  color: #145d3a;
}
@media screen and (max-width:960px) {
  .single .post-title {
    font-size: 2rem;
  }
}
@media screen and (max-width:767px) {
  .single .post-title {
    font-size: 1.8rem;
  }
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Easy Table of Contents (目次プラグイン)
----------------------------------------- */
.eztoc {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}
.eztoc .ez-toc-counter {
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.eztoc .ez-toc-title {
  font-weight: 700 !important;
  font-size: 1.8rem !important;
  line-height: 1.5 !important;
  color: #111111 !important;
  margin: 0 !important;
}
.eztoc nav {
  max-height: initial !important;
  overflow: initial !important;
}
@media screen and (max-width:767px) {
  .eztoc nav {
    max-height: 100% !important;
  }
}
.eztoc nav ul {
  padding: 10px !important;
}
.eztoc nav ul li {
  margin-bottom: 0.5em !important;
}
.eztoc nav ul li a {
  position: relative;
  padding-left: 10px;
  display: inline-flex;
  align-items: stretch;
  flex-wrap: nowrap;
  font-weight: 400 !important;
  font-size: 13px !important;
  color: #111111 !important;
  text-decoration: none !important;
}
.eztoc nav ul li a:hover {
  opacity: 0.6;
}
.eztoc nav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #145d3a;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.eztoc nav ul li a:hover::after {
  transform: scale(1, 1);
}

/* シングルページ(共通)
----------------------------------------- */
#single_wrap {
  padding-top: 20rem;
}
@media screen and (max-width:767px) {
  #single_wrap {
    padding-top: 15rem;
  }
}
#single_wrap #single_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
#single_wrap #single_inner #single_l {
  width: calc(70% - 25px);
}
@media screen and (max-width:820px) {
  #single_wrap #single_inner #single_l {
    width: 100%;
  }
}
#single_wrap #single_inner #single_l .post-contents #ez-toc-container {
  display: none !important;
}
#single_wrap #single_inner #single_l .post-contents h2, #single_wrap #single_inner #single_l .post-contents h3, #single_wrap #single_inner #single_l .post-contents h4, #single_wrap #single_inner #single_l .post-contents h5 {
  margin-top: 50px;
  margin-bottom: 10px;
}
#single_wrap #single_inner #single_l .post-contents h2 {
  padding-left: 1rem;
  border-left: 3px solid #145d3a;
}
@media screen and (max-width:767px) {
  #single_wrap #single_inner #single_l .post-contents h2 {
    font-size: 1.6rem;
  }
}
#single_wrap #single_inner #single_l .post-contents h3 {
  padding-bottom: 1rem;
  border-bottom: 3px solid #145d3a;
}
#single_wrap #single_inner #single_l .post-contents p {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
@media screen and (max-width:767px) {
  #single_wrap #single_inner #single_l .post-contents p {
    font-size: 1.4rem;
  }
}
#single_wrap #single_inner #single_l .post-contents figure {
  margin-bottom: 20px;
}
#single_wrap #single_inner #single_l .post-contents a {
  color: #145d3a;
  font-weight: 700;
}
#single_wrap #single_inner #single_l .post-contents a:hover {
  border-bottom: 1px solid #145d3a;
}
#single_wrap #single_inner #single_l .related-post-wrap {
  margin-top: 20rem;
}
#single_wrap #single_inner #single_l .related-post-wrap h2 {
  font-size: 2.5rem;
  border-left: 3px solid #145d3a;
  padding-left: 1rem;
  margin-bottom: 3rem;
}
@media screen and (max-width:960px) {
  #single_wrap #single_inner #single_l .related-post-wrap h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width:767px) {
  #single_wrap #single_inner #single_l .related-post-wrap h2 {
    font-size: 1.6rem;
  }
}
#single_wrap #single_inner #single_l .related-post-wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
@media screen and (max-width:767px) {
  #single_wrap #single_inner #single_l .related-post-wrap ul {
    gap: 2rem;
  }
}
#single_wrap #single_inner #single_l .related-post-wrap ul li.related-post {
  width: calc(50% - 2.5rem);
}
@media screen and (max-width:767px) {
  #single_wrap #single_inner #single_l .related-post-wrap ul li.related-post {
    width: calc(50% - 1rem);
  }
}
#single_wrap #single_inner #single_l .related-post-wrap ul li.related-post .post-title {
  font-size: 2rem;
  color: #111111;
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  padding: 0;
  border-bottom: initial;
}
@media screen and (max-width:960px) {
  #single_wrap #single_inner #single_l .related-post-wrap ul li.related-post .post-title {
    font-size: 1.4rem;
  }
}
#single_wrap #single_inner #single_r {
  width: calc(30% - 25px);
}
@media screen and (max-width:820px) {
  #single_wrap #single_inner #single_r {
    width: 100%;
  }
}
#single_wrap #single_inner aside,
#single_wrap #single_inner #post_mokuji {
  background: #E9FFF3;
  position: sticky;
  top: 170px;
  padding: 2rem;
}
#single_wrap #single_inner aside {
  max-height: 34em;
  overflow-y: auto;
}
@media screen and (max-width:767px) {
  #single_wrap #single_inner aside {
    position: initial;
  }
}
#single_wrap #single_inner #post_mokuji {
  margin-top: 5rem;
  position: initial;
}
@media screen and (max-width:767px) {
  #single_wrap #single_inner #post_mokuji {
    padding: 0;
  }
}

.single img {
  height: auto;
  max-width: 100%;
}

/* ==========================================================================
 ページャー / archive,taxonomy ※カスタム投稿含む
========================================================================== */
#news__pager {
  margin-top: 5rem;
}
@media screen and (max-width:820px) {
  #news__pager {
    margin: 2rem auto;
  }
}
#news__pager .page-numbers {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

#blog__pager ul.page-numbers {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.pagination .page-numbers li a,
.pagination .page-numbers li span {
  width: 50px;
  height: 50px;
  line-height: 1;
  border: 1px solid #145d3a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
@media screen and (max-width:767px) {
  .pagination .page-numbers li a,
  .pagination .page-numbers li span {
    width: 40px;
    height: 40px;
  }
}

.pagination .page-numbers li span {
  background: #145d3a;
  color: #ffffff;
  border: 1px solid #145d3a;
}

/* ==========================================================================
 サイドバー 人気の記事 / side-pickup.php
========================================================================== */
.news-list article {
  border-top: 1px solid #CFCFCF;
}
.news-list article:last-child {
  border-bottom: 1px solid #CFCFCF;
}
.news-list article a {
  display: block;
  padding: 30px 0;
}
@media screen and (max-width:767px) {
  .news-list article a {
    padding: 20px 0;
  }
}
.news-list article a div {
  display: flex;
  gap: 3rem;
  align-items: center;
}
@media screen and (max-width:767px) {
  .news-list article a div {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* ==========================================================================
 search.php,tag.php
========================================================================== */
.post-time {
  color: #3A3A3A;
  white-space: nowrap;
}

.post-category {
  font-size: 1.2rem;
  background: #145d3a;
  color: #ffffff;
  padding: 5px 10px;
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width:767px) {
  .post-category {
    font-size: 12px;
  }
}

/* ==========================================================================
 FAQ
========================================================================== */
.accordion {
  margin: 4rem auto !important;
}
.accordion .accordion-item {
  position: relative;
  margin: 0;
}
.accordion .accordion-item .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
@media screen and (max-width:960px) {
  .accordion .accordion-item .icon {
    top: 27px;
  }
}
.accordion .accordion-item .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  right: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion .accordion-item .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  right: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion .accordion-item .accordion-title {
  display: flex;
  padding: 3rem 3em 3rem 0;
  color: #111111;
  cursor: pointer;
}
.accordion .accordion-item .accordion-title:hover {
  color: #145d3a;
}
.accordion .accordion-item .accordion-title::before {
  content: "Q";
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  display: inline-block;
  margin-right: 1rem;
  color: #145d3a;
}
@media screen and (max-width:960px) {
  .accordion .accordion-item .accordion-title::before {
    font-size: 2rem;
  }
}
.accordion .accordion-item .accordion-title .wp-block-heading {
  padding-top: 0.25em;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width:960px) {
  .accordion .accordion-item .accordion-title .wp-block-heading {
    font-size: 14px;
  }
}
.accordion .accordion-item .accordion-content {
  display: flex;
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.3s ease;
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item .accordion-content > * {
  width: 100%;
}
.accordion .accordion-item .accordion-content p {
  width: 100%;
  border-top: 1px solid #145d3a;
  padding: 2em 0;
}
.accordion .accordion-item .accordion-content p::before {
  content: "A";
  font-size: 1.6rem;
  line-height: 1;
  display: inline-block;
  margin-right: 1rem;
}
.accordion .accordion-item.open .icon::after {
  content: none;
}
.accordion .accordion-item.open .accordion-title {
  color: #145d3a;
}

/* ==========================================================================
 プライバシーポリシー
========================================================================== */
#policy h2 {
  font-size: 2rem;
  margin: 3rem 0 1rem 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}
@media screen and (max-width:767px) {
  #policy h2 {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
 Other / 使っていない？
========================================================================== */
.single-title,
.entry-title {
  margin: 0;
}

#archive_news_inner .news-list {
  max-width: 960px;
  margin: 0 auto;
}