@charset "utf-8";

/* font設定 (YakuHanJPはfunction.phpで読み込み)
---------------------------------------------------------------- */
/* @font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Regular.woff) format('woff');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Bold.woff) format('woff');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'noto-serif-jp';
  src: url(../webfonts/NotoSerifJP/NotoSerifJP-SemiBold.woff2) format('woff');
  font-weight: bold;
  font-display: swap;
} */

body {
  font-family: YakuHanJP, 'noto-sans-jp', sans-serif;
}

/* title
---------------------------------------------------------------- */
/* トップページタイトル */
.ttl-01 {
  font-family: 'noto-serif-jp';
  font-size: var(--fs-ttl-l);
  font-weight: bold;
  margin-bottom: 0.3em;
}
.ttl-01 span{
  font-family: 'noto-sans-jp';
  display: flex;
  align-items: center;
  font-size: var(--fs-lead);
  margin-bottom: 0.3em;
  color: var(--d-gray);
}
.ttl-01 span::before {
  content: '';
  display: block;
  width: auto;
  height: 1em;
  aspect-ratio: 83 / 150;
  margin-right: 5px;
  background: url(../images/common/ttl-acc.svg) center center / contain no-repeat;
}
.ttl-02 {
  position: relative;
  font-size: var(--fs-ttl-m);
  padding-left: 0.8em;
}
.ttl-02::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--cl-main);
  transform: translateY(-50%);
}
.ttl-03 {
  position: relative;
  font-size: var(--fs-ttl-m);
  padding: 0 0 0.5em;
  margin-bottom: 1.5em;
}
.ttl-03::before {
  position: absolute;
  content: '';
  display: block;
  background: var(--gray);
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  border-radius: 8px;
}
.ttl-03::after {
  position: absolute;
  content: '';
  display: block;
  background: var(--cl-main);
  left: 0;
  bottom: -4px;
  width: 25%;
  height: 4px;
  border-radius: 8px 0 0 8px;
}
.ttl-04 {
  font-size: var(--fs-ttl-s);
  border-bottom: solid 2px var(--cl-main);
  padding-bottom: 0.2em;
  margin-bottom: 1em;
}
.ttl-05 {
  font-size: var(--fs-ttl-xs);
  color: var(--cl-main);
  margin-bottom: 1em;
}

/* text
---------------------------------------------------------------- */
.text-lead {
  font-size: var(--fs-ttl-s);
  font-weight: bold;
}

/* btn
---------------------------------------------------------------- */
.btn {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  text-align: center;
  padding: 1em;
  width: 230px;
  border-radius: var(--btn-br);
  color: var(--cl-main);
  border: 1px solid var(--gray);
}
/* 左矢印 */
.btn-back:before{
  display: block;
  content: "";
  margin-right: 10px;
  width: 1.2em;
  height: 1.2em;
  transform: rotate(180deg);
  background: url(../images/common/arrow.svg) center center / contain no-repeat;
}



/* box
---------------------------------------------------------------- */
.box-basic {
  padding: 2em 1.5em;
  border: var(--l-gray) 4px solid;
  border-radius: var(--box-br);
  background: var(--white);
}

/* icon
---------------------------------------------------------------- */
.icon,
.fa-icon {
  display: flex;
  align-items: center;
}
/* 画像 */
.icon::before {
  content: '';
  display: inline-block;
  margin-right: 0.5em;
}
.icon-mail::before {
  background: url(../images/common/icon-mail.svg) center center no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1em;
}
/* font-awesome */
.fa-icon::before {
  font-family: 'Font Awesome 6 Free';
  margin-right: 0.3em;
}
.fa-icon-tel::before {
  content: '\f095';
  font-weight: 900;
}
.fa-icon-arrow::before {
  content: '\f054';
  font-weight: 900;
  font-size: 1em;
  color: var(--cl-accent);
  text-align: right;
}

/* 外部リンクアイコン */
.ex-link {
  position: relative;
  padding-right: 1.2em;
}
.ex-link::after {
  font-family: 'Font Awesome 6 Free';
  content: '\f35d';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: 900;
  font-size: 0.8em;
}

/* header
---------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  display: flex;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--header-side-pd) 0;
  z-index: 3;
  font-size: 1.7rem;
}
.header-logo {
  text-indent: -9999px;
  height: 100%;
  aspect-ratio: 50 / 21;
  min-height: 0;
  margin-right: 30px;
}
.header-logo a {
  display: block;
  background: url(../images/common/logo.svg) center left no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1024px){
  .header-logo {
    height: auto;
    width: 260px;
    margin-right: 0;
  }
}
@media only screen and (max-width: 450px){
  .header-logo {
    width: 200px;
  }
}

/* global nav */
.nav-global {
  height: inherit;
  margin-right: auto;
}
.nav-global-list {
  display: flex;
  height: inherit;
}
.nav-global-list li {
  height: inherit;
}
.nav-global-list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  padding: 0.8em 1em;
  color: var(--black);
  height: 100%;
}
.nav-global-list > li > a:hover {
  opacity: 1;
  color: var(--cl-main);
}
@media only screen and (max-width: 1024px){
  /* global nav */
  .nav-global {
    display: none;
  }
}

/* ハンバーガーボタン */
.btn-hamburger {
  position: fixed;
  top: calc(var(--header-height) / 2);
  transform: translateY(-50%);
  right: var(--hamburger-side-width);
  width: var(--hamburger-width);
  height: var(--hamburger-width);
  z-index: 99;
  border-radius: 50%;
  padding: 5px;
  display: none;
}
.btn-hamburger button {
  position: relative;
  width: 100%;
  height: 100%;
}
.btn-hamburger button::after {
  position: absolute;
  content: 'Menu';
  font-size: 1rem;
  font-weight: bold;
  color: var(--cl-main);
  left: 0;
  bottom: 0;
  text-align: center;
  width: 100%;
}
.btn-hamburger button.is-active::after {
  content: 'Close';
}
.btn-hamburger button span {
  background-color: var(--cl-main);
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  left: calc(50%);
  position: absolute;
  top: 40%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 50% 50%;
  transition: all 0.4s;
}
.btn-hamburger button span:before,
.btn-hamburger button span:after {
  background-color: var(--cl-main);
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  transition: all 0.4s;
}
.btn-hamburger button span:before {
  top: 10px;
}
.btn-hamburger button span:after {
  top: -10px;
}
.btn-hamburger button.is-active span {
  background-color: transparent;
}
.btn-hamburger button.is-active span:before {
  top: 0;
  transform: rotate(45deg);
}
.btn-hamburger button.is-active span:after {
  top: 0;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 1024px) {
  .btn-hamburger {
    display: block;
    right: 0;
  }
}

/* header-contact
---------------------------------------------------------------- */
.header-contact{
  margin: auto 0;
  padding: 0.5em 2.5em;
  color: var(--cl-main);
  border: 1px solid var(--cl-main);
  border-radius: var(--btn-br);
}
.header-contact:hover{
  background-color: var(--cl-base);
  opacity: 1;
}

@media only screen and (max-width: 1024px){
  .header-contact{
    display: none;
  }
}

/* mobile nav
---------------------------------------------------------------- */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  overflow: auto;
  opacity: 0;
  z-index: -999;
}
.nav-mobile.is-open {
  opacity: 1;
  z-index: 110;
}
.nav-mobile-header {
  /* position: fixed; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 99;
}
.nav-mobile-inner {
  background: var(--white);
  padding: 1.5em 0 3em;
}
.nav-mobile-list > li {
  border-bottom: var(--cl-main) 1px solid;
}
.nav-mobile-list > li > a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
  font-size: var(--fs-ttl-m);
  font-weight: bold;
  color: var(--cl-main);
  padding: 0.7em 0;
  padding-right: 3%;
  padding-left: 3%;
  width: 100%;
  text-align: left;
}
.nav-mobile-list > li > a::after{
  content: "\f105";
  display: block;
  font-family: 'Font Awesome 6 Free';
  font-weight: bold;
}
.nav-mobile-contact{
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 1em 2.5em;
  color: var(--cl-main);
  border: 1px solid var(--cl-main);
  border-radius: var(--btn-br);
  width: 100%;
  max-width: 400px;
}

/* sitemap
---------------------------------------------------------------- */
.sitemap {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
  background: var(--cl-base);
  overflow-y: auto;
}
.sitemap.is-open {
  visibility: visible;
  opacity: 1;
}
.sitemap-header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 15px;
  top: 0;
  width: 100%;
  height: var(--header-height);
}
.sitemap-inner {
  padding: 8em 0;
}
.sitemap-section a {
  color: var(--black);
}
.sitemap-ttl {
  font-size: var(--fs-ttl-m);
  padding: 0.3em 0;
  border-bottom: var(--cl-main) 1px solid;
}
.sitemap-list li a::before {
  content: '';
  border-top: 2px solid var(--black);
  width: 0.6em;
  margin-right: 0.5em;
}
.sitemap-children-list {
  margin: 1em 0 0 0;
  padding-left: 0.5em;
}
.sitemap-children-list li a {
  position: relative;
  display: inline-block;
  padding: 0.5em 1em 0.5em 0;
  font-size: var(--fs-default);
}
.sitemap-children-list li a::before {
  font-family: 'Font Awesome 6 Free';
  margin-right: 0.8em;
  content: '\f054';
  font-weight: 900;
  font-size: 0.8em;
  color: var(--cl-main);
  text-align: right;
}

@media only screen and (max-width: 1024px) {
  .sitemap-header {
    padding: 10px 5px;
  }
  .col-4-2-1.col-sitemap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
  }
}
@media only screen and (max-width: 599px) {
  .sitemap-inner {
    padding: 4em 0;
  }
}

/* footer
---------------------------------------------------------------- */
.footer-cta {
  position: relative;
  background: linear-gradient(to left, var(--cl-accent), var(--cl-main));
  color: var(--white);
  text-align: center;
  z-index: 2;
}
.footer-cta > div{
  position: relative;
}
.footer-cta > div::after{
  top: 0;
  content: "";
  position: absolute;
  background: url(../images/common/contact_back.svg) center center / contain no-repeat;
  aspect-ratio: 7/6;
  width: 347px;
  right: 0;
  z-index: -1;
}
.footer-cta h2{
  font-size: 6rem;
}
.footer-cta p{
  font-size: var(--fs-ttl-s);
  font-weight: bold;
}
.footer-cta a{
  margin-left: auto;
  margin-right: auto;
  font-size: var(--fs-ttl-xs);
  text-align: center;
  max-width: 400px;
  display: block;
  padding: 1.2em 0.5em;
  background-color: var(--white);
  color: var(--cl-main);
  border-radius: var(--box-br);
  box-shadow: 4px 4px 0 var(--cl-main);
}
.footer-cta a:hover {
  opacity: 1;
  transform: translateY(4px) translateX(4px);
  box-shadow: none;
}
@media only screen and (max-width: 599px){
  .footer-cta h2{
    font-size: clamp(4.5rem, 10vw, 6rem);
  }
}

.footer {
  position: relative;
  background: var(--white);
  width: 100%;
  padding: 1em 0 2em;
}
.footer > div {
  display: flex;
}
.footer a {
  color: var(--black);
}
.footer-logo {
  text-indent: -9999px;
  width: 170px;
  aspect-ratio: 50 / 21;
  min-height: 0;
  margin-right: 2.5em;
}
.footer-logo a {
  display: block;
  background: url(../images/common/logo.svg) center left no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.footer-link-list {
  flex-wrap: wrap;
  column-gap: 2em;
  row-gap: 1em;
}
.footer-link-list li a {
  display: flex;
  align-items: center;
  font-size: var(--fs-notes);
}
.footer-copyright {
  font-size: 1.2rem;
  padding: 0.5em 0;
  text-align: center;
}
@media only screen and (max-width: 599px){
  .footer > div {
    flex-direction: column;
    align-items: center;
  }
  .footer-logo {
    max-width: 260px;
    width: 100%;
    aspect-ratio: 50 / 21;
    margin-right: 0;
  }
  .footer-link-list {
    margin-top: var(--space-xs);
    column-gap: 1em;
    row-gap: 0.5em;
  }
  .footer-link-list li a {
    padding: 0.1em 1em;
  }
}

/* トップページ Top
---------------------------------------------------------------- */
.top-hero {
  max-width: 1400px;
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: flex;
  height: 58vw;
  max-height: 600px;
  min-height: 425px;
}
.top-main-img{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 1;
}
.top-main-img img{
  height: 100%;
}
.top-main-copy{
  position: absolute;
  background-color: transparent;
  z-index: 2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: fit-content;
}
.top-main-copy img{
  max-width: 560px;
  width: 85%;
}
@media only screen and (max-width: 599px) {
  .top-hero {
    margin: 0 auto;
    flex-direction: column;
    height: fit-content;
    min-height: 0;
  }
  .top-main-img{
    position: static;
    height: auto;
    width: 100%;
    padding-right: 3%;
    padding-left: 3%;
  }
  .top-main-img img{
    height: auto;
    width: 100%;
  }
  .top-main-copy{
    position: relative;
    background-color: transparent;
    top: 0;
    transform: none;
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .top-main-copy img{
    max-width: 500px;
    width: 100%;
  }
}
/* top-news ----------------------------- */
.top-news{
  padding: 1em 0;
}
.top-news > div{
  display: flex;
  justify-content: space-between;
}
.top-news .article-wrap{
  display: flex;
  align-items: center;
  width: 100%;
}
.top-news .article-wrap div{
  display: flex;
  align-items: center;
}
.top-news .btn-archive{
  color: var(--cl-main);
  width: fit-content;
  text-wrap: nowrap;
  margin-left: 5px;
  display: flex;
  align-items: center;
}
.top-news .btn-archive:after{
  display: block;
  content: "";
  margin-left: 5px;
  width: 1.2em;
  height: 1.2em;
  background: url(../images/common/arrow.svg) center center / contain no-repeat;
}
@media only screen and (max-width: 768px){
  .top-news > div{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .top-news .article-wrap{
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-left: 0;
    row-gap :10px;
  }
  .top-news .btn-archive{
    margin-top: var(--space-sl);
    margin-left: 0;
  }
}

/* top-about ----------------------------- */
.about-col{
  position: relative;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.about-col > div{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-col .col-text{
  /* padding-right: 15px; */
  padding-right: 0;
}
.about-col .col-text p{
  color: var(--cl-main);
  font-size: var(--fs-ttl-xs);
}
.about-col .col-img{
  width: 100%;
  height: calc((50vw - 7px) * 0.666);
}
.about-col .col-img img{
  position: absolute;
  right: 0;
  width: calc(50vw - 7px);
}
@media only screen and (min-width: 1400px){
  .about-col .col-img img{
    width: 693px;
  }
  .about-col .col-img{
    height: 461px;
  }
}
@media only screen and (max-width: 1070px){
  .about-col .col-text{
    padding-right: 20px;
  }
  .about-col br{
    display: none;
  }
}
@media only screen and (max-width: 768px){
  .about-col > div{
    display: block;
    grid-template-columns: 1fr 1fr;
  }
  .about-col .col-img{
    margin-top: var(--space-ms);
    width: 100%;
    height: auto;
  }
  .about-col .col-img img{
    position: static;
    width: 100%;
  }

  .about-col .col-text{
    padding-right: 0;
  }
  .about-col br{
    display: block;
  }
}
@media only screen and (max-width: 500px){
  .about-col .col-text p span{
    display: inline;
  }
  .about-col br{
    display: none;
  }
}
.about-value{
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.about-value li{
  padding: 0.5em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid var(--cl-main);
  border-radius: var(--btn-br);
}
.about-value li p{
  text-align: center;
  font-size: var(--fs-ttl-xs);
  color: var(--cl-main);
}
.about-value-img{
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 599px){
  .about-value{
    display: block;
  }
  .about-value li + li{
    margin-top: var(--space-ss);
  }
}

/* top-value ----------------------------- */
.value-grid{
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.value-col-item{
  background-color: var(--white);
  border: 2px solid var(--cl-main);
  border-radius: var(--box-br);
  padding: 2em 1em;
}
.value-col-item img{
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100px;
}
.value-col-item h4{
  margin-top: var(--space-ms);
  font-size: var(--fs-ttl-xs);
  color: var(--cl-main);
  text-align: center;
}
.value-col-item p:first-of-type{
  margin-top: var(--space-ms);
}

@media only screen and (max-width: 768px){
  .value-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 599px){
  .value-grid{
    display: block;
  }
  .value-col-item + .value-col-item{
    margin-top: var(--space-sl);
  }
}

/* サブページ（共通） Sub-common
---------------------------------------------------------------- */
.sub-hero {
  position: relative;
  padding: 80px 0;
  width: 100%;
  line-height: 1.4;
  background-size: cover;
}
.sub-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 0;
  background: url(../images/common/sub-hero.svg) center center / contain no-repeat;
  height: 90%;
  aspect-ratio: 163 / 150;
  min-height: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px){
  .sub-hero {
    padding: 40px 0;
  }
  .sub-hero::after {
    height: 80%;
  }
}
@media only screen and (max-width: 400px){
  .sub-hero::after {
    height: 70%;
  }
}

/* 投稿（共通）archive common
---------------------------------------------------------------- */
/* カテゴリーラベル */
.cat-label {
  display: block;
  padding: 0.2em 1em;
  font-size: var(--fs-notes);
  font-weight: bold;
  color: var(--white);
  background-color: var(--cl-main-02);
  text-align: center;
  border-radius: 999px;
  height: fit-content;
  margin-right: 10px;
  text-wrap: nowrap;
  width: fit-content;
}
.cat-label a{
  color: var(--white);
}

/* 記事リスト */
.article-list li {
  border-bottom: var(--l-gray) 1px solid;
  transition: 0.3s all;
  border-radius: var(--box-br);
  overflow: hidden;
  box-shadow: 4px 4px 4px rgba(22,133,167 ,0.1);
}
.article-list li img{
  width: 100%;
  height: auto;
  aspect-ratio: 26 / 15;
  min-height: 0;
  object-fit: cover;
}
.article-list li:hover {
  transform: scale(1.02);
  background: #f4f4f4;
}
.article-list li a {
  display: block;
  color: var(--black);
}
.article-list li:hover a {
  opacity: 1;
}
.article-info{
  padding : 1.5em 1em;
}

/* 記事日付 */
.article-date {
  text-wrap: nowrap;
  position: relative;
  display: block;
  color: var(--d-gray);
  font-size: var(--fs-notes);
  font-weight: bold;
  margin-right: 20px;
}
.article-date.update {
  margin-left: 0.5em;
}
.article-date.update::before {
  display: inline-block;
  font-family: 'Font Awesome 6 Free';
  font-size: 1em;
  content: '\f2f1';
  font-weight: 900;
  color: var(--d-gray);
}
/* 記事タイトル */
.article-ttl {
  color: var(--black);
}
.article-list .article-date {
  margin-left: 0.3em;
}

/* カテゴリー、タームリスト */
.se-cat-list {
  margin-bottom: 3em;
}
.cat-list-wrap {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cat-list {
  display: flex;
  justify-content: center;
  font-size: var(--fs-default);
  gap: 0.5em;
  margin: 0 auto;
  width: max-content;
  flex-wrap: nowrap;
}
.cat-list li {
  text-align: center;
}
.cat-list li a {
  font-size: var(--fs-default);
  color: var(--d-gray);
  padding: 0.5em 2em;
  border: 1px solid var(--gray);
  border-radius: 999px;
}
.cat-list li.current a {
  background: var(--cl-base);
  color: var(--cl-main);
  border: 1px solid var(--cl-main);
}
.cat-area {
  position: relative;
}

.cat-area::before,
.cat-area::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
}
.cat-area.is-scroll::before {
  width: 20%;
  left: -2px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 0) 100%);
}
.cat-area.is-scroll.touch-left::before,
.cat-area.is-scroll.touch-right::after{
  content: none;
}
.cat-area.is-scroll::after {
  width: 20%;
  right: -2px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 85%);
}

@media only screen and (max-width: 1024px) {
  .cat-list li a {
    /* padding: 0.5em 1em; */
  }
}
@media only screen and (max-width: 599px) {
  .cat-area {
    margin-left: calc(50% - 50vw);
  }
  .cat-list-wrap {
    padding: 0em 0 0em 1.5em;
  }
  .cat-list-wrap::-webkit-scrollbar {
    display: none;
  }
}

/* 投稿（共通）single common
---------------------------------------------------------------- */
.type-single .l-primary{
  border-top: 2px solid var(--cl-main);
}
.type-single .article-content {
  padding: 1.5em 0;
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}
.type-single .article-head{
  padding: 1.5em 0;
}
.type-single .article-head > div{
  display: flex;
  align-items: center;
}
.d-768-pc{
  display: block;
}
.d-768-tb{
  display: none;
}
@media only screen and (max-width: 768px){
  .type-single .l-primary{
    border-top: none;
  }
  .d-768-pc{
    display: none;
  }
  .d-768-tb{
    display: block;
  }
}


/* 投稿サイドバー（共通）sidebar common
---------------------------------------------------------------- */
.sidebar-section {
  border-top: 2px solid var(--cl-main);
  padding-top: 1.5em;
}
.l-secondary .sidebar-section + .sidebar-section {
  margin-top: 1.5em;
}
.sidebar-section-ttl {
  font-size: var(--fs-ttl-s);
  margin-bottom: 1em;
}
.sidebar-section ul li a {
  display: block;
  font-size: 1.4rem;
  color: var(--black);
  padding: 1em 0;
  border-bottom: var(--gray) 1px solid;
}

.sticky-area {
  position: -webkit-sticky; /*Safari*/
  position: sticky;
  top: calc(var(--header-height) + 20px);
  height: auto;
}

/* 法人概要ページ */
.page-profile dl{
  display: flex;
  flex-wrap: wrap;
}
.page-profile dt{
  width: 20%;
  padding: 1.2em 1em;
  border-bottom: 1px solid var(--gray);
  text-wrap: nowrap;
}
.page-profile dd{
  width: 80%;
  padding: 1.2em 1em;
  border-bottom: 1px solid var(--gray);
}
@media only screen and (max-width: 599px){
  .page-profile dt{
    width: 100%;
    padding:1em 1em 0 1em;
    border-bottom: none;
    text-wrap: nowrap;
  }
  .page-profile dd{
    width: 100%;
    padding: 10px 1em 1em 30px;
    border-bottom: 1px solid var(--gray);
  }
}

/* お問い合わせ完了 */
.page-complete h2{
  text-align: center;
  font-family:var(--fs-ttl-ll);
  padding-bottom: 0.8em;
  position: relative;
} 
.page-complete h2::after{
  position: absolute;
  content: "";
  width: 120px;
  height: 2px;
  background-color: var(--cl-main);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
} 
.page-complete .b-wrapper-reading{
  max-width: 620px;
}


/* サイトマップ */
.wsp-pages-title{
  font-size: var(--fs-ttl-m);
  font-weight: bold;
  padding: 0.5em 0;
  border-bottom: 2px solid var(--cl-main);
}
.wsp-pages-list{
  margin-top: var(--space-ms);
}
.wsp-pages-list a{
  color: var(--black);
  position: relative;
  margin-left: 0;
  padding: 0.2em 0;
  padding-left: 20px;
  display: inline-block;
}
.wsp-pages-list a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid var(--cl-main);
  border-left: 1px solid var(--cl-main);
  transform: translateY(-50%) rotate(135deg);
}

