@charset "UTF-8";
/* ***************************************************
 PC / SP共通
*************************************************** */
/* ////////////////// タグ初期値 ////////////////// */
html,
body {
  height: 100%;
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: #4E4E4E;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.5em;
}

a {
  color: #4E4E4E;
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 2em;
}

ul,
dl {
  padding: 0;
}

li, dt, dd {
  margin: 0px;
  padding: 0px;
}

table,
th,
td {
  border-collapse: collapse;
  border: 1px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -moz-box-sizing: content-box;
  height: 0;
}

/* テーブル */
table {
  width: 100%;
  margin: 0 auto 1.5em;
  min-height: 0.1%;
  overflow: auto;
}

td,
th {
  padding: 1em;
  border: 1px solid #CCCCCC;
}

th {
  white-space: nowrap;
  background-color: #F5F8F9;
  font-weight: bold;
}

/* ////////////////// フォーム ////////////////// */
form {
  margin: 0px auto;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  border: none;
  background-color: #fff;
  width: 100%;
  padding: 0.4rem;
  border-radius: 2px;
}
input[type=text].short,
input[type=email].short,
input[type=tel].short,
textarea.short {
  width: 35%;
  margin-right: 3%;
}

/* ボタン */
button,
input[type=button],
input[type=submit] {
  text-transform: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  position: relative;
  display: inline-block;
  padding: 1em 7em;
  font-size: 16px;
  font-weight: bold;
  background-color: #6AABA6;
  -webkit-box-shadow: 5px 5px 0 #107971;
          box-shadow: 5px 5px 0 #107971;
  color: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  letter-spacing: 2px;
}
button:disabled,
input[type=button]:disabled,
input[type=submit]:disabled {
  background-color: #CCC;
  -webkit-box-shadow: 5px 5px 0 #AAA;
          box-shadow: 5px 5px 0 #AAA;
}
button:not(:disabled):hover,
input[type=button]:not(:disabled):hover,
input[type=submit]:not(:disabled):hover {
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  -webkit-box-shadow: 0 0 0 #107971;
          box-shadow: 0 0 0 #107971;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 15px 0 0;
  padding: 0 0 0 25px;
  position: relative;
}
input[type=checkbox] + span::before {
  background: #fff;
  border: 1px solid #707070;
  border-radius: 2px;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
input[type=checkbox] + span::after {
  border-bottom: 3px solid #000;
  border-left: 3px solid #000;
  content: "";
  display: block;
  height: 10px;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 18px;
}
input[type=checkbox]:checked + span::after {
  opacity: 1;
}

/* セレクトボックス */
.select {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.select.block {
  display: block;
  margin-bottom: 0.5em;
}
.select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  min-width: 200px;
  padding: 0.75em 50px 0.75em 0.4em;
  width: 100%;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 2px;
  font-size: 15px;
}
.select select::-ms-expand {
  display: none;
}
.select select option:not(:last-child) {
  border-bottom: 1px dashed #ccc;
}
.select::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 100%;
  content: "";
  background-color: #004170;
  border-radius: 0 2px 2px 0;
  z-index: 10;
}
.select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  display: inline-block;
  margin-top: -6px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
  z-index: 20;
}

/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width:1099px) {
  .pc {
    display: none !important;
  }
  html,
  body {
    width: 100%;
  }
  #header {
    position: relative;
  }
  #header p {
    margin: 0;
  }
  #header a {
    display: block;
  }
  #header .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 60px;
    margin: 0 auto;
    padding-left: 4vw;
  }
  #header .logo {
    width: 140px;
  }
  #header .header-right {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 60px 4vw;
    background-color: #F5F8F9;
  }
  #header .header-nav {
    list-style: none;
    margin: 0;
    font-weight: bold;
  }
  #header .header-nav li {
    margin-bottom: 1.75em;
  }
  #header .header-nav li a {
    padding: 0 1em;
    color: #004170;
    text-align: center;
  }
  .pankz {
    display: none;
  }
  #hamburger {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 60px;
    height: 60px;
  }
  #hamburger div {
    width: 100%;
    height: 100%;
    background-color: #fff;
    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;
  }
  #hamburger i {
    display: inline-block;
    width: 60%;
    height: 2px;
    border-radius: 2px;
    background-color: #004170;
  }
  #hamburger i:before, #hamburger i:after {
    content: "";
    height: 2px;
    border-radius: 3px;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #004170;
  }
  #hamburger i:before {
    -webkit-transform: translate(0px, -7px);
            transform: translate(0px, -7px);
  }
  #hamburger i:after {
    -webkit-transform: translate(0px, 5px);
            transform: translate(0px, 5px);
  }
  #hamburger.active i {
    height: 0;
  }
  #hamburger.active i:before {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
  }
  #hamburger.active i:after {
    -webkit-transform: rotate(45deg) translate(-1px, -2px);
            transform: rotate(45deg) translate(-1px, -2px);
  }
  .banner-list {
    width: 100%;
    margin: 50px auto 20px;
  }
  .banner-list ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
  .banner-list ul li {
    margin: 0 10px 20px;
    font-size: 14px;
  }
  .banner-list ul li a {
    display: block;
    width: 280px;
    text-align: center;
  }
  .banner-list ul li a img {
    display: block;
    margin-bottom: 5px;
  }
  #footer {
    background-color: #F5F8F9;
    margin-top: 70px;
    padding: 40px 4vw 0;
  }
  #footer .footer-contact {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 20px 4vw 30px;
    font-weight: 500;
    background-color: #FFF1DB;
    border: 1px solid #FFB444;
  }
  #footer .footer-contact h2 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 25px;
    padding: 10px 20px;
    font-size: clamp(16px, 4.2vw, 22px);
    font-weight: 500;
    background-color: #FB6E2F;
    color: #fff;
  }
  #footer .footer-contact strong {
    font-weight: 500;
    color: #FB6E2F;
  }
  #footer .footer-contact ul {
    list-style: none;
    margin: 0 auto 30px;
    padding: 0;
    font-size: clamp(14px, 3.7vw, 16px);
  }
  #footer .footer-contact ul li {
    position: relative;
    padding: 0 0 0 25px;
  }
  #footer .footer-contact ul li:not(:last-child) {
    margin-bottom: 1em;
  }
  #footer .footer-contact ul li::before {
    content: "";
    position: absolute;
    top: 0.25em;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #FFB444;
    border-radius: 50%;
  }
  #footer .footer-contact .tel {
    margin: 0;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: 34px;
    font-weight: bold;
    text-align: center;
  }
  #footer .footer-contact .tel a {
    display: inline-block;
  }
  #footer .footer-contact .tel a::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-image: url(../images/common/ico-tel.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  #footer .footer-inner {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 10px;
    text-align: center;
  }
  #footer .footer-inner .logo {
    margin: 0 auto;
    text-align: center;
  }
  #footer .footer-inner .logo .img {
    display: inline-block;
    width: 266px;
    margin-bottom: 10px;
    padding: 8px;
    background-color: #fff;
    border-radius: 4px;
  }
  #footer .footer-inner .logo h2 {
    font-size: 12px;
    font-weight: normal;
  }
  #footer .footer-right {
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
  }
  #footer .footer-right ul {
    list-style: none;
    margin: 0;
  }
  #footer .footer-right ul li {
    padding: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid #707070;
  }
  #footer .footer-right ul li a {
    display: block;
    padding: 5px;
    color: #4E4E4E;
  }
  #footer .copyright {
    margin: 0;
    padding: 0.75em;
    text-align: center;
    font-size: 14px;
  }
  .table {
    width: 100%;
    padding-bottom: 15px;
    overflow-x: auto;
  }
  .table table {
    white-space: nowrap;
  }
  .wysiwyg {
    line-height: 1.75em;
    margin-bottom: 40px;
  }
  .wysiwyg span {
    line-height: 1.5em;
  }
  .wysiwyg h2 {
    margin: 0 auto 30px;
    padding: 0.75em 1em;
    font-size: clamp(18px, 4.8vw, 20px);
    font-weight: bold;
    line-height: 1.75em;
    border-left: 15px solid #FB6E2F;
    background-color: #FFB444;
    color: #fff;
  }
  .wysiwyg h3 {
    font-size: clamp(16px, 4.2vw, 18px);
    font-weight: bold;
    background-color: #FFF1DB;
    color: #FB6E2F;
    margin: 0 auto 30px;
    padding: 0.75em 20px;
    line-height: 1.5em;
    border-left: 15px solid #FB6E2F;
  }
  .wysiwyg h4 {
    font-size: clamp(16px, 4.2vw, 18px);
    font-weight: bold;
    color: #FB6E2F;
    border-bottom: 2px solid #FB6E2F;
    padding: 0.5em;
    margin-bottom: 1em;
  }
  .wysiwyg p {
    margin-bottom: 2em;
  }
  .wysiwyg a {
    color: #004170;
    text-decoration: underline;
  }
  .wysiwyg ol,
  .wysiwyg ul {
    margin: 1.5em 0;
    padding-left: 1.5em;
  }
  .wysiwyg ol li,
  .wysiwyg ul li {
    margin-bottom: 0.5em;
  }
  .wysiwyg ol li ol,
  .wysiwyg ol li ul,
  .wysiwyg ul li ol,
  .wysiwyg ul li ul {
    margin: 1em;
    padding-left: 1.5em;
  }
  .wysiwyg table ol,
  .wysiwyg table ul {
    margin: 0;
  }
  .wysiwyg figure {
    background-color: #F8FAFB;
    height: 100%;
  }
  .wysiwyg figure figcaption {
    text-align: left;
    padding: 1.5em 0.75em;
    font-size: 13px;
    line-height: 1.5em;
  }
  .wysiwyg .col2,
  .wysiwyg .col2-rev {
    margin: 2em auto;
  }
  .wysiwyg .col2 .img,
  .wysiwyg .col2-rev .img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
  }
  .wysiwyg .col2 .text p:last-child,
  .wysiwyg .col2-rev .text p:last-child {
    margin-bottom: 0;
  }
  .wysiwyg .col2 div:first-child,
  .wysiwyg .col2-rev div:first-child {
    margin-bottom: 1em;
  }
  .wysiwyg .gallery1 {
    text-align: center;
  }
  .wysiwyg .gallery1 img {
    width: 100%;
  }
  .wysiwyg .gallery2,
  .wysiwyg .gallery3,
  .wysiwyg .gallery4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  .wysiwyg .gallery2 img,
  .wysiwyg .gallery3 img,
  .wysiwyg .gallery4 img {
    width: 100%;
  }
  .wysiwyg .gallery2 li {
    width: 49%;
  }
  .wysiwyg .gallery3::after {
    content: "";
    display: block;
    width: 49%;
  }
  .wysiwyg .gallery3 li {
    width: 49%;
  }
  .wysiwyg .box {
    background-color: #FFF3F5;
    padding: 1em;
    margin-bottom: 1.5em;
  }
  .wysiwyg .box p:last-child {
    margin-bottom: 0;
  }
  /* ////////////////// 共通 ////////////////// */
  .red {
    color: #f00;
  }
  .orange {
    color: #FB6E2F;
  }
  .nowrap {
    white-space: nowrap;
  }
  .header-article {
    margin-bottom: 65px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .header-article .title {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    aspect-ratio: 2/1;
    max-height: 240px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-weight: bold;
    color: #fff;
  }
  .header-article .title::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
  }
  .header-article .page-title {
    font-size: clamp(22px, 5.8vw, 32px);
  }
  .header-article .page-subtitle {
    font-size: 18px;
    margin: 10px 0 0;
  }
  .header-article .pankz {
    padding: 8px 0;
    background-color: #F5F8F9;
    font-size: 12px;
  }
  .header-article .pankz ol {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 1100px;
    margin: 0 auto;
    padding: 0;
  }
  .header-article .pankz ol li {
    color: #707070;
  }
  .header-article .pankz ol li:not(:last-child)::after {
    content: "＞";
    margin: 0 0.5em;
  }
  .header-article .pankz ol li a,
  .header-article .pankz ol li .current {
    display: inline;
    color: #707070;
  }
  .container-narrow {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
  }
  .container-default {
    width: 1260px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
  }
  .container-default.service-result-before {
    padding: 0 0 70px;
  }
  .container-default.service-result-after {
    padding: 90px 0 30px;
  }
  .container-wide {
    width: 1260px;
    margin: 0 auto;
  }
  .btn-more {
    text-align: center;
  }
  .btn-more a {
    position: relative;
    display: inline-block;
    padding: 1em 6em;
    font-size: 15px;
    font-weight: bold;
    background-color: #4E4E4E;
    border: 1px solid #4E4E4E;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .btn-more a:hover {
    background-color: #fff;
    color: #4E4E4E;
  }
  /* ////////////////// トップページ ////////////////// */
  .front-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1200px;
    max-width: 100%;
    height: 400px;
    margin: 0 auto 40px;
    background-image: url(../images/front/kv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .front-header h1 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 30px 4vw 30px 6vw;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: clamp(18px, 4.8vw, 22px);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.65);
    background-color: rgba(0, 0, 0, 0.45);
    color: #fff;
  }
  .front-news {
    width: 980px;
    max-width: 92vw;
    margin: 0 auto 60px;
    padding: 20px 4vw 20px;
    border: 1px solid #707070;
  }
  .front-news .front-news-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #707070;
    text-align: center;
  }
  .front-news .front-news-title h2 {
    margin-bottom: 20px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: clamp(24px, 6.4vw, 30px);
  }
  .front-news .front-news-title p {
    margin: 0;
    font-size: clamp(12px, 3.2vw, 16px);
  }
  .front-news dl {
    margin: 0 0 30px;
  }
  .front-news dl > div {
    padding: 15px 4vw;
    border-bottom: 1px solid #CCCCCC;
  }
  .front-news dl dt {
    font-size: clamp(12px, 3.2vw, 14px);
    margin-bottom: 1em;
  }
  .front-news dl dt span {
    margin-right: 16px;
    font-size: 14px;
  }
  .front-news dl dt b {
    display: inline-block;
    min-width: 70px;
    padding: 5px 10px;
    font-weight: normal;
    text-align: center;
  }
  .front-news dl dt b.info {
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FB6E2F;
  }
  .front-news dl dt b.case {
    background-color: #F5F8F9;
    color: #004170;
    border: 1px solid #004170;
  }
  .front-news dl dt b.other {
    background-color: #F8FAFB;
    color: #707070;
    border: 1px solid #707070;
  }
  .front-news dl dt b.active {
    background-color: #FB6E2F;
    color: #fff;
    border: 1px solid #FB6E2F;
  }
  .front-news dl dd {
    font-size: clamp(14px, 3.7vw, 16px);
    line-height: 1.75em;
  }
  .front-news dl dd a:hover {
    opacity: 0.8;
  }
  .front-section-title {
    margin-bottom: 60px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: clamp(22px, 5.8vw, 28px);
    text-align: center;
  }
  .front-service {
    margin-bottom: 60px;
    background-color: #F5F8F9;
  }
  .front-service .inner {
    margin: 0 auto;
    padding: 60px 4vw;
  }
  .front-service .inner .col2:not(:last-child) {
    margin-bottom: 60px;
  }
  .front-service .inner .col2 .img {
    margin-bottom: 20px;
    text-align: center;
  }
  .front-service .inner .col2 .img img {
    width: 400px;
  }
  .front-service .inner .col2 .text {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
    font-size: clamp(14px, 3.7vw, 1rem);
  }
  .front-service .inner .col2 .text h2 {
    margin-bottom: 20px;
    font-size: clamp(18px, 4.8vw, 22px);
    text-align: center;
  }
  .front-service .inner .col2 .text h2 small {
    display: block;
    font-size: clamp(12px, 3.2vw, 14px);
    font-weight: normal;
  }
  .front-service .inner .col2 .text .btn-more {
    text-align: center;
  }
  .front-detail {
    width: 1260px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4vw;
  }
  .front-detail .col2 .left {
    margin-bottom: 60px;
  }
  .front-detail .col2 .left .point:not(:last-child) {
    margin-bottom: 50px;
  }
  .front-detail .col2 .left h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: clamp(20px, 5.3vw, 24px);
    color: #FB6E2F;
    border-bottom: 1px solid #707070;
  }
  .front-detail .col2 .left dl {
    margin: 0 0 30px;
  }
  .front-detail .col2 .left dl > div {
    padding-bottom: 1.25em;
  }
  .front-detail .col2 .left dl dt {
    margin-bottom: 10px;
    font-weight: 500;
  }
  .front-detail .col2 .left dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 15px;
  }
  .front-detail .col2 .left ul {
    list-style: none;
    font-weight: 500;
  }
  .front-detail .col2 .left ul li {
    margin-bottom: 1em;
  }
  .front-detail .col2 .note h4 {
    margin-bottom: 0.75em;
    padding: 0 0 0 24px;
    font-size: clamp(18px, 4.8vw, 20px);
    color: #FB6E2F;
    background-image: url(../images/common/ico-point.svg);
    background-repeat: no-repeat;
    background-size: 18px auto;
    background-position: left 0.45em;
  }
  .front-detail .col2 .note .text {
    padding: 20px 24px;
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FFB444;
  }
  .front-detail .col2 .note .text p:last-child {
    margin-bottom: 0;
  }
  .front-detail .col2 .right {
    text-align: center;
  }
  .front-detail .col2 .right h3 {
    margin-bottom: 1em;
    font-size: 18px;
  }
  .front-detail .col2 .right .summary {
    padding: 0.75em 0;
    font-weight: bold;
    background-color: #FB6E2F;
    color: #fff;
    text-align: center;
  }
  .front-detail .col2 .right table {
    margin: 0 auto 50px;
    font-size: 14px;
  }
  .front-detail .col2 .right .graph {
    margin: 0 auto 30px;
    padding: 30px;
    text-align: center;
    border: 1px solid #707070;
  }
  /* ////////////////// 固定資産税 適正化 ////////////////// */
  .service-data {
    margin-bottom: 60px;
  }
  .service-data .col3-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 10px;
    margin-bottom: 30px;
  }
  .service-data .col3-data > div {
    padding: 20px 15px;
    text-align: center;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
  }
  .service-data .col3-data > div h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .service-data .col3-data > div p {
    margin-bottom: 0;
    font-size: 13px;
    text-align: left;
    line-height: 2em;
  }
  .service-data .col3-data > div p.num {
    margin-bottom: 0;
    padding-left: 34px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    color: #FB6E2F;
    text-align: center;
    line-height: 90px;
  }
  .service-data .col3-data > div p.num strong {
    font-size: 90px;
  }
  .service-data .col3-data > div p.num b {
    font-size: 24px;
  }
  .service-data .col3-data > div p.memo {
    text-align: right;
  }
  .service-subject {
    margin-bottom: 60px;
  }
  .col3-subject {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px 10px;
    margin-bottom: 40px;
  }
  .col3-subject > div {
    position: relative;
    padding: 35px 15px 20px;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
  }
  .col3-subject > div .name {
    position: absolute;
    top: -20px;
    left: 50%;
    display: inline-block;
    min-width: 190px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0.5em 2em;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FFB444;
    border-radius: 10px;
  }
  .col3-subject > div img {
    margin-bottom: 15px;
  }
  .col3-subject > div p {
    margin: 0;
    font-size: 14px;
    line-height: 2em;
  }
  .service-comparison .col2 {
    margin-bottom: 30px;
  }
  .service-comparison .col2 .text table td {
    text-align: center;
  }
  .service-comparison .col2 .text .red {
    font-size: 14px;
  }
  .service-comparison .col2 .img {
    max-width: 300px;
    padding: 0 4vw;
    border: 1px solid #CCCCCC;
  }
  .service-comparison .col2 .img img {
    border: none;
  }
  .faq-wrapper .faq:not(:last-child) {
    margin-bottom: 50px;
  }
  .faq-wrapper .faq .question,
  .faq-wrapper .faq .answer {
    position: relative;
    padding-left: 60px;
  }
  .faq-wrapper .faq .question::before,
  .faq-wrapper .faq .answer::before {
    position: absolute;
    left: 20px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
  }
  .faq-wrapper .faq .question {
    margin-bottom: 20px;
    font-size: clamp(16px, 4.2vw, 18px);
    color: #FB6E2F;
  }
  .faq-wrapper .faq .question::before {
    content: "Q.";
    top: 0;
    font-size: 24px;
    font-weight: bold;
    color: #FB6E2F;
  }
  .faq-wrapper .faq .answer {
    padding: 20px 4vw 20px 60px;
    font-size: clamp(14px, 3.7vw, 16px);
    line-height: 2em;
    background-color: #F5F8F9;
  }
  .faq-wrapper .faq .answer::before {
    content: "A.";
    top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #004170;
  }
  .faq-wrapper .faq .answer p:last-child {
    margin-bottom: 0;
  }
  /* ////////////////// 固定資産税について ////////////////// */
  .tax-description .col3-subject {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px 10px;
    margin-bottom: 40px;
  }
  .tax-description .col3-subject > div {
    position: relative;
    padding: 35px 10px 20px;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
  }
  .tax-description .col3-subject > div .name {
    position: absolute;
    top: -20px;
    left: 50%;
    display: inline-block;
    min-width: 190px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0.5em 2em;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FFB444;
    border-radius: 10px;
  }
  .tax-description .col3-subject > div img {
    margin-bottom: 15px;
  }
  .tax-ex .memo {
    font-size: 14px;
    text-align: right;
  }
  /* ////////////////// 業務提携 ////////////////// */
  .section-partnership {
    padding: 0 0 50px;
  }
  .section-partnership .gallery1 {
    padding: 30px 50px 40px;
    border: 1px solid #CCCCCC;
  }
  .partner-relation .relation1,
  .partner-relation .relation2,
  .partner-relation .relation3 {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 10px;
    padding-top: 60px;
  }
  .partner-relation .relation1 h3,
  .partner-relation .relation2 h3,
  .partner-relation .relation3 h3 {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: inline-block;
    white-space: nowrap;
  }
  .partner-relation .relation1 .inner,
  .partner-relation .relation2 .inner,
  .partner-relation .relation3 .inner {
    height: 100%;
    padding: 60px 20px 30px;
    font-size: 15px;
    font-weight: 500;
  }
  .partner-relation .relation1 ol,
  .partner-relation .relation2 ol,
  .partner-relation .relation3 ol {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .partner-relation .relation1 ol > li,
  .partner-relation .relation2 ol > li,
  .partner-relation .relation3 ol > li {
    margin-bottom: 1em;
    font-size: 16px;
  }
  .partner-relation .relation1 ol > li ol,
  .partner-relation .relation2 ol > li ol,
  .partner-relation .relation3 ol > li ol {
    padding: 15px 0 0 18px;
    font-size: 13px;
  }
  .partner-relation .relation1::after,
  .partner-relation .relation2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: calc(50% - 33px);
    z-index: 1;
    width: 75px;
    height: 32px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    background-image: url(../images/partnership/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .partner-relation .relation1 h3 {
    top: 30px;
    padding: 0.5em 2em;
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 4px solid #FB6E2F;
    border-radius: 15px;
    text-align: center;
  }
  .partner-relation .relation1 .inner {
    background-color: #FFF1DB;
    border: 4px solid #FFB444;
  }
  .partner-relation .relation2 h3,
  .partner-relation .relation3 h3 {
    top: 30px;
    padding: 0.5em 4em;
    border-radius: 3em;
  }
  .partner-relation .relation2 h3 {
    background-color: #F5F8F9;
    color: #407194;
    border: 4px solid #407194;
  }
  .partner-relation .relation2 .inner {
    background-color: #F5F8F9;
    border: 4px solid #407194;
  }
  .partner-relation .relation3 h3 {
    background-color: #E4F0EF;
    color: #107971;
    border: 4px solid #107971;
  }
  .partner-relation .relation3 .inner {
    background-color: #E4F0EF;
    border: 4px solid #107971;
  }
  /* ////////////////// お知らせ(一覧) ////////////////// */
  .content-archive {
    padding: 0 0 30px;
  }
  .content-archive > p {
    margin-bottom: 60px;
    font-size: clamp(16px, 4.2vw, 18px);
    font-weight: bold;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    text-align: center;
  }
  .cat-nav {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    padding: 0;
    font-size: 14px;
  }
  .cat-nav li {
    margin: 0 10px 10px 0;
    text-align: center;
  }
  .cat-nav li a {
    display: inline-block;
    min-width: 100px;
    padding: 5px 15px;
    background-color: #ffdde0;
    color: #7C161E;
    border: 1px solid #7C161E;
  }
  .cat-nav li.info a {
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FB6E2F;
  }
  .cat-nav li.case a {
    background-color: #F5F8F9;
    color: #004170;
    border: 1px solid #004170;
  }
  .cat-nav li.other a {
    background-color: #F8FAFB;
    color: #707070;
    border: 1px solid #707070;
  }
  .cat-nav li.active a {
    background-color: #FB6E2F;
    color: #fff;
    border: 1px solid #FB6E2F;
  }
  .news-cat {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    padding: 0;
    font-size: clamp(12px, 3.2vw, 14px);
  }
  .news-cat li {
    display: inline-block;
    min-width: 100px;
    padding: 4px 10px;
    background-color: #ffdde0;
    color: #7C161E;
    border: 1px solid #7C161E;
    text-align: center;
  }
  .news-cat li.info {
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FB6E2F;
  }
  .news-cat li.case {
    background-color: #F5F8F9;
    color: #004170;
    border: 1px solid #004170;
  }
  .news-cat li.other {
    background-color: #F8FAFB;
    color: #707070;
    border: 1px solid #707070;
  }
  .news-cat li.active {
    background-color: #FB6E2F;
    color: #fff;
    border: 1px solid #FB6E2F;
  }
  .news-cat-single {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    padding: 0;
    font-size: clamp(12px, 3.2vw, 14px);
  }
  .news-cat-single li a {
    display: inline-block;
    min-width: 100px;
    padding: 4px 10px;
    background-color: #ffdde0;
    color: #7C161E;
    border: 1px solid #7C161E;
    text-align: center;
  }
  .news-cat-single li.info a {
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FB6E2F;
  }
  .news-cat-single li.case a {
    background-color: #F5F8F9;
    color: #004170;
    border: 1px solid #004170;
  }
  .news-cat-single li.other a {
    background-color: #F8FAFB;
    color: #707070;
    border: 1px solid #707070;
  }
  .archive-section {
    padding: 30px 0;
    border-bottom: 1px dotted #707070;
  }
  .archive-section a {
    display: block;
  }
  .archive-section .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .archive-section .header .time {
    margin: 0 20px 0 0;
    font-size: clamp(14px, 3.7vw, 16px);
    font-weight: bold;
    color: #FB6E2F;
    line-height: 1em;
  }
  .archive-section .header .author {
    width: 100%;
    margin: 10px 0 0 auto;
    font-size: 12px;
    text-align: right;
  }
  .archive-section .text .title {
    margin-bottom: 1em;
    font-size: clamp(16px, 4.2vw, 18px);
    font-weight: 500;
    padding-left: 20px;
  }
  .archive-section .text .title::before {
    content: "";
    position: relative;
    margin-left: -20px;
    display: inline-block;
    width: 10px;
    height: 12px;
    margin-right: 10px;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #FB6E2F;
  }
  .archive-section .text .excerpt {
    margin: 0;
    font-size: clamp(13px, 3.4vw, 14px);
    font-weight: 500;
    line-height: 2em;
  }
  /* ////////////////// お知らせ(詳細) ////////////////// */
  .header-news {
    margin-bottom: 40px;
  }
  .header-news .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header-news .date .author {
    width: 100%;
    margin: 20px 0 0 auto;
    font-size: clamp(12px, 3.2vw, 14px);
  }
  .header-news time {
    display: block;
    margin-right: 20px;
    font-size: clamp(18px, 4.8vw, 20px);
    color: #FB6E2F;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
  }
  .header-news .news-title {
    padding: 15px 0;
  }
  .header-news .news-title h1 {
    margin: 0;
    font-size: clamp(22px, 5.8vw, 28px);
  }
  .column-footer {
    width: 100%;
    margin: 70px auto 50px;
    border-top: 1px solid #CCCCCC;
    font-size: 15px;
    line-height: 2em;
  }
  .column-footer ul {
    list-style: none;
    margin: 0;
  }
  .column-footer ul li {
    width: 100%;
    border-bottom: 1px solid #CCCCCC;
  }
  .column-footer ul li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding: 15px;
    color: #004170;
  }
  .column-footer ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    width: 36px;
    height: 100%;
    background-color: #F5F8F9;
  }
  .column-footer ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    width: 0;
    height: 0;
    border: 6px solid rgba(255, 255, 255, 0);
  }
  .column-footer ul li.prev {
    border-right: 1px solid #CCCCCC;
  }
  .column-footer ul li.prev a {
    padding-left: 55px;
  }
  .column-footer ul li.prev a::before {
    left: 0;
  }
  .column-footer ul li.prev a::after {
    left: 7px;
    border-right: 8px solid #fff;
  }
  .column-footer ul li.next a {
    padding-right: 55px;
  }
  .column-footer ul li.next a::before {
    right: 0;
  }
  .column-footer ul li.next a::after {
    right: 7px;
    border-left: 8px solid #fff;
  }
  /* ////////////////// 会社概要 ////////////////// */
  .about-policy {
    margin-bottom: 70px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: clamp(16px, 4.2vw, 18px);
    font-weight: bold;
    text-align: center;
  }
  .about-profile .section-title,
  .aboutus-access .section-title {
    margin-bottom: 50px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
  }
  .about-profile {
    background-color: #F5F8F9;
  }
  .about-profile .inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 4vw;
  }
  .about-profile .col2 {
    margin-bottom: 70px;
  }
  .about-profile .col2 .img {
    max-width: 450px;
    margin: 0 auto 30px;
  }
  .about-profile .col2 .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .about-profile .col2 .text dl {
    margin: 0;
    line-height: 2.25em;
  }
  .about-profile .col2 .text dl > div {
    padding: 1.5em 1em;
    border-bottom: 1px solid #CCCCCC;
  }
  .about-profile .col2 .text dl dt {
    margin-bottom: 20px;
    font-weight: bold;
  }
  .about-profile .president-profile {
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #707070;
  }
  .about-profile .president-profile .img {
    text-align: center;
    margin-bottom: 20px;
  }
  .about-profile .president-profile .img img {
    width: 320px;
  }
  .about-profile .president-profile .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .about-profile .president-profile .text h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1em;
  }
  .about-profile .president-profile .text h3 span {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    font-size: 14px;
  }
  .about-profile .president-profile .text h3 b {
    margin-right: 40px;
    font-size: 24px;
    font-weight: 500;
  }
  .about-profile .president-profile .text h3 small {
    font-size: 14px;
  }
  .about-profile .president-profile .text p {
    font-size: 16px;
    line-height: 2.25em;
  }
  .aboutus-access {
    margin: 0 auto;
    padding: 60px 0 0;
  }
  .aboutus-access .gmap {
    margin: 0 auto 50px;
  }
  .aboutus-access .address {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 50px;
    padding: 0 4vw;
    line-height: 2.25em;
  }
  /* ////////////////// グーグルマップ用 ////////////////// */
  .gmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto 2em;
  }
  .gmap iframe,
  .gmap object,
  .gmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /* ////////////////// ページネーション(wp-pagenaviプラグイン用) ////////////////// */
  .wp-pagenavi {
    clear: both;
    text-align: center;
    margin: 60px auto 1.5em;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 18px;
  }
  .wp-pagenavi a,
  .wp-pagenavi .current {
    display: inline-block;
    min-width: 38px;
    height: 38px;
    line-height: 36px;
    text-decoration: none;
    border: 1px solid #FFB444;
    padding: 0 5px;
    margin: 5px 3px;
    background-color: #FFF1DB;
    color: #FB6E2F;
    text-align: center;
  }
  .wp-pagenavi a:hover {
    opacity: 0.8;
  }
  .wp-pagenavi .extend {
    color: #FB6E2F;
    border: none;
  }
  .wp-pagenavi .current {
    color: #fff;
    background-color: #FB6E2F;
  }
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width:1100px) {
  .sp {
    display: none !important;
  }
  #header p {
    margin: 0;
  }
  #header a {
    display: block;
  }
  #header .header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1260px;
    max-width: 100%;
    height: 100px;
    margin: 0 auto;
    padding: 0 30px;
  }
  #header .logo {
    width: 250px;
  }
  #header .header-nav {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
  #header .header-nav li {
    margin-left: 40px;
  }
  #header .header-nav li a {
    position: relative;
    padding: 10px 0.5em;
  }
  #header .header-nav li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #FB6E2F;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header .header-nav li a:hover::after {
    width: 100%;
  }
  #hamburger {
    display: none;
  }
  #footer {
    padding-top: 140px;
  }
  #footer .footer-contact {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 20px 50px 30px;
    font-weight: 500;
    background-color: #FFF1DB;
    border: 1px solid #FFB444;
  }
  #footer .footer-contact h2 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 25px;
    padding: 10px 30px;
    font-size: 24px;
    font-weight: 500;
    background-color: #FB6E2F;
    color: #fff;
  }
  #footer .footer-contact strong {
    font-weight: 500;
    color: #FB6E2F;
  }
  #footer .footer-contact ul {
    list-style: none;
    margin: 0 auto 30px;
    padding: 0;
  }
  #footer .footer-contact ul li {
    position: relative;
    padding: 0 0 0 25px;
  }
  #footer .footer-contact ul li:not(:last-child) {
    margin-bottom: 1em;
  }
  #footer .footer-contact ul li::before {
    content: "";
    position: absolute;
    top: 0.25em;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #FFB444;
    border-radius: 50%;
  }
  #footer .footer-contact .tel {
    margin: 0;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: 34px;
    font-weight: bold;
    text-align: center;
  }
  #footer .footer-contact .tel a {
    display: inline-block;
  }
  #footer .footer-contact .tel a::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    background-image: url(../images/common/ico-tel.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  #footer .banner-list {
    width: 1260px;
    max-width: 100%;
    margin: 65px auto 20px;
    padding: 0 30px;
  }
  #footer .banner-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 0 auto;
  }
  #footer .banner-list ul li {
    margin: 0 auto 20px;
    font-size: 14px;
  }
  #footer .banner-list ul li a {
    display: block;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  #footer .banner-list ul li a img {
    display: block;
    margin-bottom: 5px;
  }
  #footer .footer-bottom {
    background-color: #F5F8F9;
  }
  #footer .footer-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1260px;
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 30px;
  }
  #footer .footer-inner .logo {
    margin: 0 60px 0 0;
  }
  #footer .footer-inner .logo .img {
    display: inline-block;
    width: 266px;
    margin-bottom: 10px;
    padding: 8px;
    background-color: #fff;
    border-radius: 4px;
  }
  #footer .footer-inner .logo h2 {
    font-size: 13px;
    font-weight: normal;
  }
  #footer .footer-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
  #footer .footer-right ul {
    list-style: none;
    margin: 0 35px;
    font-size: 15px;
  }
  #footer .footer-right ul li {
    margin-bottom: 10px;
  }
  #footer .footer-right ul li a {
    color: #4E4E4E;
  }
  #footer .footer-right ul li a:hover {
    opacity: 0.7;
  }
  #footer .copyright {
    margin: 0;
    padding: 0.75em;
    text-align: center;
    color: #4E4E4E;
    font-size: 12px;
  }
  .aligncenter {
    text-align: center;
  }
  .wysiwyg {
    margin-bottom: 50px;
  }
  .wysiwyg > p + h2,
  .wysiwyg > p + h3,
  .wysiwyg > p + h4 {
    margin-top: 40px;
  }
  .wysiwyg p {
    line-height: 2.25em;
  }
  .wysiwyg h2 {
    margin: 0 auto 40px;
    padding: 0.75em 1em;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.5em;
    border-left: 15px solid #FB6E2F;
    background-color: #FFB444;
    color: #fff;
  }
  .wysiwyg h3 {
    font-size: 22px;
    font-weight: bold;
    background-color: #FFF1DB;
    color: #FB6E2F;
    margin: 0 auto 40px;
    padding: 0.75em 20px;
    line-height: 1.5em;
    border-left: 15px solid #FB6E2F;
  }
  .wysiwyg h4 {
    font-size: 18px;
    font-weight: bold;
    color: #FB6E2F;
    border-bottom: 2px solid #FB6E2F;
    padding: 1em 20px;
    margin-bottom: 1em;
  }
  .wysiwyg a {
    color: #004170;
    text-decoration: underline;
  }
  .wysiwyg ol,
  .wysiwyg ul {
    margin: 1.5em 0 2em;
    padding-left: 1.5em;
  }
  .wysiwyg ol li,
  .wysiwyg ul li {
    margin-bottom: 0.5em;
  }
  .wysiwyg ol li ol,
  .wysiwyg ol li ul,
  .wysiwyg ul li ol,
  .wysiwyg ul li ul {
    margin-top: 1em;
    margin-bottom: 1em;
    padding-left: 1.5em;
  }
  .wysiwyg table ol,
  .wysiwyg table ul {
    margin: 0;
  }
  .wysiwyg figure {
    background-color: #F8FAFB;
    height: 100%;
  }
  .wysiwyg figure figcaption {
    text-align: left;
    padding: 1.5em 0.75em;
    font-size: 13px;
    line-height: 1.5em;
  }
  .wysiwyg .col2,
  .wysiwyg .col2-rev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 2em auto 50px;
  }
  .wysiwyg .col2 .img,
  .wysiwyg .col2-rev .img {
    width: 330px;
    margin-right: 30px;
    text-align: center;
  }
  .wysiwyg .col2 .img img,
  .wysiwyg .col2-rev .img img {
    border: 1px solid #CCCCCC;
  }
  .wysiwyg .col2 .text,
  .wysiwyg .col2-rev .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .wysiwyg .col2 .text p:last-child,
  .wysiwyg .col2-rev .text p:last-child {
    margin-bottom: 0;
  }
  .wysiwyg .col2.excerpt .img,
  .wysiwyg .col2-rev.excerpt .img {
    width: 280px;
  }
  .wysiwyg .col2-rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .wysiwyg .col2-rev .img {
    margin-right: 0;
  }
  .wysiwyg .col2-rev .text {
    margin-right: 30px;
  }
  .wysiwyg .gallery1 {
    margin-bottom: 50px;
    text-align: center;
  }
  .wysiwyg .gallery2,
  .wysiwyg .gallery3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    margin: 0 auto 40px;
    text-align: center;
  }
  .wysiwyg .gallery2 li {
    width: 49%;
  }
  .wysiwyg .gallery3::after {
    content: "";
    display: block;
    width: 32.5%;
  }
  .wysiwyg .gallery3 li {
    width: 32.5%;
  }
  .wysiwyg .box {
    padding: 30px;
    margin-bottom: 50px;
    background-color: #FFF3F5;
  }
  .wysiwyg .box p:last-child {
    margin-bottom: 0;
  }
  /* ////////////////// 共通 ////////////////// */
  .red {
    color: #f00;
  }
  .orange {
    color: #FB6E2F;
  }
  .nowrap {
    white-space: nowrap;
  }
  .header-article {
    margin-bottom: 65px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .header-article .title {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 300px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-weight: bold;
    color: #fff;
  }
  .header-article .title::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
  }
  .header-article .page-title {
    font-size: 32px;
  }
  .header-article .page-subtitle {
    font-size: 18px;
    margin: 10px 0 0;
  }
  .header-article .pankz {
    padding: 8px 0;
    background-color: #F5F8F9;
    font-size: 12px;
  }
  .header-article .pankz ol {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 1100px;
    margin: 0 auto;
    padding: 0;
  }
  .header-article .pankz ol li {
    color: #707070;
  }
  .header-article .pankz ol li:not(:last-child)::after {
    content: "＞";
    margin: 0 0.5em;
  }
  .header-article .pankz ol li a,
  .header-article .pankz ol li .current {
    display: inline;
    color: #707070;
  }
  .container-narrow {
    width: 900px;
    margin: 0 auto;
  }
  .container-default {
    width: 1160px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
  }
  .container-default.service-result-before {
    padding: 0 0 70px;
  }
  .container-default.service-result-after {
    padding: 90px 0 30px;
  }
  .container-wide {
    width: 1260px;
    margin: 0 auto;
  }
  .btn-more {
    text-align: center;
  }
  .btn-more a {
    position: relative;
    display: inline-block;
    padding: 1em 6em;
    font-size: 15px;
    font-weight: bold;
    background-color: #4E4E4E;
    border: 1px solid #4E4E4E;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .btn-more a:hover {
    background-color: #fff;
    color: #4E4E4E;
  }
  /* ////////////////// トップページ ////////////////// */
  .front-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1200px;
    height: 400px;
    margin: 0 auto 60px;
    background-image: url(../images/front/kv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .front-header h1 {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 30px 40px 30px 100px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: 30px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.65);
    background-color: rgba(0, 0, 0, 0.45);
    color: #fff;
  }
  .front-news {
    width: 980px;
    margin: 0 auto 90px;
    padding: 30px 40px 30px;
    border: 1px solid #707070;
  }
  .front-news .front-news-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #707070;
  }
  .front-news .front-news-title h2 {
    display: inline-block;
    margin-right: 50px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: 30px;
  }
  .front-news .front-news-title p {
    margin: 0;
  }
  .front-news dl {
    margin: 0 0 30px;
  }
  .front-news dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #CCCCCC;
  }
  .front-news dl dt {
    width: 190px;
    font-size: 13px;
  }
  .front-news dl dt span {
    margin-right: 16px;
    font-size: 14px;
  }
  .front-news dl dt b {
    display: inline-block;
    min-width: 70px;
    padding: 5px 10px;
    font-weight: normal;
    text-align: center;
  }
  .front-news dl dt b.info {
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FB6E2F;
  }
  .front-news dl dt b.case {
    background-color: #F5F8F9;
    color: #004170;
    border: 1px solid #004170;
  }
  .front-news dl dt b.other {
    background-color: #F8FAFB;
    color: #707070;
    border: 1px solid #707070;
  }
  .front-news dl dt b.active {
    background-color: #FB6E2F;
    color: #fff;
    border: 1px solid #FB6E2F;
  }
  .front-news dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .front-news dl dd a:hover {
    opacity: 0.8;
  }
  .front-section-title {
    margin-bottom: 70px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: 30px;
    text-align: center;
  }
  .front-service {
    margin-bottom: 90px;
    background-color: #F5F8F9;
  }
  .front-service .inner {
    width: 1260px;
    max-width: 100%;
    margin: 0 auto;
    padding: 70px 30px 90px;
  }
  .front-service .inner .col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .front-service .inner .col2:not(:last-child) {
    margin-bottom: 40px;
  }
  .front-service .inner .col2 .img {
    width: 400px;
    margin-right: 40px;
  }
  .front-service .inner .col2 .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .front-service .inner .col2 .text h2 {
    margin-bottom: 30px;
    font-size: 22px;
  }
  .front-service .inner .col2 .text h2 small {
    display: block;
    font-size: 14px;
    font-weight: normal;
  }
  .front-service .inner .col2 .text .btn-more {
    text-align: right;
  }
  .front-detail {
    width: 1260px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
  }
  .front-detail .col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .front-detail .col2 .left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 40px;
  }
  .front-detail .col2 .left .point:not(:last-child) {
    margin-bottom: 50px;
  }
  .front-detail .col2 .left h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: 24px;
    color: #FB6E2F;
    border-bottom: 1px solid #707070;
  }
  .front-detail .col2 .left dl {
    margin: 0 0 30px;
  }
  .front-detail .col2 .left dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 1em;
  }
  .front-detail .col2 .left dl dt {
    width: 160px;
    font-weight: 500;
  }
  .front-detail .col2 .left dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .front-detail .col2 .left ul {
    list-style: none;
    font-weight: 500;
  }
  .front-detail .col2 .left ul li {
    margin-bottom: 1em;
  }
  .front-detail .col2 .point01 dl dt {
    width: 100px;
  }
  .front-detail .col2 .note h4 {
    margin-bottom: 0.75em;
    padding: 0 0 0 24px;
    font-size: 18px;
    color: #FB6E2F;
    background-image: url(../images/common/ico-point.svg);
    background-repeat: no-repeat;
    background-size: 18px auto;
    background-position: left 0.45em;
  }
  .front-detail .col2 .note .text {
    padding: 20px 24px;
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FFB444;
  }
  .front-detail .col2 .note .text p:last-child {
    margin-bottom: 0;
  }
  .front-detail .col2 .right {
    width: 52%;
    text-align: center;
  }
  .front-detail .col2 .right h3 {
    margin-bottom: 1em;
    font-size: 18px;
  }
  .front-detail .col2 .right .summary {
    padding: 0.75em 0;
    font-weight: bold;
    background-color: #FB6E2F;
    color: #fff;
    text-align: center;
  }
  .front-detail .col2 .right table {
    margin: 0 auto 50px;
    font-size: 14px;
  }
  .front-detail .col2 .right .graph {
    margin: 0 auto 30px;
    padding: 30px;
    text-align: center;
    border: 1px solid #707070;
  }
  /* ////////////////// 固定資産税 適正化 ////////////////// */
  .service-data {
    margin-bottom: 60px;
  }
  .service-data .col3-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 40px;
  }
  .service-data .col3-data > div {
    width: 32%;
    padding: 20px;
    text-align: center;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
  }
  .service-data .col3-data > div h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .service-data .col3-data > div p {
    margin-bottom: 0;
    font-size: 13px;
    text-align: left;
    line-height: 2em;
  }
  .service-data .col3-data > div p.num {
    margin-bottom: 0;
    padding-left: 34px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    color: #FB6E2F;
    text-align: center;
    line-height: 90px;
  }
  .service-data .col3-data > div p.num strong {
    font-size: 90px;
  }
  .service-data .col3-data > div p.num b {
    font-size: 24px;
  }
  .service-data .col3-data > div p.memo {
    text-align: right;
  }
  .service-subject {
    margin-bottom: 60px;
  }
  .col3-subject {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 40px;
  }
  .col3-subject > div {
    position: relative;
    width: 32%;
    padding: 35px 20px 20px;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
  }
  .col3-subject > div .name {
    position: absolute;
    top: -20px;
    left: 50%;
    display: inline-block;
    min-width: 190px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0.5em 2em;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FFB444;
    border-radius: 10px;
  }
  .col3-subject > div img {
    margin-bottom: 15px;
  }
  .col3-subject > div p {
    margin: 0;
    font-size: 14px;
    line-height: 2em;
  }
  .service-comparison .col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .service-comparison .col2 .text {
    margin-right: 40px;
  }
  .service-comparison .col2 .text table td {
    text-align: center;
  }
  .service-comparison .col2 .img {
    padding: 30px;
    border: 1px solid #CCCCCC;
  }
  .service-comparison .col2 .img img {
    border: none;
  }
  .faq-wrapper .faq:not(:last-child) {
    margin-bottom: 50px;
  }
  .faq-wrapper .faq .question,
  .faq-wrapper .faq .answer {
    position: relative;
    padding-left: 60px;
  }
  .faq-wrapper .faq .question::before,
  .faq-wrapper .faq .answer::before {
    position: absolute;
    left: 20px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
  }
  .faq-wrapper .faq .question {
    margin-bottom: 30px;
    font-size: 18px;
    color: #FB6E2F;
  }
  .faq-wrapper .faq .question::before {
    content: "Q.";
    top: 0;
    font-size: 24px;
    font-weight: bold;
    color: #FB6E2F;
  }
  .faq-wrapper .faq .answer {
    padding: 20px 20px 20px 60px;
    line-height: 2em;
    background-color: #F5F8F9;
  }
  .faq-wrapper .faq .answer::before {
    content: "A.";
    top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #004170;
  }
  .faq-wrapper .faq .answer p:last-child {
    margin-bottom: 0;
  }
  /* ////////////////// 固定資産税について ////////////////// */
  .tax-description .col3-subject {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 40px;
  }
  .tax-description .col3-subject > div {
    position: relative;
    width: 32%;
    padding: 35px 20px 20px;
    border: 1px solid #CCCCCC;
    border-radius: 10px;
  }
  .tax-description .col3-subject > div .name {
    position: absolute;
    top: -20px;
    left: 50%;
    display: inline-block;
    min-width: 190px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0.5em 2em;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FFB444;
    border-radius: 10px;
  }
  .tax-description .col3-subject > div img {
    margin-bottom: 15px;
  }
  .tax-ex .memo {
    text-align: right;
  }
  /* ////////////////// 業務提携 ////////////////// */
  .section-partnership {
    padding: 0 0 50px;
  }
  .section-partnership .gallery1 {
    padding: 30px 50px 40px;
    border: 1px solid #CCCCCC;
  }
  .partner-relation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .partner-relation .relation1,
  .partner-relation .relation2,
  .partner-relation .relation3 {
    position: relative;
    padding-top: 60px;
    margin-bottom: 40px;
  }
  .partner-relation .relation1 h3,
  .partner-relation .relation2 h3,
  .partner-relation .relation3 h3 {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: inline-block;
    white-space: nowrap;
  }
  .partner-relation .relation1 .inner,
  .partner-relation .relation2 .inner,
  .partner-relation .relation3 .inner {
    height: 100%;
    padding: 60px 20px 30px;
    font-size: 15px;
    font-weight: 500;
  }
  .partner-relation .relation1 ol,
  .partner-relation .relation2 ol,
  .partner-relation .relation3 ol {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .partner-relation .relation1 ol > li,
  .partner-relation .relation2 ol > li,
  .partner-relation .relation3 ol > li {
    margin-bottom: 1em;
    font-size: 16px;
  }
  .partner-relation .relation1 ol > li ol,
  .partner-relation .relation2 ol > li ol,
  .partner-relation .relation3 ol > li ol {
    padding: 15px 0 0 18px;
    font-size: 13px;
  }
  .partner-relation .relation1::after,
  .partner-relation .relation2::after {
    content: "";
    position: absolute;
    top: 45%;
    right: -40px;
    z-index: 1;
    width: 75px;
    height: 32px;
    background-image: url(../images/partnership/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .partner-relation .relation1 {
    width: 330px;
  }
  .partner-relation .relation1 h3 {
    top: 30px;
    padding: 0.5em 2em;
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 4px solid #FB6E2F;
    border-radius: 15px;
    text-align: center;
  }
  .partner-relation .relation1 .inner {
    background-color: #FFF1DB;
    border: 4px solid #FFB444;
  }
  .partner-relation .relation2 h3,
  .partner-relation .relation3 h3 {
    top: 30px;
    padding: 0.5em 4em;
    border-radius: 3em;
  }
  .partner-relation .relation2 {
    width: 400px;
  }
  .partner-relation .relation2 h3 {
    background-color: #F5F8F9;
    color: #407194;
    border: 4px solid #407194;
  }
  .partner-relation .relation2 .inner {
    background-color: #F5F8F9;
    border: 4px solid #407194;
  }
  .partner-relation .relation3 {
    width: 330px;
  }
  .partner-relation .relation3 h3 {
    background-color: #E4F0EF;
    color: #107971;
    border: 4px solid #107971;
  }
  .partner-relation .relation3 .inner {
    background-color: #E4F0EF;
    border: 4px solid #107971;
  }
  /* ////////////////// お知らせ(一覧) ////////////////// */
  .content-archive {
    padding-bottom: 30px;
  }
  .content-archive > p {
    margin-bottom: 60px;
    font-size: 20px;
    font-weight: bold;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    text-align: center;
  }
  .cat-nav {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    padding: 0;
    font-size: 14px;
  }
  .cat-nav li {
    margin-right: 10px;
  }
  .cat-nav li {
    margin-right: 10px;
    text-align: center;
  }
  .cat-nav li a {
    display: inline-block;
    min-width: 100px;
    padding: 5px 15px;
    background-color: #ffdde0;
    color: #7C161E;
    border: 1px solid #7C161E;
  }
  .cat-nav li.info a {
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FB6E2F;
  }
  .cat-nav li.case a {
    background-color: #F5F8F9;
    color: #004170;
    border: 1px solid #004170;
  }
  .cat-nav li.other a {
    background-color: #F8FAFB;
    color: #707070;
    border: 1px solid #707070;
  }
  .cat-nav li.active a {
    background-color: #FB6E2F;
    color: #fff;
    border: 1px solid #FB6E2F;
  }
  .news-cat {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    padding: 0;
    font-size: 14px;
  }
  .news-cat li {
    display: inline-block;
    min-width: 100px;
    padding: 5px 15px;
    background-color: #ffdde0;
    color: #7C161E;
    border: 1px solid #7C161E;
    text-align: center;
  }
  .news-cat li.info {
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FB6E2F;
  }
  .news-cat li.case {
    background-color: #F5F8F9;
    color: #004170;
    border: 1px solid #004170;
  }
  .news-cat li.other {
    background-color: #F8FAFB;
    color: #707070;
    border: 1px solid #707070;
  }
  .news-cat li.active {
    background-color: #FB6E2F;
    color: #fff;
    border: 1px solid #FB6E2F;
  }
  .news-cat-single {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
    padding: 0;
    font-size: 14px;
  }
  .news-cat-single li a {
    display: inline-block;
    min-width: 100px;
    padding: 5px 15px;
    background-color: #ffdde0;
    color: #7C161E;
    border: 1px solid #7C161E;
    text-align: center;
  }
  .news-cat-single li.info a {
    background-color: #FFF1DB;
    color: #FB6E2F;
    border: 1px solid #FB6E2F;
  }
  .news-cat-single li.case a {
    background-color: #F5F8F9;
    color: #004170;
    border: 1px solid #004170;
  }
  .news-cat-single li.other a {
    background-color: #F8FAFB;
    color: #707070;
    border: 1px solid #707070;
  }
  .archive-section {
    padding: 30px 0;
    border-bottom: 1px dotted #707070;
  }
  .archive-section a {
    display: block;
  }
  .archive-section .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .archive-section .header .time {
    margin: 0 20px 0 0;
    font-size: 18px;
    font-weight: bold;
    color: #FB6E2F;
    line-height: 1em;
  }
  .archive-section .header .author {
    margin: 0 0 0 auto;
    font-size: 14px;
    text-align: right;
  }
  .archive-section .text .title {
    margin-bottom: 1em;
    font-size: 18px;
    font-weight: 500;
  }
  .archive-section .text .title::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 12px;
    margin-right: 8px;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #FB6E2F;
  }
  .archive-section .text .excerpt {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 2em;
  }
  /* ////////////////// お知らせ(詳細) ////////////////// */
  .header-news {
    margin-bottom: 40px;
  }
  .header-news .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-news .date .author {
    margin: 0 0 0 auto;
  }
  .header-news time {
    display: block;
    margin-right: 20px;
    font-size: 20px;
    color: #FB6E2F;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
  }
  .header-news .news-title {
    padding: 15px 0;
  }
  .header-news .news-title h1 {
    margin: 0;
    font-size: 30px;
  }
  .column-footer {
    width: 900px;
    margin: 70px auto 50px;
    border-top: 1px solid #CCCCCC;
    font-size: 15px;
    line-height: 2em;
  }
  .column-footer ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
  .column-footer ul.next-only {
    padding-left: 50%;
  }
  .column-footer ul.next-only li {
    width: 100%;
    border-left: 1px solid #CCCCCC;
  }
  .column-footer ul li {
    width: 50%;
  }
  .column-footer ul li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding: 20px;
    color: #4E4E4E;
  }
  .column-footer ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    width: 36px;
    height: 100%;
    background-color: #E9EEF2;
  }
  .column-footer ul li a::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
    width: 0;
    height: 0;
    border: 6px solid rgba(255, 255, 255, 0);
  }
  .column-footer ul li.prev {
    border-right: 1px solid #CCCCCC;
  }
  .column-footer ul li.prev a {
    padding-left: 55px;
  }
  .column-footer ul li.prev a::before {
    left: 0;
  }
  .column-footer ul li.prev a::after {
    left: 7px;
    border-right: 8px solid #fff;
  }
  .column-footer ul li.next a {
    padding-right: 55px;
  }
  .column-footer ul li.next a::before {
    right: 0;
  }
  .column-footer ul li.next a::after {
    right: 7px;
    border-left: 8px solid #fff;
  }
  /* ////////////////// 会社概要 ////////////////// */
  .about-policy {
    margin-bottom: 70px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
  }
  .about-profile .section-title,
  .aboutus-access .section-title {
    margin-bottom: 50px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
  }
  .about-profile {
    background-color: #F5F8F9;
  }
  .about-profile .inner {
    width: 1260px;
    max-width: 100%;
    margin: 0 auto;
    padding: 70px 30px;
  }
  .about-profile .col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 70px;
  }
  .about-profile .col2 .img {
    width: 450px;
    margin-right: 40px;
  }
  .about-profile .col2 .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .about-profile .col2 .text dl {
    margin: 0;
    line-height: 2.25em;
  }
  .about-profile .col2 .text dl > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5em 1em;
    border-bottom: 1px solid #CCCCCC;
  }
  .about-profile .col2 .text dl dt {
    width: 100px;
    margin-right: 20px;
    text-align: center;
  }
  .about-profile .col2 .text dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .about-profile .president-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #707070;
  }
  .about-profile .president-profile .img {
    width: 320px;
    margin-right: 40px;
  }
  .about-profile .president-profile .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .about-profile .president-profile .text h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
    font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
    font-size: 26px;
    font-weight: 500;
    line-height: 1em;
  }
  .about-profile .president-profile .text h3 span {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    font-size: 14px;
  }
  .about-profile .president-profile .text h3 b {
    margin-right: 40px;
    font-size: 24px;
    font-weight: 500;
  }
  .about-profile .president-profile .text h3 small {
    font-size: 14px;
  }
  .about-profile .president-profile .text p {
    font-size: 16px;
    line-height: 2.25em;
  }
  .aboutus-access {
    width: 900px;
    margin: 0 auto;
    padding: 100px 0 0;
  }
  .aboutus-access .gmap {
    margin: 0 auto 50px;
  }
  .aboutus-access .address {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 50px;
    line-height: 2.25em;
  }
  /* ////////////////// ページネーション(wp-pagenaviプラグイン用) ////////////////// */
  .wp-pagenavi {
    clear: both;
    text-align: center;
    margin: 60px auto 1.5em;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 20px;
  }
  .wp-pagenavi a,
  .wp-pagenavi .current {
    display: inline-block;
    min-width: 40px;
    height: 40px;
    line-height: 36px;
    text-decoration: none;
    border: 1px solid #FFB444;
    padding: 0 5px;
    margin: 3px;
    background-color: #FFF1DB;
    color: #FB6E2F;
    text-align: center;
  }
  .wp-pagenavi a:hover {
    opacity: 0.8;
  }
  .wp-pagenavi .extend {
    color: #FB6E2F;
    border: none;
  }
  .wp-pagenavi .current {
    color: #fff;
    background-color: #FB6E2F;
  }
}