@charset "utf-8";

/* 全体設定 */
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", serif;
  color: #333;
  background-color: #ededed;
  text-align: center;
}

.European-language {
  font-family: "Didact Gothic", sans-serif;
}

/* ＝＝＝＝＝＝＝＝トップページ＝＝＝＝＝＝＝＝ */

/* ーーーーーヘッダーーーーーー */
.header {
  height: 80px;
  font-family: "Didact Gothic", sans-serif;
  position: fixed;
  /* 横幅を指定しないとfixedで崩れる↓ */
  width: 100%;

  background-color: #ededed;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  z-index: 1;
}

.nav-pc {
  margin: 0 auto;
  width: 80%;
}

.header__navItems {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.header .navItem {
  padding: 20px;
}

.navItem a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #333;
  position: relative;
}

.navItem a:hover {
  color: #3394b6;
  transition: .5s;
}

/* ↓↓↓↓↓トップページ以外のヘッダー。ホームへ戻るボタン↓↓↓↓↓↓ */
.header .backhome {
  display: inline-block;
  background-color: #3394b6;
  padding: 25px 10px;
  border-radius: 50%;
  text-decoration: none;
  color: #f3f3f3;
  margin-top: 20px;
}
.header .backhome:hover {
  background-color: #949393;
  transition: .5s;
}
/* ↑↑↑↑↑トップページ以外のヘッダー。ホームへ戻るボタン↑↑↑↑↑ */


/* ハンバーガーメニュー */
/* ====＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝==ハンバーガーメニューのみ650px! ====＝＝＝＝＝＝＝＝＝＝＝＝＝＝=*/
@media screen and (min-width: 651px) {
  .hamburger-menu {
    display: none;
  }

  .nav-sp {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  .nav-pc {
    display: none;
  }

  .hamburger-menu {
    width: 42px;
    height: 42px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
    border: 1px solid #535252;
    border-radius: 50%;
    margin: 18px;
  }

  .hamburger-menu span {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #333333;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    transition: .5s;
  }

  .hamburger-menu span:first-child {
    top: 14px;
  }

  .hamburger-menu span:nth-child(2) {
    top: 20px;
  }

  .hamburger-menu span:last-child {
    top: 26px;
  }

  #js-hamburger-menu.open span {
    top: 20px;
    left: 8px;
    width: 25px;
    margin: 0;
  }

  #js-hamburger-menu.open span:first-child {
    transform: rotate(45deg);
  }

  #js-hamburger-menu.open span:nth-child(2) {
    display: none;
  }

  #js-hamburger-menu.open span:last-child {
    transform: rotate(-45deg);
  }

  .header__nav-sp {
    display: block;
    transition: right .5s;
  }

  .nav-sp .open {
    right: 0;
  }

  .nav-sp {
    display: none;
    /* background-image: linear-gradient(90deg, rgba(242, 205, 163, .95), rgba(255, 237, 250, .95)); */
    background-color: #f3f3f3;
    position: absolute;
    top: 66px;
    right: 0px;
    width: 100%;
    z-index: 9999;
  }

  .header__navItems {
    display: block;
    letter-spacing: .1rem;
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .header .navItem a {
    color: #333333;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    display: block;
    padding: 20px 0;
    margin: 0 auto;
    transition: .5s;
  }

  @media (hover: hover) and (pointer: fine) {
    .navigation__link:hover {
      background: #333;
    }
  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ハンバーガーメニューここまで＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */




/* ボタン */
.btn {
  position: relative;
  display: block;
  border: 1px solid #333;
  padding: 16px 50px;
  width: 300px;
  height: 50px;
  text-decoration: none;
  color: #333;
  margin: 84px auto;
  letter-spacing: .2rem;
}

.btn::after {
  position: absolute;
  content: "";
  background-image: url(../images/link.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 13px;
  right: 13px;
}

.btn:hover {
  border: 1px solid #3394b6;
  color: #3394b6;
  transition: .3s;
}

/* ボタンここまで */


/* リンク */
.link {
  position: relative;
  display: block;
  border: 1px solid #333;
  padding: 16px 50px;
  width: 300px;
  height: 50px;
  text-decoration: none;
  color: #333;
  margin: 84px auto;
  letter-spacing: .2rem;
}

.link:hover {
  border: 1px solid #3394b6;
  color: #3394b6;
  transition: .3s;
}

/* リンクここまで */


/* メイン */
.main {
  width: 73%;
  margin: 0 auto;
}

.fv {
  height: 100vh;
}

.fv img {
  display: block;
  width: 300px;
  padding-top: 260px;
}

.fv p {
  text-align: right;
}

.fv .title {
  padding-top: 200px;
  letter-spacing: .1rem;
}

.fv .name {
  font-size: 1.2rem;
  font-weight: bold;
  padding-top: 20px;
}


/* h２の共通タイトル */
h2 {
  font-size: 3rem;
  letter-spacing: .3rem;
  font-weight: bold;
  color: #333333;
}

.h2-tool,
.h2-works, 
.h2-contact {
  padding-top: 100px;

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


/* セクション上下の幅 */
.tool,
.works
{
  margin-top: 100px;
}

/* ＝＝＝＝＝＝＝＝自己紹介＝＝＝＝＝＝＝＝ */

/* 説明 */
.about .wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.about .sentence {
  width: 60%;
  text-align: center;
  padding: 0 80px;
}

.about .text {
  line-height: 1.8;
  font-size: 0.9rem;
  padding: 30px 0 50px;
  text-align: left;
}

/* sns */
.about .sns {
  /* background-color: #fff; */
  display: flex;
  flex-direction: row;
  width: 100px;
  margin: 0 auto;
  justify-content: space-around;

}
.about .sns img {
  display: block;
  width: 24px;
  height: 24px;
}


/* 写真 */
.about .pic {
  content: "";
  background-image: url(../images/aboutーimage.jpg);
  background-repeat: no-repeat;
  background-position: 3% 50%;
  background-size: contain;
  height: 472px;
  width: 402px;
}




/* ＝＝＝＝＝＝＝＝ツールページ＝＝＝＝＝＝＝＝ */


/* 新 */
.tool .wrap {
  margin: 100px auto;
  /* width: 90%; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}


.tool .parts {
  display: flex;
  flex-direction: column;
  width: 40%;
  align-items: flex-start;
  margin: 10px;
  padding: 30px;
  background-color: #f3f3f3;
}

.tool .titleArea {
  display: flex;
  flex-direction: row;
  align-items: center;

}

.tool .parts img {
  display: block;
  height: 50px;
  margin-right: 16px;
}

.tool .parts .title {
  display: inline-block;
  padding-left: 50px;
  letter-spacing: .1rem;
  font-size: 18px;
}

.tool .parts .title01 {
  padding-left: 15px;
}


.tool .parts .description {
  display: inline-block;
  margin-top: 16px;
  text-align: left;
  line-height: 1.5;
  font-size: 14px;
}

/* マーケティングの部分調整 */
.tool .area {
  display: flex;
  flex-direction: row;
}

.tool .area .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* ＝＝＝＝＝＝＝＝制作物＝＝＝＝＝＝＝＝*/

.works .performances img {
  display: block;
  width: 255px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  margin-bottom: 20px;
}

.works .performances img:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.works .performances {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
  margin: 100px 0;
}

.works .work01,
.works .work02,
.works .work03,
.works .work04,
.works .work05 {
  margin-top: 20px;
}

.works .performances p {
  text-align: left;
  line-height: 1.5;
  font-size: 14px;
}

.works .performances .title {
  font-size: 18px;
  letter-spacing: .2rem;
}

.job span {
  border-bottom: 2px solid #3394b6;
  margin-top: 10px;
  font-size: 14px;
}


/* フッター */
.footer {
  background-color: #8ab6c5;
}

.footer .btn {
  font-size: 14px;
  margin: 30px auto;
}

.footer .btn::after {
  position: absolute;
  content: "";
  background-image: url(../images/mail.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 16px;
  height: 11px;
  top: 18px;
  right: 25px;
}
.footer .text {
  text-align: center;
  font-size: 16px;
  line-height: 1.8;
  padding: 167px 0 29px;
}

.footer .subtext {
  text-align: center;
  font-size: 12px;
  padding-bottom: 167px;
}

.footer .copy {
  padding: 50px 0;
}


/* ＝＝＝＝＝＝＝＝お問い合わせ(contact.html)＝＝＝＝＝＝＝＝ */

.contact .text {
  margin-top: 50px;
  line-height: 1.8;
}

.contact .contactForm {
  width: 100%;
  margin: 40px auto;
  align-items: flex-start;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 70px;
}

table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

table.formTable td,
table.formTable th {
  padding: 20px;
}

table.formTable th {
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left;
}

table.formTable td input,
table.formTable textarea {
  border: none;
  border: 1px solid rgba(51, 51, 51, .3);
  width: 80%;
  height: 40px;
}

.contact .confirmation {
  margin-top: 30px;
}

.contact .confirmation input {
  padding: 15px 80px;
}

.contact .confirmation input:hover {
  border: 1px solid #3394b6;
}





/* 製作物(work01,02,03,04,05.html) */

.works img {
  display: block;
  width: 70%;
  margin: 20px auto;
}


.works .parts {
  display: flex;
  flex-direction: row;
  align-items: start;
}

.works .text-wrap {
  width: 60%;
  margin: 100px auto;
  line-height: 1.8;
}

.works h3 {
  font-weight: bold;
  display: inline-block;
  width: 200px;
  text-align: left;
}

.works .text-wrap .parts {
  padding: 40px 0;
}


.works .text-wrap .parts .text {
  display: inline-block;
  width: 500px;
  text-align: left;
  margin-left: 173px;
}


.colors {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-left: 154px;
}

.color-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
}

.color {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #ddd;
}




/* ーーーーそれぞれのカラーーーーー */

/* フジノマリン */
.blue {
  background-color: #96c0e5;
}

.yellow {
  background-color: #f7dc75;
}

.light-blue {
  background-color: #cfe3f8;
}

/* ストレッチ */
.green01 {
  background-color: #81b214;
}

.green02 {
  background-color: #e8e8cc;
}

.orange {
  background-color: #f8c221;
}

/* スナックあおい */
.dark-brown {
  background-color: #251408;
}

.brown {
  background-color: #74502d;
}

.pink {
  background-color: #ffd1ff;
}

/* 古車 */
.gray02 {
  background-color: #757573;
}

.gray03 {
  background-color: #aeaeab;
}

.yellow02 {
  background-color: #cdb849;
}




/* 他の制作物も見る */
.newworks .other {
  margin-top: 200px;
  text-align: center;
}

.other-works {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 50px auto;
  width: 70%;
}

.other-works img {
  display: block;
  width: 200px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}


.other-works img:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.other-works .text {
  text-align-last: left;
  font-size: 14px;
  padding-top: 10px;
}

.other-works .subtext {
  text-align-last: left;
  font-size: 12px;
  padding-top: 10px;
}




/* // フェードイン前 */
.js-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}


/* // フェードイン後 */
.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}