@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

html {
  color: #333333;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-aside
----------------------------------- */
.c-aside {
  min-width: 200px;
}
.c-aside .c-ttl01 {
  margin-bottom: 30px;
}
.c-aside .cont-wrap + .cont-wrap {
  margin-top: 80px;
}
.c-aside .tag-list-wrap {
  padding: 30px 24px;
  font-weight: bold;
  background-color: #F2F7FF;
}
.c-aside .tag-list-wrap .ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 4px;
  padding-left: min(24px, 1.25vw);
}
.c-aside .tag-list-wrap .ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: min(16px, 0.8333333333vw);
  height: 2px;
  background-color: #0CC0DF;
}
.c-aside .tag-list-wrap .ttl .txt {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-aside .tag-list-wrap .ttl .is-active {
  color: #3863B8;
}
.c-aside .tag-list-wrap label {
  display: inline-block;
  cursor: pointer;
}
.c-aside .tag-list-wrap input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
}
.c-aside .tag-list-wrap .area + .area {
  margin-top: 20px;
}
.c-aside .tag-list-wrap .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 3px 4px;
}
.c-aside .tag-list-wrap .tag-list span {
  display: inline-block;
  padding: 1px 16px 3px;
  font-size: 12px;
  color: #213260;
  border: solid 1px #3863B8;
  border-radius: 50px;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-aside .tag-list-wrap .tag-list span.is-active {
  color: #fff;
  background-color: #3863B8;
}
.c-aside .banner-wrap {
  max-width: 360px;
  margin-top: 80px;
  border-radius: 5px;
  overflow: hidden;
  border: solid 1px #B8B8B8;
}
.c-aside .banner-wrap img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

/* --------------------------------
c-btn
----------------------------------- */
.c-btn01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 188px;
  height: 54px;
  padding-bottom: 4px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  background-color: #3863B8;
  border-radius: 5px;
}

/* --------------------------------
c-header
----------------------------------- */
.c-header {
  z-index: 10;
  position: fixed;
  width: 100%;
  border-top: solid 4px #3863B8;
  background-color: #fff;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
}
.c-header .inner-block {
  max-width: 1900px;
  height: 132px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header .tel {
  font-family: "Roboto", sans-serif;
  color: #3863B8;
  font-size: 48px;
  line-height: 1;
}
.c-header .detail-area {
  margin-top: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.c-header .detail-area .txt-free {
  display: block;
  padding: 4px 16px;
  color: #fff;
  border-radius: 20px;
  background-color: #50A6E1;
}

/* --------------------------------
c-footer
----------------------------------- */
.c-footer {
  background: #213260;
  position: relative;
  padding: 80px 0;
  color: #fff;
}
.c-footer .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1680px;
}
.c-footer #pagetop {
  z-index: 10;
  right: 60px;
  border-radius: 5px 5px 0 0;
  background-color: #3863B8;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.c-footer #pagetop .pagetop-btn {
  display: inline-block;
  width: 60px;
  height: 60px;
  position: relative;
}
.c-footer #pagetop .pagetop-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url("../img/common/ico-arrow.svg") center/contain no-repeat;
}
.c-footer .external-btn {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  padding-left: 18px;
  width: 240px;
  height: 64px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  border: solid 1px #B8B8B8;
  background-color: #50A6E1;
}
.c-footer .external-btn::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  background: url("../img/common/ico-external.svg") center/contain no-repeat;
}
.c-footer .copyright-area {
  margin-top: 30px;
  text-align: right;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 200%;
}
.c-footer .copyright-area .com {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

/* --------------------------------
c-parts
----------------------------------- */
.c-blog-list > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.c-blog-list .img-wrap {
  position: relative;
  max-width: 240px;
  max-height: 135px;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.c-blog-list .img-wrap > img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.c-blog-list .img-wrap > span {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  padding: 4px 8px;
  color: #213260;
  font-size: 10px;
  line-height: 150%;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 8px 0 0 0;
  background-color: #fff;
}
.c-blog-list .info-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: bold;
  font-size: 12px;
}
.c-blog-list .info-wrap .pref-txt {
  display: inline-block;
  padding: 4px 16px;
  margin-right: 8px;
  color: #213260;
  line-height: 130%;
  letter-spacing: 0.1em;
  border: solid 1px #3863B8;
  border-radius: 50px;
  background-color: #fff;
}
.c-blog-list .info-wrap .date-txt {
  line-height: 100%;
}
.c-blog-list .info-wrap .blog-ttl {
  display: block;
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.c-blog-list .info-wrap .excerpt-txt {
  font-weight: 400;
}
.c-blog-list .info-wrap .blog-ttl, .c-blog-list .info-wrap .excerpt-txt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.c-pagination {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.c-pagination .prev, .c-pagination .next {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  border: solid 1px #3863B8;
  background-color: #3863B8;
}
.c-pagination .prev::after, .c-pagination .next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}
.c-pagination .prev::after {
  background: url("../img/common/ico-prev.svg") center/contain no-repeat;
}
.c-pagination .next::after {
  background: url("../img/common/ico-next.svg") center/contain no-repeat;
}

.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 54px;
  padding-bottom: 4px;
  color: #3863B8;
  font-weight: bold;
  border: solid 1px #3863B8;
  border-radius: 5px;
}
.page-numbers.current {
  color: #fff;
  border: solid 1px #50A6E1;
  background-color: #50A6E1;
}

.dots {
  position: relative;
  display: inline-block;
  width: 15px;
}
.dots::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 3px;
  background: url("../img/common/ico-dots.svg") center/cover no-repeat;
}

/* --------------------------------
c-ttl
----------------------------------- */
.c-ttl01 {
  font-weight: bold;
}
.c-ttl01 .ttl-region {
  position: relative;
  display: block;
  padding-left: 20px;
  color: #3863B8;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.c-ttl01 .ttl-region::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #50A6E1;
  -webkit-clip-path: polygon(50% 0%, 0% 50%, 50% 100%, 100% 50%);
          clip-path: polygon(50% 0%, 0% 50%, 50% 100%, 100% 50%);
}
.c-ttl01 .en {
  position: relative;
  display: block;
  padding-left: 20px;
  font-family: "Roboto", sans-serif;
  color: #3863B8;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.05em;
}
.c-ttl01 .en::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: #50A6E1;
  -webkit-clip-path: polygon(50% 0%, 0% 50%, 50% 100%, 100% 50%);
          clip-path: polygon(50% 0%, 0% 50%, 50% 100%, 100% 50%);
}
.c-ttl01 .ja {
  display: block;
  padding-left: 20px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}

.c-ttl02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 130%;
  font-weight: bold;
}
.c-ttl02::after {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2px;
  background-color: #D9D9D9;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
main {
  padding-top: 136px;
}

.home .mv-section {
  position: relative;
  height: min(671px, 34.9479166667vw);
  background: url("../img/home/img-mv.jpg.webp") center/cover no-repeat;
}
.home .mv-section::before, .home .mv-section::after {
  content: "";
  position: absolute;
  width: min(625px, 32.5520833333vw);
  height: min(225px, 11.71875vw);
}
.home .mv-section::before {
  top: 0;
  left: 0;
  background: url("../img/home/deco-mv.svg") center/contain no-repeat;
}
.home .mv-section::after {
  right: 0;
  bottom: 0;
  background: url("../img/home/deco-mv02.svg") center/contain no-repeat;
}
.home .mv-section .inner-block {
  position: relative;
  max-width: 1740px;
  height: 100%;
}
.home .mv-section .mv-ttl {
  z-index: 5;
  position: absolute;
  left: 0;
  bottom: min(100px, 5.2083333333vw);
  padding-left: 40px;
  color: #213260;
  font-weight: bold;
}
.home .mv-section .mv-ttl .ttl-line01 {
  display: inline-block;
  padding: 8px 20px;
  font-size: min(48px, 2.5vw);
  letter-spacing: 0.1em;
  background-color: #fff;
}
.home .mv-section .mv-ttl .ttl-line02 {
  display: inline-block;
  padding: 8px 20px;
  margin-top: 15px;
  font-size: min(40px, 2.0833333333vw);
  letter-spacing: 0.05em;
  background-color: #fff;
}
.home .mv-section .mv-ttl .ttl-sml {
  font-size: min(40px, 2.0833333333vw);
}
.home .mv-section .mv-ttl .ttl-bl {
  color: #3863B8;
  font-size: min(64px, 3.3333333333vw);
}
.home .pickup-section {
  padding: 100px 0;
  background-color: #F5F5F5;
}
.home .pickup-section .area-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}
.home .pickup-section .area-list .c-ttl02 {
  margin-bottom: 24px;
}
.home .pickup-section .area-list .c-blog-list > li + li {
  margin-top: 24px;
}
.home .pickup-section .area-list .c-blog-list .info-wrap .blog-ttl {
  margin-top: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -webkit-line-clamp: 1;
}
.home .pickup-section .area-list .c-btn01 {
  margin-top: 24px;
  margin-left: auto;
}

.blog-section {
  border-bottom: solid 4px #3863B8;
}
.blog-section .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(80px, 4.1666666667vw);
  padding-top: 80px;
  padding-bottom: 80px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.blog-section .blog-wrap .c-ttl01 {
  margin-bottom: 20px;
}
.blog-section .blog-wrap .c-ttl01 + p {
  display: inline-block;
  width: min(840px, 43.75vw);
}
.blog-section .c-blog-list {
  max-width: 840px;
}
.blog-section .c-blog-list > li:last-child {
  border-bottom: none;
}

/* -----------------------------------------------
* detail Module
* detailページ用
-------------------------------------------------- */
.detail {
  padding-top: 132px;
}
.detail .blog-section {
  border-bottom: none;
}
.detail .inner-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(80px, 4.1666666667vw);
  padding-top: 80px;
  padding-bottom: 80px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.detail .inner-block .entry-wrap {
  width: 100%;
}
.detail .inner-block .entry-wrap article .entry-header {
  margin-bottom: 40px;
}
.detail .inner-block .entry-wrap article .entry-header .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
  font-weight: bold;
}
.detail .inner-block .entry-wrap article .entry-header .top > span {
  display: inline-block;
  padding: 2px 16px 4px;
  font-size: 12px;
  color: #fff;
  border-radius: 50px;
  background-color: #3863B8;
}
.detail .inner-block .entry-wrap article .entry-header .top > p {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.detail .inner-block .entry-wrap article .entry-header .top > p > span {
  font-family: "Roboto", sans-serif;
}
.detail .inner-block .entry-wrap article .entry-header > h1 {
  color: #3863B8;
  font-size: 40px;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 120%;
}
.detail .inner-block .entry-wrap article .entry-header > figure {
  margin-top: 40px;
}
.detail .inner-block .entry-wrap article > p + *,
.detail .inner-block .entry-wrap article > h2 + *,
.detail .inner-block .entry-wrap article > h3 + *,
.detail .inner-block .entry-wrap article > ul + *,
.detail .inner-block .entry-wrap article > ol + *,
.detail .inner-block .entry-wrap article > a + *,
.detail .inner-block .entry-wrap article > div + * {
  margin-top: 40px;
}
.detail .inner-block .entry-wrap article > p {
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0.1em;
}
.detail .inner-block .entry-wrap article > p + p {
  margin-top: 24px;
}
.detail .inner-block .entry-wrap article > p > b {
  color: #3863B8;
}
.detail .inner-block .entry-wrap article > p > a {
  color: #3863B8;
  text-decoration: underline;
}
.detail .inner-block .entry-wrap article .wp-element-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 54px;
  min-width: 156px;
  line-height: 160%;
  font-weight: bold;
  color: #3863B8;
  border: solid 1px #3863B8;
  border-radius: 5px;
  background-color: #F5FBFF;
}
.detail .inner-block .entry-wrap article > h2 {
  font-size: 20px;
  font-weight: bold;
  line-height: 130%;
  letter-spacing: 0.05em;
}
.detail .inner-block .entry-wrap article > h3 {
  padding: 10px 20px;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #fff;
  background-color: #3863B8;
}
.detail .inner-block .entry-wrap article > ul > li {
  position: relative;
  padding-left: 16px;
  line-height: 180%;
  letter-spacing: 0.03em;
}
.detail .inner-block .entry-wrap article > ul > li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 15px;
  background-color: #0CC0DF;
}
.detail .inner-block .entry-wrap article > ol {
  padding-left: 8px;
  list-style-type: decimal;
  line-height: 180%;
  letter-spacing: 0.03em;
}
.detail .inner-block .entry-wrap article > ol > li {
  padding-left: 8px;
}
.detail .inner-block .entry-wrap article > ol > li::marker {
  content: counter(list-item);
  color: #0CC0DF;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}
.detail .inner-block .entry-wrap article .wp-block-table {
  padding-bottom: 8px;
  width: 100%;
  overflow-x: auto;
  margin-bottom: 40px;
  scrollbar-width: thin;
  scrollbar-color: #3863B8 #fff;
}
.detail .inner-block .entry-wrap article .wp-block-table::-webkit-scrollbar {
  height: 4px;
}
.detail .inner-block .entry-wrap article .wp-block-table::-webkit-scrollbar-track {
  background-color: #fff;
}
.detail .inner-block .entry-wrap article .wp-block-table::-webkit-scrollbar-thumb {
  background-color: #3863B8;
  border-radius: 10px;
}
.detail .inner-block .entry-wrap article table {
  text-align: center;
  line-height: 120%;
  table-layout: initial;
}
.detail .inner-block .entry-wrap article table th, .detail .inner-block .entry-wrap article table td {
  padding: 20px;
  border-top: solid 1px #B8B8B8;
  border-left: solid 1px #B8B8B8;
}
.detail .inner-block .entry-wrap article table th {
  white-space: nowrap;
  color: #fff;
  background-color: #3863B8;
}
.detail .inner-block .entry-wrap article table td {
  background-color: #F5FBFF;
  border-color: #B8B8B8;
}
.detail .inner-block .entry-wrap article table thead {
  border-bottom: none;
}
.detail .inner-block .entry-wrap article table th:last-child,
.detail .inner-block .entry-wrap article table td:last-child {
  border-right: solid 1px #B8B8B8;
}
.detail .inner-block .entry-wrap article table tr:last-child {
  border-bottom: solid 1px #B8B8B8;
}
.detail .inner-block .entry-wrap article .img-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.detail .inner-block .entry-wrap article .img-wrap figcaption {
  margin-top: 10px;
  font-size: 14px;
  line-height: 120%;
}
.detail .inner-block .c-pagination .back-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
  padding: 8px 54px;
  color: #3863B8;
  font-weight: bold;
  line-height: 160%;
  border: solid 1px #3863B8;
  border-radius: 5px;
  background-color: #F5FBFF;
}

.p-error .inner-block {
  padding: 100px 0;
}
.p-error .not-found {
  text-align: center;
  font-size: 18px;
}
.p-error .main-txt {
  font-size: 30px;
  font-weight: bold;
  color: #3863B8;
  text-align: center;
}
.p-error .c-btn01 {
  margin: 20px auto 0;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-aside .c-ttl01 {
    position: relative;
    margin-bottom: 10px;
    padding: 0 0 10px;
    border-bottom: solid 2px #3863B8;
  }
  .c-aside .c-ttl01::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    width: 50px;
    height: 50px;
    background: url("../img/common/ico-down.svg") center/contain no-repeat;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  }
  .c-aside .c-ttl01.active::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
  .c-aside .cont-wrap + .cont-wrap {
    margin-top: 30px;
  }
  .c-aside .tag-list-wrap {
    display: none;
    padding: 20px 15px;
  }
  .c-aside .tag-list-wrap .ttl {
    padding-left: 15px;
  }
  .c-aside .tag-list-wrap .ttl::before {
    width: 10px;
  }
  .c-aside .tag-list-wrap .area + .area {
    margin-top: 10px;
  }
  .c-aside .banner-wrap {
    margin: 40px auto 0 auto;
  }
  .c-btn01 {
    width: 100%;
    height: 40px;
    max-width: 150px;
  }
  .c-header {
    font-size: 10px;
  }
  .c-header .inner-block {
    height: 80px;
    padding: 0 10px;
  }
  .c-header .logo {
    width: 80px;
    height: auto;
  }
  .c-header .tel {
    font-size: 28px;
  }
  .c-header .detail-area {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2px;
    margin-top: 2px;
  }
  .c-header .detail-area .txt-free {
    white-space: nowrap;
    padding: 2px 4px;
  }
  .c-footer {
    padding: 40px 0;
  }
  .c-footer .inner-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 24px;
  }
  .c-footer #pagetop {
    right: 10px;
  }
  .c-footer #pagetop .pagetop-btn {
    width: 30px;
    height: 30px;
  }
  .c-footer #pagetop .pagetop-btn::after {
    width: 18px;
    height: 18px;
  }
  .c-footer .logo {
    width: 100px;
    height: auto;
  }
  .c-footer .external-btn {
    margin-right: auto;
    width: 200px;
    height: 50px;
    font-size: 12px;
  }
  .c-footer .external-btn::after {
    width: 18px;
    height: 18px;
  }
  .c-footer .copyright-area {
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
    line-height: 160%;
  }
  .c-blog-list > li > a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .c-blog-list .img-wrap {
    max-width: 384px;
    max-height: 216px;
  }
  .c-blog-list .info-wrap {
    max-width: 384px;
  }
  .c-blog-list .info-wrap .pref-txt {
    margin-right: 2px;
    padding: 2px 6px;
  }
  .c-blog-list .info-wrap .date-txt {
    font-size: 10px;
  }
  .c-blog-list .info-wrap .blog-ttl {
    margin-bottom: 8px;
    font-size: 14px;
  }
  .c-pagination {
    margin-top: 24px;
    gap: 10px;
  }
  .c-pagination .prev, .c-pagination .next {
    width: 30px;
    height: 30px;
  }
  .c-pagination .prev::after, .c-pagination .next::after {
    width: 18px;
    height: 18px;
  }
  .page-numbers {
    width: 30px;
    height: 34px;
    padding-bottom: 1px;
  }
  .c-ttl01 .ttl-region {
    font-size: 28px;
  }
  .c-ttl01 .en {
    font-size: 28px;
  }
  .c-ttl02 {
    gap: 5px;
    font-size: 14px;
  }
  main {
    padding-top: 84px;
  }
  .home .mv-section {
    height: min(700px, 91.1458333333vw);
  }
  .home .mv-section::before, .home .mv-section::after {
    width: min(400px, 52.0833333333vw);
    height: min(145px, 18.8802083333vw);
  }
  .home .mv-section .mv-ttl {
    padding-left: min(20px, 2.6041666667vw);
    bottom: min(20px, 2.6041666667vw);
  }
  .home .mv-section .mv-ttl .ttl-line01 {
    padding: 4px 10px;
    font-size: 24px;
    letter-spacing: 0.05em;
  }
  .home .mv-section .mv-ttl .ttl-line02 {
    margin-top: 10px;
    padding: 4px 10px;
    font-size: 18px;
  }
  .home .mv-section .mv-ttl .ttl-sml {
    font-size: 20px;
  }
  .home .mv-section .mv-ttl .ttl-bl {
    font-size: 28px;
  }
  .home .pickup-section {
    padding: 40px 0 60px;
  }
  .home .pickup-section .area-list {
    margin-top: 20px;
    gap: min(80px, 10.4166666667vw) min(40px, 5.2083333333vw);
  }
  .home .pickup-section .area-list .c-ttl02 {
    margin-bottom: 10px;
  }
  .home .pickup-section .area-list .c-blog-list > li + li {
    margin-top: 15px;
  }
  .home .pickup-section .area-list .c-blog-list .info-wrap .blog-ttl {
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .home .pickup-section .area-list .c-btn01 {
    margin-top: 10px;
    margin-right: auto;
  }
  .blog-section .inner-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 40px;
  }
  .blog-section .c-blog-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(40px, 5.2083333333vw) min(20px, 2.6041666667vw);
  }
  .detail {
    padding-top: 80px;
  }
  .detail .inner-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 40px;
  }
  .detail .inner-block .entry-wrap article .entry-header {
    margin-bottom: 20px;
  }
  .detail .inner-block .entry-wrap article .entry-header > h1 {
    font-size: 24px;
  }
  .detail .inner-block .entry-wrap article .entry-header > figure {
    margin-top: 20px;
  }
  .detail .inner-block .entry-wrap article > p + *,
  .detail .inner-block .entry-wrap article > h2 + *,
  .detail .inner-block .entry-wrap article > h3 + *,
  .detail .inner-block .entry-wrap article > ul + *,
  .detail .inner-block .entry-wrap article > ol + *,
  .detail .inner-block .entry-wrap article > a + *,
  .detail .inner-block .entry-wrap article > div + * {
    margin-top: 20px;
  }
  .detail .inner-block .entry-wrap article > p {
    line-height: 150%;
  }
  .detail .inner-block .entry-wrap article > p + p {
    margin-top: 10px;
  }
  .detail .inner-block .entry-wrap article .wp-element-button {
    padding: 5px 15px;
  }
  .detail .inner-block .entry-wrap article > ul > li {
    padding-left: 12px;
  }
  .detail .inner-block .entry-wrap article > ol > li {
    padding-left: 4px;
  }
  .detail .inner-block .entry-wrap article table th, .detail .inner-block .entry-wrap article table td {
    padding: 10px;
  }
  .detail .inner-block .entry-wrap article .img-wrap {
    gap: 5px;
  }
  .detail .inner-block .entry-wrap article .img-wrap figcaption {
    margin-top: 4px;
    font-size: 12px;
  }
  .detail .inner-block .c-pagination .back-btn {
    padding: 4px 25px;
    height: 50px;
  }
  .p-error .inner-block {
    padding: 50px 0;
  }
  .p-error .not-found {
    font-size: 16px;
  }
  .p-error .main-txt {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1360px;
  }
  a,
  a::before,
  a::after,
  button,
  button::before,
  button::after {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .sp {
    display: none !important;
  }
  .c-aside {
    max-width: 360px;
  }
  .blog-section .blog-wrap {
    min-width: 450px;
  }
  .blog-section .c-blog-list > li {
    border-bottom: solid 1px #B8B8B8;
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
  }
  .blog-section .c-blog-list > li > a {
    padding: 32px;
  }
  .blog-section .c-blog-list > li.newest > a {
    display: block;
  }
  .blog-section .c-blog-list > li.newest .img-wrap {
    width: 100%;
    max-width: none;
    max-height: 440px;
  }
  .blog-section .c-blog-list > li.newest .info-wrap {
    margin-top: 24px;
  }
  .blog-section .c-blog-list > li.newest .info-wrap .blog-ttl {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 16px;
    margin-bottom: 0;
  }
  .detail .inner-block .entry-wrap {
    max-width: 840px;
    min-width: 450px;
  }
  .detail .inner-block .entry-wrap article table th, .detail .inner-block .entry-wrap article table td {
    min-width: 165px;
  }
}
@media (any-hover: hover) {
  .c-aside .tag-list-wrap .ttl:hover .txt {
    color: #3863B8;
  }
  .c-aside .tag-list-wrap .tag-list span:hover {
    color: #fff;
    background-color: #3863B8;
  }
  .c-aside .banner-wrap:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .c-btn01:hover {
    background-color: #50A6E1;
  }
  .c-footer #pagetop:hover {
    background-color: #50A6E1;
  }
  .c-footer .external-btn:hover {
    color: #50A6E1;
    background-color: #fff;
  }
  .c-footer .external-btn:hover::after {
    background: url("../img/common/ico-external-bl.svg") center/contain no-repeat;
  }
  .c-pagination .prev:hover, .c-pagination .next:hover {
    background-color: #fff;
  }
  .c-pagination .prev:hover::after {
    background: url("../img/common/ico-prev-bl.svg") center/contain no-repeat;
  }
  .c-pagination .next:hover::after {
    background: url("../img/common/ico-next-bl.svg") center/contain no-repeat;
  }
  .page-numbers:hover {
    color: #fff;
    border: solid 1px #50A6E1;
    background-color: #50A6E1;
  }
  .home .pickup-section .area-list .c-blog-list > li:hover .img-wrap > img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .home .pickup-section .area-list .c-blog-list > li:hover .info-wrap .blog-ttl {
    color: #3863B8;
  }
  .blog-section .c-blog-list > li:hover {
    background-color: #F5F5F5;
  }
  .blog-section .c-blog-list > li:hover .img-wrap > img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .detail .inner-block .entry-wrap article .entry-header .top > span:hover {
    color: #fff;
    background-color: #3863B8;
  }
  .detail .inner-block .entry-wrap article > p > a:hover {
    color: #0CC0DF;
  }
  .detail .inner-block .entry-wrap article .wp-element-button:hover {
    color: #fff;
    border: solid 1px #50A6E1;
    background-color: #50A6E1;
  }
  .detail .inner-block .c-pagination .back-btn:hover {
    color: #fff;
    border: solid 1px #50A6E1;
    background-color: #50A6E1;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .c-btn01 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1045px) {
  .home .pickup-section .area-list .c-blog-list > li > a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */