@charset "UTF-8";

@import url(common.css);

* {
    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);
}


section {
    background-color: #fffaed;

    margin-left: auto;
}

.main-box {
    padding-top: 15%;
    padding-left: 7%;
    margin-bottom: 5%;
}

.main-box h2 {
    font-size: 5vw;
}

.main-box p {
    font-size: 3vw;
}

/* 父の日 */
.main-imgbox1 {
    width: 80%;
    min-height: 410px;

    background: linear-gradient(
        110deg,
        #0071bc,
        #9adbed,
        #ffffff
    );

    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}

.main-imgbox1 img {
    width: 320px;
    height: auto;
}

/* クリスマス */
.main-imgbox2 {
    width: 80%;
    min-height: 410px;

    background: linear-gradient(
        110deg,
        #cc0000,
        #216d5e,
        #e8e854
    );

    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}

.main-imgbox2 img {
    width: 320px;
    height: auto;
}



/* ジム */
.main-imgbox3 {
    width: 80%;
    min-height: 410px;

    background: linear-gradient(
        110deg,
        #69b5c1,
        #8db5b3,
        #eed64d
    );

    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}

.main-imgbox3 img {
    width: 320px;
    height: auto;
}

/* ワセリン */
.main-imgbox4 {
    width: 80%;
    min-height: 410px;

    background: linear-gradient(
        110deg,
        #1825ce,
        #8db5b3,
        #ecbad5
    );

    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}

.main-imgbox4 img {
    width: 320px;
    height: auto;
}

/* ランクル */
.main-imgbox5 {
    width: 80%;
    min-height: 410px;

    background: linear-gradient(
        110deg,
        #202020,
        #525353,
        #fffbfd
    );

    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}

.main-imgbox5 img {
    width: 320px;
    height: auto;
}

/* すいかずら */
.main-imgbox6 {
    width: 80%;
    min-height: 410px;

    background: linear-gradient(
        110deg,
        #191970B3,
        #ffbb6d
    );

    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}

.main-imgbox6 img {
    width: 320px;
    height: auto;
}


/* SHIPPO */
.main-imgbox7 {
    width: 80%;
    min-height: 410px;

    background: linear-gradient(
        110deg,
        #A4774D,
        #ffffff
    );

    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    align-items: center;
}

.main-imgbox7 img {
    width: 320px;
    height: auto;
}
.sub-box {
    margin-top: 5%;
    padding-left: 10%;
}

.sub-box p {
    font-size: 2.8vw;
}

.site-box {
    padding-top: 5%;
    padding-left: 10%;

}

.site-box p {
    font-size: 2vw;
}

.site-box p:nth-of-type(1) {
    width: 20%;
}

.site-box p:nth-of-type(2) {

    width: 15%;
}

.site-box p:nth-of-type(3) {
    width: 80%;
    line-height: 2;
}