@charset "urf-8";


/* Common ------------------------------------ */


body {
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
	      font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

img {
  max-width: 100%;
}

.sp-dsp {
  display: block;
}

.pc-dsp {
  display: none;
}

.serif {
  font-family: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体',serif;
}


/* ------------------------------------------- */


/* Header ------------------------------------ */


.header-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 70%;
  max-width: 250px;
}

/* Menu Button */

.menu-trigger,
.menu-trigger .line {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.menu-trigger {
  position: fixed;
  top: 40px;
  right: 15px;
  z-index: 999;
  width: 50px;
  height: 16px;
}

.menu-trigger p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: -21px;
  color: #fff;
}

.menu-trigger .line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.menu-trigger .line01 {
  top: 0;
}

.menu-trigger .line02 {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 32px;
}

.menu-trigger .line03 {
  right: 0;
  bottom: 0;
  width: 32px;
}


/* Menu Button Open */

.menu-trigger.active p {
  color: #000 !important;
}

.menu-trigger.active .line {
  background-color: #000 !important;
}

.menu-trigger.active .line02 {
  opacity: 0;
}

.menu-trigger .line01 {
  -webkit-animation: menu-bar01 .75s forwards;
  animation: menu-bar01 .75s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(25deg);
  }
  50% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(25deg);
    transform: translateY(-50%) rotate(25deg);
  }
  50% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

.menu-trigger .line02 {
  -webkit-transition: all .25s .25s;
  transition: all .25s .25s;
  opacity: 1;
}

.menu-trigger .line03 {
  -webkit-animation: menu-bar02 .75s forwards;
  animation: menu-bar02 .75s forwards;
}

@-webkit-keyframes menu-bar02 {
  0% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-25deg);
    width: 100%;
  }
  50% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(0);
    width: 100%;
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar02 {
  0% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-25deg);
    transform: translateY(50%) rotate(-25deg);
    width: 100%;
  }
  50% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(0);
    transform: translateY(50%) rotate(0);
    width: 100%;
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

.menu-trigger.active .line01 {
  -webkit-animation: active-menu-bar01 .75s forwards;
  animation: active-menu-bar01 .75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0);
  }
  100% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(25deg);
  }
}

@keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
  }
  100% {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(25deg);
    transform: translateY(-50%) rotate(25deg);
  }
}

.menu-trigger.active .line02 {
  opacity: 0;
}

.menu-trigger.active .line03 {
  -webkit-animation: active-menu-bar03 .75s forwards;
  animation: active-menu-bar03 .75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(0);
    width: 100%;
  }
  100% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-25deg);
    width: 100%;
  }
}

@keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(0);
    transform: translateY(50%) rotate(0);
    width: 100%;
  }
  100% {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-25deg);
    transform: translateY(50%) rotate(-25deg);
    width: 100%;
  }
}


/* Menu Contents */

.header-menu {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  z-index: 998;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  background-color: rgba(255, 255, 255, .9);
  -webkit-transition: .5s all;
  transition: .5s all;
}

.header-menu.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.home-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 70%;
  max-width: 250px;
}

.header-menu ul {
  margin-top: 80px;
}

.menu-item {
  border-bottom: solid 1px #ddd;
}

.menu-item:first-child {
  border-top: solid 1px #ddd;
}

.menu-item a {
  display: block;
  padding: 20px 10%;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2px;
}


/* Change Color */

.contact .menu-trigger p {
  color: #000;
}

.contact .menu-trigger .line {
  background-color: #000;
}

.contact .fv-link a {
  border-color: #000;
  color: #000;
}


/* Page Image */

.page-image {
  position: relative;
  height: 250px;
  margin-bottom: 45px;
  background-size: cover;
}


/* ------------------------------------------- */


/* Top Page ---------------------------------- */


/* Common */

.read-more {
  text-align: center;
}


/* First View */

.first-view {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAGCAYAAAD68A/GAAAAHElEQVQYV2NkIBIwEqmOgSSFxsSYSpKJxBjIAAAcCAA6jPMYXwAAAABJRU5ErkJggg==) repeat;
}

.first-view .first-view-back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;'
}

.top h1 {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 70%;
  max-width: 250px;
}

.concept {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.concept p:first-child {
  margin-bottom: 13px;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 4px;
  line-height: 1.8;
  text-indent: 4px;
}

.concept p:first-child span {
  display: none;
}

.concept p:last-child {
  font-weight: 500;
  letter-spacing: 2px;
  text-indent: 2px;
}

.fv-link {
  position: absolute;
  bottom: 45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
}

.fv-link a {
  display: inline-block;
  padding: 10px 15px;
  border: solid 1px #fff;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-indent: 2px;
  white-space: nowrap;
}


/* Main Contents */

/** Common **/

.top main {
  padding-bottom: 50px;
}

.top section {
  padding: 40px 0 30px;
}

.top section.demolition-intro,
.top section.work-intro {
  padding-bottom: 20px;
}

.sec-title {
  font-weight: 600;
  font-size: 22px;
  font-family: 'DIN Alternate','Noto Sans JP', sans-serif;
  letter-spacing: 1px;
  text-align: center;
  text-indent: 1px;
}

.demolition-intro .sec-title,
.work-intro .sec-title {
  margin-bottom: 22px;
}

.sec-title span {
  display: block;
  margin-top: 9px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2px;
}

.read-more {
  text-align: center;
}

.read-more a {
  display: inline-block;
  padding: 13px 30px;
  border: solid 2px #555;
  color: #555;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-indent: 2px;
}


/** Demolition Introduction & Work Introduction **/

.demolition-slide,
.work-slide {
  opacity: 0;
  width: 80%;
  margin: 0 auto 20px;
  padding: 15px;
  border: solid 1px #fff;
  -webkit-transition: opacity .2s linear;
  transition: opacity .2s linear;
}

.demolition-slide.slick-initialized,
.work-slide.slick-initialized {
  opacity: 1;
}

.slide-photo {
  display: block;
  position: relative;
  margin-bottom: 10px;
}

.slide-photo::after {
  content: "";
  display: block;
  padding-top: 67.5%;
}

.slide-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;'
}

.slide-title {
  font-weight: 500;
  letter-spacing: 3px;
}


/** Demolition Introduction **/

.demolition-intro {
  background-color: #f2f2f2;
}


/** Work Introduction **/

.work-intro {
  background-color: #d9e1ec;
}


/** About Introduction **/

.top section.about-intro {
  padding-bottom: 55px;
}

.about-intro .sec-title {
  margin-bottom: 40px;
}

.about-intro .text {
  width: 85%;
  margin: 0 auto 45px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.8;
}


/** Reliable Introduction **/

.reliable-intro {
  background-color: #213a5d;
}

.reliable-list {
  width: 85%;
  margin: 0 auto 30px;
  padding: 40px 20px;
  background-color: #274668;
}

.reliable-intro .sec-title,
.reliable-item {
  color: #fff;
}

.reliable-intro .sec-title {
  margin-bottom: 40px;
}

.reliable-item {
  margin-bottom: 55px;
}

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

.reliable-item h3 {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 2px;
  text-align: center;
  text-indent: 2px;
}

.reliable-item p {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.8;
}

.contact-link {
  text-align: center;
}

.contact-link a {
  display: inline-block;
  padding: 12px 20px;
  border: solid 1px #fff;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-indent: 2px;
}


/** Contact Introduction **/

.contact-intro .sec-title {
  margin-bottom: 40px;
}

.tel-btn {
  width: 85%;
  margin: 0 auto 20px;
  padding: 17px 20px;
  border: solid 1px #000;
}

.tel-btn p:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 13px;
  padding-bottom: 13px;
  border-bottom: solid 1px #000;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.tel-btn p:first-child span {
  font-weight: 500;
  font-size: 15px;
}

.tel-btn a {
  display: block;
  width: 88%;
  margin: 0 auto 10px;
}

.tel-btn p:last-child {
  width: 88%;
  margin: auto;
  font-size: 11px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.contact-btn a {
  display: block;
  width: 85%;
  padding: 10px 0 10px 20px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 2px;
}

.contact-btn a img {
  width: 30px;
  margin-right: 10px;
  vertical-align: middle;
}

.contact-btn a span {
  font-weight: 500;
  vertical-align: middle;
}

.estimate-btn {
  margin: 0 auto 10px;
  background-color: #274668;
}

.mail-btn {
  margin: auto;
  background-color: #213a5d;
}


/* Footer ------------------------------------ */


footer {
  padding-bottom: 20px;
}

.footer-logo {
  display: block;
  width: 85%;
  margin: 0 auto 25px;
}

.footer-nav {
  margin-bottom: 25px;
}

.footer-nav li {
  margin-bottom: 1px;
}

.footer-nav li a {
  display: block;
  padding: 20px 10%;
  background-color: #d9e1ec;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2px;
}

.footer-nav li a::after {
  content: "＞";
  display: inline-block;
  float: right;
}

.address {
  width: 85%;
  margin: 0 auto 50px;
  font-size: 12px;
}

.address p:first-child {
  margin-bottom: 20px;
}

.address p span {
  display: block;
  margin: 8px 0 0 40px;
}

footer small {
  display: block;
  font-size: 11px;
  text-align: center;
}


/* ------------------------------------------- */


/* Demolition Page ---------------------------- */


.page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 2px;
  text-align: center;
  text-indent: 2px;
  white-space: nowrap;
}

.page-title span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-indent: 1px;
}

.demolition main {
  margin-bottom: 80px;
}

.demolition .page-image {
  background: url(../images/demolition_image_sample.jpg) center center no-repeat;
  background-size: cover;
}

.ican {
  margin-bottom: 45px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
}

.anchor-link {
  margin-bottom: 80px;
}

.anchor-link a {
  display: block;
  position: relative;
  margin-bottom: 2px;
  color: #fff;
}

.anchor-link a::after {
  content: "";
  display: block;
  padding-top: 25%;
}

.anchor-link a p {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2px;
  text-indent: 2px;
}

.anchor-link a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;'
}

.demo-item {
  margin-bottom: 60px;
}

.demo-img {
  position: relative;
}

.demo-img::after {
  content: "";
  display: block;
  padding-top: 70%;
}
  
.demo-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;'
}

.demo-text {
  z-index: 2;
  position: relative;
  width: 85%;
  margin: -17px auto 0;
  padding: 15px;
  background: #f2f2f2;
}

.demo-text h3 {
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 3px;
}

.demo-text p {
  letter-spacing: 1px;
  line-height: 1.8;
}


/* Fade In */

.fadein {
  opacity : 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  -webkit-transition: all 1s;
  transition: all 1s;
}


/* ------------------------------------------- */


/* About Page  ------------------------------- */


.about main {
  padding: 60px 0 80px;
}

.about .sec-title {
  margin-bottom: 50px;
}

.about .page-image {
  margin-bottom: 0;
  background: url(../images/about_image_sample.jpg) center center no-repeat;
  background-size: cover;
}

.policy {
  margin-bottom: 50px;
  padding: 0 30px;
}

.policy h2 {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 2px;
  line-height: 1.5;
}

.policy p {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.8;
}

.about dl {
  max-width: 860px;
  margin: 0 auto 65px;
  padding: 0 30px;
}

.about-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 22px 0;
  border-bottom: solid 1px #ccc;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.about-item:first-child {
  border-top: solid 1px #ccc;
}

.about-item dt {
  width: 53%;
  font-weight: 500;
  letter-spacing: 2.2px;
  line-height: 2;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.about-item dd {
  width: 100%;
  font-weight: 500;
  letter-spacing: 2.2px;
  line-height: 2;
  text-align: justify;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}


/* Map */

.map-wrap {
  margin: 0 30px;
}

.map-title {
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 2px;
}

.kt-map {
  position: relative;
  width: 100%;
}

.kt-map::after {
  content: "";
  display: block;
  padding-top: 100%;
}

.kt-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ureshino {
  margin-bottom: 50px;
}


/* ------------------------------------------- */


/* Contact Page  ----------------------------- */

.contact .menu-trigger p {
  color: #000;
}

.contact .menu-trigger .line {
  background-color: #000;
}

.contact .fv-link a {
  border-color: #000;
  color: #000;
}

.contact .page-image {
  margin-bottom: 0;
  background: url(../images/contact_image_sample.jpg) center center no-repeat;
  background-size: cover;
}

.contact .page-title {
  color: #000;
}

.contact main,
.confirm main,
.mailto main {
  padding: 60px 0 80px;
}

.contact .sec-title {
  margin-bottom: 50px;
}

.form-wrap,
.confirm dl,
.mailto-wrap {
  padding: 0 30px;
}

.form-wrap {
  margin-bottom: 30px;
}

.form-row,
.confirm-item {
  display: block;
  padding: 25px 0 30px;
  border-bottom: solid 1px #ccc;
}

.form-head {
  width: 100%;
  margin-bottom: 13px;
}

.form-label {
  letter-spacing: 2px;
}

.form-detail {
  width: 100%;
}

.form-input {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border: solid 1px #f8f8f8;
  border-radius: 5px;
  background-color: #f8f8f8;
  font-size: 13px;
  letter-spacing: 2.2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

.form-input::-webkit-input-placeholder {
  color: #999;
}

.form-input:-ms-input-placeholder {
  color: #999;
}

.form-input::placeholder {
  color: #999;
}

.form-textarea {
  min-height: 100px;
  resize: none;
}

.icon-required {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 6px;
  border-radius: 3px;
  font-weight: bold;
  font-size: 11px;
  background-color: #f56060;
  color: #fff;
}

.attention {
  margin-top: 7px;
  color: #444;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 1.4;
}

.submit-btn {
  margin-top: 60px;
}

.submit-btn input {
  display: block;
  width: 230px;
  height: 50px;
  margin: auto;
  padding: 12px 0;
  border: none;
  border-radius: 50px;
  background-color: #222;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


/* Radio Button */

.form-radio {
  display: none;
}

.form-head.radio-title {
  margin-bottom: 19px;
}

.radio-label {
  margin-right: 35px;
}

.form-radio-parts {
  position: relative;
  padding-left: 25px;
  letter-spacing: 2px;
  vertical-align: middle;
}

.form-radio-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  border: 1px solid #333;
  border-radius: 50%;
}

.form-radio:checked + .form-radio-parts::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-color: #333;
  border-radius: 50%;
}


/* Confirm */

.confirm .sec-title {
  margin-bottom: 30px;
}

.confirm-attention {
  margin: 0 30px 20px;
  padding: 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  line-height: 2;
  background-color: #f8f8f8;
}

.confirm-item dt {
  margin-bottom: 19px;
  letter-spacing: 2px;
}

.confirm-item dd {
  letter-spacing: 2.2px;
}


/* Mailto */

.mailto .sec-title {
  margin-bottom: 30px;
}

.mailto-attention {
  margin-bottom: 50px;
  letter-spacing: 2px;
  line-height: 2;
}

.back-home a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 230px;
  height: 50px;
  margin: auto;
  padding: 12px 0;
  border-radius: 50px;
  background-color: #222;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}


/* ------------------------------------------- */


/* Works Page  ------------------------------- */


.update-item .menu-trigger p {
  color: #000;
}

.update-item .menu-trigger .line {
  background-color: #000;
}

.update-item .fv-link a {
  border-color: #000;
  color: #000;
}

.works main {
  padding: 60px 0 80px;
}

.works .sec-title {
  margin-bottom: 50px;
}

.works .page-image {
  margin-bottom: 0;
  background: url(../images/works_image_sample.jpg) center center no-repeat;
  background-size: cover;
}

.works-wrap {
  padding: 0 30px;
}

.works-item {
  display: block;
  margin-bottom: 20px;
}

.works-img {
  display: block;
  position: relative;
  width: 100%;
}

.works-img::after {
  content: "";
  display: block;
  padding-top: 65%;
}

.works-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;'
}

.thumb-title {
  padding: 15px;
  background-color: #f8f8f8;
  color: #000;
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 2;
}


/* Work Single Page */

.work main {
  padding: 100px 0 80px;
}

.work-title {
  margin-bottom: 50px;
  font-weight: 500;
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 4px;
  text-align: center;
  text-indent: 4px;
}

.flow-wrap {
  margin-bottom: 30px;
  padding: 0 30px;
}

.flow-description {
  margin: 10px 0 10px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 3px;
}

.flow-img {
  margin-bottom: 10px;
}

.flow-img img {
  display: block;
}

.triangle {
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 15px 20px 0 20px;
  border-color: #ccc transparent transparent transparent;
}

.work-info {
  padding: 0 30px;
}

.work-info ul {
  padding: 15px;
  background-color: #f9f9f9;
  letter-spacing: 2px;
  line-height: 2;
}


/* ------------------------------------------- */


/* Google reCAPTCHA v3 */

.grecaptcha-badge {
  visibility: hidden;
}

.protect-by-google {
  padding: 0 30px;
}

.protect-by-google p {
  line-height: 1.5;
}