/*  */
.flex {
  display: flex;
}

li {
  list-style: none;
}
a {
  color: #393939;
  text-decoration: none;
}
img{
  width: 100%;
}


body {
  background-color: #eaeaea;
  color: #393939;
  font-family: 'Montserrat Subrayada', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Oswald', sans-serif;
  font-family: 'Sarina', cursive;
  font-family: 'Zen Antique', serif;
}

::-webkit-scrollbar {
  width: 10px;
  height: 20px;
  }
  ::-webkit-scrollbar-track {
  background-color: #adadad67;
  /* border-radius: 100px; */
  }
  ::-webkit-scrollbar-thumb {
  background: #ff6600ce;
  width: 10px;
  }
  
  ::selection {
    background-color: #ff6600ce;
    color: #fff;
  }

/*  sp design */
/* common */
header {
  max-width: 500px;
  margin: 0 auto;
  font-family: 'Oswald', sans-serif;
}
main {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

/* header */
header {
  width: 100%;
  position: relative;
  z-index: 5;
}
.header_container {
  position: fixed;
  background-color: #eaeaeacb;
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  z-index: 6;
}
header h1{
  font-size: 2rem;
  font-weight: 400;
}
.menu_btn {
  position: relative;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height:40px;
  border-radius: 5px;
  border: 2px solid #292929;
}
.menu_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 8px;
  height: 2px;
  border-radius: 2px;
  background: #292929;
  width: 60%;
}
.menu_btn span:nth-child(1){
  top: 9px;
}
.menu_btn span:nth-child(2) {
  top: 19px;
}
.menu_btn span:nth-child(3) {
  top: 29px;
}

/* btn animation */
.menu_btn.opened span:nth-of-type(1) {
  top: 13px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}
.menu_btn.opened span:nth-of-type(2) {
opacity: 0;/*真ん中の線は透過*/
}
.menu_btn.opened span:nth-of-type(3){
  top: 25px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

/* nav */
#gnav {
  display: none;
  z-index: 2;
  position: fixed;
  left: 0;
  opacity: 0.9;
  top: 0px;
  height: 100vh;
  width: 100%;
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
  background-color: white;
}

#gnav ul {
  flex-direction: column;
  text-align: center;
  padding-top: 100px;
}
#gnav li {
  margin: 0 auto;
  padding: 20px 0;
  width: 275px;
  border-bottom: 2px solid #393939;
}
#gnav a {
  font-size: 1.5rem
}
/* for pc nav animation */
.link-current {
  border-bottom: 2px solid #FF7A00;
  transition: 500ms ease;
}
#pc_nav li:hover {
  opacity: .8;
  transition: 1000ms;
}

/* main */
.main_visual {
  width: 100%;
  background-image: url(../img/main_visual.png);
  background-size: cover;
}
.main_visual img {
  width: 100%;
}
.copy {
  font-family: 'Sarina', cursive;
  font-size: 4rem;
  color: #FF7A00;
  line-height: 1.8;
  padding: 30% 3%;
  white-space: nowrap;
}



/* for fade */
.copy {
  display: none;
}
.fade {
  display: none;
}
/* scroll in */
.scroll_in {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* section */
section {
  width: 90%;
  margin: 0 auto;
  padding: 100px 0 20px;
}

h2 {
  font-family: 'Montserrat Subrayada', sans-serif;
  font-size: 2.5rem;
  color: #FF7A00;
  text-align: center;
  padding-bottom: 50px;
}
h3 {
  font-family: 'Zen Antique', serif;
  font-size: 1.375rem;
  color: #393939;
  text-align: center;
  padding: 60px 0 20px;
  font-weight: 400;
}

p {
  font-size: 1.125rem;
  text-align: justify;
  line-height: 1.5;
}

/* service */
.price_table {
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  color: #393939;
  width: 100%;
  gap: 20px;

}
.price_table td {
  padding: 10px 0;
  vertical-align: middle;
}

.price_table .yen {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  text-align: end;
}
.price_table .table_head {
  text-align: center;
  padding-right: 20px;
}
.table_icon {
  width: 80px;
}
.table_icon img {
  width: 100%;
}
.table_ref {
  font-size: 0.875rem;
  text-align: end;
  padding: 15px 0 0;
}

.service_para_02 {
  padding: 50px 0 0;
}


.faq_table dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 0px;
  border-bottom: 1px solid #393939;
  margin-bottom: 20px;
}

.faq_table dd {
  display: none;
  line-height: 1.3;
  padding: 0 5px 20px;
  text-align: justify;
}
.clicked {
  transform: rotate(-180deg);
  transition: 1s;
}

/* works */
.works_container {
  width: 80%;
  margin: 0 auto;
  padding: 60px 0 0px;
}
#works img {
  border-radius: 5px;
}
.works_url {
  display: block;
  text-align: end;
  font-family: 'Oswald', sans-serif;
}
.works_details {
  padding: 30px 0 0;
}
#works a :hover {
  opacity: .8;
  transition: 1000ms;
}

/* demos */
.demos_slide {
  padding: 0 0 50px;
}
.demos_slide li {
  padding: 0 5px;

}


/* contact */
/* .form_box {
  text-align: center;
  padding: 10px 0 0;
}
.form_box input {
  max-width: 300px;
  width: 100%;
  padding: 10px;
  margin: 10px 0 0;
  border: none;
  background-color: #f8fcff;
  font-family: 'Zen Antique', serif;
  font-size: 1rem;
  color: #393939;
}
.form_box input:focus {
  outline: none;
}
.form_box textarea {
  max-width: 300px;
  width: 100%;
  height: 200px;
  padding: 10px;
  margin: 10px 0 0;
  background-color: #f8fcff;
  border: none;
  font-family: 'Zen Antique', serif;
  font-size: 1rem;
  color: #393939;
}
.form_box textarea:focus {
  outline: none;
}
.submit_box {
  text-align: center;
  margin: 0 auto;
  border: none;
}

.submit_btn {
  background-color: #f8fcff;
  font-family: 'Zen Antique', serif;
  color: #292929;
  font-size: 1rem;
  width: 150px;
  border: none;
  padding: 10px;
  margin: 30px 0 0;
} */

.contact_btn {
  width: 250px;
  height: 60px;
  justify-content: center;
  gap: 30px;
  align-items: center;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.contact_btn img {
  width: 15%;
}

.contact_details {
  padding: 0 0 50px;
}
.contact_con :hover {
  opacity: .7;
  transition: 1000ms;
}




/* footer */

footer {
  padding: 100px 0 0 ;
}

.social_medias {
  width: 300px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

/* icon hover */
.fa-youtube:hover {
  color: red;
  transition: 500ms ease;
}

.fa-x-twitter:hover {
  color:#1C96E8;
  transition: 500ms ease;
}

.fa-instagram-square{
  background: linear-gradient(45deg, yellow, red, purple);
  background-clip: text;
  -webkit-background-clip: text;
}

.fa-instagram-square:hover {
  color: transparent;
  transition: 500ms ease;
}

.privacy{
  display: block;
  text-decoration: underline;
}
.privacy, .copy_right {
  font-size: .85rem;
  text-align: center;
  padding: 30px 0 0;
}

