@charset "UTF-8";

/*--------------------------------------------------------------*/
/* CSS and Graphics are released under Creative Commons Licence */
/* https://www.webplus.jp/                                      */
/* Copyright (C) Kiyonobu Horita @ WEBPLUS Inc.                 */
/*--------------------------------------------------------------*/


/* ========================================================

　Grobal Setting

=========================================================== */

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
}

html {
    font-size: 62.5%; /* ブラウザのルートフォントサイズである16pxを、1rem＝10pxにリセット */
    -webkit-text-size-adjust: 100%; /* モバイル時に機能するフォントの自動調整を100％に */
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


/* ========================================================

　body

=========================================================== */

body {
    width: 100%;
    height: 100%;
    color: rgba(0, 0, 0, 1.0);
    font: normal 400 1.6em/2.4rem 'Noto Sans CJK JP', 'Noto Sans JP', 'メイリオ', 'Meiryo', 'sans-serif';
    word-wrap: break-word;
    letter-spacing: 0.0625rem;
    overflow-x: hidden;
}


/* ========================================================

　Default Link Color

=========================================================== */

a:link,
a:visited {
    color: rgba(0, 105, 195, 1.0); /* 青 */
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
    color: rgba(15, 185, 95, 1.0); /* 緑 */
}

a:active,
a.active {
    color: rgba(235, 95, 0, 1.0); /* オレンジ */
}


/* ========================================================

　h1～h6 & Other Text

=========================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: 0.25rem;
}

dt {
    font-weight: 400;
}

article {
    padding: 8.0rem 0;
}

@media only screen and (max-width:767px) {

    h2 {
        line-height: 3.0rem;
    }

}

@media only screen and (min-width:768px) {

    h2 {
        font-size: 4.8rem;
        line-height: 6.0rem;
    }

    article {
        padding: 10.0rem 0;
    }

}


/* ========================================================

　nav

=========================================================== */

@media only screen and (max-width:767px) {

    #mainNav .navbar-collapse {
        max-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    #mainNav .navbar-nav {
        min-height: 100vh;
        margin-top: 2.0rem;
    }

}

@media only screen and (max-width:991px) {

    #mainNav {
        border-bottom: 0.1rem solid rgba(220, 220, 220, 1.00);
        background-color: rgba(255, 255, 255, 1.0);
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    #mainNav .navbar-brand {
        max-width: 20.0rem;
    }

    #mainNav .navbar-toggler {
        color: rgba(15, 185, 95, 1.0);
        padding: 1.0rem;
    }

    #mainNav .navbar-nav > li > a {
        color: rgba(0, 0, 0, 1.0);
        padding-left: 2.0rem;
        line-height: 4.0rem;
    }

    #mainNav .navbar-nav > li > a.active {
        color: rgba(255, 255, 255, 1.0);
        background-color: rgba(235, 95, 0, 1.0);
    }

}

@media only screen and (min-width: 992px) {

    #mainNav {
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

    #mainNav.navbar-shrink {
        border-bottom: 0.1rem solid rgba(220, 220, 220, 1.00);
        background-color: rgba(255, 255, 255, 1.0);
    }

    #mainNav .navbar-brand {
        max-width: 28.0rem;
    }

    #mainNav.navbar-shrink .navbar-brand {
        max-width: 18.0rem;
    }

    #mainNav .navbar-nav > li > a,
    #mainNav .navbar-nav > li > a:focus {
        padding-left: 2.0rem;
        padding-right: 2.0rem;
        color: rgba(255, 255, 255, 0.7);
    }

    #mainNav .navbar-nav > li > a:hover,
    #mainNav .navbar-nav > li > a:focus:hover {
        color: rgba(255, 255, 255, 1.0);
    }

    #mainNav.navbar-shrink .navbar-nav > li > a,
    #mainNav.navbar-shrink .navbar-nav > li > a:focus {
        color: rgba(0, 0, 0, 1.0);
    }

    #mainNav.navbar-shrink .navbar-nav > li > a:hover,
    #mainNav.navbar-shrink .navbar-nav > li > a:focus:hover {
        color: rgba(15, 185, 95, 1.0);
    }

    #mainNav .navbar-nav > li > a.active {
        color: rgba(235, 95, 0, 1.0);
        font-weight: 700;
    }

}


/* ========================================================

　header

=========================================================== */

header {
    position: relative;
    width: 100%;
    padding: 15.0rem 0;
    color: rgba(255, 255, 255, 1.0);
    background: -o-radial-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.95) 100%), url("images/heroimage.jpg") center top /cover no-repeat;
    background: radial-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.95) 100%), url("images/heroimage.jpg") center top /cover no-repeat;
}

.thanks header {
    background: -o-radial-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.95) 100%), url("images/thanks.jpg") center top /cover no-repeat;
    background: radial-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.7) 70%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.95) 100%), url("images/thanks.jpg") center top /cover no-repeat;
}

header .inner {
    text-align: center;
}

header .inner p {
    margin-bottom: 3.0rem;
    font-size: 1.8rem;
    text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 1.0), 0 0 0.25rem rgba(0, 0, 0, 1.0), 0 0 0.25rem rgba(0, 0, 0, 1.0);
}

header .inner h1 {
    font-size: 3.0rem;
    font-family: '游明朝体', 'Yu Mincho', YuMincho, serif;
    text-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 1.0), 0 0 0.25rem rgba(0, 0, 0, 1.0), 0 0 0.25rem rgba(0, 0, 0, 1.0);
}

header .inner h1 span {
    font-size: 70%;
}

@media only screen and (min-width: 768px) {

    header .inner p {
        margin-bottom: 6.0rem;
        font-size: 3.6rem;
    }

    header .inner h1 {
        font-size: 5.0rem;
        line-height: 5.0rem;
        letter-spacing: 1.0rem;
    }

}

@media only screen and (min-width: 992px) {

    header {
        height: 100vh;
    }

    .thanks header {
        height: 50vh;
    }

    header .inner {
        margin: 0 auto;
    }

    header .inner p {
        margin-bottom: 8.0rem;
        font-size: 4.8rem;
    }

    header .inner h1 {
        font-size: 8.0rem;
        line-height: 8.0rem;
    }

}


/*　iOS以外は背景画像をフィクス
----------------------------------------------------------- */

/* Chrome / Firefox / Opera */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {

    header,
    .thanks header {
        background-attachment: fixed;
    }

}

/* Edge 1 */
@supports (-ms-ime-align: auto) {

    header,
    .thanks header {
        background-attachment: fixed;
    }

}

/* Edge 2 */
_:-ms-lang(x)::backdrop,
header,
.thanks header {
    background-attachment: fixed;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop,
header,
.thanks header {
    background-attachment: fixed;
}


/* ========================================================

　Concept

=========================================================== */

#concept h2 {
    margin-bottom: 5.0rem;
    color: rgba(15, 185, 95, 1.0);
    text-align: center;
    letter-spacing: 0.5rem;
}

#concept div[class^="col"]:nth-child(n+2) {
    padding: 2.0rem;
    font-weight: 500;
    text-align: center;
}

#concept div[class^="col"]:nth-child(2) {
    margin-bottom: 2.0rem;
    border-bottom: 0.5rem solid rgba(220, 220, 220, 1.0);
}

#concept h3 {
    color: rgba(0, 105, 195, 1.0);
    font-size: 2.2rem;
}

#concept figure {
    margin-top: 3.0rem;
    margin-bottom: 5.0rem;
}

#concept img {
    max-height: 14.0rem;
}

#concept p span {
    color: rgba(255, 140, 0, 1.0);
    font-size: 8.0rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
}

#concept p:last-child {
    margin-top: 2.0rem;
    text-align: left;
}

@media only screen and (min-width:576px) {

    #concept p:last-child {
        text-align: center;
    }

}

@media only screen and (min-width:768px) {

    #concept div[class^="col"]:nth-child(2) {
        margin-bottom: 0;
        border: none;
        border-right: 0.5rem solid rgba(220, 220, 220, 1.0);
    }

    #concept div[class^="col"]:nth-child(n+2) {
        margin-top: 5.0rem;
    }

    #concept h3 {
        height: 6.0rem;
    }

    #concept p:last-child {
        text-align: left;
    }

}

@media only screen and (min-width:992px) {

    #concept h3 {
        height: 8.0rem;
        font-size: 3.0rem;
    }

    #concept p:last-child {
        text-align: center;
    }

}


/* ========================================================

　Strength

=========================================================== */

#strength h2 {
    margin-bottom: 5.0rem;
    height: 6.0rem;
    font-size: 4.0rem;
    background: -o-repeating-linear-gradient(135deg, rgba(145, 195, 30, 0.25), rgba(145, 195, 30, 0.25) 0.5rem, rgba(255, 255, 250, 1.0) 0.5rem, rgba(255, 255, 250, 1.0) 1.0rem);
    background: repeating-linear-gradient(-45deg, rgba(145, 195, 30, 0.25), rgba(145, 195, 30, 0.25) 0.5rem, rgba(255, 255, 250, 1.0) 0.5rem, rgba(255, 255, 250, 1.0) 1.0rem);
}

#strength .row .row {
    margin-bottom: 5.0rem;
}

#strength .row .row:last-child {
    margin-bottom: 0;
}

#strength .row .row img {
    padding: 0.5rem;
    border: 0.1rem solid rgba(220, 220, 220, 1.0);
    background-color: rgba(255, 255, 255, 1.00);
}

#strength .row .row .text {
    margin-top: 1.0rem;
    font-size: 2.0rem;
    line-height: 3.0rem;
}

@media only screen and (min-width: 768px) {

    #strength h2 {
        height: 8.0rem;
        font-size: 4.8rem;
    }

    #strength .row .row {
        padding: 2.0rem;
    }

    #strength .row .row:nth-child(even) {
        background-color: rgba(220, 220, 220, 0.5);
    }

    #strength .row .row .text {
        padding: 3.0rem;
    }

}

@media only screen and (min-width:992px) {

    #strength .row .row .text {
        padding: 3.0rem 5.0rem;
    }

}


/* ========================================================

　Company

=========================================================== */

#company h2 {
    margin-bottom: 5.0rem;
    height: 6.0rem;
    font-size: 4.0rem;
    background: -o-repeating-linear-gradient(135deg, rgba(145, 195, 30, 0.25), rgba(145, 195, 30, 0.25) 0.5rem, rgba(255, 255, 250, 1.0) 0.5rem, rgba(255, 255, 250, 1.0) 1.0rem);
    background: repeating-linear-gradient(-45deg, rgba(145, 195, 30, 0.25), rgba(145, 195, 30, 0.25) 0.5rem, rgba(255, 255, 250, 1.0) 0.5rem, rgba(255, 255, 250, 1.0) 1.0rem);
}

#company dt {
    padding: 1.0rem;
    background-color: rgba(0, 105, 195, 1.0);
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.8rem;
}

#company dt:nth-child(n+2) {
    margin-top: 2.0rem;
}

#company dd {
    padding: 1.0rem 0;
}

#company dd ul {
    margin-left: 2.4rem;
    padding: 0;
}

#company dd span {
    display: block;
}

@media only screen and (min-width: 768px) {

    #company h2 {
        height: 8.0rem;
        font-size: 4.8rem;
    }

}

@media only screen and (min-width:992px) {

    #company dt {
        clear: both;
        float: left;
        width: 12.0rem;
        text-align: center;
    }

    #company dt:nth-child(n+2) {
        margin-top: 0;
    }

    #company dd {
        padding: 1.0rem 0 3.0rem 13.0rem;
    }

    #company .row .row div[class^="col"]:nth-child(1) dd:nth-child(4) {
        padding: 1.0rem 0 1.0rem 13.0rem;
    }

    #company .row .row div[class^="col"]:nth-child(2) dd {
        padding: 1.0rem 0 1.0rem 13.0rem;
    }

    #company dd span {
        display: inline;
    }

}


/* ========================================================

　History

=========================================================== */

#history h2 {
    margin-bottom: 5.0rem;
    height: 6.0rem;
    font-size: 4.0rem;
    background: -o-repeating-linear-gradient(135deg, rgba(145, 195, 30, 0.25), rgba(145, 195, 30, 0.25) 0.5rem, rgba(255, 255, 250, 1.0) 0.5rem, rgba(255, 255, 250, 1.0) 1.0rem);
    background: repeating-linear-gradient(-45deg, rgba(145, 195, 30, 0.25), rgba(145, 195, 30, 0.25) 0.5rem, rgba(255, 255, 250, 1.0) 0.5rem, rgba(255, 255, 250, 1.0) 1.0rem);
}

#history dt {
    width: 6.0rem;
    color: rgba(0, 0, 0, 1.0);
    font-weight: 500;
    text-align: right;
}

#history dd {
    margin-bottom: 2.0rem;
    padding: 1.0rem 0;
    border-top: 0.1rem dotted rgba(170, 170, 170, 1.0);
}

@media only screen and (min-width: 768px) {

    #history h2 {
        height: 8.0rem;
        font-size: 4.8rem;
    }

    #history dt {
        clear: both;
        float: left;
        width: 9.0rem;
        margin: 0;
        padding: 1.0rem 2.5rem 1.0rem 0;
    }

    #history dd {
        margin: 0;
        margin-left: 10.0rem;
        padding: 1.0rem 0 1.0rem 4.0rem;
        border: none;
        border-left: 0.4rem solid rgba(15, 185, 95, 1.0);
    }

    #history dd::before {
        display: inline-block;
        position: relative;
        left: -4.9rem;
        width: 1.4rem;
        height: 1.4rem;
        margin-right: -1.4rem;
        border: 0.3rem solid rgba(220, 220, 220, 1.0);
        border-radius: 0.7rem;
        background-color: rgba(240, 0, 10, 1.0);
        content: "";
    }

}

@media only screen and (min-width:992px) {

    #history .photo div[class^="col"]:first-child {
        margin-bottom: 50.0vh;
    }

}


/* ========================================================

　Contact

=========================================================== */

#contact h2 {
    margin-bottom: 5.0rem;
    height: 6.0rem;
    font-size: 4.0rem;
    background: -o-repeating-linear-gradient(135deg, rgba(145, 195, 30, 0.25), rgba(145, 195, 30, 0.25) 0.5rem, rgba(255, 255, 250, 1.0) 0.5rem, rgba(255, 255, 250, 1.0) 1.0rem);
    background: repeating-linear-gradient(-45deg, rgba(145, 195, 30, 0.25), rgba(145, 195, 30, 0.25) 0.5rem, rgba(255, 255, 250, 1.0) 0.5rem, rgba(255, 255, 250, 1.0) 1.0rem);
}

/* 電話でお問い合わせ部 */
.phone {
    margin-top: 3.0rem;
    font-size: 2.4rem;
}

.phone i {
    margin-right: 1.0rem;
}

.phone span {
    font-weight: 500;
}

.phone a {
    color: rgba(0, 0, 0, 1.0);
}

@media only screen and (min-width:768px) {

    #contact h2 {
        height: 8.0rem;
        font-size: 4.8rem;
    }

}

/*　フォーム
/*-------------------------------------------*/
#contact #mailformpro dl {
    margin-top: 4.0rem;
}

#contact #mailformpro dt {
    padding-top: 1.0rem;
    width: 100%;
    color: rgba(0, 0, 0, 1.0);
    font-size: 1.6rem;
    text-align: left;
}

/* 必須項目 */
#contact #mailformpro dt .must {
    float: right;
    padding: 0 1.0rem;
    background: rgba(240, 0, 10, 1.0);
    border-radius: 0.4rem;
    color: rgba(255, 255, 255, 1.0);
    font-size: 1.2rem;
}

#contact #mailformpro dd {
    padding-bottom: 1.0rem;
    padding-left: 0;
    padding-right: 0;
}

#contact #mailformpro dd:last-child {
    border-bottom: 0.1rem solid rgba(204, 204, 204, 1.0);
}

/* 送信前確認チェック */
#contact #mailformpro .lastCheck {
    font-size: 1.6rem;
    line-height: 3.2rem;
}

#contact #mailformpro label.mfp_not_checked em {
    color: rgba(0, 105, 180, 1.0);
    font-size: 1.6rem;
    font-style: normal;
}

#contact #mailformpro label.mfp_checked em {
    color: rgba(235, 100, 0, 1.0);
    font-size: 1.6rem;
    font-weight: 500;
    font-style: normal;
}

/* 各入力窓設定 */
#contact #mailformpro input {
    width: 100%;
    height: 4.0rem;
    color: rgba(0, 0, 0, 1.0);
    font-size: 1.6rem;
    font-weight: 300;
}

#contact #mailformpro select {
    width: 14.0rem;
    height: 4.0rem;
    color: rgba(0, 0, 0, 1.0);
    font-size: 1.6rem;
    font-weight: 300;
}

#contact #mailformpro select#class {
    width: inherit;
}

#contact #mailformpro textarea {
    padding-top: 1.0rem;
    padding-bottom: 1.0rem;
    width: 100% !important;
    height: 20.0rem !important;
    color: rgba(0, 0, 0, 1.0);
    font-size: 1.6rem;
    font-weight: 300;
}

#contact #mailformpro input#post {
    width: 14.0rem;
}

#contact #mailformpro input.check {
    position: relative;
    top: -0.3rem;
    width: 2.0rem;
    height: 2.0rem;
}

/* リセットボタン・送信ボタン */
#contact .mfp_buttons button {
    width: 20.0rem;
    height: 6.0rem;
    font-size: 2.4rem;
    cursor: pointer;
}

#contact .mfp_buttons button:first-child {
    margin-bottom: 1.0rem;
}

/* プレースホルダー */ ::-webkit-input-placeholder {
    font-weight: 300;
    opacity: 0.8;
}

::-moz-placeholder {
    font-weight: 300;
    opacity: 0.5;
}

:-o-input-placeholder {
    opacity: 0.5;
}

:-ms-input-placeholder {
    font-weight: 300;
    opacity: 0.5;
}

@media (min-width:768px) {

    #contact #mailformpro dt {
        padding-left: 1.0rem;
        width: 24.0rem;
    }

    #contact #mailformpro dd {
        padding-left: 28.0rem;
        padding-right: 1.0rem;
        padding-bottom: 1.0rem;
        border-top: 0.1rem solid rgba(204, 204, 204, 1.0);
    }

    #contact #mailformpro dd:last-child {
        border-bottom: 0.1rem solid rgba(204, 204, 204, 1.0);
    }

    #contact #mailformpro .name,
    #contact #mailformpro .company,
    #contact #mailformpro .mail,
    #contact #mailformpro .tele,
    #contact #mailformpro .lastCheck {
        background-color: rgba(220, 220, 220, 0.2);
    }

    #contact #mailformpro input.check {
        top: -0.2rem;
    }

    #contact .mfp_buttons button:first-child {
        margin-right: 2.0rem;
        margin-bottom: 0;
    }

}

@media (min-width:992px) {

    #contact #mailformpro .name input,
    #contact #mailformpro .kana input,
    #contact #mailformpro .tele input {
        width: 50%;
    }

}

@media (min-width:1200px) {

    #contact #mailformpro dt {
        width: 30.0rem;
    }

    #contact #mailformpro dd {
        padding-left: 36.0rem;
    }

}

/*　送信完了
/*-------------------------------------------*/
#thanks {
    margin-top: 3.0rem;
}

/* 通番部 */
#mfp_thanks {
    padding: 3.0rem 0;
    border-top: 0.1rem solid rgba(204, 204, 204, 1.0);
    border-bottom: 0.1rem solid rgba(204, 204, 204, 1.0);
    font-size: 2.0rem;
    text-align: center;
}

/* 通番 */
#mfp_thanks strong {
    display: block;
    padding: 0.5rem 0;
    color: rgba(255, 140, 0, 1.0);
    font-size: 3.0rem !important;
    font-weight: 700;
}

/* 「ありがとうございました」部 */
.thanksMessage h3 {
    margin-top: 3.0rem;
    margin-bottom: 3.0rem;
    color: rgba(15, 185, 95, 1.0);
    font-size: 2.4rem;
    font-weight: 500;
    text-align: justify;
}

.thanksMessage p {
    text-align: justify;
}

.thanksMessage ul {
    margin: 3.0rem 0 3.0rem 0;
    padding-left: 3.2rem;
    color: rgba(255, 0, 0, 1.0);
}

@media only screen and (min-width:768px) {

    #mfp_thanks strong {
        display: inline;
        position: relative;
        top: 0.4rem;
        font-size: 3.6rem !important;
    }

}


/* ========================================================

　footer

=========================================================== */

footer {
    padding: 3.0rem 0;
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 1.0);
    text-align: center;
}

footer p {
    margin: 0;
}


/* ========================================================

　Scroll to Pagetop

=========================================================== */

.scroll-to-top {
    display: none;
    right: 0;
    bottom: 0;
    width: 15.0vw;
    max-width: 6.0rem;
    height: auto;
    opacity: 0.7;
    z-index: 1042;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    -webkit-animation: slideInBottom 0.3s;
    animation: slideInBottom 0.3s;
}

.scroll-to-top:hover {
    opacity: 1.0;
}

.scroll-to-top img {
    width: 100%;
    height: auto;
}

@-webkit-keyframes slideInBottom {

    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1.0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

}

@keyframes slideInBottom {

    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        opacity: 1.0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

}


/* ========================================================

　Modal Window

=========================================================== */

/*　モーダル
----------------------------------------------------------- */
.modal-body {
    padding-top: 6.0rem;
    padding-bottom: 3.0rem;
    font-size: 1.4rem;
    font-weight: 300;
    text-align: center;
    line-height: 2.0rem;
}

.modal-body h2 {
    margin-bottom: 2.0rem;
    height: 6.0rem;
    font-size: 2.4rem;
    background: -o-repeating-linear-gradient(135deg, rgba(145, 195, 30, 0.25), rgba(145, 195, 30, 0.25) 0.5rem, rgba(255, 255, 250, 1.0) 0.5rem, rgba(255, 255, 250, 1.0) 1.0rem);
    background: repeating-linear-gradient(-45deg, rgba(145, 195, 30, 0.25), rgba(145, 195, 30, 0.25) 0.5rem, rgba(255, 255, 250, 1.0) 0.5rem, rgba(255, 255, 250, 1.0) 1.0rem);
}

.modal-body h3 {
    margin: 2.0rem 0;
}

.modal-body p {
    text-align: justify;
}

.modal-body dl {
    margin: 5.0rem 0;
    text-align: left;
}

.modal-body dt {
    margin-bottom: 1.0rem;
    font-weight: 500;
}

.modal-body dt:nth-child(n+2) {
    margin-top: 4.0rem;
}

.modal-body dd {
    text-align: justify;
}

.modal-body dd ul {
    margin: 0;
    margin-top: 1.0rem;
    margin-left: 4.0rem;
    margin-bottom: 2.0rem;
    padding: 0;
}

.modal-body .box {
    margin-bottom: 3.0rem;
    padding: 1.0rem;
    border: 0.1rem solid rgba(220, 220, 220, 1.0);
    border-radius: 0.6rem;
}

.privacy-modal .close {
    position: absolute;
    top: 1.0rem;
    right: 1.5rem;
    color: rgba(0, 105, 195, 1.0);
    font-size: 4.0rem;
    line-height: 3rem;
    opacity: 1;
    z-index: 1;
    -webkit-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
}

.privacy-modal .close:hover {
    color: rgba(235, 95, 0, 1.0);
}

/*　button
/*-------------------------------------------*/
.privacy-modal .btn {
    padding-left: 2.0rem;
    padding-right: 2.0rem;
    background-color: rgba(0, 105, 195, 1.0);
    border: none;
    font-size: 1.6rem;
    line-height: 4.0rem;
    outline: none;
    -webkit-transition: background-color 0.3s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

.privacy-modal .btn:hover {
    background-color: rgba(26, 165, 219, 1.0);
}

@media only screen and (min-width:768px) {

    .modal-body .box {
        padding: 2.0rem;
    }

    .modal-body h2 {
        height: 8.0rem;
        font-size: 4.8rem;
    }

}



/* ---- End of file --------------------------------------- */