@charset "UTF-8";

html {
    font-size: 62.5%;
}

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

body {
    
    font-family: "Noto Sans JP", sans-serif;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.6rem;  /* 10px → 16px */
    line-height: 1.8;
    letter-spacing: 0.1rem;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border: 0;
}

main {
    margin: 0 auto;
}

/*---------------------------
        メインビジュアル 
----------------------------*/

#slide {
    position: relative;
    overflow: hidden;
    height: 800px;
}

#slide li {
    position: absolute;
    width: 1179px;
}

h1 {
    font-size: 40px;
    font-weight: bold;
    text-shadow: #FC0 1px 0 10px;
    color: #fff;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
}

h2 {
    width: 300px;
    font-size: 18px;
    text-shadow: #FC0 1px 0 10px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: none;
}

.main_visual {
    margin-bottom: 50px;
}

/*---------------------------
        section_lunch 
----------------------------*/

#top1,
#top2,
#top3,
#top4,
#top5 {
    background: url(../images/img_16.jpg);
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 70px;
}

.title {
    margin: 0 auto;
    padding-bottom: 30px;
}

.text_01 {
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    padding-bottom: 20px;
}

.top_01 {
    list-style: decimal;    
    padding-left: 50px;
}

.top_01 li {
    padding-bottom: 20px;
}

.top_01 li a {
    display: inline-block;
    color:#333;
    text-decoration:none;
    position: relative;
    transition: .3s;
}

.top_01 li a::after {
    position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #ee2d7b;
	transition: .3s;
	transform: translateX(-50%);
}

.top_01 li a:hover::after {
    width: 100%;
}

.top_01 li a:hover {
    color: #ee2d7b;
}

/*---------------------------
        section_沖縄そば 
----------------------------*/

h3 {
    font-size: 18px;
    padding-bottom: 10px;
}

figure {
    padding-bottom: 10px;
    overflow: hidden;
}

figure a {
    display: block;
    transition: all .3s ease-in-out;
}

figure img {
    width: 100%;
    vertical-align: middle;
}

figure a:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

figcaption {
    font-size: 14px;
    padding-bottom: 40px;
}

/*---------------------------
        section_観光 
----------------------------*/

.sub_text {
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 30px;
}

/* 下からじわっとアニメーション */
.blur{
	animation-name:blurAnime;
	animation-duration:2s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
    from {
	filter: blur(10px);
	transform: scale(1.02);
	opacity: 0;
}

    to {
	filter: blur(0);
	transform: scale(1);
	opacity: 1;
}
}

.blurTrigger{
    opacity: 0;
} 


/*---------------------------
        footer 
----------------------------*/

footer {
    position: relative;
    background-color: #FC0;
}

.last_view {
    text-align: center;
}

.last_text {
    width: 300px;
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

small {
    font-size: 10px;
    display: block;
    text-align: center;
    padding: 10px 0;
}