@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho+B1&display=swap");
.top {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
}
.top.animationActive {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s ease 0.2s;
  transition: all 0.8s ease 0.2s;
  opacity: 1;
}

.bottom {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}
.bottom.animationActive {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  opacity: 1;
}

.fade {
  opacity: 0;
}
.fade.animationActive {
  -webkit-transition: all 0.8s ease-in-out 0.2s;
  transition: all 0.8s ease-in-out 0.2s;
  opacity: 1;
}

.font-bebas {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.font-shi {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
}

html {
  font-size: 62.5%;
  overflow-x: clip;
}

body {
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1rem;
}
@media (max-width: 880px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

a {
  display: block;
  width: 100%;
}

img {
  display: block;
  border: none;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  -webkit-backface-visibility: hidden;
  width: 100%;
}

/*** print ***/
@media print {
  body {
    background: #fff;
    color: #000;
  }
}
.inner {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
.inner-in {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .pc {
    display: none;
  }
}
@media print {
  .pc {
    display: block;
  }
}

.sp {
  display: none;
}
@media (max-width: 880px) {
  .sp {
    display: block;
  }
}
@media print {
  .sp {
    display: none;
  }
}

.marker-mv {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #ffff00));
  background: linear-gradient(transparent 70%, #ffff00 0%);
  display: inline;
  padding: 0 1%;
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #ffff00));
  background: linear-gradient(transparent 70%, #ffff00 0%);
  display: inline;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  -webkit-transition: background-size 0.6s;
  transition: background-size 0.6s;
}

/* マーカーが引かれる際に付与するクラス */
.marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}

.note {
  font-size: 1rem;
  line-height: 1.6;
}

.red {
  color: #c31641;
}

.gold {
  color: #a8875f;
}

.txt-j {
  text-align: justify;
}

.cv_wrap {
  margin-bottom: 80px;
}
@media (max-width: 880px) {
  .cv_wrap {
    margin-bottom: 50px;
  }
}
.cv_wrap .cv-ttl {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media (max-width: 880px) {
  .cv_wrap .cv-ttl {
    font-size: 2rem;
  }
}
.cv_wrap .cv-btn {
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
}
.cv_wrap .cv-btn a {
  width: 100%;
  display: inline-block;
  border-radius: 5px;
  line-height: 140px;
  background: #6e1777;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  padding: 10px 5px;
  position: relative;
  /*--影の複数指定--*/
  -webkit-box-shadow: 0 5px 0 #400c44;
          box-shadow: 0 5px 0 #400c44;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.cv_wrap .cv-btn a:hover {
  /*--影の複数指定--*/
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
  -webkit-box-shadow: 0 0 0 #400c44;
          box-shadow: 0 0 0 #400c44;
}
.cv_wrap .cv-btn a .txt {
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  margin-bottom: 5px;
}
@media (max-width: 880px) {
  .cv_wrap .cv-btn a .txt {
    font-size: 2.2rem;
    letter-spacing: 0.1rem;
    margin-bottom: 3px;
  }
}
.cv_wrap .cv-btn a .note {
  font-size: 1.2rem;
}
@media (max-width: 880px) {
  .cv_wrap .cv-btn a .note {
    font-size: 1rem;
  }
}
.cv_wrap .cv-btn a .arr {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
.cv_wrap .cv-btn a .arr::before, .cv_wrap .cv-btn a .arr::after {
  content: ""; /* 疑似要素に指定必須 */
  width: 15px; /* 線の長さを指定 */
  height: 3px; /* 線の幅を指定 */
  display: inline-block; /* インラインブロックにする */
  border-radius: 2px; /* 線を角丸にする */
  background: #fff; /* 線の色を指定 */
  position: absolute; /* 相対位置に指定 */
  right: 15px; /* 右から10pxの位置に配置 */
}
.cv_wrap .cv-btn a .arr::before {
  top: calc(50% - 6px); /* 数値は微調整してください */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* 45度回転させる */
}
.cv_wrap .cv-btn a .arr::after {
  bottom: calc(50% - 6px); /* 数値は微調整してください */
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); /* -45度回転させる */
}
.cv_wrap .cv-btn.req a {
  background: #6e1777;
  /*--影の複数指定--*/
  -webkit-box-shadow: 0 5px 0 #400c44;
          box-shadow: 0 5px 0 #400c44;
}
.cv_wrap .cv-btn.req a:hover {
  -webkit-box-shadow: 0 0 0 #400c44;
          box-shadow: 0 0 0 #400c44;
}
.cv_wrap .cv-btn.tel {
  margin-top: 15px;
}
.cv_wrap .cv-btn.tel a {
  background: #3a343a;
  /*--影の複数指定--*/
  -webkit-box-shadow: 0 5px 0 #000;
          box-shadow: 0 5px 0 #000;
}
.cv_wrap .cv-btn.tel a:hover {
  -webkit-box-shadow: 0 0 0 #000;
          box-shadow: 0 0 0 #000;
}
.cv_wrap .cv-btn.tel a .font-bebas {
  font-weight: 400;
}
.cv_wrap .cv-btn.tel a .txt {
  font-size: 2.8rem;
  margin-bottom: 0px;
  letter-spacing: 0.2rem;
  position: relative;
  display: inline;
}
@media (max-width: 880px) {
  .cv_wrap .cv-btn.tel a .txt {
    font-size: 2.8rem;
  }
}
.cv_wrap .cv-btn.tel a .txt::before {
  content: "";
  display: block;
  background: url(../../images/baikyaku/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 5px;
  left: -2.8rem;
}
@media (max-width: 880px) {
  .cv_wrap .cv-btn.tel a .txt::before {
    width: 22px;
    height: 22px;
    top: 5px;
    left: -2.4rem;
  }
}
.line-hukidashi {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 線を上下中央 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 文字と線を横並び */
}
.line-hukidashi::before, .line-hukidashi::after {
  background-color: #333; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  content: "";
  height: 1px; /* 線の高さ */
  width: 25px; /* 線の長さ */
}
.line-hukidashi::before {
  margin-right: 5px; /* 文字との余白 */
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg); /* 傾ける */
}
.line-hukidashi::after {
  margin-left: 5px; /* 文字との余白 */
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg); /* 傾ける */
}

.marker_wrap {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 50px;
}
@media (max-width: 880px) {
  .marker_wrap {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}
.marker_wrap li {
  margin-bottom: 17px;
  display: inline-block;
}
.marker_wrap .df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.marker_wrap .df .logo {
  max-width: 300px;
  margin-right: 10px;
}
@media (max-width: 880px) {
  .marker_wrap .df .logo {
    margin-right: 5px;
    max-width: 170px;
  }
}
.qa_wrap .ttl .en {
  color: #a78c5a;
  font-size: 2rem;
  margin-right: 10px;
}
@media (max-width: 880px) {
  .qa_wrap .ttl .en {
    margin-left: 5px;
    font-size: 1.7rem;
  }
}
.qa_wrap .ttl .jp {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 880px) {
  .qa_wrap .ttl .jp {
    font-size: 2.5rem;
  }
}
@media (max-width: 880px) and (max-width: 540px) {
  .qa_wrap .ttl .jp {
    font-size: 5.4vw;
  }
}
.qa_wrap .ttl .small {
  font-size: 80%;
}
.qa_wrap .q-ttl {
  background-color: #c31641;
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 140px;
}
@media (max-width: 880px) {
  .qa_wrap .q-ttl {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 20px;
    margin-top: 50px;
    overflow-x: clip;
  }
}
@media (max-width: 880px) and (max-width: 540px) {
  .qa_wrap .q-ttl {
    margin-top: 100px;
  }
}
.qa_wrap .q-ttl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 880px) {
  .qa_wrap .q-ttl > div {
    display: inherit;
  }
}
.qa_wrap .q-ttl .jp {
  color: #fff;
  margin-right: 40px;
}
.qa_wrap .q-ttl .img {
  max-width: 150px;
  position: absolute;
  right: 10%;
  bottom: 0;
}
@media (max-width: 880px) {
  .qa_wrap .q-ttl .img {
    max-width: 114px;
    right: -15px;
  }
}
.qa_wrap .q-ttl .img::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../../images/baikyaku/ill_question2.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: -5%;
}
@media (max-width: 880px) {
  .qa_wrap .q-ttl .img::before {
    top: 40%;
  }
}
.qa_wrap .a-ttl {
  margin-bottom: 20px;
  padding-bottom: 25px;
}
@media (max-width: 880px) {
  .qa_wrap .a-ttl {
    margin-bottom: 15px;
    padding-bottom: 20px;
  }
}
.qa_wrap .a-ttl .a-jp_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.qa_wrap .a-ttl .a-jp_wrap dl {
  color: #a38558;
  display: inline-block;
  text-align: center;
  width: 85px;
  height: 80px;
  margin-right: 10px;
}
@media (max-width: 880px) {
  .qa_wrap .a-ttl .a-jp_wrap dl {
    width: 70px;
    height: 65px;
  }
}
.qa_wrap .a-ttl .a-jp_wrap dl dt {
  font-size: 1.4rem;
  letter-spacing: 0.01rem;
  line-height: 1;
  padding-top: 7px;
}
@media (max-width: 880px) {
  .qa_wrap .a-ttl .a-jp_wrap dl dt {
    font-size: 1.1rem;
  }
}
.qa_wrap .a-ttl .a-jp_wrap dl dd {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 880px) {
  .qa_wrap .a-ttl .a-jp_wrap dl dd {
    font-size: 3.5rem;
    letter-spacing: 0.01rem;
  }
}
.qa_wrap .a-ttl .a-jp_wrap .jp {
  width: 100%;
  line-height: 1.4;
}
.qa_wrap .reason-a_wrap .a-ttl {
  background-color: #eaeaea;
}
.qa_wrap .reason-a_wrap .a-ttl .a-jp_wrap dl {
  background-color: #fff;
}
.qa_wrap .a-gray-bg {
  background-color: #eaeaea;
}
@media (max-width: 880px) {
  .qa_wrap .a-gray-bg > div {
    display: inherit;
  }
}
.qa_wrap .qa-main {
  margin-bottom: 40px;
}
@media (max-width: 880px) {
  .qa_wrap .qa-main {
    margin-bottom: 25px;
  }
}
.sec-read-txt {
  margin-bottom: 5px;
}

.minco-jpen-ttl_wrap {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 880px) {
  .minco-jpen-ttl_wrap {
    margin-bottom: 20px;
  }
}
.minco-jpen-ttl_wrap .jp {
  font-size: 3.2rem;
}
@media (max-width: 880px) {
  .minco-jpen-ttl_wrap .jp {
    line-height: 1.2;
  }
}
.minco-jpen-ttl_wrap .en {
  font-size: 1.7rem;
  color: #a78c5a;
}

.mw_wrap {
  background-color: #f0ebe9;
  height: 100svh;
  overflow: hidden;
  margin-bottom: 3px;
}
.mw_wrap header .header_logo-hhp {
  position: absolute;
  width: 190px;
  margin-left: 20px;
  margin-top: 20px;
}
@media (max-width: 880px) {
  .mw_wrap header .header_logo-hhp {
    width: 140px;
    margin-left: 12px;
    margin-top: 15px;
  }
}
.mw_wrap .mv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mw_wrap .mv__wrap .mv-ttl_wrap {
  width: 50%;
  height: 100vh;
  position: relative;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-ttl_wrap {
    width: 100%;
    height: inherit;
    margin-bottom: 55px;
  }
}
.mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap {
  position: relative;
  top: 32%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap {
    top: 60px;
    -webkit-transform: inherit;
            transform: inherit;
  }
}
.mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap .mv-ttl1 {
  max-width: 400px;
  margin: 0 auto 30px;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap .mv-ttl1 {
    max-width: 245px;
    margin: 0 auto 14px;
  }
}
.mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap .mv-ttl2 {
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}
.mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap .mv-ttl2 .line1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 630px;
  width: 90%;
  margin: 0 auto 20px;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap .mv-ttl2 .line1 {
    max-width: 370px;
    margin-bottom: 14px;
  }
}
.mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap .mv-ttl2 .line1 > div:nth-child(1) {
  width: 500px;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap .mv-ttl2 .line1 > div:nth-child(1) {
    width: 300px;
  }
}
.mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap .mv-ttl2 .line1 > div:nth-child(2) {
  font-size: 4rem;
  display: inline;
  margin-left: 10px;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap .mv-ttl2 .line1 > div:nth-child(2) {
    font-size: 2.7rem;
    margin-left: 5px;
  }
}
.mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap .mv-ttl2 .line2 {
  font-size: 4.8rem;
  letter-spacing: 0.3rem;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-ttl_wrap .mv-ttl-txt_wrap .mv-ttl2 .line2 {
    font-size: 3rem;
  }
}
.mw_wrap .mv__wrap .mv-img_wrap {
  width: 50%;
  height: 100%;
  position: relative;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-img_wrap {
    width: 100%;
    height: auto;
  }
}
.mw_wrap .mv__wrap .mv-img_wrap .mv-graph,
.mw_wrap .mv__wrap .mv-img_wrap .mv-geo {
  position: absolute;
}
.mw_wrap .mv__wrap .mv-img_wrap .mv-graph {
  max-width: 250px;
  z-index: 5;
  bottom: 25%;
  left: 8%;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-img_wrap .mv-graph {
    max-width: 110px;
    top: 12px;
    left: 17px;
  }
}
.mw_wrap .mv__wrap .mv-img_wrap .mv-geo {
  max-width: 110px;
  bottom: 10px;
  right: 10px;
  z-index: 4;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-img_wrap .mv-geo {
    max-width: 100px;
    bottom: inherit;
    top: 5px;
    right: 5px;
  }
}
.mw_wrap .mv__wrap .mv-img_wrap .mv-img img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 44% bottom;
     object-position: 44% bottom;
  -webkit-filter: saturate(1.2);
          filter: saturate(1.2);
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-img_wrap .mv-img img {
    height: 33vh;
    width: 100%;
    display: block;
    -webkit-filter: saturate(1);
            filter: saturate(1);
  }
}
.mw_wrap .mv__wrap .mv-ill_wrap {
  width: 100%;
  position: absolute;
  bottom: 0;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-ill_wrap {
    overflow-x: clip;
  }
}
.mw_wrap .mv__wrap .mv-ill_wrap .mv-ill {
  position: absolute;
  width: 100%;
  z-index: 5;
  bottom: 10px;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-ill_wrap .mv-ill {
    bottom: -35%;
    width: 110%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    overflow-x: clip;
  }
}
@media (max-width: 880px) and (max-width: 540px) {
  .mw_wrap .mv__wrap .mv-ill_wrap .mv-ill {
    width: 145%;
  }
}
.mw_wrap .mv__wrap .mv-ill_wrap .mv-houses {
  position: absolute;
  width: 100%;
  z-index: 2;
  bottom: 120px;
}
@media (max-width: 880px) {
  .mw_wrap .mv__wrap .mv-ill_wrap .mv-houses {
    opacity: 0.5;
    width: 135%;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    overflow-x: clip;
  }
}

.mw_note {
  margin-bottom: 36px;
}
@media (max-width: 880px) {
  .mw_note {
    margin-bottom: 20px;
  }
}

.sec01 {
  max-width: 800px;
  width: 90%;
  margin-bottom: 40px;
}
@media (max-width: 880px) {
  .sec01 {
    margin-bottom: 30px;
  }
}
.sec01 .ttl {
  color: #a8875f;
  font-size: 2.8rem;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 横線を上下中央 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 文字と横線を横並び */
  margin-bottom: 0px;
}
@media (max-width: 1500px) {
  .sec01 .ttl {
    font-size: 2.8rem;
  }
}
@media (max-width: 1500px) and (max-width: 880px) {
  .sec01 .ttl {
    font-size: 2.1rem;
  }
}
.sec01 .ttl::before, .sec01 .ttl:after {
  background-color: #a8875f; /* 横線の色 */
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* 横幅いっぱい */
  height: 1px; /* 横線の高さ */
}
.sec01 .ttl::before {
  margin-right: 30px; /* 文字との余白 */
}
@media (max-width: 880px) {
  .sec01 .ttl::before {
    margin-right: 15px;
  }
}
.sec01 .ttl:after {
  margin-left: 30px; /* 文字との余白 */
}
@media (max-width: 880px) {
  .sec01 .ttl:after {
    margin-left: 15px;
  }
}
.sec01 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px solid #a8875f;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
@media (max-width: 1500px) and (max-width: 880px) {
  .sec01 ul {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.sec01 ul li:nth-child(1) {
  max-width: 150px;
  margin-right: 25px;
}
@media (max-width: 1500px) {
  .sec01 ul li:nth-child(1) {
    max-width: 150px;
  }
}
@media (max-width: 1500px) and (max-width: 880px) {
  .sec01 ul li:nth-child(1) {
    margin-right: 10px;
    width: 27%;
  }
}
.sec01 ul li:nth-child(2) {
  max-width: 280px;
}
@media (max-width: 1500px) {
  .sec01 ul li:nth-child(2) {
    max-width: 280px;
  }
}
@media (max-width: 1500px) and (max-width: 880px) {
  .sec01 ul li:nth-child(2) {
    width: 50%;
  }
}

.sec02 .cv-ttl {
  font-size: 3.5rem;
  color: #a8875f;
}
@media (max-width: 880px) {
  .sec02 .cv-ttl {
    font-size: 2.5rem;
  }
}

.sec03 {
  background-color: #ebe5e0;
  padding-top: 40px;
  margin-bottom: 50px;
}
@media (max-width: 880px) {
  .sec03 {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.sec03 .sec__wrap .ttl {
  max-width: 550px;
  width: 90%;
  margin: 0 auto;
}
.sec03 .sec__wrap .img_wrap ul {
  position: relative;
  height: 300px;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 540px) {
  .sec03 .sec__wrap .img_wrap ul {
    height: 193px;
  }
}
.sec03 .sec__wrap .img_wrap ul li {
  position: absolute;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.25rem;
}
.sec03 .sec__wrap .img_wrap ul li:nth-child(1) .txt, .sec03 .sec__wrap .img_wrap ul li:nth-child(2) .txt, .sec03 .sec__wrap .img_wrap ul li:nth-child(3) .txt {
  font-size: 2.1rem;
  text-align: center;
  display: block;
  position: absolute;
  z-index: 3;
  top: 38%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}
@media (max-width: 880px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(1) .txt, .sec03 .sec__wrap .img_wrap ul li:nth-child(2) .txt, .sec03 .sec__wrap .img_wrap ul li:nth-child(3) .txt {
    font-size: 2.5vw;
  }
}
@media (max-width: 880px) and (max-width: 540px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(1) .txt, .sec03 .sec__wrap .img_wrap ul li:nth-child(2) .txt, .sec03 .sec__wrap .img_wrap ul li:nth-child(3) .txt {
    font-size: 1.5rem;
    line-height: 1.5;
    display: block;
    letter-spacing: 0.001rem;
  }
}
.sec03 .sec__wrap .img_wrap ul li:nth-child(1) {
  max-width: 252px;
  top: 10%;
  left: 0%;
}
@media (max-width: 880px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(1) {
    max-width: 29vw;
  }
}
@media (max-width: 880px) and (max-width: 540px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(1) {
    max-width: 42vw;
  }
}
.sec03 .sec__wrap .img_wrap ul li:nth-child(1)::before {
  content: "";
  display: block;
  background-image: url(../../images/baikyaku/ill_question1.svg);
  background-repeat: no-repeat;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0px;
  left: 10px;
  z-index: 4;
}
@media (max-width: 880px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(1)::before {
    width: 30px;
    height: 30px;
    top: 0px;
    left: 10px;
  }
}
.sec03 .sec__wrap .img_wrap ul li:nth-child(2) {
  max-width: 252px;
  top: 15%;
  left: inherit;
  right: 0;
}
@media (max-width: 880px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(2) {
    max-width: 29vw;
  }
}
@media (max-width: 880px) and (max-width: 540px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(2) {
    max-width: 42vw;
  }
}
.sec03 .sec__wrap .img_wrap ul li:nth-child(3) {
  max-width: 234px;
  top: 47%;
  left: 55%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 880px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(3) {
    max-width: 27vw;
  }
}
@media (max-width: 880px) and (max-width: 540px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(3) {
    max-width: 45vw;
    left: 52%;
  }
}
.sec03 .sec__wrap .img_wrap ul li:nth-child(4), .sec03 .sec__wrap .img_wrap ul li:nth-child(5) {
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 880px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(4), .sec03 .sec__wrap .img_wrap ul li:nth-child(5) {
    font-size: 1.1rem;
  }
}
.sec03 .sec__wrap .img_wrap ul li:nth-child(4) {
  top: 91%;
  left: 8%;
}
@media (max-width: 880px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(4) {
    left: 0;
  }
}
@media (max-width: 880px) and (max-width: 540px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(4) {
    top: 89%;
  }
}
.sec03 .sec__wrap .img_wrap ul li:nth-child(5) {
  top: 88%;
  right: 0;
}
@media (max-width: 880px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(5) {
    left: inherit;
    right: 0;
  }
}
@media (max-width: 880px) and (max-width: 540px) {
  .sec03 .sec__wrap .img_wrap ul li:nth-child(5) {
    top: 86%;
  }
}
.sec03 .sec__wrap .img_wrap .img-p {
  max-width: 500px;
  width: 80%;
  margin: 0 auto;
}

.sec05 {
  background-color: #ededed;
  border-radius: 10px;
  padding: 30px 0;
  margin-bottom: 40px;
}
@media (max-width: 880px) {
  .sec05 {
    margin-bottom: 30px;
  }
}
.sec05 .inner-in {
  max-width: 700px;
}
.sec05 .inner-in h4 {
  color: #a8875f;
  font-weight: 700;
  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;
  margin-bottom: 15px;
}
@media (max-width: 880px) {
  .sec05 .inner-in h4 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 10px;
  }
}
.sec05 .inner-in h4 > div:nth-child(1) {
  font-size: 2rem;
  margin-right: 15px;
  position: relative;
  width: 90px;
  height: 90px;
  background: #fff;
  padding: 0px;
  text-align: center;
  border-radius: 50px;
  display: grid;
  place-items: center;
  position: relative;
}
@media (max-width: 880px) {
  .sec05 .inner-in h4 > div:nth-child(1) {
    margin-right: 8px;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
  }
}
.sec05 .inner-in h4 > div:nth-child(1)::after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-top: -10px;
  border-left-color: #fff;
  left: 99%;
  top: 50%;
}
@media (max-width: 880px) {
  .sec05 .inner-in h4 > div:nth-child(1)::after {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 6px;
    border-right-width: 6px;
    margin-top: -6px;
  }
}
.sec05 .inner-in h4 > div:nth-child(1)::before {
  content: "";
  display: block;
  background-image: url(../../images/baikyaku/ill_chonchon1.svg);
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -5px;
  left: -14px;
}
@media (max-width: 880px) {
  .sec05 .inner-in h4 > div:nth-child(1)::before {
    width: 15px;
    height: 15px;
    top: -5px;
    left: -5px;
  }
}
.sec05 .inner-in h4 > div:nth-child(2) {
  font-size: 3.2rem;
  line-height: 1.35;
}
@media (max-width: 880px) {
  .sec05 .inner-in h4 > div:nth-child(2) {
    font-size: 2.5rem;
  }
}
.sec05 .inner-in dl {
  margin-bottom: 10px;
}
@media (max-width: 880px) {
  .sec05 .inner-in dl {
    margin-bottom: 10px;
  }
}
.sec05 .inner-in dl .good-timing {
  display: inline-block;
  width: 120px;
}
@media (max-width: 880px) {
  .sec05 .inner-in dl .good-timing {
    width: 90px;
  }
}
.sec05 .inner-in dl dt {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1;
}
@media (max-width: 880px) {
  .sec05 .inner-in dl dt {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
.sec05 .inner-in dl dd {
  font-weight: 500;
}
@media (max-width: 880px) {
  .sec05 .inner-in dl dd {
    line-height: 1.8;
  }
}
.sec05 .inner-in dl dd .red {
  font-weight: bold;
}

.sec06 {
  margin-bottom: 100px;
  margin-bottom: 0px !important;
}
@media (max-width: 880px) {
  .sec06 {
    margin-bottom: 40px;
  }
}
.sec06 .marker_wrap {
  margin-bottom: 25px;
}
.sec06 .marker_wrap li:nth-child(2) {
  max-width: 500px;
}
@media (max-width: 880px) {
  .sec06 .marker_wrap li:nth-child(2) {
    max-width: 300px;
  }
}
.sec06 .marker_wrap li .dot {
  font-size: 180%;
  position: relative;
}
.sec06 .marker_wrap li .dot::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: -5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #dc001a;
}
@media (max-width: 880px) {
  .sec06 .marker_wrap li .dot::after {
    width: 8px;
    height: 8px;
  }
}
.sec06 .arr {
  position: relative;
  margin: 0 auto 15px;
  text-align: center;
  display: grid;
  place-content: center;
  width: 15px;
  background-color: transparent;
}
@media (max-width: 880px) {
  .sec06 .arr {
    margin-bottom: 10px;
    height: 3px;
  }
}
.sec06 .arr::before, .sec06 .arr::after {
  content: "";
  width: 15px;
  height: 3px;
  display: inline-block;
  border-radius: 2px;
  background: #c31641;
  position: absolute;
  z-index: 2;
}
.sec06 .arr::before {
  right: 15px;
  top: calc(50% - 6px); /* 数値は微調整してください */
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.sec06 .arr::after {
  right: 6px;
  bottom: calc(50% + 3px); /* 数値は微調整してください */
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.sec07 {
  margin-bottom: 60px;
}
@media (max-width: 880px) {
  .sec07 {
    margin-bottom: 50px;
  }
}
.sec07 .q-ttl {
  margin-top: 80px;
}
@media (max-width: 880px) {
  .sec07 .q-ttl {
    margin-top: 50px;
    margin-bottom: 0;
  }
}
.sec07 .qa-main .visual-ele1 {
  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;
  margin-top: 30px;
}
@media (max-width: 880px) {
  .sec07 .qa-main .visual-ele1 {
    margin-top: 15px;
  }
}
@media (max-width: 880px) and (max-width: 540px) {
  .sec07 .qa-main .visual-ele1 {
    margin-bottom: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.sec07 .qa-main .visual-ele1 .bar-g {
  margin-right: 80px;
}
@media (max-width: 880px) {
  .sec07 .qa-main .visual-ele1 .bar-g {
    width: 47%;
    margin-right: 0;
  }
}
.sec07 .qa-main .visual-ele1 .bar-g .note {
  line-height: 1.3;
  letter-spacing: 0.05rem;
}
.sec07 .qa-main .visual-ele1 .pie-chart_wrap {
  position: relative;
}
@media (max-width: 540px) {
  .sec07 .qa-main .visual-ele1 .pie-chart_wrap {
    width: 49%;
  }
}
.sec07 .qa-main .visual-ele1 .pie-chart_wrap .pie-chart {
  max-width: 280px;
  position: relative;
}
.sec07 .qa-main .visual-ele1 .pie-chart_wrap .pie-chart .txt {
  max-width: 195px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 51%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 540px) {
  .sec07 .qa-main .visual-ele1 .pie-chart_wrap .pie-chart .txt {
    max-width: 70%;
    width: 70%;
    top: 55%;
  }
}
.sec07 .qa-main .visual-ele1 .pie-chart_wrap figcaption.note {
  position: absolute;
  bottom: 13%;
  left: 20%;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
  letter-spacing: 0.05rem;
  color: #f5f5f5;
  font-weight: 500;
  z-index: 2;
}
@media (max-width: 880px) {
  .sec07 .qa-main .visual-ele1 .pie-chart_wrap figcaption.note {
    color: #333;
    left: 2%;
    position: inherit;
    margin-top: 5px;
  }
}
.sec07 .qa-main .visual-ele2 {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  position: relative;
  margin-top: 30px;
  padding: 30px 5px 5px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.sec07 .qa-main .visual-ele2 .ttl {
  display: inline-block;
  background-color: #fff;
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0px 15px;
  font-weight: 600;
  font-size: 1.8rem;
}
@media (max-width: 880px) {
  .sec07 .qa-main .visual-ele2 .ttl {
    font-size: 1.6rem;
  }
}
.sec07 .qa-main .visual-ele2 ul {
  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;
}
@media (max-width: 880px) {
  .sec07 .qa-main .visual-ele2 ul {
    margin-bottom: 5px;
  }
}
.sec07 .qa-main .visual-ele2 ul li:nth-child(1) {
  max-width: 220px;
  width: 45%;
  margin-right: 25px;
}
@media (max-width: 880px) {
  .sec07 .qa-main .visual-ele2 ul li:nth-child(1) {
    width: 35%;
    margin-right: 5%;
  }
}
.sec07 .qa-main .visual-ele2 ul li:nth-child(2) dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sec07 .qa-main .visual-ele2 ul li:nth-child(2) dl dt {
  font-weight: bold;
  font-size: 2rem;
}
@media (max-width: 880px) {
  .sec07 .qa-main .visual-ele2 ul li:nth-child(2) dl dt {
    font-size: 1.4rem;
  }
}
.sec07 .qa-main .visual-ele2 ul li:nth-child(2) dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 1;
}
.sec07 .qa-main .visual-ele2 ul li:nth-child(2) dl dd .num {
  font-size: 10rem;
}
@media (max-width: 880px) {
  .sec07 .qa-main .visual-ele2 ul li:nth-child(2) dl dd .num {
    font-size: 6.5rem;
  }
}
.sec07 .qa-main .visual-ele2 ul li:nth-child(2) dl dd .ken {
  font-size: 2rem;
  font-weight: bold;
}
.sec07 .qa-main .visual-ele2 .note {
  text-align: right;
}

.sec08 {
  background-color: #f0ebe9;
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 0;
  position: relative;
}
@media (max-width: 880px) {
  .sec08 {
    margin-bottom: 40px;
    padding: 28px 0;
  }
}
.sec08 .line-hukidashi {
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sec08 .voice_swiper_wrap {
  max-width: 1500px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 880px) {
  .sec08 .voice_swiper_wrap {
    width: 100%;
  }
}
.sec08 .item {
  text-align: left;
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 10px rgba(148, 128, 113, 0.4);
          box-shadow: 3px 3px 10px rgba(148, 128, 113, 0.4);
  border-radius: 15px;
  padding: 40px 50px 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.sec08 .item:hover {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
@media (max-width: 880px) {
  .sec08 .item {
    padding: 25px 20px 10px;
    margin-left: 5%;
  }
}
.sec08 .item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e4e4e4;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sec08 .item ul li.person {
  width: 49%;
  text-align: center;
}
@media (max-width: 1500px) {
  .sec08 .item ul li.person {
    width: 40%;
  }
}
.sec08 .item ul li.person .p-img {
  max-width: 180px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
}
@media (max-width: 880px) {
  .sec08 .item ul li.person .p-img {
    width: 120px;
    margin-bottom: 2px;
  }
}
.sec08 .item ul li.person .name {
  color: #555;
  font-size: 1.3rem;
}
@media (max-width: 880px) {
  .sec08 .item ul li.person .name {
    font-size: 1.1rem;
  }
}
.sec08 .item ul li.ttl_wrap {
  width: 49%;
}
@media (max-width: 1500px) {
  .sec08 .item ul li.ttl_wrap {
    width: 57%;
  }
}
.sec08 .item ul li.ttl_wrap .type {
  color: #fff;
  background-color: #a8875f;
  padding: 1px 15px;
  border-radius: 5px;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 10px;
}
@media (max-width: 880px) {
  .sec08 .item ul li.ttl_wrap .type {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
}
.sec08 .item ul li.ttl_wrap .ttl {
  color: #a8875f;
  font-size: 2.5rem;
  font-weight: bold;
}
@media (max-width: 1500px) {
  .sec08 .item ul li.ttl_wrap .ttl {
    font-size: 1.6vw;
  }
}
@media (max-width: 880px) {
  .sec08 .item ul li.ttl_wrap .ttl {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.sec08 .item p {
  color: #555;
  font-size: 1.45rem;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  margin-bottom: 5px;
}
@media (max-width: 880px) {
  .sec08 .item p {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
}
.sec08 .item .read-more {
  text-align: right;
}
.sec08 .item .read-more .txt {
  color: #a8875f;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.01rem;
}
@media (max-width: 880px) {
  .sec08 .item .read-more .txt {
    font-size: 1.2rem;
  }
}
.sec08 .item .read-more .dli-plus-circle {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 20px;
  height: 20px;
  background-color: #a8875f;
  border-radius: 50%;
}
.sec08 .item .read-more .dli-plus-circle > span {
  width: 52%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.sec08 .item .read-more .dli-plus-circle > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.voice_swiper_wrap {
  position: relative;
}

.swiper-button_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 46%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
  width: 100%;
}
@media (max-width: 880px) {
  .swiper-button_wrap {
    left: 0;
    top: 44%;
  }
}
.swiper-button_wrap .swiper-button-prev,
.swiper-button_wrap .swiper-button-next {
  background-color: #6d6d6d;
  border-radius: 1000px;
  width: 45px;
  height: 45px;
  position: absolute;
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-prev,
  .swiper-button_wrap .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}
.swiper-button_wrap .swiper-button-prev,
.swiper-button_wrap .swiper-button-next {
  position: relative;
}
.swiper-button_wrap .swiper-button-prev::before, .swiper-button_wrap .swiper-button-prev::after,
.swiper-button_wrap .swiper-button-next::before,
.swiper-button_wrap .swiper-button-next::after {
  content: ""; /* 疑似要素に指定必須 */
  width: 15px; /* 線の長さを指定 */
  height: 2px; /* 線の幅を指定 */
  display: inline-block; /* インラインブロックにする */
  border-radius: 2px; /* 線を角丸にする */
  background: #fff; /* 線の色を指定 */
  position: absolute; /* 相対位置に指定 */
  right: 15px; /* 右から10pxの位置に配置 */
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-prev::before, .swiper-button_wrap .swiper-button-prev::after,
  .swiper-button_wrap .swiper-button-next::before,
  .swiper-button_wrap .swiper-button-next::after {
    width: 11px;
    right: 12px;
  }
}
.swiper-button_wrap .swiper-button-prev {
  left: -35px;
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-prev {
    left: 2px;
  }
}
.swiper-button_wrap .swiper-button-prev::before {
  top: calc(50% - 6px); /* 数値は微調整してください */
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); /* 45度回転させる */
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-prev::before {
    top: calc(50% - 4px);
  }
}
.swiper-button_wrap .swiper-button-prev::after {
  bottom: calc(50% - 6px); /* 数値は微調整してください */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* -45度回転させる */
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-prev::after {
    bottom: calc(50% - 4px);
  }
}
.swiper-button_wrap .swiper-button-next {
  right: -35px;
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-next {
    right: 4%;
  }
}
.swiper-button_wrap .swiper-button-next::before {
  top: calc(50% - 6px); /* 数値は微調整してください */
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* 45度回転させる */
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-next::before {
    top: calc(50% - 4px);
  }
}
.swiper-button_wrap .swiper-button-next::after {
  bottom: calc(50% - 6px); /* 数値は微調整してください */
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); /* -45度回転させる */
}
@media (max-width: 880px) {
  .swiper-button_wrap .swiper-button-next::after {
    bottom: calc(50% - 4px);
  }
}
.swiper-button_wrap .swiper-button-prev,
.swiper-button_wrap .swiper-button-next {
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
}
.swiper-button_wrap .swiper-button-prev:hover,
.swiper-button_wrap .swiper-button-next:hover {
  background-color: #333;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
}
.swiper-button_wrap .swiper-button-disabled {
  opacity: 0.4;
}

.swiper-pagination {
  position: inherit;
  margin-top: 40px;
}
@media (max-width: 880px) {
  .swiper-pagination {
    margin-top: 35px;
  }
}

.swiper-pagination-bullet {
  margin-right: 10px !important;
}
@media (max-width: 880px) {
  .swiper-pagination-bullet {
    margin-right: 15px;
  }
}

.swiper-pagination-bullet-active {
  background-color: #a78c5a;
}

.sec08 .modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}
.sec08 .modal .modal-content .close {
  color: #fff;
  font-size: 4rem;
  font-weight: 100;
  z-index: 9999;
  position: absolute;
  bottom: 5%;
  right: 5%;
}
@media (max-width: 880px) {
  .sec08 .modal .modal-content .close {
    font-size: 3rem;
    top: inherit;
    bottom: 40px;
    right: 20px;
    height: 4rem;
  }
}
.sec08 .modal .modal-content .close:hover,
.sec08 .modal .modal-content .close:focus {
  cursor: pointer;
}
.sec08 .modal .modal-content #modal-body .item {
  background-color: #ffffff;
  border-radius: 15px;
  position: absolute;
  max-width: 800px;
  width: 85%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
  margin-bottom: 0px;
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-height: 70%;
}
@media (max-width: 880px) {
  .sec08 .modal .modal-content #modal-body .item {
    max-height: 60%;
  }
}
.sec08 .modal .modal-content #modal-body .item:hover {
  -webkit-transform: translateY(-50%, -50%);
          transform: translateY(-50%, -50%);
}
@media (max-width: 880px) {
  .sec08 .modal .modal-content #modal-body .item {
    padding: 30px 25px;
    margin-left: 0;
  }
  .sec08 .modal .modal-content #modal-body .item:hover {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media (max-width: 880px) {
  .sec08 .modal .modal-content #modal-body .item ul li.person {
    width: 41%;
  }
}
@media (max-width: 880px) {
  .sec08 .modal .modal-content #modal-body .item ul li.person .p-img {
    width: 100%;
  }
}
@media (max-width: 880px) {
  .sec08 .modal .modal-content #modal-body .item ul li.ttl_wrap {
    width: 52%;
  }
}
@media (max-width: 880px) {
  .sec08 .modal .modal-content #modal-body .item ul li.ttl_wrap .ttl {
    font-size: 4vw;
  }
}
.sec08 .modal .modal-content #modal-body .item p {
  display: inline-block;
  overflow: inherit;
}
@media (max-width: 880px) {
  .sec08 .modal .modal-content #modal-body .item p {
    line-height: 2.1;
  }
}
.sec08 .modal .modal-content #modal-body .item .read-more {
  display: none;
}

.sec08 {
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}
.sec08 ::-webkit-scrollbar {
  display: none;
}

.sec10 .point-txt_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sec10 .point-txt_wrap .point-txt {
  width: 48%;
  width: 31%;
  margin-bottom: 30px;
}
@media (max-width: 880px) {
  .sec10 .point-txt_wrap .point-txt {
    width: 100%;
    margin-bottom: 25px;
  }
}
.sec10 .point-txt_wrap .point-txt .a-ttl {
  margin-bottom: 15px;
  padding-bottom: 0px;
}
.sec10 .point-txt_wrap .point-txt .a-ttl .a-jp_wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec10 .point-txt_wrap .point-txt .a-ttl .a-jp_wrap dl {
  background-image: url(../../images/baikyaku/ill_icon-circle.svg);
  width: 114px;
  height: 76px;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 880px) {
  .sec10 .point-txt_wrap .point-txt .a-ttl .a-jp_wrap dl {
    width: 100px;
    height: 73px;
  }
}
.sec10 .point-txt_wrap .point-txt .a-ttl .a-jp_wrap dl dt {
  padding-top: 13px;
}
.sec10 .point-txt_wrap .point-txt .a-ttl .a-jp_wrap dl dd {
  font-size: 3.4rem;
}
@media (max-width: 880px) {
  .sec10 .point-txt_wrap .point-txt .a-ttl .a-jp_wrap dl dd {
    font-size: 3.2rem;
  }
}
.sec10 .point-txt_wrap .point-txt .a-ttl .a-jp_wrap .jp {
  color: #a8875f;
  font-size: 2rem;
}
@media (max-width: 1280px) {
  .sec10 .point-txt_wrap .point-txt .a-ttl .a-jp_wrap .jp {
    font-size: 2vw;
  }
}
@media (max-width: 880px) {
  .sec10 .point-txt_wrap .point-txt .a-ttl .a-jp_wrap .jp {
    font-size: 2.2rem;
  }
}
.sec10 .point-txt_wrap .point-txt > p {
  font-size: 1.4rem;
  line-height: 1.9;
}
@media (max-width: 880px) {
  .sec10 .point-txt_wrap .point-txt > p {
    line-height: 1.8;
  }
}
.sec10 .point-txt_wrap .point-txt > p.note {
  line-height: 1.4;
  font-size: 1.1rem;
  margin-top: 10px;
}
@media (max-width: 880px) {
  .sec10 .point-txt_wrap .point-txt > p.note {
    margin-top: 8px;
  }
}

.sec10 .staff-com {
  background-color: #ebe5e0;
  padding: 50px 0;
}
.sec10 .staff-com .staff-com_wrap {
  max-width: 900px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  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;
}
@media (max-width: 880px) {
  .sec10 .staff-com .staff-com_wrap {
    display: inherit;
  }
}
.sec10 .staff-com .sta ul li.txt {
  max-width: 600px;
  width: 90%;
  position: relative;
  border-radius: 10px;
  background-color: #ffffff;
  font-size: 1.4rem;
  line-height: 2;
}
@media (max-width: 880px) {
  .sec10 .staff-com .sta ul li.txt {
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
  }
}
.sec10 .staff-com .sta ul li.txt::before {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #9e8460;
  z-index: 0;
  content: "";
}
.sec10 .staff-com .sta ul li.txt::after {
  position: absolute;
  left: 242px;
  -webkit-transform: skew(-50deg);
          transform: skew(-50deg);
  height: 30px;
  width: 23px;
  border-right: 2px solid #9e8460;
  content: "";
  z-index: 5;
}
@media (max-width: 880px) {
  .sec10 .staff-com .sta ul li.txt::after {
    left: 143px;
    -webkit-transform: skew(-48deg);
            transform: skew(-48deg);
    height: 21px;
  }
}
.sec10 .staff-com .sta ul li.txt .white {
  width: 30px;
  height: 5px;
  background-color: #ffffff;
  position: absolute;
  display: block;
  border-radius: 3px;
}
@media (max-width: 880px) {
  .sec10 .staff-com .sta ul li.txt .white {
    height: 3px;
  }
}
.sec10 .staff-com .sta ul li.img {
  z-index: 5;
  position: relative;
}
.sec10 .staff-com .sta1 ul li.txt {
  padding: 20px 40px 35px 30px;
  margin-left: 70px;
}
@media (max-width: 880px) {
  .sec10 .staff-com .sta1 ul li.txt {
    margin-left: auto;
    padding: 10px 30px 25px 20px;
  }
}
.sec10 .staff-com .sta1 ul li.txt::before {
  top: -6px;
  left: -6px;
}
.sec10 .staff-com .sta1 ul li.txt::after {
  bottom: -23px;
}
@media (max-width: 880px) {
  .sec10 .staff-com .sta1 ul li.txt::after {
    bottom: -14px;
  }
}
.sec10 .staff-com .sta1 ul li.txt .white {
  bottom: 4px;
  left: 250px;
}
@media (max-width: 880px) {
  .sec10 .staff-com .sta1 ul li.txt .white {
    bottom: 5px;
    left: 146px;
  }
}
.sec10 .staff-com .sta1 ul li.img {
  width: 200px;
  margin-top: -10px;
}
@media (max-width: 880px) {
  .sec10 .staff-com .sta1 ul li.img {
    width: 160px;
  }
}
@media (max-width: 880px) {
  .sec10 .staff-com .sta2 {
    margin-top: -100px;
  }
}
.sec10 .staff-com .sta2 ul li.img {
  width: 240px;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 880px) {
  .sec10 .staff-com .sta2 ul li.img {
    width: 195px;
  }
}
.sec10 .staff-com .sta2 ul li.txt {
  padding: 35px 30px 20px 40px;
  margin-right: 50px;
  margin-left: auto;
  margin-top: -20px;
}
@media (max-width: 880px) {
  .sec10 .staff-com .sta2 ul li.txt {
    margin-right: auto;
    padding: 25px 20px 10px 30px;
    margin-top: -15px;
  }
}
.sec10 .staff-com .sta2 ul li.txt::before {
  top: 6px;
  left: 6px;
}
.sec10 .staff-com .sta2 ul li.txt::after {
  top: -23px;
  left: 120px;
}
@media (max-width: 880px) {
  .sec10 .staff-com .sta2 ul li.txt::after {
    top: -14px;
    left: 57px;
  }
}
.sec10 .staff-com .sta2 ul li.txt .white {
  top: 4px;
  left: 95px;
}
@media (max-width: 880px) {
  .sec10 .staff-com .sta2 ul li.txt .white {
    top: 5px;
    left: 39px;
  }
}
.sec10 .award_wrap {
  padding: 25px 0;
  margin-bottom: 70px;
}
@media (max-width: 880px) {
  .sec10 .award_wrap {
    margin-bottom: 40px;
  }
}
.sec10 .award_wrap .awa-w {
  max-width: 600px;
  width: 100%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.sec12 .qa-main > p {
  margin-bottom: 25px;
}
.sec12 .qa-main ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}
@media (max-width: 880px) {
  .sec12 .qa-main ul {
    margin-bottom: 30px;
  }
}
.sec12 .qa-main ul li {
  width: 48%;
}
@media (max-width: 880px) {
  .sec12 .qa-main ul li {
    width: 100%;
    margin-bottom: 10px;
  }
}
.sec12 .qa-main ul li dl .dot {
  font-size: 2.2rem;
  font-weight: bold;
  position: relative;
  padding-left: 10px;
  margin-bottom: 5px;
}
@media (max-width: 880px) {
  .sec12 .qa-main ul li dl .dot {
    font-size: 2rem;
  }
}
.sec12 .qa-main ul li dl .dot::before {
  content: "●";
  color: #c31641;
  font-size: 1.2rem;
  position: absolute;
  top: 22%;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sec12 .qa-main ul li dl dd {
  font-size: 1.4rem;
}
@media (max-width: 880px) {
  .sec12 .qa-main ul li dl dd {
    font-size: 1.2rem;
  }
}
.sec12 .qa-main .disposal_wrap {
  background-color: #ededed;
  border-radius: 10px;
  position: relative;
  padding: 20px 40px;
}
@media (max-width: 880px) {
  .sec12 .qa-main .disposal_wrap {
    padding: 15px 15px;
  }
}
.sec12 .qa-main .disposal_wrap .line-hukidashi {
  position: absolute;
  top: -15px;
  left: 35px;
}
@media (max-width: 880px) {
  .sec12 .qa-main .disposal_wrap .line-hukidashi {
    left: 10px;
  }
}
.sec12 .qa-main .disposal_wrap dl dt {
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5px;
}
@media (max-width: 880px) {
  .sec12 .qa-main .disposal_wrap dl dt {
    font-size: 1.8rem;
  }
}
.sec12 .qa-main .disposal_wrap dl dt .img {
  width: 35px;
  margin-right: 5px;
}
@media (max-width: 880px) {
  .sec12 .qa-main .disposal_wrap dl dt .img {
    width: 30px;
  }
}
.sec12 .qa-main .disposal_wrap dl dd {
  font-size: 1.4rem;
  color: #555;
}
@media (max-width: 880px) {
  .sec12 .qa-main .disposal_wrap dl dd {
    font-size: 1.2rem;
  }
}

.sec13 {
  margin-bottom: 50px;
}
@media (max-width: 880px) {
  .sec13 {
    margin-bottom: 40px;
  }
}
@media (max-width: 540px) {
  .sec13 .q-ttl {
    margin-top: 70px;
  }
}
.sec13 .qa-main > p {
  margin-bottom: 25px;
}
.sec13 .qa-main ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 880px) {
  .sec13 .qa-main ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec13 .qa-main ul li {
  margin-right: 45px;
  position: relative;
}
@media (max-width: 880px) {
  .sec13 .qa-main ul li {
    margin-right: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #e4e4e4;
    width: 85%;
    padding-bottom: 15px;
  }
}
.sec13 .qa-main ul li::after {
  content: "";
  width: 1px;
  height: 50px;
  background-color: #b8b8b8;
  display: block;
  position: absolute;
  top: 50%;
  right: -23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 880px) {
  .sec13 .qa-main ul li::after {
    display: none;
  }
}
@media (max-width: 880px) {
  .sec13 .qa-main ul li img {
    margin: 0 auto;
  }
}
.sec13 .qa-main ul li:last-child {
  margin-right: 0;
}
.sec13 .qa-main ul li:last-child::after {
  display: none;
}
.sec13 .qa-main ul li:nth-child(1) img {
  max-width: 240px;
}
@media (max-width: 880px) {
  .sec13 .qa-main ul li:nth-child(1) img {
    max-width: 220px;
  }
}
.sec13 .qa-main ul li:nth-child(2) img {
  max-width: 170px;
}
@media (max-width: 880px) {
  .sec13 .qa-main ul li:nth-child(2) img {
    max-width: 140px;
  }
}
.sec13 .qa-main ul li:nth-child(3) img {
  max-width: 190px;
}
@media (max-width: 880px) {
  .sec13 .qa-main ul li:nth-child(3) img {
    max-width: 146px;
  }
}
.sec13 .qa-main ul li:nth-child(4) img {
  max-width: 177px;
}
@media (max-width: 880px) {
  .sec13 .qa-main ul li:nth-child(4) img {
    max-width: 160px;
  }
}

.sec10 .a-ttl,
.sec12 .a-ttl,
.sec13 .a-ttl {
  padding-top: 20px;
}
@media (max-width: 880px) {
  .sec10 .a-ttl,
  .sec12 .a-ttl,
  .sec13 .a-ttl {
    padding-top: 0;
  }
}
.sec10 .a-ttl > div,
.sec12 .a-ttl > div,
.sec13 .a-ttl > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 880px) {
  .sec10 .a-ttl > div,
  .sec12 .a-ttl > div,
  .sec13 .a-ttl > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec10 .a-ttl > div .en,
.sec12 .a-ttl > div .en,
.sec13 .a-ttl > div .en {
  margin-top: 10px;
}
@media (max-width: 880px) {
  .sec10 .a-ttl > div .en,
  .sec12 .a-ttl > div .en,
  .sec13 .a-ttl > div .en {
    margin-top: 0;
  }
}

.sec14 {
  background-color: #f0ebe9;
  margin-bottom: 50px;
  padding: 40px 0;
  position: relative;
}
@media (max-width: 880px) {
  .sec14 {
    margin-bottom: 40px;
    padding: 28px 0;
  }
}
.sec14 .line-hukidashi {
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sec14 h5 {
  font-weight: bold;
  font-size: 1.7rem;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 880px) {
  .sec14 h5 {
    font-size: 1.6rem;
  }
}
.sec14 h5 .big {
  font-size: 2.9rem;
}
@media (max-width: 880px) {
  .sec14 h5 .big {
    font-size: 2.5rem;
  }
}
.sec14 .logo_geo {
  max-width: 170px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .sec14 .logo_geo {
    max-width: 134px;
  }
}
.sec14 .txt_wrap {
  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;
  margin-bottom: 40px;
}
@media (max-width: 880px) {
  .sec14 .txt_wrap {
    margin-bottom: 30px;
  }
}
.sec14 .txt_wrap .sec-read-txt {
  margin-right: 2%;
  margin-bottom: 0;
}
.sec14 .txt_wrap .wappen_p-rate {
  max-width: 200px;
}
@media (max-width: 880px) {
  .sec14 .txt_wrap .wappen_p-rate {
    width: 32%;
  }
}

.sec14 .ranking_wrap {
  margin-bottom: 50px;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap {
    margin-bottom: 40px;
  }
}
.sec14 .ranking_wrap caption {
  text-align: center;
  font-weight: bold;
}
.sec14 .ranking_wrap table {
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}
.sec14 .ranking_wrap table,
.sec14 .ranking_wrap td,
.sec14 .ranking_wrap th {
  border: 1px solid #cccccc;
  border-collapse: collapse;
}
.sec14 .ranking_wrap td,
.sec14 .ranking_wrap th {
  padding: 4px 0 2px;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap td,
  .sec14 .ranking_wrap th {
    padding: 3px 0 0px;
  }
}
.sec14 .ranking_wrap td .small {
  font-size: 1rem;
}
.sec14 .ranking_wrap td:nth-child(1) {
  width: 5.2%;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap td:nth-child(1) {
    width: 8%;
  }
}
.sec14 .ranking_wrap td:nth-child(3) {
  width: 14%;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap td:nth-child(3) {
    width: 16%;
  }
}
.sec14 .ranking_wrap td:nth-child(4) {
  width: 24%;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap td:nth-child(4) {
    width: 26%;
  }
}
.sec14 .ranking_wrap tr.ttl {
  background-color: #928c88;
  color: #fff;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.ttl {
    font-size: 1.1rem;
    line-height: 1.3;
    vertical-align: center;
    letter-spacing: -0.05rem;
  }
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.ttl td {
    vertical-align: middle;
    padding: 4px 2px 3px;
  }
}
.sec14 .ranking_wrap tr.no:nth-child(even) {
  background-color: #e7e7e7;
}
.sec14 .ranking_wrap tr.no:nth-child(odd) {
  background-color: #fff;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no td {
    line-height: 1.65;
  }
}
.sec14 .ranking_wrap tr.no td:nth-child(1), .sec14 .ranking_wrap tr.no td:nth-child(3), .sec14 .ranking_wrap tr.no td:nth-child(4) {
  font-family: "Bebas Neue", sans-serif;
  color: #555;
  font-size: 1.9rem;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no td:nth-child(1), .sec14 .ranking_wrap tr.no td:nth-child(3), .sec14 .ranking_wrap tr.no td:nth-child(4) {
    font-size: 1.4rem;
  }
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no td:nth-child(4) {
    letter-spacing: -0.005rem;
  }
}
.sec14 .ranking_wrap tr.no td span.percent {
  font-size: 80%;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no td span.percent {
    padding-left: 2px;
  }
}
.sec14 .ranking_wrap tr.no td:nth-child(2) {
  text-align: left;
  padding-left: 15px;
  font-weight: 500;
  font-size: 1.7rem;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no td:nth-child(2) {
    padding-left: 15px;
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
  }
}
.sec14 .ranking_wrap tr.no.no1 {
  background-color: #c31641;
  color: #fff;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no.no1 {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sec14 .ranking_wrap tr.no.no1 td {
  color: #fff;
  vertical-align: baseline;
}
.sec14 .ranking_wrap tr.no.no1 td:nth-child(1) {
  font-size: 200%;
  line-height: 1;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no.no1 td:nth-child(1) {
    font-size: 180%;
  }
}
.sec14 .ranking_wrap tr.no.no1 td:nth-child(1) .crown {
  width: 30px;
  display: block;
  margin: 5px auto 0;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no.no1 td:nth-child(1) .crown {
    width: 15px;
  }
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no.no1 td:nth-child(2) {
    padding-bottom: 8px;
  }
}
.sec14 .ranking_wrap tr.no.no1 td:nth-child(3) {
  font-size: 180%;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no.no1 td:nth-child(3) {
    font-size: 130%;
  }
}
.sec14 .ranking_wrap tr.no.no1 td:nth-child(4) {
  font-size: 250%;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no.no1 td:nth-child(4) {
    font-size: 180%;
  }
}
.sec14 .ranking_wrap tr.no.no1 td:nth-child(4) div {
  position: relative;
  display: inline-block;
}
.sec14 .ranking_wrap tr.no.no1 td:nth-child(4) div .chonchon {
  position: absolute;
  width: 22px;
  right: -12px;
  top: -2px;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no.no1 td:nth-child(4) div .chonchon {
    width: 15px;
    right: 0;
    top: -5px;
  }
}
.sec14 .ranking_wrap tr.no.no1 td:nth-child(2) {
  font-size: 180%;
}
@media (max-width: 880px) {
  .sec14 .ranking_wrap tr.no.no1 td:nth-child(2) {
    font-size: 120%;
  }
}

.sec14 .bar-graph_wrap {
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 10px rgba(148, 128, 113, 0.4);
          box-shadow: 3px 3px 10px rgba(148, 128, 113, 0.4);
  border-radius: 15px;
  position: relative;
  padding: 50px;
  padding-top: 30px;
  padding-bottom: 20px;
}
@media (max-width: 880px) {
  .sec14 .bar-graph_wrap {
    padding: 25px 20px;
  }
}
.sec14 .bar-graph_wrap .line-hukidashi {
  position: absolute;
  top: -15px;
  left: 0px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.sec14 .bar-graph_wrap .ttl {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
@media (max-width: 880px) {
  .sec14 .bar-graph_wrap .ttl {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}
.sec14 .bar-graph_wrap .ttl .line1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.sec14 .bar-graph_wrap .ttl .line1 .logo {
  max-width: 250px;
}
@media (max-width: 880px) {
  .sec14 .bar-graph_wrap .ttl .line1 .logo {
    max-width: 175px;
  }
}
.sec14 .bar-graph_wrap .df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 880px) {
  .sec14 .bar-graph_wrap .df {
    margin-bottom: 10px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
.sec14 .bar-graph_wrap .df li {
  width: 20%;
}
@media (max-width: 880px) {
  .sec14 .bar-graph_wrap .df li {
    width: 38%;
    margin-bottom: 15px;
  }
}
.sec14 .bar-graph_wrap .df li dl .bar-g {
  margin-bottom: 5px;
}
.sec14 .bar-graph_wrap .df li dl .man-name {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.2;
}
@media (max-width: 880px) {
  .sec14 .bar-graph_wrap .df li dl .man-name {
    font-size: 1.1rem;
  }
}
.sec14 .note a {
  display: inline !important;
}

.sec15 {
  margin-bottom: 70px;
}
@media (max-width: 880px) {
  .sec15 {
    margin-bottom: 60px;
    overflow: hidden;
  }
}
.sec15 .sec-read-txt {
  text-align: center;
  margin-bottom: 35px;
}
@media (max-width: 880px) {
  .sec15 .sec-read-txt {
    text-align: left;
    margin-bottom: 0;
  }
}
.sec15 .map {
  max-width: 700px;
  width: 98%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 880px) {
  .sec15 .map {
    padding-right: 22px;
  }
}
.sec15 .p_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: -110px;
}
@media (max-width: 880px) {
  .sec15 .p_wrap {
    margin-top: -50px;
    margin-right: -30px;
  }
}
.sec15 .p_wrap .txt {
  background-color: #ededed;
  padding: 15px 40px 18px 30px;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-right: 20px;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .sec15 .p_wrap .txt {
    font-size: 1.2rem;
    padding: 10px 20px 13px 20px;
    margin-right: 15px;
  }
}
.sec15 .p_wrap .txt::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 100%;
  margin-top: -15px;
  border: 7px solid transparent;
  border-left: 14px solid #ededed;
}
.sec15 .p_wrap .p {
  width: 200px;
}
@media (max-width: 880px) {
  .sec15 .p_wrap .p {
    width: 150px;
  }
}

.sec17 {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.sec17 .accordion .accordion-title {
  background-color: #eaeaea;
  padding: 20px 25px;
  position: relative;
  cursor: pointer;
  line-height: 1.5;
  font-size: 1.8rem;
  /* 矢印 */
}
.sec17 .accordion .accordion-title::after {
  border-right: solid 2px #fff !important;
  border-top: solid 2px #fff !important;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 38%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  width: 8px;
}
.sec17 .accordion .accordion-title::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: #6d6d6d;
  border-radius: 50%;
  position: absolute;
  top: 16px;
  right: 14px;
}
.sec17 .accordion .accordion-title.open::after {
  top: 45%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.sec17 .accordion .accordion-content {
  display: none;
  padding: 25px 30px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}
@media (max-width: 880px) {
  .sec17 .accordion .accordion-content {
    padding: 15px 10px;
  }
}
.sec17 .accordion .accordion-content .item_txt-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 880px) {
  .sec17 .accordion .accordion-content .item_txt-ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.sec17 .accordion .accordion-content .item_txt-ul li {
  display: inline-block;
  width: 24%;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-left: 4px;
  text-indent: -4px;
  font-size: 1.1rem;
}
@media (max-width: 1280px) {
  .sec17 .accordion .accordion-content .item_txt-ul li {
    width: 32%;
  }
}
@media (max-width: 1280px) and (max-width: 880px) {
  .sec17 .accordion .accordion-content .item_txt-ul li {
    width: 45%;
    margin-bottom: 5px;
    font-size: 1rem;
  }
}
.sec17 .accordion .accordion-content .item_txt-ul li::before {
  display: inline-block;
  content: "";
  margin-top: 5px;
  margin-right: 2px;
  width: 4px;
  height: 4px;
  vertical-align: top;
  border-radius: 3px;
  background: #a78c5a;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.sec17 .accordion .accordion-content {
  /* アコーディオンの内容のスタイル */
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease; /* ここでアニメーションを追加 */
}
.sec17 .accordion .accordion-content.close {
  display: none;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}
.sec17 .accordion .accordion-close-btn {
  /* 閉じるボタンのスタイル */
  cursor: pointer;
  padding: 5px;
  border: 1px solid #ccc;
  margin-top: 10px;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}

footer {
  background-color: #e8e8e8;
  margin-top: 50px;
  padding: 30px 0 10px;
}
@media (max-width: 880px) {
  footer {
    padding-bottom: 80px;
  }
}
footer a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
footer a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}
footer > div.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
footer > div.inner .f-logo {
  max-width: 200px;
  width: 43%;
}
footer > div.inner .f-menu {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.01rem;
}
@media (max-width: 880px) {
  footer > div.inner .f-menu {
    font-size: 1.2rem;
  }
}
footer > div.inner .f-menu li {
  margin-bottom: 5px;
}
footer small {
  font-size: 1.1rem;
  letter-spacing: 0.01rem;
  font-weight: 500;
  text-align: right;
  display: block;
}
@media (max-width: 880px) {
  footer small {
    margin: 0 auto;
    text-align: center;
  }
}

.fixed-btn.cv_wrap {
  display: none;
  position: fixed;
  top: 180px;
  right: 0;
  z-index: 9998;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0;
  padding: 0px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin: 0;
}
@media (max-width: 880px) {
  .fixed-btn.cv_wrap {
    left: 0;
    width: 100vw;
    top: inherit;
    bottom: 0;
    padding: 5px;
    padding-bottom: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
  }
}
.fixed-btn.cv_wrap .cv-btn {
  max-width: 78px;
  width: 90%;
  margin-right: 20px;
  margin-left: auto;
  margin-bottom: 10px;
  margin: 0;
}
@media (max-width: 880px) {
  .fixed-btn.cv_wrap .cv-btn {
    max-width: 49%;
    width: 49%;
    margin-bottom: 0;
    margin-right: 0;
  }
}
.fixed-btn.cv_wrap .cv-btn a {
  padding-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  padding-top: 15px;
  padding-bottom: 8px;
  border-radius: 5px 0 0 5px;
}
@media (max-width: 880px) {
  .fixed-btn.cv_wrap .cv-btn a {
    display: inherit;
    padding: 10px 5px;
    padding-bottom: 5px;
    border-radius: 5px;
  }
}
.fixed-btn.cv_wrap .cv-btn a .txt {
  margin-left: 10px;
}
@media (max-width: 880px) {
  .fixed-btn.cv_wrap .cv-btn a .txt {
    margin-left: auto;
  }
}
.fixed-btn.cv_wrap .cv-btn a .note {
  font-size: 1rem;
  margin-left: 2px;
  font-weight: 400;
  margin-right: 2px;
}
@media (max-width: 880px) {
  .fixed-btn.cv_wrap .cv-btn a .note {
    margin-left: auto;
    margin-right: auto;
  }
}
.fixed-btn.cv_wrap .cv-btn a .note .num {
  text-combine-upright: all;
}
.fixed-btn.cv_wrap .cv-btn.req a {
  -webkit-box-shadow: 0 5px 10px rgba(30, 11, 32, 0.4);
          box-shadow: 0 5px 10px rgba(30, 11, 32, 0.4);
}
@media (max-width: 880px) {
  .fixed-btn.cv_wrap .cv-btn.req a {
    display: inherit;
    -webkit-box-shadow: 0 5px 0 #400c44;
            box-shadow: 0 5px 0 #400c44;
  }
}
.fixed-btn.cv_wrap .cv-btn.req a:hover {
  -webkit-box-shadow: 0 5px 10px rgba(30, 11, 32, 0.4);
          box-shadow: 0 5px 10px rgba(30, 11, 32, 0.4);
  background-color: #832e8d;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 880px) {
  .fixed-btn.cv_wrap .cv-btn.req a:hover {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    -webkit-box-shadow: 0 0 0 #400c44;
            box-shadow: 0 0 0 #400c44;
    background-color: #6e1777;
  }
}
.fixed-btn.cv_wrap .cv-btn.req a .txt {
  font-size: 2.2rem;
  margin-bottom: 2px;
  letter-spacing: 0.5rem;
}
@media (max-width: 880px) {
  .fixed-btn.cv_wrap .cv-btn.req a .txt {
    font-size: 4.2vw;
    margin-bottom: 3px;
    letter-spacing: 0.1rem;
  }
}
.fixed-btn.cv_wrap .cv-btn.tel {
  margin-top: 0;
}
@media (max-width: 880px) {
  .fixed-btn.cv_wrap .cv-btn.tel a .txt {
    font-size: 2.4rem;
    font-size: 4.8vw;
  }
  .fixed-btn.cv_wrap .cv-btn.tel a .txt:before {
    width: 4vw;
    height: 4vw;
    position: absolute;
    top: 0.8vw;
    left: -4vw;
  }
}/*# sourceMappingURL=lp.css.map */