@charset "utf-8";
/** ------ 全体の設定 ------ **/
body {
    background-color: #ffffff; /* 背景画像が読み込まれる前に表示される背景のカラー */
    color: #000000;
    margin: 0 auto; /* 余白の削除 */
    padding: 0; /* 余白の削除 */
    width: 100%;
    height: 100%;
    word-wrap: break-word; /* 必要に応じて単語の途中で改行します。 */
    font-size: 16px;
}
#app {
    color: #000000;
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
    border: hidden;
    width: 100%;
}
a, a:hover {
    color: inherit;
    text-decoration: none;
}
h2 {
    font-family: "游ゴシック", "ヒラギノ明朝 ProN", sans-serif;
    font-size: xxx-large;
    position: relative;
    margin-bottom: 50px;
    padding: 50px 0 10px;
}
h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    content: '';
    background-image: -webkit-gradient(linear, left top, right top, from(#298F32), to(#fee140));
    background-image: -webkit-linear-gradient(left, #298F32 0%, #fee140 100%);
    background-image: linear-gradient(to right, #298F32 0%, #fee140 100%);
}

.indent_1 {
    text-indent:1em;
    text-align: left;
}

.max_width_1000 {
    max-width: 1000px;
    margin: auto;
}

/** ------ ヘッターの設定 ------ **/
header {
    position: fixed;
    min-height: 60px;
    border: 0;
    z-index: 100;
}
header #background {
    background-image: url("../images/background_1920-1280.jpg"); /* 画像ファイルの指定 */
    background-position: center; /* 画像を常に天地左右の中央に配置 */
    background-repeat: no-repeat; /* 画像をタイル状に繰り返し表示しない */
    background-attachment: fixed; /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
    background-size: cover; /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
    z-index: 101;
    position: fixed;
    top: 0;
    left: 0;
    min-height: 60px;
    width: 100%;
    text-align: center;
    border: 0;
}
header #background .transparent_background {
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: hidden;
}
@media screen and (max-width: 480px) {
    /** ------ 背景の設定 ------ **/
    #main_page {
        background-image: url("../images/background_720-1280.jpg"); /* 画像ファイルの指定 */
        background-position: center top;
        background-size: 100%;
    }
}
header #mini_title {
    z-index: 102;
}
header #circle {
    background-color: #fff;
    width: 100px;
    height: 60px;
    border-radius: 40px 40px 40px 40px;
    margin: auto;
    padding-top: 5px;
    z-index: 103;
}


/** ------ エラーメッセージ表示の設定 ----- **/
.error_message {
    color: #ff0000;
    font-weight: bold;
    display: block;
}
/** ------ 赤字表示の設定 ----- **/
.red_text {
    color: #ff0000;
}

/** ------ 電話番号の設定 ------ **/
.telephone_number {
    font-family: 'Arial Black', sans-serif;
    font-size: 50px;
    margin: 0;
    padding: 0;
}
/** ------ お問い合わせのボタン設定 ----- **/
a.inquiry_button01 {
    color: #fff;
    background-color: #eb6100;
    font-size: 1.8rem;
    border-radius: 100vh;
    max-width: 400px;
    margin: auto;
    padding: 20px 0;
}

/* ----- 半透明 ----- */
.opacity50 {
    opacity: 0.5;
}

@media screen and (max-width: 480px) {
    /** ------ 電話番号の設定 ------ **/
    .telephone_number {
        font-size: 30px;
        margin-bottom: 20px;
    }
}
