html {
  font-size: 10px;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: black;
  background-color: rgba(234,244,252);/*月白*/
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
}
h1{
  font-size: 4rem;
}
h2{
  font-size: 2.5rem;
}
a{
  text-decoration: none;
  color: black;
  font-size: 2rem;
  line-height: 1.6; 
}
p{
  font-size: 2em;
  line-height: 1.6;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.flex-zentai ,.about-flex,.works-flex{
  display: flex;
  justify-content: space-between;
}
.flex-right {
  display: flex;
  justify-content: flex-end
}
.flex-left{
  display: flex;
  justify-content: left;
}
.wrap {
  width: 100%;
  height:100%;
}
.inner {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 100px 0;
}
.bg-color {
  background-color: #e7e4da;
}
ul li{
  list-style: none;
}
dd{
  font-size: 2rem;
}
/* ヘッダー */
header {
  width: 25%;
  /* max-width: 330px; */
  height: 100vh;
  margin-bottom: 290px;
  text-align: center;
  background-color: rgb(164, 252, 222);
}
header .logo {
  max-width: 100px;
  height: auto;
  text-align: center;
  margin: 130px auto 10px;
}
header h1{
  padding-bottom: 30px;
}
header ul li{
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-humbergerMenu{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffb10e;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
}
.open .header-humbergerMenu{
  visibility: visible;
  opacity: 1;
}
#navbtn {
  visibility: hidden;
}
@media screen and (max-width:600px){
  #navbtn{
    visibility: visible;
  }
}

/* ナビゲーションボタン（開く） */
#navbtn {
  position: fixed;
  top: 15px;
  right: 15px;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 30px;
  height: 20px;
  cursor: pointer;
}
#navbtn::before,
#navbtn::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #333333;
  transform: translateY(10px);
}
#navbtn::before {
  transform: translateY(-10px);
  box-shadow: 0 10px #333333;
}
/* ナビゲーションボタン（閉じる） */
.open#navbtn {
  z-index: 100;
}
.open#navbtn::before {
  transform: rotate(-45deg);
  box-shadow: none;
}
.open#navbtn::after {
  transform: rotate(45deg);
  box-shadow: none;
}
/* ナビゲーションメニュー 開いた時*/
.open.header-humbergerMenu {
  visibility: visible;
  opacity: 1;
}


footer {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(164, 252, 222);
  color: black;
}

.flex-r {
  flex-direction: row-reverse;
}
.txt-r,
.txt-l {
  font-size: 5rem;
}
.txt-r {
  text-align: right;
}
.bold {
  font-weight: bold;
}
.introduction h2,
.skill h2,
.office h2,
.flow-about h2 {
  margin-bottom: 100px;
}
small {
  font-size: 14px;
}
.top {
  width: 75%;
  overflow: scroll;
  overflow-x: hidden;
}
.top .flex{
  position: relative;
}
.slick {
  max-width: 100%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.slick img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.carousel-control-prev-icon, .carousel-control-next-icon{
  width: 40px;
  height: 40px;
}
.glass-filter{
  /*ガラス効果*/
  background-color: rgba(255, 236, 71, 0.8);
  backdrop-filter: blur(3px);
  /*その他*/
  margin-bottom: 10px;
  border-radius: 15px;
  width: 60%;
  padding: 15px 15px;
  position: absolute;
  left: 20%;
  top: 20%;
}
p.scroll {
  display: inline-block;
  position: absolute;
  right: 3%;
  bottom: 70px;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  /* color: #202020; */
  color: #fff;
  text-shadow: 3px 3px 0 #000,
               -1px 1px 0 #000,
               1px -1px 0 #000,
               -1px -1px 0 #000;
  font-size: 15px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}
p.scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 3px;
  height: 100px;
  background: #202020;
}
p.scroll::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.catch {
  font-size: 8rem;
  font-weight: bold;
  position: absolute;
  right: 100px;
  top: 57%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  backdrop-filter: blur(3px);

}
.catch_main {
  font-size: 6rem;
  font-weight: bold;
  padding: 0 20px;
}
@media screen and (max-width:1200px){
    .catch_main{
      font-size: 3.8rem;
    }
}
@media screen and (max-width:600px){
  .catch_main{
    font-size: 2rem;
  }
}

.catch_sub {
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width:1200px){
  .catch_sub{
    font-size: 2.8rem;
  }
}
@media screen and (max-width:600px){
  .catch_sub{
    font-size: 1.8rem;
  }
}

/* about */
.about{
  width: 90%;
  margin: 80px auto;
}
.about_photo img{
  margin-top: 35px;
  border-radius: 20px;
  width: 200px;
  /* max-width: auto; */
  height: 266px;
  /* max-height: 379px; */
}
.about h2{
  padding-right: 30px;
  border-radius: 25px 25px 25px 25px;/*角を丸く*/
  position: relative;
  padding: 0.6em;
  background: rgb(136,203,127);
}
.about h2:before {
  content: '●';
  color: white;
  margin-right: 8px;
}
.about h2:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 60px;
  border: 15px solid transparent;
  border-top: 15px solid rgb(136,203,127);
  width: 0;
  height: 0;
}
.about_text{
  padding-top: 30px;
  padding-left: 60px;
  padding-right: 20px;
}
.link-btn{
  margin-top: 10px;
  border-radius: 15px 15px 15px 15px;/*角を丸く*/
  background: rgb(136,203,127);
  padding-left: 20px;
  padding-right: 20px;
}
.about-table{
  margin: 30px 30px;
}
.about-table th{
  width: 150px;
  font-size: 2rem;
}
.about-table td{
  width: auto;
  font-size: 1.8rem;
}
/* レスポンシブ対応 */
@media screen and (max-width:600px){
  .about_photo{
    display: block;
  }
  .about_photo{
  text-align: center;
  }
  .about_text{
    padding-left: 20px;
    text-align: left;
  }
}

/* work */
.work{
  width: 90%;
  margin: 80px auto;
}
.work h2{
  padding-right: 30px;
  border-radius: 25px 25px 25px 25px;/*角を丸く*/
  position: relative;
  padding: 0.6em;
  background: rgb(136,203,127);
}
.work h2:before {
  content: '●';
  color: white;
  margin-right: 8px;
}
.work h2:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 60px;
  border: 15px solid transparent;
  border-top: 15px solid rgb(136,203,127);
  width: 0;
  height: 0;
}
.work-spacee{
  padding-top: 35px;
}
.work-card{
  margin: 0 20px;
}
.card-title-color{
  padding: 5px 0;
  font-size: 2.3rem;
}
/* レスポンシブ対応 */
@media screen and (max-width:600px){
  .card-group>.card {
    margin-bottom: 30px;
  }
}

/* order */
.order{
  width: 90%;
  margin: 80px auto;
}
.flow{
  width: 90%;
  margin: 80px auto;
}
.order h2{
  padding-right: 30px;
  border-radius: 25px 25px 25px 25px;/*角を丸く*/
  position: relative;
  padding: 0.6em;
  background: rgb(136,203,127);
}
.order h2:before {
  content: '●';
  color: white;
  margin-right: 8px;
}
.order h2:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 60px;
  border: 15px solid transparent;
  border-top: 15px solid rgb(136,203,127);
  width: 0;
  height: 0;
}
.flow > li {
  position: relative;
}
.flow > li:not(:last-child) {
  margin-bottom: 40px;
}
.flow > li:not(:first-child)::before {
  content: "";
  height: 60px;
  display: block;
  border-left: 4px dotted #e5e5e5;
  position: absolute;
  top: -40px;
  left: -webkit-calc(10% + 30px - 2px);
  left: calc(10% + 30px - 2px);
  z-index: 9;
}
.flow > li dl {
  width: 100%;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid rgb(107,144,219);
  border-radius: 10px;
  position: relative;
}
.flow > li:not(:last-child) dl::before,
.flow > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: rgb(107,144,219);
}
.flow > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: rgba(234,244,252);
}
.flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: rgb(107,144,219);
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}
.flow > li dl dt .icon {
  font-size: 12px;
  color: #fff;
  background: rgb(107,144,219);
  background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
  background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  /* z-index: 100; */
}

/* contact */
.contact{
  width: 90%;
  margin: 80px auto;
}
.contact-wrap{
  margin-left: 50px;
}
.contact h2{
  padding-right: 30px;
  border-radius: 25px 25px 25px 25px;/*角を丸く*/
  position: relative;
  padding: 0.6em;
  background: rgb(136,203,127);
}
.contact h2:before {
  content: '●';
  color: white;
  margin-right: 8px;
}
.contact-left{
  width: 25%;
}
.contact-inputbox{
  border: 1px solid;
  font-size: 1.8rem;
  width: 50%;
  height: 40px;
  padding-left: 20px;
  border-radius: 10px;
}
.contact-inputarea{
  border: 1px solid;
  font-size: 1.8rem;
  width: 50%;
  height: 200px;
  padding-left: 20px;
  border-radius: 10px;
}
.submit-btn{
  text-align: center;
  margin-top: 20px;
}
.submit-text{
  text-align: center;
  font-size: 2rem;
  border-radius: 25px;
  cursor: pointer;
  padding: 15px 40px;
  background: rgb(136,203,127);
  color: white;
  line-height: 1em;
  transition: .3s;
  border: 2px solid rgb(136,203,127);
}
.submit-text:hover{
  color:rgb(136,203,127);
  background: white;
}
.dm-div{
  text-align: center;
  margin-top: 50px;
}
.dm-crowd{
  text-align: center;
  font-size: 2rem;
  border-radius: 25px;
  cursor: pointer;
  padding: 15px 40px;
  background: rgb(136,203,127);
  color: white;
  line-height: 1em;
  transition: .3s;
  border: 2px solid rgb(136,203,127);
}
.dm-crowd:hover{
  color:rgb(136,203,127);
  background: white;
}

/* レスポンシブ対応 */
@media screen and (max-width:600px){
  .flex-left {
    display: block;
    width: 100%;
  }
  .contact-left{
    width: 100%;
  }
  .contact-inputbox{
    width: 90%;
  }
  .contact-inputarea{
    width: 90%;
  }
  .submit-btn {
    width: 90%;
  }
}



/* レスポンシブ対応 */
/* ヘッダー・メニュー */
@media screen and (max-width:600px){
  h1{
    font-size: 2.5rem;
  }
}

@media screen and (max-width:600px){
  .flex-zentai,.about-flex,.works-flex{
    display: block;
  }
}
@media screen and (max-width:600px){
  header{
    width: 100%;
    height: 60px;
    display: flex;
    margin-bottom: 0px;
  }
  header .logo{
    height: 30px;
    margin: auto 10px;
  }
  header h1{
    padding-bottom: 0px;
    margin: auto 0;
  }
  .header-nav{
    display: none;
  }
}
@media screen and (max-width:600px){
  .top{
    width: 100%;
    overflow-y: hidden;
  }
}