@charset "UTF-8";
/* フォント読み込み */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* カラー */
/* b-radi */
/* 画面幅 */
/* breakpoint */
/* html body etc */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", Meiryo, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  color: #1e1611;
}
@media (max-width: 950px) {
  body {
    padding-top: 61px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
body figure {
  margin: 0;
  padding: 0;
}
body a {
  color: #088fc4;
  text-decoration: none;
  opacity: 1;
  transition: opacity ease 0.3s;
}
body a:hover {
  transition: opacity ease 0.3s;
  opacity: 0.6;
}
body img {
  max-width: 100%;
  vertical-align: bottom;
}
body h1, body h2, body h3 {
  margin: 0;
  padding: 0;
}
body p {
  margin: 0;
  margin-bottom: 1em;
}
body ul {
  margin: 0;
  margin-bottom: 1em;
  padding: 0;
  list-style: none;
}
body ol {
  margin: 0;
  padding: 1em;
}

/* abs */
.abs__wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 40px;
}
@media (max-width: 950px) {
  .abs__wrap {
    padding: 0 10px;
  }
}

/* header */
header {
  height: 70px;
  background-color: #fff;
}
@media (max-width: 950px) {
  header {
    border-bottom: 6px solid #1e1611;
    position: fixed;
    width: 100%;
    height: 56px;
    top: 0;
    z-index: 30;
  }
}
header .header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 950px) {
  header .header__wrap {
    display: block;
    position: relative;
  }
}
header .header__logo {
  color: #1e1611;
  line-height: 1.3;
  padding-top: 7px;
}
@media (max-width: 950px) {
  header .header__logo {
    padding-top: 0px;
  }
}
header .header__logo__sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}
@media (max-width: 950px) {
  header .header__logo__sub {
    font-size: 1rem;
  }
}
header .header__logo__main {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
}
@media (max-width: 950px) {
  header .header__logo__main {
    font-size: 2.4rem;
  }
}
header .header__logo a {
  display: inline-block;
  color: #1e1611;
}
@media (max-width: 950px) {
  header .header__logo {
    position: absolute;
    margin-top: 0;
    left: 8px;
    top: 7px;
  }
}
header .header__tel {
  background-color: #dfe3e5;
  border-radius: 4px;
  padding: 12px 16px 12px 12px;
  margin-top: 13px;
  line-height: 1;
}
@media (max-width: 950px) {
  header .header__tel {
    position: absolute;
    margin-top: 0;
    right: 80px;
    top: 12px;
    padding: 8px 12px 8px 8px;
  }
}
@media (max-width: 950px) {
  header .header__tel .icon::before {
    width: 20px;
    height: 20px;
  }
}
header .header__tel a {
  color: #1e1611;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 950px) {
  header .header__tel a {
    font-size: 16px;
  }
}

@media print, screen and (min-width: 951px) {
  .header__hmb {
    display: none;
  }
}
@media (max-width: 950px) {
  .header__hmb {
    display: block;
    background-color: #1e1611;
    height: 40px;
    width: 40px;
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 2px;
  }
}
@media (max-width: 950px) {
  .header__hmb__bar {
    display: block;
    border-top: 2px solid #fff;
    position: absolute;
    height: 24px;
    width: 24px;
    right: 8px;
    top: 11px;
  }
  .header__hmb__bar::before, .header__hmb__bar::after {
    content: "";
    position: absolute;
    display: block;
    height: 2px;
    width: 24px;
    background-color: #fff;
    right: 0px;
  }
  .header__hmb__bar::before {
    top: 6px;
  }
  .header__hmb__bar::after {
    top: 14px;
  }
}

/* g-nav */
.g-nav {
  height: 70px;
  border-bottom: 10px solid #1e1611;
  background-color: #dfe3e5;
}
@media (max-width: 950px) {
  .g-nav {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 61px;
    background-color: rgba(48, 50, 51, 0.8);
    z-index: 30;
  }
}
.g-nav .abs__wrap {
  height: 100%;
  position: relative;
}
@media (max-width: 950px) {
  .g-nav .abs__wrap {
    background-color: #dfe3e5;
    width: 280px;
    height: calc(100% - 62px);
    right: 0;
    top: 0;
    position: absolute;
    padding: 20px 20px 62px 20px;
    overflow-y: scroll;
  }
}
.g-nav .abs__wrap > nav {
  height: 100%;
}
@media (max-width: 950px) {
  .g-nav .abs__wrap > nav {
    height: auto;
  }
}
.g-nav__list {
  list-style: none;
  padding: 0;
  display: flex;
  height: 100%;
}
@media (max-width: 950px) {
  .g-nav__list {
    display: block;
    height: auto;
  }
}
.g-nav__list__item {
  width: calc((100% - 100px) / 6);
  position: relative;
  transition: background ease 0.3s;
}
@media (max-width: 950px) {
  .g-nav__list__item {
    width: 100%;
    border-bottom: 1px solid #acb7b9;
  }
}
.g-nav__list__item::before {
  content: "";
  height: calc(100% - 22px);
  width: 2px;
  position: absolute;
  background-color: #fff;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  left: auto;
}
@media (max-width: 950px) {
  .g-nav__list__item::before {
    display: none;
  }
}
.g-nav__list__item:hover {
  background-color: #f0f1f2;
  transition: background ease 0.3s;
}
@media print, screen and (min-width: 951px) {
  .g-nav__list__item:hover a {
    color: #088fc4;
  }
}
.g-nav__list__item a {
  color: #1e1611;
  font-weight: 700;
  text-align: center;
  width: 100%;
  display: block;
  height: 100%;
  box-sizing: border-box;
  padding-top: 20px;
}
.g-nav__list__item a:hover {
  cursor: pointer;
  opacity: 1;
}
@media (max-width: 950px) {
  .g-nav__list__item a {
    text-align: left;
    padding: 15px 10px 15px 25px;
    position: relative;
  }
  .g-nav__list__item a::after {
    content: "";
    position: absolute;
    top: 25px;
    left: 7px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #4c5354;
    border-top: 1px solid #4c5354;
    transform: rotate(45deg);
  }
}
.g-nav .g-nav__list__item-home {
  width: 100px;
}
@media (max-width: 950px) {
  .g-nav .g-nav__list__item-home {
    width: 100%;
  }
}
@media print, screen and (min-width: 951px) {
  .g-nav .g-nav__list__item-home:hover a::before {
    background-image: url(../img/icon/home-ac.png);
  }
}
.g-nav .g-nav__list__item-home::after {
  content: "";
  height: calc(100% - 20px);
  width: 2px;
  position: absolute;
  background-color: #fff;
  top: 0;
  bottom: 0;
  margin: auto;
  right: auto;
  left: 0;
}
@media (max-width: 950px) {
  .g-nav .g-nav__list__item-home::after {
    display: none;
  }
}
.g-nav .g-nav__list__item-home a {
  font-size: 1.4rem;
  padding-top: 35px;
  position: relative;
}
@media (max-width: 950px) {
  .g-nav .g-nav__list__item-home a {
    padding-top: 15px;
    padding-left: 32px;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .g-nav .g-nav__list__item-home a {
    font-size: 1.4rem;
  }
}
.g-nav .g-nav__list__item-home a::before {
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  right: 0;
  margin: auto;
  height: 24px;
  width: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url(../img/icon/home.png);
}
@media (max-width: 950px) {
  .g-nav .g-nav__list__item-home a::before {
    left: 3px;
    right: auto;
    top: 17px;
  }
}
@media (max-width: 767px) {
  .g-nav .g-nav__list__item-home a::before {
    top: 15px;
  }
}
@media (max-width: 950px) {
  .g-nav .g-nav__list__item-home a::after {
    display: none;
  }
}

@media (max-width: 950px) {
  .g-nav__list__item.active {
    background-color: #f0f1f2;
  }
}
.g-nav__list__item.active > a {
  color: #088fc4;
  position: relative;
}
.g-nav__list__item.active > a::before {
  position: absolute;
  content: "";
  border-top: 2px solid #088fc4;
  border-right: 2px solid #088fc4;
  transform: rotate(135deg);
  height: 10px;
  width: 10px;
  bottom: 8px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}
@media (max-width: 950px) {
  .g-nav__list__item.active > a::before {
    border: none;
    background-color: #088fc4;
    height: 4px;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: rotate(0deg);
  }
}
.g-nav__list__item.active > a::after {
  border-top: 1px solid #088fc4;
  border-right: 1px solid #088fc4;
  transform: rotate(135deg);
  left: 9px;
  top: 22px;
}

.g-nav__hmb__body {
  display: none;
  position: absolute;
  z-index: 20;
  background-color: #dfe3e5;
  width: calc(100% - 80px);
  left: 40px;
  top: 70px;
  padding: 10px 20px 1px 20px;
  box-sizing: border-box;
}

.g-nav__hmb__body.active {
  display: block;
}

.g-nav-c {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
@media (max-width: 950px) {
  .g-nav-c {
    display: none;
    padding-left: 1em;
  }
}
.g-nav-c__item {
  width: 25%;
  text-align: center;
  list-style: none;
  box-sizing: border-box;
  padding: 0.75em 0;
  border-right: 1px solid #acb7b9;
  margin-bottom: 10px;
}
@media (max-width: 950px) {
  .g-nav-c__item {
    width: 100%;
    border-right: none;
    padding: 0;
    margin-bottom: 0;
    border-bottom: 1px solid #acb7b9;
  }
  .g-nav-c__item:last-of-type {
    border-bottom: none;
  }
}
.g-nav-c__item:nth-of-type(4n) {
  border-right: none;
}
.g-nav-c__item:hover {
  background-color: #f0f1f2;
}
.g-nav-c__item:hover a {
  opacity: 1;
}
@media print, screen and (min-width: 951px) {
  .g-nav-c__item:hover a {
    color: #088fc4;
  }
}
.g-nav-c__item a {
  color: #1e1611;
  font-weight: 700;
  display: inline-block;
  width: 100%;
  height: 100%;
}

@media print, screen and (min-width: 951px) {
  .g-nav__sp {
    display: none !important;
  }
}
@media (max-width: 950px) {
  .g-nav__hmb__body,
  .g-nav__pc {
    display: none !important;
  }
}
/* gl-open */
@media (max-width: 950px) {
  .body__gl-open .g-nav {
    display: block;
  }
}
.body__gl-open .header__hmb__bar {
  border: none;
}
.body__gl-open .header__hmb__bar::before {
  transform: rotate(45deg);
  top: 8px;
  transition: all ease 0.15s;
}
.body__gl-open .header__hmb__bar::after {
  transform: rotate(-45deg);
  top: 8px;
  transition: all ease 0.15s;
}

/* main-v */
.main-v {
  overflow: hidden;
  background-color: #303233;
}
.main-v__swiper {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.main-v__swiper .swiper-button-prev:after, .main-v__swiper .swiper-rtl .swiper-button-next:after,
.main-v__swiper .swiper-button-next:after, .main-v__swiper .swiper-rtl .swiper-button-prev:after {
  color: #088fc4;
  --swiper-navigation-size: 34px;
}
.main-v__swiper .swiper-pagination-bullet-active {
  background-color: #088fc4;
}
@media (max-width: 950px) {
  .main-v .swiper-button-next,
  .main-v .swiper-button-prev {
    display: none;
  }
}

/* cnt */
.cnt {
  padding: 30px 0;
}
@media (max-width: 950px) {
  .cnt {
    padding: 40px 0;
  }
}
.cnt iframe {
  max-width: 100%;
}
.cnt p {
  margin: 0;
  margin-bottom: 1em;
}
.cnt__item {
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 0;
  box-sizing: border-box;
}
@media (max-width: 950px) {
  .cnt__item {
    padding: 0;
  }
}
.cnt__item h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.4;
  border-bottom: 3px solid #dfe3e5;
  padding: 0.15em 0.25em 0.5em 0;
  position: relative;
  margin-bottom: 1em;
  margin-top: 2em;
}
.cnt__item h2:first-of-type {
  margin-top: 0;
}
@media (max-width: 950px) {
  .cnt__item h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #dfe3e5;
  }
}
.cnt__item h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 4px;
  width: 8em;
  background-color: #303233;
  display: block;
}
@media (max-width: 950px) {
  .cnt__item h2::before {
    height: 3px;
    width: 8em;
  }
}
.cnt__item h2.h-num {
  position: relative;
  padding-left: 1.8em;
}
@media (max-width: 950px) {
  .cnt__item h2.h-num {
    padding-left: 2em;
  }
}
.cnt__item h2.h-num .num {
  position: absolute;
  left: 0;
  top: 0.2em;
  font-size: 2.2rem;
  background-color: #088fc4;
  color: #fff;
  text-align: center;
  width: 1.8em;
  padding: 0.15em 0 0.3em;
  border-radius: 2em;
  line-height: 1.3;
}
@media (max-width: 950px) {
  .cnt__item h2.h-num .num {
    width: 1.85em;
    top: 0.1em;
    font-size: 1.6rem;
  }
}
.cnt__item h3 {
  margin: 0;
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: 2rem;
  font-weight: 700;
  border-left: 6px solid #1e1611;
  border-bottom: 3px solid #dfe3e5;
  padding: 0.15em 0.25em 0.25em 0.5em;
  line-height: 1.333;
}
@media (max-width: 950px) {
  .cnt__item h3 {
    font-size: 1.6rem;
    padding: 0.15em 0.25em 0.4em 0.5em;
    border-left: 4px solid #1e1611;
    border-bottom: 2px solid #dfe3e5;
  }
}
.cnt__item h4 {
  color: #303233;
  margin: 0;
  margin-bottom: 0.5em;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 1em;
  position: relative;
}
.cnt__item h4::before {
  content: "";
  display: block;
  height: 0.5em;
  width: 0.5em;
  background-color: #303233;
  position: absolute;
  top: 0.7em;
  left: 0.2em;
}
@media (max-width: 950px) {
  .cnt__item h4::before {
    left: 0.1em;
  }
}
@media (max-width: 950px) {
  .cnt__item h4 {
    font-size: 1.4rem;
  }
}
.cnt__item ul > li {
  padding-left: 1em;
  position: relative;
  margin-bottom: 0.5em;
}
.cnt__item ul > li::before {
  content: "";
  display: block;
  height: 6px;
  width: 6px;
  background-color: #303233;
  position: absolute;
  top: 0.7em;
  left: 1px;
}
@media (max-width: 950px) {
  .cnt__item ul > li::before {
    top: 0.7em;
  }
}
.cnt__item ul.list-kome > li {
  text-indent: -1em;
  margin-bottom: 0;
}
.cnt__item ul.list-kome > li::before {
  display: none;
}
.cnt__item ul.list-num-block {
  margin-bottom: 2em;
  margin-top: 1em;
}
.cnt__item ul.list-num-block > li {
  background-color: #f0f1f2;
  border: 1px solid #acb7b9;
  position: relative;
  padding-left: 0;
  margin-bottom: 15px;
}
.cnt__item ul.list-num-block > li::before {
  display: none;
}
.cnt__item ul.list-num-block > li .ln-ttl {
  background-color: #dfe3e5;
  padding: 0.25em 0.25em 0.5em 3em;
}
@media (max-width: 950px) {
  .cnt__item ul.list-num-block > li .ln-ttl {
    padding: 0.25em 0.25em 0.5em 40px;
  }
}
.cnt__item ul.list-num-block > li .ln-num {
  position: absolute;
  left: 0.8em;
  top: 0.35em;
  display: inline-block;
  width: 1.8em;
  color: #fff;
  background-color: #303233;
  text-align: center;
  font-weight: 500;
  font-size: 1.6rem;
  padding: 0.2em 0 0.3em;
  border-radius: 3em;
  line-height: 1.3;
}
@media (max-width: 950px) {
  .cnt__item ul.list-num-block > li .ln-num {
    font-size: 1.4rem;
    padding: 0.15em 0 0.3em;
  }
}
.cnt__item ul.list-num-block > li .ln-body {
  padding: 1em 1em 0 1em;
}
.cnt__item ul.list-flow > li {
  padding-left: 2.5em;
  margin-bottom: 1em;
}
.cnt__item ul.list-flow > li::before {
  background-color: #acb7b9;
  top: 1.4em;
  height: 100%;
  width: 4px;
  left: 0.9em;
}
.cnt__item ul.list-flow > li .list-flow__num {
  position: absolute;
  background-color: #088fc4;
  color: #fff;
  font-weight: 500;
  padding: 0.1em 0 0.15em;
  left: 0;
  top: -0.1em;
  width: 2em;
  text-align: center;
  border-radius: 2em;
}
.cnt__item ul.list-flow > li:last-of-type::before {
  display: none;
}
.cnt__item table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #acb7b9;
  margin: 0 0 20px 0;
}
.cnt__item table thead {
  border-bottom: 2px solid #4c5354;
}
.cnt__item table th, .cnt__item table td {
  padding: 0.5em 1em;
  border-bottom: 1px solid #acb7b9;
  border-right: 1px solid #acb7b9;
  border-left: 1px solid #acb7b9;
  vertical-align: top;
}
.cnt__item table th {
  text-align: left;
  background-color: #f0f1f2;
}
.cnt__item table.table-fee th, .cnt__item table.table-fee td {
  vertical-align: middle;
}
@media (max-width: 950px) {
  .cnt__item .table-scroll {
    overflow-x: scroll;
  }
}
.cnt__item .table-scroll table {
  min-width: 540px;
}
.cnt__item .table-scroll table.table-fee {
  min-width: 680px;
}
.cnt__item .box-exp {
  background-color: #d5e2ea;
  padding: 1.25em 1.5em;
  border-radius: 4px;
  margin: 20px 0;
}
@media (max-width: 950px) {
  .cnt__item .box-exp {
    padding: 0.25em 0.75em;
  }
}
.cnt__item .box-exp h2, .cnt__item .box-exp h3 {
  border-bottom-color: #fff;
}
.cnt__item .box-exp h2:first-of-type, .cnt__item .box-exp h3:first-of-type {
  margin-top: 10px;
}
.cnt__item .box-exp table {
  background-color: #fff;
}
.cnt__item .box-photo {
  background-color: #f0f1f2;
  display: flex;
  flex-wrap: wrap;
  border-radius: 4px;
  padding: 10px 0;
}
.cnt__item .box-photo__item {
  box-sizing: border-box;
  width: 50%;
  padding: 10px 20px;
}
@media (max-width: 950px) {
  .cnt__item .box-photo__item {
    padding: 10px 5px;
  }
}
.cnt__item .box-photo__ttl {
  background-color: #fff;
  font-weight: 700;
  padding: 10px;
}
@media (max-width: 950px) {
  .cnt__item .box-photo__ttl {
    padding: 5px 10px;
  }
}
.cnt__item .box-photo__cap {
  padding: 0 10px 10px 10px;
  background-color: #fff;
}
.cnt__item .box-faq {
  border-top: 1px solid #acb7b9;
}
@media (max-width: 950px) {
  .cnt__item .box-faq {
    border-top: 1px solid #acb7b9;
  }
}
.cnt__item .box-faq__row {
  border-bottom: 1px solid #acb7b9;
}
@media (max-width: 950px) {
  .cnt__item .box-faq__row {
    border-bottom: 1px solid #acb7b9;
  }
}
.cnt__item .box-faq__q__txt, .cnt__item .box-faq__a__txt {
  position: relative;
  padding: 20px 10px 20px 56px;
}
@media (max-width: 950px) {
  .cnt__item .box-faq__q__txt, .cnt__item .box-faq__a__txt {
    padding: 10px 5px 10px 36px;
  }
}
.cnt__item .box-faq__q__txt::before, .cnt__item .box-faq__a__txt::before {
  left: 17px;
  top: 10px;
  font-weight: 700;
  font-size: 2.4rem;
  position: absolute;
}
@media (max-width: 950px) {
  .cnt__item .box-faq__q__txt::before, .cnt__item .box-faq__a__txt::before {
    left: 10px;
    top: 4px;
    font-size: 1.8rem;
  }
}
.cnt__item .box-faq__q {
  background-color: #d5e2ea;
  position: relative;
  padding-right: 30px;
}
.cnt__item .box-faq__q::before, .cnt__item .box-faq__q::after {
  content: "";
  position: absolute;
  background-color: #43749b;
}
.cnt__item .box-faq__q::before {
  height: 3px;
  width: 20px;
  right: 10px;
  top: 28px;
}
@media (max-width: 950px) {
  .cnt__item .box-faq__q::before {
    height: 2px;
    width: 12px;
    right: 10px;
    top: 20px;
  }
}
.cnt__item .box-faq__q::after {
  height: 20px;
  width: 3px;
  right: 18px;
  top: 20px;
  opacity: 1;
  transition: all ease 0.3s;
}
@media (max-width: 950px) {
  .cnt__item .box-faq__q::after {
    height: 12px;
    width: 2px;
    right: 15px;
    top: 15px;
  }
}
.cnt__item .box-faq__q:hover {
  cursor: pointer;
}
.cnt__item .box-faq__q__txt {
  font-weight: 700;
}
.cnt__item .box-faq__q__txt::before {
  content: "Q";
  color: #43749b;
}
.cnt__item .box-faq__q__txt p:last-of-type {
  margin-bottom: 0;
}
.cnt__item .box-faq__a {
  display: none;
}
.cnt__item .box-faq__a__txt::before {
  content: "A";
  color: #088fc4;
}
.cnt__item .box-faq__a__txt h3 {
  margin-top: 1em;
}
.cnt__item .box-faq__a__txt h3:first-of-type {
  margin-top: 0;
}
.cnt__item .box-faq .box-faq__q.active::after {
  opacity: 0;
  transition: all ease 0.3s;
}
.cnt__item a[target=_blank] {
  position: relative;
}
.cnt__item a[target=_blank]::after {
  content: "";
  position: relative;
  display: inline-block;
  height: 1.4em;
  width: 1.4em;
  top: 0.3em;
  margin-left: 0.2em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/icon/ext-link.png);
}
.cnt__item a[href$=".pdf"]::after {
  background-image: url(../img/icon/pdf-link.png);
}
.cnt__item a[href$=".docx"]::after,
.cnt__item a[href$=".doc"]::after,
.cnt__item a[href$=".rtf"]::after {
  background-image: url(../img/icon/word-link.png);
}

/* cnt__post */
.cnt__post ul li::before {
  top: 0.7em;
}
.cnt__post a {
  display: inline-block;
}
.cnt__post .wp-block-file * + .wp-block-file__button::before {
  display: none;
}
.cnt__post figure {
  margin-bottom: 1em;
}
.cnt__post img {
  max-width: 100%;
}
.cnt__post p {
  clear: both;
}
.cnt__post .alignleft {
  float: left;
}
.cnt__post .alignright {
  float: right;
}
.cnt__post .aligncenter {
  margin: 0 auto;
}
.cnt__post__rel {
  text-align: right;
  margin-bottom: 2em;
}
.cnt__post__rel .rel-date {
  font-weight: 500;
  margin-left: 1em;
}
.cnt__post__footer {
  text-align: center;
  margin: 60px 0 40px;
}
@media (max-width: 950px) {
  .cnt__post__footer {
    margin: 60px 0 20px;
  }
}

/* cnt__top */
.cnt__top {
  padding: 60px 0;
}
@media (max-width: 950px) {
  .cnt__top {
    padding: 40px 0;
  }
}
.cnt__top .abs__wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 950px) {
  .cnt__top .abs__wrap {
    display: block;
  }
}
.cnt__top__info {
  width: 62%;
}
@media (max-width: 950px) {
  .cnt__top__info {
    width: 100%;
  }
}
.cnt__top__info h2 {
  margin: 0;
  margin-bottom: 1em;
  font-size: 2rem;
  font-weight: 700;
  border-left: 6px solid #1e1611;
  border-bottom: 3px solid #dfe3e5;
  padding: 0.15em 0.25em 0.25em 0.5em;
  line-height: 1.333;
}
@media (max-width: 950px) {
  .cnt__top__info h2 {
    font-size: 1.6rem;
    padding: 0.15em 0.25em 0.4em 0.5em;
    border-left: 6px solid #1e1611;
    border-bottom: 2px solid #dfe3e5;
  }
}
.cnt__top__guide {
  width: calc(38% - 60px);
}
@media (max-width: 950px) {
  .cnt__top__guide {
    width: 100%;
    margin-top: 40px;
  }
}

.top-guide__bnr .border {
  border: 1px solid #303233;
  border-radius: 6px;
}
.top-guide__bnr a {
  display: block;
  margin-top: 15px;
}
@media (max-width: 950px) {
  .top-guide__bnr a {
    max-width: 360px;
    margin: 15px auto;
  }
}
.top-guide__bnr img {
  border-radius: 6px;
}

/* cnt__with-nav */
.cnt__with-nav .abs__wrap {
  display: flex;
}
@media (max-width: 950px) {
  .cnt__with-nav .abs__wrap {
    display: block;
  }
}
.cnt__with-nav__cnt {
  width: calc(100% - 300px);
}
@media (max-width: 950px) {
  .cnt__with-nav__cnt {
    width: 100%;
  }
}
.cnt__with-nav__nav {
  width: 300px;
  box-sizing: border-box;
  padding-right: 40px;
}
@media (max-width: 950px) {
  .cnt__with-nav__nav {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
}
.cnt__with-nav__nav ul.pagenav {
  background-color: #dfe3e5;
  padding: 10px;
}
.cnt__with-nav__nav ul.pagenav > li {
  margin: 0;
  background-color: #f0f1f2;
  border-bottom: 1px solid #acb7b9;
  padding-left: 0;
}
.cnt__with-nav__nav ul.pagenav > li::before {
  display: none;
}
.cnt__with-nav__nav ul.pagenav > li a {
  color: #1e1611;
  font-weight: 500;
  padding: 1em 1em 1em 2.25em;
  display: block;
  position: relative;
}
.cnt__with-nav__nav ul.pagenav > li a:hover {
  color: #088fc4;
  opacity: 1;
}
.cnt__with-nav__nav ul.pagenav > li a:hover::before {
  border-top-color: #088fc4;
  border-right-color: #088fc4;
}
.cnt__with-nav__nav ul.pagenav > li a::before {
  content: "";
  position: absolute;
  top: 1.7em;
  left: 1em;
  width: 6px;
  height: 6px;
  border-right: 1px solid #4c5354;
  border-top: 1px solid #4c5354;
  transform: rotate(45deg);
}
.cnt__with-nav__nav ul.pagenav > li.active {
  background-color: #4c5354;
}
.cnt__with-nav__nav ul.pagenav > li.active a {
  color: #fff;
}
.cnt__with-nav__nav ul.pagenav > li.active a::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

/* info-list */
.cnt ul.info-list {
  margin-top: 30px;
}
@media (max-width: 950px) {
  .cnt ul.info-list {
    margin-top: 0;
  }
}
.cnt ul.info-list .info-list__row {
  display: flex;
  margin: 0;
}
@media (max-width: 950px) {
  .cnt ul.info-list .info-list__row {
    display: block;
  }
}
.cnt ul.info-list .info-list__date {
  width: 10em;
  color: #4c5354;
  text-align: right;
  box-sizing: border-box;
}
@media (max-width: 950px) {
  .cnt ul.info-list .info-list__date {
    display: inline-block;
    width: auto;
    text-align: left;
  }
}
.cnt ul.info-list .info-list__cat {
  width: 10em;
  padding-left: 2em;
  box-sizing: border-box;
}
@media (max-width: 950px) {
  .cnt ul.info-list .info-list__cat {
    display: inline-block;
    width: auto;
    padding-left: 1em;
  }
}
.cnt ul.info-list .info-list__cat .icon-cat {
  width: 100%;
  padding: 0.15em 0.75em;
}
@media (max-width: 950px) {
  .cnt ul.info-list .info-list__cat .icon-cat {
    padding: 0.15em 1em;
  }
}
.cnt ul.info-list .info-list__ttl {
  color: #1e1611;
  font-weight: 500;
  width: calc(100% - 20em);
  padding: 0 1em 1em 2em;
  margin: 0;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 950px) {
  .cnt ul.info-list .info-list__ttl {
    width: 100%;
    margin-top: 0.5em;
    padding: 0 1em 1em 0;
    display: block;
  }
}
.cnt ul.info-list a .info-list__ttl {
  color: #007194;
  padding-right: 2.25em;
}
@media (max-width: 950px) {
  .cnt ul.info-list a .info-list__ttl {
    padding-right: 2em;
  }
}
.cnt ul.info-list a .info-list__ttl::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #007194;
  border-right: 1px solid #007194;
  transform: rotate(45deg);
  position: absolute;
  top: 11px;
  right: 14px;
  transition: all ease 0.1s;
}
@media (max-width: 950px) {
  .cnt ul.info-list a .info-list__ttl::before {
    top: 6px;
    right: 8px;
  }
}
.cnt ul.info-list > li {
  border-bottom: 2px solid #dfe3e5;
  padding: 0;
  margin-bottom: 1em;
}
.cnt ul.info-list > li::before {
  display: none;
}
.cnt .cnt__top__info ul.info-list .info-list__ttl {
  width: calc(100% - 10em);
}
@media (max-width: 950px) {
  .cnt .cnt__top__info ul.info-list .info-list__ttl {
    width: 100%;
  }
}

/* cnt__construction */
.cnt__construction > article {
  border: 4px solid #dfe3e5;
  padding: 20px 30px 10px 30px;
  box-sizing: border-box;
  margin-bottom: 40px;
}
@media (max-width: 950px) {
  .cnt__construction > article {
    padding: 15px 10px 5px 10px;
    margin-bottom: 30px;
  }
}
.cnt__construction > article:last-of-type {
  margin-bottom: 0;
}
.cnt__construction .cnt__post__rel {
  margin-bottom: 1em;
}

.constr-gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2em;
}
.constr-gallery figure {
  width: calc(33% - 1em);
  margin-right: 1em;
  margin-bottom: 2em;
}
@media (max-width: 950px) {
  .constr-gallery figure {
    width: calc(50% - 1em);
  }
}
.constr-gallery figure img, .constr-gallery figure a {
  width: 100%;
}
.constr-gallery figure:nth-of-type(3n) {
  margin-right: 0;
}
@media (max-width: 950px) {
  .constr-gallery figure:nth-of-type(3n) {
    margin-right: 1em;
  }
}
@media (max-width: 950px) {
  .constr-gallery figure:nth-of-type(2n) {
    margin-right: 0;
  }
}
.constr-gallery figure figucaption {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (max-width: 950px) {
  .constr-gallery figure figucaption {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.lightbox {
  padding-top: 120px;
}
@media (max-width: 950px) {
  .lightbox {
    padding-top: 160px;
  }
}

body .lb-data .lb-close {
  background-size: contain;
  width: 20px;
  height: 20px;
}

body .lb-nav a.lb-next,
body .lb-nav a.lb-prev {
  background-size: 40px;
}
@media (max-width: 950px) {
  body .lb-nav a.lb-next,
  body .lb-nav a.lb-prev {
    background-size: 32px;
  }
}

/* footer */
footer {
  background-color: #dfe3e5;
  padding: 30px 0 10px;
}
footer p {
  margin-bottom: 0.25em;
}

@media (max-width: 950px) {
  .footer__info {
    padding-right: 60px;
  }
}
.footer__info__tel {
  margin: 20px 0;
}
.footer__logo {
  color: #1e1611;
  line-height: 1.3;
  padding-top: 7px;
  margin-bottom: 15px;
}
@media (max-width: 950px) {
  .footer__logo {
    padding-top: 0px;
  }
}
.footer__logo__sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}
.footer__logo__main {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
}
@media (max-width: 950px) {
  .footer__logo__main {
    font-size: 2.4rem;
  }
}
.footer__logo a {
  display: inline-block;
  color: #1e1611;
}
.footer__c {
  text-align: right;
}
.footer__c .copyright {
  font-size: 1.4rem;
  color: #4c5354;
}
.footer__map {
  /*background-color: set.$c__sub-gr2;*/
  background-color: #dfe3e5;
  padding-top: 30px;
}
.footer__map h2 {
  margin: 0;
  font-size: 2.4rem;
  border-bottom: 3px solid #fff;
  padding: 0.15em 0.25em 0.25em 0;
  position: relative;
  margin-bottom: 0.75em;
}
@media (max-width: 950px) {
  .footer__map h2 {
    font-size: 2rem;
    border-bottom: 2px solid #fff;
  }
}
.footer__map h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 4px;
  width: 8em;
  background-color: #303233;
  display: block;
}
@media (max-width: 950px) {
  .footer__map h2::before {
    height: 3px;
    width: 8em;
  }
}
.footer__map iframe {
  margin-top: 20px;
  height: 400px;
  width: 100%;
  vertical-align: bottom;
}
.footer__bnr {
  padding: 30px 0 10px;
  background-color: #82a6c4;
}
@media (max-width: 950px) {
  .footer__bnr {
    padding: 15px 0 5px;
  }
}
.footer__bnr .abs__wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  justify-content: center;
}
@media (max-width: 950px) {
  .footer__bnr .abs__wrap {
    max-width: 520px;
  }
}
.footer__bnr__item {
  width: calc(20% - 40px);
  box-sizing: border-box;
  margin-bottom: 20px;
  margin-right: 80px;
}
.footer__bnr__item:nth-of-type(4n) {
  margin-right: 0;
}
@media (max-width: 950px) {
  .footer__bnr__item {
    width: calc(50% - 20px);
    margin-right: 20px;
  }
  .footer__bnr__item:nth-of-type(4n) {
    margin-right: 20px;
  }
  .footer__bnr__item:nth-of-type(2n) {
    margin-right: 0;
  }
}
.footer__bnr__item img {
  width: 100%;
  display: block;
}

/* icon */
.icon {
  position: relative;
  padding-left: 27px;
}
@media (max-width: 950px) {
  .icon {
    padding-left: 23px;
  }
}
.icon::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 3px;
  left: 0;
}
@media (max-width: 950px) {
  .icon::before {
    top: 2px;
  }
}
.icon-tel::before {
  background-image: url(../img/icon/tel.png);
}
.icon-cat {
  background-color: #4c5354;
  color: #fff;
  padding: 0.15em 1.5em;
  border-radius: 16px;
  font-size: 1.4rem;
  width: auto;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
}
@media (max-width: 950px) {
  .icon-cat {
    font-size: 1.2rem;
  }
}

/* page-main */
.page-main {
  box-sizing: border-box;
  height: 160px;
  background-color: #43749b;
  padding-top: 1px;
}
@media (max-width: 950px) {
  .page-main {
    height: auto;
    padding-bottom: 30px;
  }
}
.page-main h1 {
  color: #fff;
  font-size: 3.2rem;
  margin-top: 20px;
}
@media (max-width: 950px) {
  .page-main h1 {
    margin-top: 20px;
    font-size: 2.4rem;
  }
}
.page-main h1 .ttl__sub-info {
  margin-left: 0.75em;
}
@media (max-width: 950px) {
  .page-main h1 .ttl__sub-info {
    margin-left: 0;
    display: block;
  }
}

/* bc-list */
.bc-list {
  color: #dfe3e5;
  padding-top: 5px;
}
@media (max-width: 950px) {
  .bc-list {
    display: none;
  }
}
.bc-list ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.3rem;
}
.bc-list ul > li {
  padding-left: 1.5em;
  position: relative;
}
.bc-list ul > li::before {
  content: "";
  height: 1px;
  width: 6px;
  background-color: #dfe3e5;
  position: absolute;
  top: 0.75em;
  left: 0.5em;
}
.bc-list ul > li:first-of-type {
  padding-left: 0;
}
.bc-list ul > li:first-of-type::before {
  display: none;
}
.bc-list a {
  color: #dfe3e5;
}

/* guide-box */
.guide-box {
  border: 2px solid #4c5354;
  padding: 5px 10px 10px 10px;
  border-radius: 6px;
  position: relative;
}
.guide-box h2.guide-box__ttl {
  font-size: 1.8rem;
  text-align: center;
  padding: 0.25em 0 0.75em 0;
  margin-bottom: 1em;
  border: none;
  border-bottom: 1px solid #4c5354;
}
.guide-box th {
  text-align: right;
}

/* link */
.link-arr {
  display: inline-block;
  position: relative;
  padding-right: 0.5em;
}
.link-arr::after {
  content: "";
  display: inline-block;
  right: 0;
  top: 0.15em;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  position: absolute;
  border-right: 1px solid #007194;
  border-top: 1px solid #007194;
  transform: rotate(45deg);
}
.link-h {
  position: relative;
  padding-right: 5.25em !important;
}
.link-h__btn {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  background-color: #303233;
  color: #fff;
  font-weight: 500;
  border-radius: 2px;
  padding: 0.25em 1.75em 0.25em 0.75em;
}
@media (max-width: 950px) {
  .link-h__btn {
    font-size: 1.3rem;
    top: 2px;
  }
}
.link-h__btn::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 9px;
  right: 10px;
}
@media (max-width: 950px) {
  .link-h__btn::before {
    top: 8px;
  }
}
.link-tel {
  position: relative;
  display: inline-block;
}
.link-tel::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 1.25em;
  height: 1.25em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0.25em;
  left: 0;
  background-image: url(../img/icon/tel-link.png);
}
.link-btn {
  background-color: #088fc4;
  color: #fff;
  display: inline-block;
  padding: 1em 1.5em;
  border-radius: 4px;
}

.cnt__item a.link-btn::after {
  background-image: url(../img/icon/ext-wh.png);
}

/* btn */
.btn-back {
  display: inline-block;
  position: relative;
  background-color: #303233;
  color: #fff;
  text-align: center;
  font-weight: 500;
  border-radius: 2px;
  padding: 0.8em 2em 1em 3em;
}
@media (max-width: 950px) {
  .btn-back {
    font-size: 1.3rem;
    top: 3px;
  }
}
.btn-back::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(225deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 20px;
}
.btn-back:hover {
  cursor: pointer;
}

.pagination {
  margin: 40px 0;
  text-align: center;
}
.pagination .page-numbers {
  padding: 0.5em 1em;
  border-radius: 2px;
  font-size: 1.4rem;
  margin: 0 0.25em;
}
@media (max-width: 950px) {
  .pagination .page-numbers {
    padding: 0.5em 0.75em;
  }
}
.pagination span.page-numbers {
  border: 1px solid #1e1611;
  color: #1e1611;
}
.pagination a.page-numbers {
  border: 1px solid #303233;
  background-color: #303233;
  color: #fff;
}
.pagination span.page-numbers.dots {
  border: none;
}

#pagetop {
  display: none;
  position: fixed;
  width: 100%;
  max-width: 1120px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0 auto;
}
#pagetop > a {
  opacity: 0.9;
  border-radius: 2px;
  position: absolute;
  display: block;
  height: 56px;
  width: 56px;
  right: 0;
  bottom: 50px;
  background-color: #303233;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../img/icon/pagetop.png);
}
@media (max-width: 950px) {
  #pagetop > a {
    background-size: 20px;
    height: 40px;
    width: 40px;
    bottom: 55px;
    right: 10px;
  }
}
#pagetop > a:hover {
  opacity: 1;
}

@media print, screen and (min-width: 951px) {
  .br-pc {
    display: block;
  }
}
@media (max-width: 950px) {
  .br-pc {
    display: none;
  }
}
@media print, screen and (min-width: 951px) {
  .br-tab {
    display: none;
  }
}
@media (max-width: 950px) {
  .br-tab {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

.nowrap {
  white-space: nowrap;
}

@media print, screen and (min-width: 951px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.txt-r {
  text-align: right;
}
.txt-l {
  text-align: left;
}
.txt-c {
  text-align: center;
}

.cnt__item table .txt-c {
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

.vert-top {
  vertical-align: top;
}

.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-700 {
  font-weight: 700;
}

.w-m100 {
  max-width: 100px;
}
.w-m200 {
  max-width: 200px;
}
.w-m300 {
  max-width: 300px;
}
.w-m400 {
  max-width: 400px;
}
.w-m500 {
  max-width: 500px;
}
.w-m600 {
  max-width: 600px;
}
.w-m700 {
  max-width: 700px;
}
.w-m800 {
  max-width: 800px;
}
.w-p10 {
  width: 10%;
}
.w-p20 {
  width: 20%;
}
.w-p30 {
  width: 30%;
}
.w-p40 {
  width: 40%;
}
.w-p50 {
  width: 50%;
}
.w-p60 {
  width: 60%;
}
.w-p70 {
  width: 70%;
}
.w-p80 {
  width: 80%;
}
.w-p90 {
  width: 90%;
}
.w-p100 {
  width: 100%;
}

.mt-em1 {
  margin-top: 1em;
}
.mt-em2 {
  margin-top: 2em;
}
.mt-em3 {
  margin-top: 3em;
}
.mt-em4 {
  margin-top: 4em;
}
.mt-em5 {
  margin-top: 5em;
}
.mt-em6 {
  margin-top: 6em;
}/*# sourceMappingURL=style.css.map */