@charset "utf-8";

/* 共通部分 */
* {
	box-sizing: border-box;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Cormorant Garamond', serif;

    color: #3d1e04;
    font-size: 14px;
}
.wrapper {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 15px;
}
section {
	padding-top: 40px;
	margin-top: -40px;
  margin-bottom: 150px;
}
.title {
    font-family: 'Roboto', sans-serif;
    font-family: 'Cormorant Garamond', serif;

    margin-bottom: 70px;
    font-size: 36px;
    text-align: center;
    letter-spacing: 1.8px;
    font-weight: bold;
}
.sub_title {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 2;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
.text {
	line-height: 2;
	letter-spacing: .7px;
}
img {
  max-width: 100%;
  margin-bottom: 30px;
}
p {
  letter-spacing: 0.7px;
}

/* HEADER */
header {
    position: fixed;
    background-color: #3d1e04;
    color: #FFFFFF;
    padding: 20px 0;
	  width: 100%;
    opacity: 0.7;
}
header h1 {
    font-size: 26px;
    line-height: 37px;
    font-weight: bold;
}
header h1 a {
    color: #ffffff;
}
header h1 a:hover {
    opacity: 0.7;
}
h2 {
  margin-top: 50px;
}

/* メニューボタン【通常時】 */
.header_menu {
    /* 画面に固定 */
    position: fixed;
    /* 上から30px */
    top: 30px;
    /* 右から15px */
    right: 15px;
    /* 重なり順（優先順位）を変更 */
    /* 数値が大きいほど優先順位が高い */
    z-index: 3;
    /* 横幅 */
    width: 25px;
    /* 高さ */
    height: 17px;
    /* ボタンの罫線を削除 */
    border: none;
    background-color: #3d1e04;
  }
  /* マウスオーバーした場合 */
  .header_menu:hover {
    /* マウスオーバーした時のアイコンを変更 */
    cursor: pointer;
  }
  /* フォーカス（タブ移動）した場合 */
  .header_menu:focus{
    /* 罫線を削除 */
    outline: 0;
    -webkit-tap-highlight-color: #3d1e04;
  }
/*---------------*/
  .scroll {
    position: absolute;
    left: 0;
    bottom: -29px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    z-index: 60;

}
.scroll img {
  margin-top: 3px;
  animation-name: scrollAnimation;
  animation-duration: 1.8s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@keyframes scrollAnimation {
  0% {
      transform: scaleY(0);
      transform-origin: top;
  }
  50% {
      transform: scaleY(1);
      transform-origin: top;
  }
  50.1% {
      transform: scaleY(1);
      transform-origin: bottom;
  }
  100% {
      transform: scaleY(0);
      transform-origin: bottom;
  }
}
/*-----------------*/  
  /* 3本線の基本設定 */
  .line{
    /* spanはinlineが初期値なのでblockに変更 */
    display: block;
    /* それぞれの位置を設定するためにabsoluteに変更 */
    position: absolute;
    /* 右から12px */
    right: 0;
    /* 線の横幅 */
    width: 25px;
    /* 線の高さ */
    height: 2px;
    /* 線の色（背景色で設定） */
    background-color: #FFF;
    /* 0.5秒で変化 */
    transition: all .5s;
  }
  /* 1本目の線 */
  .line:nth-child(1){
    /* 上から17px */
    top: 0;
  }
  /* 2本目の線 */
  .line:nth-child(2){
    /* 上から25px */
    top: 8px;
  }
  /* 3本目の線 */
  .line:nth-child(3){
    /* 上から33px */
    top: 16px;
  }
  /* メニューボタン【クリック時】 */
  /* 1本目の線 */
  .active .line:nth-child(1){
    /* 8px下にズラし-45度傾ける */
    transform: translateY(8px) rotate(-45deg);
  }
  /* 2本目の線 */
  .active .line:nth-child(2){
    /* 透明化して見えなくする */
    opacity: 0;
  }
  /* 3本目の線 */
  .active .line:nth-child(3){
    /* 8px上にズラし45度傾ける */
    transform: translateY(-8px) rotate(45deg);
  }
  
  
  /* メニュー画面【通常時】 */
  .nav_menu{
    display: flex;
    align-items: center;
    justify-content: center;
    /* 画面を固定 */
    position: fixed;
    /* 上にくっつける */
    top: 0;
    /* 横幅の分だけ画面の外にズラす */
    left: -100%;
    /* 重なり順（優先順位）を変更 */
    z-index: 2;
    /* 横幅 */
    width: 100%;
    /* 高さ */
    height: 100vh;
    /* 背景色 */
    background: #3d1e04;
    /* 0.5秒で変化 */
    transition: all .5s;
  }
  .nav_item{
    /* ul/liのマーカーを削除 */
    display: flex;
	flex-direction: column;
	gap: 50px;
	text-align: center;
  }
  .nav_item .link{
    /* リンクの文字色 */
    color: #FFF;
    /* リンクの下線を削除 */
    text-decoration: none;
    font-size: 16px;
	line-height: 2;
	letter-spacing: .8px;
  }
  .nav_item .link:hover{
    /* リンクがマウスオーバーした時に文字の透明度が70％に変化 */
    opacity: .7;
  }
  /* メニュー画面【クリック時】 */
  .nav_menu.active {
    /* ズラしていた分を戻して画面に表示させる */
    left: 0;
  }

/* メイン画像 */
.main_bg {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 150px;
	padding-top: 76px;
	height: 100vh;
	box-sizing: border-box;
	background: url("../images/mobile1.png") no-repeat center center/cover;
}
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}

.coffee {
  
  box-shadow:#3d1e04 0px 0px 6px;
}
.designer2 img {
  margin-top: 0; 
  margin-bottom: 10px;
  box-shadow:#3d1e04 0px 0px 6px;
}
.designer2 li {
text-align: center;
}
.designer2 ul li p {
padding: 0 30px 10px;
line-height: 2;
}



/* leather 
.leather img {
    margin-top: 0; 
    margin-bottom: 10px;
    aspect-ratio: 345/150;
    object-fit: cover;
}
.leather li {
  text-align: center;
}
.leather ul li p {
  padding: 0 30px 10px;
  line-height: 2;
}
*/
.leather img {
  margin-top: 0; 
  margin-bottom: 10px;
  box-shadow:#3d1e04 0px 0px 6px;
}
.leather li {
text-align: center;
}
.leather ul li p {
padding: 0 30px 10px;
line-height: 2;
}

section.release {
  margin-bottom: 100px;
}

/* skill */
.skill ul {
  color: #3d1e04 1px;
  border-top: solid #3d1e04 1px;
  border-bottom: solid #3d1e04 1px;
  padding: 0.5em 0 0.5em 1.5em;

}

.skill ul li {
  line-height: 1.5;
  list-style: disc;
}
/*
.skill ul li:hover {
  opacity: 0.6;
}

.skill ul li a {
  color: #141414;
}

.skill ul li p {
  padding: 20px 30px;
  line-height: 2;
}
*/
.about li {
  text-align: center;
}

/* コンタクト　*/
label {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
  letter-spacing: 0.8px;
}
input {
  width: 100%;
  height: 30px;
  margin-bottom: 30px;
}
textarea {
  width: 100%;
  height: 171px;
  margin-bottom: 50px;
}
.contact_btn {
  width: 235px;
  margin: 0 auto;
  margin-bottom: 150px;
}
.contact_btn input[type="submit"] {
  height: 59px;
  border-radius: 50px;
  padding: 15px 0;
  background-color: #3d1e04;
  color: #fff;
  font-size: 20px;
  box-shadow:#3d1e04 0px 0px 6px;
  border: none;
  font-weight: bold;
  letter-spacing: 1px;
}


.gaiduSito {
  text-align: center;
  margin-bottom: 100px;
}
.gaiduSito img {
  width: 40px;
}

footer {
  background-color: #3d1e04;
  padding: 20px 0;
  color: #ffffff;
  text-align: center;
}

/* pc */
@media (min-width:600px) {

  /* header */
  .wrapper {
    padding: 0;
  }
  header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
  }
  .nav_menu {
    position: static;
		width: auto;
		height: auto;
  }
  .nav_item {
		flex-direction: row;
		gap: 50px;
    background-color: #3d1e04;
	}

  .header_menu {
    display: none;
  }
  

  /* #top */
.main_bg {
  background: url("../images/haikei.jpg") no-repeat center/cover;
}

.pc {
  display: block !important;
  width: 600px;
  opacity: 0.3;
}
.sp {
  display: none !important;
}

.leather img {
  aspect-ratio: auto;
  width: 300px;
}
.leather ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}


  /* service */
  .brand, .release {
    display: flex;
    align-items: center;
    gap: 70px;
  }
  .brand div {
    order: 2;
  }
  .brand img {
    order: 1;
  }
  .designer2 img {
    aspect-ratio: auto;
    width: 300px;
  }
  .designer2 ul {
    display: flex;
    justify-content: center;
    gap: 30px;
  }

/* skill */
  .skill ul {
    display: flex;
    justify-content: space-between;
    max-width: 1030px;
  }
  .skill ul li {
    display: grid;
    column-gap: 2em;
    grid-template-columns: repeat(2,auto);

  }

/* contact */
  .contact {
    max-width: 700px;
    margin: 0 auto;
  }

  .gaiduSito img {
    width: 80px;
  }
}