/*
 * Loading
*=============================================*/
/*
 * Animation
*=============================================*/
/*
 * Custom
*=============================================*/
/* -- heading -- */
.h2 {
   font-weight: 700;
   font-size: 32px;
   line-height: 38px;
   letter-spacing: 0.1em;
   text-align: center;
}

.h2 small {
   font-size: 24px;
}

.h-24 {
   font-weight: 700;
   font-size: 24px;
   line-height: 38px;
   letter-spacing: 0.1em;
}

.h-32 {
   font-weight: 700;
   font-size: 32px;
   line-height: 38px;
   letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
   .h2 {
      font-size: 25px;
      line-height: 36px;
   }

   .h2 small {
      font-size: 20px;
   }

   .h-32 {
      font-size: 25px;
      line-height: 36px;
   }

   .h-24 {
      font-size: 20px;
      line-height: 32px;
   }
}

/* button */
.button {
   text-align: center;
}

.button a {
   display: inline-block;
   width: 260px;
   background-color: #fff;
   color: #000;
   font-weight: 700;
   font-size: 18px;
   letter-spacing: 0.1em;
   line-height: 22px;
   text-align: center;
   box-sizing: border-box;
   padding: 17px 55px 19px 10px;
   position: relative;
   z-index: 1;
}

.button a:after {
   content: '';
   width: 45px;
   height: 100%;
   background-color: #7c6c10;
   position: absolute;
   top: 0;
   right: 0;
   transition: all 0.3s;
   z-index: -1;
}

.button a:hover {
   opacity: 1;
   color: #fff;
}

.button a:hover:after {
   width: 100%;
}

@media screen and (max-width: 767px) {
   .button a {
      font-size: 16px;
   }
}

/* -- -- */
.txt-udl {
   text-decoration: underline;
}

a.txt-udl:hover {
   text-decoration: none;
}

.txt-c {
   text-align: center;
}

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

.txt-r {
   text-align: right;
}

.cl-red {
   color: #f15a24;
}

.cl-orange {
   color: #f7931e;
}

.cl-blue {
   color: #009fff;
}

.under_line {
   background-image: linear-gradient(to bottom, transparent 60%, #FFED8B 40%);
}

.fw-smb {
   font-weight: 600;
}

.fw-b {
   font-weight: 700;
}

.fw-black {
   font-weight: 900;
}

/* -- --*/
.w800 {
   width: 100%;
   max-width: 800px;
   box-sizing: border-box;
   margin: 0 auto;
}

/* -- --*/
.section_pd {
   padding: 90px 0;
}

@media screen and (max-width: 767px) {
   .section_pd {
      padding: 50px 0;
   }
}

/* -- --*/
.bg01 {
   background: url("../img/common/bg01.jpg") repeat center top;
}

/* -- --*/
.bg-parallax {
   background-attachment: inherit;
   min-height: inherit;
   position: fixed;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
}

.img_parallax {
   display: none;
}

@media only screen and (max-width: 1200px) {
   .bg-parallax {
      background: transparent !important;
      position: relative;
   }

   .img_parallax {
      display: block;
      clip: rect(0, auto, auto, 0);
      margin-bottom: 0;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
   }

   .img_parallax img {
      width: 100%;
      height: 100vh;
      max-width: inherit;
      position: fixed;
      top: 0;
      left: 0;
      padding: 0;
      margin: 0;
      object-fit: cover;
      z-index: 0;
      transform: translateZ(0) !important;
   }
}

/* -- -- */
.img-zoom {
   display: block;
   overflow: hidden;
}

.img-zoom>* {
   transform: scale(1, 1);
   transition: all 0.3s ease;
}

.img-zoom:hover>* {
   transform: scale(1.05, 1.05);
}

/* -- -- */
.effect-bnr a {
   display: block;
   background-color: #030c17;
   position: relative;
}

.effect-bnr a:after {
   content: '';
   position: absolute;
   top: 30px;
   right: 30px;
   bottom: 30px;
   left: 30px;
   border: 1px solid #fff;
   box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.1);
   opacity: 0;
   -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
   transition: opacity 0.35s, transform 0.35s;
   -webkit-transform: scale3d(1.1, 1.1, 1);
   transform: scale3d(1.1, 1.1, 1);
}

.effect-bnr a:hover {
   opacity: 1;
}

.effect-bnr a:hover:after {
   opacity: 1;
   -webkit-transform: scale3d(1, 1, 1);
   transform: scale3d(1, 1, 1);
}

.effect-bnr a:hover img {
   opacity: 0.3 !important;
}

/* -- --*/
.tb-style dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
   font-weight: 500;
   font-size: 26px;
   padding: 0 100px 29px;
}

.tb-style dl+dl {
   border-top: 1px solid #000000;
   padding-top: 29px;
}

.tb-style dl:last-child {
   padding-bottom: 0;
}

.tb-style dl>* {
   display: table-cell;
   vertical-align: top;
   text-align: left;
}

.tb-style dl dt {
   width: 160px;
}

.tb-style dl dt .split_text {
   display: flex;
   justify-content: space-between;
}

.tb-style dl dd {
   padding-left: 160px;
}

.tb-style dl dd p {
   padding-bottom: 20px;
}

.tb-style dl dd p:last-child {
   padding-bottom: 0;
}

.tb-style dl dd ul li+li {
   padding-top: 20px;
}

@media screen and (max-width: 1400px) {
   .tb-style dl {
      font-size: 20px;
      padding: 0 40px 29px;
   }

   .tb-style dl+dl {
      padding-top: 29px;
   }

   .tb-style dl:last-child {
      padding-bottom: 0;
   }

   .tb-style dl dd {
      padding-left: 80px;
   }
}

@media screen and (max-width: 767px) {
   .tb-style dl {
      display: block;
      font-size: 18px;
      line-height: 30px;
      padding: 0 0 20px;
   }

   .tb-style dl+dl {
      padding-top: 20px;
   }

   .tb-style dl>* {
      display: block;
   }

   .tb-style dl dt {
      width: auto;
   }

   .tb-style dl dt .split_text {
      display: block;
   }

   .tb-style dl dd {
      padding-top: 5px;
      padding-left: 0;
   }

   .tb-style dl dd p {
      padding-bottom: 20px;
   }

   .tb-style dl dd p:last-child {
      padding-bottom: 0;
   }
}

/* -- -- */
.swiper-container {
   overflow: hidden;
   position: relative;
}

/* -- -- */
/*
 * Keyvisual
*=============================================*/
#kv {
   width: 100%;
   height: 225px;
   background-position: center top;
   background-repeat: repeat;
   background-image: url(../img/common/header-bg.jpg);
   background-color: #7c6c10;
   background-blend-mode: multiply;
   padding-bottom: 50px;
   position: relative;
}

#kv .kv-bg {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 50px;
   left: 0;
}

#kv .wrap {
   height: 100%;
}

#kv .kv-ttl {
   font-weight: 500;
   color: #fff;
   text-align: center;
   position: absolute;
   top: 50%;
   right: 0;
   left: 0;
   z-index: 1;
   transform: translateY(-50%);
}

#kv .kv-deco {
   width: 40%;
   max-width: 433px;
   position: absolute;
   bottom: -30px;
   left: 0;
}

@media screen and (max-width: 767px) {
   #kv {
      padding-bottom: 25px;
   }

   #kv .kv-bg {
      bottom: 25px;
   }

   #kv .kv-deco {
      width: 50%;
      bottom: -15px;
      left: 20px;
   }
}

/* -- breadcrumb -- */
.breadcrumbs {
   width: 100%;
   font-size: 16px;
   letter-spacing: 0;
   line-height: 24px;
   padding: 10px 0;
}

.breadcrumbs .wrap>span {
   display: inline-block;
   word-break: break-all;
   padding: 0 20px;
}

.breadcrumbs .wrap>span:first-child {
   margin-left: -20px;
}

.breadcrumbs a:hover {
   text-decoration: underline;
}

@media screen and (max-width: 767px) {
   .breadcrumbs {
      font-size: 12px;
      overflow-x: auto;
   }

   .breadcrumbs .wrap {
      width: max-content;
      max-width: inherit;
      margin: 0;
   }

   .breadcrumbs .wrap>span {
      display: inline-block;
      word-break: break-all;
      padding: 0 10px;
      position: relative;
      top: 1px;
   }

   .breadcrumbs .wrap>span:first-child {
      margin-left: -10px;
   }
}

/* -- -- */
/*
 * Home
*=============================================*/
/* -- -- */
@-webkit-keyframes sdb04 {
   0% {
      -webkit-transform: translate(0, 0);
   }

   20% {
      -webkit-transform: translate(0, 10px);
   }

   40% {
      -webkit-transform: translate(0, 0);
   }
}

@keyframes sdb04 {
   0% {
      transform: translate(0, 0);
   }

   20% {
      transform: translate(0, 10px);
   }

   40% {
      transform: translate(0, 0);
   }
}

/* -- -- */
#top__kv {
   width: 100%;
   height: 615px;
   position: relative;
}

#top__kv:before {
   content: '';
   width: 67.1875%;
   height: 85px;
   background: url("../img/index/top_kv-deco.png") no-repeat center right/cover;
   background-blend-mode: multiply;
   position: absolute;
   bottom: 0;
   left: 0;
}

#top__kv .bg {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   z-index: -1;
}

#top__kv .wrap {
   height: 100%;
}

#top__kv h1 {
   font-weight: 600;
   font-size: 32px;
   line-height: 54px;
   letter-spacing: 0.1em;
   color: #fff;
   padding-top: 140px;
}

#top__kv .photo {
   width: 657px;
   padding-top: 20px;
}

.scroll {
   width: 114px;
   position: absolute;
   bottom: 120px;
   right: 70px;
}

.scroll img {
   -webkit-animation: sdb04 1.5s infinite;
   animation: sdb04 1.5s infinite;
}

@media screen and (max-width: 991px) {
   #top__kv:before {
      width: 90%;
   }

   #top__kv h1 {
      font-size: 24px;
   }
}

@media screen and (max-width: 767px) {
   #top__kv {
      height: 400px;
   }

   #top__kv:before {
      height: 50px;
   }

   #top__kv h1 {
      font-size: 20px;
      line-height: 32px;
      padding-top: 100px;
   }

   #top__kv .photo {
      width: 100%;
   }
}

/* -- -- */
.purchase_consultation {
   width: 285px;
   text-align: center;
   background: url("../img/index/purchase_consultation-box.png") no-repeat center top/cover;
   padding: 106px 0;
   position: absolute;
   top: -235px;
   right: 40px;
}

.purchase_consultation h3 {
   width: 136px;
   margin: 0 auto;
}

.purchase_consultation dl {
   font-family: 'Yuji Syuku', serif;
   line-height: 28px;
   letter-spacing: 0;
   padding-top: 15px;
}

.purchase_consultation dl dt {
   font-weight: 400;
   font-size: 24px;
   color: #8d2029;
}

.purchase_consultation dl dd {
   font-size: 18px;
}

.purchase_consultation dl dd a {
   font-size: 20px;
}

@media screen and (max-width: 1400px) {
   .purchase_consultation {
      top: -255px;
      right: 20px;
   }
}

@media screen and (max-width: 991px) {
   .purchase_consultation {
      margin: 0 auto;
      position: static;
   }
}

/* -- -- */
#top__about {
   background: url("../img/common/bg03.jpg") repeat center top/cover;
   padding: 210px 0 345px;
   position: relative;
}

#top__about h2 {
   padding-bottom: 80px;
}

#top__about .row {
   position: relative;
   z-index: 1;
}

#top__about .row .photo {
   width: 50%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

#top__about .row .photo span {
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   color: transparent;
}

#top__about .row .desc {
   width: 50%;
   background-position: center top;
   background-repeat: repeat;
   background-image: url("../img/common/bg03.jpg");
   background-color: #d2ccab;
   background-blend-mode: multiply;
   box-sizing: border-box;
   margin-left: auto;
   padding: 20px 90px 60px;
}

#top__about .row .desc .deco3 {
   width: 83px;
   margin: 0 auto;
}

#top__about .row .deco1 {
   width: 542px;
   position: absolute;
   top: -205px;
   right: 100%;
   margin-right: -35px;
   z-index: -1;
}

#top__about .row .deco2 {
   width: 630px;
   position: absolute;
   top: 125px;
   left: 100%;
   margin-left: -205px;
}

@media screen and (max-width: 991px) {
   #top__about {
      padding-top: 80px;
   }

   #top__about h2 {
      padding-top: 80px;
   }

   #top__about .row .desc {
      padding: 20px 20px 40px;
   }
}

@media screen and (max-width: 767px) {
   #top__about {
      padding: 40px 0 80px;
   }

   #top__about h2 {
      padding: 40px 0;
   }

   #top__about .row .wrap {
      padding: 0;
   }

   #top__about .row .photo {
      width: 100%;
      height: auto;
      padding-top: 45%;
      position: relative;
   }

   #top__about .row .desc {
      width: 100%;
      padding: 20px 20px;
   }

   #top__about .row .deco1 {
      display: none;
   }

   #top__about .row .deco2 {
      width: 155px;
      top: 82%;
      right: -6px;
      left: auto;
      margin-left: 0;
   }
}

/* -- -- */
#top__reasons {
   padding: 190px 0;
   position: relative;
}

#top__reasons .box {
   display: flex;
   flex-wrap: wrap;
   padding-top: 85px;
}

#top__reasons .box .item {
   width: 385px;
   background-color: #fff;
   border-top: 9px solid #7c6c10;
   border-bottom: 9px solid #7c6c10;
}

#top__reasons .box .item+.item {
   margin-left: 20px;
}

#top__reasons .box .item .no {
   width: 75px;
   background-color: #7c6c10;
   color: #fff;
   text-align: center;
   letter-spacing: 0;
   padding: 19px 0 18px;
   margin: -37px auto 0;
   position: relative;
   z-index: 1;
}

#top__reasons .box .item .inr {
   padding: 20px 70px 50px;
}

#top__reasons .box .item h3 {
   text-align: center;
}

#top__reasons .box .item .txt {
   padding-top: 35px;
}

#top__reasons .button {
   padding-top: 115px;
}

@media screen and (max-width: 1400px) {
   #top__reasons .box .item {
      width: 32%;
   }

   #top__reasons .box .item+.item {
      margin-left: 2%;
   }

   #top__reasons .box .item .inr {
      padding: 20px 20px 50px;
   }
}

@media screen and (max-width: 767px) {
   #top__reasons {
      padding: 80px 0;
   }

   #top__reasons .box {
      display: block;
      padding-top: 20px;
   }

   #top__reasons .box .item {
      width: 100%;
   }

   #top__reasons .box .item+.item {
      margin-top: 20px;
      margin-left: 0;
   }

   #top__reasons .box .item .no {
      width: 60px;
      margin-top: -30px;
      padding: 12px 0;
   }

   #top__reasons .box .item .inr {
      padding: 20px 20px;
   }

   #top__reasons .box .item .txt {
      padding-top: 15px;
   }

   #top__reasons .button {
      padding-top: 40px;
   }
}

/* -- -- */
#top__purchased {
   background: url("../img/common/bg02.jpg") no-repeat center top/cover;
   padding: 220px 0;
}

#top__purchased h2 {
   color: #fff;
}

#top__purchased .box {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   padding-top: 70px;
}

#top__purchased .box .item {
   display: flex;
   flex-direction: column;
   justify-content: center;
   width: 290px;
   height: 260px;
   background-color: #fff;
   text-align: center;
   box-sizing: border-box;
   margin-bottom: 10px;
   margin-left: 13px;
   padding: 20px 20px;
   position: relative;
   transition: all 0.3s;
}

#top__purchased .box .item:nth-child(4n + 1) {
   margin-left: 0;
}

#top__purchased .box .item dl dt img {
   max-height: 160px;
}

#top__purchased .box .item .item-link {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

#top__purchased .box .item .item-link a {
   display: block;
   width: 100%;
   height: 100%;
   color: transparent;
}

#top__purchased .box .item:hover {
   opacity: 0.7;
   cursor: pointer;
}

#top__purchased .button {
   padding-top: 180px;
}

@media screen and (max-width: 1400px) {
   #top__purchased .box .item {
      width: calc(25% - 10px);
      padding: 10px 10px;
   }

   #top__purchased .box .item:nth-child(4n + 1) {
      margin-left: 0;
   }
}

@media screen and (max-width: 767px) {
   #top__purchased {
      padding: 80px 0;
   }

   #top__purchased .box {
      padding-top: 20px;
   }

   #top__purchased .box .item {
      width: calc(50% - 5px);
      height: auto;
      margin-left: 10px;
   }

   #top__purchased .box .item:nth-child(4n + 1) {
      margin-left: 10px;
   }

   #top__purchased .box .item:nth-child(2n + 1) {
      margin-left: 0;
   }

   #top__purchased .button {
      padding-top: 30px;
   }
}

/* -- -- */
#top__price {
   background: url("../img/index/top__price-bg.jpg") no-repeat center top/cover;
   padding: 190px 0 125px;
}

#top__price .top__price-slider {
   padding-top: 35px;
}

#top__price .top__price-slider .slide {
   width: 290px;
   background-color: #fff;
   box-sizing: border-box;
   transition: all 0.3s;
   position: relative;
}

#top__price .top__price-slider .slide+.slide {
   margin-left: 13px;
}

#top__price .top__price-slider .slide .photo {
   text-align: center;
   padding-top: 50px;
}

#top__price .top__price-slider .slide .photo img {
   max-height: 143px;
   box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
   margin: 0 auto;
}

#top__price .top__price-slider .slide .caption {
   min-height: 36px;
   text-align: center;
   padding-top: 10px;
   padding-bottom: 30px;
}

#top__price .top__price-slider .slide .ttl {
   background-color: #7c6c10;
   color: #fff;
   text-align: center;
   padding: 17px 10px;
}

#top__price .top__price-slider .slide>a {
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 1;
}

#top__price .top__price-slider .slide:hover {
   opacity: 0.7;
}

#top__price .slick-arrow {
   width: 25px;
   height: 60px;
   border: 0;
   color: transparent;
   cursor: pointer;
   position: absolute;
   top: 160px;
   z-index: 1;
   transition: all 0.3s;
}

#top__price .slick-arrow:hover {
   opacity: 0.7;
}

#top__price .slick-prev {
   background: url("../img/common/sl_prev.svg") no-repeat center top/cover;
   left: -15px;
}

#top__price .slick-next {
   background: url("../img/common/sl_next.svg") no-repeat center top/cover;
   right: -15px;
}

#top__price .slick-dots {
   display: flex;
   align-items: center;
   justify-content: center;
   padding-top: 65px;
}

#top__price .slick-dots li {
   width: 15px;
   height: 15px;
   background-color: #9fa0a0;
   border-radius: 50%;
   margin: 0 13px;
   position: relative;
}

#top__price .slick-dots li button {
   display: block;
   width: 100%;
   height: 100%;
   opacity: 0;
   position: absolute;
   top: 0;
   left: 0;
   cursor: pointer;
}

#top__price .slick-dots li.slick-active {
   background-color: #7c6c10;
}

#top__price .button {
   padding-top: 60px;
}

@media screen and (max-width: 1400px) {
   #top__price .top__price-slider .slide {
      margin: 0 5px;
   }

   #top__price .top__price-slider .slide+.slide {
      margin-left: 5px;
   }

   #top__price .top__price-slider .slide .ttl {
      font-size: 20px;
   }
}

@media screen and (max-width: 767px) {
   #top__price {
      padding: 80px 0;
   }

   #top__price .top__price-slider .slick-dots {
      padding-top: 20px;
   }

   #top__price .top__price-slider .slick-dots li {
      width: 10px;
      height: 10px;
      margin: 0 5px;
   }

   #top__price .top__price-slider .slick-arrow {
      top: 150px;
   }

   #top__price .button {
      padding-top: 40px;
   }
}

/* -- -- */
#top__flow {
   background: url("../img/index/top__flow-bg.jpg") no-repeat center top/cover;
   color: #fff;
   padding: 190px 0 200px;
}

#top__flow .box {
   display: flex;
   flex-wrap: wrap;
   padding-top: 50px;
}

#top__flow .box .item {
   width: 290px;
   text-align: center;
   box-sizing: border-box;
   position: relative;
}

#top__flow .box .item+.item {
   margin-left: 13px;
}

#top__flow .box .item .no {
   width: 75px;
   background-color: #7c6c10;
   color: #fff;
   text-align: center;
   letter-spacing: 0;
   padding: 19px 0 18px;
   position: absolute;
   top: 0;
   left: 0;
}

#top__flow .box .item .txt {
   padding-top: 15px;
}

@media screen and (max-width: 1400px) {
   #top__flow .box .item {
      width: calc(25% - 10px);
   }
}

@media screen and (max-width: 991px) {
   #top__flow .box .item {
      width: calc(50% - 10px);
      padding-bottom: 20px;
   }

   #top__flow .box .item:nth-child(2n + 1) {
      margin-left: 0;
   }
}

@media screen and (max-width: 767px) {
   #top__flow {
      padding: 80px 0;
   }

   #top__flow .box {
      display: block;
      padding-top: 20px;
   }

   #top__flow .box .item {
      width: 100%;
   }

   #top__flow .box .item+.item {
      margin-left: 0;
   }

   #top__flow .box .item .no {
      width: 60px;
      padding: 12px 0;
   }
}

/* -- -- */
#top__voice {
   padding: 250px 0;
}

#top__voice .box {
   padding-top: 20px;
}

#top__voice .box dl {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   background-color: #fff;
   margin-top: 30px;
   padding: 40px 115px;
}

#top__voice .box dl dt {
   width: 150px;
}

#top__voice .box dl dd {
   width: calc(100% - 180px);
}

#top__voice .box dl:nth-child(odd) {
   border-left: 15px solid #7c6c10;
}

#top__voice .box dl:nth-child(odd) dd {
   margin-left: 30px;
}

#top__voice .box dl:nth-child(even) {
   border-right: 15px solid #7c6c10;
}

#top__voice .box dl:nth-child(even) dt {
   order: 2;
   margin-left: 30px;
}

#top__voice .box dl:nth-child(even) dd {
   order: 1;
}

#top__voice .button {
   padding-top: 60px;
}

@media screen and (max-width: 991px) {
   #top__voice .box dl {
      padding: 40px 40px;
   }
}

@media screen and (max-width: 767px) {
   #top__voice {
      padding: 80px 0;
   }

   #top__voice .box dl {
      display: block;
      padding: 30px 20px;
   }

   #top__voice .box dl dt {
      margin: 0 auto;
   }

   #top__voice .box dl dd {
      width: 100%;
      margin: 0 auto;
      padding-top: 20px;
   }

   #top__voice .box dl:nth-child(odd) dd {
      margin-left: auto;
   }

   #top__voice .box dl:nth-child(even) dt {
      margin-left: auto;
   }

   #top__voice .button {
      padding-top: 40px;
   }
}

/* -- -- */
.faq_list {
   counter-reset: count;
}

.faq_list dl {
   background-color: #fff;
   border: 1px solid #7c6c10;
   margin-bottom: 13px;
}

.faq_list dl dt {
   cursor: pointer;
   padding: 21px 100px 21px;
   position: relative;
}

.faq_list dl dt:before {
   content: "Q"counter(count);
   counter-increment: count;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 80px;
   height: 100%;
   background-color: #7c6c10;
   font-weight: 700;
   font-size: 32px;
   line-height: 38px;
   letter-spacing: 0.1em;
   color: #fff;
   text-align: center;
   position: absolute;
   top: 0;
   left: 0;
}

.faq_list dl dt .icon {
   display: block;
   width: 16px;
   height: 16px;
   background-color: #7c6c10;
   padding: 8px 8px;
   position: absolute;
   top: 50%;
   right: 25px;
   transform: translateY(-50%);
}

.faq_list dl dt .icon:before {
   content: '';
   width: 16px;
   height: 0;
   border-top: 3px solid #fff;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   transition: all 0.3s;
}

.faq_list dl dt .icon:after {
   content: '';
   width: 0;
   height: 16px;
   border-left: 3px solid #fff;
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   transition: all 0.3s;
}

.faq_list dl dd {
   display: none;
   padding: 21px 25px 21px 100px;
   position: relative;
}

.faq_list dl dd:before {
   content: 'A';
   display: flex;
   align-items: center;
   justify-content: flex-end;
   width: 80px;
   height: 100%;
   font-weight: 700;
   font-size: 32px;
   line-height: 38px;
   letter-spacing: 0.1em;
   color: #7c6c10;
   text-align: right;
   position: absolute;
   top: 0;
   left: 0;
}

.faq_list dl dd:after {
   content: '';
   height: 0;
   border-top: 1px solid #7c6c10;
   position: absolute;
   top: 0;
   right: 25px;
   left: 100px;
}

.faq_list dl.active dt .icon:after {
   transform: translate(-50%, -50%) rotate(90deg);
}

#top__faq {
   background: url("../img/common/bg03.jpg") repeat center top;
   padding: 150px 0;
}

#top__faq .faq_list {
   padding-top: 35px;
}

#top__faq .button {
   padding-top: 60px;
}

@media screen and (max-width: 767px) {
   .faq_list dl dt {
      font-size: 18px;
      line-height: 32px;
      padding: 15px 50px 15px 60px;
   }

   .faq_list dl dt:before {
      width: 50px;
      font-size: 20px;
   }

   .faq_list dl dt .icon {
      width: 15px;
      height: 15px;
      padding: 5px 5px;
      right: 15px;
   }

   .faq_list dl dt .icon:before {
      width: 15px;
   }

   .faq_list dl dt .icon:after {
      height: 15px;
   }

   .faq_list dl dd {
      padding: 15px 50px 15px 60px;
   }

   .faq_list dl dd:before {
      width: 50px;
      font-size: 20px;
   }

   .faq_list dl dd:after {
      right: 15px;
      left: 60px;
   }

   #top__faq {
      padding: 80px 0;
   }

   #top__faq .faq_list {
      padding-top: 20px;
   }

   #top__faq .button {
      padding-top: 30px;
   }
}

/* -- -- */
/*
 * Items
 *=============================================*/
/* -- -- */
#items__list {
   padding: 200px 0 345px;
}

#items__list .wrap {
   display: flex;
   flex-wrap: wrap;
}

#items__list .item {
   width: 47.5%;
   box-sizing: border-box;
   background-color: #fff;
   border-top: 9px solid #7c6c10;
   border-bottom: 9px solid #7c6c10;
   margin-bottom: 55px;
   margin-left: 5%;
   padding: 45px 75px;
}

#items__list .item:nth-child(2n + 1) {
   margin-left: 0;
}

#items__list .item .photo {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 250px;
   text-align: center;
}

#items__list .item .photo img {
   max-height: 250px;
}

#items__list .item h3 {
   text-align: center;
}

#items__list .item .txt {
   word-break: break-all;
   padding-top: 10px;
}

@media screen and (max-width: 991px) {
   #items__list .item {
      padding: 40px 20px;
   }
}

@media screen and (max-width: 767px) {
   #items__list {
      padding: 80px 0 50px;
   }

   #items__list .wrap {
      display: block;
   }

   #items__list .item {
      width: 100%;
      margin-bottom: 30px;
      margin-left: 0;
      padding: 20px 20px;
   }
}

/* -- -- */
/*
 * Company
 *=============================================*/
/* -- -- */
#company__profile {
   padding: 200px 0 240px;
}

#company__profile .tb-style {
   background-color: #fff;
   padding: 100px 80px;
}

@media screen and (max-width: 991px) {
   #company__profile .tb-style {
      padding: 100px 40px;
   }
}

@media screen and (max-width: 767px) {
   #company__profile {
      padding: 80px 0;
   }

   #company__profile .tb-style {
      padding: 40px 20px;
   }
}

/* -- -- */
/*
 * FAQ
 *=============================================*/
/* -- -- */
#faq__content {
   padding: 200px 0 190px;
}

@media screen and (max-width: 767px) {
   #faq__content {
      padding: 80px 0 70px;
   }
}

/* -- -- */
/*
 * INFO
 *=============================================*/
/* -- -- */
.wp-pagenavi {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   line-height: 33px;
   letter-spacing: 0;
   padding-top: 80px;
}

.wp-pagenavi>* {
   display: block;
   width: 33px;
   background-color: #fff;
   border: 1px solid #7c6c10;
   color: #7c6c10;
   text-align: center;
   margin: 0 10px;
}

.wp-pagenavi>*:hover {
   background-color: #7c6c10;
   color: #fff;
   opacity: 1;
}

.wp-pagenavi>*.current {
   background-color: #7c6c10;
   color: #fff;
   pointer-events: none;
}

.wp-pagenavi .previouspostslink {
   width: 15px;
   height: 16px;
   color: transparent;
   border: 0;
   background-color: transparent;
   margin: 0 20px 0 0;
   position: relative;
}

.wp-pagenavi .previouspostslink:before {
   content: '';
   width: 0;
   height: 0;
   border-top: 8px solid transparent;
   border-right: 14px solid #7c6c10;
   border-bottom: 8px solid transparent;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
}

.wp-pagenavi .previouspostslink:hover {
   text-decoration: none;
}

.wp-pagenavi .nextpostslink {
   width: 15px;
   height: 16px;
   color: transparent;
   border: 0;
   background-color: transparent;
   margin: 0 0 0 20px;
   position: relative;
}

.wp-pagenavi .nextpostslink:before {
   content: '';
   width: 0;
   height: 0;
   border-top: 8px solid transparent;
   border-left: 14px solid #7c6c10;
   border-bottom: 8px solid transparent;
   position: absolute;
   top: 50%;
   left: 0;
   transform: translateY(-50%);
}

.wp-pagenavi .nextpostslink:hover {
   text-decoration: none;
}

@media screen and (max-width: 767px) {
   .wp-pagenavi {
      padding-top: 50px;
   }

   .wp-pagenavi>* {
      margin: 0 5px;
   }
}

/* -- -- */
.cpt__list {
   padding: 200px 0;
}

.news__list li {
   display: table;
   width: 100%;
   box-sizing: border-box;
   border-top: 2px dotted #7c6c10;
   border-bottom: 2px dotted #7c6c10;
   padding: 22px 50px;
}

.news__list li+li {
   border-top: 0;
}

.news__list li>* {
   display: table-cell;
   vertical-align: middle;
}

.news__list li .cate {
   width: 180px;
}

.news__list li .cate a {
   display: block;
   background-color: #7c6c10;
   color: #fff;
   border-radius: 50px;
   line-height: 30px;
   text-align: center;
   padding: 1px 0 3px;
}

.news__list li .date {
   width: 140px;
   line-height: 30px;
   padding-left: 65px;
}

.news__list li .ttl {
   line-height: 30px;
   padding-left: 210px;
}

.news__list li .ttl a {
   max-height: 30px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 1;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
}

.record__list .item {
   display: table;
   width: 100%;
   box-sizing: border-box;
   background-color: #fff;
   border: 5px solid #7c6c10;
   border-radius: 20px;
   padding: 60px 60px;
}

.record__list .item+.item {
   margin-top: 50px;
}

.record__list .item>* {
   display: table-cell;
   vertical-align: top;
}

.record__list .item .photo {
   width: 305px;
}

.record__list .item .photo a {
   display: block;
   width: 100%;
   padding-top: 78.6%;
   position: relative;
}

.record__list .item .photo a span {
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

.record__list .item .col {
   padding-left: 20px;
}

.record__list .item .ttl {
   border-bottom: 2px solid #7c6c10;
   padding-bottom: 10px;
}

.record__list .item .ttl a {
   max-height: 70px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 1;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
}

.record__list .item .txt {
   padding-top: 15px;
}

.record__list .item .txt p {
   max-height: 150px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 4;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
}

@media screen and (max-width: 1440px) {
   .news__list li {
      padding: 22px 0;
   }

   .news__list li .date {
      padding-left: 40px;
   }

   .news__list li .ttl {
      padding-left: 40px;
   }
}

@media screen and (max-width: 991px) {
   .record__list .item {
      padding: 40px 40px;
   }
}

@media screen and (max-width: 767px) {
   .cpt__list {
      padding: 80px 0;
   }

   .news__list {
      padding-top: 30px;
   }

   .news__list li {
      display: block;
      padding: 20px 0 15px;
   }

   .news__list li>* {
      display: inline-block;
   }

   .news__list li .cate {
      width: 120px;
   }

   .news__list li .date {
      padding-left: 10px;
   }

   .news__list li .ttl {
      display: inline-block;
      padding: 10px 0 0;
   }

   .news__list li .ttl a {
      max-height: 60px;
      -webkit-line-clamp: 2;
   }

   .record__list .item {
      display: block;
      padding: 20px 20px;
   }

   .record__list .item+.item {
      margin-top: 40px;
   }

   .record__list .item>* {
      display: block;
   }

   .record__list .item .photo {
      width: 100%;
   }

   .record__list .item .col {
      width: 100%;
      padding-top: 15px;
      padding-left: 0;
   }

   .record__list .item .ttl a {
      -webkit-line-clamp: 2;
   }
}

/* -- -- */
/*
 * VOICE
 *=============================================*/
/* -- -- */
#cpt__voice {
   padding: 200px 0 270px;
}

.voice__list dl {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   background-color: #fff;
   margin-top: 30px;
   padding: 40px 115px;
}

.voice__list dl dt {
   width: 150px;
}

.voice__list dl dt img {
   display: block;
   width: 150px;
   height: 150px;
   border-radius: 50%;
   object-fit: cover;
}

.voice__list dl dd {
   width: calc(100% - 180px);
}

.voice__list dl:nth-child(odd) {
   border-left: 15px solid #7c6c10;
}

.voice__list dl:nth-child(odd) dd {
   margin-left: 30px;
}

.voice__list dl:nth-child(even) {
   border-right: 15px solid #7c6c10;
}

.voice__list dl:nth-child(even) dt {
   order: 2;
   margin-left: 30px;
}

.voice__list dl:nth-child(even) dd {
   order: 1;
}

@media screen and (max-width: 991px) {
   .voice__list dl {
      padding: 40px 40px;
   }
}

@media screen and (max-width: 767px) {
   #cpt__voice {
      padding: 80px 0;
   }

   .voice__list dl {
      display: block;
      padding: 30px 20px;
   }

   .voice__list dl dt {
      margin: 0 auto;
   }

   .voice__list dl dd {
      width: 100%;
      margin: 0 auto;
      padding-top: 20px;
   }

   .voice__list dl:nth-child(odd) dd {
      margin-left: auto;
   }

   .voice__list dl:nth-child(even) dt {
      margin-left: auto;
   }
}

/* -- -- */
/*
 * Detail
 *=============================================*/
/* --- --- */
#cpt__detail {
   padding: 150px 0;
}

#cpt__detail .the_title {
   padding: 20px 0;
}

#cpt__detail .the_content {
   border-top: 2px solid #7c6c10;
   padding-top: 30px;
}

#cpt__detail .the_content p {
   margin-bottom: 20px;
}

#cpt__detail .the_content p:last-child {
   margin-bottom: 0;
}

#cpt__detail .the_content h2 {
   font-weight: 700;
   font-size: 26px;
   line-height: 40px;
   margin-bottom: 10px;
}

#cpt__detail .the_content h3 {
   font-weight: 700;
   font-size: 24px;
   line-height: 40px;
   margin-bottom: 10px;
}

#cpt__detail .the_content h4 {
   font-weight: 700;
   font-size: 20px;
   line-height: 40px;
   margin-bottom: 10px;
}

#cpt__detail .the_content ul {
   list-style-type: disc;
   padding-left: 26px;
}

#cpt__detail .the_content ol {
   list-style: decimal;
   padding-left: 26px;
}

#cpt__detail .the_content p img {
   display: inline-block;
   vertical-align: top;
   margin-right: 10px;
}

#cpt__detail .the_content p img.aligncenter {
   display: block;
   margin: 0 auto;
}

#cpt__detail .the_content p img.alignright {
   display: block;
   margin-left: auto;
}

#cpt__detail .the_content p img:last-child {
   margin-right: 0;
}

#cpt__detail .post-btn {
   width: 140px;
   line-height: 30px;
   text-align: center;
   margin: 80px auto 0;
   padding: 0 40px;
   position: relative;
}

#cpt__detail .post-btn a {
   display: inline-block;
}

#cpt__detail .post-btn a:hover {
   opacity: 1;
   color: #7c6c10;
}

#cpt__detail .post-btn .prev {
   position: absolute;
   top: 0;
   left: 0;
}

#cpt__detail .post-btn .prev a {
   display: block;
   padding: 0;
}

#cpt__detail .post-btn .next {
   position: absolute;
   top: 0;
   right: 0;
}

#cpt__detail .post-btn .next a {
   display: block;
   padding: 0;
}

@media screen and (max-width: 991px) {
   #cpt__detail .the_content p img {
      display: block;
      margin: 0 auto 15px;
   }

   #cpt__detail .the_content p img:last-child {
      margin: 0 auto;
   }

   #cpt__detail .the_content ul {
      padding-left: 20px;
   }

   #cpt__detail .the_content ol {
      padding-left: 20px;
   }
}

@media screen and (max-width: 767px) {
   #cpt__detail {
      padding: 80px 0;
   }

   #cpt__detail .the_content h2 {
      font-size: 20px;
      line-height: 35px;
   }

   #cpt__detail .the_content h3 {
      font-size: 18px;
      line-height: 32px;
   }

   #cpt__detail .the_content h4 {
      font-size: 16px;
      line-height: 32px;
   }

   #cpt__detail .the_content p img {
      display: block;
      margin: 0 auto 15px;
   }

   #cpt__detail .the_content p img.alignright {
      margin: 0 auto 15px;
   }

   #cpt__detail .the_content p img:last-child {
      margin: 0 auto !important;
   }

   #cpt__detail .the_content ul {
      padding-left: 20px;
   }

   #cpt__detail .the_content ol {
      padding-left: 20px;
   }

   #cpt__detail .post-btn {
      margin-top: 50px;
   }
}

/* --- --- */
/*
 * FORM
 *=============================================*/
/* -- -- */
.select {
   display: flex;
   width: 100%;
   background-color: #FBFCFC;
   border: 1px solid #DFDFDF;
   position: relative;
}

.select select {
   display: block;
   flex: 1;
   width: 100%;
   height: 100%;
   -webkit-appearance: none;
   -moz-appearance: none;
   outline: 0;
   border: 0;
   box-shadow: none;
   color: #000;
   font-weight: bold;
   line-height: 32px;
   padding: 18px 50px 18px 20px;
   background: transparent;
   border: 0;
   cursor: pointer;
}

.select select::-ms-expand {
   display: none;
}

.select .error {
   position: absolute;
   top: 100%;
   left: 0;
}

@media screen and (max-width: 767px) {
   .select select {
      padding: 9px 45px 9px 15px;
   }

   .mw_wp_form_preview .select {
      background-color: transparent;
      border: 0;
   }
}

#mailform {
   padding: 175px 0 230px;
}

.form-step {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   font-weight: 500;
}

.form-step li {
   width: calc(33% - 4px);
   background-color: #b3b3b3;
   text-align: center;
   padding: 19px 0;
   position: relative;
}

.form-step li+li {
   margin-left: 7px;
}

.form-step li:before {
   content: '';
   width: 0;
   height: 0;
   border-top: 39px solid transparent;
   border-bottom: 39px solid transparent;
   border-left: 28px solid #fff;
   position: absolute;
   top: 0;
   left: 0;
}

.form-step li:after {
   content: '';
   width: 0;
   height: 0;
   border-top: 39px solid transparent;
   border-bottom: 39px solid transparent;
   border-left: 28px solid #b3b3b3;
   position: absolute;
   top: 0;
   left: 100%;
   z-index: 1;
}

.form-step li:first-child:before {
   display: none;
}

.form-step li:last-child:after {
   display: none;
}

.form-step li .no {
   display: inline-block;
   vertical-align: middle;
   background-color: #231815;
   width: 35px;
   height: 35px;
   color: #fff;
   font-weight: 800;
   font-size: 20px;
   line-height: 35px;
   letter-spacing: 0;
   border-radius: 50%;
   text-align: center;
   margin-right: 5px;
   position: relative;
   top: -4px;
}

.form-step li .deco {
   display: none;
   width: 120px;
   position: absolute;
   bottom: 25px;
   left: 50%;
   transform: translateX(-50%);
   z-index: -1;
}

.form-step li.active {
   background-color: #f15a24;
   color: #fff;
}

.form-step li.active:after {
   border-left-color: #f15a24;
}

.form-step li.active .no {
   background-color: #f4d432;
   color: #f15a24;
}

.form-step li.active .deco {
   display: block;
}

#mailform .desc {
   padding-top: 40px;
}

#mailform input[type="text"],
#mailform input[type="tel"],
#mailform input[type="email"],
#mailform input[type="date"],
#mailform textarea {
   display: block;
   width: 100%;
   background-color: #fff;
   border: 1px solid #999999;
   line-height: 38px;
   border-radius: 0 !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 0 15px;
}

#mailform textarea {
   height: 240px;
   resize: vertical;
}

#mailform .form-input {
   border: 5px solid #f7931e;
   border-radius: 20px;
   margin-top: 80px;
   padding: 130px 80px;
}

#mailform .form-input dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
   padding-bottom: 29px;
}

#mailform .form-input dl+dl {
   border-top: 2px dotted #f7931e;
   padding-top: 29px;
}

#mailform .form-input dl:last-child {
   padding-bottom: 0;
}

#mailform .form-input dl>* {
   display: table-cell;
   vertical-align: middle;
}

#mailform .form-input dl dt {
   width: 380px;
   font-family: 'M PLUS Rounded 1c', sans-serif;
   font-weight: 500;
   font-size: 24px;
   line-height: 28px;
   letter-spacing: 0;
   position: relative;
}

#mailform .form-input dl small {
   display: inline-block;
   width: 62px;
   background-color: #f7931e;
   font-family: 'Noto Sans JP', sans-serif;
   font-weight: 500;
   font-size: 18px;
   letter-spacing: 0;
   line-height: 27px;
   color: #fff;
   text-align: center;
   margin-left: 5px;
   padding: 1px 0 0;
   position: absolute;
   top: 0;
   right: 0;
}

#mailform .form-input dl small.non {
   background-color: #808080;
   color: #fff;
}

#mailform .form-input dl dd {
   padding-left: 40px;
   position: relative;
}

#mailform .form-input dl dd ul {
   color: #f7931e;
}

#mailform .form-input dl dd ul input {
   color: #000;
}

#mailform .form-input dl dd ul li {
   position: relative;
}

#mailform .form-input dl dd ul li small {
   top: auto;
   right: 100%;
   bottom: 6px;
   left: auto;
   margin-right: 40px;
}

#mailform .form-input dl dd ul li strong {
   font-weight: inherit;
}

#mailform .error {
   font-size: 14px;
   line-height: 20px;
   position: absolute;
   top: 100%;
   left: 40px;
}

#mailform .form-privacy-policy {
   text-align: center;
   padding-top: 80px;
}

#mailform .form-privacy-policy .txt {
   text-align: center;
}

#mailform .form-privacy-policy .mwform-checkbox-field {
   display: block;
}

#mailform .form-privacy-policy label {
   display: inline-block;
   width: 25px;
   height: 30px;
   overflow: hidden;
   cursor: pointer;
   position: relative;
   top: 3px;
   margin-right: 10px;
}

#mailform .form-privacy-policy label input {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   cursor: pointer;
   opacity: 0;
}

#mailform .form-privacy-policy .mwform-checkbox-field-text {
   color: transparent;
   position: relative;
}

#mailform .form-privacy-policy .mwform-checkbox-field-text:before {
   content: '';
   width: 20px;
   height: 20px;
   box-sizing: border-box;
   border: 1px solid #000;
   background-color: #fff;
   position: absolute;
   top: 2px;
   left: 0;
}

#mailform .form-privacy-policy .mwform-checkbox-field-text:after {
   content: '';
   display: none;
   position: absolute;
   left: 6px;
   top: 4px;
   width: 5px;
   height: 10px;
   border: solid #f7931e;
   border-width: 0 3px 3px 0;
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
}

#mailform .form-privacy-policy input:checked~.mwform-checkbox-field-text:after {
   display: block;
}

#mailform .form-privacy-policy .check-agree {
   display: flex;
   align-items: center;
   justify-content: center;
   margin-top: 50px;
   position: relative;
}

#mailform .form-privacy-policy .check-agree .error {
   top: 75%;
   left: 50%;
   transform: translateX(-50%);
}

#mailform .form-privacy-policy .check-agree a {
   margin-left: 10px;
}

#mailform .form-privacy-policy .check-agree a:hover {
   text-decoration: underline;
}

#mailform .form-privacy-policy .box {
   width: 100%;
   max-width: 600px;
   height: 160px;
   border: 1px solid #000;
   box-sizing: border-box;
   overflow: hidden auto;
   margin: 10px auto 0;
}

#mailform .form-btn {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   padding-top: 150px;
}

#mailform .form-btn>* {
   display: block;
   width: 380px;
   height: 62px;
   background-color: #f7931e;
   box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3);
   border: 0;
   text-align: center;
   border-radius: 50px;
   color: #fff;
   font-family: 'M PLUS Rounded 1c', sans-serif;
   font-weight: 800;
   font-size: 24px;
   line-height: 40px;
   cursor: pointer;
   transition: all 0.3s;
   box-sizing: border-box;
   margin: 10px 5px;
   position: relative;
}

#mailform .form-btn>*:after {
   content: '';
   width: 0;
   height: 0;
   border-top: 7px solid transparent;
   border-bottom: 7px solid transparent;
   border-left: 12px solid #fff;
   transition: all 0.3s;
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translateY(-50%);
   transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#mailform .form-btn>*:hover {
   transform: translateY(6px);
   box-shadow: none;
}

#mailform .form-btn button[name="submitBack"] {
   background-color: #999;
}

.mw_wp_form_preview #mailform .desc {
   display: none;
}

.mw_wp_form_preview #mailform .form-input dl small {
   display: none;
}

.mw_wp_form_preview #mailform .form-input dl dd ul {
   color: #000;
}

.mw_wp_form_preview #mailform .form-input dl dd ul li strong {
   display: block;
}

.mw_wp_form_preview #mailform .form-privacy-policy {
   display: none;
}

@media screen and (max-width: 991px) {
   #mailform .form-input {
      padding: 100px 40px;
   }

   #mailform .form-input dl dt {
      width: 300px;
      font-size: 20px;
   }
}

@media screen and (max-width: 767px) {
   #mailform {
      padding: 100px 0;
   }

   .form-step {
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 18px;
   }

   .form-step li {
      padding: 11px 0;
   }

   .form-step li:before {
      border-top-width: 30px;
      border-bottom-width: 30px;
      border-left-width: 20px;
   }

   .form-step li:after {
      border-top-width: 30px;
      border-bottom-width: 30px;
      border-left-width: 20px;
   }

   .form-step li .deco {
      width: 70px;
      bottom: 30px;
   }

   .form-step li .no {
      width: 20px;
      height: 20px;
      font-size: 14px;
      line-height: 20px;
      top: -2px;
   }

   .form-step li+li .no {
      margin-left: 25px;
   }

   #mailform .desc {
      text-align: left;
      padding-top: 20px;
   }

   #mailform .desc br {
      display: none;
   }

   #mailform input[type="text"],
   #mailform input[type="tel"],
   #mailform input[type="email"],
   #mailform input[type="date"],
   #mailform textarea {
      line-height: 30px;
      padding: 4px 15px;
   }

   #mailform textarea {
      height: 150px;
   }

   #mailform .form-input {
      border-width: 3px;
      margin-top: 40px;
      padding: 50px 20px;
   }

   #mailform .form-input dl {
      display: block;
      padding-bottom: 20px;
   }

   #mailform .form-input dl+dl {
      padding-top: 20px;
   }

   #mailform .form-input dl>* {
      display: block;
   }

   #mailform .form-input dl dt {
      width: auto;
      font-size: 16px;
      font-family: 'Noto Sans JP', sans-serif;
   }

   #mailform .form-input dl small {
      width: 42px;
      font-size: 12px;
      line-height: 20px;
      padding: 0;
      top: 6px;
   }

   #mailform .form-input dl dd {
      padding-top: 10px;
      padding-left: 0;
   }

   #mailform .form-input dl dd ul li {
      padding-left: 52px;
   }

   #mailform .form-input dl dd ul li small {
      margin-right: 0;
      bottom: 9px;
      right: auto;
      left: 0;
   }

   #mailform .form-privacy-policy {
      padding-top: 40px;
   }

   #mailform .form-privacy-policy .txt {
      text-align: left;
   }

   #mailform .form-privacy-policy .check-agree {
      margin-top: 20px;
   }

   #mailform .error {
      font-size: 12px;
      left: 0;
   }

   #mailform .form-btn {
      padding-top: 70px;
   }

   #mailform .form-btn>* {
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 700;
      font-size: 16px;
   }

   .mw_wp_form_preview #mailform .form-input dl dd ul li {
      padding-left: 0;
   }
}

/* -- -- */
#txt_thanks {
   text-align: center;
   padding: 150px 0;
}

#txt_thanks .txt {
   padding-top: 60px;
}

#txt_thanks .txt+.txt {
   padding-top: 40px;
}

#txt_thanks .btn-s1 {
   padding-top: 60px;
}

@media screen and (max-width: 767px) {
   #txt_thanks {
      text-align: left;
      padding: 100px 0;
   }

   #txt_thanks .txt {
      padding-top: 40px;
   }

   #txt_thanks .txt+.txt {
      padding-top: 20px;
   }

   #txt_thanks .btn-s1 {
      padding-top: 40px;
   }
}

/* --- --- */
/*
 * 404
 *=============================================*/
/* --- --- */
#content-404 {
   text-align: center;
   padding: 200px 0;
}

#content-404 h2 {
   padding-bottom: 45px;
   position: relative;
}

#content-404 .button {
   padding-top: 50px;
}

@media screen and (max-width: 767px) {
   #content-404 {
      padding: 80px 0;
   }

   #content-404 h2 {
      padding-bottom: 20px;
   }

   #content-404 .button {
      padding-top: 20px;
   }
}

/* --- --- */
/*
 * Policy
*=============================================*/
/* --- --- */
#policy-content {
   padding: 220px 0 280px;
}

#policy-content .item {
   padding-top: 100px;
}

#policy-content h3 {
   background-color: #cccccc;
   font-weight: 500;
   padding: 8px 25px 7px;
}

#policy-content h4 {
   font-weight: bold;
   border-bottom: 1px solid #000;
   padding-top: 50px;
}

#policy-content .txt {
   padding-top: 30px;
}

#policy-content ol {
   padding-top: 30px;
}

#policy-content ol li {
   text-indent: -18px;
   padding-left: 18px;
}

@media screen and (max-width: 991px) {

   #policy-content .txt1 br,
   #policy-content .item:not(:last-child) .txt br {
      display: none;
   }
}

@media screen and (max-width: 767px) {
   #policy-content {
      padding: 80px 0;
   }

   #policy-content .item {
      padding-top: 50px;
   }

   #policy-content h4 {
      padding-top: 40px;
   }

   #policy-content .txt {
      padding-top: 20px;
   }

   #policy-content ol {
      padding-top: 20px;
   }

   #policy-content ol li {
      text-indent: -14px;
      padding-left: 14px;
   }

   #policy-content .txt-r {
      padding-top: 20px;
   }
}

/* --- --- */