@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}

@font-face {
    font-family: "jorte gothic";
    src: url("../fonts/jorte_gothic.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: "jorte gothic", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
    line-height: 1.7;
    background-color: #ECEDE8;
    color: #401C21;
}

a {
    text-decoration: none;
    color: #401C21;
}

ul, li {
    list-style: none;
}

img {
    max-width: 100%;
}

.wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 4%;
}

.mainvisual {
    height: 17vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* 大きな背景画像 */
.big-bg {
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

/* ボタン　*/
.btn {
    display: block;
    text-align: center;
    width: 250px;
    margin: 10px auto 15px;
    background-color: rgb(64 28 33 / 60%);
    border-radius: 8px;
}

.btn .btn-link {
    color: #fff;
    position: relative;
    display: inline-block;
    width: 100%;
    line-height: 1;
    font-size: 0.925rem;
    font-weight: bold;
    padding: 13px 10px 13px 15px;
}

.btn .btn-link::before {
    content: '';
    width: 7px;
    height: 7px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    left: 52px;
    top: 16px;
    transform: rotate(45deg);
}

.items.taiken .btn .btn-link::before {
    left: 28px;
}

/* コンテンツ
------------------------------- */
.page-info {
    position: relative;
}

.page-title {
    text-align: center;
    color: #fff;
    font-family: "Yu Mincho", "YuMincho", serif;
    font-size: 1.375rem;
    font-weight: normal;
}

.contents {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.items {
    background: #fff;
    border-radius: 10px;
}

.items .items-title {
    position: relative;
    text-align: left;
    font-size: 1.2rem;
    font-weight: normal;
    line-height: 1;
    background: rgb(64 28 33 / 42%);
    padding: 15px 5px 15px 80px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.items.sp-block {
    background: none;
}

.items.sp-block .items-title {
    background: #ECEDE8;
    border: none;
    line-height: 1.2;
    text-align: center;
    padding: 10px;
    width: 220px;
    margin: 0 auto;
}

.items.sp-block .btn .btn-link {
    width: 170px;
    padding: 20px 10px;
    background-color: #fff;
    border: 2px solid #401C21;
    border-radius: unset;
    color: #401C21;
    box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
}

.items.sp-block .btn {
    background: none;
}

.items.sp-block .btn .btn-link::before {
    display: none;
}

.items-title img {
    position: absolute;
    width: 38px;
    height: auto;
    top: 6px;
    left: 15px;
}

.items.foods .items-title img {
    top: 9px;
}

.items.map .items-title img {
    top: 4px;
}

.items.sp-block .items-title img:nth-child(1) {
    width: 70px;
    left: -36px;
    right: unset;
}

.items.sp-block .items-title img:nth-child(2) {
    width: 40px;
    top: 10px;
    right: -15px;
    left: unset;
    transform: rotate(15deg);
}

.items-title img.camera {
    top: 9px;
}

.items-detail {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    background-color: #fff;
    padding: 15px 8px 8px;
}

.items-detail img {
    width: 40%;
    height: auto;
    object-fit: cover;
}

.items-detail p {
    width: 60%;
    font-size: 0.825rem;
}

/* フッター
------------------------------- */
footer {
    background: rgb(64 28 33 / 45%);
    text-align: center;
    padding: 25px 0 20px;
}

footer p, footer a, footer small {
    color: #fff;
    font-size: 0.75rem;
}

footer .logo img {
    width: 120px;
    height: auto;
    margin: 5px auto;
}

footer .company {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
}

footer .company li {
    width: calc(100% / 2);
}