@charset "utf-8";
/* レイアウトのためのCSS */

body {
    background: #f0f0f0;
    /*font-family:'Baskervville', serif,"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;*/
    color: #333;
    font-size: 1rem;
    line-height: 1.85;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
}

@media screen and (max-width:768px) {
    body {
        font-size: 0.8rem;
    }
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: #fff;
    outline: none;
	font-family: "新ゴ R";
}

a:hover,
a:active {
    text-decoration: none;
}

/* heading */

.heading-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
	width: 72%;
}

.heading-block h1,
h2 {
    font-family: "Rubik Dirt", system-ui;
	font-weight: 400;
	font-style: normal;
    font-size: 6vw;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #fff;
}

h3 {
    font-family: "新ゴ R";
    font-weight: normal;
    color: #fff;
    margin-top: 0px;
}

.heading-block p {
	font-family: "新ゴ B";
    font-size: 1.2vw;
    letter-spacing: 0.5em;
	margin-top: 10px;
}

@media (max-width: 575.98px) {

    /* モバイル */
    .heading-block h1,
    h2 {
        font-size: 4em;
        line-height: 1.5;
    }

    .heading-block p {
        font-size: 1.2em;
        letter-spacing: 0.2em;
		margin-top: 0px;
    }
	
	h3 {
		margin-top: -15px;
    }

}

@media (min-width: 576px) and (max-width: 991.98px) {

    /* タブレット */
    .heading-block h1,
    h2 {
        font-size: 5em;
        line-height: 1.5;
    }

    .heading-block p {
        font-size: 1.5em;
        letter-spacing: 0.2em;
    }
	
	h3 {
		margin-top: -15px;
	}
}

#box1 h2,
#box4 h2,
#box1 h3,
#box4 h3 {
    color: #925410;
}

/* sns icon */
#sns-icon img {
    width: 25px;
}

#sns-icon {
    position: fixed;
    right: 20px;
    top: 20px;
    display: flex;
	flex-direction: column; /* 縦並びにする指定 */
	gap: 5px;
}

#sns-icon li {
    margin: 0 10px;
}

#sns-icon a {
    transition: all .5s;
}

#sns-icon a:hover {
    opacity: 0.7;
}


/* copyright */

small {
    position: fixed;
    left: 20px;
    bottom: 5px;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1;
    z-index: 4;
}

/* トップメニューのレイアウト設定 */
.menu-list {
	display: grid;
	grid-template-columns: 1fr 1fr; /* ここで均等な2列に設定しています */
	gap: 0px 30px;
	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: 20px;
	width: 560px;
}
.menu-list li {
	text-align: left;
}
.menu-list a {
	font-family: "新ゴ B";
	color: #ffffff;
	text-decoration: none;
	font-size: 20px;
	letter-spacing: 1px;
}
.menu-list a:hover {
	text-decoration: underline;
}
@media (min-width: 576px) and (max-width: 991.98px) {
/* タブレット */
	.menu-list {
		gap: 10px 10px;
		width: 530px;
}
}
@media (max-width: 575.98px) {
/* モバイル */
	.menu-list {
		width: 280px;
		gap: 10px 30px;
}
	.menu-list a {
	font-size: 14px;
}
}
.menu-list span {
	font-family: "新ゴ R";
	display: inline-block;
	width: 100%;
	font-size: 11px;
	vertical-align: top; 
	margin-top: -.5rem;
}