@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/*	layout
その他パーツ
------------------------------------ */
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/*	layout
その他パーツ
------------------------------------ */
/*	font-size
スマホ時にフォントサイズを自動で変更
※13px以下は文字が読めないためPC/SP同じサイズ
------------------------------------ */
/* =========================================

    main layout  all
    <main></main>箇所のcss

========================================= */
/*	com parts  PC
全ページ共通で使用したいパーツ
------------------------------------ */
.com-inner,
.bread-inner {
  width: 100%;
  max-width: 1080px;
  margin: auto;
}

.com-sub-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 0;
}

.com-tel-num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  font-size: 3.8rem;
  letter-spacing: 0.1em;
  color: #442800;
}
@media screen and (max-width: 767px) {
  .com-tel-num {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.com-tel-txt {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  margin-right: 15px;
  color: #579e5c;
}
@media screen and (max-width: 767px) {
  .com-tel-txt {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.com-ttl01 {
  text-align: center;
}
.com-ttl01-main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 38px;
  font-size: 3.8rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .com-ttl01-main {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.com-ttl01-sub {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  margin-top: 10px;
  color: #579e5c;
}
@media screen and (max-width: 767px) {
  .com-ttl01-sub {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.com-ttl02 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  text-align: center;
  padding: 11px 15px;
  color: #579e5c;
  background-color: #ecfded;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .com-ttl02 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.com-ttl03 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  padding-bottom: 5px;
  color: #579e5c;
  border-bottom: 2px solid #579e5c;
}
@media screen and (max-width: 767px) {
  .com-ttl03 {
    font-size: 20px;
    font-size: 2rem;
  }
}

.com-btn01 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
  width: 750px;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 25px 15px;
  color: #fff;
  background-color: #f0c71f;
  border-radius: 41px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .com-btn01 {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
.com-btn01::after {
  position: absolute;
  content: "";
}
.com-btn01::after {
  transition: transform 0.3s ease;
}
.com-btn01:hover::after {
  transform: translate(5px, -50%);
}
.com-btn01::after {
  width: 49px;
  height: 14px;
  transform: translateY(-50%);
  top: 50%;
  right: 60px;
  background: url(/img/all/arw.png) no-repeat;
  background-size: 100%;
}

.com-mail {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 400px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #579e5c;
  border-radius: 36px;
  position: relative;
}
.com-mail::after {
  position: absolute;
  content: "";
}
.com-mail::after {
  transition: transform 0.3s ease;
}
.com-mail:hover::after {
  transform: translate(5px, -50%);
}
.com-mail::after {
  width: 20px;
  height: 14px;
  transform: translateY(-50%);
  top: 50%;
  right: 40px;
  background: url(/img/all/arw02.png) no-repeat;
  background-size: 100%;
}

.com-line {
  transition: all 0.5s ease;
}
.com-line:hover {
  transform: scale(0.95);
}

.com-txt p:nth-of-type(n + 2) {
  margin-top: 35px;
}

.com-table01 {
  width: 100%;
  border-collapse: separate;
  border-top: 2px solid #579e5c;
  border-bottom: 2px solid #579e5c;
}
.com-table01 tr:nth-of-type(n + 2) th {
  border-top: 2px dotted #cdcdcd;
}
.com-table01 tr:nth-of-type(n + 2) td {
  border-top: 2px dotted #cdcdcd;
}
.com-table01 th {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  white-space: pre-line;
  width: 130px;
  letter-spacing: 0.12em;
  padding: 22px 10px;
  color: #579e5c;
}
.com-table01 td {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  white-space: pre-line;
  letter-spacing: 0.12em;
  padding: 22px 10px;
  color: #442800;
}
.com-table01 a {
  color: #442800;
}

.com-table02 tr:first-of-type th {
  border-radius: 10px 0 0 0;
}
.com-table02 tr:first-of-type td {
  color: #579e5c;
  background-color: #63564f;
}
.com-table02 tr:first-of-type td:last-of-type {
  border-radius: 0 10px 0 0;
}
.com-table02 tr:last-of-type th {
  border-radius: 0 0 0 10px;
  border-bottom: none;
}
.com-table02 tr:last-of-type td {
  border-bottom: none;
}
.com-table02 tr:last-of-type td:last-of-type {
  border-radius: 0 0 0 10px;
}
.com-table02 th {
  width: 142px;
  text-align: center;
  padding: 10px 10px;
  background-color: #f4f4f4;
  border-bottom: 1px solid #898989;
}
.com-table02 td {
  width: 142px;
  padding: 10px 10px;
  text-align: center;
  border-left: 1px solid #898989;
  border-bottom: 1px solid #898989;
}

.com-no-post {
  font-size: 28px;
  font-size: 2.8rem;
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .com-no-post {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.com-no-img {
  width: 90% !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.com-no-img-bg {
  text-align: center;
  background-color: #ccc !important;
}

.com-main-color {
  color: #579e5c;
}

.com-sub-color {
  color: #f0c71f;
}

.clamp1 {
  overflow: hidden;
  display: -webkit-box; /* -webkitを使用するために必要 */
  -webkit-box-orient: vertical; /* 3点リーダー */
  -webkit-line-clamp: 1; /* 行数指定 */
}

.clamp2 {
  overflow: hidden;
  display: -webkit-box; /* -webkitを使用するために必要 */
  -webkit-box-orient: vertical; /* 3点リーダー */
  -webkit-line-clamp: 2; /* 行数指定 */
}

.clamp3 {
  overflow: hidden;
  display: -webkit-box; /* -webkitを使用するために必要 */
  -webkit-box-orient: vertical; /* 3点リーダー */
  -webkit-line-clamp: 3; /* 行数指定 */
}

.com-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  width: 100%;
}
.com-tag-list-item {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
  color: #579e5c;
}
@media screen and (max-width: 767px) {
  .com-tag-list-item {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.com-time {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
  flex-shrink: 0;
  padding-right: 20px;
  color: #579e5c;
}
@media screen and (max-width: 767px) {
  .com-time {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.com-svg-txt {
  font-size: 16px;
  font-size: 1.6rem;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .com-svg-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.com-pre {
  white-space: pre-line;
}

/* =========================================
    top  PC
    top-about
========================================= */
#top-about .bg {
  background: url(/img/top/about-bg.jpg) no-repeat center top/100%;
  overflow: hidden;
}
#top-about .img {
  margin-top: 45px;
  position: relative;
}
#top-about .img::before {
  position: absolute;
  content: "";
}
#top-about .img::after {
  position: absolute;
  content: "";
}
#top-about .img::before {
  width: 131px;
  height: 131px;
  top: 11px;
  left: -31px;
  background: url(/img/top/about-img-deco01.png) no-repeat;
  background-size: 100%;
}
#top-about .img::after {
  width: 157px;
  height: 155px;
  bottom: -7px;
  right: -37px;
  background: url(/img/top/about-img-deco02.png) no-repeat;
  background-size: 100%;
}
#top-about .img-deco {
  position: absolute;
  left: -17px;
  bottom: -73px;
}
#top-about .txt {
  line-height: 2.88;
  text-align: center;
  margin-top: 70px;
}
#top-about .btn {
  display: block;
  margin: 70px auto 0;
}

/* =========================================
    top  PC
    top-service
========================================= */
#top-service .bg {
  background: url(/img/top/service-bg-top.png) no-repeat center top, url(/img/top/service-bg.jpg) no-repeat center/cover;
}
@media screen and (min-width: 1921px) {
  #top-service .bg {
    background: url(/img/top/service-bg-top.png) no-repeat center top/100%, url(/img/top/service-bg.jpg) no-repeat center/cover;
  }
}
#top-service .inner {
  position: relative;
}
#top-service .inner::before {
  position: absolute;
  content: "";
}
#top-service .inner::after {
  position: absolute;
  content: "";
}
#top-service .inner::before {
  width: 196px;
  height: 203px;
  top: 267px;
  left: -1.6vw;
  background: url(/img/top/service-deco01.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1250px) {
  #top-service .inner::before {
    left: -5px;
  }
}
#top-service .inner::after {
  width: 273px;
  height: 300px;
  top: 273px;
  right: -5.625vw;
  background: url(/img/top/service-deco02.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1250px) {
  #top-service .inner::after {
    width: 243px;
    height: 270px;
    top: 273px;
    right: -10px;
  }
}
#top-service .ttl-main {
  color: #fff;
}
#top-service .ttl-sub {
  color: #fff;
}
#top-service .txt {
  line-height: 2.88;
  text-align: center;
  margin-top: 35px;
  color: #fff;
}
#top-service .list {
  gap: 60px;
  margin-top: 75px;
}
#top-service .list-item {
  width: 510px;
  height: 450px;
  text-align: center;
  padding: 50px 38px 0;
  background-color: #fff;
  border-radius: 28px;
  box-shadow: 0 7px 0 #4faf31;
  transition: all 0.3s ease;
}
#top-service .list-item:hover {
  transform: translateY(7px);
  opacity: 0.9;
  box-shadow: 0 0 0 #579e5c;
}
#top-service .list-img {
  width: 100%;
}
#top-service .list-ttl {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  margin-top: 20px;
  padding: 5px 58px;
  color: #579e5c;
  background: url(/img/top/service-txt-deco01.png) no-repeat left center, url(/img/top/service-txt-deco02.png) no-repeat right center;
}
@media screen and (max-width: 767px) {
  #top-service .list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

/* =========================================
    top  PC
    top-voice
========================================= */
#top-voice .bg {
  background: url(/img/top/voice-bg-btm.png) no-repeat center bottom/100%, url(/img/top/voice-bg.jpg) no-repeat center bottom/100%, #fff;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1921px) {
  #top-voice .bg {
    background: url(/img/top/voice-bg-btm-lg.png) no-repeat center bottom/100%, url(/img/top/voice-bg.jpg) no-repeat center bottom/100%, #fff;
  }
}
#top-voice .bg::before {
  position: absolute;
  content: "";
}
#top-voice .bg::before {
  width: 100%;
  height: 817px;
  transform: translateX(-50%);
  left: 50%;
  top: -124px;
  background: url(/img/top/voice-bg-top.png) no-repeat;
  background-size: 100%;
  z-index: -1;
}
@media screen and (min-width: 1921px) {
  #top-voice .bg::before {
    height: 42.2vw;
  }
}
#top-voice .list {
  gap: 32px;
  min-height: 28.6vw;
  margin-top: 45px;
}
@media screen and (min-width: 1921px) {
  #top-voice .list {
    min-height: 550px;
  }
}
#top-voice .list-item {
  width: 100%;
  padding: 42px 50px 38px;
  background-color: #fcfae6;
  border-radius: 21px;
}
#top-voice .list-ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  margin-top: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cdcdcd;
}
@media screen and (max-width: 767px) {
  #top-voice .list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#top-voice .list-txt {
  line-height: 2.88;
  margin-top: 15px;
}
#top-voice .evaluation {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #top-voice .evaluation {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#top-voice .evaluation-color {
  color: #f0c71f;
}
#top-voice .btn {
  display: block;
  margin: 60px auto 0;
}

/* =========================================
    top  PC
    top-question
========================================= */
#top-question .bg {
  background: url(/img/top/question-deco03.png) no-repeat calc(100% - 13.5vw) calc(100% - 4px), #fcfae6;
  overflow: hidden;
}
#top-question .inner {
  position: relative;
}
#top-question .inner::before {
  position: absolute;
  content: "";
}
#top-question .inner::after {
  position: absolute;
  content: "";
}
#top-question .inner::before {
  width: 295px;
  height: 345px;
  top: 102px;
  left: -4.16vw;
  background: url(/img/top/question-deco01.png) no-repeat;
  background-size: 100%;
}
#top-question .inner::after {
  width: 232px;
  height: 201px;
  top: 213px;
  right: -13.5vw;
  background: url(/img/top/question-deco02.png) no-repeat;
  background-size: 100%;
}
#top-question .wrap {
  margin-top: 50px;
  gap: 27px;
}
#top-question .wrap-txt {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 418px;
  text-align: center;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #442800;
  border-radius: 5px;
  box-shadow: 3px 2px 0 #442800;
  position: relative;
}
#top-question .wrap-txt::after {
  position: absolute;
  content: "";
}
#top-question .wrap-txt::after {
  width: 33px;
  height: 19px;
  transform: translateX(-50%);
  left: 50%;
  bottom: -19px;
  background: url(/img/top/question-arw.png) no-repeat;
  background-size: 100%;
}
#top-question .txt {
  text-align: center;
  line-height: 2.88;
  margin-top: 45px;
}
#top-question .btn {
  display: block;
  margin: 55px auto 0;
}

/* =========================================
    top  PC
    top-contact
========================================= */
#top-contact .bg {
  background-color: #63564f;
  position: relative;
  z-index: 1;
}
#top-contact .bg::before {
  position: absolute;
  content: "";
}
#top-contact .bg::before {
  width: 420px;
  height: 420px;
  transform: translateX(-50%);
  left: 50%;
  top: -70px;
  background-color: #63564f;
  border-radius: 50%;
  z-index: -1;
}
#top-contact .inner {
  position: relative;
}
#top-contact .inner::before {
  position: absolute;
  content: "";
}
#top-contact .inner::after {
  position: absolute;
  content: "";
}
#top-contact .inner::before {
  width: 219px;
  height: 263px;
  top: 110px;
  left: -3.85vw;
  background: url(/img/top/contact-dec01.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1200px) {
  #top-contact .inner::before {
    left: -5px;
  }
}
#top-contact .inner::after {
  width: 145px;
  height: 159px;
  top: 177px;
  right: -3.49vw;
  background: url(/img/top/contact-dec02.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1200px) {
  #top-contact .inner::after {
    right: -5px;
  }
}
#top-contact .ttl {
  position: relative;
}
#top-contact .ttl::before {
  position: absolute;
  content: "";
}
#top-contact .ttl::before {
  width: 86px;
  height: 34px;
  transform: translateX(-50%);
  left: 50%;
  top: -65px;
  background: url(/img/top/contact-ttl-deco.png) no-repeat;
  background-size: 100%;
}
#top-contact .ttl-main {
  color: #fff;
}
#top-contact .ttl-sub {
  color: #fff;
}
#top-contact .txt {
  text-align: center;
  line-height: 2.88;
  margin-top: 35px;
  color: #fff;
}
#top-contact .wrap {
  width: 100%;
  height: 172px;
  gap: 40px;
  margin-top: 65px;
  background-color: #fff;
  border: 8px solid #579e5c;
  border-radius: 21px;
}

/* =========================================
    top  PC
    top-company
========================================= */
#top-company .bg {
  background: url(/img/top/company-bg.jpg) no-repeat center top;
}
@media screen and (min-width: 1921px) {
  #top-company .bg {
    background: url(/img/top/company-bg.jpg) no-repeat center top/100%;
  }
}
#top-company .inner {
  position: relative;
}
#top-company .inner::after {
  position: absolute;
  content: "";
}
#top-company .inner::after {
  width: 19.5vw;
  height: 19.8vw;
  right: -9.1vw;
  bottom: -7.7vw;
  background: url(/img/top/company-deco.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1350px) {
  #top-company .inner::after {
    width: 19.5vw;
    height: 19.8vw;
    right: -10px;
    bottom: -75px;
  }
}
#top-company .wrap {
  margin-top: 50px;
  gap: 50px;
}
#top-company .map {
  width: 433px;
  height: 353px;
  flex-shrink: 0;
}
#top-company .map iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
}
#top-company .map iframe {
  border-radius: 10px;
}

/* =========================================
    top  PC
    top-news
========================================= */
#top-news .bg {
  background: url(/img/top/news-bg-top.png) no-repeat top center, #fcfae6;
}
@media screen and (min-width: 1921px) {
  #top-news .bg {
    background: url(/img/top/news-bg-top.png) no-repeat top center/100%, #fcfae6;
  }
}
#top-news .container-box {
  width: 255px;
  flex-shrink: 0;
  margin-top: 15px;
  position: relative;
}
#top-news .ttl {
  text-align: left;
}
#top-news .list {
  width: 100%;
  margin-left: 30px;
}
#top-news .list-item:last-of-type .list-link {
  background: none;
}
#top-news .list-link {
  width: 100%;
  padding: 23px 0 30px;
  color: #442800;
  background: url(/img/top/news-deco.png) no-repeat left bottom;
}
#top-news .list-ttl {
  margin-top: 3px;
}
#top-news .btn {
  width: 255px;
  margin-top: 90px;
}
#top-news .btn::after {
  width: 20px;
  height: 14px;
  right: 35px;
  background: url(/img/all/arw02.png) no-repeat center/100%;
}

/* =========================================

    sub layout  PC
    下層ページのPC時css
		sub-pc

========================================= */
/* =========================================
    sub  PC
    sub-about
========================================= */
#sub-about .bg {
  overflow: hidden;
}
#sub-about .wrap {
  gap: 85px;
  margin-top: 75px;
}
#sub-about .box {
  width: 100%;
}
#sub-about .box-ttl {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  padding: 5px 52px;
  color: #579e5c;
  background: url(/img/top/service-txt-deco01.png) no-repeat left center, url(/img/top/service-txt-deco02.png) no-repeat right center;
}
@media screen and (max-width: 767px) {
  #sub-about .box-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-about .txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.375;
  letter-spacing: 0.08em;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #sub-about .txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-about .img {
  flex-shrink: 0;
  position: relative;
}
#sub-about .img::before {
  position: absolute;
  content: "";
}
#sub-about .img::after {
  position: absolute;
  content: "";
}
#sub-about .img::before {
  width: 131px;
  height: 131px;
  top: -65px;
  right: -54px;
  background: url(/img/top/about-img-deco01.png) no-repeat;
  background-size: 100%;
}
#sub-about .img::after {
  width: 157px;
  height: 155px;
  bottom: -63px;
  left: -45px;
  background: url(/img/top/about-img-deco02.png) no-repeat;
  background-size: 100%;
}
#sub-about .img img {
  border-radius: 28px;
}

#sub-strengths .bg {
  background: url(/img/about/strengths-bg-top.png) no-repeat center top/100%, url(/img/about/strengths-bg-btm.png) no-repeat center bottom/100%, url(/img/about/strengths-bg.png) no-repeat center/cover;
}
#sub-strengths .inner {
  position: relative;
}
#sub-strengths .inner::after {
  position: absolute;
  content: "";
}
#sub-strengths .inner::after {
  width: 311px;
  height: 232px;
  top: 302px;
  right: -3.14vw;
  background: url(/img/about/strengths-deco.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1200px) {
  #sub-strengths .inner::after {
    right: 0;
  }
}
#sub-strengths .ttl-main {
  color: #fff;
}
#sub-strengths .ttl-sub {
  color: #fff;
}
#sub-strengths .list {
  margin-top: 45px;
}
#sub-strengths .list-item {
  width: 100%;
  padding: 40px 50px 60px;
  background-color: #fff;
  border-radius: 28px;
  box-shadow: 0 7px 0 #579e5c;
}
#sub-strengths .list-item:nth-of-type(n + 2) {
  margin-top: 38px;
}
#sub-strengths .list-txt {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 2.38;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  #sub-strengths .list-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#sub-staff .list {
  margin-top: 50px;
}
#sub-staff .list-item {
  width: 100%;
  gap: 80px;
  padding: 40px 50px 50px;
  background-color: #fcfae6;
  border-radius: 21px;
}
#sub-staff .list-item:nth-of-type(n + 2) {
  margin-top: 50px;
}
#sub-staff .list-wrap {
  width: 100%;
}
#sub-staff .list-ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  padding-bottom: 20px;
  border-bottom: 1px solid #cdcdcd;
}
@media screen and (max-width: 767px) {
  #sub-staff .list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-staff .list-txt {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 2.35;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #sub-staff .list-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-staff .list-img {
  width: 400px;
  height: 400px;
  flex-shrink: 0;
  margin-top: 10px;
}
#sub-staff .list-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sub-staff .list-img img {
  border-radius: 28px;
}
#sub-staff .table {
  border-collapse: separate;
  border-spacing: 0 11px;
  margin-top: 11px;
}
#sub-staff .table th {
  font-size: 16px;
  font-size: 1.6rem;
  width: 110px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  background-color: #579e5c;
  border-radius: 13px;
}
@media screen and (max-width: 767px) {
  #sub-staff .table th {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-staff .table td {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  padding-left: 11px;
}
@media screen and (max-width: 767px) {
  #sub-staff .table td {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#sub-company .bg {
  background: url(/img/about/strengths-bg-top.png) no-repeat center top/100%, url(/img/about/company-bg.jpg) no-repeat center top, #fcfae6;
}
@media screen and (min-width: 1921px) {
  #sub-company .bg {
    background: url(/img/about/strengths-bg-top.png) no-repeat center top/100%, url(/img/about/company-bg.jpg) no-repeat center top/100%, #fcfae6;
  }
}
#sub-company .inner {
  position: relative;
}
#sub-company .inner::after {
  position: absolute;
  content: "";
}
#sub-company .inner::after {
  width: 19.5vw;
  height: 19.8vw;
  right: -9.21vw;
  bottom: -1.2vw;
  background: url(/img/top/company-deco.png) no-repeat;
  background-size: 100%;
  z-index: 2;
}
@media screen and (max-width: 1350px) {
  #sub-company .inner::after {
    right: 0;
  }
}
#sub-company .wrap {
  margin-top: 50px;
  gap: 50px;
}
#sub-company .img {
  flex-shrink: 0;
  border-radius: 10px;
}

#sub-banner .bg {
  background: url(/img/all/banner-bg.jpg) no-repeat center/cover;
}
#sub-banner .btn {
  width: 520px;
  height: 82px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================================
    sub  PC
    sub-service
========================================= */
#sub-btn-list .list {
  margin-top: 70px;
  gap: 38px 75px;
}
#sub-btn-list .list-link {
  width: 502px;
}

#sub-service .bg {
  background: url(/img/service/service-bg-top.png) no-repeat center top, #fcfae6;
}
@media screen and (min-width: 1921px) {
  #sub-service .bg {
    background: url(/img/service/service-bg-top.png) no-repeat center top/100%, #fcfae6;
  }
}
#sub-service .inner {
  position: relative;
}
#sub-service .inner::before {
  position: absolute;
  content: "";
}
#sub-service .inner::before {
  width: 370px;
  height: 274px;
  top: -22px;
  left: -10.5vw;
  background: url(/img/service/service-deco01.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1375px) {
  #sub-service .inner::before {
    left: -10px;
  }
}
#sub-service .container-box {
  width: 100%;
  padding: 35px 50px 65px;
  background-color: #fff;
  border-radius: 28px;
  box-shadow: 0 7px 0 #579e5c;
}
#sub-service .container-box:nth-of-type(n + 2) {
  margin-top: 37px;
}
#sub-service .txt {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 2.35;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  #sub-service .txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-service .com-main-color {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}
#sub-service .wrap {
  width: 100%;
  text-align: center;
  margin-top: 50px;
  padding: 30px 30px 30px 87px;
  background-color: #fcfae6;
  border-radius: 30px;
}
#sub-service .wrap-ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  font-size: 2rem;
  display: inline-block;
  letter-spacing: 0.2em;
  padding: 5px 52px;
  color: #579e5c;
  background: url(/img/top/service-txt-deco01.png) no-repeat left center, url(/img/top/service-txt-deco02.png) no-repeat right center;
}
@media screen and (max-width: 767px) {
  #sub-service .wrap-ttl {
    font-size: 19px;
    font-size: 1.9rem;
  }
}
#sub-service .box {
  gap: 50px;
  margin-top: 15px;
}
#sub-service .img {
  flex-shrink: 0;
  margin-top: 5px;
  border-radius: 22px;
}
#sub-service .list-item {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: left;
  letter-spacing: 0.08em;
  padding-left: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sub-service .list-item {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-service .list-item::before {
  position: absolute;
  content: "";
}
#sub-service .list-item::before {
  width: 8px;
  height: 8px;
  left: 0;
  top: 8px;
  background-color: #579e5c;
  border-radius: 50%;
}
#sub-service .list-item:nth-of-type(n + 2) {
  margin-top: 15px;
}
#sub-service .list-item-sm {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #sub-service .list-item-sm {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

/* =========================================
    sub  PC
    sub-voice
========================================= */
#sub-voice .list {
  gap: 32px;
  min-height: 28.6vw;
  margin-top: 45px;
}
@media screen and (min-width: 1921px) {
  #sub-voice .list {
    min-height: 550px;
  }
}
#sub-voice .list-item {
  width: 100%;
  padding: 42px 50px 38px;
  background-color: #fcfae6;
  border-radius: 21px;
}
#sub-voice .list-ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  margin-top: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cdcdcd;
}
@media screen and (max-width: 767px) {
  #sub-voice .list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-voice .list-txt {
  line-height: 2.88;
  margin-top: 15px;
}
#sub-voice .evaluation {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #sub-voice .evaluation {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-voice .evaluation-color {
  color: #f0c71f;
}

/* =========================================
    sub  PC
    sub-question
========================================= */
#sub-question .bg {
  background-color: #fcfae6;
}
#sub-question .inner {
  position: relative;
}
#sub-question .inner::before {
  position: absolute;
  content: "";
}
#sub-question .inner::before {
  width: 237px;
  height: 260px;
  top: 78px;
  right: -1.875vw;
  background: url(/img/top/service-deco02.png) no-repeat;
  background-size: 100%;
}
#sub-question .list {
  margin-top: 70px;
}
#sub-question .list-item {
  width: 100%;
}
#sub-question .list-item:nth-of-type(n + 2) {
  margin-top: 60px;
}
#sub-question .list-top {
  width: 100%;
  padding: 12px 40px;
  background-color: #579e5c;
  border-radius: 35px;
}
#sub-question .list-q {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
  width: 46px;
  height: 46px;
  text-align: center;
  flex-shrink: 0;
  letter-spacing: 0.2em;
  line-height: 42px;
  color: #fff;
  background-color: #f0c71f;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #sub-question .list-q {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-question .list-ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  margin-left: 20px;
  margin-top: 4px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #sub-question .list-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
#sub-question .list-txt {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 2.35;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #sub-question .list-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/* =========================================
    sub  PC
    sub-contact  お問い合わせフォーム テンプレ
		他ページのtableなどデザインを併用する
========================================= */
#sub-method .bg {
  background-color: #fcfae6;
}
#sub-method .inner {
  position: relative;
}
#sub-method .inner::before {
  position: absolute;
  content: "";
}
#sub-method .inner::after {
  position: absolute;
  content: "";
}
#sub-method .inner::before {
  width: 219px;
  height: 263px;
  top: 100px;
  left: -3.64vw;
  background: url(/img/top/contact-dec01.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1200px) {
  #sub-method .inner::before {
    top: 50px;
    left: 0;
  }
}
#sub-method .inner::after {
  width: 145px;
  height: 159px;
  top: 170px;
  right: -3.64vw;
  background: url(/img/top/contact-dec02.png) no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 1200px) {
  #sub-method .inner::after {
    right: 0;
  }
}
#sub-method .txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.35;
  text-align: center;
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  #sub-method .txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-method .txt-color {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #4faf31;
}
#sub-method .wrap {
  width: 100%;
  margin: 60px auto 0;
  text-align: center;
  padding: 25px 15px 32px;
  background-color: #fff;
  border: 8px solid #579e5c;
  border-radius: 21px;
}
#sub-method .wrap-txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  color: #579e5c;
}
@media screen and (max-width: 767px) {
  #sub-method .wrap-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-method .com-tel {
  margin-bottom: 5px;
}

#sub-contact .bg {
  background: url(/img/all/contact-bg.png) no-repeat center top;
}
@media screen and (min-width: 1921px) {
  #sub-contact .bg {
    background: url(/img/all/contact-bg.png) no-repeat center top/100%;
  }
}

#contact-form .com-table01 {
  white-space: unset;
}
#contact-form .com-btn01 {
  width: 320px;
  display: flex;
  justify-content: center;
  margin: 50px auto 0;
  transition: all 0.5s ease;
}
#contact-form .com-btn01::after {
  display: none;
}
#contact-form .com-btn01:hover {
  transform: scale(0.95);
}

.contact-form-table {
  margin: 50px auto 0;
  width: 100%;
  max-width: 1080px;
  table-layout: fixed;
}
.contact-form-table th {
  width: 350px;
  padding: 15px;
  white-space: unset;
}
.contact-form-table td {
  padding: 15px;
  white-space: unset;
}
.contact-form-table td input {
  height: 25px;
  line-height: 25px;
  border: none;
  background-color: #f5f5f5;
}
.contact-form-table td textarea {
  border: none;
  background-color: #f5f5f5;
  resize: none;
}
.contact-form-table .sp-sm {
  font-size: 16px;
}

.select {
  display: inline-block;
  position: relative;
  border: 1px solid #eee;
  position: relative;
}
.select::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  transform: translateY(-50%);
  top: 50%;
  right: 20px;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #eee;
  border-bottom: 0;
}
.select-list {
  width: 200px;
  padding: 11px 15px;
  border: none;
  cursor: pointer;
}

.privacy-check {
  font-size: 15px;
}

.required-mark {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #4aafa3;
  background-color: unset;
}

.contact-recaptcha-wrap {
  width: 304px;
  margin: 50px auto 0;
}

.contact-submits-wrap {
  margin-top: 25px;
}
.contact-submits-wrap .back-btn::before {
  display: none;
}

/*==================================================
 入力フィールド
================================================== */
select,
textarea,
input[type=tel],
input[type=text],
input[type=email],
input[type=url] {
  width: 100%;
  max-width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  box-shadow: 0 1px 1px rgba(150, 150, 150, 0.1) inset;
  box-sizing: border-box;
}

select {
  padding: 7px 15px;
}

textarea {
  width: 100%;
  resize: vertical;
}

/* ボタン
-------------------------------------------------- */
input[type=button],
input[type=submit],
button {
  border: none;
  -webkit-appearance: none;
  transition: all 0.3s ease;
  /* Safariにのみ適用するスタイル */
}

input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.8;
  cursor: pointer;
}

input[type=button][disabled],
input[type=submit][disabled] {
  opacity: 0.4;
  pointer-events: none;
}

/* チェックボックス・ラジオボタン
-------------------------------------------------- */
input[type=radio],
input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

input[type=radio] + label,
input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  line-height: 30px;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}

input[type=radio] + label,
input[type=checkbox] + label {
  padding: 0 0 0 24px;
}

input[type=radio] + label::before,
input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #fff;
}

input[type=radio] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

input[type=checkbox] + label::before {
  border: 2px solid #ccc;
}

input[type=radio]:checked + label::after,
input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  display: block;
}

input[type=radio]:checked + label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #ff900e;
  border-radius: 8px;
}

input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #ff900e;
  border-bottom: 3px solid #ff900e;
  transform: rotate(-45deg);
}

input[type=checkbox] {
  display: none; /* デフォルトチェックボックスを完全に非表示 */
}

/*==================================================
	テーブル
================================================== */
/* スマホ表示時にはテーブルを縦向きにする */
@media screen and (max-width: 768px) {
  .contact-form-table,
  .contact-form-table tbody,
  .contact-form-table tr,
  .contact-form-table th,
  .contact-form-table td {
    width: auto;
    display: block;
  }
}
/* ご住所だけ2段なのでマージンを開ける */
input[name="items[address]"] {
  margin-top: 8px;
}

/* 「不正な送信です」「時間を空けて再度送信ください」などのセキュリティエラー文 */
.sec-error-text {
  line-height: 1.5em;
  margin-top: 50px;
  padding: 40px 10px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background: #ff900e;
}

.sec-error-link {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .sec-error-text {
    padding: 30px 10px;
    font-size: 4vw;
  }
  .sec-error-link {
    font-size: 5vw;
  }
}
/* 「任意」「必須」マーク */
.optional-mark,
.required-mark {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 5px;
  padding: 2px 10px;
  color: #fff;
  float: right;
}
@media screen and (max-width: 767px) {
  .optional-mark,
  .required-mark {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.optional-mark {
  background: #3498db;
}

.required-mark {
  background: #ff900e;
}

/* 「~が入力されていません」などの未記入エラー文 */
.error-text {
  margin: 0 0 4px;
  color: #ff900e;
}

/* 送信・確認ボタン */
.contact-submits-wrap {
  text-align: center;
}

/* プライバシーポリシー */
.inline-privacy-policy {
  height: 350px;
  margin: 16px 0;
  border: 1px solid #dfdfdf;
  background: #fff;
}

.inline-privacy-policy-inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  display: inline-block;
}

.inline-privacy-policy iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/*==================================================
	日付選択フォーム
================================================== */
.date-list {
  padding-left: inherit;
}

.date-list li {
  list-style: none;
  margin-bottom: 15px;
}

.date-list li p {
  margin-bottom: 5px;
}

/*==================================================
	画像アップロードフォーム
================================================== */
.upload-item-wrap {
  font-size: 13px;
  overflow: hidden;
}

.upload-item-wrap input[type=file] {
  display: none;
}

/* アップされた画像のサムネイル */
.upload-item-wrap .thumb {
  width: 220px;
  height: 220px;
  margin: 0 8px 0 0;
  position: relative;
  overflow: hidden;
  float: left;
}

.upload-item-wrap .thumb img {
  max-width: none;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/*選択・削除ボタン  */
.upload-item-wrap .ancion-btn-wrap {
  margin-top: 10px;
  float: left;
}

.upload-item-wrap .ancion-btn {
  margin: 0 0 8px;
  width: 110px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background: #e6e6e6;
  display: block;
}

.upload-item-wrap .select-file {
  background: #2ecc71;
}

.upload-item-wrap .deselect-file {
  background: #ff900e;
}

.upload-item-wrap .ancion-btn:hover {
  cursor: pointer;
}

/*添付ファイルの注意文  */
.upload-notice {
  margin-top: 10px;
  font-size: 0.8em;
}

/* =========================================
			top  PC
			top-privacy
========================================= */
.privacy-inner {
  padding-top: 30px;
}
.privacy-ttl {
  font-size: 24px;
  font-size: 2.4rem;
  margin: 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #579e5c;
}
@media screen and (max-width: 767px) {
  .privacy-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}
.privacy .inline-privacy-policy-inner {
  margin-top: 14px;
  box-sizing: border-box;
  border: 1px solid #579e5c;
  background-color: #fff;
}
.privacy iframe {
  width: 100%;
  height: 265px;
}
.privacy-box {
  margin-top: 35px;
}
.privacy-box p:first-of-type {
  margin-top: 10px;
}
.privacy-box input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.privacy-box label {
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .privacy-box label {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.privacy-box-img {
  margin-top: 15px;
}
.privacy-box-btn {
  font-size: 16px;
  font-size: 1.6rem;
  width: 250px;
  height: 60px;
  margin-top: 46px;
  line-height: 60px;
  letter-spacing: 0.2em;
  color: #63564f;
  background-color: #f0c71f;
  position: relative;
}
@media screen and (max-width: 767px) {
  .privacy-box-btn {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.privacy-box-btn::before {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  top: 27px;
  right: 30px;
  transform: rotate(45deg);
  border-top: 1px solid #63564f;
  border-right: 1px solid #63564f;
}

.privacy-box .list-item {
  position: relative;
  padding-left: 15px;
}
.privacy-box .list-item::before {
  position: absolute;
  content: "・";
  left: 0;
}

/* =========================================
    sub  PC
    news テンプレ
========================================= */
#sub-news .tag-list {
  flex-wrap: wrap;
}
#sub-news .current {
  border-bottom: none;
}
#sub-news .bg {
  background-color: #fcfae6;
}
#sub-news .com-ttl02 {
  padding: 8.4px 15px;
  line-height: 1.8;
}
#sub-news .container {
  margin-top: 50px;
}
#sub-news .com-news-post-item:nth-of-type(n + 2) {
  margin-top: 50px;
}
#sub-news .com-news-post-link {
  display: block;
  padding: 50px 30px;
  color: #442800;
  background-color: #fff;
  border-radius: 28px;
}
#sub-news .com-news-post-con {
  width: 100%;
}
#sub-news .com-news-post-con-sm {
  max-width: 725px;
}
@media screen and (max-width: 767px) {
  #sub-news .com-news-post-link {
    padding: 5%;
  }
  #sub-news .com-news-post-img {
    width: 25%;
  }
  #sub-news .com-news-post-con-sm {
    width: 68%;
  }
}
#sub-news .detail .com-news-post-link {
  padding: 15px;
}
#sub-news .detail .com-news-post-img {
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #sub-news .detail .com-news-post-img {
    width: 100%;
  }
}
#sub-news .news-post article:nth-of-type(n + 2) {
  border-top: 1px solid #f0f0f0;
}
#sub-news .news-post article:nth-of-type(n + 2) a {
  padding-top: 23px;
}
#sub-news .news-post-link {
  display: block;
  padding-bottom: 17px;
  position: relative;
  left: 0;
}
@media screen and (min-width: 768px) {
  #sub-news .news-post-link:hover {
    left: 5px;
  }
}
#sub-news .news-post-txt {
  margin-top: 15px;
}
#sub-news .news-post-flex {
  margin-top: 15px;
}
#sub-news .news-post-time {
  font-size: 18px;
  font-size: 1.8rem;
  display: inline-block;
  flex-shrink: 0;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-right: 5px;
  padding-top: 9px;
  color: #939393;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sub-news .news-post-time {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#sub-news .news-post-tag {
  display: flex;
  margin-left: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  border-left: 1px solid #f0c71f;
  line-height: 1.6;
}
#sub-news .news-post-tag-txt {
  padding: 0 15px;
  border-right: 1px solid #f0c71f;
  text-align: center;
  color: #f0c71f;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #sub-news .news-post-tag-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
#sub-news .news-post-ttl {
  width: 100%;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #442800;
  line-height: 2;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #sub-news .news-post-ttl {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

/* =========================================
    sub  PC
    detail
========================================= */
#news-detail .com-news-post-con {
  padding: 35px;
  background-color: #fff;
  border-radius: 28px;
}

/* =========================================
  タグテンプレート
========================================= */
.tag-select-box {
  position: relative;
  width: 40%;
  margin: 20px 0 20px auto;
  max-width: 230px;
  background-color: #fff;
}
.tag-select-box::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #f0c71f;
  pointer-events: none;
}
.tag-select-box #tag-select {
  width: 100%;
  padding: 5% 20% 5% 5%;
  box-sizing: border-box;
  font-size: 1.2rem;
  margin-left: auto;
  display: block;
  border: none;
  border-bottom: 2px solid #f0c71f;
  cursor: pointer;
  border-radius: 0;
  background: none;
  color: #579e5c;
  font-weight: 700;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.tag-select-box #tag-select option {
  padding: 10px;
  cursor: pointer;
  box-sizing: border-box;
  color: #000;
}

/* =========================================
  タグセレクト
	ボタンテンプレート
========================================= */
#tag-btn-list {
  margin-top: 35px;
  padding: 28px 30px;
  background-color: #ecfded;
  border-radius: 10px;
}
#tag-btn-list .tag-txt {
  flex-shrink: 0;
  margin-top: 5px;
  margin-right: 40px;
  color: #442800;
}
#tag-btn-list .tag-list {
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}
#tag-btn-list .tag-list-link {
  min-width: 110px;
  text-align: center;
  padding: 5px 30px;
  color: #fff;
  background-color: #579e5c;
  border-radius: 10px;
}
#tag-btn-list .tag-current {
  color: #579e5c;
  background-color: #fff;
}

/*	pagenation  PC
------------------------------------ */
.pagenation {
  display: flex;
  margin: 50px auto 0;
  justify-content: center;
  align-items: center;
}
.pagenation li {
  display: inline-block;
  width: 42px;
  height: 42px;
  text-align: center;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .pagenation li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.pagenation li:nth-of-type(n + 2) {
  margin-left: 15px;
}
.pagenation a,
.pagenation span {
  display: block;
}
.pagenation a {
  color: #579e5c;
  border: 1px solid #579e5c;
}
.pagenation .current-page {
  color: #fff;
  background: #579e5c;
  pointer-events: none;
}
.pagenation .next-li,
.pagenation .back-li {
  background: none;
  border: none;
}
.pagenation .back-arrow,
.pagenation .next-arrow {
  display: block;
  height: 100%;
}
.pagenation-arrow {
  width: 100%;
  height: 100%;
}
.pagenation-arrow::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pagenation-arrow.next {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 15px;
  border-color: transparent transparent transparent #579e5c;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.pagenation-arrow.back {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 15px 7.5px 0;
  border-color: transparent #579e5c transparent transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*	detail pagenation  PC
------------------------------------ */
.pagenation-inner {
  width: 100%;
  max-width: 360px;
  margin: 50px auto 0;
}

.data-nav {
  position: relative;
  text-align: center;
}
.data-nav a {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  transition: all 0.3s ease;
}
.data-nav a:hover {
  opacity: 0.7;
}
.data-nav .next a,
.data-nav .back a {
  background: none !important;
}

.to-works-btn {
  width: 100%;
  max-width: 120px;
  background: #579e5c;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .to-works-btn {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.arrow-btn {
  width: 50px;
  position: absolute;
  bottom: 0;
}
.arrow-btn::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: auto;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  background: #579e5c;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .arrow-btn::before {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.back-btn {
  left: 0;
}
.back-btn::before {
  content: "←";
}

.next-btn {
  right: 0;
}
.next-btn::before {
  content: "→";
}

/* =========================================
    sub  PC
    sub-site
========================================= */
#sub-site .list {
  width: 90%;
  margin: 50px auto 0;
}
#sub-site .list-link {
  width: 100%;
  border-bottom: 1px solid #579e5c;
  color: #442800;
  display: block;
  padding: 15px 30px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  #sub-site .list-link {
    padding: 12px 25px;
  }
}
#sub-site .list-link::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 9px solid #579e5c;
  border-right: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #sub-site .list-link::before {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #579e5c;
  }
}
@media screen and (min-width: 768px) {
  #sub-site .list-link:hover::before {
    left: 10px;
  }
}

/* =========================================
    sub  PC
    sub-complete
========================================= */
#sub-complete .container-box {
  text-align: center;
  margin-top: 50px;
}
#sub-complete .link {
  margin: 50px auto 0;
}

/* =========================================
    sub  PC
    sub-privacy
========================================= */
#sub-privacy .bg {
  background-color: #fcfae6;
}

/* =========================================
    sub  PC
    404 error
========================================= */
#sub-error .ttl {
  text-align: center;
}
#sub-error .txt {
  width: 100%;
  text-align: center;
  margin: 50px auto 0;
}
#sub-error .link {
  text-decoration: underline;
  color: #579e5c;
}