@charset 'utf-8';

/*-----------
top page
------------*/

h1.top-title {
    font-size: 2.8rem;
    color: #fff;
    letter-spacing: .2rem;
    line-height: 1.75;
    text-align: center;
    padding: 2rem 0 1.5rem;
}
@media (max-width: 640px) {
    h1.top-title{
    color: #333;
    }
}
h2.h2-lead {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: .1rem;
    margin-bottom: 1rem;
    text-align: center;
}
.section-reco {
    padding: 1rem 0 4rem;
}
.reco-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
a.reco-item {
    width: calc((100% - 30px) / 3);
    padding-bottom: 1rem;
    margin-bottom: 15px;
    border: solid 1px #ccc;
    color: #4d4d4d;
    text-decoration: none;
    transition:0.5s;
}
.reco-box::before,
.reco-box::after {
  content: "";
  display: block;
  width: calc((100% - 30px) / 3);
}
a.reco-item::after {
    content: "";
    display: block;
    width: calc((100% - 30px) / 3);
}
.reco-box::before {
    order: 1;
}
a.reco-item:hover {
    opacity: .6;
}
a.reco-item > img {
    width: 100%;
    height: auto;
}
a.reco-item > h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.75;
    letter-spacing: .1rem;
    padding: .8rem 1rem .4rem;
}
a.reco-item > p {
    font-size: 14px;
    letter-spacing: .1rem;
    line-height: 1.75;
    padding: 0 1rem;
}
.section-news {
    padding: 3rem 0;
}
.news-lists {
    background: var(--color-gray);
    border-radius: 3px;
    padding: 10px 20px;
}
.news-line {
    padding: 15px 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    transition:0.5s;
}
.news-line:hover {
    opacity: .6;
}
.news-line+.news-line {
    border-top: 1px solid var(--color-darkgray);
}
.news-label {
    width: 10em;
    font-size: 14px;
    letter-spacing: .1rem;
    font-weight: bold;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    border-radius: 2px;
    margin-bottom: 0;
}
.news-date {
    font-size: 14px;
    width: 140px;
    padding-left: 25px;
    color: #000;
    margin-bottom: 0;
}
.news-text {
    color: #000;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0;
}
.news-label.pink {
    background: var(--main-color-pink);
}
.news-label.blue {
    background: var(--main-color-blue);
}
.news-label.yellow {
    background: var(--main-color-yellow);
}
.section-support {
    background: var(--color-black);
    padding: 60px 0 100px;
}
.section-support .section-title {
    color: #fff;
    letter-spacing: .1rem;
}
.section-title {
    margin-bottom: 60px;
    line-height: 1.2;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}
.section-support .section-title::after {
    background: #fff;
}
.section-title::after {
    margin-top: 20px;
    content: '';
    display: block;
    width: 270px;
    height: 4px;
    margin: 25px auto;
}
.support-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 70px;
    padding: 15px;
    line-height: 1.2;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    color: #000 !important;
    border: 1px solid var(--color-darkgray);
    border-radius: 2px;
    overflow: hidden;
    text-align: center;
    background: #fff;
}
.support-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background: var(--main-color-blue);
}
.support-card::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    display: block;
    width: 36px;
    height: 14px;
    margin: auto;
    background: url(../img/icons/icon-right.png) no-repeat center;
    background-size: cover;
}
.support-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 15%;
}
.support-item {
    width: calc((100% - 30px) / 2);
}
.section-banner {
    padding: 60px 0;
}
.banner-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 10%;
}
.banner-box::before,
.banner-box::after {
  content: "";
  display: block;
  width: calc((100% - 120px) / 4);
}
.banner-box::before {
    order: 1;
}
.banner-box::after {
    content: "";
    display: block;
    width: calc((100% - 120px) / 4);
}
.banner-item {
    width: calc((100% - 120px) / 4);
    margin-bottom: 30px;
}
.banner-panel {
    transition:0.5s;
}
.banner-panel:hover {
    opacity: .6;
}
.banner-panel img {
    width: 100%;
    height: auto;
}
@media (max-width: 992px) {
    h1.top-title {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .news-label {
        width: 8em;
        font-size: 13px;
        padding: 6px;
    }
    .news-date {
        width: 50%;
        font-size: 13px;
        padding-left: 15px;
    }
    .news-text {
        width: 100%;
        margin-top: .5em;
    }
    .news-line+.news-line {
        padding: 10px 0;
    }
    .news-lists {
        border-radius: 0;
        padding: 10px 15px 20px;
    }
    .section-news {
        padding: 2rem 0;
    }
    a.reco-item {
        width: 100%;
    }
    .section-reco {
        padding: 1rem 0 2rem;
    }
    h2.h2-lead {
        font-size: 20px;
    }
    a.reco-item > h3 {
        font-size: 18px;
    }
    a.reco-item > p {
        font-size: inherit;
    }
    .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .section-title::after {
        height: 3px;
        width: 250px;
        margin: 15px auto;
    }
    .section-support {
        padding: 40px 0 50px;
    }
    .support-item {
        width: 100%;
        margin-bottom: 1rem;
    }
    .support-card {
        min-height: 40px;
        font-size: 18px;
    }
    .section-banner {
        padding: 30px 0 20px;
    }
    .banner-item {
        width: calc((100% - 30px) / 2);
        margin-bottom: 15px;
    }
}
/* --------------------------------
.hotel_guide
-------------------------------- */

ul.top_hotel_guide {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.top_hotel_guide li {
    width: calc((100% - 30px) / 4);
	display: inline-block;
	box-sizing: border-box;
	margin: 0 0 14px 0;
	border: 1px solid #ccc;
	text-align: center;
	padding-bottom: 10px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: bold;
    overflow: hidden;
}
ul.top_hotel_guide li a {
	text-decoration: none;
	color: #4d4d4d;
	display: inline-block;
}
ul.top_hotel_guide li a:hover {
	opacity: 0.9;
	filter: alpha(opacity=90);
	-ms-filter: "alpha( opacity=90 )";
}
ul.top_hotel_guide li img {
	margin-bottom: 10px;
	width: 100%;
	display: block;
    height: auto;
}
@media (max-width: 640px) {
    ul.top_hotel_guide li {
        width: calc((100% - 10px) / 2);
    }
}
@media (min-width: 1200px) {
    ul.top_hotel_guide li img {
        min-width: 280px;
    }
}
@media (min-width: 540px) and (max-width: 640px){
    ul.top_hotel_guide li img {
        min-width: 300px;
    }
}