@charset "UTF-8";
/* --------------------------------------------- */
/* mixin */
/* --------------------------------------------- */
/* 文字色 */
/* 背景色 */
/* ボーダー色 */
/* 見出し色 */
/* ボタン色 */
/* タブ色 */
/* フッター背景色 */
/* --------------------------------------------- */
/* body */
/* --------------------------------------------- */
.body-site {
  overflow: hidden;
  padding-top: 80px;
  color: #222222;
}

@media screen and (max-width: 768px) {
  .body-site {
    padding-top: 70px;
  }
}

a {
  color: #222222;
}

hr {
  margin: 0;
  border-top: 1px solid #cccccc;
}

.entry-meta,
.entry-footer {
  display: none;
}

.fontSRF {
  font-family: "Noto Serif JP", serif;
}

.fontEN {
  font-family: "Kumbh Sans", "Noto Sans JP", sans-serif;
}

.heading01 {
  width: 100%;
  padding: 5px 0;
  font-size: 20px;
  letter-spacing: 0.1em;
  position: relative;
}

@media screen and (max-width: 768px) {
  .heading01 {
    font-size: 18px;
  }
}

.heading01::before {
  content: " ";
  display: inline-block;
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid #2271b1;
}

.heading01::after {
  content: " ";
  display: inline-block;
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #cccccc;
}

.cap01 {
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cap01 {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 20px;
  }
}

.copy01 {
  text-align: center;
  line-height: 2;
}

.bg01 {
  background-color: #2271b1;
  padding: 80px 0;
}

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

.bg02 {
  background-color: #eeeeee;
  padding: 80px 0;
}

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

.bg03 {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.bt01 input {
  width: 20%;
  padding: 10px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  background: #2271b1;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.bt01 input:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .bt01 input {
    width: 50%;
  }
}

/* --------------------------------------------- */
/* search */
/* --------------------------------------------- */
.wp-block-search__input {
  width: 100%;
  font-size: 18px;
  padding: 5px;
  border: 1px solid #cccccc;
  border-radius: 0;
}

.wp-block-search .wp-block-search__button {
  word-break: keep-all;
}

.wp-block-latest-comments__comment {
  padding-top: 5px;
  font-size: 14px;
  line-height: 1.5em;
}

/* --------------------------------------------- */
/* header */
/* --------------------------------------------- */
/* headerとgnaviはheader.css */
/* --------------------------------------------- */
/* main */
/* --------------------------------------------- */
.main-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 80vh;
}

.wrap {
  max-width: 980px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.article-site {
  width: 100%;
}

.article-site.two-column {
  max-width: calc(980px - 220px);
  width: calc(95% - 25%);
  padding: 40px 40px 40px 0;
}

@media screen and (max-width: 1024px) {
  .article-site.two-column {
    max-width: calc(95% - 30%);
  }
}

@media screen and (max-width: 768px) {
  .article-site.two-column {
    max-width: 100%;
    width: 100%;
    margin: 0 0 5%;
    padding: 20px 5% 10%;
    font-size: 15px;
    border-bottom: 1px solid #cccccc;
  }
}

.side-site {
  max-width: 220px;
  width: 25%;
  padding-top: 40px;
}

@media screen and (max-width: 1024px) {
  .side-site {
    max-width: 30%;
  }
}

@media screen and (max-width: 768px) {
  .side-site {
    max-width: 100%;
    width: 90%;
    margin-bottom: 5%;
    padding-top: 0;
  }
}

.side-site .widget {
  margin-bottom: 20px;
}

.side-site .widget h2 {
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #cccccc;
}

.side-site .widget label {
  font-weight: 600;
}

.side-site .widget ul li {
  font-size: 14px;
  padding-top: 5px;
}

.side-site .widget ul li::before {
  content: " ";
  display: inline-block;
  margin: 0 7px 0 0;
  width: 7px;
  height: 7px;
  border: solid #222222;
  border-width: 0 1px 1px 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(-25%) rotate(-45deg);
          transform: translateX(-25%) rotate(-45deg);
}

.side-site .widget .sub-menu li {
  margin-left: 7px;
}

/* --------------------------------------------- */
/* footer */
/* --------------------------------------------- */
.footer-site {
  border-top: 1px solid #2271b1;
  background-color: #2271b1;
}

.footer-site .footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
  background-color: #2271b1;
}

.footer-site .footer-inner .footer-navi nav ul li {
  line-height: 2em;
}

.footer-site .footer-inner .footer-navi nav ul li a {
  color: #ffffff;
}

.footer-site .footer-inner .footer-logo span {
  color: #ffffff;
  font-size: 20px;
}

.footer-site .footer-copy {
  background-color: #2271b1;
}

.footer-site .footer-copy span {
  display: block;
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
  padding: 5px 0;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  background-color: #2271b1;
}

.goto-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 35px;
  height: 35px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  bottom: 50px;
  right: 30px;
  font-size: 24px;
  color: #fff;
  background: #000;
  border-radius: 3px;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.goto-top :hover {
  opacity: 0.8;
  text-decoration: none;
}

/* --------------------------------------------- */
/* archive */
/* --------------------------------------------- */
.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.pager .page-numbers {
  padding: 10px 15px;
  font-size: 14px;
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

@media screen and (max-width: 768px) {
  .pager .page-numbers {
    padding: 5px 10px;
  }
}

.pager .page-numbers:first-child {
  border-radius: 5px 0 0 5px;
}

.pager .page-numbers:last-child {
  border-right: 1px solid #cccccc;
  border-radius: 0 5px 5px 0;
}

.pager .page-numbers:hover {
  text-decoration: none;
}

.pager .page-numbers.current {
  background: #eeeeee;
}

.acv-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 10px 0;
  border-bottom: 1px solid #cccccc;
  position: relative;
}

.acv-list dl dt {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .acv-list dl dt {
    width: 30%;
  }
}

.acv-list dl dd {
  width: 70%;
  padding: 0 10px;
}

.acv-list dl dd .title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .acv-list dl dd .title {
    font-size: 14px;
  }
}

.acv-list dl dd .text {
  font-size: 14px;
}

@media screen and (max-width: 1024px) {
  .acv-list dl dd .text {
    display: none;
  }
}

.acv-list dl dd .more {
  position: absolute;
  bottom: 10px;
  right: 0;
  font-size: 14px;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .acv-list dl dd .more {
    font-size: 12px;
  }
}

.acv-list dl dd .more::before {
  content: " ";
  display: inline-block;
  margin: 0;
  width: 7px;
  height: 7px;
  border: solid #222222;
  border-width: 0 1px 1px 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(-25%) rotate(-45deg);
          transform: translateX(-25%) rotate(-45deg);
}

/* --------------------------------------------- */
/* single / page */
/* --------------------------------------------- */
.page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 140px;
  background: rgba(34, 113, 177, 0.1);
}

@media screen and (max-width: 768px) {
  .page-title {
    height: 100px;
  }
}

.page-title h1,
.page-title span {
  color: #2271b1;
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .page-title h1,
  .page-title span {
    font-size: 24px;
  }
}

.home .page-title {
  display: none;
}

.page-bread {
  border-bottom: 1px solid #cccccc;
}

.page-bread ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
  padding: 5px 0;
}

.page-bread ul li {
  font-size: 12px;
}

.page-bread ul li::after {
  content: " ";
  display: inline-block;
  margin: 0 7px;
  width: 7px;
  height: 7px;
  border: solid #222222;
  border-width: 0 1px 1px 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(-25%) rotate(-45deg);
          transform: translateX(-25%) rotate(-45deg);
}

.page-bread ul li:last-child::after {
  content: none;
}

.page-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-info .page-catbt ul li {
  display: inline-block;
}

.page-info .page-catbt ul li a {
  display: block;
  margin-left: 10px;
  padding: 2px 10px;
  font-size: 12px;
  background: #eeeeee;
  text-decoration: none;
}

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

.page-info .day {
  font-size: 12px;
}

.page-table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #cccccc;
}

.page-table dl dt {
  width: 28%;
}

.page-table dl dt span {
  vertical-align: 10px;
  padding: 5px;
  color: #c00;
  font-size: 11px;
}

.page-table dl dd {
  width: 70%;
  margin: 10px 0;
  padding: 0 20px;
  border-left: 1px solid #cccccc;
}

.page-table dl input,
.page-table dl textarea {
  width: 80%;
  font-size: 18px;
  padding: 5px;
  border: 1px solid #cccccc;
}

@media screen and (max-width: 768px) {
  .page-table dl input,
  .page-table dl textarea {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #contact .page-table dt {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #contact .page-table dd {
    width: 100%;
    padding: 0;
    border: none;
  }
}

/* --------------------------------------------- */
/* top */
/* --------------------------------------------- */
.top-mv {
  position: relative;
  width: 100%;
  height: 50vh;
  background: url("/img/top-mv.jpg") 50% 100% no-repeat;
  background-size: 120%;
}

.top-mv::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .top-mv {
    height: 80vh;
    background-size: cover;
  }
}

.top-mv .logo {
  max-width: 420px;
  margin: 20px;
  z-index: 99;
}

.top-main {
  margin-bottom: 60px;
  background: rgba(34, 113, 177, 0.1);
}

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

.top-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-top: 10px;
  padding: 5px 0;
  border-bottom: 1px solid #cccccc;
}

.top-list dl dt {
  width: 100px;
}

@media screen and (max-width: 768px) {
  .top-list dl dt {
    width: 100%;
    font-size: 12px;
  }
}

.top-list dl dd {
  width: calc(100% - 120px);
}

@media screen and (max-width: 768px) {
  .top-list dl dd {
    width: 100%;
  }
}

.top-list .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: row wrap;
      flex-wrap: row wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  font-size: 14px;
  text-align: right;
}

.top-list .more::before {
  content: " ";
  display: inline-block;
  margin: 0 7px 0 0;
  width: 7px;
  height: 7px;
  border: solid #222222;
  border-width: 0 1px 1px 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateX(-25%) rotate(-45deg);
          transform: translateX(-25%) rotate(-45deg);
}
/*# sourceMappingURL=main.css.map */