@charset "UTF-8";


* {
    margin: 0;
    padding: 0;
}

#page-top {
    display: none;
}


nav.NavMenu{
	position: fixed; /*表示位置を固定*/
	z-index: 2; /*重ね順を変更*/
	top: 0; /*表示位置を指定*/
	left: 0; /*表示位置を指定*/
	background: #fff;/*背景を白にする*/
	color: #000; /*文字色を黒にする*/
	text-align: center; /*テキストを中央揃え*/
	width: 100%; /*全幅表示*/
	transform: translateX(-100%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
	transition: all 0.6s; /*アニメーションの時間を指定*/
}

nav.NavMenu ul{
	background: #fffaed; /*背景をグレーにする*/
	width: 100%;
}

nav.NavMenu ul li{
    width: 100%;
    padding-top: 1%;
	list-style-type: none;
	border-bottom: 1px dotted #333;
}

nav.NavMenu ul li:last-child{
	padding-bottom: 0;
	border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
}

nav.NavMenu ul li a{
	display: block; /*クリックできる領域を広げる*/
	color: #000;
    font-size: 3.2vw;
}


/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active {
	transform: translateX(0%);/*上から出したい場合は、transform: translateYを使う。*/
}


/*トグルボタンのスタイルを指定*/
.Toggle {
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 12px;
	width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 3;/* ボタンを一番上にしている(押せなくなるから) */
}

.Toggle span {
	display: block;
	position: absolute;
	width: 30px;
	border-bottom: solid 3px #000;
	transition: .35s ease-in-out;			/*変化の速度を指定*/
	left: 6px;
}

.Toggle span:nth-child(1) {
	top: 9px;
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}



.header-box {
    height: 50vw;
    margin-left: auto;
    background-image: url(../images/header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 5vw;
    color:#fffaed;
}

.header-box p {
   
    margin-left: 8%;
}

.header-box p:nth-of-type(1) {
    padding-top: 10%;
}


/* ここからabout */
.about-box {
    background-color: #fffaed;
}

.about-textbox1 {
    display: flex;
    align-items: baseline;
}

.about-textbox1 h2 {
    font-size: 5vw;
    margin-left: 1em;
    margin-right: 1em;
}

.about-textbox1 p {
    font-size: 3vw;
}

.about-flexbox {
    display: flex;
    flex-wrap: wrap;
    margin-left: 10%;
}

.about-flexbox img {
    padding: 4%;
    width: 300px;
    height: 300px;
}

.about-textbox2 {
    padding: 2% 4%;
    width:380px;
}

.about-textbox2 p:nth-of-type(1) {
    font-size: 3vw;
    font-weight: 100px;
}

.about-textbox2 p:nth-of-type(2) {
    margin-bottom: 5%;
    font-size: 2.5vw;
}

.about-textbox2 p:nth-of-type(3),.about-textbox2 p:nth-of-type(4) {
    font-size: 2.5vw;
    line-height: 1.8;
}
/* ここまで */

/* ここからWorks */


.works-box {
    background-color: #fffaed;
}

.works-textbox1 {
    display: flex;
    align-items: baseline;
}

.works-textbox1 h2 {
    font-size: 5vw;
    margin-left: 1em;
    margin-right: 1em;
}

.works-textbox1 p {
    font-size: 3vw;
}

.works-flexbox {
    display: flex;
    flex-wrap: wrap;
    margin-left: 10%;
}

.works-flexbox a {
    display: block;
    text-decoration: none
}

.works-flexbox .box {
    padding: 2%;
}

.box:hover {
    transform: scale(1,1);
    transition: 0.8s;
}

.box  {
    transform: scale(0.9,0.9);
    transition: 1s;
}


.works-imgtextbox {
    margin-top: 3%;
}
.works-imgtextbox p:nth-of-type(1) {
    font-size: 3.5vw;
    font-weight: bolder;
}



/* ここから作品 */

/* 父の日 */
/* 画像のぼかし */
.works-imgbox {
    position: relative;
    width: 350px;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.works-imgbox::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url("../images/banner.png");
    background-size: cover;
    background-position: center;
    filter: blur(15px);
}

/* 元画像はぼかさない */
.works-imgbox img {
    position: relative;
    z-index: 1;
    width: 70%;
    height: auto;
    display: block;
}

/* クリスマス */
.works-imgbox2 {
    position: relative;
    width: 350px;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.works-imgbox2::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url("../images/banner2.png");
    background-size: cover;
    background-position: center;
    filter: blur(15px);
}

.works-imgbox2 img {
    position: relative;
    z-index: 1;
    width: 70%;
    height: auto;
    display: block;
}

/* ジム */
.works-imgbox3 {
    position: relative;
    width: 350px;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.works-imgbox3::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url("../images/banner3.jpg");
    background-size: cover;
    background-position: center;

    filter: blur(15px);
}

.works-imgbox3 img {
    position: relative;
    z-index: 1;
    width: 70%;
    height: auto;
    display: block;
}


/* ワセリン */
.works-imgbox4 {
    position: relative;
    width: 350px;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.works-imgbox4::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url("../images/banner4.jpg");
    background-size: cover;
    background-position: center;

    filter: blur(15px);
}

.works-imgbox4 img {
    position: relative;
    z-index: 1;
    width: 70%;
    height: auto;
    display: block;
}


/* ランクル */
.works-imgbox5 {
    position: relative;
    width: 350px;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.works-imgbox5::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url("../images/banner5.jpg");
    background-size: cover;
    background-position: center;

    filter: blur(15px);
}

.works-imgbox5 img {
    position: relative;
    z-index: 1;
    width: 70%;
    height: auto;
    display: block;
}


/* 宿 */
.works-imgbox6 {
    position: relative;
    width: 350px;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.works-imgbox6::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url("../images/web2-2.png");
    background-size: cover;
    background-position: center;
    filter: blur(15px);
}

.works-imgbox6 img {
    position: relative;
    z-index: 1;
    width: 70%;
    height: auto;
    display: block;
}


/* カフェ */
.works-imgbox7 {
    position: relative;
    width: 350px;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.works-imgbox7::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-image: url("../images/web1-1.png");
    background-size: cover;
    background-position: center;
    filter: blur(15px);
}

.works-imgbox7 img {
    position: relative;
    z-index: 1;
    width: 70%;
    height: auto;
    display: block;
}

/* ↓ここからContact */
.contact-box {
    width: 100%;
    background-color: #fffaed;
    padding-bottom: 5%;
}

.contact-textbox1 {
    display: flex;
    align-items: baseline;
}

.contact-textbox1 h2 {
    font-size: 5vw;
    margin-left: 1em;
    margin-right: 1em;
}

.contact-textbox1 p {
    font-size: 3vw;
}


form {
    width: 90%;
    margin-top: 5%;
    margin-left: 8%;
    font-size: 1.8vw;
}

.form-flex {
    display: flex;
    margin-bottom: 4%;
}

.label-item {
    width: 43%;
}

label span {
    margin-right: 1em;
    color: #ff0000;
}

.input-item {
    width: 60%;
}

.input-item input {
    width: 97%;
    padding: 0.1em;
}

.form-flex ul {
    display: flex;
    list-style-type: none;
}

.form-flex ul li {
    margin-right: 1em;
}

select {
    padding: 0.1em;
}

.message-item {
    width: 56%;
}

textarea {
    width: 97%;
    height: 8em;
    padding: 0.3em;
}

.submit-item {
    width: 14%;
    margin-left: auto;
    margin-right: auto;
}

.submit-item input {
    width: 100%;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}
/* ↑ここまで */

footer {
    display: none;
}