@charset "utf-8";

/*----------ローディング-----------*/
#logo_loader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 101;
    background-color: #1a1a1a;
}
#logo_loader .f_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}
#logo_loader .f_logo img {
    width: 100%;
    height: auto;
}

#logo_loader .f_logo:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    position: absolute;
    top: 0;
    left: 100%;
    animation: loadLogo 1.5s;
}

@keyframes loadLogo {
  0% {
    left: 0;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
#logo_loader.open {
    animation: slideOut forwards 2s 2s;
}

@keyframes slideOut {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}


h2 {
  font-size: clamp(26px, 3.2vw, 43px);
}
h3 {
  font-size: clamp(16px, 3.2vw, 28px);
}
p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.4em;
}
a {
  color: #fff;
}
body {
  font-family: "M PLUS Rounded 1c",serif;
}
#top {
  max-width: 1920px;
  margin: 0 auto;
}
/*----------背景----------*/
#background-image {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: linear-gradient(90deg, rgb(255,255,255,1), rgb(255,255,255,0.5),rgb(255,255,255,1)), url(../images/レンガ背景.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
/*----------スッと表示アニメーション----------*/
.view{
    width: 100%;
    transform: translateY(30px);
    opacity: 0;
    transition: all .4s ease-in-out .4s;
}
.view img{
    vertical-align: middle;
}
.view.js-on{
    transform: translateY(0px);
    opacity: 1;
}
/*------------------------------トップメニューsp-------------------------------*/
@media only screen and (max-width: 767px) {
   #topbar {
     width: 100%;
     position: fixed;
     opacity: 0.8;
     top: 0;
     transition: background-color 0.3s ease;
     z-index: 3;
   }
   #topbar.is-scroll {
     background-color: #fff;/* スクロール時の色 */
  }
   .hamburger {
     display : block;
     position: fixed;
     z-index : 3;
     right : 13px;
     top   : 12px;
     width : 42px;
     height: 42px;
     background: #000;
     cursor: pointer;
     text-align: center;
     opacity: 0.8;
   }
   .hamburger span {
     display : block;
     position: absolute;
     width   : 30px;
     height  : 4px ;
     left    : 6px;
     background : #fff;
     border-radius: 4px;
     -webkit-transition: 0.3s ease-in-out;
     -moz-transition   : 0.3s ease-in-out;
     transition        : 0.3s ease-in-out;
   }
   .hamburger span:nth-child(1) {
     top: 9px;
   }
   .hamburger span:nth-child(2) {
     top: 19px;
   }
   .hamburger span:nth-child(3) {
     top: 29px;
   }
/*----------ナビ開いてる時のボタン----------*/
   .hamburger.active span:nth-child(1) {
     top : 16px;
     left: 6px;
     background :#fff;
     -webkit-transform: rotate(-45deg);
     -moz-transform   : rotate(-45deg);
     transform        : rotate(-45deg);
   }
   .hamburger.active span:nth-child(2),
   .hamburger.active span:nth-child(3) {
     top: 16px;
     background :#fff;
     -webkit-transform: rotate(45deg);
     -moz-transform   : rotate(45deg);
     transform        : rotate(45deg);
   }
   #logo-change1 {
     display: none;
   }
   #menu-list-sp {
     width: 100%;
     display: flex;
     align-items: center;
   }
   .list-sp-1 {
     width: 80px;
     padding: 10px;
   }
   .list-sp-2 {
     width: 38px;
     padding: 10px;
   }
   .menu-list {
     position: fixed;
     z-index : 2;
     top  : 0;
     left : 0;
     color: #fff;
     text-align: center;
     width: 100%;
     opacity: 0;
     visibility: hidden;
     transition: opacity .6s ease, visibility .6s ease;
   }
   .menu-list img {
     max-width: 100px;
   }
   .menu-list ul {
     margin: 0 auto;
     padding: 0;
     width: 100%;
     display: flex;
     flex-direction: column;
     background-color: #000;
     height: 100vh;
     justify-content: center;
   }
   .menu-list li {
     list-style-type: none;
     padding: 0;
     width: 100%;
     font-size: 2.5vh;
     transition: .4s all;
   }
   .menu-list ul li:last-child {
     padding-bottom: 0;
   }
   .menu-list ul li a {
     padding: 10px;
     display: block;
     color: #fff;
     font-size: 4vh;
     text-decoration :none;
   }
/*----------このクラスを、jQueryで付与・削除する----------*/
   .menu-list.active {
     opacity: 1;
     visibility: visible;
   }
   /*----------concept----------*/
   .concept {
     width: 100%;
     padding: 50px 0 50px;
     font-weight: bold;
     text-align: center;
   }
   .concept-flex {
     padding: 40px 5vw 80px;
     display: flex;
     justify-content: space-evenly;
     flex-wrap: wrap;
   }
   .concept-title {
     text-align: center;
   }
   .concept-contents {
     width: 75%;
     margin: 30px;
     background : #fff;
     border-style : Solid;
     border-color : #000;
     border-width : 1px;
     box-shadow : 12px 12px 0px rgba(190, 190, 190, 0.75);
     display: flex;
     align-items: center;
     flex-direction: column;
     justify-content: flex-start;
   }
   .concept-contents-box1 {
     width: 15%;
     padding: 20px;
   }
   .concept-contents-box1 img {
     width: 100%;
   }
   .concept-contents-box2 {
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .concept-contents-box2 img {
     width: 10%;
   }
   .concept-contents-box3 {
     width: 60%;
     border-bottom: solid 2px #83000a;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .concept-box-p {
     padding: 20px;
   }
   .concept-contents-box4 {
     position: relative;
   }
   #concept-contents-box4-background {
     height: 200px;
     filter: brightness(0.4);
     background-image: url("../images/コンセプト背景.jpg");
     background-repeat: no-repeat;
     background-size: 100%;
     background-position: center;
   }
   .concept-contents-box4 p {
     width: 100%;
     color: #fff;
     text-shadow: 0px 0px 12px #000;
     position: absolute;
     top: 50%;
     left: 50%;
     font-size: clamp( 12px, 3vw, 34px);
     text-align: center;
     z-index: 1;
     transform: translateY(-50%) translateX(-50%);
     -webkit-transform: translateY(-50%) translateX(-50%);
   }
   /*----------example----------*/
   .example {
     width: 100%;
     padding: 50px 0 50px;
     font-weight: bold;
   }
   .example-title1 {
     text-align: center;
   }
   .example-wrap {
     width: 90%;
     margin: 0 auto;
   }
   .example-comment {
     width: 80%;
     padding: 50px 0;
     margin: 0 auto;
   }
   .example-flex {
     padding: 20px 0 0 0;
     text-align: center;
     display: flex;
     justify-content: space-evenly;
   }
   .example-contents {
     align-items: center;
     display: flex;
     justify-content: space-evenly;
     flex-wrap: wrap;
   }
   .example-contents p {
     padding: 20px;
     font-size: clamp( 16px, 2vw, 34px);
     font-weight: bold;
   }
   .example-contents-box1 {
     width: 45%;
   }
   .example-contents-box1 img {
     width: 100%;
   }
     a.btn_1 {
     display: block;
     text-align: center;
     vertical-align: middle;
     text-decoration: none;
     width: 30%;
     margin: auto;
     padding: 1rem 4rem;
     font-weight: bold;
     color: #000;
     font-size: clamp(12px, 3vw, 34px);
     border: 1px solid #000;
     cursor: pointer;
     position: relative;
     overflow: hidden;
     z-index: 1;
   }
   a.btn_1::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: #1a1a1a;
     transform: translateX(-100%);
     transition: all .3s;
     z-index: -1;
   }
   a.btn_1:hover::before {
   	 transform: translateX(0);
   }
   a.btn_1:hover {
   	 color: #fff;
   }

   /*----------business----------*/
   .business {
     width: 100%;
     padding: 50px 0 50px;
     background: #1a1a1a;
     font-weight: bold;
     position: relative;
     color: #fff;
     text-align: center;
   }
   .business-wrap {
     width: 100%;
     margin: 0 auto;
     height: 300px;
     filter: brightness(0.3);
     background-image: url("../images/会社概要01.png");
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
     background-attachment: fixed;
   }
   .business-box {
     width: 100%;
     position: absolute;
     top: 50%;
     left: 50%;
     font-size: clamp( 12px, 3vw, 34px);
     z-index: 1;
     transform: translateY(-50%) translateX(-50%);
     -webkit-transform: translateY(-50%) translateX(-50%);
   }
   .business-box p {
     width: 100%;
     color: #fff;
     font-size: clamp( 12px, 3vw, 34px);
   }
   .business-comment {
     padding: 30px 0;
   }
     a.btn_2 {
     display: block;
     text-align: center;
     vertical-align: middle;
     text-decoration: none;
     width: 30%;
     margin: auto;
     padding: 1rem 4rem;
     font-weight: bold;
     border: 1px solid #fff;
     cursor: pointer;
     position: relative;
     overflow: hidden;
     z-index: 1;
   }
   a.btn_2::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgb(255, 255, 255);
     transform: translateX(-100%);
     transition: all .3s;
     z-index: -1;
   }
   a.btn_2:hover::before {
   	 transform: translateX(0);
   }
   a.btn_2:hover {
   	 color: #000;
   }

   /*----------contact----------*/
   .contact {
     width: 100%;
     font-weight: bold;
     position: absolute;
     top: 35%;
     left: 50%;
     z-index: 1;
     transform: translateY(-50%) translateX(-50%);
   }
   .contact-wrap {
     height: 500px;
     margin: 0 auto;
     filter: brightness(0.3);
     background: url(../images/お問い合わせ01.png);
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
   }
   .contact-comment {
     padding: 50px 0 0 0;
     font-size: clamp( 16px, 4vw, 46px);
   }
   .button1 {
     width: 86%;
     margin: 0 auto;
     padding: 10px 0 50px 0;
     font-size: clamp( 12px, 4vw, 24px);
   }
   .button1 a {
     position: relative;
     display: flex;
     justify-content: space-around;
     align-items: center;
     max-width: 550px;
     margin: 0 auto;
     padding: 20px 25px;
     color: #FFF;
     transition: 0.3s ease-in-out;
     font-weight: 600;
     background: #83000a;
     filter: drop-shadow(0px 2px 4px #000);
   }
   .button1 a:after {
     content: '';
     width: 5px;
     height: 5px;
     border-top: 3px solid #FFF;
     border-right: 3px solid #FFF;
     transform: rotate(45deg) translateY(-50%);
     position: absolute;
     top: 46%;
     right: 20px;
     border-radius: 1px;
     transition: 0.3s ease-in-out;
   }
   .button11 a:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
   }
}
/*------------------------------トップメニューpc-------------------------------*/
@media only screen and (min-width: 768px) {
   #hamburger-box {
     display: none;
   }
   #logo-change2 {
     display: none;
   }
   #menu-list-sp {
     display: none;
   }
   #topbar {
     width: 100%;
     max-width: 1920px;
     position: fixed;
     background: linear-gradient(to bottom, rgb(255 255 255 / 80%) 100%, rgba(0, 0, 0, 0) 0%);
     top: 0;
     z-index: 3;
   }
   .menu-list img {
     width: 80%;
   }
   /*----------concept----------*/
   .concept {
     width: 100%;
     padding: 50px 0 50px;
     font-weight: bold;
     text-align: center;
   }
   .concept-flex {
     padding: 40px 5vw 80px;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
   }
   .concept-title {
     text-align: center;
   }
   .concept-contents {
     width : 40%;
     max-width: 300px;
     height : 300px;
     margin: 25px;
     background : #fff;
     border-style : Solid;
     border-color : #000;
     border-width : 1px;
     box-shadow : 12px 12px 0px rgba(190, 190, 190, 0.75);
     display: flex;
     align-items: center;
     flex-direction: column;
     justify-content: flex-start;
   }
   .concept-contents-box1 {
     width: 24%;
     padding: 30px;
   }
   .concept-contents-box1 img {
     width: 100%;
   }
   .concept-contents-box2 {
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .concept-contents-box2 img {
     width: 10%;
   }
   .concept-contents-box3 {
     width: 60%;
     border-bottom: solid 2px #83000a;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .concept-box-p {
     padding: 20px;
   }
   .concept-contents-box4 {
     position: relative;
   }
   #concept-contents-box4-background {
     max-width: 1080px;
     height: 300px;
     margin: 0 auto;
     filter: brightness(0.3);
     background-image: url("../images/コンセプト背景.jpg");
     background-repeat: no-repeat;
     background-size: 100%;
     background-position: center;
   }
   .concept-contents-box4 p {
     width: 100%;
     color: #fff;
     text-shadow: 0px 0px 12px #000;
     position: absolute;
     top: 50%;
     left: 50%;
     font-size: clamp( 16px, 2vw, 34px);
     text-align: center;
     z-index: 1;
     transform: translateY(-50%) translateX(-50%);
     -webkit-transform: translateY(-50%) translateX(-50%);
   }
   /*----------example----------*/
   .example {
     width: 100%;
     max-width: 1920px;
     padding: 50px 0 50px;
     margin: 0 auto;
     color: #000;
     font-weight: bold;
   }
   .example-title1 {
     text-align: center;
   }
   .example-wrap {
     width: 70%;
     margin: 0 auto;
   }
   .example-comment {
     width: 58%;
     padding: 50px 0;
     margin: 0 auto;
   }
   .example-flex {
     padding: 20px 0 0 0;
     text-align: center;
     display: flex;
     justify-content: space-evenly;
   }
   .example-contents {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
   }
   .example-contents p {
     padding: 20px;
     font-size: clamp( 16px, 2vw, 34px);
   }
   .example-contents-box1 {
     width: 40%;
   }
   .example-contents-box1 img {
     width: 100%;
   }
     a.btn_1 {
     display: block;
     text-align: center;
     vertical-align: middle;
     text-decoration: none;
     max-width: 250px;
     margin: auto;
     padding: 1rem 4rem;
     font-weight: bold;
     color: #000;
     font-size: clamp(12px, 3vw, 34px);
     border: 1px solid #000;
     cursor: pointer;
     position: relative;
     overflow: hidden;
     z-index: 1;
   }
   a.btn_1::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: #1a1a1a;
     transform: translateX(-100%);
     transition: all .3s;
     z-index: -1;
   }
   a.btn_1:hover::before {
   	 transform: translateX(0);
   }
   a.btn_1:hover {
   	 color: #fff;
   }

   /*----------business----------*/
   .business {
     width: 100%;
     padding: 100px 0 100px;
     background: #1a1a1a;
     font-weight: bold;
     position: relative;
     color: #fff;
     text-align: center;
   }
   .business-wrap {
     max-width: 1920px;
     margin: 0 auto;
     height: 400px;
     filter: brightness(0.3);
     background-image: url("../images/会社概要01.png");
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
     background-attachment: fixed;
   }
   .business-box {
     width: 100%;
     position: absolute;
     top: 50%;
     left: 50%;
     font-size: clamp( 12px, 3vw, 34px);
     z-index: 1;
     transform: translateY(-50%) translateX(-50%);
     -webkit-transform: translateY(-50%) translateX(-50%);
   }
   .business-box p {
     color: #fff;
     font-size: clamp(16px, 2vw, 28px);
     text-shadow: 0px 0px 12px #000;
   }
   .business-comment {
     padding: 50px 0;
   }
     a.btn_2 {
     display: block;
     text-align: center;
     vertical-align: middle;
     text-decoration: none;
     max-width: 250px;
     margin: auto;
     padding: 1rem 4rem;
     font-weight: bold;
     border: 1px solid #fff;
     cursor: pointer;
     position: relative;
     overflow: hidden;
     z-index: 1;
   }
   a.btn_2::before {
     content: "";
     position: absolute;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgb(255, 255, 255);
     transform: translateX(-100%);
     transition: all .3s;
     z-index: -1;
   }
   a.btn_2:hover::before {
   	 transform: translateX(0);
   }
   a.btn_2:hover {
   	 color: #000;
   }
   /*----------contact----------*/
   .contact {
     width: 100%;
     font-weight: bold;
     position: absolute;
     top: 30%;
     left: 50%;
     z-index: 1;
     transform: translateY(-50%) translateX(-50%);
     -webkit-transform: translateY(-50%) translateX(-50%);
   }
   .contact-wrap {
     max-width: 1920px;
     height: 500px;
     margin: 0 auto;
     filter: brightness(0.3);
     background: url(../images/お問い合わせ01.png);
     background-size: cover;
     background-repeat: no-repeat;
     background-position: center;
   }
   .contact-comment {
     padding: 50px 0;
     font-size: clamp( 16px, 2vw, 28px);
   }
   .button1 {
     width: 100%;
     font-size: 30px;
   }
   .button1 a {
     position: relative;
     display: flex;
     justify-content: space-around;
     align-items: center;
     margin: 0 auto;
     max-width: 550px;
     padding: 20px 25px;
     color: #FFF;
     transition: 0.3s ease-in-out;
     font-weight: 600;
     background: #83000a;
     filter: drop-shadow(0px 2px 4px #000);
   }
   .button1 a:after {
     content: '';
     width: 5px;
     height: 5px;
     border-top: 3px solid #FFF;
     border-right: 3px solid #FFF;
     transform: rotate(45deg) translateY(-50%);
     position: absolute;
     top: 46%;
     right: 20px;
     border-radius: 1px;
     transition: 0.3s ease-in-out;
   }
   .button1 a:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
   }

   /*---------------------------*/
   .menu-list {
     display: flex;
     justify-content: center;
   }
   .menu-list ul {
     width: 70%;
     display: flex;
   }
   .menu-list li {
     width: 100%;
     padding: 0 10px;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .menu-list a {
     color: #000;
     font-size: clamp( 9px, 1.2vw, 30px);
     font-weight: bold;
     display: flex;
     justify-content: center;
   }
   .menu-list a {
     position: relative;
   }
   .menu-list-a::after {
     position: absolute;
     left: 0;
     content: '';
     width: 100%;
     height: 3px;
     background: #83000a;
     bottom: -1px;
     transform: scale(0, 1);
     transform-origin: center top;
     transition: transform 0.3s;
   }
   .menu-list-a:hover::after {
     transform: scale(1, 1);
   }
   .menu-list-b:hover {
     opacity: 0.6;
   }
   /*----------このクラスを、jQueryで付与・削除する----------*/
   .menu-list.active {
     opacity: 0.8;
     visibility: visible;
   }
}

/*----------スライドショー-----------*/
.img-frame{
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1080px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 767px){
  .img-frame{
     width: 100%;
     height: 100vh;
  }
}
.img-01, .img-02, .img-03{
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.img-01{
  background-image: url(../images/slide_01_0.png);
  animation: slide-animation-01 24s infinite;
}
.img-02{
  background-image: url(../images/slide_02_0.png);
  animation: slide-animation-02 24s infinite;
}
.img-03{
  background-image: url(../images/slide_03_0.png);
  animation: slide-animation-03 24s infinite;
}
@keyframes slide-animation-01 {
    0% {opacity: 1; transform: scale(1.0);}
  30% {opacity: 1;}
  40% {opacity: 0; transform: scale(1.15);}
  90% {opacity: 0}
100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
    0% {opacity: 0;}
  30% {opacity: 0; transform: scale(1.1);}
  40% {opacity: 1;}
  60% {opacity: 1;}
  70% {opacity: 0; transform: scale(1.0);}
100% {opacity: 0;}
}
@keyframes slide-animation-03 {
    0% {opacity: 0;}
  60% {opacity: 0;  transform: scale(1.0);}
  70% {opacity: 1;}
  90% {opacity: 1;}
100% {opacity: 0; transform: scale(1.1);}
}
/*--------------------*/
.catch-phrase {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.catch-phrase h1 {
  width: 100%;
  padding-bottom: 0.5%;
  color: #fff;
  text-shadow: 0px 0px 12px #000;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: clamp( 22px, 4vw, 60px);
  text-align: center;
  z-index: 1;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
/*----------フッター----------*/
#footer {
  position: relative;
  color: #fff;
  background-color: #1a1a1a;
  text-align: center;
}
.footer-list {
  padding: 40px 0;
  text-align: center;
  font-weight: bold;
  background-color: #1a1a1a;
  color: #fff;
}
.footer-logo img {
  max-width: 130px;
}
.footer-list li {
  padding: 5px 0 5px;
  font-size: clamp( 12px, 2vw, 16px);
}
.copyright {
  padding: 24px;
  font-size: clamp( 15px, 3vw, 23px);
}
/*----------business-02----------*/
.business-02 {
  width: 90%;
  padding: 120px 0 50px;
  margin: 0 auto;
  font-weight: bold;
}
.business-02 h1 {
  font-size: clamp(26px, 3.2vw, 43px);
}
.business-title2 {
  text-align: center;
  padding: 0 0 60px;
}
th,td {
  width: 60%;
  height: 60px;
  border: solid 1px;
  font-weight: bold;
  padding: 10px;
  vertical-align: middle;
}
table {
  border-collapse:  collapse;
  margin: 0 auto;
}
th {
  width:  250px;
  font-size: clamp( 13px, 2vw, 24px);
}
td p {
  font-size: clamp( 13px, 2vw, 20px);
}
/*----------construction----------*/
.construction-example {
  width: 100%;
  padding: 120px 0 50px;
  margin: 0 auto;
  font-weight: bold;
}
.construction-example h1 {
  font-size: clamp(26px, 3.2vw, 43px);
}
.construction-example-title {
  text-align: center;
}

/*----------スライダー----------*/
.cp_cssslider {
  width: 90%;
  padding-top: 62%;
  position: relative;
  margin: 50px auto;
  text-align: center;
}
.cp_cssslider > img {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
  border-radius: 3px;
  box-shadow:0px 0px 5px 0px rgba(0,0,0,0.3);
}
.cp_cssslider input[name='cp_switch'] {
  display: none;
}
/* サムネイル */
.cp_cssslider label {
  margin: 15px 5px 0 5px;
  border: 2px solid #ffffff;
  display: inline-block;
  cursor: pointer;
  transition: all 0.5s ease;
  opacity: 0.6;
  border-radius: 3px;
}
.cp_cssslider label:hover {
  opacity: 0.9;
}
.cp_cssslider label img {
  display: block;
  width: 50px;
  border-radius: 2px;
}
.cp_cssslider input[name='cp_switch']:checked + label {
  border: 2px solid #FF7043;
  opacity: 1;
}
.cp_cssslider input[name='cp_switch'] ~ img {
  width: 100%;
  opacity: 0;
}
.cp_cssslider input[name='cp_switch']:checked + label + img {
 opacity: 1;
}
.slider {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
/*----------Privacy Policy----------*/
.privacy-policy {
  width: 90%;
  padding: 120px 0 50px;
  margin: 0 auto;
  font-weight: bold;
}
.privacy-policy-title {
  font-size: clamp(26px, 3.2vw, 43px);
  text-align: center;
}
.privacy-policy-comment {
  max-width: 1040px;
  padding: 30px 0;
  margin: 0 auto;
}
.privacy-policy-title2 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 0 20px;
  border-left: solid 10px #83000a;
}
.privacy-policy-title2 h2 {
  margin: 60px 0 0;
}
.p-b {
  margin: 0 0 18vw;
}
.footer-privacy-policy {
  padding: 20px 0 0;
  font-size: clamp(12px, 2vw, 16px);
}
/*----------フォーム-----------*/
.contact-02 {
  width: 100%;
  padding: 120px 0 50px;
  margin: 0 auto;
  font-weight: bold;
}
.contact-02-title {
  font-size: clamp(26px, 3.2vw, 43px);
  text-align: center;
}
.contact-02-comment {
  padding: 50px 0;
  font-size: clamp( 16px, 2vw, 28px);
  text-align: center;
}
.contact-02 a {
  color: #58a9ff;
}
.Form {
  margin: 0 auto;
  display: table;
}
.Form p {
  padding: 10px;
}

.Form-Item {
  padding: 10px;
  border-bottom: 1px solid #dfdfdf;
}
.Form-flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Form-link {
  margin: 18px 0 0;
}
.Form-Item-Input {
  width: 90%;
  height: 52px;
  margin: 0 auto;
  font-size: 120%;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #eaedf2;
}
.Form-Item-Textarea {
  width: 90%;
  height: 216px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #eaedf2;
  font-size: 18px;
}
.form-button {
  width: 100%;
  max-width: 400px;
  padding: 50px 0;
  margin: 0 auto;
}
.Form-title {
  padding: 10px;
  color: #000;
  font-size: clamp(15px, 3.2vw, 30px);
}
.required::after {
  content: "必須";
  color: #ffffff;
  background: #cc0000;
  font-size: 0.8em;
  padding: 0.3em;
  border-radius: 0.5em;
  margin-left:0.3em;
}
.checkbox {
  margin: 0;
  transform: scale(2);
}
.btn-hover {
    width: 80%;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 0 0 3vh 0;
    height: 55px;
    text-align:center;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}
.btn-hover.color-9 {
    background-color: #83000a;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.75);
}
.button {
    padding: 10px 0 50px 0;
}
.button a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 30px;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: bold;
    font-size: clamp( 16px, 2vw, 20px);
    background: #004135;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 50px;
}
.button a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 46%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}
