@charset "UTF-8";
/* CSS Document */
body{
	color: #4E4449;
	font-family: "Hiragino Mincho Pro", "MS PMincho", serif;
	margin: 0;
	padding: 0;
}
h1{
	color: #A36B21;
}
.header{
	background-color: #E1DDC3;
	padding-bottom: 5px;
}
.nav__items{
	display: flex;
	justify-content: space-between;
	list-style: none;
}
.nav__item a{
	color: #3EA6B1;
	text-decoration: none;
}
img{
		width: 100%;
}
main{
	margin: auto;
}
footer{
	background-color: #E1DDC3;
}
li{
	list-style: none;
}
footer img{
	width: 25px;
}
footer a{
	text-decoration: none;
	color: #4E4449;
}
@media(min-width:1100px){
    .pc{
	    display: block!important;
    }
    .sp{
	    display: none!important;
    }
    .header{
		margin: auto;
	}
	h1{
		font-size: 70px;
		letter-spacing: 2px;
		width: 475px;
		margin: auto auto 30px auto;
		padding-top: 30px;
	}
	main{
		width: 1000px;
	}
	main p{
	    margin: 300px auto 300px auto;
		text-align: center
	}
	.header__nav{
		margin: -10px auto 20px auto;
	}
	.nav__items{
		margin: auto;
		padding: 0;
		width: 1000px;
    }
	.nav__item a{
	    font-size: 30px;
	    font-weight: bolder;
	}
	.nav__item a:hover{
	    text-decoration: underline;
    }
	main{
		margin: auto;
		width: 1000px;
	}
	main img{
		width: 300px;
	}
	article{
		display: flex;
		justify-content: space-between;
		margin: 50px auto 50px auto;
	}
	article p{
		width: 600px;
		font-size: 18px;
		line-height: 32px;
	}
	article a{
		font-size: 25px;
		color: #3EA6B1;
		margin-left: 520px;
	}
	.footer__container{
		width: 1000px;
		margin:  auto;
	}
	footer h2{
		padding-top: 40px;
		font-size: 30px;
	}
	footer h3{
		font-size: 25px;
	}
	.footer__contents{
		display: flex;
		margin: auto auto auto -40px;
		padding-bottom: 50px;
		justify-content: space-between;
		font-size: 18px;
		line-height: 32px;
	}
	footer span{
	    font-size: 25px;
	}
}
@media screen and (min-width:768px) and (max-width:1099px){
    .pc{
	    display: block!important;
    }
    .sp{
	    display: none!important;
    }
	.header{
		margin: auto;
	}
	h1{
		font-size: 50px;
		width: 323px;
		margin: auto auto 20px auto;
		padding-top: 20px;
	}
	main{
		width: 700px;
		margin: auto;
	}
	main p{
	    margin: 300px auto 300px auto;
		text-align: center
	}
	.header__nav{
		margin: -10px auto 20px auto;
	}
	.nav__items{
		margin: auto;
		padding: 0;
		width: 700px;
    }
	.nav__item a{
	    font-size: 25px;
	}
	main img{
		width: 200px;
		height: 200px;
		margin-top: 30px;
	}
	article{
		display: flex;
		justify-content: space-between;
		margin: 50px auto 50px auto;
	}
	article p{
		width: 400px;
		font-size: 16px;
		line-height: 28px;
	}
	article a{
		font-size: 23px;
		color: #3EA6B1;
		margin-left: 330px;
	}
	.footer__container{
		width: 730px;
		margin:  auto;
	}
	footer h2{
		padding-top: 40px;
		font-size: 30px;
	}
	footer h3{
		font-size: 20px;
	}
	.footer__contents{
		display: flex;
		margin: auto auto auto -40px;
		padding-bottom: 50px;
		justify-content: space-between;
		font-size: 16px;
		line-height: 28px;
	}
	footer span{
	    font-size: 20px;
	}
}
@media screen and (min-width:361px) and (max-width:767px){
	.pc{
	    display: none!important;
    }
    .sp{
	    display: block!important;
    }
	 /* ------------------------
    オーバーレイ
    ------------------------ */
    .overlay {
        /* 背景色白 */
        background: #fff;
        /* 位置を固定 */
        position: fixed;
        top: 0;
		right: 0;
        /* 全画面表示 */
        width: 100%;
        height: 100%;
        /* 子要素(g-nav)を天地左右の中央に配置 */
        display: flex;
        justify-content: center;
        align-items: center;
        /* 不透明度0% */
        opacity: 0;
        /* 自分の横幅分、右に移動 */
        transform: translateX(100%);
        /* 0.3秒かけて変化 */
        transition: all 0.3s;
        /* オーバーレイの重なり順を、mainより上、メニューボタンより下にする */
        z-index: 99;
    }
    /* ------------------------
    クラスshowがつくとオーバーレイ部分が表示される
    ------------------------ */
    .overlay.show {
        /* 不透明度100% */
        opacity: 0.9;
        /* 移動なし */
        transform: none;
    }
    /* ------------------------
    ハンバーガーアイコン
    ------------------------ */
    /* メニューボタン */
    .menu-btn {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ffffff;
        /* 位置を固定 */
        position: fixed;
        top: 12px;
        right: 30px;
        /* カーソルを指差しマークにする */
        cursor: pointer;
        /* メニューボタンの重なり順を一番上にする */
        z-index: 999;
    }
    /* 三本線の真ん中 */
    .menu-line {
        background: #333333;
        display: block;
        height: 2px;
        width: 30px;
        position: relative;
        /* 0.3秒かけて変化 */
        transition: all 0.3s;
    }
    /* 三本線の上下 */
    .menu-line::before,
    .menu-line::after {
        content: "";
        display: block;
        height: 2px;
        width: 30px;
        position: absolute;
        /* 0.3秒かけて変化 */
        transition: all 0.3s;
    }
    /* 三本線の上 */
    .menu-line::before {
        top: -10px;
        background: #333333;
    }
    /* 三本線の下 */
    .menu-line::after {
        top: 10px;
        background: #333333;
    }
    /* ------------------------
    クラスactiveがつくとハンバーガーアイコンが「×」になる
    ------------------------ */
    /* 三本線の真ん中にクラスactiveが付いたとき */
    .menu-line.active {
        background: transparent;
    }
    /* 三本線の上にクラスactiveが付いたとき */
    .menu-line.active::before {
        transform: rotate(45deg);
        top: 0;
    }
    /* 三本線の下にクラスactiveが付いたとき */
    .menu-line.active::after {
        transform: rotate(-45deg);
        top: 0;
    }
    /*ナビゲーション*/
    .g-nav {
        text-align: center;
    }
	.g-nav ul {
		padding: 0;
	}
    .g-nav li {
        list-style: none;
    }
    .g-nav li a {
        color: #333333;
        padding: 16px;
        display: inline-block;
        letter-spacing: 0.1em;
        text-decoration: none;
        font-size: 24px;
    }
	.header{
		margin: auto;
	}
	h1{
		font-size: 35px;
		width: 290px;
		margin: auto auto 10px auto;
		padding-top: 10px;
	}
	main{
		width: 360px;
	}
	main p{
	    margin: 200px auto 200px auto;
		text-align: center
	}
	.header__nav{
		margin: -10px auto 10px auto;
	}
	.nav__items{
		margin-right: auto;
		margin-left: auto;
		padding: 0;
		width: 350px;
    }
	.nav__item a{
	    font-size: 17px;
		letter-spacing: -1.5px;
	}
	main img{
		margin-left: 50px;
		width: 200px;
		height: 200px;
	}
	article{
		width: 300px;
		margin: 50px auto 50px auto;
	}
	article p{
		width: 300px;
		font-size: 15px;
		line-height: 27px;
	}
	article a{
		font-size: 23px;
		color: #3EA6B1;
		margin-left: 120px;
	}
	.footer__container{
		width: 300px;
		margin:  auto;
	}
	footer h2{
		padding-top: 40px;
		font-size: 30px;
	}
	footer h3{
		font-size: 20px;
	}
	.footer__contents{
		margin: auto auto auto -40px;
		padding-bottom: 50px;
		font-size: 15px;
		line-height: 27px;
	}
	footer span{
	    font-size: 18px;
	}
}
@media(max-width:360px){
	.pc{
	    display: none!important;
    }
    .sp{
	    display: block!important;
    }
	 /* ------------------------
    オーバーレイ
    ------------------------ */
    .overlay {
        /* 背景色白 */
        background: #fff;
        /* 位置を固定 */
        position: fixed;
        top: 0;
		right: 0;
        /* 全画面表示 */
        width: 100%;
        height: 100%;
        /* 子要素(g-nav)を天地左右の中央に配置 */
        display: flex;
        justify-content: center;
        align-items: center;
        /* 不透明度0% */
        opacity: 0;
        /* 自分の横幅分、右に移動 */
        transform: translateX(100%);
        /* 0.3秒かけて変化 */
        transition: all 0.3s;
        /* オーバーレイの重なり順を、mainより上、メニューボタンより下にする */
        z-index: 99;
    }
    /* ------------------------
    クラスshowがつくとオーバーレイ部分が表示される
    ------------------------ */
    .overlay.show {
        /* 不透明度100% */
        opacity: 0.9;
        /* 移動なし */
        transform: none;
    }
    /* ------------------------
    ハンバーガーアイコン
    ------------------------ */
    /* メニューボタン */
    .menu-btn {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ffffff;
        /* 位置を固定 */
        position: fixed;
        top: 12px;
        right: 20px;
        /* カーソルを指差しマークにする */
        cursor: pointer;
        /* メニューボタンの重なり順を一番上にする */
        z-index: 999;
    }
    /* 三本線の真ん中 */
    .menu-line {
        background: #333333;
        display: block;
        height: 2px;
        width: 30px;
        position: relative;
        /* 0.3秒かけて変化 */
        transition: all 0.3s;
    }
    /* 三本線の上下 */
    .menu-line::before,
    .menu-line::after {
        content: "";
        display: block;
        height: 2px;
        width: 30px;
        position: absolute;
        /* 0.3秒かけて変化 */
        transition: all 0.3s;
    }
    /* 三本線の上 */
    .menu-line::before {
        top: -10px;
        background: #333333;
    }
    /* 三本線の下 */
    .menu-line::after {
        top: 10px;
        background: #333333;
    }
    /* ------------------------
    クラスactiveがつくとハンバーガーアイコンが「×」になる
    ------------------------ */
    /* 三本線の真ん中にクラスactiveが付いたとき */
    .menu-line.active {
        background: transparent;
    }
    /* 三本線の上にクラスactiveが付いたとき */
    .menu-line.active::before {
        transform: rotate(45deg);
        top: 0;
    }
    /* 三本線の下にクラスactiveが付いたとき */
    .menu-line.active::after {
        transform: rotate(-45deg);
        top: 0;
    }
    /*ナビゲーション*/
    .g-nav {
        text-align: center;
    }
	.g-nav ul {
		padding: 0;
	}
    .g-nav li {
        list-style: none;
    }
    .g-nav li a {
        color: #333333;
        padding: 16px;
        display: inline-block;
        letter-spacing: 0.1em;
        text-decoration: none;
        font-size: 24px;
    }
	.header{
		margin: auto;
	}
	h1{
		font-size: 35px;
		width: 290px;
		margin: auto auto 10px auto;
		padding-top: 10px;
	}
	main{
		width: 330px;
	}
	main p{
	    margin: 200px auto 200px auto;
		text-align: center
	}
	.header__nav{
		margin: -10px auto 10px auto;
	}
	.nav__items{
		margin-right: auto;
		margin-left: auto;
		padding: 0;
		width: 330px;
    }
	.nav__item a{
	    font-size: 17px;
		letter-spacing: -1.5px;
	}
	main img{
		margin-left: 50px;
		width: 200px;
		height: 200px;
	}
	article{
		width: 300px;
		margin: 50px auto 50px auto;
	}
	article p{
		width: 300px;
		font-size: 15px;
		line-height: 27px;
	}
	article a{
		font-size: 23px;
		color: #3EA6B1;
		margin-left: 120px;
	}
	li p{
		width: 300px;
	}
	.footer__container{
		width: 300px;
		margin:  auto;
	}
	footer h2{
		padding-top: 40px;
		font-size: 30px;
	}
	footer h3{
		font-size: 20px;
	}
	.footer__contents{
		margin: auto auto auto -40px;
		padding-bottom: 50px;
		font-size: 15px;
		line-height: 27px;
	}
	footer span{
	    font-size: 18px;
	}
}

