@charset "UTF-8";
@-ms-viewport {
  width: device-width;
}
/*--------------------------------------------------------------------------
CSS　カスタム設定(style.css)ver.1 2022.10.05
--------------------------------------------------------------------------*/
/*■■■■■■ 基本設定 ■■■■■■■*/
/*■■■■■■ loading ■■■■■■■*/
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  top: 0;
  left: 0;
  z-index: 9999;
}
#loading img {
  margin: auto;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-box {
  margin: auto;
  width: 200px;
  text-align: center;
}

.flashing {
  padding: 15px;
}
.flashing img {
  width: 64px;
  height: auto;
}

.animation-box {
  width: 100%;
  height: 1px;
  background: #CCC;
  -webkit-animation-name: loadbar-animation;
          animation-name: loadbar-animation;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes loadbar-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes loadbar-animation {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/*■■■■■■ fadein ■■■■■■■*/
.fade-in {
  opacity: 0;
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}

.fade-in-up {
  -webkit-transform: translate(0, 60px);
      -ms-transform: translate(0, 60px);
          transform: translate(0, 60px);
}

.fade-in-down {
  -webkit-transform: translate(0, -60px);
      -ms-transform: translate(0, -60px);
          transform: translate(0, -60px);
}

.fade-in-left {
  -webkit-transform: translate(-60px, 0);
      -ms-transform: translate(-60px, 0);
          transform: translate(-60px, 0);
}

.fade-in-right {
  -webkit-transform: translate(60px, 0);
      -ms-transform: translate(60px, 0);
          transform: translate(60px, 0);
}

.scroll-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*■■■■■■ 主要タグ設定 ■■■■■■■*/
a:link {
  color: #800000;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:visited {
  color: #666666;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

a:hover, a:active {
  color: #a51c1c;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*■■■■■■ 汎用設定 ■■■■■■■*/
.bg-main {
  background-color: #ff4d4d;
}

.bg-sub {
  background-color: #a51c1c;
}

.bg-dark {
  margin: auto auto 60px;
  background: rgba(0, 0, 0, 0.6);
}

.head-contents-block {
  padding-top: 120px;
}

/*■■■■■■ TOP ■■■■■■■*/
.slider-logo img {
  opacity: 0.6;
}

.top-bg-kunindo,
.top-bg-surga,
.top-bg-jo {
  position: relative;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
}
.top-bg-kunindo .bg-layer,
.top-bg-surga .bg-layer,
.top-bg-jo .bg-layer {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
.top-bg-kunindo.top-bg-kunindo .bg-layer.kunindo-bg,
.top-bg-surga.top-bg-kunindo .bg-layer.kunindo-bg,
.top-bg-jo.top-bg-kunindo .bg-layer.kunindo-bg {
  background-image: url(../images/bg-kunindo_2.jpg);
}
.top-bg-kunindo.top-bg-surga .bg-layer.surga-bg,
.top-bg-surga.top-bg-surga .bg-layer.surga-bg,
.top-bg-jo.top-bg-surga .bg-layer.surga-bg {
  background-image: url(../images/bg-surga_2.jpg);
}
.top-bg-kunindo.top-bg-jo .bg-layer.jo-bg,
.top-bg-surga.top-bg-jo .bg-layer.jo-bg,
.top-bg-jo.top-bg-jo .bg-layer.jo-bg {
  background-image: url(../images/bg-jo.jpg);
}

.top-contents-block {
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.6);
}

.top-flex-box {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  color: #FFF;
  gap: 30px;
}

.top-title {
  margin-bottom: 15px;
  font-size: 5.4rem;
  font-weight: 400;
  border-bottom: 1px solid #CCC;
  font-family: "Inter", sans-serif;
}
.top-title small {
  font-size: 1.4rem;
  font-weight: 400;
}

.top-btn-box {
  margin: 40px auto;
}
.top-btn-box a {
  padding: 0 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  color: #ccc;
  border: 1px solid #999;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 60px;
}
.top-btn-box a:hover {
  color: #fff;
  border: 1px solid #fff;
}
.top-btn-box a:hover::after {
  -webkit-animation: arrowMove 2s linear infinite;
          animation: arrowMove 2s linear infinite;
}
.top-btn-box a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-width: 0 1px 1px 0;
  border-color: #fff;
  border-style: solid;
  position: absolute;
  bottom: 23px;
  right: 20px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 1;
}
.top-btn-box a span {
  margin: 0 10px 0 0;
  padding: 0 15px 2px;
  display: inline-block;
  background-color: #FFF;
  color: #800000;
  font-weight: 600;
}

.top-btn-prof {
  margin: 6px 0;
}
.top-btn-prof a {
  padding: 0 0 0 20px;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.top-btn-prof a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.top-btn-prof a span {
  font-size: 1.3rem;
}
.top-btn-prof a:link,
.top-btn-prof a:visited {
  color: #CCC;
}
.top-btn-prof a:hover,
.top-btn-prof a:active {
  color: #FFF;
}
.top-btn-prof a:hover::after,
.top-btn-prof a:active::after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.top-btn-prof a::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/dot-sub-ti.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 7px;
}

@-webkit-keyframes arrowMove {
  0% {
    right: 40px;
    opacity: 0;
  }
  50% {
    right: 20px;
    opacity: 1;
  }
  70% {
    right: 20px;
    opacity: 1;
  }
  75% {
    right: 20px;
    opacity: 0;
  }
  75% {
    right: 20px;
    opacity: 0;
  }
  100% {
    right: 20px;
    opacity: 0;
  }
}

@keyframes arrowMove {
  0% {
    right: 40px;
    opacity: 0;
  }
  50% {
    right: 20px;
    opacity: 1;
  }
  70% {
    right: 20px;
    opacity: 1;
  }
  75% {
    right: 20px;
    opacity: 0;
  }
  75% {
    right: 20px;
    opacity: 0;
  }
  100% {
    right: 20px;
    opacity: 0;
  }
}
/*■■■■■■ ABOUT ■■■■■■■*/
.about-bg-jo:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../images/bg-jo.jpg) top center;
  background-size: cover;
  background-attachment: fixed;
}

.about-table {
  display: block;
  width: 100%;
}
.about-table tbody {
  display: block;
  width: 100%;
}
.about-table tr {
  display: block;
  width: 100%;
}
.about-table th {
  padding: 15px 0 0 26px;
  display: block;
  width: 100%;
  font-size: 2rem;
  text-align: left;
  position: relative;
}
.about-table th:before {
  content: "";
  display: block;
  background-color: #800000;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 22px;
}
.about-table td {
  padding: 3px 0 15px;
  display: block;
  width: 100%;
  color: #000;
  border-bottom: 1px solid #999;
}
.about-table td ul {
  margin: 0 0 0 2rem;
  list-style-type: disc;
}

.about-read {
  margin: 0 0 45px;
  color: #fff;
}

/*■■■■■■ 門一級建築士事務所　ブランド紹介 ■■■■■■■*/
.bg-jo-fcao:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../images/bg-jo-first-class-ao.jpg) center center;
  background-size: cover;
  background-attachment: fixed;
}

.brand-title strong {
  margin: 0 0 20px;
  font-size: 2.6rem;
  font-weight: 600;
  display: block;
  color: #800000;
}

.about-jo-title {
  margin: 20px 0 10px 0;
  font-size: 2.8rem;
  color: #FFF;
  font-weight: 600;
}

/*■■■■■■ PROFILE ■■■■■■■*/
.prof-bg-kunindo:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../images/bg-kunindo.jpg) top center;
  background-size: cover;
  background-attachment: fixed;
}

.prof-bg-surga:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../images/bg-surga.jpg) top center;
  background-size: cover;
  background-attachment: fixed;
}

.main-title {
  margin: 40px auto;
  padding: 6px 20px;
  color: #FFF;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid #FFF;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

/*■■■■■■ youtube 埋め込み ■■■■■■■*/
.youtube-box {
  margin: 0;
  padding: 65.25% 0 0 0;
  width: 100%;
  height: 0;
  position: relative;
}
.youtube-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*■■■■■■ CONTENTS MAIN ■■■■■■■*/
/*■■■■■■ Profile プロフィール ■■■■■■■*/
.prof-flex-box {
  margin: 0 auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  color: #FFF;
  gap: 30px;
}

.prof-img img {
  width: 240px;
  height: auto;
}

.prof-text-name {
  margin: 0 0 20px;
  font-size: 2.4rem;
}
.prof-text-name small {
  margin: 0 15px;
  font-size: 1.4rem;
}

.prof-sub-title {
  margin: 0 0 10px;
  padding: 0 0 0 32px;
  font-size: 2rem;
  color: #fff;
  position: relative;
}

.prof-sub-title:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../images/dot-sub-ti.png) center center no-repeat;
  background-size: cover;
  position: absolute;
  top: 7px;
  left: 7px;
}

.prof-result {
  margin: 0 auto 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
}
.prof-result p {
  font-size: 1.8rem;
}
.prof-result ul {
  padding-left: 1.6rem;
  list-style-type: disc;
}

.prof-table th {
  text-align: right;
}
.prof-table td {
  color: #000;
}

.prof-read {
  margin: 0 0 45px;
  color: #fff;
}

/*■■■■■■ FOOTER ■■■■■■■*/
/*■■■■■■■■■■■■■*/
/*■■■■■■■■■■■■■*/
/*===============================
■■　スマホ用　■■
===============================*/
/*------------(XS)------------*/
@media (min-width: 319px) and (max-width: 566px) {
  /*ヘッダーまでのマージン*/
  .head-contents-block {
    padding-top: 160px;
  }
  .bg-dark {
    padding: 0 15px;
  }
  /*■■■■■■ ABOUT(XS) ■■■■■■■*/
  .about-bg-jo:before {
    background: url(../images/bg-jo_sp.jpg) top center;
    background-size: cover;
  }
  /*Profile プロフィール(XS)*/
  .prof-bg-kunindo:before {
    background: url(../images/bg-kunindo_sp.jpg) top center;
    background-size: cover;
  }
  .prof-bg-surga:before {
    background: url(../images/bg-surga_sp.jpg) top center;
    background-size: cover;
  }
  .prof-flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .prof-table th {
    padding: 15px 0 0;
    display: block;
    width: 100%;
    text-align: left;
  }
  .prof-table td {
    padding: 0 0 15px;
    display: block;
    width: 100%;
    color: #000;
    border-bottom: 1px solid #999;
  }
  /*■■■■■■ TOP(XS) ■■■■■■■*/
  .top-contents-block {
    margin: 30px 0;
    padding: 30px 0 0;
  }
  .top-bg-kunindo,
  .top-bg-surga,
  .top-bg-jo {
    height: auto;
  }
  .top-bg-kunindo.top-bg-kunindo .bg-layer.kunindo-bg,
  .top-bg-surga.top-bg-kunindo .bg-layer.kunindo-bg,
  .top-bg-jo.top-bg-kunindo .bg-layer.kunindo-bg {
    background-image: url(../images/bg-kunindo_2_sp.jpg);
  }
  .top-bg-kunindo.top-bg-surga .bg-layer.surga-bg,
  .top-bg-surga.top-bg-surga .bg-layer.surga-bg,
  .top-bg-jo.top-bg-surga .bg-layer.surga-bg {
    background-image: url(../images/bg-surga_2_sp.jpg);
  }
  .top-bg-kunindo.top-bg-jo .bg-layer.jo-bg,
  .top-bg-surga.top-bg-jo .bg-layer.jo-bg,
  .top-bg-jo.top-bg-jo .bg-layer.jo-bg {
    background-image: url(../images/bg-jo_sp.jpg);
  }
  .top-flex-box {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    color: #FFF;
    gap: 20px 0;
  }
  .top-title {
    font-size: 4.2rem;
  }
  .top-title small {
    font-size: 1.3rem;
  }
  .top-btn-box {
    margin: 40px auto;
    text-align: center;
  }
  .top-btn-box a {
    margin: 0 auto;
    padding: 15px 20px;
    display: block;
    text-align: center;
    border: 1px solid #FFF;
    color: #FFF;
  }
  .top-btn-box a span {
    margin: auto auto 10px;
    padding: 0 15px 2px;
    display: block;
    background-color: #FFF;
    color: #800000;
    font-weight: 600;
  }
} /*xs*/
/*------------(SM)------------*/
@media (min-width: 567px) and (max-width: 767px) {
  .bg-dark {
    padding: 0 15px;
  }
  /*■■■■■■ TOP(SM) ■■■■■■■*/
  .top-contents-block {
    margin: 40px 20px;
    padding: 40px 20px;
  }
  .top-bg-kunindo,
  .top-bg-surga,
  .top-bg-jo {
    height: auto;
  }
  .top-bg-kunindo.top-bg-kunindo .bg-layer.kunindo-bg,
  .top-bg-surga.top-bg-kunindo .bg-layer.kunindo-bg,
  .top-bg-jo.top-bg-kunindo .bg-layer.kunindo-bg {
    background-image: url(../images/bg-kunindo_2_sp.jpg);
  }
  .top-bg-kunindo.top-bg-surga .bg-layer.surga-bg,
  .top-bg-surga.top-bg-surga .bg-layer.surga-bg,
  .top-bg-jo.top-bg-surga .bg-layer.surga-bg {
    background-image: url(../images/bg-surga_2_sp.jpg);
  }
  .top-bg-kunindo.top-bg-jo .bg-layer.jo-bg,
  .top-bg-surga.top-bg-jo .bg-layer.jo-bg,
  .top-bg-jo.top-bg-jo .bg-layer.jo-bg {
    background-image: url(../images/bg-jo_sp.jpg);
  }
  .top-flex-box {
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    gap: 30px 0;
  }
  .top-btn-box {
    margin: 40px auto;
    text-align: center;
  }
  .top-btn-box a {
    margin: 0 auto;
    padding: 15px 40px;
    display: inline-block;
    text-align: center;
    border: 1px solid #FFF;
    color: #FFF;
  }
  .top-btn-box a span {
    margin: auto auto 10px;
    padding: 0 15px 2px;
    display: block;
    background-color: #FFF;
    color: #800000;
    font-weight: 600;
  }
  /*Profile プロフィール(XS)*/
  .prof-flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .prof-table {
    display: block;
    width: 100%;
  }
  .prof-table tbody {
    display: block;
    width: 100%;
  }
  .prof-table tr {
    display: block;
    width: 100%;
  }
  .prof-table th {
    padding: 15px 0 0;
    display: block;
    width: 100%;
    text-align: left;
  }
  .prof-table td {
    padding: 0 0 15px;
    display: block;
    width: 100%;
    color: #000;
    border-bottom: 1px solid #999;
  }
} /*SM*/
/*------------(MD)------------*/
@media (min-width: 768px) and (max-width: 1023px) {
  .bg-dark {
    padding: 0 15px;
  }
  /*■■■■■■ TOP(SM) ■■■■■■■*/
  .top-contents-block {
    margin: 40px 20px;
    padding: 40px 20px;
  }
  .top-bg-kunindo,
  .top-bg-surga {
    height: auto;
  }
  .top-bg-kunindo.top-bg-kunindo .bg-layer.kunindo-bg,
  .top-bg-surga.top-bg-kunindo .bg-layer.kunindo-bg {
    background-image: url(../images/bg-kunindo_2_sp.jpg);
  }
  .top-bg-kunindo.top-bg-surga .bg-layer.surga-bg,
  .top-bg-surga.top-bg-surga .bg-layer.surga-bg {
    background-image: url(../images/bg-surga_2_sp.jpg);
  }
  .top-flex-box {
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    gap: 30px 0;
  }
  .top-btn-box {
    margin: 40px auto;
    text-align: center;
  }
  .top-btn-box a {
    margin: 0 auto;
    padding: 15px 40px;
    display: inline-block;
    text-align: center;
    border: 1px solid #FFF;
    font-size: 1.8rem;
  }
  .top-btn-box a span {
    margin: auto auto 10px;
    padding: 0 15px 2px;
    display: block;
    background-color: #FFF;
    color: #800000;
    font-size: 1.6rem;
    font-weight: 600;
  }
}
/*------------(LG)------------*/
@media (min-width: 1024px) and (max-width: 1215px) {
  .bg-dark {
    padding: 0 15px;
  }
}
/*------------(XL)------------*/