@charset "UTF-8";
/** Colorの定義**/
/** 文字の定義**/
/* ==============================

	  共通

  ============================== */
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  line-height: 1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  overflow: hidden;
  color: #0071b8;
}
a:hover {
  color: #ffb700;
}

picture {
  display: block;
}

img {
  border: none;
  line-height: 0;
  vertical-align: bottom;
  max-width: 100%;
}

img[data-echo] {
  background-image: url(../images/common/loader-oval-bk.svg);
  background-size: 30px 30px;
  background-position: center center;
}

img[data-echo].loaded {
  background-image: none;
}

i {
  font-style: normal;
}

.clear {
  clear: both;
  height: 0;
  line-height: 0;
  font-size: 0;
}

.space10 {
  height: 10px;
}

.space20 {
  height: 20px;
}

.space30 {
  height: 30px;
}

.space40 {
  height: 40px;
}

.space100 {
  height: 100px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

.bold {
  font-weight: bold;
}

.txt-left {
  text-align: left;
}

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

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

.red {
  color: #c00;
}

.font-s {
  font-size: smaller;
}

ul li {
  list-style: none;
}

.alpha {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .alpha:hover {
    opacity: 0.7;
  }
}

.wrap-alpha a {
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .wrap-alpha a:hover {
    opacity: 0.7;
  }
}

.enlarge {
  position: relative;
}
.enlarge::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23000000'%3E%3Cpath d='M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352c79.5 0 144-64.5 144-144s-64.5-144-144-144S64 128.5 64 208s64.5 144 144 144z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 3px;
  right: 3px;
  z-index: 3;
  opacity: 0.6;
  transition: opacity 0.4s;
}
.enlarge:hover::after {
  opacity: 1;
}

.bd-01 {
  background: linear-gradient(transparent 60%, rgba(252, 238, 33, 0.8) 0%);
  font-weight: bold;
}

.cursor {
  cursor: pointer;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-table;
}

.link a {
  color: #0071b8;
}
.link a:hover {
  color: #ffb700;
}

/** ***********************************************

COMMON

*********************************************** **/
body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.5px;
  -webkit-text-size-adjust: 100%;
}

.inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.wrap-flex {
  display: flex;
}
.wrap-flex .col {
  width: 50%;
}
.wrap-flex.flex-3 .col {
  width: 33.3333333333%;
}
.wrap-flex.flex-4 .col {
  width: 25%;
}

.wrap-grid {
  display: grid;
}

.grid-1 {
  gap: 20px 50px;
  grid-template-columns: calc(50% - 25px) calc(50% - 25px);
}

.grid-1 .col-1 {
  grid-area: 1/1/2/3;
}

.grid-1 .col-2 {
  grid-area: 2/1/3/2;
}

.grid-1 .col-3 {
  grid-area: 2/2/3/3;
}

.grid-1 .col-4 {
  grid-area: 3/1/4/3;
}

header {
  background-color: #d4e8da;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header.shutter {
  background-color: #d3e3f1;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  header {
    position: absolute;
  }
}
header .inner {
  padding: 10px 20px;
  max-width: inherit;
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 100px;
  max-width: 1980px;
}
@media screen and (max-width: 1024px) {
  header .inner {
    min-height: 80px;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  header .inner {
    min-height: auto;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  header .inner {
    flex-direction: column;
    padding: 0;
  }
}
header .inner .col-1 {
  width: 30%;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  header .inner .col-1 {
    width: 40%;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  header .inner .col-1 {
    width: 100%;
    padding: 10px 20px;
  }
}
header .inner .col-2 {
  width: calc(70% - 20px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  header .inner .col-2 {
    width: calc(60% - 20px);
    gap: 5px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  header .inner .col-2 {
    width: 100%;
    background-color: #eddf21;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding: 5px 10px;
  }
}
header h1 {
  font-size: clamp(70%, .6vw, 11px);
  margin-bottom: 10px;
  margin-left: -5px;
}
@media screen and (max-width: 1024px) {
  header h1 {
    font-size: 11px;
    margin-bottom: 7px;
    font-weight: normal;
  }
}
@media screen and (max-width: 834px) {
  header h1 {
    font-size: 10px;
  }
}
header .logo {
  font-weight: bold;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  header .logo {
    margin-bottom: 7px;
  }
}
header .logo span {
  color: #111;
  display: block;
  text-shadow: 0 0 2px #fff;
  white-space: nowrap;
}
header .logo .txt-1 {
  font-size: clamp(15px, 1.1vw, 18px);
  margin-right: 5px;
}
header .logo .txt-2 {
  font-size: clamp(24px, 1.8vw, 40px);
  margin-right: 10px;
  letter-spacing: -1px;
}
header .logo .txt-3 {
  font-size: clamp(20px, 1.6vw, 36px);
  letter-spacing: -1px;
  transform: skewX(-7deg);
}
header .address {
  font-size: 13px;
  font-size: clamp(12px, .8vw, 13px);
  color: #111;
  position: relative;
  display: flex;
  gap: 5px;
  width: -moz-fit-content;
  width: fit-content;
}
header .address::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.05 24'><path d='M10.14,23.46c2.41-3.02,7.91-10.33,7.91-14.44C18.05,4.04,14,0,9.02,0S0,4.04,0,9.02c0,4.11,5.5,11.42,7.91,14.44.58.72,1.65.72,2.23,0h0ZM9.02,12.03c-1.66,0-3.01-1.35-3.01-3.01s1.35-3.01,3.01-3.01,3.01,1.35,3.01,3.01-1.35,3.01-3.01,3.01Z'/></svg>");
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.05 24'><path d='M10.14,23.46c2.41-3.02,7.91-10.33,7.91-14.44C18.05,4.04,14,0,9.02,0S0,4.04,0,9.02c0,4.11,5.5,11.42,7.91,14.44.58.72,1.65.72,2.23,0h0ZM9.02,12.03c-1.66,0-3.01-1.35-3.01-3.01s1.35-3.01,3.01-3.01,3.01,1.35,3.01,3.01-1.35,3.01-3.01,3.01Z'/></svg>");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #111;
  display: block;
  width: 12px;
  height: 12px;
}
header .wrap-tel {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  header .wrap-tel {
    width: 40%;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  header .wrap-tel {
    width: 60%;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  header .wrap-tel {
    width: 70%;
  }
}
header .wrap-tel .txt {
  font-weight: bold;
  display: block;
  font-size: clamp(14px, .8vw, 14px);
  margin: 0 auto 10px;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  header .wrap-tel .txt {
    font-size: 12px;
  }
}
header .wrap-tel .img-tel {
  width: 90%;
  display: block;
  margin: 0 auto;
}
header .bt {
  display: flex;
  gap: 5px;
  padding: 0 20px;
  border-radius: 6px;
  background-color: #0071b8;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, .8vw, 14px);
  font-weight: bold;
  height: 60px;
}
@media screen and (max-width: 1024px) {
  header .bt {
    width: 60px;
    padding: 0;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  header .bt {
    width: 55px;
  }
}
header .bt img {
  width: auto;
  height: 20px;
}
@media screen and (max-width: 1024px) {
  header .bt .txt {
    display: none;
  }
}
header .bt.bt-2 {
  background-color: #00b902;
}
header .bt.bt-2 img {
  height: 40px;
}

.sec-mv {
  position: relative;
  height: 100dvh;
  padding-top: 100px;
  background-color: #000;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-mv {
    height: calc(60dvh - 0px);
    padding-top: 80px;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) and (max-width: 834px) {
  .sec-mv {
    height: calc(70dvh - 80px);
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv {
    height: auto;
    background-color: #028e45;
    overflow: hidden;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv.shutter {
    background-color: #02b902;
  }
}
.sec-mv .slide-1 {
  display: none;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .slide-1 {
    display: block;
    max-width: inherit;
    width: 134%;
    animation: slide 25s linear forwards;
  }
  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-25%);
    }
  }
}
.sec-mv .mv-img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100dvh;
  opacity: 0.8;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-mv .mv-img {
    height: calc(60dvh - 80px);
    width: auto;
    max-width: auto;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) and (max-width: 834px) {
  .sec-mv .mv-img {
    height: calc(70dvh - 160px);
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .mv-img {
    opacity: 1;
    height: auto;
    max-width: inherit;
    width: 134% !important;
    animation: slide 25s linear reverse forwards;
  }
}
.sec-mv .wrap-txts {
  position: absolute;
  top: 30%;
  left: 0;
  z-index: 2;
  color: #fff;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-mv .wrap-txts {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-txts {
    width: 100%;
    position: static;
    left: 0;
    transform: translateX(0);
    padding-bottom: 30px;
  }
}
.sec-mv .wrap-txts .in {
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(1, 142, 69, 0.9);
  padding: 6% 8%;
  position: relative;
  margin-bottom: 3vw;
}
.sec-mv .wrap-txts .in.shutter {
  background-color: #02b902;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-mv .wrap-txts .in {
    padding: 6% 40px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-txts .in {
    width: 100%;
    padding: 20px 20px;
    margin-bottom: 20px;
  }
}
.sec-mv .wrap-txts .in .txt-1 {
  color: #e91c24;
  background-color: #eddf21;
  display: block;
  border-radius: 100px;
  padding: 10px 30px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(18px, 2.4vw, 24px);
  position: absolute;
  top: -7%;
  left: 10%;
  animation: anime1 3s infinite linear alternate;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-mv .wrap-txts .in .txt-1 {
    font-size: 16px;
    left: 20px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-txts .in .txt-1 {
    position: static;
    font-size: 14px;
    padding: 10px 20px;
    margin-bottom: 10px;
  }
}
@keyframes anime1 {
  0% {
    top: -7%;
  }
  20% {
    top: -7%;
  }
  30% {
    top: -9%;
  }
  40% {
    top: -7%;
  }
  50% {
    top: -9%;
  }
  60% {
    top: -7%;
  }
  100% {
    top: -7%;
  }
}
.sec-mv .wrap-txts .in .txt-2 {
  display: block;
  font-size: clamp(30px, 5vw, 100px);
  letter-spacing: 0;
  transform: skewX(-7deg);
  text-shadow: 2px 2px 0 #333;
  margin-bottom: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .sec-mv .wrap-txts .in .txt-2 {
    font-size: 70px;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-mv .wrap-txts .in .txt-2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-txts .in .txt-2 {
    white-space: wrap;
    font-size: 35px;
    line-height: 1.2;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-txts .in .txt-2 .txt-2a {
    /*  display: block;
      font-size: 40px;
      margin-left: 5px;
      margin-top: 5px;
    */
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-txts .in .txt-2.shutter {
    letter-spacing: -2px;
  }
}
.sec-mv .wrap-txts .in .txt-3 {
  display: block;
  font-size: clamp(26px, 4vw, 80px);
  letter-spacing: 0;
  transform: skewX(-7deg);
  text-shadow: 2px 2px 0 #333;
  margin-bottom: 30px;
  white-space: nowrap;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-txts .in .txt-3 {
    white-space: wrap;
    margin-bottom: 20px;
  }
}
.sec-mv .wrap-txts .in .txt-4 {
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.6;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-mv .wrap-txts .in .txt-4 {
    font-size: 14px;
  }
}
.sec-mv .wrap-txts .bt-estimate {
  position: relative;
  width: 70%;
  margin: 0 auto;
  display: block;
  padding: 2.5vw 10%;
  text-align: center;
  background: linear-gradient(red, #bf272d);
  border-radius: 6px;
  border: solid 1px #fff;
  overflow: visible;
  color: #fff;
  z-index: 2;
  font-size: clamp(24px, 1.8vw, 40px);
  box-shadow: 2px 2px 2px #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1.5vw;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-mv .wrap-txts .bt-estimate {
    font-size: 20px;
    padding: 25px;
    width: 75%;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-txts .bt-estimate {
    font-size: 20px;
    padding: 25px 10px;
    width: 80%;
    gap: 0 10px;
  }
}
.sec-mv .wrap-txts .bt-estimate .arrow {
  width: 1.8vw;
  max-width: 40px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-txts .bt-estimate .arrow {
    width: 20px;
  }
}
.sec-mv .wrap-txts .bt-estimate .txt-2 {
  color: #111;
  background-color: #eddf21;
  display: block;
  border-radius: 100px;
  padding: 5px 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(14px, 1vw, 16px);
  position: absolute;
  top: -10%;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-mv .wrap-txts .bt-estimate .txt-2 {
    font-size: 12px;
    top: -12px;
  }
}
.sec-mv .triangle {
  width: 0;
  height: 0;
  border-bottom: 18vw solid #eddf21; /* 縦の辺（40px） */
  border-left: 32vw solid transparent; /* 横の辺（40px） */
  border-top: 0;
  border-right: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .sec-mv .triangle {
    border-bottom: 300px solid #eddf21;
    border-left: 400px solid transparent;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-mv .triangle {
    border-bottom: 200px solid #eddf21;
    border-left: 300px solid transparent;
    display: none;
  }
}
.sec-mv .wrap-yellow {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  width: 20%;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .sec-mv .wrap-yellow {
    width: 30%;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-mv .wrap-yellow {
    display: none;
  }
}
.sec-mv .wrap-yellow .txt-1 {
  display: block;
  font-size: clamp(14px, .8vw, 14px);
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  border: solid 1px #111;
  border-radius: 3px;
  padding: 4px 10px;
}
@media screen and (max-width: 1024px) {
  .sec-mv .wrap-yellow .txt-1 {
    font-size: 12px;
    padding: 6px 10px;
    margin: 0 auto 10px;
  }
}
.sec-mv .wrap-yellow .img-tel {
  display: block;
  max-width: 400px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 1024px) {
  .sec-mv .wrap-yellow .img-tel {
    width: 90%;
  }
}
.sec-mv .wrap-yellow .txt-2 {
  display: block;
  font-size: clamp(14px, .8vw, 14px);
}

.sec-01 .block-1 {
  width: 100%;
  background-image: url("../images/door-nagoya/bg-sec-01a-2000.avif");
  background-size: cover;
  background-position: center;
  padding-bottom: 50px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 50% 100%, 0% 90%);
  position: relative;
}
.sec-01 .block-1.shutter {
  background-image: url("../images/shutter-nagoya/bg-sec-01a-2000.avif");
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-01 .block-1 {
    padding-bottom: 50px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 50% 100%, 0% 94%);
  }
}
.sec-01 .block-1 .wrap-txts {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-01 .block-1 .wrap-txts {
    padding: 50px 40px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-1 .wrap-txts {
    padding: 50px 10px;
  }
}
.sec-01 .block-1 .wrap-txts h3 {
  font-size: clamp(26px, 4vw, 80px);
  color: #eddf21;
  line-height: 1.2;
  transform: skew(-7deg);
  text-shadow: 1px 1px 1px #333;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .sec-01 .block-1 .wrap-txts h3 {
    font-size: 60px;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-01 .block-1 .wrap-txts h3 {
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-1 .wrap-txts h3 {
    font-size: 34px;
  }
  .sec-01 .block-1 .wrap-txts h3 br {
    display: none;
  }
}
.sec-01 .block-1 .wrap-txts .wrap-list {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 30px 80px;
  position: relative;
  box-shadow: 2px 2px 2px #666;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-1 .wrap-txts .wrap-list {
    padding: 30px 10px 40px;
  }
}
.sec-01 .block-1 .wrap-txts .wrap-list h4 {
  background-color: #e91c24;
  color: #fff;
  font-size: clamp(20px, 1.6vw, 36px);
  padding: 10px 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin: -50px auto 50px;
  transform: skew(-12deg);
}
@media screen and (max-width: 1024px) {
  .sec-01 .block-1 .wrap-txts .wrap-list h4 {
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-1 .wrap-txts .wrap-list h4 {
    font-size: 16px;
    line-height: 1.6;
    padding: 10px;
    margin: -50px auto 30px;
  }
}
.sec-01 .block-1 .wrap-txts .wrap-list ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sec-01 .block-1 .wrap-txts .wrap-list li {
  text-align: left;
  font-size: clamp(24px, 1.8vw, 40px);
  font-weight: bold;
  margin-bottom: 20px;
  transform: skew(-7deg);
  display: flex;
  gap: 15px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .sec-01 .block-1 .wrap-txts .wrap-list li {
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-1 .wrap-txts .wrap-list li {
    font-size: 18px;
    gap: 10px;
  }
}
.sec-01 .block-1 .wrap-txts .wrap-list li::before {
  content: url(../images/common/icon-check.svg);
  width: 25px;
  aspect-ratio: 1/1;
  transform: skew(7deg);
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-1 .wrap-txts .wrap-list li::before {
    width: 20px;
  }
}
.sec-01 .block-1 .wrap-txts .arrow-red {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 100px);
}
@media screen and (max-width: 1024px) {
  .sec-01 .block-1 .wrap-txts .arrow-red {
    max-width: 180px;
    bottom: 0px;
    left: calc(50% - 90px);
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-1 .wrap-txts .arrow-red {
    bottom: -50px;
    max-width: 150px;
    left: calc(50% - 75px);
  }
}
.sec-01 .block-2 {
  margin-top: -100px;
  position: relative;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-2 {
    padding: 60px 0 0;
  }
}
.sec-01 .block-2 .wrap-txts {
  max-width: 800px;
  padding: 50px 20px;
  text-align: center;
  z-index: 2;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 50px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-01 .block-2 .wrap-txts {
    max-width: 600px;
    top: 55%;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-2 .wrap-txts {
    padding: 30px 10px;
    max-width: 90%;
    left: 5%;
    transform: translate(0, -50%);
  }
}
.sec-01 .block-2 .wrap-txts .txt-1 {
  font-size: clamp(24px, 2.2vw, 80px);
  margin: 0 auto 30px;
  display: block;
  transform: skew(-7deg);
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .sec-01 .block-2 .wrap-txts .txt-1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-2 .wrap-txts .txt-1 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.sec-01 .block-2 .wrap-txts .feats {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-2 .wrap-txts .feats {
    gap: 5px;
    margin-bottom: 20px;
  }
}
.sec-01 .block-2 .wrap-txts .feats .feat {
  display: block;
  border: solid 1px #111;
  padding: 5px 20px;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: bold;
  border-radius: 100px;
}
@media screen and (max-width: 1024px) {
  .sec-01 .block-2 .wrap-txts .feats .feat {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-2 .wrap-txts .feats .feat {
    font-size: 12px;
  }
}
.sec-01 .block-2 .wrap-txts .txt-2 {
  display: block;
  margin: 0 auto 15px;
  font-size: clamp(14px, .8vw, 14px);
}
@media screen and (max-width: 1024px) {
  .sec-01 .block-2 .wrap-txts .txt-2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-2 .wrap-txts .txt-2 {
    font-size: 12px;
  }
}
.sec-01 .block-2 .wrap-txts .wrap-tel {
  display: block;
  max-width: 80%;
  margin: 0 auto 20px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-2 .wrap-txts .wrap-tel {
    max-width: 90%;
    margin-bottom: 10px;
  }
}
.sec-01 .block-2 .wrap-txts .img-tel {
  display: block;
}
.sec-01 .block-2 .wrap-txts .txt-3 {
  display: block;
  margin: 0 auto 15px;
  font-size: clamp(14px, 1vw, 16px);
}
@media screen and (max-width: 1024px) {
  .sec-01 .block-2 .wrap-txts .txt-3 {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-2 .wrap-txts .txt-3 {
    font-size: 12px;
  }
}
.sec-01 .block-2 .wrap-txts .img-fukidashi {
  display: block;
  max-width: 100px;
  height: auto;
  position: absolute;
  top: 10%;
  left: 5%;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-01 .block-2 .wrap-txts .img-fukidashi {
    left: -30px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-2 .wrap-txts .img-fukidashi {
    top: -18%;
    left: -10px;
    max-width: 80px;
  }
}
.sec-01 .block-2 .bg {
  width: 100%;
  height: auto;
  z-index: -1;
  position: relative;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-01 .block-2 .bg {
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    width: 100%;
    height: 600px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-01 .block-2 .bg {
    height: 450px;
  }
}

.bt-estimate-2 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: block;
  padding: 20px 40px;
  text-align: center;
  background: linear-gradient(red, #bf272d);
  border-radius: 6px;
  border: solid 1px #fff;
  overflow: visible;
  color: #fff;
  z-index: 2;
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: bold;
  box-shadow: 2px 2px 2px #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 30px;
}
@media screen and (max-width: 1024px) {
  .bt-estimate-2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .bt-estimate-2 {
    width: 100%;
    padding: 20px;
    font-size: 15px;
    gap: 0 10px;
  }
}
.bt-estimate-2 .txt {
  display: block;
  white-space: nowrap;
}
.bt-estimate-2 .arrow {
  max-width: 25px;
}

.sec-common {
  min-height: 500px;
  background-color: #fff;
}

.wrap-title {
  background-color: #028e45;
  padding: 30px 20px;
  overflow: visible;
  position: relative;
  margin-bottom: 50px;
}
.wrap-title.shutter {
  background-color: #0071b8;
}
.wrap-title.shutter::after {
  border-right-color: #0071b8;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .wrap-title {
    padding: 10px 20px 20px;
  }
}
.wrap-title::after {
  content: "";
  display: block;
  margin: 0 auto;
  border-width: 0 30px 30px 0;
  border-style: solid;
  border-color: transparent;
  border-right-color: #028e45;
  transform: rotate(135deg);
  transform-origin: center;
  width: 0;
  height: 0;
  position: absolute;
  bottom: -15px;
  left: calc(50% - 15px);
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .wrap-title::after {
    border-width: 0 20px 20px 0;
    left: calc(50% - 10px);
    bottom: -9px;
  }
}

.title-h2 {
  transform: skewX(-7deg);
  color: #eddf21;
  font-size: clamp(26px, 4vw, 80px);
  text-align: center;
  text-shadow: 1px 1px 2px #666;
}
@media screen and (max-width: 1024px) {
  .title-h2 {
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .title-h2 {
    font-size: 30px;
  }
}
.title-h2 .sub {
  color: #fff;
  display: block;
  font-size: clamp(18px, 1.4vw, 30px);
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .title-h2 .sub {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .title-h2 .sub {
    font-size: 18px;
  }
}

.sec-02 {
  background-color: #d4e8da;
}
.sec-02.shutter .num {
  background-image: url(../images/shutter-nagoya/point.svg) !important;
}
.sec-02 .wrap-flex {
  display: flex;
  gap: 50px 20px;
  flex-wrap: wrap;
  padding: 30px 0 80px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .wrap-flex {
    padding: 30px 0 50px;
  }
}
.sec-02 .wrap-flex .col {
  width: calc(33.3333333333% - 13.3333333333px);
  background-color: #fff;
  border: solid 3px #028e45;
  border-radius: 10px;
  padding: 30px 20px;
  min-height: 200px;
  position: relative;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-02 .wrap-flex .col {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .wrap-flex .col {
    width: 100%;
    padding: 20px 15px;
  }
}
.sec-02 .wrap-flex .col .num {
  background-image: url(../images/door-nagoya/point.svg);
  width: 60px;
  height: 80px;
  background-size: contain;
  position: absolute;
  left: -10px;
  top: -30px;
  color: #028e45;
  font-weight: bold;
  font-size: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-02 .wrap-flex .col .num {
    width: 50px;
    height: 70px;
    font-size: 30px;
  }
}
.sec-02 .wrap-flex h3 {
  font-size: clamp(20px, 1.6vw, 36px);
  margin: 0 auto 30px;
  text-align: center;
  transform: skewX(-7deg);
  line-height: 1.8;
}
.sec-02 .wrap-flex .desc p {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .sec-02 .wrap-flex .desc p {
    font-size: 15px;
  }
}
.sec-02.shutter {
  background-color: #d2e3f1;
}
.sec-02.shutter .col {
  border: solid 3px #0071b8;
}
.sec-02.shutter .col .num {
  color: #0071b8;
}

.sec-03 .wrap-flex {
  display: flex;
  gap: 50px 20px;
  flex-wrap: wrap;
  padding: 30px 0 80px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-03 .wrap-flex {
    padding: 30px 0 50px;
    flex-direction: column;
    gap: 30px;
  }
}
.sec-03 .wrap-flex .col {
  width: calc(33.3333333333% - 13.3333333333px);
  min-height: 200px;
  position: relative;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-03 .wrap-flex .col {
    width: 100%;
  }
}
.sec-03 .wrap-flex .wrap-img {
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-03 .wrap-flex .wrap-img {
    margin-bottom: 20px;
  }
}
.sec-03 .wrap-flex .wrap-img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 1.6/1;
  border-radius: 6px;
}
.sec-03 .wrap-flex h3 {
  font-size: clamp(18px, 1.4vw, 30px);
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-03 .wrap-flex h3 {
    margin-bottom: 20px;
  }
}
.sec-03 .wrap-flex .desc p {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
}
.sec-03 .wrap-flex.shutter .col {
  width: calc(50% - 10px);
  min-height: 200px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-03 .wrap-flex.shutter .col {
    width: 100%;
  }
}

.sec-cta-1 {
  background-color: #fffba8;
  overflow: hidden;
}
.sec-cta-1.shutter .feat {
  background-color: #0071b8 !important;
}
.sec-cta-1 .wrap-txts {
  max-width: 800px;
  padding: 50px 20px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-cta-1 .wrap-txts {
    max-width: 600px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-1 .wrap-txts {
    padding: 30px 10px;
  }
}
.sec-cta-1 .wrap-txts .txt-1 {
  font-size: clamp(18px, 1.4vw, 30px);
  margin: 0 auto 30px;
  display: block;
  transform: skew(-7deg);
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-1 .wrap-txts .txt-1 {
    text-align: left;
    line-height: 1.4;
  }
}
.sec-cta-1 .wrap-txts .feats {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-1 .wrap-txts .feats {
    gap: 5px;
    margin-bottom: 20px;
  }
}
.sec-cta-1 .wrap-txts .feats .feat {
  display: block;
  background-color: #028e45;
  color: #fff;
  padding: 8px 20px;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: bold;
  border-radius: 100px;
}
@media screen and (max-width: 1024px) {
  .sec-cta-1 .wrap-txts .feats .feat {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-1 .wrap-txts .feats .feat {
    font-size: 12px;
  }
}
.sec-cta-1 .wrap-txts .txt-2 {
  display: block;
  margin: 0 auto 15px;
  font-size: clamp(14px, .8vw, 14px);
}
.sec-cta-1 .wrap-txts .wrap-tel {
  display: block;
  max-width: 80%;
  margin: 0 auto 20px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-1 .wrap-txts .wrap-tel {
    max-width: 90%;
    margin-bottom: 10px;
  }
}
.sec-cta-1 .wrap-txts .img-tel {
  display: block;
}
.sec-cta-1 .wrap-txts .txt-3 {
  display: block;
  margin: 0 auto 15px;
  font-size: clamp(14px, 1vw, 16px);
}
.sec-cta-1 .wrap-txts .img-fukidashi {
  display: block;
  max-width: 100px;
  height: auto;
  position: absolute;
  top: 20%;
  left: -5%;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-1 .wrap-txts .img-fukidashi {
    display: none;
  }
}
.sec-cta-1 .wrap-txts .img-yanagawa {
  display: block;
  width: 10vw;
  max-width: 180px;
  height: auto;
  position: absolute;
  top: 20%;
  right: -18%;
}
@media screen and (max-width: 1024px) {
  .sec-cta-1 .wrap-txts .img-yanagawa {
    right: -8%;
    width: 12vw;
  }
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-cta-1 .wrap-txts .img-yanagawa {
    width: 120px;
    right: -60px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-1 .wrap-txts .img-yanagawa {
    display: none;
  }
}

.sec-04 {
  padding-bottom: 80px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-04 {
    padding-bottom: 50px;
  }
}
.sec-04 .wrap-flex {
  display: flex;
  gap: 50px 20px;
  flex-wrap: wrap;
  padding: 30px 0;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-04 .wrap-flex {
    gap: 30px 10px;
    padding: 0 0 40px;
  }
}
.sec-04 .wrap-flex .col {
  width: calc(33.3333333333% - 13.3333333333px);
  min-height: 200px;
  position: relative;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-04 .wrap-flex .col {
    width: calc(100% - 5px);
    min-height: auto;
  }
}
.sec-04 .wrap-flex .col a {
  color: #111;
}
@media (hover: hover) {
  .sec-04 .wrap-flex .col a:hover img {
    transform: scale(1.12);
  }
}
.sec-04 .wrap-flex .wrap-img {
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-04 .wrap-flex .wrap-img {
    margin-bottom: 10px;
    border-radius: 4px;
  }
}
.sec-04 .wrap-flex .wrap-img img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 1.6/1;
  transition: 0.4s;
}
.sec-04 .wrap-flex h3 {
  font-size: clamp(15px, 1.2vw, 20px);
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-04 .wrap-flex h3 {
    font-size: 12px;
    margin: 0;
    font-weight: normal;
    line-height: 1.4;
  }
}

.bt-blue {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: block;
  padding: 25px 60px;
  text-align: center;
  background: #0071b8;
  border-radius: 6px;
  color: #fff;
  white-space: nowrap;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: bold;
  box-shadow: 1px 1px 2px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
}
.bt-blue .txt {
  display: block;
  white-space: nowrap;
}
.bt-blue .arrow {
  max-width: 20px;
}

.title-h3 {
  font-size: clamp(24px, 1.8vw, 40px);
  text-align: center;
  transform: skewX(-7deg);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
  padding-bottom: 10px;
  border-bottom: solid 2px #111;
}

.sec-05 {
  background-color: #d4e8da;
  padding: 80px 0;
}
.sec-05.shutter {
  background-color: #d2e3f1;
}
.sec-05.shutter .qa {
  border: solid 3px #0071b8 !important;
}
.sec-05.shutter .q::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31 31'><g><circle fill='%230071b8' cx='15.5' cy='15.5' r='15.5'/><path fill='%23fff' d='M15.05,22.43c-1.14,0-2.16-.27-3.05-.81s-1.59-1.3-2.1-2.29c-.5-.99-.76-2.15-.76-3.48s.25-2.51.76-3.5c.5-.99,1.2-1.76,2.1-2.3s1.91-.82,3.05-.82,2.15.27,3.03.82,1.58,1.31,2.09,2.3.77,2.16.77,3.5c0,.65-.06,1.26-.19,1.83s-.31,1.1-.55,1.58l1.93,1.48-1.33,1.69-1.85-1.44c-.5.47-1.08.83-1.74,1.08-.65.25-1.37.38-2.15.38ZM15.05,20.42c.42,0,.82-.07,1.19-.21.37-.14.7-.33.99-.57l-1.69-1.33,1.28-1.64,1.6,1.24c.11-.3.19-.62.25-.97s.09-.71.09-1.1c0-.92-.15-1.73-.46-2.42-.31-.69-.73-1.22-1.29-1.6-.55-.38-1.21-.57-1.96-.57s-1.4.19-1.96.57c-.56.38-1,.91-1.3,1.6-.31.69-.46,1.5-.46,2.42s.15,1.71.46,2.4c.31.69.74,1.22,1.3,1.6.56.38,1.22.57,1.96.57Z'/></g></svg>") !important;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 {
    padding: 50px 0;
  }
}
.sec-05 .qa {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  border: solid 3px #028e45;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 .qa {
    padding: 10px;
  }
}
.sec-05 .qa .q {
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: bold;
  padding: 20px 10px 20px 50px;
  border-top: solid 1px #ddd;
  cursor: pointer;
  position: relative;
  transition: 0.2s;
}
@media screen and (max-width: 1024px) {
  .sec-05 .qa .q {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 .qa .q {
    font-size: 14px;
    padding: 15px 30px 15px 40px;
    line-height: 1.2;
  }
}
.sec-05 .qa .q:first-child {
  border-top: none;
}
.sec-05 .qa .q::after {
  content: "";
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31 31'><g><circle fill='%23008e45' cx='15.5' cy='15.5' r='15.5'/><path fill='%23fff' d='M15.05,22.43c-1.14,0-2.16-.27-3.05-.81s-1.59-1.3-2.1-2.29c-.5-.99-.76-2.15-.76-3.48s.25-2.51.76-3.5c.5-.99,1.2-1.76,2.1-2.3s1.91-.82,3.05-.82,2.15.27,3.03.82,1.58,1.31,2.09,2.3.77,2.16.77,3.5c0,.65-.06,1.26-.19,1.83s-.31,1.1-.55,1.58l1.93,1.48-1.33,1.69-1.85-1.44c-.5.47-1.08.83-1.74,1.08-.65.25-1.37.38-2.15.38ZM15.05,20.42c.42,0,.82-.07,1.19-.21.37-.14.7-.33.99-.57l-1.69-1.33,1.28-1.64,1.6,1.24c.11-.3.19-.62.25-.97s.09-.71.09-1.1c0-.92-.15-1.73-.46-2.42-.31-.69-.73-1.22-1.29-1.6-.55-.38-1.21-.57-1.96-.57s-1.4.19-1.96.57c-.56.38-1,.91-1.3,1.6-.31.69-.46,1.5-.46,2.42s.15,1.71.46,2.4c.31.69.74,1.22,1.3,1.6.56.38,1.22.57,1.96.57Z'/></g></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 15px;
  left: 10px;
  width: 100%;
  max-width: 30px;
  height: 30px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 .qa .q::after {
    left: 5px;
    max-width: 25px;
  }
}
.sec-05 .qa .q .arrow {
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 1.5px #333;
  border-right: solid 1.5px #333;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  transform: rotate(135deg);
  transition: 0.2s;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 .qa .q .arrow {
    width: 7px;
    height: 7px;
    top: calc(50% - 3.5px);
    right: 10px;
  }
}
.sec-05 .qa .q:hover {
  background-color: #f5f5f5;
}
.sec-05 .qa .q.on {
  background-color: #f5f5f5;
}
.sec-05 .qa .q.on .arrow {
  transform: rotate(-45deg);
}
.sec-05 .qa .a {
  font-size: clamp(14px, 1vw, 16px);
  padding: 10px 10px 30px 50px;
  line-height: 1.6;
  position: relative;
  display: none;
}
@media screen and (max-width: 1024px) {
  .sec-05 .qa .a {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 .qa .a {
    font-size: 14px;
    padding: 15px 0px 15px 40px;
    line-height: 1.2;
  }
}
.sec-05 .qa .a.on {
  display: block;
}
.sec-05 .qa .a::after {
  content: url(../images/door-nagoya/icon-a.svg);
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  max-width: 30px;
  height: auto;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-05 .qa .a::after {
    top: 20px;
    left: 5px;
    max-width: 25px;
  }
}
.sec-05 .qa .a p {
  line-height: 1.6;
}

.table-style-01 {
  max-width: 900px;
  margin: 0 auto;
}
.table-style-01 table {
  background-color: #eee;
  border-spacing: 1px;
  width: 100%;
}
.table-style-01 th {
  background-color: #028e45;
  color: #fff;
  text-align: left;
  padding: 20px;
  font-size: clamp(14px, .8vw, 14px);
  font-weight: normal;
  white-space: nowrap;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .table-style-01 th {
    display: block;
    padding: 10px 20px;
    background-color: #d4e8da;
    color: #111;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .table-style-01 th.title {
    background-color: #028e45;
    color: #fff;
  }
}
.table-style-01 td {
  background-color: #fff;
  text-align: left;
  padding: 20px;
  font-size: clamp(14px, .9vw, 15px);
  line-height: 1.6;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .table-style-01 td {
    display: block;
  }
}
.table-style-01.shutter th {
  background-color: #0071b8;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .table-style-01.shutter th {
    background-color: #d2e3f1;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .table-style-01.shutter th.title {
    background-color: #0071b8;
  }
}
@media screen and (max-width: 600px) {
  .table-style-01 .address .font-s {
    display: block;
    margin: 10px 0 20px;
    color: #666;
  }
}
@media screen and (max-width: 600px) {
  .table-style-01 .address .wpcf7-form-control-wrap {
    margin-top: 10px;
    display: block;
  }
}

.sec-06 {
  padding: 80px 0;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-06 {
    padding: 50px 0;
  }
}
.sec-06 .wrap-img {
  max-width: 900px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-06 .wrap-img {
    margin: 0 auto 30px;
  }
}

.sec-cta-2 {
  background-image: url("../images/door-nagoya/bg-sec-01b-2000.avif");
  background-size: cover;
  background-position: top center;
  padding-bottom: 150px;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-cta-2 {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-2 {
    overflow: hidden;
    background-image: url("../images/door-nagoya/bg-sec-01b-sp.avif");
  }
}
.sec-cta-2.shutter {
  background-image: url("../images/shutter-nagoya/bg-sec-01b-2000.avif");
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-2.shutter {
    background-image: url("../images/shutter-nagoya/bg-sec-01b-sp.avif");
  }
}
.sec-cta-2 .block-2 {
  position: relative;
}
.sec-cta-2 .block-2 h3 {
  font-size: clamp(26px, 4vw, 80px);
  color: #eddf21;
  line-height: 1.2;
  transform: skew(-7deg);
  text-shadow: 1px 1px 1px #333;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 30px 0;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-cta-2 .block-2 h3 {
    font-size: 50px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-2 .block-2 h3 {
    font-size: 34px;
  }
}
.sec-cta-2 .block-2 .wrap-txts {
  max-width: 800px;
  text-align: center;
  z-index: 2;
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 50px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-cta-2 .block-2 .wrap-txts {
    max-width: 600px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-2 .block-2 .wrap-txts {
    padding: 30px 10px;
    max-width: 90%;
  }
}
.sec-cta-2 .block-2 .wrap-txts .txt-1 {
  font-size: clamp(24px, 2.2vw, 80px);
  margin: 0 auto 30px;
  display: block;
  transform: skew(-7deg);
  width: -moz-fit-content;
  width: fit-content;
}
.sec-cta-2 .block-2 .wrap-txts .feats {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-2 .block-2 .wrap-txts .feats {
    gap: 5px;
    margin-bottom: 20px;
  }
}
.sec-cta-2 .block-2 .wrap-txts .feats .feat {
  display: block;
  border: solid 1px #111;
  padding: 5px 20px;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: bold;
  border-radius: 100px;
}
@media screen and (max-width: 1024px) {
  .sec-cta-2 .block-2 .wrap-txts .feats .feat {
    font-size: 18px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-2 .block-2 .wrap-txts .feats .feat {
    font-size: 12px;
  }
}
.sec-cta-2 .block-2 .wrap-txts .txt-2 {
  display: block;
  margin: 0 auto 15px;
  font-size: clamp(14px, .8vw, 14px);
}
.sec-cta-2 .block-2 .wrap-txts .wrap-tel {
  display: block;
  max-width: 80%;
  margin: 0 auto 20px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-2 .block-2 .wrap-txts .wrap-tel {
    max-width: 90%;
    margin-bottom: 10px;
  }
}
.sec-cta-2 .block-2 .wrap-txts .img-tel {
  display: block;
}
.sec-cta-2 .block-2 .wrap-txts .txt-3 {
  display: block;
  margin: 0 auto 15px;
  font-size: clamp(14px, 1vw, 16px);
}
.sec-cta-2 .block-2 .wrap-txts .img-fukidashi {
  display: block;
  max-width: 100px;
  height: auto;
  position: absolute;
  top: 10%;
  left: 5%;
}
@media screen and (max-width: 834px) {
  .sec-cta-2 .block-2 .wrap-txts .img-fukidashi {
    left: -20px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-cta-2 .block-2 .wrap-txts .img-fukidashi {
    display: none;
  }
}
.sec-cta-2 .block-2 .bg {
  width: 100%;
  height: auto;
  z-index: -1;
  position: relative;
}

.sec-pr {
  padding: 80px 0;
  background-color: #d2e3f1;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-pr {
    padding: 50px 0;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-pr .title-h3 {
    font-size: 24px;
    text-align: left;
    line-height: 1.2;
  }
}
.sec-pr .wrap-flex {
  background-color: #fff;
  border-radius: 10px;
  border: solid 3px #0071b8;
  padding: 50px;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .sec-pr .wrap-flex {
    flex-direction: column;
    max-width: 600px;
    gap: 30px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-pr .wrap-flex {
    padding: 20px;
  }
}
.sec-pr .wrap-flex .col-img {
  width: 40%;
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 834px) {
  .sec-pr .wrap-flex .col-img {
    width: 100%;
    gap: 10px;
    justify-content: center;
  }
}
.sec-pr .wrap-flex .col-img img {
  width: 50%;
  display: block;
}
@media screen and (max-width: 834px) {
  .sec-pr .wrap-flex .col-img img {
    width: 40%;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-pr .wrap-flex .col-img img {
    width: calc(50% - 5px);
  }
}
.sec-pr .wrap-flex .col-txt {
  width: 60%;
}
@media screen and (max-width: 834px) {
  .sec-pr .wrap-flex .col-txt {
    width: 100%;
  }
}
.sec-pr .wrap-flex .col-txt p {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  margin-bottom: 30px;
}
.sec-pr .wrap-flex .col-txt .bt-blue {
  margin: 0;
  display: block;
  padding: 25px 60px;
  text-align: center;
  background: #0071b8;
  border-radius: 6px;
  color: #fff;
  white-space: nowrap;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: bold;
  box-shadow: 1px 1px 2px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  .sec-pr .wrap-flex .col-txt .bt-blue {
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-pr .wrap-flex .col-txt .bt-blue {
    width: 100%;
    padding: 20px;
    font-size: 14px;
  }
}
.sec-pr .wrap-flex .col-txt .bt-blue .txt {
  display: block;
  white-space: nowrap;
}
.sec-pr .wrap-flex .col-txt .bt-blue .window {
  max-width: 14px;
}
.sec-pr.shutter {
  background-color: #d4e8da;
}
.sec-pr.shutter .wrap-flex {
  border: solid 3px #028e45;
}
.sec-pr.shutter .wrap-flex .bt-blue {
  background: #028e45;
}

footer {
  background-color: #f5f5f5;
  padding: 50px;
}
@media screen and (max-width: 1024px) and (orientation: portrait) {
  footer {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  footer {
    padding: 0 0 100px;
  }
  footer .inner {
    padding: 0;
  }
}
footer .wrap-flex {
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  footer .wrap-flex {
    align-items: flex-start;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  footer .wrap-flex {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  footer .col-1 {
    width: 40%;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  footer .col-1 {
    padding: 0 20px;
    width: 100%;
    order: 2;
  }
}
footer .col-1 span {
  display: block;
}
footer .col-1 span.txt-1 {
  font-size: clamp(11px, .7vw, 12px);
  margin-bottom: 10px;
}
footer .col-1 span.txt-2 {
  font-size: clamp(18px, 2.4vw, 24px);
  margin-bottom: 20px;
  font-weight: bold;
}
footer .col-1 span.bold {
  margin-bottom: 10px;
  margin-left: -5px;
  font-size: clamp(14px, .8vw, 14px);
}
footer .col-1 .address {
  font-size: 13px;
  font-size: clamp(12px, .8vw, 13px);
  color: #111;
  position: relative;
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
footer .col-1 .address::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.05 24'><path d='M10.14,23.46c2.41-3.02,7.91-10.33,7.91-14.44C18.05,4.04,14,0,9.02,0S0,4.04,0,9.02c0,4.11,5.5,11.42,7.91,14.44.58.72,1.65.72,2.23,0h0ZM9.02,12.03c-1.66,0-3.01-1.35-3.01-3.01s1.35-3.01,3.01-3.01,3.01,1.35,3.01,3.01-1.35,3.01-3.01,3.01Z'/></svg>");
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18.05 24'><path d='M10.14,23.46c2.41-3.02,7.91-10.33,7.91-14.44C18.05,4.04,14,0,9.02,0S0,4.04,0,9.02c0,4.11,5.5,11.42,7.91,14.44.58.72,1.65.72,2.23,0h0ZM9.02,12.03c-1.66,0-3.01-1.35-3.01-3.01s1.35-3.01,3.01-3.01,3.01,1.35,3.01,3.01-1.35,3.01-3.01,3.01Z'/></svg>");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #111;
  display: block;
  width: 12px;
  height: 12px;
}
footer .col-1 .tel {
  font-size: clamp(15px, 1.2vw, 20px);
  width: -moz-fit-content;
  width: fit-content;
  color: #111;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 5px;
  margin-bottom: 20px;
}
footer .col-1 .tel::before {
  content: "";
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 19.37'><path d='M11.57,12.92c-.39-.64-1.19-.8-1.72-.33-.36.31-1.15,1-1.5,1.51-.16.24-.42.36-.64.52-1.46,1.03-5.83-6.2-4.37-7.23.23-.16.43-.36.7-.43.57-.14,1.47-.65,1.88-.88.61-.34.8-1.2.41-1.84L4.21.73C3.81.08,2.98-.07,2.45.43,1.64,1.19.7,2.29.43,2.78c-.16.28-.27.6-.32.93-.19,1.3-.49,4.72,2.36,9.44,2.85,4.72,5.87,5.8,7.04,6.13.3.09.61.11.92.06.52-.08,1.83-.56,2.79-1.06.64-.33.85-1.21.45-1.86l-2.11-3.5Z'/><path d='M16.76,4.21c-.66-1.16-1.52-2.1-2.51-2.8C13.26.7,12.14.23,10.97,0c-.28-.05-.54.15-.59.45s.14.59.41.64c1.04.2,2.02.61,2.89,1.23.87.62,1.63,1.44,2.2,2.46.74,1.3,1.09,2.73,1.09,4.17,0,.82-.11,1.63-.33,2.42-.08.29.07.6.34.69.27.09.55-.08.64-.37.25-.89.38-1.81.38-2.74,0-1.63-.4-3.28-1.24-4.75Z'/><path d='M12.88,3.5c-.74-.51-1.56-.85-2.43-1-.15-.03-.29.02-.4.11-.15.07-.27.23-.3.42-.04.3.15.58.42.63.73.13,1.42.41,2.03.84.61.43,1.14,1,1.55,1.71.51.89.75,1.87.75,2.86,0,.59-.09,1.18-.25,1.75-.09.29.06.6.33.69.17.06.35.02.48-.1.12-.06.23-.18.27-.33.2-.67.3-1.38.3-2.08,0-1.18-.29-2.37-.9-3.44-.49-.85-1.13-1.54-1.86-2.06Z'/><path d='M9.63,6.04c.44.06.86.22,1.23.47.37.25.69.59.93,1.01.07.13.14.26.19.39.16.4.24.83.24,1.25,0,.27-.03.53-.09.79-.02.11-.05.22-.09.32-.02.07-.03.15-.03.22,0,.14.07.28.16.38.04.04.08.06.12.09.02,0,.03.02.05.03.2.08.41.01.55-.15.02-.03.04-.06.06-.09s.03-.07.04-.1c.02-.06.04-.12.06-.18s.03-.12.05-.18c.06-.24.1-.49.12-.75,0-.06,0-.13.01-.19,0-.06,0-.13,0-.19,0-.29-.03-.57-.08-.86-.02-.09-.04-.19-.06-.28-.05-.19-.11-.37-.18-.55-.07-.18-.16-.36-.26-.53-.33-.57-.76-1.04-1.26-1.37-.5-.34-1.06-.55-1.65-.63-.28-.04-.53.18-.57.48s.16.58.44.62Z'/></svg>");
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 19.37'><path d='M11.57,12.92c-.39-.64-1.19-.8-1.72-.33-.36.31-1.15,1-1.5,1.51-.16.24-.42.36-.64.52-1.46,1.03-5.83-6.2-4.37-7.23.23-.16.43-.36.7-.43.57-.14,1.47-.65,1.88-.88.61-.34.8-1.2.41-1.84L4.21.73C3.81.08,2.98-.07,2.45.43,1.64,1.19.7,2.29.43,2.78c-.16.28-.27.6-.32.93-.19,1.3-.49,4.72,2.36,9.44,2.85,4.72,5.87,5.8,7.04,6.13.3.09.61.11.92.06.52-.08,1.83-.56,2.79-1.06.64-.33.85-1.21.45-1.86l-2.11-3.5Z'/><path d='M16.76,4.21c-.66-1.16-1.52-2.1-2.51-2.8C13.26.7,12.14.23,10.97,0c-.28-.05-.54.15-.59.45s.14.59.41.64c1.04.2,2.02.61,2.89,1.23.87.62,1.63,1.44,2.2,2.46.74,1.3,1.09,2.73,1.09,4.17,0,.82-.11,1.63-.33,2.42-.08.29.07.6.34.69.27.09.55-.08.64-.37.25-.89.38-1.81.38-2.74,0-1.63-.4-3.28-1.24-4.75Z'/><path d='M12.88,3.5c-.74-.51-1.56-.85-2.43-1-.15-.03-.29.02-.4.11-.15.07-.27.23-.3.42-.04.3.15.58.42.63.73.13,1.42.41,2.03.84.61.43,1.14,1,1.55,1.71.51.89.75,1.87.75,2.86,0,.59-.09,1.18-.25,1.75-.09.29.06.6.33.69.17.06.35.02.48-.1.12-.06.23-.18.27-.33.2-.67.3-1.38.3-2.08,0-1.18-.29-2.37-.9-3.44-.49-.85-1.13-1.54-1.86-2.06Z'/><path d='M9.63,6.04c.44.06.86.22,1.23.47.37.25.69.59.93,1.01.07.13.14.26.19.39.16.4.24.83.24,1.25,0,.27-.03.53-.09.79-.02.11-.05.22-.09.32-.02.07-.03.15-.03.22,0,.14.07.28.16.38.04.04.08.06.12.09.02,0,.03.02.05.03.2.08.41.01.55-.15.02-.03.04-.06.06-.09s.03-.07.04-.1c.02-.06.04-.12.06-.18s.03-.12.05-.18c.06-.24.1-.49.12-.75,0-.06,0-.13.01-.19,0-.06,0-.13,0-.19,0-.29-.03-.57-.08-.86-.02-.09-.04-.19-.06-.28-.05-.19-.11-.37-.18-.55-.07-.18-.16-.36-.26-.53-.33-.57-.76-1.04-1.26-1.37-.5-.34-1.06-.55-1.65-.63-.28-.04-.53.18-.57.48s.16.58.44.62Z'/></svg>");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #111;
  display: block;
  width: 12px;
  height: 12px;
}
footer .col-1 .wrap-sns {
  display: flex;
  gap: 7px;
}
footer .col-1 .wrap-sns a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
footer .col-1 .wrap-sns img {
  display: block;
  width: auto;
  height: 35px;
}
@media screen and (max-width: 1024px) {
  footer .col-2 {
    width: 60%;
    padding-top: 3%;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  footer .col-2 {
    width: 100%;
    order: 1;
    padding-top: 0px;
  }
}
footer .col-2 ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  footer .col-2 ul {
    gap: 1px;
    flex-direction: row;
  }
}
footer .col-2 ul li {
  text-align: right;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  footer .col-2 ul li {
    width: calc(50% - 1px);
    text-align: left;
  }
}
footer .col-2 ul li:last-child {
  width: 100%;
}
footer .col-2 ul a {
  color: #111;
  font-size: clamp(14px, .9vw, 15px);
}
@media screen and (max-width: 1024px) {
  footer .col-2 ul a {
    font-size: 13px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  footer .col-2 ul a {
    background-color: #fff;
    display: block;
    padding: 15px;
  }
}
footer .copyright {
  font-size: clamp(11px, .7vw, 12px);
  letter-spacing: 2px;
  display: block;
  text-align: center;
  margin-top: 30px;
}

#back-top {
  display: block;
  width: 45px;
  height: 45px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  transition: 0.4s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  #back-top {
    width: 30px;
    height: 30px;
    bottom: 80px;
  }
}
#back-top.on {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

#bt-nav {
  display: none;
}
@media screen and (max-width: 600px) {
  #bt-nav {
    display: block;
    position: fixed;
    top: 20px;
    right: 10px;
    background-color: #fff;
    padding: 8px;
    cursor: pointer;
    z-index: 1000;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 2px #999;
  }
  #bt-nav span {
    position: absolute;
    width: 26px;
    display: block;
    border-top: solid 1.5px #000;
    transition: all 0.4s ease;
  }
  #bt-nav .item-01 {
    top: 10px;
    left: 7px;
  }
  #bt-nav .item-02 {
    top: 18px;
    left: 7px;
  }
  #bt-nav .item-03 {
    top: 26px;
    left: 7px;
  }
  #bt-nav.on .item-01 {
    transform: rotate(-36deg);
    transform-origin: right;
    left: 5px;
  }
  #bt-nav.on .item-02 {
    width: 0;
  }
  #bt-nav.on .item-03 {
    transform: rotate(36deg);
    transform-origin: right;
    left: 5px;
  }
}

.gnav {
  display: none;
}
@media screen and (max-width: 600px) {
  .gnav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 55%;
    background-color: #fff;
    padding: 80px 20px 40px;
    border-radius: 0 0 0 20px;
    transition: 0.4s;
    opacity: 0;
    transform: translateX(56%);
    box-shadow: 0px 1px 3px #999;
    visibility: hidden;
    z-index: 999;
  }
  .gnav.on {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
  .gnav a {
    display: block;
    color: #111;
    margin-bottom: 20px;
    font-size: clamp(14px, .8vw, 14px);
    line-height: 1.4;
  }
}
.gnav .wrap-sns {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-top: 10px;
}
.gnav .wrap-sns a {
  display: block;
}
.gnav .wrap-sns img {
  display: block;
  width: auto;
  height: 30px;
}

.sec-contact {
  padding: 150px 0 50px;
}
@media screen and (max-width: 600px) {
  .sec-contact {
    padding-top: 120px;
  }
}
.sec-contact .inner {
  max-width: 900px;
  min-height: 500px;
}
.sec-contact .desc {
  margin: 0 auto 2em;
}
.sec-contact .desc p {
  line-height: 1.6;
}
.sec-contact .desc .notice {
  border: solid 3px red;
  padding: 20px;
  margin-top: 20px;
}
.sec-contact .table-style-01 th {
  font-size: clamp(14px, 1vw, 16px);
}
.sec-contact .table-style-01 td {
  font-size: clamp(14px, 1vw, 16px);
}
.sec-contact .table-style-01 .required {
  background-color: #e91c24;
  color: #fff;
  display: inline-block;
  padding: 4px 6px;
  font-size: 12px;
  margin-left: 5px;
  border-radius: 3px;
}
.sec-contact .table-style-01 th {
  width: 30%;
  white-space: nowrap;
  padding: 30px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-contact .table-style-01 th {
    display: block;
    width: 100%;
    padding: 10px;
  }
}
.sec-contact .table-style-01 th p {
  font-size: clamp(14px, 1vw, 16px);
  margin-bottom: 10px;
}
.sec-contact .table-style-01 th p:last-child {
  margin-bottom: 0;
}
.sec-contact .table-style-01 td {
  padding: 30px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-contact .table-style-01 td {
    display: block;
    width: 100%;
    padding: 20px 10px;
  }
}
.sec-contact .table-style-01 td .wpcf7-list-item {
  line-height: 1.6;
  display: block;
}
.sec-contact .table-style-01 td .wpcf7-list-item-label {
  margin-left: 5px;
}
.sec-contact .table-style-01 td .item {
  margin-bottom: 10px;
}
.sec-contact .table-style-01 td p {
  font-size: clamp(14px, 1vw, 16px);
  margin-bottom: 10px;
}
.sec-contact .table-style-01 td p:last-child {
  margin-bottom: 0;
}
.sec-contact .table-style-01 td .note {
  display: block;
  font-size: clamp(14px, .8vw, 14px);
  color: #666;
  margin-top: 10px;
}
.sec-contact .table-style-01 input[type=text],
.sec-contact .table-style-01 input[type=email] {
  height: 40px;
  border: solid 1px #ccc;
  padding: 10px;
  font-size: 16px;
  border-radius: 3px;
}
.sec-contact .table-style-01 textarea {
  border: solid 1px #ccc;
  width: 100%;
  height: 200px;
  padding: 10px;
  font-size: 16px;
  border-radius: 3px;
}
.sec-contact .table-style-01 .txt-l {
  width: 100%;
}
.sec-contact .table-style-01 .txt-m {
  width: 70%;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-contact .table-style-01 .txt-m {
    width: 100%;
  }
}
.sec-contact .table-style-01 .wrap-txts {
  display: flex;
  gap: 10px;
}
.sec-contact .table-style-01 .wrap-txts div {
  width: 50%;
}
.sec-contact .table-style-01 .wrap-txts input {
  width: 100%;
}
.sec-contact .table-style-01 .txt-s {
  width: 150px;
}
.sec-contact .table-style-01 select {
  border: solid 1px #ddd;
  padding: 10px;
  font-size: 16px;
  border-radius: 3px;
}
.sec-contact .table-style-01 .wpcf7-not-valid-tip {
  background-color: #e91c24;
  color: #fff;
  padding: 4px 10px;
  font-size: clamp(14px, .8vw, 14px);
  margin-top: 10px;
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .sec-contact .table-style-01 .wpcf7-not-valid-tip {
    font-size: 10px;
  }
}
.sec-contact .wrap-bt {
  text-align: center;
  margin: 30px auto 0;
  background-color: #fffba8;
  padding: 20px;
}
.sec-contact .wrap-bt .wpcf7-form-control {
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  letter-spacing: 2px;
  padding: 30px;
}
.sec-contact .wrap-bt .wpcf7-form-control:hover {
  opacity: 0.8;
}
.sec-contact .wrap-bt .wpcf7c-btn-back {
  width: 150px;
}

.visible {
  opacity: 1;
  transition: opacity 0.6s;
}

.invisible {
  opacity: 0;
}

.fromTopIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.fromTopOut {
  transform: translate(0, -20px);
  opacity: 0;
}

.fromBottomIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.fromBottomOut {
  transform: translate(0, 20px);
  opacity: 0;
}

.fromLeftIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.fromLeftOut {
  transform: translate(-20px, 0);
  opacity: 0;
}

.fromRightIn {
  transform: translate(0, 0);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.fromRightOut {
  transform: translate(20px, 0);
  opacity: 0;
}

.scaleUpIn {
  transform: scale(1, 1);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.scaleUpOut {
  transform: scale(1.2, 1.2);
  opacity: 0;
}

.scaleDownIn {
  transform: scale(1, 1);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.scaleDownOut {
  transform: scale(0.7, 0.7);
  opacity: 0;
}

.rotateIn {
  transform: rotate(0deg) scale(1);
  opacity: 1;
  transition: opacity 0.6s, transform 0.6s;
}

.rotateOut {
  transform: rotate(30deg) scale(0.9);
  opacity: 0;
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.delay5 {
  transition-delay: 0.5s;
}

.delay6 {
  transition-delay: 0.4s;
}

.delay7 {
  transition-delay: 0.7s;
}

.delay8 {
  transition-delay: 0.8s;
}

.delay9 {
  transition-delay: 0.9s;
}

.delay10 {
  transition-delay: 1s;
}

.speed1 {
  transition-duration: 0.1s;
}

.speed2 {
  transition-duration: 0.2s;
}

.speed3 {
  transition-duration: 0.3s;
}

.speed4 {
  transition-duration: 0.4s;
}

.speed5 {
  transition-duration: 0.5s;
}

.speed6 {
  transition-duration: 0.6s;
}

.speed7 {
  transition-duration: 0.7s;
}

.speed8 {
  transition-duration: 0.8s;
}

.speed9 {
  transition-duration: 0.9s;
}

.speed10 {
  transition-duration: 1s;
}

.wrap-sns-hd {
  position: absolute;
  top: 20%;
  right: 0;
  width: 50px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  background-color: #fff;
  display: flex;
  z-index: 9999;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  .wrap-sns-hd {
    display: none;
  }
}
.wrap-sns-hd a {
  display: block;
}
.wrap-sns-hd img {
  display: block;
  width: auto;
  height: 30px;
}/*# sourceMappingURL=lp-nagoya.css.map */