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

/*
 * Animation
*=============================================*/
.fadeInUp {
   opacity: 0;
   transform: translateY(10px) scale(0.99);
   will-change: auto;
   transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
   transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
   transition-property: opacity, transform;
   transition-delay: 0.2s;
}

.fadeInUp[style*="visible"] {
   transform: translateY(0) scale(1);
   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 {
   font-weight: 500;
   font-size: 15px;
   line-height: 20px;
   letter-spacing: 0;
   padding-bottom: 30px;
   position: relative;
}

.h2:after {
   content: '';
   width: 100px;
   height: 0;
   border-top: 2px solid #53BCE3;
   position: absolute;
   bottom: 0;
   left: 0;
}

.h2 strong {
   display: block;
   font-size: 30px;
   letter-spacing: 0.12em;
   line-height: 36px;
   text-transform: uppercase;
   margin-top: 10px;
   padding-left: 36px;
   position: relative;
}

.h2 strong:before {
   content: '';
   width: 26px;
   height: 20px;
   background: url("../img/common/icon-checkmark.svg") no-repeat center top/cover;
   position: absolute;
   top: 5px;
   left: 0;
}

.h2.white {
   color: #fff;
}

.h2.white:after {
   border-color: #fff;
}

.h2.white strong:before {
   background-image: url("../img/common/icon-checkmark-white.svg");
}

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

.h-20 {
   font-size: 20px;
   letter-spacing: 0;
   line-height: 30px;
}

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

.h-b {
   font-weight: 600;
   font-size: 20px;
   letter-spacing: 0;
   line-height: 32px;
}

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

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

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

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

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

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

.h-40:after {
   content: '';
   width: 56px;
   height: 5px;
   background-color: #52D1E2;
   border-radius: 5px;
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
}

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

   .h2 strong {
      font-size: 30px;
      line-height: 36px;
   }

   .h2 strong:before {
      top: 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 {
   position: relative;
}

.button a {
   display: inline-block;
   width: 100%;
   max-width: 300px;
   background-color: #b8eafc;
   border: 1px solid #333;
   color: #333;
   font-weight: 500;
   font-size: 15px;
   letter-spacing: 0;
   line-height: 32px;
   text-transform: uppercase;
   text-align: center;
   box-sizing: border-box;
   overflow: hidden;
   padding: 9px 30px 7px;
   position: relative;
   z-index: 1;
}

.button a:before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 0;
   background-color: #53BCE3;
   transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
   transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
   z-index: -1;
}

.button a:after {
   content: '';
   width: 7px;
   height: 16px;
   background: url("../img/common/arrow-left-black.svg") no-repeat center top/cover;
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translateY(-50%);
   transition: all 0.3s;
}

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

.button a:hover:before {
   top: auto;
   bottom: 0;
   height: 100%;
}

.button a:hover:after {
   background-image: url("../img/common/arrow-left-white.svg");
}

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

   .button a {
      max-width: 100%;
      padding: 6px 30px 4px;
   }
}

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

.cl-purple {
   color: #9D70BC;
}

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

/* -- --*/
.bg__yellow {
   background-color: #FFE8D9;
   position: relative;
}

/* -- --*/
.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;
   align-items: center;
}

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

.box-img .desc {
   width: 50%;
   box-sizing: border-box;
   padding-left: 100px;
}

.box-img .no {
   letter-spacing: 0.12em;
   font-size: 16px;
   padding-bottom: 10px;
}

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

.box-img.img_r .desc {
   order: 1;
   padding-right: 100px;
   padding-left: 0;
}

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

@media screen and (max-width: 991px) {
   .box-img .desc {
      padding-left: 20px;
   }

   .box-img.img_r .desc {
      padding-right: 20px;
      padding-left: 0;
   }
}

@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-img .txt {
      padding-top: 15px;
   }

   .box-img.img_r .desc {
      padding: 20px 0 0;
   }
}

/* -- --*/
.box-column {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: -40px;
}

.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-top: 1px dashed #53BCE3;
   border-bottom: 1px dashed #53BCE3;
   line-height: 20px;
   padding: 40px 100px;
}

.tb-style dl+dl {
   border-top: 0;
}

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

.tb-style dl dt {
   width: 280px;
   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: 15px 0;
   }

   .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: 500px;
   box-sizing: border-box;
   position: relative;
}

#kv:before {
   content: '';
   width: 100%;
   height: 50%;
   background-color:#53BCE3;
   position: absolute;
   bottom: 0;
   left: 0;
}

#kv .kv__bg {
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 230px;
}

#kv .kv__bg:before {
   content: '';
   width: 100%;
   height: 100%;
   background-color: #333;
   opacity: 0.4;
   position: absolute;
   top: 0;
   left: 0;
}

#kv .kv__ttl {
   width: 100%;
   padding: 0 250px;
   box-sizing: border-box;
   position: absolute;
   bottom: 70px;
   left: 0;
}

#kv .kv__ttl h1,
#kv .kv__ttl h2 {
   font-weight: 500;
   font-size: 16px;
   line-height: 24px;
   letter-spacing: 0;
   color: #fff;
}

#kv .kv__ttl h1 small,
#kv .kv__ttl h2 small {
   font-size: inherit;
}

#kv .kv__ttl h1 strong,
#kv .kv__ttl h2 strong {
   display: block;
   font-size: 50px;
   letter-spacing: 0.12em;
   line-height: 70px;
   text-transform: uppercase;
}

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

@media screen and (max-width: 991px) {
   #kv .kv__bg {
      left: 80px;
   }

   #kv .kv__ttl {
      padding: 0 100px;
   }

   #kv .kv_scroll {
      left: 30px;
   }
}

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

   #kv:before {
      width: 100%;
      padding-right: 0;
      left: -20px;
   }

   #kv .kv__bg {
      left: 25px;
   }

   #kv .kv_scroll {
      left: 5px;
      transform: translateX(0);
   }

   #kv .kv__ttl {
      width: auto;
      padding: 0;
      left: 25px;
      bottom: 20px;
      right: 0;
   }

   #kv .kv__ttl h1,
   #kv .kv__ttl h2 {
      font-size: 14px;
   }

   #kv .kv__ttl h1 strong,
   #kv .kv__ttl h2 strong {
      font-size: 32px;
      line-height: 40px;
   }
}

/* -- breadcrumb -- */
.breadcrumbs {
   font-weight: 500;
   font-size: 13px;
   line-height: 20px;
   padding: 0 250px;
   position: relative;
}

.breadcrumbs .wrap {
   background-color: #53BCE3;
   padding-top: 15px;
   padding-bottom: 15px;
}

.breadcrumbs .wrap:before {
   content: '';
   width: 1000000px;
   height: 100%;
   background-color: #53BCE3;
   position: absolute;
   top: 0;
   right: 100%;
}

.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: 991px) {
   .breadcrumbs {
      padding: 0 100px;
   }
}

@media screen and (max-width: 767px) {
   .breadcrumbs {
      background-color: #F8F6F2;
      font-size: 12px;
      overflow-x: auto;
      padding: 0 25px;
   }

   .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: 90px 20px;
}

#p__intro h2 {
   text-align: left;
}

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

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

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

/* -- -- */
/*
 * 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:before {
   content: '';
   width: 100%;
   height: 65%;
   background-color: #53BCE3;
   position: absolute;
   bottom: 0;
   left: 0;
}

.top__kv-inner {
   overflow: hidden;
   position: absolute;
   top: 75px;
   right: 30px;
   bottom: 30px;
   left: 30px;
}

.top__kv-ttl {
   color: #fff;
   position: absolute;
   top: 50%;
   right: 0;
   left: 0;
   z-index: 1;
   transform: translateY(-50%);
}

.top__kv-ttl h2 {
   font-weight: bold;
   font-size: 40px;
   letter-spacing: 0.05em;
   line-height: 80px;
   text-transform: uppercase;
   text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
.top__kv-ttl h2 span {
   display: inline-block;
   opacity: 0;
}
.top__kv-slider {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 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 {
   max-width: 1200px;
   text-align: left;
   bottom: 80px;
   left: 50%;
   transform: translateX(-50%);
}

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

.kv_scroll {
   width: 16px;
   font-size: 14px;
   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: 1400px) {
   .top__kv-slider .swiper-pagination {
      max-width: 90%;
   }

   .top__kv-ttl .wrap {
      max-width: 90%;
   }
}

@media screen and (max-width: 991px) {
   .kv_scroll {
      left: 43px;
   }
}

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

   #top__kv:before {
      bottom: 100px;
   }

   .top__kv-inner {
      top: 0;
      right: 0;
      bottom: 140px;
      left: 0;
   }

   .top__kv-ttl .wrap {
      max-width: 100%;
      padding: 0 20px;
   }

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

   .top__kv-ttl .sub-ttl {
      font-size: 14px;
      padding-top: 15px;
   }

   .top__kv-slider .swiper-pagination {
      max-width: 100%;
      bottom: 30px;
      left: 20px;
   }

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

/* -- -- */
#top__about {
   padding-bottom: 60px;
   position: relative;
}

#top__about:before {
   content: '';
   background-color: #EDEDE8;
   position: absolute;
   top: 40px;
   right: 0;
   bottom: 0;
   left: 0;
}

#top__about .box {
   padding-bottom: 40px;
}

#top__about .txt {
   padding-top: 50px;
}

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

#top__about .list {
   border-top: 1px dashed #707070;
   border-bottom: 1px dashed #707070;
   font-weight: 500;
   font-size: 15px;
   padding: 25px 0;
}

#top__about ul {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
}

#top__about ul li {
   padding: 0 20px;
}

#top__about ul li i {
   display: inline-block;
   vertical-align: baseline;
   color: #AAAAAA;
   margin-right: 10px;
}

@media screen and (max-width: 767px) {
   #top__about .list {
      text-align: center;
      padding: 20px 0;
   }

   #top__about ul {
      display: inline-block;
      text-align: left;
   }

   #top__about ul li {
      display: block;
      padding: 10px 0;
   }
}

/* -- -- */
#top__commitment {
   margin-top: 100px;
   padding-top: 80px;
   position: relative;
}

#top__commitment:before {
   content: '';
   background: url("../img/index/commitment-bg.jpg") no-repeat center top/cover;
   position: absolute;
   top: 0;
   right: 0;
   bottom: 60px;
   left: 0;
}

#top__commitment .box {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: flex-start;
   background: url("../img/index/commitment-photo.jpg") no-repeat center/cover;
   color: #fff;
   margin: 0 35px;
   padding: 125px 65px 122px;
}

#top__commitment .desc {
   width: 440px;
   padding-right: 45px;
}

#top__commitment h3 {
   font-weight: 500;
}

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

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

#top__commitment .button a {
   background-color: transparent;
   border-color: #fff;
   color: #fff;
}

#top__commitment .button a:after {
   background-image: url("../img/common/arrow-left-white.svg");
}

@media screen and (max-width: 1400px) {
   #top__commitment .desc {
      width: calc(100% - 320px);
      padding-right: 0;
   }
}

@media screen and (max-width: 991px) {
   #top__commitment .box {
      display: block;
      padding: 100px 20px;
   }

   #top__commitment .desc {
      width: 100%;
      padding-top: 40px;
   }
}

@media screen and (max-width: 767px) {
   #top__commitment {
      margin-top: 0;
      padding: 0;
   }

   #top__commitment .wrap {
      padding: 0;
   }

   #top__commitment .box {
      background-image: url("../img/index/sp_commitment-photo.jpg");
      margin: 0;
      padding: 65px 20px;
   }

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

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

/* -- -- */
#top__service {
   padding-top: 100px;
}

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

#top__service .item {
   width: 31%;
   height: 490px;
   box-sizing: border-box;
   overflow: hidden;
   padding: 50px 30px;
   position: relative;
}

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

#top__service .bg {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
   transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

#top__service h3 {
   color: #fff;
   font-size: 15px;
   line-height: 21px;
   padding-bottom: 20px;
   position: relative;
}

#top__service h3:after {
   content: '';
   width: 100px;
   border-top: 2px solid #fff;
   position: absolute;
   bottom: 0;
   left: 0;
}

#top__service h3 strong {
   display: block;
   font-size: 20px;
   letter-spacing: 0.12em;
   line-height: 36px;
   text-transform: uppercase;
   padding-top: 10px;
}

#top__service h3 i {
   font-size: 20px;
   color: #fff;
   position: absolute;
   top: 50%;
   right: 0;
   transform: translateY(-50%);
}

#top__service .link a {
   display: block;
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   color: transparent;
}

#top__service .item:hover .bg {
   transform: scale(1.05);
}

@media screen and (max-width: 991px) {
   #top__service .item {
      height: 290px;
      padding: 40px 10px;
   }

   #top__service h3 strong {
      font-size: 18px;
   }
}

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

   #top__service .wrap {
      display: block;
   }

   #top__service .item {
      width: 100%;
      height: auto;
      padding: 29px 30px 28px;
   }

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

   #top__service h3 strong {
      font-size: 20px;
   }
}

/* -- -- */
#top__works {
   padding-top: 120px;
}

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

#top__works .box .item {
   width: 580px;
   box-sizing: border-box;
   margin-left: 40px;
   padding-top: 40px;
}

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

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

#top__works .box .item .photo a {
   display: block;
   width: 100%;
   padding-top: 70%;
   position: relative;
}

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

#top__works .box .item h3 {
   font-weight: 500;
   font-size: 15px;
   margin-top: 5px;
}

#top__works .box .item h3 a {
   max-height: 84px;
   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: 25px;
   position: relative;
}

#top__works .box .item h3 i {
   position: absolute;
   top: 6px;
   left: 0;
}

#top__works .box .cate {
   font-size: 13px;
   line-height: 20px;
   letter-spacing: 0.09em;
   padding-top: 5px;
}

#top__works .box .cate a {
   display: inline-block;
   border: 1px solid #707070;
   padding: 2px 47px;
}

#top__works .box .cate a:hover {
   opacity: 1;
   background-color: #53BCE3;
   color: #fff;
}

#top__works .button {
   padding-top: 90px;
}

@media screen and (max-width: 1400px) {
   #top__works .box .item {
      width: 48%;
      margin-left: 4%;
   }

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

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

   #top__works .box {
      display: block;
   }

   #top__works .box .item {
      width: 100%;
      margin-left: 0;
      padding-top: 30px;
   }

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

/* -- -- */
#top__area {
   margin-top: 100px;
   padding-bottom: 80px;
   position: relative;
}

#top__area:before {
   content: '';
   background: #F8F6F2;
   position: absolute;
   top: 110px;
   right: 0;
   bottom: 0;
   left: 0;
}

#top__area .wrap {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   background: url("../img/index/top_area-bg.jpg") no-repeat center/cover;
   color: #fff;
   padding: 115px 100px;
}

#top__area .wrap:before {
   content: '';
   width: 100%;
   height: 100%;
   background-color: rgba(51, 51, 51, 0.4);
   position: absolute;
   top: 0;
   left: 0;
}

#top__area h2 {
   width: 40%;
}

#top__area .desc {
   width: 60%;
   position: relative;
}

@media screen and (max-width: 991px) {
   #top__area .wrap {
      padding: 100px 50px;
   }
}

@media screen and (max-width: 767px) {
   #top__area {
      margin-top: 50px;
      padding: 0 10px 40px;
   }

   #top__area:before {
      top: 55px;
   }

   #top__area .wrap {
      align-items: center;
      background-image: url("../img/index/sp_area-bg.jpg");
      padding: 40px 10px;
   }

   #top__area h2 {
      width: 48%;
   }

   #top__area .desc {
      width: 52%;
   }
}

/* -- -- */
#top__topics {
   padding: 100px 0;
}

#top__topics .wrap {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
}

#top__topics .col {
   width: 665px;
}

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

#top__topics .box .item {
   display: table;
   width: 100%;
   box-sizing: border-box;
   padding: 10px 0;
}

#top__topics .box .item>* {
   display: table-cell;
   vertical-align: middle;
}

#top__topics .box .item .date {
   width: 95px;
   font-size: 13px;
   line-height: 20px;
   color: #707070;
}

#top__topics .box .item .cate {
   width: 150px;
   font-size: 13px;
   line-height: 20px;
   letter-spacing: 0.09em;
   padding-top: 5px;
}

#top__topics .box .item .cate a {
   display: block;
   background-color: #707070;
   border: 1px solid #707070;
   color: #fff;
   text-align: center;
   padding: 2px 0;
}

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

#top__topics .box .item .ttl {
   font-weight: 500;
   font-size: 15px;
   line-height: 24px;
   padding-left: 20px;
}

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

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

#top__topics .offical-sns {
   text-align: center;
}

#top__topics .offical-sns h3 {
   display: inline-block;
   font-weight: bold;
   font-size: 20px;
   letter-spacing: 0.12em;
   line-height: 36px;
   border-bottom: 1px solid;
}

#top__topics .offical-sns ul {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   font-size: 28px;
   padding-top: 15px;
}

#top__topics .offical-sns ul li+li {
   padding-left: 15px;
}

#top__topics .offical-sns ul li:last-child {
   color: #FF0000;
}

@media screen and (max-width: 991px) {
   #top__topics .col {
      width: 540px;
   }
}

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

   #top__topics .wrap {
      display: block;
   }

   #top__topics .col {
      width: 100%;
   }

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

   #top__topics .box .item {
      display: block;
   }

   #top__topics .box .item>* {
      display: inline-block;
      vertical-align: bottom;
   }

   #top__topics .box .item .date {
      width: 80px;
   }

   #top__topics .box .item .cate {
      width: auto;
   }

   #top__topics .box .item .cate a {
      padding: 2px 20px;
   }

   #top__topics .box .item .ttl {
      display: block;
      padding-top: 10px;
      padding-left: 0
   }

   #top__topics .box .item .ttl a {
      -webkit-line-clamp: 2;
   }

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

   #top__topics .offical-sns {
      padding-top: 20px;
   }
}

/* -- -- */
/*
 * Company
*=============================================*/
/* -- -- */
#greeting {
   padding: 70px 0 90px;
}

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

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

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

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

#greeting .box .name {
   text-align: right;
   padding-top: 35px;
}

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

   #greeting .box {
      display: block;
      padding-top: 30px;
   }

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

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

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

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

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

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

#profile .map {
   width: 100%;
   padding-top: 50%;
   margin-top: 40px;
   position: relative;
}

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

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

   #profile .map {
      padding-top: 80%;
   }
}

/* -- -- */
/*
 * COMMITMENT
*=============================================*/
/* -- -- */
#commitment__s01 {
   padding-bottom: 120px;
}
#commitment__s01 h2 {
   margin-bottom: 30px;
}
#commitment__s01 .photo_full {
   width: 100%;
   padding-top: 36.5%;
   margin-bottom: 150px;
}

#commitment__s01 .desc .no {
   font-size: 16px;
   letter-spacing: 0.12em;
}

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

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

#commitment__s01 .row {
   margin-top: 130px;
   padding-top: 110px;
   position: relative;
}

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

#commitment__s01 .row .desc {
   width: 50%;
   background-color: #fff;
   color: #333;
   box-sizing: border-box;
   padding: 122px 20px;
   margin-left: auto;
   position: relative;
   z-index: 1;
}

#commitment__s01 .row .desc .inner {
   width: 100%;
   max-width: 500px;
   margin: 0 auto;
}

#commitment__s01 .row.top {
   padding-top: 0;
   padding-bottom: 110px;
}

#commitment__s01 .row01 {
   margin-top: 130px;
}

#commitment__s01 .row01 .wrap {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
}

#commitment__s01 .row01 .desc {
   width: 50%;
   box-sizing: border-box;
   padding-right: 100px;
   order: 1;
}

#commitment__s01 .row01 .photo {
   width: 50%;
   order: 2;
}

@media screen and (max-width: 991px) {
   #commitment__s01 .row {
      padding-top: 0;
   }

   #commitment__s01 .row .photo {
      width: 100%;
      padding-top: 58%;
      position: static;
   }

   #commitment__s01 .row .desc {
      width: 100%;
      padding: 50px 20px 0;
   }

   #commitment__s01 .row .desc .inner {
      max-width: 100%;
   }

   #commitment__s01 .row.top {
      padding-bottom: 0;
   }

   #commitment__s01 .row01 .desc {
      padding-right: 20px;
   }
}

@media screen and (max-width: 767px) {
   #commitment__s01 {
      padding-bottom: 50px;
   }
   #commitment__s01 .photo_full {
      padding-top: 50%;
      margin-bottom: 0;
   }

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

   #commitment__s01 .row {
      margin-top: 60px;
   }

   #commitment__s01 .row .desc {
      padding: 30px 20px 0;
   }

   #commitment__s01 .row01 {
      margin-top: 60px;
   }

   #commitment__s01 .row01 .wrap {
      display: block;
   }

   #commitment__s01 .row01 .photo {
      width: 100%;
      text-align: center;
   }

   #commitment__s01 .row01 .desc {
      width: 100%;
      padding: 20px 0 0;
   }
}

/* -- -- */
body:not(.home) #top__works {
   padding: 120px 0;
}

@media screen and (max-width: 767px) {
   body:not(.home) #top__works {
      padding: 60px 0;
   }
}

/* -- -- */
/*
 * CONSIDERATION
*=============================================*/
/* -- -- */
#message {
   padding: 90px 0 120px;
   position: relative;
}

#message:before {
   content: '';
   width: 50%;
   height: 42.5%;
   background-color:#b8eafc;
   padding-left: 600px;
   position: absolute;
   bottom: 0;
   right: 0;
}

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

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

@media screen and (max-width: 1400px) {
   #message:before {
      padding-left: 500px;
   }
}

@media screen and (max-width: 991px) {
   #message:before {
      padding-left: 370px;
   }
}

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

   #message:before {
      width: 100%;
      padding-left: 0;
   }

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

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

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

#value .box-img {
   padding-top: 30px;
}

#value .box-img+.box-img {
   padding-top: 90px;
}

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

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

/* -- -- */
/*
 * BUILDING FLOW / COST
*=============================================*/
/* -- -- */
#flow {
   padding: 90px 0 120px;
}

#flow .list {
   padding-top: 30px;
}

#flow .list .item {
   display: flex;
   flex-wrap: wrap;
   border-top: 1px solid #53BCE3;
   border-bottom: 1px solid #53BCE3;
   padding: 40px 0;
   position: relative;
}

#flow .list .item+.item {
   border-top: 0;
}

#flow .list .item .icon {
   width: 180px;
   position: relative;
}
#flow .list .item .no {
   width: 120px;
}
#flow .list .item .desc {
   width: calc(100% - 120px);
   box-sizing: border-box;
   padding: 0;
}

#flow .list .item .desc h3 {
   position: relative;
}

#flow .list .item .desc h3 .no {
   display: block;
   width: 28px;
   font-weight: bold;
   font-size: 24px;
   line-height: 28px;
   letter-spacing: 0.12em;
   color: #FFA500;
   border-right: 2px solid #FFA500;
   padding-right: 10px;
   position: absolute;
   top: 0;
   left: 0;
}

#flow .list .item .desc .txt {
   line-height: 20px;
   padding-top: 30px;
}

#flow .list .item:nth-child(odd) .icon {
   margin-left: 35px;
}

#flow .list .item:nth-child(odd) .icon:before {
   content: '';
   border-left: 10px solid #EDEDE8;
   position: absolute;
   top: 95px;
   right: 10px;
   bottom: -55px;
}

#flow .list .item:nth-child(even) .icon {
   margin-left: 110px;
}

#flow .list .item:nth-child(even) .icon:before {
   content: '';
   border-left: 10px solid #EDEDE8;
   position: absolute;
   top: 95px;
   left: 10px;
   bottom: -55px;
}

#flow .list .item:last-child .icon:before {
   display: none;
}

@media screen and (max-width: 1400px) {
   #flow .list .item .desc {
      width: calc(100% - 300px);
      margin-right: 0;
   }

   #flow .list .item:nth-child(odd) .icon {
      margin-left: 0;
   }

   #flow .list .item:nth-child(even) .icon {
      margin-left: 75px;
   }
}

@media screen and (max-width: 767px) {
   #flow .list .item {
      display: block;
      padding: 20px 0;
   }

   #flow .list .item .no {
      width: 100%;
      text-align: center;
      padding-bottom: 10px;
   }

   #flow .list .item .desc {
      width: 100%;
      position: relative;
      z-index: 1;
   }

   #flow .list .item .desc h3 {
      text-align: center;
   }

   #flow .list .item .desc .txt {
      padding-top: 15px;
   }

   #flow .list .item:nth-child(odd) .icon {
      margin: 0 auto;
   }

   #flow .list .item:nth-child(odd) .icon:before {
      display: none;
   }

   #flow .list .item:nth-child(even) .icon {
      margin: 0 auto;
   }

   #flow .list .item:nth-child(even) .icon:before {
      display: none;
   }

   #flow .list .item:last-child:before {
      bottom: 0;
   }
}

/* -- -- */
#cost {
   background-color: #FFE8D9;
   padding: 90px 0;
}

#cost .box {
   padding-top: 40px;
}

#cost .box dl {
   background-color: #fff;
   border: 1px solid #EDEDE8;
   padding: 40px 30px;
}

#cost .box dl+dl {
   margin-top: 20px;
}

#cost .box dl dt {
   line-height: 28px;
   border-left: 2px solid #FFA500;
   padding-left: 10px;
}

#cost .box dl dd {
   line-height: 20px;
   padding-top: 30px;
}

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

   #cost .box dl {
      padding: 30px 20px;
   }

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

/* -- -- */
/*
 * introduction
*=============================================*/
/* -- -- */
[id^='introduction__s'] {
   padding: 90px 0;
}

[id^='introduction__s'] .photo_full {
   position: relative;
}

[id^='introduction__s'] .photo_full:before {
   content: '';
   width: 100%;
   height: 52%;
   background-color: #F8F6F2;
   position: absolute;
   bottom: -60px;
   left: 0;
}

[id^='introduction__s'] .box01 {
   background-color: #fff;
   margin: -70px 20px 0;
   padding: 80px 20px;
}

[id^='introduction__s'] .box01 .inner {
   width: 100%;
   max-width: 500px;
   margin: 0 auto;
}

[id^='introduction__s'] .box01 .desc {
   padding-top: 30px;
}

[id^='introduction__s'] .box02 {
   display: flex;
   flex-wrap: wrap;
   align-items: flex-start;
   padding-top: 90px;
}

[id^='introduction__s'] .box02 .photo {
   width: 43%;
}

[id^='introduction__s'] .box02 .desc {
   width: 50%;
   margin-left: 7%;
   padding-top: 40px;
}

[id^='introduction__s'] .box02 .name {
   text-align: right;
   padding-top: 30px;
}

[id^='introduction__s'] .box02 .name p {
   display: inline-block;
   text-align: left;
}

[id^='introduction__s'] .box02 .name small {
   font-size: 13px;
}

[id^='introduction__s'] .box02 .name span {
   font-size: 14px;
   letter-spacing: 0.12em;
}

[id^='introduction__s'] .box02.img_r .photo {
   order: 2;
   margin-left: 7%;
}

[id^='introduction__s'] .box02.img_r .desc {
   order: 1;
   margin-left: 0;
}

[id^='introduction__s'] .box03 {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   padding-top: 90px;
}

[id^='introduction__s'] .box03 .item {
   width: 334px;
   position: relative;
   transition: all 0.3s;
}

[id^='introduction__s'] .box03 .item+.item {
   margin-left: 40px;
}

[id^='introduction__s'] .box03 .item .link a {
   display: block;
   width: 100%;
   height: 100%;
   color: transparent;
   position: absolute;
   top: 0;
   left: 0;
}

[id^='introduction__s'] .box03 .item .ttl {
   font-weight: 500;
   font-size: 15px;
   margin-top: 5px;
   padding-left: 25px;
   position: relative;
}

[id^='introduction__s'] .box03 .item .ttl i {
   display: block;
   font-size: 15px;
   line-height: 1;
   position: absolute;
   top: 7px;
   left: 0;
}

[id^='introduction__s'] .box03 .item:hover {
   opacity: 0.7;
}

[id^='introduction__s'] .box-profile {
   padding-top: 50px;
}

[id^='introduction__s'] .box-profile h3 {
   letter-spacing: 0.12em;
   font-weight: 500;
   border-bottom: 1px solid #53BCE3;
   padding: 0 100px 8px;
}

[id^='introduction__s'] .box-profile h3 i {
   font-size: 16px;
   line-height: 1;
   margin-left: 10px;
}

[id^='introduction__s'] .box-profile .txt {
   padding: 15px 100px 0;
}

[id^='introduction__s'] .box-history {
   padding-top: 50px;
}

[id^='introduction__s'] .box-history h3 {
   font-weight: 500;
   letter-spacing: 0.12em;
   border-bottom: 1px solid #707070;
   padding: 0 100px 8px;
}

[id^='introduction__s'] .box-history h3 i {
   font-size: 16px;
   line-height: 1;
   margin-left: 10px;
}

[id^='introduction__s'] .box-history dl {
   display: table;
   width: 100%;
   line-height: 20px;
   box-sizing: border-box;
   padding: 10px 100px 0;
}

[id^='introduction__s'] .box-history dl+dl {
   padding-top: 20px;
}

[id^='introduction__s'] .box-history dl>* {
   display: table-cell;
   vertical-align: top;
}

[id^='introduction__s'] .box-history dl dt {
   width: 120px;
}

#introduction__s02 .box02 {
   padding-top: 0;
}

@media screen and (max-width: 1400px) {
   [id^='introduction__s'] .box03 .item {
      width: 32%;
   }

   [id^='introduction__s'] .box03 .item+.item {
      margin-left: 2%;
   }
}

@media screen and (max-width: 991px) {
   [id^='introduction__s'] .box02 .desc {
      padding-top: 0;
   }

   [id^='introduction__s'] .box-profile h3 {
      padding: 0 20px 8px;
   }

   [id^='introduction__s'] .box-profile .txt {
      padding-right: 20px;
      padding-left: 20px;
   }

   [id^='introduction__s'] .box-history h3 {
      padding: 0 20px 8px;
   }

   [id^='introduction__s'] .box-history dl {
      padding-right: 20px;
      padding-left: 20px;
   }
}

@media screen and (max-width: 767px) {
   [id^='introduction__s'] {
      padding: 60px 0;
   }

   [id^='introduction__s'] .photo_full .wrap {
      padding: 0 0 30px;
   }

   [id^='introduction__s'] .box01 {
      margin: -60px 0 0;
      padding: 40px 20px 0;
   }

   [id^='introduction__s'] .box01 .desc {
      padding-top: 15px;
   }

   [id^='introduction__s'] .box02 {
      display: block;
      padding-top: 50px;
   }

   [id^='introduction__s'] .box02 .photo {
      width: 100%;
   }

   [id^='introduction__s'] .box02 .desc {
      width: 100%;
      margin-left: 0;
      padding-top: 30px;
   }

   [id^='introduction__s'] .box02 .name {
      padding-top: 20px;
   }

   [id^='introduction__s'] .box02.img_r .photo {
      margin-left: 0;
   }

   [id^='introduction__s'] .box03 {
      display: block;
      padding-top: 50px;
   }

   [id^='introduction__s'] .box03 .item {
      width: 100%;
   }

   [id^='introduction__s'] .box03 .item+.item {
      margin-top: 30px;
      margin-left: 0;
   }

   [id^='introduction__s'] .box-profile h3 {
      padding: 0 20 8px;
   }

   [id^='introduction__s'] .box-profile .txt {
      padding: 15px 20 0;
   }

   [id^='introduction__s'] .box-history h3 {
      padding: 0 20 8px;
   }

   [id^='introduction__s'] .box-history dl {
      padding: 10px 20 0;
   }

   [id^='introduction__s'] .box-history dl+dl {
      padding-top: 20px;
   }

   [id^='introduction__s'] .box-history dl dt {
      width: 100px;
   }
}

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

.wp-pagenavi>* {
   display: block;
   width: 28px;
   background-color: #333;
   border: 1px solid #333;
   font-weight: 500;
   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;
   }
}

/* -- -- */
.cpt-template {
   padding: 90px 0 120px;
}

.cpt-template .w1000 {
   display: flex;
   flex-wrap: wrap;
   max-width: 100%;
}

.cpt-template .col-content {
   width: 74.5%;
}

.cpt-template .sidebar {
   width: 20%;
   margin-left: 5.5%;
}

.cpt-template .sidebar h2 {
   font-weight: bold;
   border-bottom: 1px solid #333;
   padding-bottom: 10px;
}

.cpt-template .sidebar ul {
   line-height: 20px;
}

.cpt-template .sidebar ul li {
   padding-top: 10px;
}

.cpt-template .sidebar ul li a {
   display: block;
   padding-left: 20px;
   position: relative;
}

.cpt-template .sidebar ul li a:before {
   content: '>';
   position: absolute;
   top: 0;
   left: 0;
}

@media screen and (max-width: 991px) {
   .cpt-template .sidebar {
      width: 22%;
      margin-left: 3%;
   }
}

@media screen and (max-width: 767px) {
   .cpt-template {
      padding: 60px 0;
   }

   .cpt-template .w1000 {
      display: block;
   }

   .cpt-template .col-content {
      width: 100%;
   }

   .cpt-template .sidebar {
      width: 100%;
      margin-left: 0;
      padding-top: 60px;
   }
}

/* -- -- */
.news-list {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: -40px;
}

.news-list .item {
   width: 282px;
   margin-bottom: 40px;
   margin-left: 24px;
}

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

.news-list .item .photo {
   border: 1px solid #707070;
}

.news-list .item .photo a {
   display: block;
   padding-top: 78%;
   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 .item-content {
   padding-top: 10px;
}

.news-list .item .date {
   display: inline-block;
   font-size: 13px;
   line-height: 20px;
   padding-right: 30px;
}

.news-list .item .cate {
   display: inline-block;
   font-size: 13px;
   line-height: 20px;
}

.news-list .item .cate a {
   display: block;
   background-color: #53BCE3;
   border: 1px solid #53BCE3;
   color: #fff;
   padding: 2px 47px;
}

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

.news-list .item .ttl {
   font-weight: 500;
   font-size: 15px;
   line-height: 24px;
   padding-top: 10px;
}

.news-list .item .ttl a {
   max-height: 72px;
   overflow: hidden;
   display: block;
   -webkit-line-clamp: 3;
   display: box;
   display: -webkit-box;
   -webkit-box-orient: vertical;
   text-overflow: ellipsis;
   white-space: normal;
}

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

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

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

   .news-list .item {
      display: block;
      width: 100%;
      margin-left: 0;
   }

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

   .news-list .item .photo {
      width: 100%;
   }
}

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

.works__list .item {
   width: 420px;
   margin-bottom: 40px;
   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: 70%;
   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 {
   padding-top: 10px;
}

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

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

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

.works__list .item .ttl a {
   max-height: 72px;
   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: 25px;
   position: relative;
}

.works__list .item .ttl i {
   position: absolute;
   top: 6px;
   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;
   line-height: 24px;
   padding-right: 30px;
}

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

.topics__cate a {
   display: inline-block;
   background-color: #707070;
   border: 1px solid #707070;
   color: #fff;
   margin: 0 5px 5px 0;
   padding: 2px 47px;
}

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

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

.works__cate a {
   display: inline-block;
   background-color: #fff;
   border: 1px solid #707070;
   color: #333;
   margin: 0 5px 5px 0;
   padding: 2px 47px;
}

.works__cate a:hover {
   background-color: #53BCE3;
   color: #fff;
   opacity: 1;
}

#cpt-detail .the_title {
   font-weight: 500;
   font-size: 15px;
   line-height: 28px;
   margin-bottom: 10px;
   padding-left: 25px;
   position: relative;
}

#cpt-detail .the_title i {
   display: block;
   font-size: 15px;
   line-height: 1;
   position: absolute;
   top: 7px;
   left: 0;
}

#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: 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: 70px;
   font-weight: 500;
   line-height: 30px;
   text-align: center;
   box-sizing: content-box;
   margin: 90px 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;
}

.works__information {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   border-top: 1px solid #53BCE3;
   border-bottom: 1px solid #53BCE3;
   margin-top: 50px;
   padding: 30px 0;
}

.works__information .col+.col {
   margin-left: 35px;
}

.works__information dl {
   display: table;
   width: 100%;
   box-sizing: border-box;
   line-height: 20px;
}

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

.works__information dl>* {
   display: table-cell;
   vertical-align: top;
}

.works__information dl dt {
   width: 130px;
   text-align: right;
}

.works__information dl2 {
   display: table;
   width: 100%;
   box-sizing: border-box;
   line-height: 10px;
}

.works__information dl2+dl2 {
   padding-top: 15px;
}

.works__information dl2>* {
   display: table-cell;
   vertical-align: top;
}

.works__information dl2 dt {
   width: 130px;
   text-align: right;
}

@media screen and (max-width: 1400px) {
   .works__information .col {
      padding-bottom: 20px;
   }

   .works__information .col+.col {
      margin-left: 40px;
   }
}

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

   .works__information {
      display: block;
      border-bottom: 0;
      margin-top: 30px;
      padding: 0;
   }

   .works__information .col {
      width: 100%;
      padding-bottom: 0;
   }

   .works__information .col+.col {
      margin-left: 0;
   }

   .works__information dl {
      font-size: 13px;
      border-bottom: 1px solid #070707;
      padding: 15px 0;
   }

   .works__information dl dt {
      width: 120px;
      text-align: left;
   }
}

@media screen and (max-width: 767px) {
   #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%;
   }
}
/* -- -- */
.works__template {
   padding: 90px 0 120px;
}
.works__template .row-flex {
   display: flex;
   flex-wrap: wrap;
   padding-top: 30px;
}
.works__template .gallery-photo {
   width: 725px;
}
.works__template .the_content {
   width: 435px;
   margin-left: 40px;
}
#cpt-detail.works__template .gallery-photo,
#cpt-detail.works__template .the_content {
   padding-top: 0;
}

#cpt-detail.works__template .sidebar {
   padding-top: 30px;
}
#cpt-detail.works__template .sidebar h2 {
   width: 230px;
   border-bottom: 1px solid #53BCE3;
   padding-bottom: 10px;
}
#cpt-detail.works__template .sidebar ul {
   padding-top: 12px;
}
#cpt-detail.works__template .sidebar ul li {
   display: inline-block;
}
#cpt-detail.works__template .sidebar ul li a {
   display: block;
   padding-left: 20px;
   position: relative;
}
#cpt-detail.works__template .sidebar ul li a:before{
   content: '>';
   position: absolute;
   top: 0;
   left: 0;
}
@media screen and (max-width: 1400px) {
   .works__template .gallery-photo {
      width: 60%;
   }
   .works__template .the_content {
      width: 35%;
      margin-left: 5%;
   }
}
@media screen and (max-width: 991px) {
   .works__template .gallery-photo {
      width: 100%;
   }
   .works__template .the_content {
      width: 100%;
      margin-left: 0;
      padding-top: 20px;
   }
   #cpt-detail.works__template .the_content {
      padding-top: 20px;
   }
}
@media screen and (max-width: 767px) {
   .works__template {
      padding: 70px 0;
   }
   #cpt-detail.works__template .sidebar ul li {
      display: block;
   }
}
/* -- -- */
/*
 * Contact
 *=============================================*/
/* -- -- */
#reservation {
   position: relative;
}

#reservation .box {
   padding-top: 90px;
}

#reservation .box .bnr {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   height: 147px;
   background-color: #fff;
   border-radius: 150px;
   border: 2px solid #FE9E4A;
   text-align: center;
   color: #333;
   margin-top: 20px;
}

#reservation .box .tel .number a {
   display: inline-block;
   font-weight: bold;
   font-size: 32px;
   line-height: 27px;
   padding-left: 35px;
   position: relative;
}

#reservation .box .tel .number a:before {
   content: '';
   width: 30px;
   height: 30px;
   background: url("../img/common/icon-tel.svg") no-repeat center top/cover;
   position: absolute;
   top: 0;
   left: 0;
}

#reservation .box .tel .time {
   line-height: 20px;
   padding-top: 12px;
}

#reservation .box .line {
   font-size: 16px;
   line-height: 32px;
}

#reservation .box .line h4 {
   display: inline-block;
   width: 243px;
   text-align: left;
   border-left: 4px solid #FE9E4A;
   padding-left: 10px;
}

#reservation .box .line .btn {
   padding-top: 7px;
}

#reservation .box .line .btn a {
   display: inline-block;
   border: 1px solid #ccc;
   border-radius: 5px;
   padding: 6px 84px 6px 45px;
   position: relative;
}

#reservation .box .line .btn a:before {
   content: '';
   display: inline-block;
   vertical-align: middle;
   width: 24px;
   height: 24px;
   background: url("../img/common/icon-line.svg") no-repeat center top/cover;
   margin-right: 20px;
   position: relative;
   top: -3px;
}

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

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

   #reservation .box h3 {
      display: block;
      font-size: 16px;
   }

   #reservation .box h3 strong {
      padding-right: 0;
   }

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

/* -- -- */
.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: 22px;
   right: 20px;
   pointer-events: none;
}

#mailform {
   padding: 90px 0 120px;
}

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

#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 #ccc;
   box-sizing: border-box;
   line-height: 30px;
   border-radius: 0 !important;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   box-sizing: border-box;
   padding: 9px 15px;
}

#mailform textarea {
   height: 180px;
   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 {
   padding: 20px 0 0;
}

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

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

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

#mailform .form-input dl dt {
   width: 320px;
   background-color: #333;
   color: #fff;
   font-size: 15px;
   line-height: 24px;
   box-sizing: border-box;
   padding: 24px 20px;
   position: relative;
}

#mailform .form-input dl dt small {
   display: inline-block;
   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 {
   background-color: #FFE8D9;
   font-size: 15px;
   padding: 11px 15px;
}

#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 {
   height: 300px;
   background-color: #fff;
   color: #333;
   overflow: hidden scroll;
   border: 1px solid #707070;
   padding: 15px 40px;
   margin-top: 30px;
}

#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: 75px;
}

#mailform .form-btn>* {
   display: block;
   width: 355px;
   background-color: #fff;
   border: 1px solid #707070;
   text-align: center;
   border-radius: 0;
   font-size: 15px;
   line-height: 24px;
   color: #333;
   cursor: pointer;
   transition: all 0.3s;
   box-sizing: border-box;
   border-radius: 0;
   margin: 5px;
   padding: 10px 30px;
   position: relative;
}

#mailform .form-btn>*:after {
   content: '';
   width: 7px;
   height: 16px;
   background: url("../img/common/arrow-left-black.svg") no-repeat center top/cover;
   position: absolute;
   top: 50%;
   right: 30px;
   transform: translateY(-50%);
   transition: all 0.3s;
}

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

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

#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 .send {
   background-color: #707070;
   color: #fff;
   opacity: 1;
}

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

#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 {
   padding: 11px 15px;
}

#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: 60px 0;
   }

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

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

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

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

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

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

   #mailform .form-input dl dt {
      width: auto;
      padding: 13px 15px;
   }

   #mailform .form-input dl dt small {
      position: static;
      margin-left: 5px;
   }

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

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

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

#txt_thanks h2 {
   font-size: 18px;
   line-height: 27px;
   padding-bottom: 40px;
}

#txt_thanks h2 strong {
   display: block;
   text-transform: uppercase;
   font-weight: bold;
   font-size: 30px;
   line-height: 36px;
   letter-spacing: 0.12em;
   padding-bottom: 10px;
}

#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;
      padding: 60px 0;
   }

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

#content-404 h2 {
   position: relative;
}

#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 .txt {
      padding-top: 0;
   }

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

/* --- --- */