@charset "UTF-8";
/* CSS Document */

/*共通部分-------------------------------------------*/

html {
	font-size: 100%;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, "sans-serif",YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	line-height: 1.7;
	color: #6F634D;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
}

.main {
	max-width: 1300px;
	margin: 0 auto;
	color: #6e5064;
}

.wrap {
    letter-spacing: .15em;
}

/*header部分-------------------------------------------*/
.logo {
	width: 270px;
	margin-top: 14px;
	position: relative;
	animation: arrowmove 1s ease-in-out infinite;
}

.main-nav {
	display: flex;
	font-size: 1.25rem;
	text-transform: uppercase;
	margin-top: 34px;
	list-style: none;
}

.main-nav li {
	margin-left: 36px;
	animation-name: fadeRightAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}

.movie-logo {
	width: 40px;
	margin: 25px 8px 0;
}

/*右から出てくる-------------------------------*/
@keyframes fadeRightAnime{
from {
    opacity: 0;
	transform: translateX(100px);
}

to {
    opacity: 1;
	transform: translateX(0);
}	
}

.main-nav a {
	color: aliceblue;
}

.main-nav a:hover {
	color: aqua;
}

.openbtn, #g-nav {
	display: none;
}

.wrapper-top {
	display: flex;
	justify-content: space-between;
}

.wrapper-top {
	max-width: 1960px;
	margin: 0 15px;
}

/**追従するトップへ戻るボタン**-------------------------------------------*/
/*=== 9-1-4 矢印が動いてスクロールを促す  ====*/

/*スクロールダウン全体の場所*/
#page-top {
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color:#CECECE;
    padding: 0 0 0 35px;
    border-top: solid 1px;
	    /*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 1s ease-in-out infinite;
}

#page-top:before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}

/*<!--矢印が動いてスクロールを促す-->*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/***トップへ戻るボタンここまで***/

/*Home テキスト-------------------------------------------*/
.home-content {
	text-align: center;
	margin-top: 15%;
}

.home-content p {
	font-size: 1.5rem;
	margin: 10px 0 40px;
	color: aliceblue;
}

.home-title {
	font-size: 3rem;
	font-family: "Palatino Linotype", "serif";
	text-transform: uppercase;
	font-weigh: normal;
}

/*Home ボタン -------------------------------------------*/
.button {
	font-size: 1.3rem;
	background: #17C4F1;
	color: #fff;
	border-radius: 5px;/*ボタンの角丸*/
	padding: 18px 32px;
}

.button:hover {
	background: #F8E959;
}

/* Firstview-------------------------------------------*/
.top-image {
	background-size: cover;
	background-position: center top;
}

#home {
	background-image: url("../img/01_firstview_taiyaki.jpg");
	height: 100vh;
}

#home .home-title { /*英語表記 Your Day*/
	text-transform: none;
}

/*Firstviewここまで -------------------------------------------*/

/*　NEWS!!　について -------------------------------------------*/
.text-news {　
	font-weight: normal;
	text-align: center;
	padding-top: 50px;
	color: #6e5064;
}

.icon {
	display: flex;
	list-style: none;
	justify-content:space-between;
    text-align:center;	
	width: 89%;
	margin:auto;
	font-size: 14px;
	color: #6e5064;
}

.icon li {
	width: 30%;
	margin: 70px 0;	
}

.icon img {
	position: relative;
	animation: arrowmove 1s ease-in-out infinite;
}

#sns {
	display: flex;
	justify-content: center;
}

.fa-instagram, .fa-facebook-square {
	width: 70%;
	font-size: 3.5rem;
	display: inline;
}

.icon-p a:link, .icon-p a:visited {
	color: #17C4F1;
}

/*　NEWS!!　ここまで -------------------------------------------*/

/*あまいろcafeについて ここから-------------------------------------------*/
.amairo-box .amairo-text {
    margin: 0 40px 0 0;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
}

.amairo-text {
	width: 100%;
	padding: 80px;
	font-size: 1.2rem;
	font-weight: normal;
	background-color: antiquewhite;
}

.amairo-text-R {
	display: none;
}

.amairo-box h3 {
	font-size: 1.7rem;
}

.cafe-01 {
	color: #fff;
}

/*あまいろcafeについて ここまで -------------------------------------------*/
	
/*たい焼きとコーヒーについて ここから -------------------------------------------*/
.amairo-item02 {
	display: flex;
	width: 100%;
	margin-top: 100px;	
}

.amairo-text02 {
	writing-mode: vertical-rl;
	line-height: 80px;
	margin-right: 30px;
}

.amairo-item03 { 
	display: flex;
	width: 100%;
	margin-top: 100px;
}

.amairo-text03 {
	writing-mode: vertical-rl;
	line-height: 70px;
	margin-left: 100px;
}

/*たい焼きとコーヒーについて ここまで -------------------------------------------*/

/*天草について-------------------------------------------*/
.amakusa-grid {
	max-width: 100%;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
/*	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));*/
	margin-top: 5px;
	font-size: 0.9rem;
}

.amakusa-photo img {
	width: 100%;
	height: 90%;
}

.amairo-item04 {
	margin-top: 100px;
}

/*天草について ここまで------------------------------------------*/
/*　メニュー　ここから -------------------------------------------*/
.heading {
	margin-top: 100px;
	font-size: 1.7rem;
}

.menu-box {
	margin-bottom: 130px;
}

.menu-item02, .menu-item03 {
	display: flex;
	width: 100%;
	margin-top: 10px;
}

.menu-item02 p {
	font-size: 15px;
	text-align: left;
	line-height: 20px;
	margin: 20px 50px 0;
}

.menu-item03 img {
	width: 40%;
	margin: 10px 160px;
	padding-top: 30px;
}

.menu-item03 p {
	font-size: 15px;
	text-align: left;
	line-height: 20px;
	margin: 30px 50px 0;
}

.heading {
	text-transform: uppercase;
}

/*　メニュー　ここまで　*/	

/*　アクセス　ここから　*/
.access-box {
	display: flex;
	width: 100%;
	margin-bottom: 70px;
}

.location-info p li {
	font-size: 16px;
	text-align: left;
	line-height: 40px;
}

.location-info {
    padding: 12px 0;
}

iframe {
	max-width: 100%;
}

/*　アクセス　ここまで　*/	

footer {
	color:#fff;
	text-align: center;
	background-color:#533939;
}
