@charset "utf-8";

* {
    margin: 0;
    padding: 0
}

body {
    text-size-adjust: 100%;
    background: #fef2c8 no-repeat center 10px;
    background-repeat: repeat-y center 10px;
    background-size: auto 124px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 400;
    padding-top: 20px;
    font-size: 16px;
    line-height: 1.4em;
    color: #5a1603;
}

h1 {
    font-size: 30px;
    line-height: 1.2em;
    margin-bottom: 17px;
    text-align: center;
}

@media screen and (max-width: 769px) {
    /* ウィンドウ幅が0〜769pxの場合に適用するCSS */
    h1 {
        font-size: 26px;
        line-height: 1.4em;
        margin-bottom: 20px;
    }
}

h1 span {
    display: inline-block
}

section {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 20px;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

section h2 {
    font-size: 20px;
    line-height: 1.4em;
    text-align: left;
    margin-bottom: 6px;
    margin-top: 20px;
}

section h3 {
    font-size: 18px;
    line-height: 1.4em;
    text-align: left;
    margin-bottom: 6px;
    margin-top: 5px;
}

section h3 span {
    font-size: 18px;
    line-height: 1.4em;
    color: red;
    text-align: left;
}

section p {
    font-size: 16px;
    line-height: 1.3em;
    padding-top: 3px;
    margin-bottom: 4px;
    text-align: left;
    word-break: break-all;
}

.bol {
    font-weight: bold;
}

.small {
    font-size: 12px;
    margin-top: 10px;
}

.smallbol {
    font-size: 12px;
    margin-top: 10px;
    font-weight: bold;
}

.smallred {
    font-size: 12px;
    margin-top: 10px;
    color: red;
}

.red {
    color: red;
}

.redbol {
    color: red;
    font-weight: bold;
}

a {
    color: #f25400
}

header img {
    width: 97%;
    max-width: 500px;
    min-width: 240px;
    height: auto;
    margin: 0 auto;
    display: block;
}

section img {
    width: 97%;
    max-width: 500px;
    min-width: 240px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.ssimg { /* スクリーンショット画像の際に使用するCSS */
    width: auto;
    max-width: 155px;
    min-width: 100px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.hintimg { /* ギミックページ用CSS */
    width: auto;
    /*max-width: 150px;*/
    max-width: 50px;
    min-width: 50px;
    height: auto;
    margin: 5px;
    vertical-align: middle;
    display: inline-block;
}

.snsimg { /* SNSアイコン用CSS */
    width: auto;
    /*max-width: 150px;*/
    max-width: 50px;
    min-width: 50px;
    height: auto;
    margin: 5px;
    vertical-align: middle;
    display: inline-block;
}

.transimg { /* 引き継ぎ関連用CSS */
    width: auto;
    /*max-width: 150px;*/
    max-width: 300px;
    min-width: 300px;
    height: auto;
    margin: 5px;
    vertical-align: middle;
    display: inline-block;
}

hr {
    border: none;
    border-top: solid 1px #553e3e;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.double {
    border-top: double 4px #649dff;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.dot {
    border-top: dotted 2px #ff7878;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}


/*//////////////////////////////
// アコーディオンメニュー
//////////////////////////////*/
/* ==========================
初期設定
========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/*img {
    width: 0%;
}*/

/* ==========================
アコーディオンメニュー
========================== */
.bl_accordion {
    background-color: #fff;
}

.bl_accordionTitle {
    font-size: 14px;
    font-weight: bold;
    background-color: #553e3e;
    padding: 10px 34px 10px 12px;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.bl_accordionTitle::before {
    content: "";
    width: 14px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 11px;
    transition: 0.3s;
}

.bl_accordionTitle::after {
    content: "";
    width: 2px;
    height: 14px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 17px;
    transition: 0.3s;
}

.bl_accordionTitle.active::after {
    opacity: 0;
}

.bl_accordionTitle:hover::after,
.bl_accordionTitle:hover::before,
.bl_accordionTitle.active::after,
.bl_accordionTitle.active::before {
    background-color: #fff;
}

.bl_accordionTitle:hover,
.bl_accordionTitle.active {
    background-color: #553e3e;
    color: #fff;
}

.bl_accordionTitle + .bl_accordionContent {
    display: none;
    padding: 10px;
}

.bl_accordionContent > * + * {
    margin-top: 10px;
}

/* ==========================
タブ以外のコンテンツの中身
========================== */
.ly_inner {
    width: 100%;
    max-width: 1080px;
    margin: 100px auto;
    padding: 30px;
    background-color: #ccc;
}

.ly_inner h2 {
    font-size: 250%;
    font-weight: bold;
    margin-bottom: 30px;
}

.md_textblock > * + * {
    margin-top: 10px;
}

.md_markList {
    list-style-type: disc;
    margin-left: 1.4rem;
}

.md_orderList {
    list-style-type: decimal;
    margin-left: 1.4rem;
}

.bl_accordion hr {
    border: none;
    border-top: 1px dotted #553e3e;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}


/*////////////////////////////////////////////////////////////////
// footer
////////////////////////////////////////////////////////////////*/

footer {
    position: relative;
    padding: 16px;
    background: #553e3e;
    color: #fff;
    font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    line-height: 15px;
    text-align: center;
    margin-top: 30px;
}

footer span {
    display: inline-block;
}

@media screen and (max-width: 769px) {
    /* ウィンドウ幅が0〜769pxの場合に適用するCSS */
    footer {
        font-size: 10px;
    }
}
