@charset "UTF-8";
/* --------------------------
modern-css-reset
https://github.com/Andy-set-studio/modern-css-reset/blob/master/dist/reset.css
--------------------------- */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.wrapper.blog {
  margin: 25px auto 30px auto;
}

/* --------------------------
ブログ 全体
--------------------------- */
.l-blog__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.l-blog__post {
  width: calc(100% - 240px - 40px);
}

/* ブログ 記事一覧
--------------------------- */
/* タイトル */
.blog-title {
  margin-top: 20px;
  padding: 10px 15px;
  font-size: 24px;
  background-color: #ffaab2;
  color: #fff;
  border-radius: 5px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .blog-title {
    font-size: 20px;
  }
}
.blog-title span {
  padding-left: 5px;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .blog-title span {
    font-size: 14px;
  }
}

/* リストのリンク */
.l-blog-pagenation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 50px 0 50px 0;
  padding: 20px 50px;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation {
    margin: 15px 0 10px 0;
    padding: 20px 0px;
  }
}
.l-blog-pagenation .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding-top: 12px;
  border-radius: 3px;
  color: #5d5d5d;
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers {
    width: 30px;
    height: 30px;
    padding-top: 8px;
    font-size: 16px;
  }
}
.l-blog-pagenation .page-numbers.current {
  background-color: #228f59;
  color: #fff;
}
.l-blog-pagenation .page-numbers.prev, .l-blog-pagenation .page-numbers.next {
  width: 100px;
  font-size: 17px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers.prev, .l-blog-pagenation .page-numbers.next {
    width: 80px;
    font-size: 14px;
  }
}
.l-blog-pagenation .page-numbers.prev {
  position: absolute;
  top: 20px;
  left: 50px;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers.prev {
    left: 0px;
  }
}
.l-blog-pagenation .page-numbers.prev::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  left: 0px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(-135deg);
}
.l-blog-pagenation .page-numbers.next {
  position: absolute;
  top: 20px;
  right: 50px;
}
@media screen and (max-width: 767px) {
  .l-blog-pagenation .page-numbers.next {
    right: 0px;
  }
}
.l-blog-pagenation .page-numbers.next::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 0px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}

/* ブログ 個別記事
--------------------------- */
.l-single-content__content-outer {
  margin-bottom: 150px;
}
.l-single-content p {
  margin-bottom: 1.5em;
  line-height: 1.8;
}
.l-single-content a {
  text-decoration: underline;
}
.l-single-content h1 {
  font-size: 16px;
  margin: 10px 0;
}
.l-single-content h2 {
  font-size: 15px;
  margin: 10px 0;
}
.l-single-content h3 {
  font-size: 14px;
  margin: 10px 0;
}
.l-single-content h4 {
  font-size: 13px;
  margin: 10px 0;
}
.l-single-content h5 {
  font-size: 12px;
  margin: 10px 0;
}
.l-single-content h6 {
  font-size: 11px;
  margin: 10px 0;
}
.l-single-content figure {
  margin: 10px 0;
}

.l-single-pagenation {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1px;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 20px 0px 0 0px;
  text-align: center;
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0;
  border-top: 1px solid rgba(76, 76, 76, 0.2);
}
.l-single-pagenation__prev, .l-single-pagenation__next {
  width: 180px;
  height: 50px;
}
.l-single-pagenation__prev > a, .l-single-pagenation__next > a {
  display: inline-block;
  position: relative;
  width: 110px;
  background-color: #efefef;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
}
.l-single-pagenation__prev {
  text-align: left;
}
.l-single-pagenation__prev a {
  padding: 10px 10px 8px 24px;
}
.l-single-pagenation__prev a::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(-135deg);
}
.l-single-pagenation__prev a:hover {
  color: #228f59;
  opacity: 0.7;
}
.l-single-pagenation__next {
  text-align: right;
}
.l-single-pagenation__next a {
  padding: 10px 24px 8px 10px;
}
.l-single-pagenation__next a::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
.l-single-pagenation__next a:hover {
  color: #228f59;
  opacity: 0.7;
}

.l-single-pagenation__center a {
  display: inline-block;
  position: relative;
  width: 110px;
  background-color: #efefef;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  padding: 10px 10px 8px 10px;
}

.c-post-news-list {
  margin: 0px 0 0 0;
  padding: 0;
}
.c-post-news-list__item {
  padding: 20px 0px 20px 0px;
  border-bottom: 1px solid rgba(76, 76, 76, 0.2);
}
.c-post-news-list__item:first-of-type {
  padding: 50px 0px 20px 0px;
}
@media screen and (max-width: 767px) {
  .c-post-news-list__item:first-of-type {
    padding: 30px 0px 20px 0px;
  }
}
.c-post-news-list__link {
  display: block;
  color: #000;
  text-decoration: none;
}
.c-post-news-list__link:hover {
  opacity: 0.7;
}
.c-post-news-list__info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  padding: 0px;
}
.c-post-news-list__time {
  line-height: 1;
  font-size: 17px;
}
.c-post-news-list__title {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 0px 10px 0px;
  border-radius: 5px;
  color: #228f59;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-post-news-list__title {
    font-size: 18px;
  }
}
.c-post-news-list__desc {
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #000;
  font-size: 17px;
}
.c-post-news-list__cat .post-categories li a {
  display: inline-block;
  min-width: 100px;
  margin-left: 20px;
  padding: 6px 10px 4px 10px;
  border-radius: 5px;
  background-color: #4c4c4c;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.c-post-news-list__cat .post-categories li a[href*="category/news/"] {
  background-color: #7cb93b;
}
.c-post-news-list__cat .post-categories li a[href*="category/closed/"] {
  background-color: #eca230;
}

.c-post-single {
  margin: 50px 0px 50px 0px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-post-single {
    margin: 30px 0px 30px 0px;
  }
}
.c-post-single__info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  padding: 0px;
}
.c-post-single__time {
  line-height: 1;
  font-size: 17px;
}
.c-post-single__title {
  width: 100%;
  margin-bottom: 30px;
  padding: 10px 0px 10px 0px;
  border-radius: 5px;
  color: #228f59;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .c-post-single__title {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
.c-post-single__content {
  margin-bottom: 80px;
  padding: 0 0px;
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .c-post-single__content {
    margin-bottom: 40px;
  }
}

/* margin top */
.u-mt0 {
  margin-top: 0px;
}

.u-mt5 {
  margin-top: 5px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt15 {
  margin-top: 15px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mt110 {
  margin-top: 110px;
}

.u-mt120 {
  margin-top: 120px;
}

.u-mt130 {
  margin-top: 130px;
}

.u-mt140 {
  margin-top: 140px;
}

.u-mt150 {
  margin-top: 150px;
}

@media screen and (max-width: 767px) {
  .u-mt0--sp {
    margin-top: 0px;
  }
  .u-mt5--sp {
    margin-top: 5px;
  }
  .u-mt10--sp {
    margin-top: 10px;
  }
  .u-mt15--sp {
    margin-top: 15px;
  }
  .u-mt20--sp {
    margin-top: 20px;
  }
  .u-mt30--sp {
    margin-top: 30px;
  }
  .u-mt50--sp {
    margin-top: 50px;
  }
  .u-mt60--sp {
    margin-top: 60px;
  }
  .u-mt70--sp {
    margin-top: 70px;
  }
  .u-mt80--sp {
    margin-top: 80px;
  }
}
/* margin bottom */
.u-mb0 {
  margin-bottom: 0px;
}

.u-mb5 {
  margin-bottom: 5px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb15 {
  margin-bottom: 15px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb25 {
  margin-bottom: 25px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb35 {
  margin-bottom: 35px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb45 {
  margin-bottom: 45px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb55 {
  margin-bottom: 55px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb65 {
  margin-bottom: 65px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mb75 {
  margin-bottom: 75px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb85 {
  margin-bottom: 85px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mb95 {
  margin-bottom: 95px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-mb105 {
  margin-bottom: 105px;
}

.u-mb110 {
  margin-bottom: 110px;
}

.u-mb115 {
  margin-bottom: 1115px;
}

.u-mb120 {
  margin-bottom: 120px;
}

.u-mb125 {
  margin-bottom: 125px;
}

.u-mb130 {
  margin-bottom: 130px;
}

.u-mb135 {
  margin-bottom: 135px;
}

.u-mb140 {
  margin-bottom: 140px;
}

.u-mb145 {
  margin-bottom: 145px;
}

.u-mb150 {
  margin-bottom: 150px;
}

.u-mb160 {
  margin-bottom: 160px;
}

.u-mb170 {
  margin-bottom: 170px;
}

.u-mb180 {
  margin-bottom: 180px;
}

.u-mb190 {
  margin-bottom: 190px;
}

.u-mb200 {
  margin-bottom: 200px;
}

@media screen and (max-width: 767px) {
  .u-mb0--sp {
    margin-bottom: 0px;
  }
  .u-mb5--sp {
    margin-bottom: 5px;
  }
  .u-mb10--sp {
    margin-bottom: 10px;
  }
  .u-mb15--sp {
    margin-bottom: 15px;
  }
  .u-mb20--sp {
    margin-bottom: 20px;
  }
  .u-mb25--sp {
    margin-bottom: 25px;
  }
  .u-mb30--sp {
    margin-bottom: 30px;
  }
  .u-mb35--sp {
    margin-bottom: 35px;
  }
  .u-mb40--sp {
    margin-bottom: 40px;
  }
  .u-mb45--sp {
    margin-bottom: 45px;
  }
  .u-mb50--sp {
    margin-bottom: 50px;
  }
  .u-mb55--sp {
    margin-bottom: 55px;
  }
  .u-mb60--sp {
    margin-bottom: 60px;
  }
  .u-mb65--sp {
    margin-bottom: 65px;
  }
  .u-mb70--sp {
    margin-bottom: 70px;
  }
  .u-mb75--sp {
    margin-bottom: 75px;
  }
  .u-mb80--sp {
    margin-bottom: 80px;
  }
  .u-mb85--sp {
    margin-bottom: 85px;
  }
  .u-mb90--sp {
    margin-bottom: 90px;
  }
  .u-mb95--sp {
    margin-bottom: 95px;
  }
  .u-mb100--sp {
    margin-bottom: 100px;
  }
  .u-mb110--sp {
    margin-bottom: 110px;
  }
  .u-mb120--sp {
    margin-bottom: 120px;
  }
  .u-mb130--sp {
    margin-bottom: 130px;
  }
  .u-mb140--sp {
    margin-bottom: 140px;
  }
  .u-mb150--sp {
    margin-bottom: 150px;
  }
}
.u-mr10 {
  margin-right: 10px;
}

.u-mr20 {
  margin-right: 20px;
}

/* padding top */
.u-pt0 {
  padding-top: 0px;
}

.u-pt10 {
  padding-top: 10px;
}

.u-pt15 {
  padding-top: 15px;
}

.u-pt20 {
  padding-top: 20px;
}

.u-pt30 {
  padding-top: 30px;
}

.u-pt40 {
  padding-top: 40px;
}

.u-pt50 {
  padding-top: 50px;
}

.u-pt60 {
  padding-top: 60px;
}

.u-pt70 {
  padding-top: 70px;
}

.u-pt80 {
  padding-top: 80px;
}

.u-pt90 {
  padding-top: 90px;
}

.u-pt100 {
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .u-pt0--sp {
    padding-top: 0px;
  }
  .u-pt10--sp {
    padding-top: 10px;
  }
  .u-pt15--sp {
    padding-top: 15px;
  }
  .u-pt20--sp {
    padding-top: 20px;
  }
  .u-pt30--sp {
    padding-top: 30px;
  }
  .u-pt40--sp {
    padding-top: 40px;
  }
  .u-pt50--sp {
    padding-top: 50px;
  }
  .u-pt60--sp {
    padding-top: 60px;
  }
}
/* padding bottom */
.u-pb0 {
  padding-bottom: 0px;
}

.u-pb10 {
  padding-bottom: 10px;
}

.u-pb15 {
  padding-bottom: 15px;
}

.u-pb20 {
  padding-bottom: 20px;
}

.u-pb30 {
  padding-bottom: 30px;
}

.u-pb40 {
  padding-bottom: 40px;
}

.u-pb50 {
  padding-bottom: 50px;
}

.u-pb60 {
  padding-bottom: 60px;
}

.u-pb70 {
  padding-bottom: 70px;
}

.u-pb80 {
  padding-bottom: 80px;
}

.u-pb90 {
  padding-bottom: 90px;
}

.u-pb100 {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .u-pb0--sp {
    padding-bottom: 0px;
  }
  .u-pb10--sp {
    padding-bottom: 10px;
  }
  .u-pb15--sp {
    padding-bottom: 15px;
  }
  .u-pb20--sp {
    padding-bottom: 20px;
  }
  .u-pb30--sp {
    padding-bottom: 30px;
  }
  .u-pb40--sp {
    padding-bottom: 40px;
  }
  .u-pb50--sp {
    padding-bottom: 50px;
  }
  .u-pb60--sp {
    padding-bottom: 60px;
  }
}
/* text align */
.u-text-center {
  text-align: center;
}

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

.u-text-right {
  text-align: center;
}

.u-text-justify {
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .u-text-justify {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .u-text-left-sp {
    text-align: left;
  }
}
/* レスポンシブの改行 */
.u-pc-none {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-pc-none {
    display: block;
  }
}

.u-tb-show {
  display: none;
}
@media screen and (max-width: 1049px) {
  .u-tb-show {
    display: block;
  }
}

.u-tb-none {
  display: block;
}
@media screen and (max-width: 1049px) {
  .u-tb-none {
    display: none;
  }
}

.u-sp-none {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-sp-none {
    display: none;
  }
}

.u-sp-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-show {
    display: block;
  }
}

/* Color */
.u-color-white {
  color: #fff;
}

.u-color-main {
  color: #2b6995 !important;
}

.u-color-lightBlue {
  color: #77A1BE !important;
}

/* tel number */
.u-tel {
  color: inherit;
  text-decoration: none;
}
.u-tel:hover {
  opacity: 1;
}

/* font */
.u-font18 {
  font-size: 18px;
}

/* line-height */
.u-lineheight-narrow {
  line-height: 1.21;
}

.u-lineheight-2 {
  line-height: 2;
}

.u-radius-none {
  border-radius: 0 !important;
}

/*  */
@media screen and (max-width: 767px) {
  .u-order1-sp {
    order: 1 !important;
  }
}

@media screen and (max-width: 767px) {
  .u-order2-sp {
    order: 2 !important;
  }
}

/* 段落の余白 */
.u-text-p {
  margin-bottom: 1.5em !important;
}
