@charset "utf-8";

/* -----------------------------------------------------------------
RESET CSS
LAST UPDATE:
--------------------------------------------------------------------*/
h2,
p {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
} */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

input,
textarea {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

img {
    vertical-align: bottom;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th {
    text-align: left;
}

a:focus {
    outline: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h3,
h4,
h5,
h6,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-style: normal;
    font-weight: 300;
    font-size: 100%;
    -webkit-appearance: none;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* -----------------------------------------------------------------
LAYOUT CSS
LAST UPDATE:
--------------------------------------------------------------------*/
html {
    color: #131834;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    font-size: 16px;
    height: 100%;
}

#index h2 {
    font-size: 30px;
    font-style: normal;
}

p {
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.3;
    margin-bottom: 10px;
}

ul li,
ol li {
    font-weight: 500;
}

p.lead {
    margin-bottom: 30px;
}

.spOnly {
    display: none;
}

@media screen and (max-width: 767px) {
    p.lead {
        margin-bottom: 15px;
    }

    .pcOnly {
        display: none;
    }

    .spOnly {
        display: block;
    }
}

/*--------------------------------
LINk
---------------------------------*/
body a {
    text-decoration: none;
    color: #27150e;
}

body a:hover {}

body a:focus {
    outline: none;
}

/*--------------------------------
header
---------------------------------*/
header {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* ヘッダーがページの最前面に来るように設定 */
    background: white;
    /* ヘッダーの背景色 */



}





h1 img {
    max-width: 200px;
    height: auto;
}

@media screen and (max-width: 767px) {
    header {
        padding: 30px 20px;
    }

    header img {
        width: 147px;
        height: auto;
    }
}


.c-header__list {
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 0;
    font-size: 15px;

}

.c-header__list-item {
    list-style: none;
    text-decoration: none;
}

.c-header__list-link {
    color: #000;
    /* カスタマイズしてください */
    display: block;
    margin-right: 28px;
    /* カスタマイズしてください */
    text-decoration: none;
    padding: 15px 0px;
    /* カスタマイズしてください */
}

.c-header__list-link:hover {
    filter: opacity(0.6);
    /* カスタマイズしてください */
}


.c-hamburger-menu {
    position: relative;
}


.c-hamburger-menu__input {
    display: none;
}

@media screen and (max-width: 767px) {
    .c-hamburger-menu__list {
        background-color: #ffffff;
        /* カスタマイズしてください */
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        left: 0;
        padding: 2rem;
        /* カスタマイズしてください */
        position: absolute;
        transform: translateX(-100%);
        transition: 0.3s;
        /* カスタマイズしてください */
        top: 100%;
        width: 100%;
    }

    #hamburger:checked~.c-hamburger-menu__list {
        transform: translateX(0%);
        transition: 0.3s;
        z-index: 999;
    }
}


.c-hamburger-menu__input {
    display: none;
}

.c-hamburger-menu__bg {
    background-color: #ffffff;
    /* カスタマイズしてください */
    cursor: pointer;
    display: none;
    height: 100vh;
    left: 0;
    opacity: 0.4;
    /* カスタマイズしてください */
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

#hamburger:checked~.c-hamburger-menu__bg {
    display: block;
}

.c-hamburger-menu__button {
    display: none;
}

@media screen and (max-width: 767px) {
    .c-hamburger-menu__button {
        align-items: center;
        appearance: none;
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 5px;
        /* カスタマイズしてください */
        height: 32px;
        /* カスタマイズしてください */
        justify-content: center;
        width: 32px;
        /* カスタマイズしてください */
    }
}

.c-hamburger-menu__button-mark {
    background-color: #000;
    /* カスタマイズしてください */
    display: block;
    height: 1px;
    /* カスタマイズしてください */
    transition: 0.3s;
    /* カスタマイズしてください */
    width: 20px;
    /* カスタマイズしてください */
}

@media screen and (max-width: 767px) {
    #hamburger:checked~.c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
        transform: translate(2px, 1px) rotate(45deg);
        /* カスタマイズしてください */
        transform-origin: 0%;
        /* カスタマイズしてください */
    }

    #hamburger:checked~.c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
        opacity: 0;
    }

    #hamburger:checked~.c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
        transform: translate(2px, 3px) rotate(-45deg);
        /* カスタマイズしてください */
        transform-origin: 0%;
        /* カスタマイズしてください */
    }
}



/*--------------------------------
mainVisual
---------------------------------*/
.mainVisual {
    padding: 250px 0 0;
}

.mainVisual .inner {
    background: #d4ddf3 url("../img/bg_mv.png") no-repeat center bottom;
    height: 524px;
    position: relative;
}

.mainVisual .inner .ttl {
    position: relative;
    text-align: center;
    max-width: 812px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    top: -206px;
}

.mainVisual .inner .ttl img {
    width: 100%;
}

.mainVisual .inner .img {
    width: 100%;
    text-align: center;
    padding: 0;
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
    vertical-align: bottom;
}

.mainVisual .inner .img img {
    max-width: 100%;
    vertical-align: bottom;
}

@media screen and (max-width: 767px) {
    .mainVisual {
        padding: 180px 0 0;
    }

    .mainVisual .inner {
        background-size: 859px auto;
        height: 245px;
        position: relative;
    }

    .mainVisual .inner .ttl {
        position: absolute;
        text-align: center;
        top: -82px;
        width: 100%;
    }

    .mainVisual .inner .ttl img {
        width: 100%;
        max-width: 305px;
    }

    .mainVisual .inner .img {}

    .mainVisual .inner .img img.spOnly {
        width: 320px;
        display: inline-block;

    }
}

/*--------------------------------
cvBtn
---------------------------------*/
.cvBtn {
    background: #131834;
    padding: 60px 0;
}

.cvBtn p {
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.cvBtn .btn {
    margin: 0 auto;
}

.cvBtn .btn a {
    position: relative;
    margin: 20px auto 0;
    display: block;
    border-radius: 10px;
    background-image: -moz-linear-gradient(90deg, rgb(253, 95, 40) 0%, rgb(218, 117, 9) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(253, 95, 40) 0%, rgb(218, 117, 9) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(253, 95, 40) 0%, rgb(218, 117, 9) 100%);
    width: 430px;
    height: 100px;
    line-height: 96px;
    font-size: 30px;
    font-weight: bold;
    border-right: 3px solid #c22c1c;
    border-bottom: 3px solid #c22c1c;
}

.cvBtn .btn a:hover {
    background: #ff8340;
}

.cvBtn .btn a:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 10px;
    border-bottom: 2px solid #131834;
    border-right: 2px solid #131834;
    transform: rotate(45deg);
    left: 50%;
    bottom: 15px;
    opacity: 1;
    margin-left: -10px;
    transition: all .3s ease-out, bottom .3s ease-out;
}

.cvBtn .btn a:hover:before {
    opacity: 0;
    bottom: 10px;
}

@media screen and (max-width: 767px) {
    .cvBtn {
        padding: 30px 0;
    }

    .cvBtn p {
        font-size: 17px;
    }

    .cvBtn .btn a {
        margin: 15px auto 0;
        display: block;
        border-radius: 5px;
        width: 230px;
        height: 58px;
        line-height: 55px;
        font-size: 18px;
        border-width: 1px;
    }

    .cvBtn .btn a:before {
        width: 5px;
        height: 5px;
        bottom: 8px;
        margin-left: -5px;
    }

    .cvBtn .btn a:hover:before {
        bottom: 4px;
    }
}


.fixed-button {
    position: fixed;
    right: 20px;
    /* 右から20pxの位置 */
    bottom: 50px;
    /* 下から20pxの位置 */
    color: #131834;
    /* 文字色 */
    padding: 10px 20px;
    /* パディング */
    border-radius: 10px;
    /* 角の丸み */
    z-index: 1000;
    /* 他の要素の上に表示 */
    text-decoration: none;
    /* リンクの下線を消す */
    transition: background-color 0.3s;
    /* 背景色の変化を滑らかに */
    background-image: -moz-linear-gradient(90deg, rgb(253, 95, 40) 0%, rgb(218, 117, 9) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(253, 95, 40) 0%, rgb(218, 117, 9) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(253, 95, 40) 0%, rgb(218, 117, 9) 100%);
    border-right: 3px solid #c22c1c;
    border-bottom: 3px solid #c22c1c;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
}

.fixed-button:hover {
    background-color: #ff8340;
    /* ホバー時の背景色 */
}

@media screen and (max-width: 767px) {
    .fixed-button {
        display: none;
    }
}


/*--------------------------------
about
---------------------------------*/
#service {
    background: #f5f2eb;
    padding: 80px 0;
}

#service p {
    color: #212d54;
    margin: 0 auto;
    line-height: 2.2;
    font-weight: bold;
    max-width: 550px;
    width: 100%;
    padding: 0 10px;
}

#service p span {
    color: #a0754c;
    font-weight: bold;
}

#index h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 80px;
}

#service h2 {
    margin-bottom: 40px !important;
}

#index h2 span {
    font-size: 40px;
    font-weight: bold;
}

#index h2 .img {
    vertical-align: text-bottom;
    margin-right: 5px;
}

#wrap>section {
    padding: 120px 0;
}

#wrap>section#service {
    padding: 120px 0;

}

section.bg01 {
    background: #f5f2eb;
}

section>.inner {
    padding: 0 20px;
    max-width: 1040px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    #wrap>section {
        padding: 45px 0;
    }

    section>.inner {
        padding: 0 10px;
    }

    #service {
        padding: 40px 0;
    }

    #service p {
        line-height: 1.6;
    }

    #index h2 {
        font-size: 16px;
        margin-bottom: 40px;
    }

    #index #service h2 {
        margin-bottom: 20px;
    }

    #service h2 img {
        width: 176px;
    }

    #index h2 span {
        font-size: 20px;
    }
}

/*--------------------------------
sec02
---------------------------------*/
.bdBlock {
    border-style: solid;
    border-width: 6px;
    border-color: rgb(18, 31, 85);
    border-radius: 25px;
    background-color: rgb(255, 255, 255);
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.bdBlock h3 {
    position: relative;
    color: #fff;
    padding: 0 20px 0 130px;
    height: 110px;
    width: 100%;
    background: #0c1e4c;
    display: inline-block;
    border-radius: 5px 5px 0 0;
}

.bdBlock h3:before {
    content: "";
    background: url("../img/ttl_sec02.png") no-repeat left bottom;
    width: 114px;
    height: 140px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.bdBlock h3 span {
    display: table-cell;
    font-size: 32px;
    font-weight: bold;
    vertical-align: middle;
    height: 104px;
    line-height: 1.6;
}

.bdBlock .inner {
    padding: 60px 50px 70px;
}

.col2 {
    overflow: hidden;
    border-bottom: 1px solid #030000;
    padding-bottom: 80px;
    margin-bottom: 35px;
}

.col2 .txt {
    float: left;
    width: 42%;
}

.col2 .txt p {
    font-size: 24px;
    font-weight: bold;
}

.col2 .txt p.notice {
    font-size: 14px;
    font-weight: 500;
    margin-top: 30px;
}

.col2 .img {
    float: left;
    width: 58%;
    box-sizing: border-box;
    padding: 0 15px 0 56px;
}

.col2 .img img {
    width: 100%;
}

.bdBlock .inner>p {
    font-weight: 500;
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .bdBlock {
        border-width: 3px;
        border-radius: 13px;
    }

    .bdBlock h3 {
        height: 75px;
        padding: 0 10px 0 65px;
    }

    .bdBlock h3 span {
        font-size: 16px;
        height: 70px;
    }

    .bdBlock h3:before {
        background-size: 57px auto;
        width: 57px;
        height: 70px;
    }

    .bdBlock .inner {
        padding: 30px 10px 30px;
    }

    .col2 {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .col2 .txt {
        float: none;
        width: 100%;
    }

    .col2 .txt p {
        font-size: 15px;
    }

    .col2 .txt p.notice {
        font-size: 10px;
        margin-top: 15px;
    }

    .col2 .img {
        float: none;
        width: 100%;
        max-width: 280px;
        margin: 15px auto 0;
        padding: 0;
    }

    .col2 .img img {
        width: 100%;
    }

    .bdBlock .inner>p {
        font-weight: bold;
    }
}

/*--------------------------------
sec03
---------------------------------*/
#sec03 h2 {
    padding: 0 20px;
}

#sec03 h2 img {
    max-width: 100%;
}

.iconList {
    width: 100%;
    max-width: 900px;
    margin: 70px auto 0;
}

.iconList ul li {
    line-height: 1.8;
    font-size: 24px;
    font-weight: bold;
    padding: 2px 0 2px 130px;
}

.iconList ul li:not(:last-child) {
    margin-bottom: 60px;
}

.iconList ul li:nth-child(1) {
    background: url("../img/icon01.png") no-repeat left center;
}

.iconList ul li:nth-child(2) {
    background: url("../img/icon02.png") no-repeat left center;
}

.iconList ul li:nth-child(3) {
    background: url("../img/icon03.png") no-repeat left center;
}

@media screen and (max-width: 767px) {
    #sec03 h2 img {
        width: 100%;
        max-width: 401px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .iconList {
        margin: 55px auto 0;
    }

    .iconList ul li {
        font-size: 15px;
        padding: 0 0 2px 55px;
    }

    .iconList ul li:not(:last-child) {
        margin-bottom: 30px;
    }

    .iconList ul li {
        background-size: 45px auto !important;
    }
}

/*--------------------------------
sec04
---------------------------------*/
.baloonList {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    font-size: 0;
    letter-spacing: -10px;
}

.baloonList dl {
    width: 50%;
    box-sizing: border-box;
    display: inline-block;
    margin-bottom: 60px;
    letter-spacing: normal;
    vertical-align: top;
}

.baloonList dl.bottom {
    margin-bottom: 0;
}

.baloonList dl:nth-child(2n+1) {
    padding-right: 50px;
}

.baloonList dl:nth-child(2n) {
    padding-left: 50px;
}

.baloonList dl dt {
    background: url("../img/bg_baloon.png") no-repeat center center;
    background-size: 100% auto;
    height: 108px;
    width: 400px;
    padding-top: 28px;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    margin: 0 auto 15px;
}

.baloonList dl dt span {
    font-weight: bold;
}

.baloonList dl dd {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    width: 400px;
    margin: 0 auto;
    color: #201f1d;
}

@media screen and (max-width: 1000px) {
    .baloonList dl {
        width: 100%;
        padding: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    .baloonList dl {
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .baloonList dl dt {
        background: url("../img/bg_baloon_sp.png") no-repeat center center;
        background-size: 246px auto;
        height: 69px;
        width: 246px;
        padding-top: 20px;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .baloonList dl dt span {
        font-weight: bold;
    }

    .baloonList dl dd {
        font-size: 15px;
        width: 246px;
    }
}

/*--------------------------------
sec06
---------------------------------*/
#cases h2 {
    margin-bottom: 10px;
}

#cases .img {
    max-width: 100%;
}

#cases .img img {
    width: 100%;
}

.bgBox {
    background: #fff;
    padding: 60px 70px;
}

.bgBox h3 {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.bgBox h3 span {
    font-size: 24px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.bgBox h3:after {
    content: "";
    height: 20px;
    width: 100%;
    background: #ded7c8;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.col2Box {
    overflow: hidden;
    margin: 0 -25px;
}

.col2Box dl {
    width: 50%;
    float: left;
    padding: 0 25px;
    box-sizing: border-box;
}

.col2Box dl dt {
    text-align: center;
    margin-bottom: 30px;
}

.col2Box dl dd ul li {
    padding: 10px 0 5px;
    font-size: 20px;
    font-weight: 500;
}

.col2Box dl dd ul li:not(:last-child) {
    border-bottom: 1px solid #c7c9d4;
}

@media screen and (max-width: 767px) {
    #cases h2 {
        margin-bottom: 40px;
    }

    #cases .img {
        margin: 0 auto 40px;
        max-width: 320px;
    }

    #cases .img img {
        width: 100%;
    }

    .bgBox {
        background: #fff;
        padding: 30px 10px;
    }

    .bgBox h3 {
        text-align: left;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .bgBox h3 span {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        z-index: 2;
    }

    .bgBox h3:after {
        height: 10px;
        bottom: -5px;
    }

    .col2Box {
        margin: 0;
    }

    .col2Box dl {
        width: 100%;
        padding: 0;
    }

    .col2Box dl:first-child {
        margin-bottom: 50px;
    }

    .col2Box dl dt {
        text-align: center;
        margin-bottom: 30px;
    }

    .col2Box dl dt img {
        width: 46px;
        height: auto;
    }

    .col2Box dl dd ul li {
        padding: 5px 0 3px;
        font-size: 14px;
    }

    .col2Box dl dd ul li:not(:last-child) {
        border-bottom: 1px solid #c7c9d4;
    }
}


.lead {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.lead span {
    font-size: 34px;
    font-weight: bold;
    color: #aa7d49;
}

.stepList {
    padding-top: 50px;
}

.stepList dl {
    background: #e1e4f6;
    border-radius: 20px;
    position: relative;
    padding: 70px 0 50px;
}

.stepList dl:not(:last-child) {
    margin-bottom: 65px;
}

.stepList dl dt {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 35px;
}

.stepList dl dt span {
    position: absolute;
    left: 50%;
    top: -50px;
    margin-left: -50px;
    background: #131834;
    height: 100px;
    width: 100px;
    color: #fff;
    font-size: 20px;
    display: block;
    border-radius: 50%;
    padding-top: 25px;
    font-weight: bold;

}

.stepList dl dt span em {
    display: block;
    font-size: 34px;
    font-weight: bold;
}

.stepList dl dd {
    text-align: center;
    padding: 0 30px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    .lead {
        font-size: 16px;
        text-align: left;
    }

    .lead span {
        font-size: 16px;
    }

    .stepList {
        padding-top: 25px;
    }

    .stepList dl {
        border-radius: 10px;
        padding: 40px 0 20px;
    }

    .stepList dl:not(:last-child) {
        margin-bottom: 33px;
    }

    .stepList dl dt {
        text-align: center;
        font-size: 15px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .stepList dl dt span {
        top: -25px;
        margin-left: -25px;
        height: 50px;
        width: 50px;
        font-size: 10px;
        padding-top: 13px;
    }

    .stepList dl dt span em {
        font-size: 17px;
    }

    .stepList dl dd {
        text-align: left;
        padding: 0 15px;
        font-size: 14px;
    }
}

.contact {
    position: relative;
}

.contact:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -110px;
    border-top: 60px solid #fff;
    border-right: 110px solid transparent;
    border-left: 110px solid transparent;
}

.contact {
    background: #131834;
    padding: 85px 0 110px;
}

.contact .img {
    text-align: center;
    padding: 0 20px;
    max-width: 994px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.contact .img img {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .contact {
        padding: 40px 0 15px;
    }

    .contact:before {
        margin-left: -55px;
        border-top: 30px solid #fff;
        border-right: 55px solid transparent;
        border-left: 55px solid transparent;
    }

    .contact .img {
        padding: 0;
        max-width: 320px;
    }

}

/*--------------------------------
privacy
---------------------------------*/
#privacy h1,
#about h1 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
}

#privacy h2 {
    font-size: 16px;
    padding: 20px;
    color: #fff;
    background: #131834;
    margin: 40px 0 15px;
}

#contents {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

#privacy section {
    line-height: 1.6;
}

#privacy section p {
    margin-bottom: 30px;
}

#privacy section a {
    color: #3363dd;
}

#privacy section a:hover {
    text-decoration: underline;
}

#privacy section ul,
#privacy section ol {
    padding-left: 25px;
}

#privacy section ul li {
    list-style: disc;
    margin-bottom: 10px;
}

#privacy section ol li {
    list-style: decimal;
    margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
    #privacy h1 {
        font-size: 18px;
        margin-bottom: 30px;
    }

    #privacy h2 {
        font-size: 16px;
        padding: 15px 10px;
        margin: 30px 0 15px;
    }

    #contents {
        padding: 0 10px;
    }
}

/*--------------------------------
about
---------------------------------*/
#contents {
    max-width: 640px;
    margin-top: 150px;
}

.table {
    border-top: 1px solid #c5c5c5;
}

.table dl {
    display: table;
    width: 100%;
    background: #fff;
    line-height: 1.5;
    color: #201f1d;
}

.table dl dt {
    font-weight: 500;
    display: table-cell;
    padding: 20px;
    width: 185px;
    border-left: 1px solid #c5c5c5;
    border-right: 1px solid #c5c5c5;
    border-bottom: 1px solid #c5c5c5;
    background: #f5f2eb;
}

.table dl dd {
    font-weight: 500;
    display: table-cell;
    padding: 20px;
    border-bottom: 1px solid #c5c5c5;
    border-right: 1px solid #c5c5c5;
}

.table dl dd a {
    color: #3363dd;
    font-weight: 500;
}

.table dl dd a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
    .table dl {
        display: block;
    }

    .table dl dt {
        display: block;
        padding: 10px;
        width: 100%;
    }

    .table dl dd {
        display: block;
        padding: 10px;
        width: 100%;
        border-left: 1px solid #c5c5c5;
    }
}


/*--------------------------------
form
---------------------------------*/

.please {
    color: #DA395A;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .please {
        font-size: 14px;
    }
}

/*--------------------------------
footer
---------------------------------*/
footer {
    background: #f5f2eb;

}

footer .inner {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 70px;
}

footer .inner nav ul li {
    float: left;
}

footer .inner nav ul li:not(:last-child) {
    margin-right: 50px;
}

footer .inner nav ul li a {
    font-size: 14px;
    font-weight: 500;
}

footer .inner nav ul li a:hover {
    text-decoration: underline;
}

footer .copy {
    font-weight: 500;
    background: #fff;
    text-align: center;
    padding: 40px 0;
}

@media screen and (max-width: 767px) {
    footer {
        background: #f5f2eb;
    }

    footer .inner {
        padding: 30px 10px;
    }

    footer .inner nav ul li:not(:last-child) {
        margin-right: 20px;
    }

    footer .inner nav ul li a {
        font-size: 12px;
    }

    footer .copy {
        padding: 20px 0;
    }
}