@charset "UTF-8";
/* CSS Document */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
body{
	font-family: "Zen Maru Gothic", serif;
}
html {
	overflow-x: hidden;
}
#works .works_text p {
	text-align: center;
    margin-bottom: 3em;
}

*{
	margin: 0px;
	padding: 0px;
}

/* ページTOPに戻る */
.pagetop{
    display: none;
    position: fixed;
    right: 15px;
    bottom: 60px;
}
.pagetop a{
    display: block;
    font-size: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #f5dad2;
    border-radius: 50%;
    line-height: 50px;
}
.pagetop a i{
    font-size: 20px;
    color:#fff;
    line-height: 50px;
	font-style: normal;
}

#header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px 40px;
  position: fixed;
  z-index: 10;
	    background-color: #F5DAD2;
}

a {
  color: #ffffff;
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}

.site-title a img {
	width: 90%;
}
/*-------------------------------------------
ここからハンバーガーメニュー
-------------------------------------------*/
#navi {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  color: #fff;
  padding: 60px 25px;
  background-color: #f0f0f0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 20;
  opacity: 0;
}
#navi a {
  color: #5d5d5d;
}
.open #navi {
  left: 0;
  opacity: 1;
}
#navi ul {
  margin: 0;
  padding: 0;
}
#navi ul.nav-menu {
  margin-bottom: 60px;
}
#navi ul.nav-menu li {
  position: relative;
  margin: 0;
  padding: 20px 0;
  border-bottom: solid 1px #5d5d5d;
}
#navi ul.nav-sns li {
  padding: 5px 0;
}
.toggle_btn {
    display: block;
    position: fixed;
    top: 17px;
    right: 45px;
    width: 30px;
    height: auto;
    transition: all .5s;
    cursor: pointer;
    z-index: 20;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: -25px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 10;
  cursor: pointer;
}
/*-------------------------------------------
ここからメインビジュアル
-------------------------------------------*/
.mainVisual {
	position: relative;
    height: 650px;
    background-size: cover;
	background-color: #e5e5e5;
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.mainVisual img {
	position: absolute;/*絶対配置*/
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
}
.mainVisual__area {
  justify-content: flex-start;
  gap: 10px 50px;
}


/*-------------------------------------------
ここからmessage
-------------------------------------------*/
#message {
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
}
.container .message_text .sec-title {
  text-align: center;
  margin-bottom: 3em;
  margin-top: 3em;
	font-family: sans-serif;
}
#message .message_text .frame {
  padding: 65px 100px 70px;
  background-color: #FCFFE0;
  text-align: center;
	line-height: 200%;
}
/*-------------------------------------------
ここからworks
-------------------------------------------*/
#works {
  max-width: 1240px;
  margin: 0 auto;
}
/*-------------------------------------------
worksのグリッド
-------------------------------------------*/
#works .work1 {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
#works .work1 .item {
  transition: all 0.3s ease;
  box-shadow: 0 0 8px 4px #ccc;
	background-color: #FCFFE0;
}
#works .work1 img {
  vertical-align: top;
}
#works .work1 .item-content {
  padding: 1em;
}
#works .work1 .item-cat {
  font-size: 0.75rem;
  margin-bottom: 20px;
}
#works .work1 .item-text {
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
#works .work1 .item-date {
  font-size: 0.75rem;
  text-align: right;
}
.container .works_text .sec-title {
  text-align: center;
  margin-bottom: 3em;
  margin-top: 3em;
	font-family: sans-serif;
}
/*-------------------------------------------
マウスオーバー
-------------------------------------------*/
.button1 a {
    background: #eee;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button1 a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -2em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #75a47f;
    transition: 0.3s;
}
.button1 a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2em;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background-color: #75a47f;
    transition: 0.3s;
}
.button1 a:hover:before, .button1 a:hover:after {
    right: -2.5em;
}
.button1 a:hover {
    background: #d9e8dd;
}

/*-------------------------------------------
ここからabout
-------------------------------------------*/
#about {
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
}
.container .about_text .sec-title {
  text-align: center;
  margin-bottom: 3em;
  margin-top: 3em;
	font-family: sans-serif;
}
.about_text .mami_photo img {
  margin: 0 auto;
  width: 30%;
}
.about_text .about_me .sec-title {
  margin-top: 3em;
  margin-bottom: 1em;
	font-family: sans-serif;
}
.about_text .about_me p {
  text-align: center;
  padding-bottom: 3em;
}
#about .about_text .mami_photo {
  text-align: center;
}
.container #about .about_text {
	margin-bottom: 5em;
}
/*-------------------------------------------
マウスオーバー1カラムの時
-------------------------------------------*/

.button2 a {
    background: #fafafa;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button2 a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -2em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #75a47f;
    transition: 0.3s;
}
.button2 a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -2em;
    transform: translateY(-50%);
    width: 60px;
    height: 2px;
    background-color: #75a47f;
    transition: 0.3s;
}
.button2 a:hover:before, .button2 a:hover:after {
    right: -2.5em;
}
.button2 a:hover {
    background: #d9e8dd;
    
}


/*-------------------------------------------
トップに戻る
-------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: #ab101b;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}

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

.wrapper .footer {
    width: 100vw;
    height: 20vw;
    display: block;
    background-color: #F5DAD2;
    position: relative;
	margin-top: 5em;
}
.wrapper .footer .copyright {
	text-align: center;
	color: #ffffff;
	font-size: 0.4em;
    font-weight: bold;
    letter-spacing: .5em;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	width: 100%;
}


/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 600px) {
  /* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }

  .toggle_btn {
    right: 20px;
  }
.mainVisual img {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
	}
	
  /*-------------------------------------------
SP_about
-------------------------------------------*/
  .about_text .about_me p {
    padding: 0em 2em 2em;
    text-align: left;
  }
  /*-------------------------------------------
SP_message
-------------------------------------------*/
  #message .message_text .frame {
    background-color: #f3f3f3;
    text-align: center;
    padding: 1em;
  }
  /*-------------------------------------------
SP_works
-------------------------------------------*/
  #works .work1 .item {
    transition: all 0.3s ease;
    box-shadow: 0 0 8px 4px #ccc;
    width: 95%;
    margin: 0 auto;
  }
}
