html {
    font-size: 10px;
}

body {
    font-size: 1.8rem;
    line-height: 1.8;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    color:#333333;
    background: #fff;
}
@media screen and (max-width : 800px) {
    body {
        font-size: 1.6rem;
        line-height: 1.6;
    }
}
h1,h2,h3,h4,h5 {
    font-weight: 400;
    font-size: 1.8rem;
}
a {
    text-decoration: none;
    transition: 0.6s;
    cursor: pointer;
    color: #333;
}
a:hover {
    text-decoration: none;
}
a:visited {
    color: #333333;
}
.page_width {
    max-width: 1100px;
    margin: 0 auto;
}
.font_type_m {
    font-family: 'Noto Serif JP', serif;
}
.font_type_g {
    font-family: "Yu Gothic", "YuGothic", sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
}
.font_type_en {
    font-family: 'Commissioner', sans-serif;
}
.font-type_jp {
    font-family:'Roboto','Hiragino Sans','Meiryo','Hiragino Kaku Gothic ProN',sans-serif;
}
.font_type_num {
    font-family: Arial,sans-serif;
}
.common_padding {
    padding-left: 15px;
    padding-right: 15px;
}
.bg_grey {
    background-color: #efefef;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
}

/************ ロゴ ************/
.main_logo {
    display: flex;
    align-items: center;
    width: 220px;
    height: 50px;
    font-family: 'Commissioner', sans-serif;
}
.main_logo div {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
}
.main_logo:hover {
    opacity: 0.5;
}
.header_logo img {
    width: 30px;
    height: auto;
    margin: 3px 5px 0 5px;
}

/************ ヘッダー ************/
header {
    position: fixed;
    width: 100%;
    z-index: 9999;
}
.header_box {
	height: 54px;
	display: flex;
	align-items: center;
	justify-content: space-between;
    padding: 0 10px;
    overflow: hidden;
}
.header_menu {
    margin-top: -8px;
}
.hamburger_menu {
	width: 40px;
	height: 26px;
	position: relative;
	border-color: transparent;
	background: transparent;
	cursor: pointer;
    transition: 0.5s;
}
.hamburger_bar {
	display: block;
	width: 100%;
	height: 0.2rem;
	position: absolute;
	left: 0;
	background: #fff;
}
.hamburger_bar:nth-child(1) {
	top: 0;
}
.hamburger_bar:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}
.hamburger_bar:nth-child(3) {
	top: 100%;
	transform: translateY(-100%);
}
.hamburger_menu:hover{
    opacity: 0.5;
}
.header_change {
    background: rgb(75 53 45 / 80%);
    box-shadow: 1px 1px 3px 0 rgba(0,0,0,50%);
    transition: 1.0s;
}

/************ フッター ************/
footer {
    position: relative;
}
.footer_mv {
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    align-items: center;
}
.footer_info {
    display: inline-block;
    background-color: rgba(0,0,0,40%);
    color: #fff;
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 1rem;
    padding: 30px 30px;
}
.footer_info h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 30px;
}
.footer_copy_wrapper {
    position: relative;
}
.footer_copy {
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    text-shadow: 0px 0px 8px rgba(0,0,0,80%) ;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.footer_contact {
    position: absolute;
    bottom: 20px;
    right: 15px;
}
.footer_contact a {
    color: #fff;
}
.footer_contact a:visited {
    color: #fff;
}
.footer_contact a:hover {
    opacity: 0.4;
}
@media screen and (max-width : 500px) {
    .footer_copy {
        left: 15px;
        transform: initial;
        -webkit-transform: initial;
        -ms-transform: initial;
    }
    .footer_info {
        padding: 30px 20px;
    }
}
/************ モーダルナビメニュー ************/
#site_menu {
	display: none;
	width: 100%;
	height:100%;
	padding-top: 5%;
	text-align: left;
	position: fixed;
	top: 0;
	z-index: 9999;
}
#site_menu .menu_box {
	width: 95%;
	height:95%;
	max-width: 960px;
	margin: 0 auto;
	background: rgba(255,255,255,90%);
	border-radius: 1rem;
	overflow: auto;
	z-index: 9999;
	color: #fff;
	text-align: center;
	padding: 0 4% 4% 4%;
    box-shadow: 0px 0px 5px rgb(0,0,0,40%);
    animation-name: modalopen;
    animation-duration: 1s;
}
#site_menu dl {
	display: block;
	margin: 40px auto 0 auto;
}
#site_menu dt{
	font-size: 2rem;
    color: #ce3d3d;
}
#site_menu dd {
    font-size: 1.6rem;
	margin-top: 15px;
}
#site_menu ul {
	display: flex;
	flex-wrap: wrap;
    justify-content: flex-start;
}
#site_menu  dd li {
    width: 20%;
    padding: 5px;
}
#site_menu  dd li a, #site_menu  dd li a:visited {
	display: block;
	width: 100%;
	color: #333;
	padding: 5px 5px;
	border: 1px solid #333;
}
#site_menu  dd li a:hover {
    background-color: #333333;
    color: #ffffff;

}
.menu_contact {
    margin-top: 50px;
    text-align: center;
}
.menu_contact a {
    display: inline-block;
    width: 90%;
    max-width: 300px;
    color: #ce3d3d;
    border: 1px solid #ce3d3d;
    padding: 5px 5px;
}
.menu_contact a:hover {
    background-color: #ce3d3d;
    color: #ffffff;
}
@media screen and (max-width : 880px) {
    #site_menu  dd li {
        width: 25%;
    }
}
@media screen and (max-width : 720px) {
    #site_menu  dd li {
        width: 33.33%;
    }
}
@media screen and (max-width : 565px) {
    #site_menu  dd li {
        width: 50%;
    }
}
.modal-content {
    animation-name: modalopen;
    animation-duration: 1s;
}
  
@keyframes modalopen {
    from {opacity: 0}
    to {opacity: 1}
}

/************ トップページ ************/

/* メインビジュアル */
.top_mv {
	position: relative;
	background: #F5F5F3;
}
.top_mv_image {
    width: 100vw;
    height: auto;
    min-height: 100vh;
}
.top_mv_image img {
    height: 100vh;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
}
.top_mv_image h1,
.top_mv_image h2 {  
	position: absolute;
	width: 100%;
	text-align: center;
    line-height: 1.6;
	font-size: 3.2rem;
	text-shadow: 0px 0px 10px rgb(0 0 0 / 50%);
	font-weight: 400;
	color: #fff;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.top_mv_image h1 > span,
.top_mv_image h2 > span {
	display: block;
}
.top_mv_image h1 > span > span,
.top_mv_image h2 > span > span {
	display: inline-block;
}
@media screen and (max-width : 800px) {
    .top_mv_image h1,
    .top_mv_image h2 {  
        font-size: 2.4rem;
    }
}
.top_mv_scroll {
    position: absolute;
    z-index: 7777;
    bottom: 10rem;
    right: 0;
    left: 0;
    height: 100px;
    text-align: center;
}
.top_mv_scroll p {
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0px 0px 10px rgb(0 0 0 / 50%);
    display: inline-block;
    transition: 0.5s;
}
.top_mv_scroll p:hover {
    opacity: 0.5;
}
/* メインコンテンツ */
section h2 {
    text-align: center;
    font-size: 3.2rem;
    line-height: 1.6;
}
@media screen and (max-width : 800px) {
    section h2 {
        font-size: 2.4rem;
    }
}
/* 季節のプレゼント */
.top_seasonal {
    padding-top: 80px;
    padding-bottom: 80px;
}
.top_seasonal > div {
    padding: 0 15px;
}
.top_seasonal h2 {
    margin-bottom: 80px;
}
.scroll_item {
    display: flex;
    gap: 4%;
    flex-wrap: nowrap;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}
.scroll_item li {
    position: relative;
    width: 20%;
    flex:  0 0 200px;
}
.scroll_item_no {
    display: flex;
    align-items: center;
    position: absolute;
    top: -2px;
    left: 8px;
    width: 32px;
    height: 40px;
    text-align: center;
}
.scroll_item_no span {
    display: inline-block;
    width: 100%;
    font-size: 1.6rem;
    color: #ffffff;
}
.scroll_item_image img:hover {
    transform: scale(1.2);
}
.rank1 {
    background: url('../images/icon_rank_ribbon1.webp') 50% 50% no-repeat;
    background-size: cover;
}
.rank2 {
    background: url('../images/icon_rank_ribbon2.webp') 50% 50% no-repeat;
    background-size: cover;
}
.rank3 {
    background: url('../images/icon_rank_ribbon3.webp') 50% 50% no-repeat;
    background-size: cover;
}
.rank4 {
    background: url('../images/icon_rank_ribbon4.webp') 50% 50% no-repeat;
    background-size: cover;
}
.scroll_item_image {
    display: block;
    overflow: hidden;
}
.scroll_item_image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}
.scroll_item_genre {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    line-height: 1.5;
    transition: 0.5s;
    color: #333;
}
.scroll_item_genre span {
    display: inline-block;
}
.scroll_item_genre:hover,
.scroll_item_name:hover,
.scroll_item_review:hover {
    opacity: 0.5;
}
.scroll_item_price {
    margin-top: 10px;
    margin-bottom: -10px;
    text-align: center;
}
.scroll_item_point {
    margin-top: 15px;
}
.review_score {
    width: fit-content;
    margin: 0 auto;
    padding-left: 115px;
    background-size: 110px;
    background-repeat: no-repeat;
    line-height: 1.4;
}
.scroll_item_review {
    margin-top: 5px;
    display:flex;
    font-size: 1.6rem;
    transition: 0.5s;
}
.scroll_item_name {
    font-size: 1.6rem;
    margin-top: 10px;
    transition: 0.5s;
}
.rank_more_link {
    margin-top: 30px;
}
.rank_more_link a {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 240px;
    padding: 8px 0;
    border: 1px solid #333;
    color: #333;
}
.rank_more_link a:hover {
    background-color: #333;
    color: #fff;
}
@media screen and (max-width : 650px) {
    .scroll_item li {
        flex:  0 0 150px;
    }
    .scroll_item_image img {
        width: 150px;
        height: 150px;
    }
}

/* メインサーチ */
.top_main_search {
    padding: 80px 0;
}
.top_main_search > div {
    padding: 0 15px;
}
.top_search_area {
    margin-top: 30px;
    display: flex;
    gap: 4%;
}
.top_search_area > div {
    width: 50%;
}
.search_group h3 {
    margin-top: 50px;
    color: #ce3d3d;
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.search_group ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.search_group li {
    margin-right: 10px;
}
.search_group li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px solid #333;
    color: #333;
}
.search_group li a::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #333333;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}
.search_group li a:hover {
    border: none;
}
.search_group li a:hover::after {
    transform: scale(1, 1);
}
@media screen and (max-width : 800px) {
    .search_group h3 {
        font-size: 2.0rem;
    }
}
@media screen and (max-width : 600px) {
    .top_search_area {
        flex-direction: column;
    }
    .top_search_area > div {
        width: 100%;
    }
    .search_group li {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
/************ リストページ ************/

/* メインビジュアル */
.list_mv {
	position: relative;
	background: #F5F5F3;
}
.list_mv_image {
    width: 100vw;
    height: 600px;
}
.list_mv_image img {
    height: 100vh;
    margin: auto;
    height: 600px;
    max-width: 100%;
    object-fit: cover;
    width: 100%;
}
.list_mv h1 {  
	position: absolute;
    z-index: 7777;
	width: 100%;
    padding: 0 15px;
	text-align: center;
    line-height: 1.5;
	font-size: 3.2rem;
	text-shadow: 0px 0px 10px rgb(0 0 0 / 50%);
	font-weight: 400;
	color: #fff;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.list_mv h1 span { 
    display: inline-block;
}
@media screen and (max-width : 800px) {
    .list_mv h1 {  
        font-size: 2.4rem;
        text-align: left;
    }
}
@media screen and (max-width : 550px) {
    .list_mv h1 span { 
        display: inline;
    }
}
#list_page .top_mv_scroll {
    bottom: 2rem;
}

/* SNSリンク */
.share_info {
    display: flex;
    align-items: center;
    margin-top: 30px;
    justify-content: space-between;
}
.share_date {
    color: #666;
    margin-top: 15px;
}
.share_sns {
    display: flex;
    align-items: center;
    gap: 10px;
}
.share_sns a {
    display: block;
}
.share_sns img {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    transition: 0.5s;
}
.share_sns img:hover {
    opacity: 0.5;
}

/* ランキング */
.rank_list {
    padding: 80px 0;
    background: #fff;
}
.rank_list > div {
    padding: 0 15px;
}
.rank_list h2 span {
    display: inline-block;
}
.rank_list_info {
    margin: 0 auto;
    margin-top: 5px;
    padding: 2% 2%;
    width: 100%;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    align-items:center;
    color: #666;
    font-size: 1.6rem;
}
.rank_list_info span {
    display: inline-block;
}
.rank_item {
    padding-top: 50px;
    font-size: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}
.rank_item li {
    position: relative;
    width: 48%;
    margin-top: 4%;
    display: flex;
}
.rank_item_image {
    display: block;
    overflow: hidden;
    flex: 0 0 auto;
}
.rank_item_image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}
.rank_item_image img:hover {
    transform: scale(1.2);
}
.rank_item_text {
    flex: 1;
    padding-left: 15px;
}
.rank_item_title {
    display: flex;
    gap: 10px;
    align-items: center;
}
.rank_item_no {
    display: inline-block;
    background-color: #4b352d;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    width: 38px;
    height: 38px;
    text-align: center;
    padding-top: 6px;
    flex: 0 0 auto;
    color: #fff;
}
.rank_item_name {
    line-height: 1.5;
}
.rank_item_review {
    margin-top: 20px;
    font-size: 1.6rem;
    line-height: 1.5;
}
.rank_item_pop {
    margin-top: 0px;
    color: #cc4949;
    font-size: 1.6rem;
}
.pop_graph {
    max-width: 400px;
    background: #dcdcdc;
}
.pop_graph span {
    display: block;
    height: 15px;
    background: #cc4949;
}
.rank_item_link {
    margin-top: 20px;
    text-align: right;
}
.rank_item_link a {
    position: relative;
    display: inline-block;
}
.rank_item_link a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #333;
}
.rank_item_link a::after {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}
.rank_item_link a:hover::after {
    transform: scale(1, 1);
}
@media screen and (max-width : 980px) {
    .rank_item_image img {
        width: 150px;
        height: 150px;
    }
}
@media screen and (max-width : 860px) {
    .rank_item {
        flex-direction: column;
        gap: 50px;
    }
    .rank_item li {
        width: 100%;
        margin-top: 0;
    }
    .rank_item_link {
        text-align: left;
    }
}
@media screen and (max-width : 500px) {
    .rank_item_text {
        font-size: 1.4rem;
        padding-left: 10px;
    }
    .rank_item_no {
        width: 32px;
        height: 28px;
        padding-top: 2px;
    }
    .rank_item_review {
        margin-top: 5px;
    }
    .rank_item_review {
        margin-top: 20px;
        font-size: 1.4rem;
    }
    .rank_item_pop {
        font-size: 1.4rem;
    }
}
/* ジャンルを絞る */
.top_main_search {
    padding: 80px 0;
}
.top_main_search > div {
    padding: 0 15px;
}
.search_list {
    margin-top: 50px;
}
.search_list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5%;
}
.search_list li {
    width: 18%;
    margin-top: 2.5%;
}
.search_list li a {
    position: relative;
    display: block;
    overflow: hidden;
}
.search_list li a img {
    transition: 0.5s;
}
.search_list li a img:hover {
    transform: scale(1.2);
}
.search_list li a h3 {
    width: 100%;
    text-align: center;
    position: absolute;
    font-weight: bold;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 0 8px rgb(0 0 0 / 80%);
    top: 50%;
    left: 0;
    padding: 0 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
@media screen and (max-width : 800px) {
    .search_list ul {
        gap: 2.65%;
    }
    .search_list li {
        width: 23%;
        margin-top: 20px;
    }
}
@media screen and (max-width : 650px) {
    .search_list ul {
        justify-content: space-between;
        gap: 0;
    }
    .search_list li {
        width: 48%;
        margin-top: 15px;
    }
    .search_list {
        margin-top: 65px;
    }
}
/*　100位以降　*/
.next_list_page {
    margin-top: 80px;
}

/************ アイテムページ ************/

#detail_page .top_mv_scroll {
    bottom: 2rem;
}
@media screen and (max-width : 650px) {
    #detail_page .rank_list h2 {
        text-align: left;
    }
    #detail_page .rank_list h2 span {
        display: inline;
    }
}
#detail_page .share_date {
    visibility: hidden;
}
/* 商品リスト */
.item_list {
    margin-top: 30px;
    background: #fff;
    display: flex;
    gap: 4%;
    flex-wrap: wrap;
}
.item_list li {
    position: relative;
    width: 48%;
    min-width: 200px;
    margin-top: 50px;
    display: flex;
    gap: 20px;
}
.item_list_image {
    flex: 0 0 auto;
    overflow: hidden;
}
.item_list_image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}
.item_list_image a img:hover {
    transform: scale(1.2);
}
.item_list_text {
    text-align: left;
}
.item_list_point > div {
    margin: 0;
}
.item_list_review {
    display: block;
    margin-top: 5px;
    transition: 0.5s;
}
.item_list_review:hover {
    opacity: 0.4;
}
.item_list_review p {
    font-size: 1.6rem;
}
.item_list_review p::before {
    content: url('../images/icon_quote_start.webp');
}
.quate_end {
    text-decoration: underline;
    transition: 0.5s;
}
.item_list_date {
    color: #aaa;
    font-size: 1.6rem;
    margin-top: 10px;
}
.item_list_shop {
    color: #2b6911;
    font-size: 1.4rem;
    margin-top: 15px;
}
.item_list_link {
    margin-top: 15px;
}
.item_list_link a,
.item_list_link > div {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #333;
    padding: 8px 0;
    font-size: 1.6rem;
    justify-content: center;
    width: 100%;
    max-width: 240px;
}
.item_list_link img {
    width: 50px;
    height: auto;
    flex: 0 0 auto;
}
.item_list_link a:hover {
    background: #333;
    color: #fff;
}
@media screen and (max-width : 980px) {
    .item_list_image img {
        width: 150px;
        height: 150px;
    }
}
@media screen and (max-width : 860px) {
    .item_list {
        margin-top: 50px;
        flex-direction: column;
        gap: 50px;
    }
    .item_list li {
        width: 100%;
        margin-top: 0;
    }
    .rank_item_link {
        text-align: right;
    }
    .item_list_link {
        margin-top: 15px;
    }
}
@media screen and (max-width : 540px) {
    .item_list li {
        flex-direction: column;
    }
    .item_list_image img {
        width: 100%;
        height: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    .item_list_link a {
        margin: 0 auto;
        max-width: 450px;
    }
}
/* ページング */
.next_item {
    padding: 25px 0;
}
.next_item ul {
    display: flex;
    gap: 20px;
    justify-content: center;
}
.next_item li a {
    color: #333;
}
.page_off {
    color: #aaa;
}
.no_result {
	text-align: center;
	padding-top: 80px;
}
.back_list {
	margin-top: 50px;
}
.back_list a {
	display: inline-block;
	max-width: 320px;
	min-width: 240px;
	border: 1px solid #333;
	padding: 8px 5px;
	text-align: center;
	color: #333;
	transition: 0.5s;
}
.back_list a:hover {
	color: #fff;
	background: #333;
}
.rakuten_ranking h2 span {
    display: inline-block;
}

/************ エラーページ ************/
#error_page .top_mv_scroll p {
    border: 1px solid #fff;
    padding: 8px 0;
    width: 240px;
}
.top_mv_image p {
    position: absolute;
    padding: 0 15px;
    bottom: 30rem;
    width: 100%;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0px 0px 10px rgb(0 0 0 / 50%);
    font-weight: 400;
    color: #fff;
}
.top_mv_image p span {
    display: inline-block;
}

/************ 矢印 ************/

/* 下向き */
.arrow_under_wrap {
    text-align: center;

}
.arrow_under {
    display: inline-block;
    text-align: center;
}
.arrow_under_link {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    display: block;
    margin: 0 auto;
    border-right: 0.1rem solid #FFFFFF;
    border-bottom: 0.1rem solid #FFFFFF;
    transform: rotate(45deg);
}
.updown {
    animation-name:updown1;   /* アニメーション名の指定 */
    animation-delay:0s;   /* アニメーションの開始時間指定 */
    animation-duration: 3s;   /* アニメーション動作時間の指定 */
    animation-timing-function: ease-in-out;  /* アニメーションの動き指定（徐々に早く）*/
    animation-iteration-count: infinite; 
}
@keyframes updown1 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* 右向き */
.arrow_right {
    padding-left: 25px;
    position: relative;
}
.arrow_right::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    position: absolute;
    left: 0px;
    top: 7px;
    transform: rotate(45deg);
    transition: 0.6s;
}
@media screen and (max-width : 460px) {
    .arrow_right {
        padding-left: 20px;
    }
    .arrow_right::before {
        width: 10px;
        height: 10px;    
    }
}
/************ ふわっと表示 ************/
.fadetext {
    animation-name: fadeUpText;
    animation-duration: 3s;
    animation-iteration-count: 1;
}
@keyframes fadeUpText {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/************ フェードインスクロール ************/
.fade-in {
    opacity: 0;
    transition-duration: 1000ms;
    transition-property: opacity, transform;
}
.fade-in-up {
    transform: translate(0, 100px);
}
.scroll-in {
    opacity: 1;
    transform: translate(0, 0);
}
