@charset "UTF-8";

/* 共通部分
--------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Yu Gothic Mediam", "游ゴシック Mediam", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  color: #432;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.wrapper

/* 表示サイズ */
  {
  margin: 0 auto;
  padding: 0 8%;
}

h1 {
  margin: 18px 0;
}

h1 img {
  width: 250px;
  height: auto;
}

h2 {
  width: 260px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Ubuntu Condensed', sans-serif;
  color: #432;
  font-size: 3rem;
  border-bottom: #432 1px solid;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.sec1 h2 a, .sec2 h2 a {
  font-size: 3rem;
}

h3 {
  font-family: 'Ubuntu Condensed', sans-serif;
  text-align: center;
  font-size: 2rem;
  padding: 10px;
}

a {
  display: block;
  list-style: none;
  color: #432;
}

p {
  font-size: 1.5rem;
  line-height: 2;
}

.kouji {
  text-align: center;
  font-size: 2rem;
  padding-top: 80px;
}

/*========= ページトップリンクのためのCSS ===============*/
/*スクロールリンクの形状*/
.scroll-top {
  /*表示位置*/
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
  /*それぞれに0.5秒の変化のアニメーション*/
  /*縦書き*/
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  /*改行禁止*/
  white-space: nowrap;
  /*矢印の動き*/
  animation: arrowmove 1s ease-in-out infinite;
}

@keyframes arrowmove {
  0% {
    bottom: 20px;
  }

  50% {
    bottom: 25px;
  }

  100% {
    bottom: 20px;
  }
}

/*.scroll-viewクラスがついたら出現*/
.scroll-top.scroll-view {
  opacity: 1;
  visibility: visible;
}

/*リンク全体の aタグの形状*/
.scroll-top a {
  text-decoration: none;
  color: #666;
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
}

/*スクロールリンクの形状*/

.js-scroll a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #666;
}

.js-scroll a::before {
  content: "";
  position: absolute;
  top: 30px;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #666;
  transform: skewX(-31deg);
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-scroll a::before {
  right: -11px;
}

/*ページトップリンクの形状*/

.js-pagetop a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 50px;
  background: #666;
}

.js-pagetop a::before {
  content: "";
  position: absolute;
  top: 0;
  right: -6px;
  width: 1px;
  height: 20px;
  background: #666;
  transform: skewX(31deg);
}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-pagetop a::before {
  right: 0;
}

/*========= ページ送りのためのCSS ===============*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  list-style-type: none;
  margin-top: 80px;
}

.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: #f2f2f2;
  color: #8d9c93;
}

.pagination p {
  font-family: 'Ubuntu Condensed', sans-serif;
  font-size: 2rem;
}

.pagination a:not(:hover) {
  text-decoration: none;
}

.pagination .current a {
  background-color: #8d9c93;
  color: #fff;
  pointer-events: none;
}

.pagination_bottom {
  margin-top: 50px;
}

/* ★★★index
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

/* ★★★モバイル版★★★ */

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

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #999;
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/* ナビゲーション */
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: left;
}

#g-nav li a {
  font-size: 1.2rem;
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 20px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #666;
  width: 50px;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.page_header {
  /* position: fixed; */
  background-color: #fff;
  width: 100%;
}

.page_header .main_nav {
  display: none;
}

.page_header .border {
  border: #432 1.5px solid;
}

/*========= TOPイメージ ===============*/
.home img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

/* CSSアニメーションの指定 */
.meishi {
  animation: SlideIn 1.6s;
}

/* CSSアニメーションの設定 */
@keyframes SlideIn {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.title p {
  font-family: 'Ubuntu Condensed', sans-serif;
  color: #432;
  font-size: 4.5rem;
  text-align: center;
  line-height: 1.2;
  padding: 80px 0;
}

/* その場で */
.title p {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*========= ABOUT ME ===============*/
.sec1 {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.sec1 p {
  margin-top: 20px;
  text-align: justify;
}

/*========= WORKS ===============*/
.sec2 {
  background: repeating-linear-gradient(-45deg,
      #e8e8e8,
      #e8e8e8 5px,
      #fff 0,
      #fff 10px);
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.button {
  display: block;
  background-color: #8d9c93;
  color: #fff;
  width: 150px;
  height: 150px;
  line-height: 150px;
  border-radius: 2px;
  font-size: 1.5rem;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
}

.button:hover {
  opacity: .8;
}

/* moreの矢印 */
/*矢印が右に移動する*/
.btn {
  /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 20px 20px 0;
  color: #432;
  text-decoration: none;
  outline: none;
}

/*矢印と下線の形状*/
.btn::before {
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: -8px;
  left: 15%;
  /*下線の形状*/
  width: 85%;
  height: 1px;
  background: #432;
  /*アニメーションの指定*/
  transition: all .3s;
}

.btn::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: -3px;
  right: 0;
  /*矢印の形状*/
  width: 15px;
  height: 1px;
  background: #432;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

/*hoverした際の移動*/
.btn:hover::before {
  left: 30%;
}

.btn:hover::after {
  right: -15%;
}

.sec1 a, .sec2 a {
  font-size: 1.7rem;
}

/*========= CONTACT ===============*/
#sec3 {
  padding-top: 50px;
  /* padding-bottom: 50px; */
  text-align: center;
}

form div {
  margin-bottom: 1px;
}

label {
  font-size: 1.6rem;
  margin-bottom: 5px;
  display: block;
  text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea {
  font-size: 1.6rem;
  background: #f8f8f8;
  border: 0.5px solid #8d9c93;
  border-radius: 3px;
  margin-bottom: 15px;
  width: 100%;
}

textarea {
  width: 100%;
  height: 6rem;
}

.sousin {
  border: none;
  font-size: 1.5rem;
  border-radius: 3px;
  cursor: pointer;
  background: #cda36d;
  color: #fff;
  padding: 10px;
  width: 100px;
}

/*========= FOOTER ===============*/
footer {
  background: #e8e8e8;
  text-align: center;
  margin-top: 100px;
  padding: 26px 0;
}

footer p {
  color: #432;
  font-size: 1rem;
}

/* ★★★ABOUT ME
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
.container .skill_item {
  margin-top: 10px;
  margin-bottom: 20px;
}

.container .skill_item p {
  line-height: 1.3;
}

.skill_item img {
  width: 60%;
  height: auto;
}

.intoro_overview {
  width: 100%;
  height: auto;
}

#top .intro img {
  display: block;
  width: 230px;
  height: auto;
  margin: 0 auto;
}



/* ★★★works
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
.works .website_logo img {
  display: block;
  width: 350px;
  height: 100%;
  padding-top: 80px;
  margin: 0 auto;
}

.works h2 {
  margin-top: 100px;
}

.item {
  margin: 20px 0;
  text-align: center;
}

.item img {
  display: block;
  width: 350px;
  height: auto;
  margin: 0 auto;
}

/* ★★★詳細ページ
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
.works .images {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  margin-top: 80px;
}

.works .images img {
  width: 100%;
  height: auto;
}

.works .works_nav .detail_title p {
  font-family: 'Ubuntu Condensed', sans-serif;
  color: #432;
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.2;
  margin-top: 80px;
}

.works .works_nav .detail_title p:nth-child(2) {
  font-size: 1.6rem;
  margin-top: 5px;
}

.overview {
  margin-top: 20px;
}

.overview .list, .intoro_overview .list {
  padding: 10px;
  border-bottom: #432 1px dotted;
}

.overview .list p, .images p, .intoro_overview .list p {
  line-height: 1.3;
}

.overview .list p:nth-child(1) {
  padding-bottom: 5px;
}

.images p:nth-child(1) {
  padding-bottom: 5px;
}

.intoro_overview .list p:nth-child(1) {
  padding-bottom: 5px;
}

.images .sub_border img {
  border: 1px #432 solid;
}

.sub_border p, .sub p {
  padding-top: 10px;
}

.images .sub_border img {
  border: 1px #432 solid;
}

.images .overview .logo {
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto;
  margin-top: 80px;
}

.images .url {
  margin-top: 10px;
  font-size: 2rem;
  text-align: center;
}

/* スライダー */
/*------ スライダーの横幅 ------*/
.slider {
  width: 70%;
  margin: 0 auto;
}

.slider2 {
  width: 100%;
  margin: 0 auto;
}

/*------ スライダーのドットの装飾 ------*/
.slide-dots button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.slide-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.slide-dots li {
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 1px solid #cda36d;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  transition: background-color .5s ease;
}
.slide-dots li.slick-active {
  background-color: #cda36d;
}
.slide-dots li:hover {
  background-color: #cda36d;
}
.slide-dots li:last-child {
  margin-right: 0;
}

/*------ スライダー画像 ------*/
.slider img {
  display: block;
  width: 200px;
}

/*-------- 高さ調整 ----------*/
.slider .slick-slide {
  height: auto;
}

/*---------- 矢印 ----------*/
.slider .slick-next {
  right: -60px;
}

.slider .slick-prev {
  left: -60px;
}

.slider .slick-arrow {
  width: initial;
  height: initial;
  z-index: 2;
}

.slider .slick-arrow:before {
  font-size: 30px;
  color: #8d9c93;
}




/* ★★★タブレット版★★★ */
@media (min-width: 768px) {
  h2 {
    font-size: 4rem;
    border-bottom: #432 1px solid;
    margin-bottom: 30px;
  }

  .sec1 h2 a, .sec2 h2 a {
    font-size: 4rem;
  }

  p {
    font-size: 1.7rem;
    line-height: 2.2;
  }

  .slider2 {
    width: 70%;
    margin: 0 auto;
  }

  /*========= TOPイメージ ===============*/
  .home .meishi {
    width: 500px;
    height: auto;
  }

  .title p {
    font-size: 6rem;
  }

  .page_header .border {
    border: #432 2px solid;
  }

  /*========= WORKS ===============*/
  .button {
    font-size: 1.8rem;
  }

  /*========= CONTACT ===============*/
  #sec3 {
    width: 435px;
  }

  /* ★★★ABOUT ME
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  #top .intro img {
    display: block;
    width: 300px;
    height: auto;
  }

  .container .skill_item {
    width: 285px;
  }

  .container .skill_item p {
    line-height: 1.3;
  }


  /* ★★★WORKS
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  h3 {
    font-size: 2.5rem;
  }

  /* 詳細ページ */
  /* ------ スライダー画像 ------ */
  .slider .slick-arrow:before {
    font-size: 35px;
  }

  .slider {
    width: 300px;
  }

  .works .images {
    width: 600px;
  }

  .intro img {
    width: 600px;
  }

}




/* ★★★パソコン版★★★ */
@media (min-width: 1280px) {
  .openbtn1 {
    display: none;
  }

  .page_header .main_nav {
    display: block;
  }

  .page_header .gnav .main_nav {
    display: flex;
    list-style: none;
    font-size: 2rem;
    font-family: 'Ubuntu Condensed', sans-serif;
  }

  .page_header .gnav .main_nav li {
    border-right: 1px solid;
    padding: 10px 20px;
  }

  .page_header .gnav .main_nav li a {
    color: #443322;
  }

  .page_header .gnav .main_nav li:hover {
    opacity: .5;
  }

  .page_header .gnav .main_nav li:nth-child(1) {
    color: #432;
    border-left: 1px solid;
  }

  .page_header .gnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /*========= ABOUT ME ===============*/
  .intro {
    display: flex;
    align-items: center;
  }

  /*========= WORKS ===============*/
  .button {
    /* background-image: url(.); */
    width: 200px;
    height: 200px;
    line-height: 200px;
  }

  .slider {
    width: 400px;
  }

  .works .images {
    width: 1000px;
  }

  #top .intro img {
    padding: 30px 80px 30px 80px;
  }

  /*========= CONTACT ===============*/
  #sec3 {
    width: 700px;
  }
}