/* header */
header .logo img {
    height: 50px;
}

/* メインビジュアル */
.main_slide {
    height: 550px;
    position: relative;
}

.main_slide .catch {
    font-family: '游明朝', 'Meiryo', 'MS Pゴシック', sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    text-shadow: 0 3px 15px rgba(51, 51, 51, 0.6), 0 3px 15px rgba(51, 51, 51, 0.6), 0 3px 15px rgba(51, 51, 51, 0.6);
}

.main_slide .catch p {
    font-size: 26px;
    color: #fff;
    letter-spacing: 3px;
    font-weight: 500;
}

.main_slide .catch img {
    width: 135px;
    filter: drop-shadow(0px 0px 5px rgba(51, 51, 51, 0.6));
}

/* おすすめポイント */
.sec_point .sec_point_inr.right {
    margin-bottom: 60px;
}

.sec_point_inr ul.disc li {
    background: none;
}

.img-wrap,
.img-wrap02 {
	width: 950px;
	display: flex;
    flex-wrap: wrap;
}
.img-wrap li {
    width: calc( 25% - 9px);
    margin-right: 12px;
    margin-bottom: 12px;
	box-sizing: border-box;
	margin-top: 20px;
}

.img-wrap02 li {
    width: calc( 50% - 6px);
    margin-right: 12px;
    margin-bottom: 12px;
	box-sizing: border-box;
	margin-top: 20px;
}

.img-wrap li:nth-child(4n),
.img-wrap02 li:nth-child(2n) {
    margin-right: auto;
}

/* おすすめプラン */
#plan_wrap .block a {
    color: #262626;
}

#plan_wrap .block p {
    margin-top: 15px;
}

#plan_wrap .block a span {
    position: relative;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    line-height: 30px;
    padding: 0 15px 0 20px;
    border-bottom: 1px solid #758098;
    text-align: right;
    margin-top: 8px;
}

#plan_wrap .block a span::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    box-sizing: border-box;
    width: 6px;
    height: 3px;
    border: 3px solid transparent;
    border-left: 6px solid #192b54;
}

/* 設備・サービス */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 16px;
}

.card {
    display: flex;
    flex-direction: column;
    width: 32.1%;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0;
    border-radius: 5px;
    overflow: hidden;
    /* box-shadow: 0 10px 20px #ccc; */
    color: #333;
    text-decoration: none;
    transition: 0.5s;
}

.card-image img {
    width: 100%;
    object-fit: contain;
}

.card-box {
    padding: 16px;
}

.card-ttl {
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
}

.card-txt {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.card:hover {
    box-shadow: 0 10px 20px #999;
}

/* 園内マップ */
.map {
    padding: 0 0 10px;
}

.map-img img {
    width: 100%;
}

/* アクセス */
/* .box_block_inr .block {
	width: 100%;
	float: none;
    margin: 0 auto;
}

.box_block_inr .block:nth-child(2) {
    margin-top: 25px;
} */

.sec_access .disc:last-child {
	margin-bottom:0;
}

.sec_access h5 {
    text-align: center;
}

.sec_access h5:nth-of-type(2n) {
    margin-top: 15px;
}

.sec_access .box02 {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 15px 0 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 1.7;
}

.sec_access .box02::before {
     content: "";
    display: block;
    width: calc(100% + 10px);  /* 適度な大きさを指定 */
    height: calc(100% + 9px); /* 適度な大きさを指定 */
    border: solid 1px #1e392a;   /* 外側の線 */
    position: absolute;       /* 相対位置に指定 */
    top: -5px;/* 大きさに合わせて微調整 */
    left: -6px;
}

/* footer */
footer .logo img {
    width: 350px;
}

