@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* *****************************************************************************
	Global
***************************************************************************** */
html {
	font-size: 16px;
}
:root{
  --black-color: #333;
}
body {
	font-family: 'Zen Kurenaido Regular','Noto Sans JP','Yu Gothic Medium','游ゴシック体',YuGothic,'Hiragino Kaku Gothic ProN',sans-serif;
	line-height: 1.6;
	letter-spacing: .05em;
  color: var(--black-color);
}
.kasou_page{
  background-color:#f4f4ef;
}
img {
	max-width: 100%;
	height: auto;
}
.inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
h2{
  text-align: center;
  margin: 80px 0;
}
h3{
  /* border: 1px solid #000; */
  text-align: center;
  margin: 100px 0 40px 0;
  font-size: 50px;
}
a{
  color: var(--black-color);
  text-decoration: none;
}
/* *****************************************************************************
	Header
***************************************************************************** */
#header{
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  transition: 0.5s;
}
#header.hide {
  transform:translateY(-80px);
}
#header .inner{
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255,255,255,0.7);
  padding: 0 20px;
  border-radius: 30px;
  margin-top: 20px;
}
/* ハンバーガーメニュー関係 */
.pc-menu{
  display: flex;
}
.pc-menu li{
  margin-right: 40px;
}
.pc-menu li:last-child{
  margin-right: 0;
}
.sp-menu {
  padding-top: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  background: rgba(255,255,255,0.95);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.sp-menu li{
  text-align: center;
  margin-bottom: 24px;
}
.sp-menu.is-active {
  pointer-events: auto;
  opacity: 1;
}
/* ハンバーガーメニュー関係おわり*/
/* *****************************************************************************
	Main
***************************************************************************** */
.main_visual{
  background-position: center;
  background-image: url(../img/top.png);
  height: 100%;
  text-align: center;
  padding-top: 200px;
  background-color: #f4f4ef;
}
.main_title{
  font-size: 105px;
  /* background-image: url(../img/underline.png); */
  background-position: center;
}
.main_p{font-size: 60px;
}
.kokorowokatatini{
  text-align: center;
  margin-top: 180px;
}
.kokorowokatatini img{
  margin-top: 80px;
}
.p1{
  font-size: 60px;
}
h2{
  font-size: 70px;
}

/* *****************************************************************************
	Work
***************************************************************************** */
.work_box{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  align-items:flex-end;
}
.work_box li{
  width: calc((100% - 80px)/3);
  /* border: 1px solid #000; */
}
.work_box img{
  border-radius: 10px;
  position: relative;
  top:0;
  display: inline-block;
  width: 100%;
  transition: all .5s;
}
a img:hover{
  top: -10px;
  box-shadow: 0 4px 6px;
}
.inner2{
  background-color: #f4f4ef;
}
.h3box{
  margin: 0 auto;
}
/* *****************************************************************************
	Profile
***************************************************************************** */
#profile{
  background-color:  #f4f4ef;
}
.profile_box{
  display: flex;
  justify-content: space-between;
}
.profile_detail{
  width: 60%;
}
.skill{
  display: flex;
  margin-top: 40px;
}
.skill_left , .skill_right{
  width: 50%;
}
.hobby_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.hobby_box li{
  width: calc((100% - 80px)/3);
}
picture{
  margin-bottom: 80px;
}
.name{
  font-size: 24px;
}
.skill_p{
  font-size: 24px;
}
.mitume{
  display: flex;
  justify-content: flex-end;
}
/* *****************************************************************************
	footer
***************************************************************************** */
footer small{
  display: block;
  text-align: center;
  background-color: #ccc;
  padding: 16px;
}
/* *****************************************************************************
	Workの個別ページ
***************************************************************************** */
#work_page dl{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
  margin-bottom: 80px;
}
#work_page h2{
  margin: 160px 0 80px 0;
}
.work_text01 dt{
  width: 15%;
  font-weight: bold;
}
.work_text01 dd{
  width: 80%;
}
.work_topimg{
  width: 80%;
  display: block;
  margin: 0 auto;
  /* border: 1px solid #000; */
}
/* CONTACT */
#contact{
  background-image: url(../img/contact.png);
}
address{
  text-align: center;
  font-size: 48px;
  margin-bottom: 40px;
}
.contact_text{
  text-align: center;
  font-size: 24px;
}
/* *****************************************************************************
	レスポンシブ対応
***************************************************************************** */
@media screen and (max-width: 834px) {
  /*ここに幅が 768px 以下で適用される CSS を入力*/
  .work_box li{
    width: calc((100% - 40px)/2);
  }
  h2{
    margin: 64px 0;
  }
  h3{
    margin: 80px 0 32px 0;
  }
}

@media screen and (max-width: 550px) {
  /*ここに幅が 550px 以下で適用される CSS を入力*/
  .inner{
    padding: 0 10px;
  }
  h2{
    margin: 40px 0;
  }
  h3{
    margin: 50px 0 20px 0;
  }
  #header .inner{
    width: 100%;
    background-color: rgba(255,255,255,0.7);
    border-radius: 0;
    margin-top: 0;
  }
  address{
    font-size: 32px;
  }
  /* ハンバーガーメニュー関係 */
  .pc-menu{
    display: none;
  }
  .ham-menu {
    display: inline-block;
    cursor: pointer;
    position: fixed;
    right: 20px;
    top: 10px;
    z-index: 10;
    width: 45px;
    height: 32px;
  }
  .ham-line {
    position: absolute;
    transition: 0.3s;
    width: 100%;
    height: 2px;
    background-color: #000;
  }
  .line-top {
    top: 0;
  }
  .line-middle {
    top: calc(50% - 1px);
  }
  .line-bottom {
    bottom: 0;
  }
  .ham-menu-active > .line-top {
    top: calc(50% - 1px);
    transform: rotate(45deg);
  }
  .ham-menu-active > .line-middle {
    width: 0;
    height: 0;
  }
  .ham-menu-active > .line-bottom {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
  }
  /* ハンバーガーメニュー関係おわり */
  .work_box li{
    width: 100%;
  }
  .profile_box{
    flex-direction: column;
    align-items: center;
  }
  .profile_detail{
    width: 100%;
  }
  .hobby_box{
    gap: 20px;
  }
  .hobby_box li{
    width: calc((100% - 40px)/2);
  }
  /* WORKの個別ページのレスポンシブ */
  #work_page dl{
    row-gap: 0;
    margin-bottom: 20px;
  }
  .work_text01 dt{
    width: 100%;
    margin-bottom: 16px;
  }
  .work_text01 dd{
    width: 100%;
    margin-bottom: 60px;
}
}