@charset "UTF-8";

/* ==================== 基本設定 ==================== */

html {
  margin: 0;
  padding:0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans','Julius Sans One', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #233F29;
  line-height: 1.5;
  box-sizing: border-box;
}

h1,h2,h3 { text-align: center; }

h1 {
  letter-spacing: 0.09em;
  font-weight: 400;
   }

h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 1.8;
}


h3 {
  font-size: 20px
 }
 @media (max-width: 767px) {
   h2, h3 {font-weight: 800; }
 }

figure { margin: 0;}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: 0 auto;
}

ul,li,dl,dt,dd {
  margin:0;
  padding:0;
  list-style: none;
}

a {
  text-decoration: none;
  color: #233F29;
}

.title {
  margin: 60px auto;
  letter-spacing: 2px;
  text-align: center;
}

.text-bold {
  font-weight: 800;
}
.text-big {
  font-size: 28px;
}

.btn:hover {
  transition: .3s;
  opacity: 0.8;
  transform: translateY(3px);
}

.btn-box a {
  width: 220px;
  height: auto;
  border-radius: 20px;
  padding: 16px 10px;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  z-index: 30;
}

.btn-01 {
  width: 220px;
  background-color: #A9AAD8;
  border: solid 1px #A9AAD8;
  color: #fff;
  margin-right: 10px;
}

.btn-01:hover { font-weight: 600; }

.btn-01 a {
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  padding: 22px 0;
}

.btn-02 a { font-size: 14px;}



/*==================== navigation ====================*/

#header {
 background:#fdfdfd;
 position: relative;
 z-index: 40;
}

.fixed{
 position: fixed !important;
 top:0;
 width: 100%;
}

.header-nav {
 display: flex;
 max-width: 100%;
 height: 80px;
 margin: 0 auto;
 background: #fdfdfd;
 justify-content: space-between;
}

.header-nav .logo {
padding: 25px 30px;
width: 190px;
}

#global-nav ul{
 margin: 30px 30px;
 display: flex;
}

/* new global-nav starts here */
.borderLR {
 padding-bottom: 5px;
 margin: 5px 20px;
 font-family: 'open sans', sans-serif;
 font-size: 16px;
 font-weight: 400;
 letter-spacing: 0.1em;
 position: relative;
}

.borderLR::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 4px;
  bottom: -2px;
  left: 0;
  background-color: #A9AAD8;
  transform-origin: bottom right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.borderLR:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.borderLR:hover {
  color:#1D1A1A;
  font-weight: 600;
}
/* ends here */


#nav-toggle,
#nav-toggle span {
   display: none;
}

#nav-toggle {
   width: 36px;
   height: 28px;
   position: relative;
   cursor: pointer;
   position: absolute;
   right:20px;
   top:16px;
}

#nav-toggle span {
   background: #A9AAD8;
   position: absolute;
   left: 0;
   width: 100%;
   height: 4px;
}

#nav-toggle span:nth-of-type(1) { top: 0; }
#nav-toggle span:nth-of-type(2) { top: 12px; }
#nav-toggle span:nth-of-type(3) { top: 24px; }


/* /////////////////// SP ///////////////////// */
@media (max-width:960px){

 .header-nav { height:60px; }

 .header-nav .logo {
  padding:15px 15px;
  height: 20px;
 }

 .header-nav .logo img {
   width: auto;
   height: 30px;
   vertical-align: middle;
 }

 .borderLR {
  font-size: 16px;
  font-weight: 400;
 }

 #global-nav {
   display: flex;
   align-items:center;
   position: fixed;
   background: #fdfdfd;
   width: 100%;
   height: 100%;
   transition: 0.5s;
   transform: translateX(100%);
 }

 #global-nav ul{
   width: 100%;
   flex-direction: column;
   text-align: center;
 }

 #global-nav ul li a {
   padding: 15px 0px;
   border-right:none;
   display: block;
   width: 100%;
   color: #5c5c5a;
   font-weight: 400;
 }

 .open #global-nav {
   transform: translateX(0);
 }

 .open #nav-toggle span:nth-of-type(1) {
     transform: translateY(12px) rotate(-45deg);
 }

 .open #nav-toggle span:nth-of-type(2) {
   display: none;
 }

 .open #nav-toggle span:nth-of-type(3) {
   transform: translateY(-12px) rotate(45deg);
 }

 #nav-toggle,
 #nav-toggle span {
   display: inline;
   transition: .4s;
 }
}




/* ===================== Coming soon ===================== */
/* #Comingsoon {
  width: 100%;
  margin: 0 auto;
}

.title {
  padding-top: 80px;
  margin-top: 0;
}

.icon {
  width: 50%;
  text-align: center;
  margin: 0 auto;
}

.pc-hero-container {
  max-width: 1240px;
  margin: 0 auto;
}

.btn-box {
  text-align: center;
  margin: 0 auto;
  padding: 80px 0;
}

 @media (max-width: 413px) {
   .title {font-size: 44px;}

   .pc-hero-container {
     max-width: 413px;
   }
 } */


 /* ===================== featured works ===================== */
 #featuredworks {
   width: 100%;
   margin: 0 auto;
 }

 .fw-container {
   max-width: 1120px;
   padding: 120px 0 120px 0;
   margin: 0 auto;
   text-align: center;
 }

 .textbox-lg {
   width: 80%;
   padding: 20px 40px 40px 40px;
   display: block;
   margin: auto;
   text-align: center;
 }

 .fw-box {
   display: flex;
   flex-wrap: wrap;
   flex-direction: row;
   text-align: center;
 }

 .fw-innercontainer {
   padding: 30px 30px 20px 30px;
   display: inline-block;
   margin: 20px 20px;
   position: relative;
   width: 40%;
 }

 .fw-innercontainer::before {
   position: absolute;
   content:"";
   top: 7px;
   left: 7px;
   width: 100%;
   height: 100%;
   /* border: 4px dotted rgba(190, 190, 189, 0.6); */
   border-radius: 20px;
 }

 /* adjust work img size*/
 .fw-innercontainer img {
   width: 100%;
   height: auto;
 }

 /* adjust logo size */
 .fw-innerbox img {
   width: 23%;
   height: 50px;
   padding: 20px 0 20px 0;
 }

 /* in case of needing a change of color in future */
 .fw-innercontainer:nth-of-type(1){
   background-color: #fff;
 }
 .fw-innercontainer:nth-of-type(2){
   background-color: #fff;
 }
 .fw-innercontainer:nth-of-type(3){
   background-color: #fff;
 }
 .fw-innercontainer:nth-of-type(4){
   background-color: #fff;
 }
 /* ends here */


 .fw-img {
   height: auto;
   padding: 10px 0 20px 0;
 }

 .fw-description {
   padding: 10px 0 0 0;
   line-height: 24px;
   font-weight: 700;
   font-size: 32px;
 }

 .fw-description span {
   padding-top: 20px;
   font-size: 14px;
   font-weight: 400;
 }

 /* button box hover */
 .btn-lg:hover {
   transition: .5s;
   opacity: 0.8;
   border: 6px solid rgba(169, 170, 216, 1);
   border-radius: 30px;
 }

 .fw-innercontainer:hover::before {
   border: none;
 }

 /* button hover ends here */

  @media only screen and (min-width: 768px) and (max-width: 960px)  {
    #featuredworks { background-size: 100vw;}

    .fw-container {
      max-width: 960px;
      padding: 60px 0;
    }

    .fw-box {
      width: 80%;
      height: auto;
      margin: 0 auto;
    }

    .fw-innercontainer {
      width: 80%;
      height: auto;
    }

    .fw-innerbox {
      font-size: 14px;
      width: 100%;
      padding: 0px 40px 20px 5px;
    }
  }

  @media only screen and (min-width: 600px) and (max-width: 767px) {
    #featuredworks { background-size: 100vw;}
    .fw-container {
      max-width: 767px;
      padding: 80px 0 100px 0;
    }

    .fw-box {
      width: 90%;
      height: auto;
      margin: 0 auto;
    }

    .fw-innercontainer {
      width: 90%;
      height: auto;
    }

    .textbox-lg {
      width: 85%;
      padding: 40px 40px;
      text-align: center;
    }

    .fw-innerbox img {
      width: 26%;
      height: 80px;
      padding: 20px 0 20px 0;
    }
  }

  @media only screen and (min-width: 414px) and (max-width: 599px) {
    #featuredworks { background-size: 100vw;}

    .fw-container {
      max-width: 599px;
      padding: 20px 0 100px 0;
    }

    .fw-innercontainer::before {
      position: absolute;
      content:"";
      top: 0px;
      left: 0px;
    }

    .title {
      font-size: 36px;
      margin: 20px 0;
     }

    .fw-box {
      width: 90%;
      height: auto;
      margin: 0 auto;
    }

    .textbox-lg {
      width: 88%;
      padding: 20px 20px;
      text-align: left;
    }

    .textbox-lg p {
      font-size: 14px;
      text-align: center;
    }

    .fw-innercontainer {
      width: 90%;
      height: auto;
    }

   /* adjust work img size*/
    .fw-innercontainer img {
      width: 100%;
      height: auto;
    }

   /* adjust logo size */
    .fw-innerbox img {
      width: 30%;
      height: 80px;
      padding: 0px 0 0px 0;
    }

    .fw-description {
      padding: 10px 0 0 0;
      line-height: 18px;
      font-size: 28px;
      font-weight: 800;
    }

    .fw-description span {
      font-size: 13px;
      font-weight: 400;
    }
  }

  @media (max-width: 413px) {
    #featuredworks { background-size: 100vw;}

    .fw-container {
      max-width: 599px;
      padding: 20px 0 100px 0;
    }

    .fw-innercontainer::before {
      position: absolute;
      content:"";
      top: 0px;
      left: 0px;
    }

    .title {
      font-size: 36px;
      margin-bottom: 40px;
     }

     .textbox-lg {
       width: 90%;
       padding: 20px 20px;
       text-align: left;
     }

    .fw-box {
      width: 95%;
      height: auto;
      margin: 0 auto;
    }

    .fw-innercontainer {
      width: 100%;
      height: auto;
    }

   /* adjust work img size*/
    .fw-innercontainer img {
      width: 100%;
      height: auto;
    }

   /* adjust logo size */
    .fw-innerbox img {
      width: 30%;
      height: 60px;
      padding: 0px 0 0px 0;
    }

    .fw-description {
      padding: 10px 0 0 0;
      line-height: 18px;
      font-size: 28px;
      font-weight: 800;
    }

    .fw-description span {
      font-size: 13px;
      font-weight: 400;
    }

  }


 /* ===================== フッター =====================  */
   footer { background: #EEEEF7; }

   footer a:visited { color:#A9AAD8; }

   footer {
     padding: 36px 0;
     text-align: center;
       }

   .footer-inner{
     width: 1000px;
     text-align: center;
     font-size: 12px;
     line-height: 1.8;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
   }

   .footer-01 small:nth-of-type(1){
     font-size: 16px;
     font-weight: 600;
     color: #9293BE;
   }


 @media only screen and (min-width: 768px) and (max-width: 960px)  {
   .footer-inner { width: 100%;  }
 }

 @media(max-width: 767px) {

   footer { padding: 30px 20px; }

   .footer-inner { width: 100%; }
   .footer-01 { font-size: 13px; }
   .footer-02 { font-size: 10px;}
 }




/* ===================== 上へ戻るボタン ===================== */

#scroll-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #A9AAD8;
	color: #fff;
	width: 60px;
	height: 60px;
  border-radius: 50%;
  opacity: 0.9;
	text-align: center;
	text-decoration: none;
  z-index: 100;
}

#scroll-btn:hover {
	background-color: #A9AAD8;
  opacity: 0.7;
}

#scroll-btn img {
  width: 30px;
  height: auto;
  padding-top: 20px;
}
@media(max-width: 767px) {

	#scroll-btn {
		width: 50px;
		height: 50px;
	}

  #scroll-btn img {
    width: 30px;
    height: auto;
    padding-top: 17px;
  }
}
