/* 基本設定 */
body, html {
    height: 100%;
    margin: 0 auto;
    letter-spacing: 1px;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, sans-serif;
    color: #454545;
    font-size: 95%;
    line-height: 1.8;
}

/* ヘッダー */
header {
    width: 720px;
    margin: 20px auto 0;
}

header h1 {
    margin-bottom: 30px;
    text-align: center;
}

header h1 img {
    width: 40%;
}

/* 基本レイアウト */
.body_wrap {
}

/* メインタイトル */
#infotitle_h2 {
    width: 100%;
    text-align: center;
    background: #ae5547;
    color: #fff;
    padding: 16px 0;
    margin: 0 auto;
    font-weight: bold;
    margin-bottom: 30px;
}

/* コンテンツセクション */
#p_contents {
    width: 800px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0px;
}

#p_contents h2 {
    text-align: center;
}

/* お土産セクション内側 */
.souvenir_inner {
    padding-bottom: 100px;
}

/* ボタンのスタイル */
.button a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 280px;
    font-size: 140%;
    padding: 10px 25px;
    font-family: "Noto Sans Japanese";
    color: #fff;
    line-height: 1.8;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    background-color: #FAD961;
    background-image: linear-gradient(180deg, #f8b854 0%, #F76B1C 100%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    border-radius: 9999px;
}

.button-gray a {
  background-color: #9e9e9e;
  background-image: linear-gradient(180deg, #b8b8b8 0%, #7a7a7a 100%);
}

.button a:hover {
    color: #fff;
    opacity: 0.5;
}

.button a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}

.button a:hover:after {
    border-color: #fff;
}



/* ボタンの上の吹き出し */
.tooltip {
    font-family: "Noto Sans Japanese";
    font-size: 100%;
    font-weight: 500;
    position: relative;
    margin-bottom: .5rem;
    text-align: center;
    color: #333333;
}

.tooltip:before {
    margin-right: 1rem;
    content: '＼';
}

.tooltip:after {
    margin-left: 1rem;
    content: '／';
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    header {
        width: 100%;
        margin: 20px auto 0;
    }
    
    header h1 img {
        width: 90%;
    }
    
    #p_contents {
        width: 100%;
        margin: 0 auto;
    }
}