@charset "UTF-8";

/*
 01.font
 02.base
 03.block
 04.header
 05.footer
 06.main_menu
*/
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@400;500;600;700;800&display=swap');
/*====================================
	Reset
====================================*/
abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{text-decoration:none}ins,mark{background-color:#ff9;color:#000}mark{font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}
div, a, li, span, textarea, input{ -webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
input[type="text"], input[type="password"],textarea,button{ outline: none; vertical-align:middle;}
input[type="text"], input[type="password"],textarea{border: 1px solid #ccc;}

/*====================================
	01.font
====================================*/
html{
	font-size: 62.5%;
}
body, textarea, input, select, label{
	color: #000;
	font-size: 1.6rem;
	line-height: 1.6;
    font-weight: 500;
	-webkit-text-size-adjust: 100%;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
h1, h2, h3, h4{
    font-weight: 600;
}

/*====================================
	02.base
====================================*/
a{
	color: #000;
    text-decoration: none;
}
img{
    vertical-align: middle;
}
.sp{
    display: none;
}

/* btn */
.btn{
    display: block;
	width: 250px;
    margin: 0 auto;
    border: 1px solid #a0a0a0;
}
	.btn a{
		display: block;
		height: 50px;
		line-height: 50px;
		font-family: 'Big Shoulders Display', cursive;
		font-weight: 800;
		font-size: 18px;
		letter-spacing: 1px;
		text-align: center;
		position: relative;
		overflow: hidden;
		z-index: 50;
	}
	.btn a::before{
		z-index: 50;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		left: 15px;
		content: "";
		display: inline-block;
		width: 10px;
		height: 10px;
		background-repeat: no-repeat;
		background-image: url(../img/icon_arrow_next.png);
		background-size: 10px;
	}
	.btn.back a::before{
		background-image: url(../img/icon_arrow_prev.png);
	}
	.btn a::after {
	  position: absolute;
	  z-index: -1;
	  display: block;
	  content: '';
	  -webkit-box-sizing: border-box;
	  -moz-box-sizing: border-box;
	  box-sizing: border-box;
	  -webkit-transition: all .3s;
	  transition: all .3s;
	  top: -100%;
	  width: 100%;
	  height: 100%;
	}
	.btn:hover {
		border: 1px solid #000;
	}
	.btn a:hover {
		color: #fff;
	}
	.btn a:hover::before{
		background-image: url(../img/icon_arrow_next_w.png);
		background-size: 10px;
	}
	.btn.back a:hover::before{
		background-image: url(../img/icon_arrow_prev_w.png);align-content
	}
	.btn a:hover::after {
		top: 0;
		background: #000 !important;
	}

/* pan */
#pan{
    text-align: center;
	margin-bottom: 60px;
}
#pan li{
    list-style: none;
    font-size: 1.3rem;
    display: inline-block;
}
#pan li + li::before{
    content: "＞";
    padding: 0 .8rem;
}


/*====================================
	03.block
====================================*/
.wrap{
    /* max-width: 1400px;
    margin-left: auto;
    margin-right: auto; */
    width: 100%;
    padding: 0 60px;
}
#contents{
    /* margin-top: 90px; */
    padding: 0;
}
#contents .sec_ttl{
    font-family: 'Big Shoulders Display', cursive;
    font-weight: 800;
    font-size: 42px;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    line-height: 1.8;
}
    #contents .sec_ttl:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;/*線の上下位置*/
        display: inline-block;
        width: 70px;/*線の長さ*/
        height: 2px;/*線の太さ*/
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);/*位置調整*/
        background-color: #222222;/*線の色*/
    }

/*====================================
	04.header
====================================*/
header {
    background: url(../img/fv.jpg) no-repeat;
    background-size: cover;
    background-position: 50%;
    position: relative;
}

header #logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
    header #logo h1{
        font-weight: 800;
        font-size: 38px;
        letter-spacing: 0;
        border-bottom: 1px solid #fff;
        padding: 0 60px;
        margin-bottom: 10px;
    }
        header #logo h1 a{
            color: #fff;
        }
        header #logo h1 span{
            font-weight: 800;
            letter-spacing: 3px;
            font-family: 'Big Shoulders Display', cursive;
        }
    header #logo .catch{
        text-align: center;
        font-weight: 500;
        font-size: 22px;
        color: #fff;
        text-indent: -14px;

    }
header #header_scroll {
    position: absolute;
    /* max-width: 1400px; */
    left: 0;
    right: 0;
    bottom: 60px;
    /* margin: 0 auto; */
    padding: 0 60px;
}
    header #header_scroll a {
        color: #fff;
        font-family: 'Big Shoulders Display', cursive;
        font-weight: 700;
        font-size: 16px;
        letter-spacing: 2px;
        padding-left: 55px;
        position: relative;
    }
        header #header_scroll a::before {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            content: '';
            width: 40px;
            height: 40px;
            background: url(../img/icon_scroll.png) no-repeat;
            background-size: 40px;
        }
header #header_menu{
    position: absolute;
    width: 100%;
    /* max-width: 1400px; */
    top: 100%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10rem;
}
    header #header_menu h2{
        font-weight: 800;
        font-size: 20px;
        letter-spacing: 0;
    }
        header #header_menu h2 span.ur{
            letter-spacing: 2px;
            font-family: 'Big Shoulders Display', cursive;
        }
        header #header_menu h2 .catch{
            padding-left: 10px;
            font-family: 'Yu Gothic', sans-serif;
            letter-spacing: normal;
            font-size: 15px;
			font-weight: 500;
        }
    header #header_menu nav{

    }
        header #header_menu nav ul{
            display: flex;
        }
        header #header_menu nav li{
            display: block;
            text-align: center;
            margin-left: 30px;
            font-family: 'Big Shoulders Display', cursive;
            font-weight: 700;
            font-size: 20px;
            letter-spacing: 2px;
        }
        header #header_menu nav li.sp {
            display: none;
        }
            header #header_menu nav li a{
                width: 100%;
                display: block;
            }
            header #header_menu nav li a:hover{
                opacity: .7;
            }

/*====================================
	05.footer
====================================*/
footer{
    background: #fff;
    padding: 0 60px;
}
#foot_info {
    text-align: center;
    margin-bottom: 50px;
}
    #foot_info .info{
		font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    #foot_info .address{
        line-height: 1.6;
        font-size: 14px;
        margin-bottom: 30px;
    }
#foot_copy{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3.5rem 0;
    border-top: 1px solid #dcdcdc;
    font-family: 'Big Shoulders Display', cursive;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}
    #foot_copy .copy {
/*         font-family: 'Big Shoulders Display', cursive; */
        /* font-weight: 600; */
        /* font-weight: 700;
        font-size: 12px;
        letter-spacing: 2px; */
    }

/*====================================
	06.main_menu
====================================*/
#main_menu {
    padding-bottom: 50px;
}
#main_menu .menu_list{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
    #main_menu .menu_list li {
        width: calc(100% / 2);
        position: relative;
    }
/* 		#main_menu .menu_list li:before {
			content: '';
			background: rgba(0, 0, 0, 0.5);
			position: absolute;
			top: 0;
			bottom: 0;
			left: 0;
			right: 0;
		} */
		#main_menu .menu_list li a {
			display: block;
			position: relative;
		}
			#main_menu .menu_list li a:before {
				content: '';
				background: rgba(0, 0, 0, 0.8);
				position: absolute;
				top: 0;
				bottom: 0;
				left: 0;
				right: 0;
			}
			#main_menu .menu_list li:first-child a:before,
			#main_menu .menu_list li:last-child a:before {
				background: rgba(0, 0, 0, 0.3);
			}
        #main_menu .menu_list li img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
			
        #main_menu .menu_list li .mask {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            background: rgba(0, 0, 0, 0.5);
        }
        #main_menu .menu_list li .name {
            position: absolute;
            text-align: center;
            top: 50%;
            left: 0;
            right: 0;
            margin: auto;
            transform: translateY(-50%);
            color: #fff;
            width: 240px;
        }
            #main_menu .menu_list li .name h2{
                font-family: 'Big Shoulders Display', cursive;
                font-weight: 700;
                font-size: 45px;
                letter-spacing: 5px;
                border-bottom: 1px solid #fff;
                margin-bottom: 15px;
				line-height: 1.5;
            }
            #main_menu .menu_list li .name .catch{
                text-align: center;
                font-weight: 500;
                font-size: 14px;
                color: #fff;
            }

@media only screen and (max-width: 768px){
/*
 01.font
 02.base
 03.block
 04.header
 05.footer
 06.main_menu
*/
/*====================================
	01.font
====================================*/
body, textarea, input, select, label{
	color: #000;
	font-size: 1.4rem;
	line-height: 1.4;
}

/*====================================
	02.base
====================================*/
img{
    width: 100%;
}
.sp{
    display: block;
}
.pc{
    display: none;
}

/* btn */
.btn {
    width: 170px;
}
	.btn a{
		font-size: 15px;
		height: 45px;
		line-height: 45px;
	}
	.btn a::before{
		left: 20px;
	}
	.btn a::after {
		content: none;
	}
	.btn:hover {
		border: 1px solid #a0a0a0;
	}
	.btn a:hover {
		color: #000;
	}
	.btn a:hover::before{
		background-image: url(../img/icon_arrow_next.png);
	}

html.is-fixed body {
    height: 100%;
    overflow: hidden;
}
	
/* pan */
#pan{
	margin-bottom: 55px;
}
#pan li{
    font-size: 1.1rem;
}

/*====================================
	03.block
====================================*/
.wrap{
    width: 100%;
}
#contents{
    padding: 0;
}
	#contents .sec_ttl{
   		font-size: 23px;
		letter-spacing: 1px;
		margin-bottom: 30px;
		line-height: 1.6;
	}
    #contents .sec_ttl:before {
        width: 35px;/*線の長さ*/
    }

/*====================================
	04.header
====================================*/
header {
    width: 100%;
}

header #logo {
    top: 42%;
}
    header #logo h1{
        font-size: 23px;
        letter-spacing: 0;
        padding: 0 30px;
        white-space: nowrap;
		line-height: 1.6;
		margin-bottom: 5px
    }
    header #logo .catch{
        font-size: 13px;
        text-indent: -5px;
    }
header #header_scroll {
    width: 100%;
    bottom: 18%;
    text-align: center;
}
    header #header_scroll a {
        font-size: 15px;
		padding-left: 35px;
    }
        header #header_scroll a::before {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            content: '';
            width: 25px;
            height: 25px;
            background: url(../img/icon_scroll.png) no-repeat;
            background-size: 25px;
        }
header #header_menu{
    width: 100%;
}
    header #header_menu h2{
        display: none;
    }
    header #header_menu .nav-wrap {
        position: fixed;
        left: 0;
        top: -1px;
        display: block;
        /* opacity: 0;
        transition: all 0.5s; */
        display: none;
        z-index: 999;
        background-color: rgba(0, 0, 0, 0.8);
        width: 100%;
        height: 100vh;
    }
        header #header_menu nav ul{
            height: 100%;
            position: relative;
            overflow-x: hidden;
            overflow-y: auto;
            margin-top: 7rem;
            /* display: none; */
            flex-direction: column;
        }
        header #header_menu nav li{
            display: block;
            margin-left: 0;
        }
        header #header_menu nav li.sp {
            display: block;
        }
        header #header_menu nav li a {
            color: #fff;
            position: relative;
            line-height: 1;
            font-size: 2.5rem;
            font-weight: 500;
            margin: 0;
            display: block;
            padding: 1.7rem;
        }
        header #header_menu nav li.nav_close {
            margin-top: 20px;
            position: relative;
        }
            header #header_menu nav li.nav_close a {
                display: flex;
                align-items: center;
                justify-content: center;
            }
            header #header_menu nav li.nav_close img {
                width: 15px;
                margin-right: 7px;
            }
        header #header_menu nav li.nav_close a {
            font-size: 20px;
        }

        header #header_menu .nav-wrap.open {
            display: block;
            /* opacity: 1; */
        }
            header #header_menu .nav-wrap.open ul {
                /* display: block; */
            }
        header #header_menu .nav-wrap.close {
            display: none;
            /* opacity: 0; */
        }
            header #header_menu .nav-wrap.close ul {
                /* display: none; */
            }

header .nav-button {
    display: block;
    cursor: pointer;
}

/*メニューボタンのエフェクト*/
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .nav-button {
    z-index: 1000;
    position: fixed;
    width: 30px;
    height: 27px;
    top: 2rem;
    right: 1.5rem;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
    border-radius: 4px;
  }
  .nav-button.bar_black span {
    background-color: #000;
  }
  .nav-button span:nth-of-type(1) {
    top: 0;
  }
  .nav-button span:nth-of-type(2) {
    top: 11px;
  }
  .nav-button span:nth-of-type(3) {
    top: 22px;
  }
  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
  }
  .nav-button.active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }

/*====================================
	05.footer
====================================*/
footer{
    padding: 0;
}
#foot_info {
	margin-bottom: 45px;
}
    #foot_info .info{
        font-size: 12.5px;
    }
    #foot_info .address{
        font-size: 12.5px;
		margin-bottom: 25px;
    }
#foot_copy{
    flex-direction: column-reverse;
    padding: 2.5rem 0 2rem;
    font-size: 12.5px;
}
    #foot_copy .copy {
        padding-top: 30px;
        font-size: 11px;
    }
	
/*====================================
	06.main_menu
====================================*/
#main_menu {
	padding-bottom: 45px;
}
#main_menu .menu_list{
}
    #main_menu .menu_list li {
        width: 100%;
    }
			#main_menu .menu_list li:nth-child(odd) a:before {
				background: rgba(0, 0, 0, 0.3);
			}
			#main_menu .menu_list li:nth-child(even) a:before {
				background: rgba(0, 0, 0, 0.7);
			}
        #main_menu .menu_list li img {
            height: 190px;
        }
        #main_menu .menu_list li .name {
            width: 45%;
        }
            #main_menu .menu_list li .name h2{
                font-size: 23px;
                letter-spacing: 5px;
                margin-bottom: 10px;
                font-weight: 500;
            }
            #main_menu .menu_list li .name .catch{
                font-size: 11px;
                font-weight: 500;
            }

}