@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #F9F9F9;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.5;
}

/*---------------
共通項目
---------------*/

.content {
  max-width: 1200px;
  padding: 0 20px;
  text-align: center;
  margin: 0 auto;
}

.sub-title {
  font-family: 'Roboto Slab', serif;
  display: inline-block;
  font-size: 2rem;
  display: grid;
  place-items: center;
}

.sub-title-jp {
  display: inline-block;
  font-size: 1.5rem;
  display: grid;
  place-items: center;
}

.sub-title-text {
  text-align: center;
  line-height: 2rem;
}

.sub-title-attention {
  text-align: center;
  font-size: 0.6rem;
  margin-top: 10px;
}

.roboto {
  font-family: 'Arbutus Slab', serif;
}

.sp {
  display: none;
}

.pc  {
  display: inline;
}

.link-position {
  display: block;
  position: relative;
  top: -100px;
}

form {
  margin: 50px auto;
}

input,
textarea {
  background-color: #F8F5F2;
  border-radius: 5px;
  border: solid 1px #BABABA;
  margin-top: 3px;
  line-height: 2rem;
  width: 100%;
}

/* エラーメッセージ用 */
.error-text {
  color: #de3f2e;
  margin-top: 2px;
  font-size: 0.8rem;
  text-align: left;
}

.form-area dd {
  width: 50%;
  margin: 0 auto;
}

/*---------------
header
---------------*/

#header {
  width: 100%;
  height: 80px;
  background-color: #F9F9F9;
  position: fixed;
  top: 0;
  z-index: 20;
}

#header .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

#header h1 {
  line-height: 1px;
}

#header h1 img {
  width: 40px;
  height: 40px;
  margin: 20px auto;
}

.header-contact {
  width: 80%;
}

.navi ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.navi .header-img {
  margin-left: 0px;
  padding: 0 10px
}

.navi .border-bottom {
  margin-left: 30px;
  border-bottom: solid 1px black;
  padding: 0 10px 10px 10px;
}

.navi a {
  color: black;
  font-size: 0.9rem;
}

/*---------------
冒頭のアニメーションの設定
---------------*/

.main-animation {
  width: 100vw;
  height: 100vh;
  background-color: white;
  position: fixed;
  top: 0;
  z-index: 30;
  display: grid;
  place-items: center;
}

.main-animation img {
  display: inline-block;
  transform: scale(0.7);
}

/*---------------
main
---------------*/

.mainvisual {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 180px auto 0 auto;
}

.mainvisual-text {
  text-align: center;
}

.mainvisual-title {
  font-size: 2.5rem;
  letter-spacing: 0.1rem;
  font-family: 'Arbutus Slab', serif;
}

.mainvisual-subtitle {
  margin-top: 20px;
  line-height: 2rem;
}

.mainvisual-img {
  position: relative;
  max-width: 50%;
}

.mainvisual-parts {
  position: absolute;
	animation-duration: 3s;
	animation-timing-function:linear;
	animation-iteration-count:infinite;
}

.hand1 {
  bottom: 53%;
  width: 12%;
  right: 37%;
  animation-name: anime;
  transform-origin: center bottom;
}

.hand2 {
  bottom: 50%;
  width: 6%;
  left: 30%;
  animation-name: anime;
  transform-origin: center bottom;
}

.hand3 {
  bottom: 40%;
  width: 12%;
  right: 35%;
  animation-name: anime;
  transform-origin: center bottom;
}

.hand4 {
  bottom: 25%;
  width: 16%;
  right: 10%;
  animation-name: anime;
  transform-origin: right bottom;
}

.head1 {
  bottom: 57%;
  width: 10%;
  right: 18%;
  animation-name: anime2;
  transform-origin: center bottom;
}

.head2 {
  bottom: 57%;
  width: 10%;
  right: 52%;
  animation-name: anime2;
  transform-origin: center bottom;
}

.head3 {
  bottom: 50%;
  width: 10%;
  left: 12%;
  animation-name: anime2;
  transform-origin: center bottom;
}

.lite {
  bottom: 70%;
  width: 10%;
  right: 25%;
  animation-name: anime3;
  transform-origin: center bottom;
}

@keyframes anime{
	0% {transform:rotate(0deg) ;}
	25% {transform:rotate(4deg) ;}
	50% {transform:rotate(8deg) ;}
	75% {transform:rotate(4deg) ;}
	100% {transform:rotate(0deg) ;}
}

@keyframes anime2{
	0% {transform:rotate(0deg) ;}
	25% {transform:rotate(-4deg) ;}
	50% {transform:rotate(-8deg) ;}
	75% {transform:rotate(-4deg) ;}
	100% {transform:rotate(0deg) ;}
}

@keyframes anime2-2{
	0% {transform:rotate(0deg) ;}
	25% {transform:rotate(-2deg) ;}
	50% {transform:rotate(-4deg) ;}
	75% {transform:rotate(-2deg) ;}
	100% {transform:rotate(0deg) ;}
}

@keyframes anime3{
	0% {transform:translateY(0) ;}
	25% {transform:translateY(5px) ;}
	50% {transform:translateY(10px) ;}
	75% {transform:translateY(5px) ;}
	100% {transform:translateY(0) ;}
}

@keyframes anime4{
	0% {transform:translateX(0) ;}
	25% {transform:translateX(5px) ;}
	50% {transform:translateX(10px) ;}
	75% {transform:translateX(5px) ;}
	100% {transform:translateX(0) ;}
}

.sub-mainvisual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 100px auto 0 auto;
}

.sub-mainvisual-title {
  background-color: #EDECEC;
  padding: 20px;
  border-radius: 20px;
  line-height: 30px;
}

.sub-mainvisual-img {
  position: relative;
  max-width: 50%;
}

.sub-mainvisual-parts {
  position: absolute;
	animation-duration: 3s;
	animation-timing-function:linear;
	animation-iteration-count:infinite;
}

.sub-hand1 {
  bottom: 30%;
  width: 12%;
  left: 15%;
  animation-name: anime;
  transform-origin: left bottom;
}

.sub-hand2 {
  bottom: 24%;
  width: 20%;
  right: 15%;
  animation-name: anime;
  transform-origin: right center;
}

.sub-hand3 {
  bottom: 40%;
  width: 4%;
  right: 50%;
  animation-name: anime;
  transform-origin: right bottom;
}

.sub-hand4 {
  bottom: 35%;
  width: 12%;
  right: 35%;
  animation-name: anime;
  transform-origin: right bottom;
}

.sub-head1 {
  top: 25%;
  width: 10%;
  left: 19%;
  animation-name: anime2;
  transform-origin: left bottom;
}

.sub-head2 {
  top: 23%;
  width: 10%;
  left: 52%;
  animation-name: anime2;
  transform-origin: right bottom;
}

.sub-head3 {
  top: 27%;
  width: 14%;
  right: 14%;
  animation-name: anime2;
  transform-origin: center bottom;
}

.rocket {
  bottom: 30%;
  width: 20%;
  left: 33%;
  animation-name: anime3;
  transform-origin: right bottom;
}


/*---------------
works
---------------*/

#works {
  margin-bottom: 100px;
  padding-top: 100px;
}

.works-detail {
  text-align: center;
  margin: 100px auto 0 auto;
}

.works-detail ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.works-title {
  margin-top: 5px;
}

.works-detail li {
  width: 30%;
  height: 350px;
  background-color: #EDECEC;
  border-radius: 20px;
  margin: 0 20px;
  padding: 10px 20px;
}

.works-detail img {
  width: 80px;
  height: 80px;
  margin: 25px 0;
}

.works-detail .works1 img {
  width: 120px;
  height: 120px;
  margin: 15px 0;
}

.works-text1 {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 10px;
}

.works-text1 .works-number {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 10px;
}

.works-text2 {
  font-weight: lighter;
  font-size: 0.8rem;
  margin-top: 10px;
  line-height: 1.5rem;
}

/* フェードイン(初期値) */
.works-detail {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(50px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.works-detail.show {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: 0s; /* フェード開始を0.5秒遅らせる */
}

/*---------------
design&coding&voice
---------------*/

#design {
  margin: 200px auto 0 auto;
}

#design .sub-title,
#design .sub-title-text {
  margin-right: 580px;
}

.design-detail {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.design-detail-left,
.design-detail-right {
  max-width: 50%;
  padding: auto 50px;
}

.design-detail-left img {
  height: 250px;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto;
}

.design-detail-left ul {
  margin: 100px auto;
}

.design-title,
.coding-title {
  font-weight: bold;
  font-size: 1rem;
  margin-top: 10px;
  color: black;
}

.design-detail-right {
  position: relative;
  bottom: 80px;
}

.desing-parts {
  position: absolute;
	animation-duration: 3s;
	animation-timing-function:linear;
	animation-iteration-count:infinite;
}

.parts1 {
  top: 20%;
  width: 12%;
  left: 25%;
  animation-name: anime3;
  transform-origin: left bottom;
}

.parts2 {
  top: 38%;
  width: 15%;
  right: 50%;
  animation-name: anime2;
  transform-origin: center top;
}

.parts3 {
  top: 15%;
  width: 4%;
  right: 25%;
  animation-name: anime2;
  transform-origin: center top;
}

.parts4 {
  top: 16%;
  width: 4%;
  right: 35%;
  animation-name: anime3;
  transform-origin: center top;
}

.parts5 {
  top: 23%;
  width: 6%;
  right: 40%;
  animation-name: anime3;
  transform-origin: center top;
}

.parts6 {
  top: 30%;
  width: 13%;
  right: 25%;
  animation-name: anime4;
  transform-origin: center top;
}

.parts7 {
  top: 40%;
  width: 13%;
  right: 25%;
  animation-name: anime4;
  transform-origin: center top;
}


/*---------------
price
---------------*/

#price {
  margin: 200px auto;
}

.price-text {
  margin-top: 100px;
}

.price-text ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-text li {
  width: 25%;
  height: auto;
  background-color: #EDECEC;
  border-radius: 20px;
  margin: 0 50px;
  padding: 10px;
}

.price-text li a {
  text-decoration: none;
  color: black;
}

.price-text .price-title {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Roboto';
}

.price-text .price-sub-title {
  margin-top: 10px;
  font-size: 0.9rem;
}

.price-text .cost {
  margin-top: 40px;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Roboto';
}

.price-text .sub-cost {
  font-size: 0.8rem;
  border-bottom: solid 1px black;
  display: inline-block;
  margin-top: 5px;
}

.price-text img {
  margin: 50px auto 20px auto;
}


/* フェードイン(初期値) */
.price-text {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(50px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}
/* フェードイン(スクロールした後) */
.price-text.show {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: 0s; /* フェード開始を0.5秒遅らせる */
}


/*---------------
voice
---------------*/

.voice-list {
  margin-top: 50px;
}

.voice-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.voice-img img {
  height: 100px;
  margin: auto 20px;
}

.left {
  margin-left: 200px;
}

.right {
  margin-right: 200px;
}


/* フェードイン(初期値) */
.voice-list .left {
  opacity: 0; /* 最初は非表示 */
  transform: translateX(-1000px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.voice-list .left.show {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateX(0); /* 30px上に移動する */
  transition-delay: 0s; /* フェード開始を0.5秒遅らせる */
}

.voice-list .right {
  opacity: 0; /* 最初は非表示 */
  transform: translateX(1000px); /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.voice-list .right.show {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateX(0); /* 30px上に移動する */
  transition-delay: 0s; /* フェード開始を0.5秒遅らせる */
}


.voice-img {
  position: relative;
}

.voice-parts {
  position: absolute;
	animation-duration: 3s;
	animation-timing-function:linear;
	animation-iteration-count:infinite;
}

.voice-head1 {
  top: -38%;
  width: 18%;
  right: 30%;
  animation-name: anime2-2;
  transform-origin: right bottom;
}

.voice-head2 {
  top: -26%;
  width: 25%;
  right: 27%;
  animation-name: anime2-2;
  transform-origin: left bottom;
}

.voice-head3 {
  top: -35%;
  width: 18%;
  right: 25%;
  animation-name: anime2-2;
  transform-origin: right bottom;
}


/*---------------
contact
---------------*/

#contact {
  margin-top: 80px;
  background-color: #EDECEC;
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact-detail {
  margin: 80px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-img {
  height: 80px;
  width: 80px;
  margin-right: 50px;
}

/*---------------
cases
---------------*/


.slick {
  display: flex;
  margin: 80px auto 0 auto;
  max-width: 1200px;
}

.slick a {
  color: black;
}

.slick img {
  width: 70%;
  height: auto;
  object-fit: cover;
  text-align: center;
  margin: 0 auto 50px auto;
}

.cases-title {
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cases-attention {
  font-size: 0.5rem;
  margin-top: 10px;
}

.cases-title::after {
  display: inline-block;
  content: "";
  width: 100px;
  height: 1px;
  background-color: black;
  margin-left: 30px;
}

.cases-title::before {
  display: inline-block;
  content: "";
  width: 100px;
  height: 1px;
  background-color: black;
  margin-right: 30px;
}

.cases-detail {
  font-size: 0.9rem;
  margin-top: 10px;
}

/*ボタンの設定*/
.slick-arrow {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0;
  width: 20px;
  height: 38px;
  color: transparent;
  z-index: 1;
  transition: opacity 0.5s;
  z-index: 1;
}
.slick-arrow:hover {
  opacity: 0.7;
}

/* 共通設定 */

.slick-next::before,
.slick-next::after,
.slick-prev::before,
.slick-prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.slick-next::after,
.slick-prev::after {
  width: 25px;
  height: 25px;
  border-top: 1px solid black;
  border-right: 1px solid black;
}

/* next */

.slick-next {
  right: -25px;
}
.slick-next::after {
  right: 4px;
  transform: rotate(45deg);
}

/* prev */

.slick-prev {
  left: -25px;
}
.slick-prev::after {
  left: 4px;
  transform: rotate(-135deg);
}

/*---------------
footer
---------------*/

#footer {
  width: 100%;
  background-color: black;
  color: white;
  text-align: center;
  padding: 30px 0;
}


/*---------------
contact-form&apply
---------------*/

#contact-form {
  margin: 150px auto 50px auto;
}

#contact-form .sub-title-text {
  margin-top: 30px;
}

.contact-form-img {
  position: relative;
  left: 700px;
  bottom: 200px;
  width: 50%;
}

.form-parts {
  position: absolute;
	animation-duration: 3s;
	animation-timing-function:linear;
	animation-iteration-count:infinite;
}

.contact-parts1 {
  top: 60%;
  width: 10%;
  right: 53%;
  animation-name: anime3;
  transform-origin: right bottom;
}

.contact-parts2 {
  top: 10%;
  width: 12%;
  right: 40%;
  animation-name: anime3;
  transform-origin: right bottom;
}

.contact-parts3 {
  top: 60%;
  width: 3%;
  right: 20%;
  animation-name: anime3;
  transform-origin: right bottom;
}


.apply-form-img {
  position: relative;
  left: 750px;
  bottom: 200px;
  width: 50%;
}

.apply-parts1 {
  top: 10%;
  width: 20%;
  right: 53%;
  animation-name: anime3;
  transform-origin: right bottom;
}

.apply-parts2 {
  top: 35%;
  width: 12%;
  right: 30%;
  animation-name: anime3;
  transform-origin: right bottom;
}

.apply-plan {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.apply-plan input {
  width: 5%;
}

.apply-plan label {
  text-align: left;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: 'Roboto';
  margin-right: 100px;
}

.apply-plan label span {
  text-align: left;
  font-weight: lighter;
  font-size: 0.7rem;
}

.form-area {
  margin-top: -300px;
}

.form-area dt {
  text-align: left;
  width: 50%;
  margin: 20px auto 0 auto;
}

.category select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 93%;
  line-height: 2em;
  border-radius: 5px;
  background-image: url(../img/icon_arrow.png);
  background-position: right 10px center;
  background-size: 12px 10px;
  width: 100%;
  margin-top: 3px;
  padding: 0 10px;
  background-color: #F8F5F2;
  border-radius: 5px;
  border: solid 1px #BABABA;
}


.privacy-btn {
  margin-top: 50px;
}

#contact-form .sub-title-text {
  margin-bottom: 50px;
}

/*---------------
SP
---------------*/
@media screen and (max-width: 1039px){
  /*---------------
  hamburger(閉じた状態)
  ---------------*/
  .sp {
    display: inline;
  }
  .pc  {
    display: none;
  }
  .hamburger.sp span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: black;
    position: absolute;
    right: 15px;
    z-index: 40;
    transition: 0.5s;
  }
  .hamburger.sp span:nth-child(1) {
    top: 30px;
  }
  .hamburger.sp span:nth-child(2) {
    top: 40px;
  }
  .hamburger.sp span:nth-child(3) {
    top: 50px;
  }
  .mask.sp {
    display: inline-block;
    height: 100vh;
    width: 250px;
    background-color: white;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 30;
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
  }
  .mask-nav {
    text-align: center;
    margin-top: 50px;
  }
  .mask-nav li {
    margin-top: 20px;
  }
  .mask-nav a {
    color: black;
    font-size: 20px;
  }
  form {
    margin: 50px auto;
  }
  input,
  textarea {
    background-color: #F8F5F2;
    border-radius: 5px;
    border: solid 1px #BABABA;
    margin-top: 3px;
    line-height: 2rem;
    width: 100%;
  }  
  .form-area dd {
    width: 90%;
    margin: 0 auto;
  }
  /*---------------
  hamburger(開いた状態)
  ---------------*/
  .open .hamburger.sp span {
    background-color: black;
    position: fixed;
  }
  .open .hamburger.sp span:nth-child(1) {
    top: 40px;
    transform: rotate(45deg);
  }
  .open .hamburger.sp span:nth-child(2) {
    transform: rotate(-45deg);
    top: 40px;
  }
  .open .hamburger.sp span:nth-child(3) {
    transform: rotate(-45deg);
    top: 40px;
  }
  .open .mask.sp {
    display: inline-block;
    opacity: 1;
    position: fixed;
    visibility: visible;
  }
  .open .graymask.sp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: gray;
    opacity: 0.7;
    z-index: 20;
  }
  /*---------------
  header
  ---------------*/
  #header h1 {
    text-align: center;
    margin: 0 auto;
  }
  .navi {
    display: none;
  }
  /*---------------
  main
  ---------------*/
  .mainvisual {
    flex-direction: column-reverse;
    margin: 80px auto 0 auto;
  }
  .mainvisual-img {
    max-width: 100%;
  }
  .mainvisual-img img {
    display: inline-block;
    height: 300px;
  }
  .mainvisual-title {
    font-size: 1.9rem;
    letter-spacing: 0.1rem;
  }
  .mainvisual-subtitle {
    letter-spacing: 0.1rem;
    line-height: 1.8rem;
  }
  .hand1 {
    bottom: 14%;
    width: 12%;
    right: 38%;
    animation-name: anime-sp;
    transform-origin: right bottom;
  }
  .hand2 {
    bottom: 10%;
    width: 6%;
    left: 29%;
    animation-name: anime-sp;
    transform-origin: left bottom;
  }
  .hand3 {
    bottom: 3%;
    width: 12%;
    right: 35%;
    animation-name: anime-sp;
    transform-origin: center bottom;
  }
  .hand4 {
    bottom: -14%;
    width: 16%;
    right: 10%;
    animation-name: anime-sp;
    transform-origin: right bottom;
  }
  .head1 {
    bottom: 12%;
    width: 10%;
    right: 18%;
    animation-name: anime2-sp;
    transform-origin: center bottom;
  }
  .head2 {
    bottom: 12%;
    width: 10%;
    right: 52%;
    animation-name: anime2-sp;
    transform-origin: center bottom;
  }
  .head3 {
    bottom: 9%;
    width: 10%;
    left: 12%;
    animation-name: anime2-sp;
    transform-origin: center bottom;
  }
  .lite {
    bottom: 23%;
    width: 10%;
    right: 25%;
    animation-name: anime3-sp;
    transform-origin: center bottom;
  }
  @keyframes anime-sp{
    0% {transform:rotate(0deg) ;}
    25% {transform:rotate(0.5deg) ;}
    50% {transform:rotate(1deg) ;}
    75% {transform:rotate(0.5deg) ;}
    100% {transform:rotate(0deg) ;}
  }
  @keyframes anime2-sp{
    0% {transform:rotate(0deg) ;}
    25% {transform:rotate(-0.5deg) ;}
    50% {transform:rotate(-1deg) ;}
    75% {transform:rotate(-0.5deg) ;}
    100% {transform:rotate(0deg) ;}
  }
  @keyframes anime2-2-sp{
    0% {transform:rotate(0deg) ;}
    25% {transform:rotate(-0.25deg) ;}
    50% {transform:rotate(-0.5deg) ;}
    75% {transform:rotate(-0.25deg) ;}
    100% {transform:rotate(0deg) ;}
  }
  @keyframes anime3-sp{
    0% {transform:translateY(0) ;}
    25% {transform:translateY(1px) ;}
    50% {transform:translateY(2px) ;}
    75% {transform:translateY(1px) ;}
    100% {transform:translateY(0) ;}
  }
  @keyframes anime4-sp{
    0% {transform:translateX(0) ;}
    25% {transform:translateX(0.5px) ;}
    50% {transform:translateX(1px) ;}
    75% {transform:translateX(0.5px) ;}
    100% {transform:translateX(0) ;}
  }
  .sub-mainvisual {
    flex-direction: column;
    align-items: center;
    margin: 50px auto 0 auto;
  }
  .sub-mainvisual-img {
    margin: 0 auto;
    max-width: 100%;
  }
  /*---------------
  works
  ---------------*/
  .works-detail {
    margin: 30px auto;
  }
  .works-detail ul {
    flex-direction: column;
    text-align: center;
  }
  .works-detail li {
    width: 300px;
    margin: 30px auto;
  }
 
  /*---------------
  design&coding
  ---------------*/
  .design-slick,
  .coding-slick {
    margin-top: 20px;
  }
  #design {
    margin: 80px auto 0 auto;
  }
  #design .sub-title,
  #design .sub-title-text {
    margin-right: auto;
  }
  .design-detail {
    flex-direction: column;
  }
  .design-detail-left,
  .design-detail-right {
    max-width: 100%;
    padding: auto 20px;
  }  
  .design-detail-left img {
    height: 175px;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto;
  }  
  .design-detail-left ul {
    margin: 50px auto;
  }
  .design-detail-right {
    position: relative;
    bottom: auto;
  }  
  /*ボタンの設定*/
  .slick-next::after,
  .slick-prev::after {
    width: 10px;
    height: 10px;
  }
  .slick-next {
    right: -8px;
  }
  .slick-prev {
    left: -8px;
  }
  .slick-next::after {
    right: 2px;
  }
  /*---------------
  price
  ---------------*/
  #price {
    margin: 80px auto;
  }
  .price-text {
    margin-top: 0;
    margin-bottom: 50px;
  }
  .price-text ul {
    flex-direction: column;
  }
  .price-text li {
    width: 300px;
    height: auto;
    background-color: #EDECEC;
    border-radius: 20px;
    margin: 20px auto;
    padding: 10px;
  }
  /*---------------
  voice
  ---------------*/
  .voice-list li.left {
    flex-direction: column;
    margin: 50px auto;
  }
  .voice-list li.right {
    flex-direction: column-reverse;
    margin: 50px auto;
  }
  .voice-img img {
    height: 100px;
    margin: auto 20px;
  }
  .left {
    margin: 30px auto;
  }
  .right {
    margin: 30px auto;
  }
  /* フェードイン(初期値) */
  .voice-list .left {
    opacity: 0; /* 最初は非表示 */
    transform: translateY(-100%); /* 下に30pxの位置から */
    transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
  }
  /* フェードイン(スクロールした後) */
  .voice-list .left.show {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateY(0%); /* 30px上に移動する */
    transition-delay: 0s; /* フェード開始を0.5秒遅らせる */
  }
  .voice-list .right {
    opacity: 0; /* 最初は非表示 */
    transform: translateY(100%); /* 下に30pxの位置から */
    transition: opacity .8s, transform .8s; /* 透過率と縦方向の移動を0.8秒 */
  }
  /* フェードイン(スクロールした後) */
  .voice-list .right.show {
    opacity: 1; /* 表示領域に入ったら表示 */
    transform: translateY(0%); /* 30px上に移動する */
    transition-delay: 0s; /* フェード開始を0.5秒遅らせる */
  }
  .voice-img {
    position: relative;
    top: 30px;
  }
  /*---------------
  contact
  ---------------*/
  .contact-detail {
    margin: 20px auto;
    flex-direction: column;
  }
  .contact-img {
    margin: 50px auto;
    text-align: center;
  }
  #contact {
    margin-top: 80px;
    background-color: #EDECEC;
    padding: 50px 20px;
  }
  .contact-detail-text p {
    padding: 0 20px;
  }
  /*---------------
  contact-form&apply
  ---------------*/
  #contact-form {
    margin: 100px auto 50px auto;
  }
  #contact-form .sub-title-text {
    margin-top: 30px;
  }
  .contact-form-img {
    position: relative;
    left: 30px;
    bottom: 0;
    width: 70%;
    }
  .form-parts {
    position: absolute;
    animation-duration: 3s;
    animation-timing-function:linear;
    animation-iteration-count:infinite;
  }
  .contact-parts1 {
    top: 60%;
    width: 15%;
    right: 55%;
    animation-name: anime3;
    transform-origin: right bottom;
  }
  .contact-parts2 {
    top: 10%;
    width: 15%;
    right: 40%;
    animation-name: anime3;
    transform-origin: right bottom;
  }
  .contact-parts3 {
    top: 65%;
    width: 4%;
    right: 10%;
    animation-name: anime3;
    transform-origin: right bottom;
  }
  .apply-form-img {
    position: relative;
    left: 30px;
    bottom: 0;
    width: 80%;
  }
  .apply-parts1 {
    top: 8%;
    width: 30%;
    right: 60%;
    animation-name: anime3;
    transform-origin: right bottom;
  }
  .apply-parts2 {
    top: 35%;
    width: 20%;
    right: 10%;
    animation-name: anime3;
    transform-origin: right bottom;
  }
  .apply-plan {
    flex-wrap: wrap;
  }
  .apply-plan input {
    width: 5%;
    margin-right: 5px;
  }
  .apply-plan label {
    text-align: left;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Roboto';
    margin-right: 0;
  }
  .apply-plan label span {
    text-align: left;
    font-weight: lighter;
    font-size: 0.7rem;
  }
  .form-area {
    margin-top: 0;
  }
  .form-area dt {
    text-align: left;
    width: 90%;
    margin: 20px auto 0 auto;
  }
  .category select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 93%;
    line-height: 2em;
    border-radius: 5px;
    background-image: url(../img/icon_arrow.png);
    background-position: right 10px center;
    background-size: 12px 10px;
    width: 100%;
    margin-top: 3px;
    padding: 0 10px;
    background-color: #F8F5F2;
    border-radius: 5px;
    border: solid 1px #BABABA;
  }
  /*---------------
  footer
  ---------------*/
  #footer {
    padding: 30px;
  }
}

/*---------------
iPad用に一部加工
---------------*/
@media screen and (max-width: 1019px) and (min-width: 450px){
  /*---------------
  mainvisual
  ---------------*/  
  .mainvisual {
    flex-direction: column-reverse;
    margin: 150px auto 0 auto;
  }
  .design-detail-left img {
    height: 290px;
    object-fit: cover;
    object-position: center top;
    margin: 0 auto;
  }  
  
}
