@charset "UTF-8";

/*
 * Loading
*=============================================*/
#loading {
   width: 100%;
   height: 100vh;
   background-color: #F8F6F2;
   position: fixed;
   top: 0;
   left: 0;
   z-index: 999;
}

/*
 * Animation
*=============================================*/
/* --  -- */
.fadeInUp {
   opacity: 0;
}

.fadeInUp[style*="visible"] {
   opacity: 1;
}

.u_anime-imagesUp {
   overflow: hidden;
   position: relative;
}

.u_anime-imagesUp .img {
   -webkit-transform: scale(1.18);
   -ms-transform: scale(1.18);
   transform: scale(1.18);
   -webkit-transition: all 1s ease-in-out;
   transition: all 1s ease-in-out;
}

.u_anime-imagesUp:after {
   -webkit-transform: translate3d(0, 0, 0);
   transform: translate3d(0, 0, 0);
   width: 100%;
   position: absolute;
   height: 100%;
   content: "";
   display: block;
   z-index: 7;
   top: 0;
   left: 0;
   background: #fff;
   -webkit-transition: all 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
   transition: all 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.u_anime-imagesUp[style*="visible"]:after {
   -webkit-transform: translate3d(0, -100%, 0);
   transform: translate3d(0, -100%, 0);
}

.u_anime-imagesUp[style*="visible"] .img {
   -webkit-transform: scale(1);
   -ms-transform: scale(1);
   transform: scale(1);
}

/* --  -- */
/*
 * Custom
*=============================================*/
/* -- heading -- */
.h2 {
   width: 100%;
   max-width: 634px;
   background: url("../img/title_bg.png") no-repeat center/cover;
   font-weight: 700;
   font-size: 36px;
   line-height: 54px;
   letter-spacing: 0;
   box-sizing: border-box;
   color: #fff;
   text-align: center;
   margin: 0 auto;
   padding: 16px 0 18px;
}

.h2-bg {
   background-color: #FAF7DC;
   font-family: 'Noto Serif JP', serif;
   font-weight: 700;
   font-size: 24px;
   line-height: 35px;
   border-bottom: 2px solid #DBC33C;
   padding: 7px 20px 6px;
}

.h-18 {
   font-size: 18px;
   letter-spacing: 0;
   line-height: 26px;
}

.h-20 {
   font-family: 'Noto Serif JP', serif;
   font-weight: 700;
   font-size: 20px;
   letter-spacing: 0;
   line-height: 30px;
}

.h-22 {
   font-weight: 500;
   font-size: 22px;
   letter-spacing: 0;
   line-height: 32px;
}

.h-24 {
   font-family: 'Noto Serif JP', serif;
   font-weight: 700;
   font-size: 24px;
   letter-spacing: 0;
   line-height: 36px;
}

.h-24._bg {
   background-color: #4A6801;
   color: #fff;
   border-radius: 50px;
   text-align: center;
   padding: 14px 14px;
}

.h-26 {
   font-weight: 700;
   font-size: 26px;
   letter-spacing: 0;
   line-height: 36px;
   position: relative;
}

.h-28 {
   font-weight: 500;
   font-size: 28px;
   letter-spacing: 0;
   line-height: 36px;
   position: relative;
}

.h-32 {
   font-weight: 700;
   font-size: 32px;
   letter-spacing: 0;
   line-height: 46px;
}

.h-36 {
   font-weight: 700;
   font-size: 36px;
   letter-spacing: 0;
   line-height: 52px;
}

.h-40 {
   font-weight: 700;
   font-size: 40px;
   letter-spacing: 0;
   line-height: 48px;
   text-align: center;
   padding-bottom: 20px;
   position: relative;
}

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

   .h2-bg {
      font-size: 20px;
      padding: 7px 10px 6px;
   }

   .h-18 {
      font-size: 15px;
      line-height: 24px;
   }

   .h-20 {
      font-size: 18px;
      line-height: 30px;
   }

   .h-22 {
      font-size: 18px;
      line-height: 26px;
   }

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

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

   .h-28 {
      font-size: 22px;
      line-height: 36px;
   }

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

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

   .h-40 {
      font-size: 30px;
      line-height: 40px;
   }
}

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


.button a {
   display: inline-block;
   width: 100%;
   max-width: 300px;
   background-color: #FF0000;
   border: 1px solid #FF0000;
   border-radius: 5px;
   color: #fff;
   font-weight: 700;
   font-size: 15px;
   letter-spacing: 0;
   line-height: 22px;
   text-transform: uppercase;
   text-align: center;
   box-sizing: border-box;
   overflow: hidden;
   padding: 12px 0 14px;
   position: relative;
   z-index: 1;
}

.button a:hover {
   opacity: 1;
   background-color: #333;
   border-color: #333;
}

@media screen and (max-width: 767px) {
   .button {
      padding-right: 15px;
      padding-left: 15px;
   }

   .button a {
      max-width: 100%;
   }
}

/* -- -- */
.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: #CC0000;
}

.cl-orange {
   color: #EF5732;
}

.cl-green {
   color: #4A6801;
}

.under_line_white {
   border-bottom: 1px dashed #fff;
}

.under_line_black {
   border-bottom: 1px dashed #333;
}

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

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

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

/* -- --*/
.bdra-10 {
   border-radius: 10px;
}

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

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

.w900 {
   width: 100%;
   max-width: 900px;
   box-sizing: border-box;
   margin: 0 auto;
}

.w1000 {
   width: 100%;
   max-width: 1000px;
   box-sizing: border-box;
   margin: 0 auto;
}

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

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

/* -- --*/
.box-bg {
   background-color: #fff;
   border: 2px solid #DBC33C;
   padding: 48px 48px;
}

.box-bg+.box-bg {
   margin-top: 30px;
}

@media screen and (max-width: 767px) {
   .box-bg {
      padding: 28px 18px;
   }
}

/* -- --*/
.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: 1080px) {
   .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;
   }

   .span_parallax {
      display: block;
      width: 100%;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 0;
   }
}

/* -- -- */
.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;
}

/* -- -- */
.box-img {
   display: flex;
   flex-wrap: wrap;
}

.box-img .photo {
   width: 37.5%;
}

.box-img .desc {
   width: 60%;
   box-sizing: border-box;
   margin-left: 2.5%;
}

.box-img.img_r .desc {
   order: 1;
   margin-right: 2.5%;
   margin-left: 0;
}

.box-img.img_r .photo {
   order: 2;
}

@media screen and (max-width: 767px) {
   .box-img {
      display: block;
   }

   .box-img .photo {
      width: 100%;
      text-align: center;
   }

   .box-img .desc {
      width: 100%;
      padding: 20px 0 0;
   }
}

/* -- --*/
.box-column {
   display: flex;
   flex-wrap: wrap;
}

.box-column .item {
   width: 380px;
   margin-bottom: 40px;
   margin-left: 30px;
}

.box-column .item:nth-child(3n + 1) {
   margin-left: 0;
}

.box-column .item .photo img {
   border-radius: 10px;
}

.box-column .item h4 {
   border-bottom: 1px dashed #707070;
   padding: 15px 0 10px 22px;
   position: relative;
}

.box-column .item h4 img {
   width: 16px;
   position: absolute;
   top: 23px;
   left: 0;
}

.box-column .item .txt {
   font-size: 15px;
   line-height: 24px;
   padding-top: 10px;
}

@media screen and (max-width: 1400px) {
   .box-column .item {
      width: 32%;
      margin-left: 2%;
   }

   .box-column .item:nth-child(3n + 1) {
      margin-left: 0;
   }
}

@media screen and (max-width: 767px) {
   .box-column {
      display: block;
      margin-bottom: 0;
   }

   .box-column .item {
      width: 100%;
      margin-left: 0;
   }

   .box-column .item:last-child {
      margin-bottom: 0;
   }

   .box-column .item .txt {
      font-size: 13px;
   }
}

/* -- --*/
.tb-style dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
   border-bottom: 1px dashed #707070;
   padding: 0 30px 20px;
}

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

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

.tb-style dl dt {
   width: 200px;
   box-sizing: border-box;
}

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

.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: 991px) {
   .tb-style dl {
      padding: 40px 40px;
   }

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

@media screen and (max-width: 767px) {
   .tb-style dl {
      display: block;
      padding: 0 0 15px;
   }

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

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

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

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

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

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

/* -- -- */
.bdra-10 {
   border-radius: 10px;
}

/* -- -- */
/*
 * Keyvisual
*=============================================*/
#kv {
   width: 100%;
   height: 420px;
   box-sizing: border-box;
   position: relative;
}

#kv .kv__bg {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

#kv .kv__ttl {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   box-sizing: border-box;
   text-align: center;
   font-family: 'Noto Serif JP', serif;
   font-weight: 400;
   font-size: 43px;
   line-height: 60px;
   letter-spacing: 0.04em;
   color: #867201;
   position: absolute;
   top: 175px;
   bottom: 0;
   left: 0;
   z-index: 1;
}

#kv .kv_scroll {
   bottom: 0;
   left: 106px;
}

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

   #kv .kv__ttl {
      font-size: 28px;
      line-height: 36px;
      top: 100px;
   }
}

/* -- breadcrumb -- */
.breadcrumbs {
   background-color: #fff;
   font-weight: 400;
   font-size: 16px;
   line-height: 24px;
   padding: 5px 0;
   position: relative;
}

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

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

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

@media screen and (max-width: 1400px) {
   .breadcrumbs .wrap {
      padding: 0;
   }
}

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

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

   .breadcrumbs .wrap:before {
      display: none;
   }

   .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;
   }
}

/* -- -- */
#p__intro {
   padding: 80px 20px 90px;
}

#p__intro .desc {
   padding-top: 30px;
}

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

   #p__intro .desc {
      padding-top: 15px;
   }
}

/* -- -- */
/*
 * Home
*=============================================*/
/* -- -- */
@-webkit-keyframes sdb05 {
   0% {
      height: 0;
      opacity: 0;
   }

   50% {
      opacity: 1;
   }

   100% {
      height: 100%;
      opacity: 0;
   }
}

@keyframes sdb05 {
   0% {
      height: 0;
      opacity: 0;
   }

   50% {
      opacity: 1;
   }

   100% {
      height: 100%;
      opacity: 0;
   }
}

@keyframes home-progressBar-start {
   0% {
      width: 0;
   }

   100% {
      width: 100%;
   }
}

@keyframes home-progressBar-wait {
   0% {
      opacity: 1;
   }

   100% {
      opacity: 0;
   }
}

@keyframes home-image-rub {
   0% {
      transform: scale(1.08);
   }

   100% {
      transform: scale(1);
   }
}

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

.top__kv-slider {
   position: absolute;
   top: 175px;
   right: 0;
   bottom: 0;
   left: 0;
}

.top__kv-slider .swiper-wrapper {
   width: 100%;
   height: 100%;
}

.top__kv-slider .swiper-slide {
   width: 100%;
   height: 100%;
   overflow: hidden;
   position: relative;
}

.top__kv-slider .swiper-slide .slide-bg {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

.top__kv-slider .swiper-slide .slide-bg:before {
   content: '';
   width: 100%;
   height: 100%;
   background-color: transparent;
   position: absolute;
   top: 0;
   left: 0;
}

.top__kv-slider .swiper-pagination {
   display: none;
   text-align: left;
   bottom: 70px;
   left: 130px;
}

.top__kv-slider .swiper-pagination .swiper-pagination-bullet {
   width: 12px;
   height: 12px;
   background-color: #fff;
   opacity: 1;
   margin: 0 10px 0 0;
}

.top__kv-slider .swiper-pagination .swiper-pagination-bullet-active {
   background-color: #000;
}

.top__kv-ttl {
   width: 100%;
   position: absolute;
   top: 50%;
   left: 0;
   z-index: 1;
   transform: translateY(-50%);
}

.top__kv-ttl h2 {
   display: inline-block;
   background-color: #fff;
   font-weight: 700;
   font-size: 61px;
   letter-spacing: 0;
   line-height: 90px;
   padding: 17px 25px;
}

.top__kv-ttl h2 strong {
   font-weight: inherit;
   color: #DBC33C;
}

.kv_scroll {
   width: 16px;
   font-size: 12px;
   line-height: 14px;
   text-transform: uppercase;
   position: absolute;
   bottom: 30px;
   left: 102px;
   z-index: 2;
}

.kv_scroll a {
   display: block;
   padding-bottom: 60px;
}

.kv_scroll * {
   cursor: pointer !important;
}

.kv_scroll .scroll__line {
   width: 1px;
   height: 50px;
   position: absolute;
   bottom: 0;
   left: 50%;
}

.kv_scroll .scroll__line:after {
   content: '';
   width: 100%;
   height: 100%;
   background-color: #333;
   position: absolute;
   top: 0;
   left: 0;
   -webkit-animation: sdb05 2s infinite;
   animation: sdb05 2s infinite;
}

@media screen and (max-width: 991px) {
   .top__kv-ttl h2 {
      font-size: 50px;
      line-height: 60px;
   }
}

@media screen and (max-width: 767px) {
   #top__kv {
      height: calc(90vh - 35px);
      position: relative;
   }

   .top__kv-slider {
      top: 100px;
   }

   .top__kv-ttl h2 {
      font-size: 22px;
      line-height: 40px;
      padding: 10px 15px;
   }

   .kv_scroll {
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
   }
}

/* -- -- */
#top__reasons {
   padding-top: 90px;
}

#top__reasons h2 {
   display: flex;
   justify-content: center;
   align-items: center;
}

#top__reasons h2 img {
   margin: 0 15px;
}

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

#top__reasons .box .item {
   width: 31%;
   background-color: #fff;
   border: 1px solid #FF0000;
   box-sizing: border-box;
}

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

#top__reasons .box .item h3 {
   background-color: #FF0000;
   font-family: 'Noto Serif JP', serif;
   font-weight: 700;
   font-size: 16px;
   line-height: 24px;
   color: #fff;
   text-align: center;
   padding: 13px 0;
   position: relative;
}

#top__reasons .box .item h3 strong {
   display: block;
   width: 32px;
   background-color: #FF9300;
   border-radius: 50%;
   padding: 4px 0;
   position: absolute;
   top: 50%;
   left: -16px;
   transform: translateY(-50%);
}

#top__reasons .box .item dl {
   display: flex;
   flex-wrap: wrap;
   padding: 20px 20px 25px;
}

#top__reasons .box .item dl dt {
   width: 50%;
   font-size: 12px;
   line-height: 20px;
}

#top__reasons .box .item dl dd {
   width: 45%;
   margin-left: 5%;
}

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

@media screen and (max-width: 1400px) {
   #top__reasons .box .item h3 {
      font-size: 15px;
   }
}

@media screen and (max-width: 991px) {
   #top__reasons .box .item+.item h3 {
      padding: 25px 0;
   }
}

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

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

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

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

   #top__reasons .box .item+.item h3 {
      padding: 13px 0;
   }

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

/* -- -- */
#top__purchase {
   padding: 90px 0 120px;
}

#top__purchase .deco {
   width: 140px;
   position: absolute;
   top: -20px;
   left: 120px;
}

#top__purchase .box {
   display: flex;
   flex-wrap: wrap;
   padding-top: 35px;
}

#top__purchase .box .item {
   width: 47%;
   background-color: #fff;
   margin-top: 20px;
   margin-left: 6%;
}

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

#top__purchase .box .item dl {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}

#top__purchase .box .item dl dt {
   width: 55%;
   background-color: #FF9300;
   box-sizing: border-box;
   color: #fff;
   font-weight: 700;
   font-size: 14px;
   line-height: 20px;
   padding: 20px 20px;
   position: relative;
}

#top__purchase .box .item dl dt:after {
   content: '';
   width: 0;
   height: 0;
   border: 19px solid transparent;
   border-left: 10px solid #FF9300;
   position: absolute;
   top: 50%;
   left: 100%;
   transform: translateY(-50%);
}

#top__purchase .box .item dl dt ul li {
   padding-left: 16px;
   position: relative;
}

#top__purchase .box .item dl dt ul li:before {
   content: '■';
   font-size: 8px;
   position: absolute;
   top: 1px;
   left: 0;
}

#top__purchase .box .item dl dd {
   width: 45%;
   box-sizing: border-box;
   padding: 0 14px 0 24px;
}

#top__purchase .box .item dl dd .txt {
   background-color: #F2F2F2;
   color: #707070;
   font-weight: 700;
   font-size: 10px;
   line-height: 20px;
   padding: 1px 10px;
}

#top__purchase .box .item dl dd .price {
   background-color: #FF0000;
   border-radius: 5px;
   font-weight: 700;
   font-size: 30px;
   line-height: 38px;
   color: #fff;
   text-align: center;
   margin-top: 5px;
   padding: 3px 0 0px;
}

#top__purchase .box .item dl dd .price small {
   font-size: 14px;
   padding-left: 5px;
   position: relative;
   top: -2px;
}

@media screen and (max-width: 1400px) {
   #top__purchase .deco {
      left: 0;
   }
}

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

   #top__purchase .deco {
      width: 100px;
      top: 32px;
   }

   #top__purchase .box {
      display: block;
   }

   #top__purchase .box .item {
      width: 100%;
      margin-left: 0;
   }

   #top__purchase .box .item dl {
      display: block;
   }

   #top__purchase .box .item dl dt {
      width: 100%;
   }

   #top__purchase .box .item dl dt:after {
      border-top: 10px solid #FF9300;
      border-left: 19px solid transparent;
      top: 100%;
      left: 50%;
      transform: translate(-50%, 0);
   }

   #top__purchase .box .item dl dd {
      width: 100%;
      padding: 20px 20px;
   }
}

/* -- -- */
#top__items {
   background-color: #FAF7D4;
   padding: 90px 0 100px;
   position: relative;
}

#top__items .box {
   display: flex;
   flex-wrap: wrap;
   padding-top: 25px;
}

#top__items .box .item {
   width: 47%;
   margin-left: 6%;
   padding-top: 40px;
}

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

#top__items .box .item h3 {
   font-weight: 700;
   font-size: 21px;
   line-height: 27px;
   padding-top: 25px;
}

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

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

   #top__items .box {
      display: block;
      padding-top: 0;
   }

   #top__items .box .item {
      width: 100%;
      margin-left: 0;
   }

   #top__items .box .item h3 {
      font-size: 18px;
      padding-top: 20px;
   }

   #top__items .box .item .txt {
      padding-top: 10px;
   }
}

/* -- -- */
#top__record {
   padding: 85px 0 130px;
}

#top__record ul {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   padding-top: 40px;
}

#top__record ul li {
   width: 22%;
   margin-left: 2%;
   padding-top: 20px;
}

#top__record ul li:nth-child(4n + 1) {
   margin-left: 0;
}

#top__record ul li a {
   display: block;
   width: 100%;
   padding-top: 170px;
   position: relative;
}

#top__record ul li a span {
   display: block;
   width: 100%;
   height: 100%;
   background-color: #E8E8E8;
   position: absolute;
   top: 0;
   left: 0;
}

@media screen and (max-width: 1400px) {
   #top__record ul li a {
      padding-top: 77%;
   }
}

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

   #top__record ul {
      padding-top: 20px;
   }

   #top__record ul li {
      width: 100%;
      margin-left: 0;
   }
}

/* -- -- */
#top__news {
   background-color: #FAF7D4;
   padding: 80px 0 110px;
   position: relative;
}

#top__news .box {
   display: flex;
   flex-wrap: wrap;
   padding-top: 90px;
}

#top__news .list {
   width: 60%;
}

#top__news .list ul li {
   display: flex;
   flex-wrap: wrap;
   border-bottom: 1px dashed #707070;
   padding-bottom: 24px;
}

#top__news .list ul li+li {
   padding-top: 24px;
}

#top__news .list ul li span {
   display: block;
   width: 90px;
   font-size: 12px;
}

#top__news .list ul li a {
   display: block;
   width: calc(100% - 130px);
   margin-left: 40px;
   max-height: 56px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 1;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
}

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

#top__news .bnr {
   width: 32.2%;
   margin-left: 3%;
}

#top__news .bnr p+p {
   padding-top: 20px;
}

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

   #top__news .box {
      display: block;
      padding-top: 40px;
   }

   #top__news .list {
      width: 100%;
   }

   #top__news .list ul li {
      display: block;
      padding-bottom: 12px;
   }

   #top__news .list ul li+li {
      padding-top: 12px;
   }

   #top__news .list ul li span {
      width: 100%;
   }

   #top__news .list ul li a {
      width: 100%;
      -webkit-line-clamp: 2;
      margin-left: 0;
   }

   #top__news .list ul li:nth-child(5), 
   #top__news .list ul li:nth-child(6) {
      display: none;
   }

   #top__news .bnr {
      width: 100%;
      text-align: center;
      margin-left: 0;
      padding-top: 40px;
   }
}

/* -- -- */
/*
 * Shop
*=============================================*/
/* -- -- */
#greeting .box {
   display: flex;
   flex-wrap: wrap;
   padding-top: 30px;
}

#greeting .box .photo {
   width: 32.5%;
   order: 2;
   margin-left: 8.25%;
}

#greeting .box .desc {
   width: 57.5%;
   order: 1;
}

#greeting .box .desc .fnt-NotoSerifJP {
   font-weight: 700;
   padding-top: 45px;
}

@media screen and (max-width: 767px) {
   #greeting .box {
      display: block;
   }

   #greeting .box .photo {
      width: 100%;
      text-align: center;
      margin-left: 0;
   }

   #greeting .box .desc {
      width: 100%;
      padding-top: 20px;
   }

   #greeting .box .desc .fnt-NotoSerifJP {
      padding-top: 20px;
   }
}

/* -- -- */
#shop-inside {
   padding-top: 45px;
}

#shop-inside ul {
   display: flex;
   flex-wrap: wrap;
}

#shop-inside ul li {
   width: 37.5%;
   margin-top: 30px;
   margin-left: 3.75%;
}

#shop-inside ul li:nth-child(2n + 1) {
   margin-left: 0;
}

@media screen and (max-width: 767px) {
   #shop-inside ul {
      display: block;
   }

   #shop-inside ul li {
      width: 100%;
      margin-top: 20px;
      margin-left: 0;
   }
}

/* -- -- */
#profile {
   padding-top: 75px;
}

#profile .tb-style {
   padding-top: 60px;
}

@media screen and (max-width: 767px) {
   #profile {
      padding-top: 50px;
   }

   #profile .tb-style {
      padding-top: 30px;
   }
}

/* -- -- */
#access {
   padding-top: 75px;
}

#access .map {
   width: 100%;
   padding-top: 380px;
   margin-top: 30px;
   border: 1px solid #707070;
   position: relative;
}

#access .map>* {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

@media screen and (max-width: 767px) {
   #access {
      padding-top: 50px;
   }

   #access .map {
      padding-top: 80%;
      margin-top: 20px;
   }
}

/* -- -- */
.faq-list dl+dl {
   margin-top: 10px;
}

.faq-list dl dt {
   font-size: 16px;
   line-height: 24px;
   background-color: #fff;
   border: 1px solid #D5D5D5;
   padding: 15px 50px 15px 70px;
   position: relative;
   cursor: pointer;
}

.faq-list dl dt:before {
   content: 'Q';
   background-color: #DBC33C;
   width: 38px;
   font-weight: 700;
   font-size: 16px;
   line-height: 26px;
   color: #fff;
   text-align: center;
   border-radius: 50%;
   padding: 4px 0 8px;
   position: absolute;
   top: 9px;
   left: 17px;
}

.faq-list dl dt:after {
   content: '';
   width: 14px;
   height: 9px;
   background: url("../img/common/icon-arrow-down-yellow.svg") no-repeat center top/cover;
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translateY(-50%);
   transition: all 0.3s;
}

.faq-list dl dd {
   display: none;
   line-height: 24px;
   padding: 15px 50px 0 70px;
   position: relative;
}

.faq-list dl dd:before {
   content: 'A';
   background-color: #FAF7DC;
   width: 38px;
   font-weight: 700;
   font-size: 16px;
   line-height: 26px;
   color: #333;
   text-align: center;
   border-radius: 50%;
   padding: 4px 0 8px;
   position: absolute;
   top: 20px;
   left: 17px;
}

.faq-list dl.active dt:after {
   transform: translateY(-50%) rotate(-180deg);
}

#faq .faq-list {
   padding-top: 40px;
}

@media screen and (max-width: 767px) {
   .faq-list dl dt {
      padding: 15px 35px 15px 50px;
   }

   .faq-list dl dt:before {
      left: 6px;
   }

   .faq-list dl dt:after {
      right: 15px;
   }

   .faq-list dl dd {
      padding: 15px 0 15px 50px;
   }

   .faq-list dl dd:before {
      left: 6px;
   }

   #faq .faq-list {
      padding-top: 20px;
   }
}

/* -- -- */
/*
 * reasons
*=============================================*/
/* -- -- */
#reasons__list {
   background-color: #fff;
   padding: 90px 50px 70px;
   position: relative;
}

#reasons__list h2 {
   display: flex;
   align-items: center;
   justify-content: center;
   position: absolute;
   top: -44px;
   left: 50%;
   transform: translateX(-50%);
}

#reasons__list h2 img {
   margin: 0 15px;
}

#reasons__list .item+.item {
   padding-top: 75px;
}

#reasons__list .no {
   width: 73px;
   background-color: #DBC33C;
   font-size: 14px;
   font-weight: 700;
   line-height: 20px;
   border-radius: 10px 10px 0 0;
   text-align: center;
   padding: 1px 0;
}

#reasons__list .desc {
   padding-top: 30px;
}

#reasons__list .desc p+p {
   padding-top: 30px;
}

#reasons__list .desc dl {
   display: flex;
   flex-wrap: wrap;
}

#reasons__list .desc dl dt {
   width: 505px;
}

#reasons__list .desc dl dd {
   width: 265px;
   margin-left: 30px;
}

@media screen and (max-width: 1400px) {
   #reasons__list .desc dl dt {
      width: 60%;
   }

   #reasons__list .desc dl dd {
      width: 35%;
      margin-left: 5%;
   }
}

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

   #reasons__list h2 {
      top: -35px;
   }

   #reasons__list h2 img {
      width: 30px;
      margin: 0 10px;
   }

   #reasons__list .item+.item {
      padding-top: 50px;
   }

   #reasons__list .desc {
      padding-top: 20px;
   }

   #reasons__list .desc p+p {
      padding-top: 20px;
   }

   #reasons__list .desc dl {
      display: block;
   }

   #reasons__list .desc dl dt {
      width: 100%;
   }

   #reasons__list .desc dl dd {
      width: 100%;
      text-align: center;
      margin-left: 0;
      padding-top: 20px;
   }
}

/* -- -- */
/*
 * organize
*=============================================*/
/* -- -- */
#organize__sec1 h3 {
   margin-top: 30px;
}

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

#organize__sec1 .box {
   padding-top: 25px;
}

#organize__sec1 .box h4 {
   display: inline-block;
   border-bottom: 4px solid #DBC33C;
}

#organize__sec1 .box ul {
   display: flex;
   flex-wrap: wrap;
   padding-top: 15px;
}

#organize__sec1 .box ul li {
   width: 30%;
   margin-left: 2.5%;
   padding-top: 20px;
}

#organize__sec1 .box ul li:nth-child(3n + 1) {
   margin-left: 0;
}

@media screen and (max-width: 767px) {
   #organize__sec1 .box ul {
      display: block;
      padding-top: 0;
   }

   #organize__sec1 .box ul li {
      width: 100%;
      margin-left: 0;
   }
}

/* -- -- */
/*
 * 
*=============================================*/
/* -- -- */
#products01 .txt {
   padding-top: 30px;
}

#products01 h3 {
   padding-top: 35px;
}

#products01 h3 span {
   border-bottom: 4px solid #DBC33C;
}

#products01 .photo {
   display: flex;
   flex-wrap: wrap;
   padding-top: 10px;
}

#products01 .photo li {
   width: 30%;
   margin-top: 20px;
   margin-left: 2.5%;
}

#products01 .photo li:nth-child(3n + 1) {
   margin-left: 0;
}

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

#products01 .box .item {
   padding-top: 30px;
}

#products01 .box .item h4 {
   font-family: 'Noto Sans JP', sans-serif;
   color: #DBC33C;
   border-top: 2px solid #DBC33C;
   border-bottom: 2px solid #DBC33C;
   padding: 4px 10px 6px;
}

#products01 .box .item ul {
   display: flex;
   flex-wrap: wrap;
   padding-top: 30px;
}

#products01 .box .item ul li {
   width: 23.75%;
}

#products01 .box .item ul li+li {
   margin-left: 2.5%;
}

#products01 .box .item dl {
   display: flex;
   flex-wrap: wrap;
   padding-top: 20px;
   padding-bottom: 10px;
}

#products01 .box .item dl dt {
   width: 37.5%;
}

#products01 .box .item dl dd {
   width: 60%;
   margin-left: 2.5%;
}

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

@media screen and (max-width: 767px) {
   #products01 .txt {
      padding-top: 15px;
   }

   #products01 h3 {
      padding-top: 20px;
   }

   #products01 .photo {
      display: block;
   }

   #products01 .photo li {
      width: 100%;
      margin-left: 0;
   }

   #products01 .box {
      padding-top: 0;
   }

   #products01 .box .item h4 {
      padding: 4px 0 6px;
   }

   #products01 .box .item ul {
      display: block;
      padding-top: 20px;
   }

   #products01 .box .item ul li {
      width: 100%;
   }

   #products01 .box .item ul li+li {
      margin-left: 0;
      padding-top: 20px;
   }

   #products01 .box .item dl {
      display: block;
      padding-bottom: 0;
   }

   #products01 .box .item dl dt {
      width: 100%;
   }

   #products01 .box .item dl dd {
      width: 100%;
      margin-left: 0;
      padding-top: 15px;
   }
}

/* -- -- */
#products02 {
   padding-top: 60px;
}

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

#products02 .txt p+p {
   padding-top: 30px;
}

#products02 .box {
   padding-top: 15px;
}

#products02 .box .item {
   padding-top: 30px;
}

#products02 .box .item h3 {
   font-family: 'Noto Sans JP', sans-serif;
   color: #DBC33C;
   border-top: 2px solid #DBC33C;
   border-bottom: 2px solid #DBC33C;
   padding: 5px 10px;
}

#products02 .box .item dl {
   display: flex;
   flex-wrap: wrap;
   padding-top: 20px;
}

#products02 .box .item dl dt {
   width: 37.5%;
}

#products02 .box .item dl dd {
   width: 60%;
   margin-left: 2.5%;
}

#products02 .box1 {
   display: flex;
   flex-wrap: wrap;
   padding-top: 30px;
}

#products02 .box1 dl {
   width: 28.75%;
   text-align: center;
}

#products02 .box1 dl+dl {
   margin-left: 5%;
}

#products02 .box1 dl dd {
   padding-top: 15px;
}

#products02 .box2 {
   display: flex;
   flex-wrap: wrap;
   padding-top: 30px;
}

#products02 .box2 .photo {
   width: 37.5%;
}

#products02 .box2 .desc {
   width: 60%;
   margin-left: 2.5%;
}

@media screen and (max-width: 767px) {
   #products02 {
      padding-top: 50px;
   }

   #products02 .txt {
      padding-top: 15px;
   }

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

   #products02 .box {
      padding-top: 0;
   }

   #products02 .box .item dl {
      display: block;
   }

   #products02 .box .item dl dt {
      width: 100%;
   }

   #products02 .box .item dl dd {
      width: 100%;
      margin-left: 0;
      padding-top: 10px;
   }

   #products02 .box1 {
      display: block;
   }

   #products02 .box1 dl {
      width: 100%;
   }

   #products02 .box1 dl+dl {
      margin-left: 0;
      padding-top: 30px;
   }

   #products02 .box2 {
      display: block;
   }

   #products02 .box2 .photo {
      width: 100%;
   }

   #products02 .box2 .desc {
      width: 100%;
      margin-left: 0;
      padding-top: 15px;
   }
}

/* -- -- */
#products03 {
   border-color: #FF5C7D;
   position: relative;
}

#products03 .deco1 {
   width: 184px;
   position: absolute;
   top: 15px;
   left: 15px;
}

#products03 .deco2 {
   width: 179px;
   position: absolute;
   top: 15px;
   right: 35px;
}

#products03 h2 {
   text-align: center;
   font-family: 'Noto Serif JP', serif;
   position: relative;
   z-index: 1;
}

#products03 h2 small {
   display: block;
}

#products03 h2 strong {
   display: inline-block;
   font-weight: 700;
   font-size: 49px;
   line-height: 70px;
   color: #FF0000;
   position: relative;
   z-index: 1;
}

#products03 h2 strong:before {
   content: '';
   width: 100%;
   height: 20px;
   background-color: #FFEC56;
   position: absolute;
   bottom: 0;
   left: 0;
   z-index: -1;
}

#products03 .txt {
   text-align: center;
   padding-top: 20px;
}

#products03 .box {
   display: flex;
   flex-wrap: wrap;
}

#products03 .box dl {
   width: 23.75%;
   text-align: center;
   margin-left: 1.625%;
   padding-top: 40px;
}

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

#products03 .box dl dd {
   padding-top: 15px;
}

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

@media screen and (max-width: 1400px) {
   #products03 .deco1 {
      width: 14%;
      top: 7%;
      left: 0;
   }

   #products03 .deco2 {
      width: 15%;
      top: 7%;
      right: 0;
   }
}

@media screen and (max-width: 767px) {
   #products03 .deco1 {
      display: none;
   }

   #products03 .deco2 {
      display: none;
   }

   #products03 h2 small {
      font-size: 15px;
   }

   #products03 h2 strong {
      font-size: 28px;
      line-height: 40px;
   }

   #products03 h2 strong:before {
      height: 15px;
   }

   #products03 .box {
      display: block;
      padding-top: 0;
   }

   #products03 .box dl {
      width: 100%;
      margin-left: 0;
   }

   #products03 .box dl dd {
      padding-top: 10px;
   }
}

/* -- -- */
#flow .list .item {
   padding-top: 20px;
}

#flow .list .item+.item {
   padding-top: 40px;
}

#flow .list .item h3 {
   font-family: 'Noto Sans JP', sans-serif;
   color: #DBC33C;
   border-top: 2px solid #DBC33C;
   border-bottom: 2px solid #DBC33C;
   padding: 4px 10px 6px;
}

#flow .list .item dl {
   display: flex;
   flex-wrap: wrap;
   padding-top: 20px;
}

#flow .list .item dl dt {
   width: 62.5%;
}

#flow .list .item dl dd {
   width: 30%;
   margin-left: 7.5%;
}

@media screen and (max-width: 767px) {
   #flow .list .item h3 {
      text-indent: -30px;
      padding-right: 0;
      padding-left: 30px;
   }

   #flow .list .item dl dt {
      width: 100%;
      order: 2;
      padding-top: 15px;
   }

   #flow .list .item dl dd {
      width: 100%;
      order: 1;
      margin-left: 0;
   }
}

/* -- -- */
/*
 * Tips
*=============================================*/
/* -- -- */
#tips01 {
   position: relative;
}

#tips01 .deco {
   width: 75px;
   position: absolute;
   top: 45px;
   left: 50%;
   transform: translateX(-50%);
}

#tips01 h2 {
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Noto Serif JP', serif;
   font-weight: 700;
   font-size: 35px;
   line-height: 44px;
   text-align: center;
   position: relative;
   z-index: 1;
}

#tips01 h2 img {
   margin: 0 15px;
}

#tips01 h3 {
   margin-top: 40px;
}

#tips01 dl {
   display: flex;
   flex-wrap: wrap;
   padding: 35px 0 10px;
}

#tips01 dl dt {
   width: 50%;
}

#tips01 dl dd {
   width: 46%;
   margin-left: 4%;
}

@media screen and (max-width: 767px) {
   #tips01 .deco {
      width: 50px;
   }

   #tips01 h2 {
      font-size: 25px;
      line-height: 35px;
   }

   #tips01 h2 img {
      margin: 0;
   }

   #tips01 dl {
      padding: 20px 0 0;
   }

   #tips01 dl dt {
      width: 100%;
      order: 2;
      padding-top: 20px;
   }

   #tips01 dl dd {
      width: 100%;
      order: 1;
      margin-left: 0;
   }
}

/* -- -- */
/*
 * COMMITMENT
*=============================================*/
/* -- -- */
#commitment__s01 {
   padding-top: 80px;
}

#commitment__s01 .photo {
   padding-top: 40px;
}

#commitment__s01 .photo ul {
   display: flex;
   flex-wrap: wrap;
}

#commitment__s01 .photo ul li {
   width: 49%;
   margin-bottom: 2%;
   margin-left: 2%;
}

#commitment__s01 .photo ul li:nth-child(2n + 1) {
   margin-left: 0;
}

#commitment__s01 h3 {
   padding-top: 10px;
}

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

@media screen and (max-width: 767px) {
   #commitment__s01 {
      padding-top: 50px;
   }

   #commitment__s01 .photo {
      padding-top: 20px;
   }

   #commitment__s01 .photo ul {
      display: block;
   }

   #commitment__s01 .photo ul li {
      width: 100%;
      margin-bottom: 20px;
      margin-left: 0;
   }

   #commitment__s01 .txt {
      padding-top: 15px;
   }
}

/* -- -- */
#commitment__s02 {
   padding-top: 90px;
}

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

#commitment__s02 .desc .txt {
   border-bottom: 1px dashed #707070;
   padding-top: 30px;
   padding-bottom: 40px;
}

#commitment__s02 .desc .txt:last-child {
   border-bottom: 0;
   padding-bottom: 0;
}

@media screen and (max-width: 767px) {
   #commitment__s02 {
      padding-top: 60px;
   }

   #commitment__s02 .desc h3 {
      padding-top: 20px;
   }

   #commitment__s02 .desc .txt {
      padding-top: 20px;
      padding-bottom: 20px;
   }
}

/* -- -- */
#commitment__s03 {
   padding-top: 90px;
}

#commitment__s03 .box {
   display: flex;
   flex-wrap: wrap;
   padding-top: 40px;
}

#commitment__s03 .box+.box {
   padding-top: 50px;
}

#commitment__s03 .box .photo {
   width: 45%;
}

#commitment__s03 .box .desc {
   width: 50%;
   margin-left: 5%;
   padding-top: 30px;
}

#commitment__s03 .box h3 {
   color: #4A6801;
}

#commitment__s03 .box h3 small {
   display: block;
   font-size: 14px;
   font-weight: 400;
   padding-top: 5px;
}

#commitment__s03 .box .txt {
   padding-top: 30px;
}

@media screen and (max-width: 767px) {
   #commitment__s03 .box {
      display: block;
      padding-top: 30px;
   }

   #commitment__s03 .box+.box {
      padding-top: 30px;
   }

   #commitment__s03 .box .photo {
      width: 100%;
   }

   #commitment__s03 .box .desc {
      width: 100%;
      margin-left: 0;
   }

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

/* -- -- */
/*
 * introduction
*=============================================*/
/* -- -- */
/* -- -- */
/*
 * Post Type
*=============================================*/
/* --- --- */
.wp-pagenavi {
   display: flex;
   justify-content: center;
   align-items: center;
   padding-top: 50px;
}

.wp-pagenavi>* {
   display: block;
   width: 28px;
   background-color: #333;
   border: 1px solid #333;
   font-family: 'Raleway', sans-serif;
   font-weight: 400;
   font-size: 14px;
   line-height: 24px;
   color: #fff;
   text-align: center;
   padding: 2px 0;
   margin: 0 5px;
}

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

.wp-pagenavi .current {
   background-color: #fff;
   color: #333;
   pointer-events: none;
}

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

/* -- -- */
.news__list .item {
   display: table;
   width: 100%;
   box-sizing: border-box;
   border-bottom: 1px dashed #707070;
   padding-bottom: 20px;
}

.news__list .item+.item {
   padding-top: 20px;
}

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

.news__list .item .photo {
   width: 230px;
   border: 1px solid #898989;
}

.news__list .item .photo a {
   display: block;
   width: 100%;
   padding-top: 160px;
   box-sizing: border-box;
   position: relative;
}

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

.news__list .item .desc {
   padding-left: 25px;
}

.news__list .item .date {
   display: inline-block;
   font-weight: 700;
   font-size: 12px;
   line-height: 18px;
   padding-right: 14px;
}

.news__list .item .cate {
   display: inline-block;
}

.news__list .item .cate a {
   display: block;
   background-color: #DBC33C;
   color: #fff;
   text-align: center;
   font-weight: 700;
   font-size: 12px;
   line-height: 18px;
   padding: 2px 8px;
}

.news__list .item .cate a:hover {
   opacity: 1;
   background-color: #333;
}

.news__list .item .ttl {
   font-weight: 700;
   font-size: 20px;
   line-height: 30px;
   padding-top: 8px;
}

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

.news__list .item .txt {
   padding-top: 10px;
}

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

.news__list .item .item_btn {
   color: #FF0000;
   text-align: right;
   line-height: 24px;
   padding-top: 15px;
}

@media screen and (max-width: 767px) {
   .news__list .item {
      display: block;
   }

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

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

   .news__list .item .photo a {
      padding-top: 70%;
   }

   .news__list .item .ttl {
      font-size: 16px;
   }

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

   .news__list .item .desc {
      padding: 15px 0 0;
   }

   .news__list .item .desc p {
      max-height: 90px;
      -webkit-line-clamp: 3;
   }
}

/* -- -- */
.works__list {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: -30px;
}

.works__list .item {
   width: 440px;
   margin-bottom: 30px;
   margin-left: 40px;
}

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

.works__list .item .photo.no-image {
   border: 1px solid #ccc;
}

.works__list .item .photo a {
   display: block;
   width: 100%;
   padding-top: 86.8%;
   box-sizing: border-box;
   position: relative;
}

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

.works__list .item .cate {
   display: inline-block;
   padding-top: 10px;
   padding-right: 20px;
}

.works__list .item .cate a {
   display: block;
   border: 1px solid #4A6801;
   color: #4A6801;
   text-align: center;
   font-size: 13px;
   line-height: 20px;
   padding: 2px 47px;
}

.works__list .item .cate a:hover {
   background-color: #4A6801;
   color: #fff;
   opacity: 1;
}

.works__list .item .date {
   display: inline-block;
   color: #707070;
   font-size: 13px;
   line-height: 20px;
   padding-top: 10px;
}

.works__list .item .ttl {
   font-weight: 500;
   font-size: 15px;
   line-height: 30px;
   padding-top: 6px;
}

.works__list .item .ttl a {
   max-height: 90px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 3;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
   padding-left: 17px;
   position: relative;
}

.works__list .item .ttl a:before {
   content: '';
   width: 0;
   height: 0;
   border: 6px solid transparent;
   border-left: 7px solid #4A6801;
   position: absolute;
   top: 9px;
   left: 0;
}

@media screen and (max-width: 1400px) {
   .works__list .item {
      width: 47.5%;
      margin-left: 5%;
   }

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

@media screen and (max-width: 767px) {
   .works__list {
      display: block;
      margin-bottom: 0;
   }

   .works__list .item {
      width: 100%;
      margin-left: 0;
   }

   .works__list .item:last-child {
      margin-bottom: 0;
   }
}

/* -- -- */
/*
 * Post Detail
 *=============================================*/
#cpt__detail .featured_img {
   text-align: center;
   padding-bottom: 12px;
}

#cpt__detail .date {
   display: inline-block;
   font-weight: 700;
   font-size: 12px;
   line-height: 18px;
   padding-right: 20px;
}

.topics__cate {
   display: inline-block;
   font-size: 12px;
   line-height: 18px;
}

.topics__cate a {
   display: inline-block;
   background-color: #DBC33C;
   color: #fff;
   margin: 0 5px 5px 0;
   padding: 2px 18px;
}

.topics__cate a:hover {
   background-color: #333;
   opacity: 1;
}

.works__cate {
   display: inline-block;
   font-size: 13px;
   line-height: 20px;
   padding-right: 20px;
}

.works__cate a {
   display: inline-block;
   background-color: transparent;
   border: 1px solid #4A6801;
   color: #4A6801;
   margin: 0 5px 5px 0;
   padding: 2px 40px;
}

.works__cate a:hover {
   background-color: #4A6801;
   color: #fff;
   opacity: 1;
}

#cpt__detail .the_title {
   font-weight: 700;
   font-size: 20px;
   line-height: 30px;
   padding-top: 10px;
}

#cpt__detail .the_content {
   padding-top: 40px;
}

#cpt__detail .the_content>* {
   margin-bottom: 40px;
}

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

#cpt__detail .the_content p img {
   display: inline-block;
   vertical-align: top;
   margin-bottom: 10px;
   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: 70px;
   font-family: 'Raleway', sans-serif;
   font-weight: 400;
   line-height: 30px;
   text-align: center;
   box-sizing: content-box;
   margin: 50px auto 0;
   padding: 0 40px;
   position: relative;
}

#cpt__detail .post-btn a {
   display: block;
   background-color: #333;
   color: #fff;
   line-height: 30px;
}

#cpt__detail .post-btn .prev,
#cpt__detail .post-btn .next {
   width: 30px;
}

#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;
}

#cpt__detail .post-btn a:hover {
   background-color: #707070;
   opacity: 1;
}

@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;
   }
}

@media screen and (max-width: 767px) {
   #cpt__detail .the_content {
      padding-top: 30px;
   }

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

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

   #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 .post-btn {
      margin-top: 50px;
   }
}

#cpt__detail .gallery-photo {
   padding-top: 30px;
}

#cpt__detail .gallery-photo .gallery-slider .swiper-slide p {
   width: 100%;
   padding-top: 70%;
   position: relative;
}

#cpt__detail .gallery-photo .gallery-slider .swiper-slide p span {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

#cpt__detail .gallery-photo .gallery-slider .swiper-slide p span.img_short {
   background-size: cover !important;
}

#cpt__detail .gallery-photo .gallery-slider .swiper-slide p span.img_long {
   background-size: auto 100% !important;
}

#cpt__detail .gallery-photo .gallery-thumbs {
   margin: 10px 90px 0;
   padding: 0 20px;
   position: relative;
}

#cpt__detail .gallery-photo .gallery-thumbs .swiper-slide {
   width: 25%;
   box-sizing: border-box;
   padding: 0 5px;
   cursor: pointer;
}

#cpt__detail .gallery-photo .gallery-thumbs .swiper-slide p {
   width: 100%;
   padding-top: 75.2%;
   position: relative;
}

#cpt__detail .gallery-photo .gallery-thumbs .swiper-slide p:after {
   content: '';
   width: 100%;
   height: 100%;
   background-color: rgba(51, 51, 51, 0.7);
   position: absolute;
   top: 0;
   left: 0;
   transition: all 0.3s;
}

#cpt__detail .gallery-photo .gallery-thumbs .swiper-slide.swiper-slide-thumb-active p:after {
   opacity: 0;
}

#cpt__detail .gallery-photo .gallery-thumbs .swiper-slide p span {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

#cpt__detail .gallery-photo .gallery-thumbs .swiper-button {
   width: 20px;
   height: 101%;
   border: 0;
   background: transparent;
   overflow: hidden;
   text-indent: -999px;
   cursor: pointer;
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   z-index: 1;
}

#cpt__detail .gallery-photo .gallery-thumbs .swiper-button:before {
   content: '';
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

#cpt__detail .gallery-photo .gallery-thumbs .swiper-button.swiper-prev {
   left: 0;
}

#cpt__detail .gallery-photo .gallery-thumbs .swiper-button.swiper-prev:before {
   background: url("../img/sl-prev.svg") no-repeat center left/12px 91px;
}

#cpt__detail .gallery-photo .gallery-thumbs .swiper-button.swiper-next {
   right: 0;
}

#cpt__detail .gallery-photo .gallery-thumbs .swiper-button.swiper-next:before {
   background: url("../img/sl-next.svg") no-repeat center right/12px 91px;
}

#cpt__detail .gallery-photo.partner-list_gallery {
   border-bottom: 1px solid #333;
}

#cpt__detail .gallery-photo.partner-list_gallery .gallery-thumbs {
   margin: 0 -40px;
   padding: 30px 28px;
}

#cpt__detail .gallery-photo.partner-list_gallery .gallery-thumbs .swiper-slide {
   padding: 0 12px;
}

#cpt__detail .gallery-photo.partner-list_gallery .gallery-thumbs .swiper-button.swiper-prev:before {
   background: url("../img/sl-prev01.svg") no-repeat center left/19px 67px;
}

#cpt__detail .gallery-photo.partner-list_gallery .gallery-thumbs .swiper-button.swiper-next:before {
   background: url("../img/sl-next01.svg") no-repeat center right/19px 67px;
}

@media screen and (max-width: 1400px) {
   #cpt__detail .gallery-photo.partner-list_gallery .gallery-thumbs {
      margin: 0;
   }

   #cpt__detail .gallery-photo.partner-list_gallery .swiper-button.swiper-prev:before {
      background-size: auto 100%;
   }

   #cpt__detail .gallery-photo.partner-list_gallery .swiper-button.swiper-next:before {
      background-size: auto 100%;
   }
}

@media screen and (max-width: 991px) {
   #cpt__detail .gallery-photo .gallery-thumbs .swiper-button.swiper-prev:before {
      background-size: auto 100%;
   }

   #cpt__detail .gallery-photo .gallery-thumbs .swiper-button.swiper-next:before {
      background-size: auto 100%;
   }

   #cpt__detail .gallery-photo.partner-list_gallery .gallery-thumbs {
      padding: 20px 30px;
   }

   #cpt__detail .gallery-photo.partner-list_gallery .gallery-thumbs .swiper-slide {
      padding: 0 5px;
   }

   #cpt__detail .gallery-photo.partner-list_gallery .swiper-button.swiper-prev:before {
      background-size: auto 100%;
   }

   #cpt__detail .gallery-photo.partner-list_gallery .swiper-button.swiper-next:before {
      background-size: auto 100%;
   }
}

@media screen and (max-width: 767px) {
   #cpt__detail .gallery-photo .gallery-thumbs {
      margin: 10px 0 0;
   }

   #cpt__detail .gallery-photo .gallery-thumbs .swiper-slide {
      width: 50%;
   }
}

/* -- -- */
/*
 * Contact
 *=============================================*/
/* -- -- */
#reservation {
   background-color: #fff;
   border: 2px solid #DBC33C;
   padding: 36px 46px;
   position: relative;
}

#reservation .deco {
   width: 75px;
   position: absolute;
   top: 35px;
   left: 50%;
   transform: translateX(-50%);
}

#reservation h2 {
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: 'Noto Serif JP', serif;
   font-weight: 700;
   font-size: 30px;
   line-height: 44px;
   text-align: center;
   position: relative;
   z-index: 1;
}

#reservation h2 img {
   margin: 0 15px;
}

#reservation dl {
   display: flex;
   flex-wrap: wrap;
   padding-top: 50px;
}

#reservation dl dt {
   width: 414px;
}

#reservation dl dt p+p {
   padding-top: 30px;
}

#reservation dl dd {
   width: 372px;
   margin-left: 18px;
}

@media screen and (max-width: 1400px) {
   #reservation {
      padding: 30px 20px;
   }

   #reservation h2 {
      font-size: 25px;
   }

   #reservation h2 img {
      margin: 0 8px;
   }

   #reservation dl dt {
      width: 48%;
   }

   #reservation dl dd {
      width: 48%;
      margin-left: 4%;
   }
}

@media screen and (max-width: 767px) {
   #reservation h2 {
      font-size: 20px;
      line-height: 35px;
   }

   #reservation h2 img {
      margin: 0;
   }

   #reservation dl {
      display: block;
      padding-top: 20px;
   }

   #reservation dl dt {
      width: 100%;
   }

   #reservation dl dt p+p {
      padding-top: 15px;
   }

   #reservation dl dd {
      width: 100%;
      margin-left: 0;
      padding-top: 20px;
   }
}

/* -- -- */
.wpcf7 {
   position: relative;
}

.select {
   display: flex;
   width: 100%;
   border: 1px solid #ccc;
   background-color: #fff;
   position: relative;
}

.select .wpcf7-not-valid-tip {
   position: absolute;
   top: 92%;
   left: 0;
}

.select .wpcf7-form-control-wrap {
   display: block;
   flex: 1;
}

.select select {
   display: block;
   width: 100%;
   height: 100%;
   -webkit-appearance: none;
   -moz-appearance: none;
   outline: 0;
   border: 0;
   box-shadow: none;
   line-height: 30px;
   padding: 10px 50px 10px 15px;
   color: #333;
   background: transparent;
   border: 0;
   cursor: pointer;
}

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

.select::after {
   content: '';
   background: url("../img/common/select-arrow.svg") no-repeat center top/cover;
   width: 16px;
   height: 8px;
   position: absolute;
   top: 16px;
   right: 20px;
   pointer-events: none;
}

#mailform {
   padding-top: 65px;
}

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

#mailform input[type="email"] {
   width: 100%;
}

#mailform textarea {
   width: 100%;
   height: 250px;
   resize: vertical;
}

#mailform .wpcf7-radio .wpcf7-list-item {
   display: inline-block;
   margin: 0 50px 0 0;
   padding-top: 9px;
}

#mailform .wpcf7-radio .wpcf7-list-item:last-child {
   margin-bottom: 0;
}

#mailform .wpcf7-radio .wpcf7-list-item label {
   display: inline-block;
   padding: 0 0 0 50px;
   position: relative;
}

#mailform .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before {
   content: '';
   width: 32px;
   height: 32px;
   background-color: #F2F2F2;
   border-radius: 50%;
   position: absolute;
   top: 0;
   left: 0;
}

#mailform .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after {
   content: '';
   display: none;
   width: 16px;
   height: 16px;
   background-color: #52D1E2;
   border-radius: 50%;
   position: absolute;
   top: 8px;
   left: 8px;
}

#mailform .wpcf7-radio .wpcf7-list-item label input {
   width: 18px;
   height: 18px;
   cursor: pointer;
   position: absolute;
   top: 5px;
   left: 0;
   opacity: 0;
}

#mailform .wpcf7-radio .wpcf7-list-item label input:checked~.wpcf7-list-item-label:after {
   display: block;
}

#mailform .wpcf7-checkbox {
   display: inline-block;
}

#mailform .wpcf7-checkbox .wpcf7-list-item {
   display: block;
   margin: 0;
}

#mailform .wpcf7-checkbox .wpcf7-list-item label {
   display: inline-block;
   padding-top: 1px;
   padding-left: 40px;
   position: relative;
}

#mailform .wpcf7-checkbox .wpcf7-list-item label input {
   width: 13px;
   height: 13px;
   cursor: pointer;
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   z-index: 1;
}

#mailform .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label:before {
   content: '';
   width: 13px;
   height: 13px;
   background-color: transparent;
   border: 1px solid #333;
   box-sizing: border-box;
   position: absolute;
   top: 0;
   left: 0;
}

#mailform .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label:after {
   content: '';
   display: none;
   position: absolute;
   left: 5px;
   top: 0px;
   width: 3px;
   height: 8px;
   border: solid #333;
   border-width: 0 1px 1px 0;
   -webkit-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
}

#mailform .wpcf7-checkbox .wpcf7-list-item label input:checked~.wpcf7-list-item-label:after {
   display: block;
}

#mailform .result_txt {
   color: #333;
   display: none;
}

#mailform .wpcf7-not-valid-tip {
   font-size: 12px;
   line-height: 1;
   padding-top: 5px;
}

#mailform .form-input {
   width: 100%;
   max-width: 725px;
   padding: 20px 0 0;
}

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

#mailform .form-input dl dt {
   font-size: 18px;
   position: relative;
}

#mailform .form-input dl dt small {
   display: none;
   width: 30px;
   background-color: #B22222;
   font-size: 11px;
   letter-spacing: 0;
   line-height: 16px;
   color: #fff;
   text-align: center;
   padding: 0 0 2px;
   position: absolute;
   top: 28px;
   right: 20px;
}

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

#mailform .form-input dl dd {
   padding-top: 5px;
}

#mailform .form-input dl dd ::-webkit-input-placeholder {
   color: #CDD6DD;
}

#mailform .form-input dl dd ::-moz-placeholder {
   color: #CDD6DD;
}

#mailform .form-input dl dd :-ms-input-placeholder {
   color: #CDD6DD;
}

#mailform .form-input dl dd :-moz-placeholder {
   color: #CDD6DD;
}

#mailform .privacy {
   padding-top: 50px;
}

#mailform .privacy h3 {
   padding-bottom: 25px;
}
#mailform .privacy .privacy-content {
   background-color: #fff;
   height: 200px;
   overflow-y: scroll;
   padding: 20px 20px;
}
#mailform .privacy p {
   padding-bottom: 25px;
}

#mailform .privacy p:last-child {
   padding-bottom: 0;
}

#mailform .form-check {
   display: flex;
   justify-content: center;
   font-weight: 500;
   letter-spacing: 0.07em;
   padding-top: 30px;
}

#mailform .form-check .wpcf7-form-control-wrap {
   margin-right: 5px;
}

#mailform .form-check .wpcf7-checkbox {
   display: inline-block;
}

#mailform .form-check .wpcf7-checkbox .wpcf7-list-item label {
   width: 13px;
   height: 13px;
   overflow: hidden;
   color: transparent;
   padding-left: 0;
}

#mailform .form-check .wpcf7-not-valid-tip {
   width: 100px;
   color: #dc3232;
   position: absolute;
   top: 100%;
   left: 0;
}

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

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

#mailform .form-btn>* {
   display: block;
   width: 380px;
   background-color: #DBC33C;
   border: 1px solid #DBC33C;
   text-align: center;
   border-radius: 0;
   font-weight: 700;
   font-size: 18px;
   line-height: 30px;
   letter-spacing: 0.04em;
   color: #fff;
   cursor: pointer;
   transition: all 0.3s;
   box-sizing: border-box;
   border-radius: 0;
   margin: 5px;
   padding: 9px 30px 11px;
   position: relative;
}

#mailform .form-btn>*:hover {
   background-color: #333;
   border-color: #333;
   color: #fff;
   opacity: 1;
}

#mailform .form-btn>* input {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0;
   cursor: pointer;
}

#mailform .form-btn>* .wpcf7-spinner {
   display: none;
}

#mailform .form-btn .confirm {
   display: block;
}

#mailform .form-btn .back,
#mailform .form-btn .send {
   display: none;
}

#mailform .form-btn .back {
   background-color: #333;
   border-color: #333;
   color: #fff;
   opacity: 1;
}

#mailform .form-btn .send:after {
   background-image: url("../img/common/arrow-left-white.svg");
}

#mailform.confirm-mail {
   padding-top: 0;
}

#mailform.confirm-mail .result_txt {
   display: block;
   word-break: break-all;
   white-space: pre-wrap;
}

#mailform.confirm-mail .wpcf7-form-control-wrap {
   display: none !important;
}

#mailform.confirm-mail .form-input dl dt small {
   display: none;
}

#mailform.confirm-mail .form-input .select {
   background-color: transparent;
   border: 0;
}

#mailform.confirm-mail .form-input .select:after {
   display: none;
}

#mailform.confirm-mail .form-btn .confirm {
   display: none;
}

#mailform.confirm-mail .form-btn .back,
#mailform.confirm-mail .form-btn .send {
   display: block;
}

#mailform.confirm-mail .form-check .wpcf7-form-control-wrap {
   display: block;
}

#mailform.confirm-mail .form-check .wpcf7-checkbox .wpcf7-list-item label {
   pointer-events: none;
}

.wpcf7-response-output {
   width: 100%;
   box-sizing: border-box;
   border-color: #dc3232 !important;
   color: #dc3232 !important;
   margin: 0 !important;
}

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

   #mailform input[type="text"],
   #mailform input[type="tel"],
   #mailform input[type="email"],
   #mailform input[type="date"],
   #mailform textarea {
      width: 100%;
   }

   #mailform .wpcf7-radio .wpcf7-list-item {
      display: block;
      font-size: 16px;
      line-height: 32px;
      margin: 0 0 5px;
   }

   #mailform .form-input {
      padding-top: 0;
   }

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

   #mailform .form-input dl dt {
      font-size: 16px;
   }

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

   #mailform .privacy p {
      padding-bottom: 20px;
   }

   #mailform .privacy p:last-child {
      padding-bottom: 0;
   }

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

   #mailform .form-btn>* {
      width: 100%;
      font-size: 16px;
      padding: 9px 0;
   }
}

/* -- -- */
body.thanks .main-contents {
   width: 100%;
}

body.thanks .sidebar {
   display: none;
}

#txt_thanks {
   text-align: center;
}

#txt_thanks h2 {
   padding-bottom: 40px;
}

#txt_thanks p {
   padding-bottom: 30px;
}

#txt_thanks .button {
   padding-top: 20px;
   padding-bottom: 0;
}

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

   #txt_thanks h2 {
      text-align: center;
      padding-bottom: 30px;
   }

   #txt_thanks p {
      padding-bottom: 20px;
   }

   #txt_thanks p:last-child {
      text-align: center;
      padding-top: 10px;
      padding-bottom: 0px;
   }
}

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

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

#content-404 .txt {
   padding-top: 0;
}

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

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

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

   #content-404 .txt {
      padding-top: 0;
   }

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

/* --- --- */