@charset "utf-8";

/* ========================================
    ■ 必須設定
======================================== */

/* reset
----------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body { line-height:1; }
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;
}
h1,
h2,
h3,
h4,
h5,
h6 { font-weight: normal; }
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del { text-decoration: line-through; }
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
th { font-weight: normal; }
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #ccc;
    margin:1em 0;
    padding:0;
}
input, select, textarea, img { vertical-align:middle; }
ul, dl, ol { list-style: none; }
address, em, i { font-style: normal;}


/* 共通設定
----------------------------- */
* {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
    /*-webkit-appearance: none;*/
            appearance: none;
}

html {
    font-size: 6px;
}
    /* sp */
    @media screen and (max-width: 640px) {
        html {
            font-size: 1vw;
        }
    }

body {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", YuGothic, "Custom Yu Gothic", "Yu Gothic", "游ゴシック体", "メイリオ", Meiryo, sans-serif;
    -webkit-text-size-adjust: 100%;
    font-size: 17px;
    font-feature-settings: "palt" 1;
    color: #333;
    letter-spacing: 0.05em;
    line-height: 1.75;
}

select { padding: 5px; font-size: 110%; }
.tax_small {
	line-height: 1.6; 
	text-align: right !important;
	font-size: 80%;
	margin:10px  10px 0 0 !important;}


@media all and (-ms-high-contrast:none){
    body {
        font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    }
}
    /* sp */
    @media screen and (max-width: 640px) {
        body {
            font-size: 3.5rem;
        }
    }

a {
    color: #0033cc;
    text-decoration: none;
    transition: 0.2s ease;
}
a:hover {
    text-decoration: none;
    transition: 0.2s ease;
}
a::before, a:hover::before,
a::after, a:hover::after {
    transition: 0.2s ease;
}

img,
video,
object {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    border: none;
}

input {
    width: 90%;
    background-color: white;
    -webkit-rtl-ordering: logical;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 24px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea {
    width: 90%;
    min-height: 240px;
    background-color: white;
    -webkit-rtl-ordering: logical;
    flex-direction: column;
    resize: auto;
    cursor: text;
    white-space: pre-wrap;
    word-wrap: break-word;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="submit"]{
    width: 480px;
    padding: 20px 0;
    background-color: #ff0000;
    border-radius: 0;
    border: none;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
input[type="button"]{
    cursor: pointer;
}


form{
	width: 660px;
	margin: 0 auto;
}
dl{
    display: flex;
    flex-direction: column;
    background: url(img/sec18/line.jpg) 0% 100% no-repeat;
}
dt,dd{
    line-height: 1.5;
}
dt{
    min-width: 100%;
    padding: 30px 0 0;
    font-size: 30px;
    font-weight: 600;
    text-align: left;
}
dd{
    width: 100%;
    padding: 20px 0 30px;
    font-size: 25px;
}


#secForm > .inner{
    padding-top: 60px;
    padding-bottom: 100px;
}
#secForm h1{
    padding: 20px;
    font-size: 35px;
    font-weight: 600;
background: #0082ba;
    color: #ffffff;
}
#secForm > .inner > p{
    padding: 30px 0 30px;
}
#secForm .submitArea{
    padding: 50px 0 0;
    text-align: center;
}
#secForm dt{
    position: relative;
}
#secForm .required dt:before{
    content: '必須';
    padding: 3px 6px;
    background: #ff0000;
    border-radius: 6px;
    color: #fff;
    font-size: 20px;
}
#secForm .arbitrary dt:before{
    content: '任意';
    padding: 3px 6px;
    background: #999;
    border-radius: 6px;
    color: #fff;
    font-size: 20px;
}

.blue{
    width: 660px;
    padding-top: 60px;
    padding-bottom: 100px;
    padding-left: 30px;
background: #BFEFFF;
}



/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

COMMON

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
html,body{
    width: 100%;
}
div,span,p,a{
    line-height: 1;
}
p{
    font-size: 20px;
    line-height: 1.5;
}
.bc01{
    background-color: #;
}
.fc01{
    color: #;
}
.bold{
    font-weight: bold;
}

.page-wrap{
    min-width: auto;
    max-width: 750px;
    width: 750px;
    margin: 0 auto;
    overflow: hidden;
}

.sec > .inner{
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

HEADER

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
header{
	position: relative;
}
header img{
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
	width: 50%;
}

#head_name {
    position: absolute;
    top: 25px;
    left: 20px;
    z-index: 1;
	font-size: 1em;
	line-height: 1.3;
}

#head_name span {
	font-size: 2em;
	font-weight: bold;
	display: block;
	line-height: 1.4;
}




/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

KV

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#kv{
    height: 945px;
    background: url("img/kv/bg_key.jpg") repeat-x 0 0;
    position: relative;
    overflow: hidden;
}
#kv > .inner{
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
}
#kv h1{
    padding: 0 0 40px;
}

#kv h1 img{
    width: 100%;
}

#kv .circles{
    width: 100%;
    padding: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#nayami {
	z-index: 10000;
	position: absolute;
	left:0;
	right:0;
	top: 57%;
	margin:0 auto 20px;
	}
	
#heart {
	position: absolute;
	bottom: 43%;
    right: 15%;
    z-index: 1000;
    width: 152px;
	}

#hurry {
	padding-top: 20px;
	z-index: 9999;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

CTA

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.cta {
    height: 1000px;
    background: url(img/cta/japanesemap-10015.png) 125% 5% no-repeat,#33a6e8;
    position: relative;
}
.cta > .inner{
    width: 100%;
    padding: 60px 0 0;
    margin: 0 auto;
    position: relative;
}
.cta img[alt="税理士・公認会計士 永江将典"]{
    position: absolute;
    left: 27%;
    bottom: 0;
    z-index: 2;
}
.cta img[alt="元国税調査官・税理士 石原由康"]{
    position: absolute;
    left: 40px;
    bottom: 0;
    z-index: 1;
}
.cta span,.cta a{
    color: #fff;
}
.cta .textArea{
    width: 100%;
    padding: 0 40px;
    margin: 0 auto;
}
.cta .textArea h2{
    padding: 0 0 40px;
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.cta .textArea h2 span{
    display: block;
    padding: 30px 0 0;
    font-size: 52px;
    font-weight: 500;
}
.cta .btnArea{
    width: 100%;
    padding: 35px 0 0;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.cta .btnArea img[alt="["]{
    position: absolute;
    top: 0;
    left: 0;
}
.cta .btnArea img[alt="]"]{
    position: absolute;
    top: 0;
    right: 0;
}
.cta .btnArea > span{
    display: block;
    padding: 0 0 40px;
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 2px;
    font-feature-settings: "palt";
}
.cta .btnArea .tel{
    padding: 0 0 25px;
}


#button {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 608px;
    margin: 0 auto;
}
#button a {
    display: block;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 5px;
    width: 100%;
    height: 138px;
    background-color: #FFCE3B;
    color: #222222;
	font-size:32px;
font-weight: bolder;
    padding: 54px 0;
    text-align: center;
    text-decoration: none;
    transition: .25s linear;
    -webkit-transition: .25s linear;
    -moz-transition: .25s linear;
}
#button a:hover{
    opacity: 0.8;
}
#button a:before {
    display: block;
    position: absolute;
    z-index: -1;
    left: -30%;
    top: -50%;
    content: "";
    width: 30px;
    height: 230px;
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    background-image: linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
    background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,1)),color-stop(100%,rgba(255,255,255,0)));
    background-image: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, #ffffff rgba(255,255,255,1),rgba(255,255,255,0) 100%);
    animation: shiny 5s infinite linear;
    -webkit-animation: shiny 5s infinite linear;
    -moz-animation: shiny 5s infinite linear;
}


@keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
@-webkit-keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
@-moz-keyframes shiny {
    0% {
        left: -30%;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}



/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC01

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec01{
    background-color: #fafafa;
}
#sec01 > .inner{
    padding-top: 70px;
    padding-bottom: 10px;
}
#sec01 .btnArea{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
#sec01 .btnArea .btn{
    padding: 0 0 40px;
}
#sec01 .btnArea a{
    display: block;
    position: relative;
}
#sec01 .btnArea .textArea{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}
#sec01 .btnArea a span{
    color: #fff;
    font-size: 30px;
    position: relative;
    line-height: 40px;	
}
#sec01 .headeing{
    padding: 20px 0 70px;
    text-align: center;
}
#sec01 .secCnts .cnt{
    padding: 30px 60px 70px;
    margin: 0 0 60px;
    background-color: #fff;
    border: 1px solid #33a6e8;
    border-radius: 5px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
    position: relative;
}
#sec01 .secCnts .cnt .numArea{
    position: absolute;
    top: -35px;
    left: 30px;
}
#sec01 .secCnts .cnt:nth-child(2n) .numArea{
    top: -35px;
    left: auto;
    right: 30px;
}
#sec01 .secCnts .cnt .numArea:after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 34px 0 0 14px;
    border-color: transparent transparent transparent #157abd;
    position: absolute;
    top: 0;
    right: -14px;
}
#sec01 .cntHead{
    display: flex;
    align-items: center;
    flex-direction: column;
}
#sec01 .cntHead .imgArea{
    width: 100%;
    padding: 0 0 30px;
}
#sec01 .secCnts .cnt:nth-child(2n) .imgArea{
    width: 100%;
}
#sec01 .cntHead .imgArea span{
    display: block;
    padding: 5px 0 0;
    font-size: 20px;
    color: #bfbfbf;
}
#sec01 .cntHead .textArea{
    width: 100%;
}
#sec01 .cntHead .textArea h3{
    padding: 0 0 20px;
    border-bottom: 1px solid #eee;
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0;
}
#sec01 .cntHead .textArea span{
    display: block;
    padding: 20px 0 0;
    font-size: 20px;
    font-weight: 600;
}
#sec01 .before{
    padding: 30px 0 0;
}
#sec01 .before img{
    padding: 0 0 10px;
}
#sec01 .before p{
    line-height: 1.5;
}
#sec01 .before:after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    margin: 30px auto;
    border-style: solid;
    border-width: 12px 15px 0 15px;
    border-color: #88c427 transparent transparent transparent;
}
#sec01 .after{
    padding: 20px 25px;
    background-color: #ebf8ff;
    border-radius: 5px;
}
#sec01 .after img{
    padding: 0 0 10px;
}
#sec01 .after p span{
    display: block;
    padding: 20px 0 0px;
    font-size: 16px;
    line-height: 1!important;
}

#sec01 .secCnts .flexBox{
    display: flex;
    justify-content: space-between;
}
#sec01 .secCnts .flexBox .cnt{
    width: 480px;
    padding: 20px 40px;
}
#sec01 .secCnts .flexBox .cntHead{
    display: block;
    padding: 0 10px;
}
#sec01 .secCnts .flexBox .cntHead .imgArea,#sec01 .secCnts .flexBox .cntHead .textArea{
    width: 100%;
}
#sec01 .secCnts .flexBox .cntHead .textArea{
    text-align: center;
}
#sec01 .secCnts .flexBox .cntHead .textArea h3 {
    height: 100px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
#sec01 .secCnts .flexBox .cnt:nth-child(2n) .numArea{
    top: -20px;
    left: 30px;
    right: auto;
}
#sec01 .secCnts .flexBox .cnt .before{
    padding: 30px 10px 0;
}
#sec01 .secCnts .flexBox .cnt .before p{
    height: 175px;
}
#sec01  .secCnts .flexBox .cnt .after {
    padding: 20px 15px;
    background-color: #ebf8ff;
    border-radius: 5px;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC02

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec02{
    background: url(img/sec02/bg-filter.png),
                url(img/sec02/bg.jpg)50%/cover;
}
#sec02 > .inner{
    padding-top: 60px;
    padding-bottom: 70px;
}
#sec02 .headeing{
    padding: 0 0 50px;
    text-align: center;
}
#sec02 ul{
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 50px 30px;
    background-color: #fff;
    border-radius: 5px;
}
#sec02 li{
    margin: 0 0 40px;
    display: flex;
    align-items: center;
}
#sec02 li:last-child{
    margin: 0;
}
#sec02 .checkBox{
    width: 30px;
    height: 30px;
    margin: 0 30px 0 0;
    border: 2px solid #e5e5e5;
    box-shadow: 0 2px 3px rgba(0,0,0,.3);
    position: relative;
}
#sec02 .checkBox:after{
    content: '';
    display: block;
    width: 34px;
    height: 27px;
    background: url(img/sec02/check.png) 50%/cover;
    position: absolute;
    right: -11px;
    bottom: 0px;
}
#sec02 li span{
    font-size: 22px;
}
#sec02 li span span{
    font-size: 120%;
    font-weight: 600;
    color: #0082ba;
}
#sec02 .textArea{
    padding: 50px 0 0;
    text-align: center;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC03

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec03{
    background-color: #f2ece4;
    position: relative;
}
#sec03 > .wrap{
    width: 100%;
    height: 100%;
}
#sec03 > .wrap > .inner{
    width: 100%;
    padding: 60px 0 50px;
    text-align: center;
}
#sec03 .headeing{
    padding: 0 0 30px;
}
#sec03 span{
    display: block;
    padding: 0 0 20px;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.7;
    color: #0082ba;
}
#sec03 p{
    line-height: 1.7;
}
#sec03 .bgArea{
    width: 100%;
}
#sec03 .bgArea img{
    width: 100%;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC04

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec04{
    background: url(img/sec04/bg-filter.png) repeat-X,url(img/sec04/bg.jpg) 50%/cover;
}
#sec04 > .inner{
    padding-top: 50px;
    padding-bottom: 160px;
    padding-right: 0px;
    position: relative;
}
#sec04 > .inner > img{
    position: absolute;
    right: 0;
    bottom: 0;
}
#sec04 .headeing{
    padding: 0 0 0 30px;
}
#sec04 ul{
    margin: 0 auto;
    padding: 60px 0 50px 0;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}
#sec04 li{
    margin: 0 0 40px;
    display: flex;
    align-items: center;
}
#sec04 li:last-child{
    margin: 0;
}
#sec04 .checkBox{
    width: 30px;
    height: 30px;
    margin: 0 20px 0 0;
    background-color: #fff;
    border: 2px solid #e5e5e5;
    box-shadow: 0 2px 3px rgba(0,0,0,.3);
    position: relative;
}
#sec04 .checkBox:after{
    content: '';
    display: block;
    width: 34px;
    height: 27px;
    background: url(img/sec02/check.png) 50%/cover;
    position: absolute;
    right: -11px;
    bottom: 0px;
}
#sec04 li span{
    font-size: 20px;
    color: #fff;
    letter-spacing: 0;
}
#sec04 li span span{
    font-size: 120%;
    font-weight: 600;
    color: #a6deff;
}
#sec04 .balloonArea{
    height: 0;
    text-align: center;
}
#sec04 .balloonArea img{
    position: relative;
    bottom: 75px;
    z-index: 1;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC05

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec05{
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}
#sec05 > .inner{
    padding-top: 120px;
    padding-bottom: 90px;
    text-align: center;
    position: relative;
}
#sec05 .headeing{
	padding: 0 0 40px;
}
#sec05 .bottom{
    position: relative;
    background: url(img/sec05/bottom-bg.jpg) 50%/cover;
}
#sec05 .bottom:after{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 50px;
    border-color: #f5f5f5 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0 0 0 -50px;
}
#sec05 .bottom > .inner{
    width: 100%;
    padding: 60px 0 50px 30px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
}
#sec05 .bottom img[alt="写真"]{
	width: 300px;
    position: absolute;
    top: -30px;
    right: 0;
}
#sec05 .bottom .headeing{
    padding: 0 0 30px;
}
#sec05 .bottom span{
    display: block;
    padding: 0 0 20px;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.7;
    color: #0082ba;
}
#sec05 .bottom p{
    line-height: 1.7;
}
#sec05 .bottom > img{
    display: block;
    width: 100%;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC6

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec06{
    background: #fafafa;
}
#sec06 > .inner{
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
}
#sec06 .headeing{
    padding: 0 0 80px;
    text-align: center;
}
#sec06 li{
    padding: 50px 60px;
    margin: 0 0 50px;
    background-color: #fff;
    border: 1px solid #33a6e8;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
#sec06 li:nth-child(2n){
}
#sec06 li > img{
    position: absolute;
    top: 30px;
    left: 30px;
}
#sec06 li:nth-child(2n) > img{
    left: auto;
    right: 30px;
}
#sec06 li .imgArea{
    width: 100%;
}
#sec06 li .textArea{
    width: 100%;
    position: relative;
}
#sec06 li h3{
    padding: 20px 0 10px;
    font-size: 30px;
    line-height: 1.5;
    font-weight: 600;
}
#sec06 li:nth-child(3) h3{
    letter-spacing: -1px;
}
#sec06 li h3 span{
    font-size: 16px;
}
#sec06 li:nth-child(2n) h3{
    padding: 30px 0 20px;
}
#sec06 .line{
    width: 100%;
    height: 1px;
    background-color: #33a6e8;
}
#sec06 .textArea > span{
	display: block;
	padding: 0 0 20px;
    font-size: 20px;
}
#sec06 li:nth-child(2n) .line{
    right: auto;
    left: 0;
}
#sec06 li p{
    display: block;
    padding: 30px 0 0;
    font-size: 20px;
    line-height: 1.7;
}
#sec06 li:nth-child(2n) p{

}
#sec06 li p span{
    display: block;
    padding: 30px 0 0;
    font-size: 20px;
    line-height: 1.7;
    color: #df1553;
    letter-spacing: 0;
}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC6-2

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec06-2{
    background: #fafafa;
}
#sec06-2 > .inner{
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}
#sec06-2 .headeing{
    padding: 0 0 20px 0;
    text-align: center;
}
#sec06-2 h2{
    padding: 50px 0 20px;
    font-size: 40px;
    font-weight: 600;
    color: #0082ba;
    text-align: center;
    line-height: 1.5;
}

#sec06-2 li{
    padding: 50px 60px;
    margin: 0 0 50px;
    background-color: #fff;
    border: 1px solid #33a6e8;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

#sec06-2 .note{
	background: #eee;
	border-radius: 5px;
	padding: 10px 20px;
	font-size: 100%;
	line-height: 1.5;
	margin-top: 10px;
}

.acc_txt {
	color: #df1553;
	position: static !important;
	display:inline !important;
    padding: 0px 0 0 !important;
    font-size: 100%  !important;
    line-height: 1.7;}




#sec06-2 li:nth-child(2n){
}
#sec06-2 li > img{
    position: absolute;
    top: 30px;
    left: 30px;
}
#sec06-2 li:nth-child(2n) > img{
    left: auto;
    right: 30px;
}
#sec06-2 li .imgArea{
    width: 100%;
}
#sec06-2 li .textArea{
    width: 100%;
    position: relative;
}
#sec06-2 li h3{
    padding: 20px 0 10px;
    font-size: 30px;
    line-height: 1.5;
    font-weight: 600;
}
#sec06-2 li:nth-child(3) h3{
    letter-spacing: -1px;
}
#sec06-2 li h3 span{
    font-size: 16px;
}
#sec06-2 li:nth-child(2n) h3{
    padding: 30px 0 20px;
}
#sec06-2 .line{
    width: 100%;
    height: 1px;
    background-color: #33a6e8;
}
#sec06-2 .textArea > span{
	display: block;
	padding: 0 0 20px;
    font-size: 20px;
}
#sec06-2 li:nth-child(2n) .line{
    right: auto;
    left: 0;
}
#sec06-2 li p{
    display: block;
    padding: 30px 0 0;
    font-size: 20px;
    line-height: 1.7;
}
#sec06-2 li:nth-child(2n) p{

}
#sec06-2 li p span{
    display: block;
    padding: 30px 0 0;
    font-size: 20px;
    line-height: 1.7;
    color: #df1553;
    letter-spacing: 0;
}







/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC7

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec07{
    background: url(img/sec07/bg01.png) 50% -4% no-repeat,
                url(img/sec07/bg02.png) 50% 97% no-repeat;
    position: relative;
}
#sec07 > .inner{
    padding-top: 40px;
    padding-bottom: 0;
    position: relative;
}
#sec07 .headeing{
    padding: 0 0 60px;
    text-align: center;
}
#sec07 .top{
    margin: 0 0 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
}
#sec07 .top .imgArea{
    width: 100%;
}
#sec07 .top .textArea{
    width: 100%;
    position: relative;
    text-align: center;
}
#sec07 .top h3{
    padding: 30px 0 15px 0px;
    font-size: 35px;
    line-height: 1.5;
    font-weight: 600;
}
#sec07 .top h3 span{
    display: block;
    padding: 0 0 10px;
    font-size: 20px;
}
#sec07 .top .line{
    width: 100%;
    height: 1px;
    background-color: #33a6e8;
    position: absolute;
    right: 0;
}
#sec07 .top .textArea > span{
    display: block;
    padding: 30px 0 30px 20px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #0082ba;
    text-align: left;
}
#sec07 .top .textArea ul{
    padding: 0 0 0 20px;
    text-align: left;
}
#sec07 .top .textArea li{
    padding: 0 0 0 20px;
    margin: 0 0 20px;
    line-height: 1.5;
    font-size: 20px;
    position: relative;
}
#sec07 .top .textArea li:before{
    content: '';
    width: 12px;
    height: 12px;
    background-color: #3daae9;
    border-radius: 10px;
    position: absolute;
    top: 10px;
    left: 0;
}
#sec07 .top .textArea li:after{
    content: '';
    width: 6px;
    height: 6px;
    background-color: #d6edfa;
    border-radius: 10px;
    position: absolute;
    top: 13px;
    left:3px;
}

#sec07 .biography{
    padding: 40px 20px;
    margin: 0 0 80px;
    background-color: #fff;
    border: 1px solid #33a6e8;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
#sec07 .biography article{
    margin: 0 0 60px;
}
#sec07 .biography article:last-child{
    margin: 0;
}
#sec07 .biography .head{
    display: flex;
    align-items: center;
}
#sec07 .biography .head h3{
    min-width: max-content;
    padding: 0 30px 0 0;
    font-size: 22px;
    font-weight: 600;
}
#sec07 .biography .head .linePtn{
    width: 100%;
    height: 10px;
    background: url(img/sec07/ptn.png);
}
#sec07 .biography tr{
    display: flex;
}
#sec07 .biography th,#sec07 .biography td{
	font-size: 20px;
    line-height: 1.5;
}
#sec07 .biography th{
    min-width: 100px;
    padding: 25px 0 10px 10px;
    border-bottom: 1px solid #33a6e8;
    color: #0082ba;
    font-weight: 600;
    text-align: left;
}
#sec07 .biography td{
    width: 100%;
    padding: 25px 0 10px 30px;
    border-bottom: 1px solid #dedede;
    letter-spacing: -1px;
}
#sec07 .biography li{
    padding: 0 0 0 15px;
    position: relative;
}
#sec07 .biography li:before{
    content: '-';
    position: absolute;
    left: 0;
}
#sec07 .biography .items{
    padding: 30px 0 0;
    display: flex;
    justify-content: center;
}
#sec07 .biography .item{
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-end;
}
#sec07 .biography .item:nth-child(2){
    margin: 0;
}
#sec07 .biography .textArea{
    padding: 10px 20px 0 0;
}
#sec07 .biography p{
    font-size: 25px;
    line-height: 1.5;
    font-weight: 600;
    color: #0082ba;
}
#sec07 .biography p span{
    display: block;
    padding: 0 0 10px;
    font-size: 20px;
    line-height: 1.5;
}

#sec07 .bottom ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#sec07 .bottom li{
	width: 48%;
	margin-right: 20px;
	margin-bottom: 40px;
    text-align: center;
}
#sec07 .bottom li:nth-child(2),#sec07 .bottom li:last-child{
	margin-right: 0;
}
#sec07 .bottom li img{
	width: 70%;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
#sec07 .bottom li span{
    display: block;
    padding: 20px 0 10px;
    font-size: 14px;
}
#sec07 .bottom li .line{
    display: block;
    width: 30px;
    height: 1px;
    margin: 0 auto;
    background-color: #33a6e8;
}
#sec07 .bottom li p{
    display: block;
    padding: 15px 0 0;
    font-size: 20px;
    font-weight: 600;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC08

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec08{
    background-color: #f2ece4;
    position: relative;
}
#sec08 > .wrap{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
#sec08 > .wrap > .inner{
    width: 100%;
    padding: 60px 0;
    margin: 0 auto;
    text-align: center;
}
#sec08 .textArea{
    width: 100%;
    padding: 0 70px;
}
#sec08 .headeing{
    padding: 0 0 30px;
}
#sec08 p{
	padding: 0 30px;
	font-size: 20px;
    line-height: 1.7;
}
#sec08 span:nth-child(3){
    display: block;
    padding: 20px 0 40px;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 600;
}
#sec08 span:nth-child(4){
    display: block;
    font-size: 17px;
    line-height: 1.7;
    color: #df1553;
}
#sec08 .bgArea{

}
#sec08 .bgArea img{

}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC09

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec09{
    background: url(img/sec09/img_map_japan.jpg)  repeat-y 60% 0% ;
	padding-top: 50px;
	margin-bottom: 200px;
}
#sec09 > .inner{
    padding-top: 60px;
    padding-bottom: 120px;
    position: relative;
	z-index: 99999 !important;
}
#sec09 .headeing{
    padding: 0 0 60px;
    text-align: center;
}
#sec09 .headeing h2{
    padding: 0 0 40px;
}
#sec09 .headeing p{
    font-size: 20px;
    line-height: 1.7;
}
/* Map ----------------------------------- */

#class_map {
	padding: 0;
}

#class_map .contents_inner {
	/*position:relative;*/
	height:2500px;
	/*height: 100vh;*/
}

/*#map_tohoku,
#map_kanto,
#map_chubu,
#map_chugoku,
#map_kinki,
#map_shikoku,
#map_kyushu,
#map_hokuriku
 {}

#map_tohoku {
	top:60px;
	right:10px;
}

#map_kanto {
	top:400px;
	right:30px;
}

#map_chubu {
	top:200px;
	left:400px;
	z-index: 999998;
}

#map_chugoku {
    top: 380px;
    left: 75px;
}

#map_kinki {
	top:610px;
	right:300px;
}

#map_shikoku {
	top:650px;
	left:140px;
}

#map_kyushu {
	
}*/


#map_hokkaido h2,
#map_tohoku h2,
#map_kanto h2,
#map_chubu h2,
#map_chugoku h2,
#map_kinki h2,
#map_shikoku h2,
#map_kyushu h2
 {
	color:#fff;
	font-weight:bold;
	text-align:center;
	padding:25px;
	width:100%;
	margin: 0;
	font-size: 130% !important;
}

#map_hokkaido h2 {background:#E20C69; }
#map_tohoku	h2 {background:#E94A41; }
#map_kanto h2 {background:#F28F00; }
#map_chubu h2 {background:#FCC800; }
#map_chugoku h2 {background:#4DBBAE; }
#map_kinki h2 {background:#85C023; }
#map_shikoku h2 {background:#2C65B0; }
#map_kyushu h2 {background:#0090D3; }




/*全体*/
.hidden_box {
    margin: 0;
    padding: 0;
}

/*ボタン装飾*/
.hidden_box label {
    /*padding: 15px;
    font-weight: bold;
    background: #efefef;
    border-radius: 5px;*/
	background: #efefef;
	width: 100%;
	display: block;
    cursor :pointer;
    transition: .3s;
	padding:25px 8px 25px 10px !important;
	border-bottom:1px #aaa dotted !important;
	color:#222 !important;
	text-decoration:none !important;
	font-size: 130% !important;
}

/*アイコンを表示*/
.hidden_box label:before {
    display: inline-block;
    content: '\f078';
    font-family: 'FontAwesome';
    padding-right: 5px;
    transition: 0.2s;
}

/*ボタンホバー時*/
.hidden_box label:hover {
    background: #D8D8D8;
}

/*アイコンを切り替え*/
.hidden_box input:checked ~ label:before {
     content: '\f077';
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
     color: #668ad8;
}

/*チェックは見えなくする*/
.hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
	width: 100%;
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
    padding: 15px 0;
    height: auto;
    opacity: 1;
	background: #fff;
}

.hidden_box .hidden_show p {
	padding: 0 15px;
	margin: 0;
	font-size: 130% !important;
	line-height: 1.3;
	}

.jimusho_name {font-weight: bold;}
.jimusho_name:nth-child(n + 2) {margin-top: 8px !important;	}
	
.jimusho_name:before {
	content: "●";
	}




/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC10

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec10{
}
#sec10 > .inner{
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
}
#sec10-2 > .inner{
    padding-top: 0px;
    padding-bottom: 60px;
    position: relative;
}

#sec10 .headeing{
    padding: 0 0 50px;
    text-align: center;
}
#sec10 .top{
    padding: 40px 0 50px;
    background-color: #ebf8ff;
    text-align: center;
}
#sec10 .top .tableArea{
	padding: 0 20px;
    margin: 0 0 50px;
}
#sec10 .top .tableArea01{
    margin: 0;
}
#sec10 .top .tableArea03{
    margin: 0;
}
#sec10 .top > span:first-child{
    display: block;
    padding: 0 0 40px;
    font-size: 30px;
    text-align: center;
}
#sec10 .top > span:last-child{
    display: block;
    width: 100%;
    padding: 20px 0 0;
    margin: 0 auto;
    font-size: 17px;
    text-align: center;
}
#sec10 .top > img{
    padding: 30px 0;
}
#sec10 .top h3{
    padding: 0 0 20px;
    font-size: 30px;
    font-weight: 600;
    color: #0082ba;
    text-align: center;
}
#sec10 h3 span{
    padding: 0 0 0 30px;
    font-size: 20px;
    color: #df1553;
}
#sec10 table{
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #33a6e8;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
#sec10 tr{
    display: flex;
}
#sec10 th{
    min-height: 50px;
    background-color: #33a6e8;
    border-right: 1px solid #ffffff30;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#sec10 th:last-child{
    border-right: none;
}
#sec10 .tableArea th:nth-child(1){
    width: 59.6%;
}
#sec10 .tableArea th:nth-child(2){
    width: 20.2%;
}
#sec10 .tableArea th:nth-child(3){
    width: 20.2%;
}
#sec10 .top .tableArea01 th:nth-child(1){
    width: 51.6%;
}
#sec10 .top .tableArea01 th:nth-child(2){
    width: 24.2%;
}
#sec10 .top .tableArea01 th:nth-child(3){
    width: 24.2%;
}
#sec10 .top .tableArea02 th:nth-child(1){
    width: 59.6%;
}
#sec10 .top .tableArea02 th:nth-child(2){
    width: 20.2%;
}
#sec10 .top .tableArea02 th:nth-child(3){
    width: 20.2%;
}
#sec10 .top .tableArea02 tr:nth-child(3) td:last-child{
    font-size: 1em;
}
#sec10 td{
    min-height: 60px;
    border-right: 1px solid #ccc;
    border-bottom: 1px dotted #ccc;
    text-align: left;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
#sec10 .top .tableArea02 td{
    min-height: 70px;
}
#sec10 td:last-child{
    border-right: none;
}
#sec10 tr:last-child td{
    border-bottom: none;
}
#sec10 td:nth-child(1){
    padding: 0 0 0 20px;
    justify-content: flex-start;
}
#sec10 .tableArea td:nth-child(1){
    width: 59.6%;
    font-size: 17px;
}
#sec10 .tableArea td:nth-child(2){
    width: 20.2%;
}
#sec10 .tableArea td:nth-child(3){
    width: 20.2%;
}
#sec10 .top .tableArea01 td:nth-child(1){
    width: 51.6%;
}
#sec10 .top .tableArea01 td:nth-child(2){
    width: 24.2%;
}
#sec10 .top .tableArea01 td:nth-child(3){
    width: 24.2%;
}
#sec10 .top .tableArea02 td:nth-child(1){
    width: 59.6%;
}
#sec10 .top .tableArea02 td:nth-child(2){
    width: 20.2%;
}
#sec10 .top .tableArea02 td:nth-child(3){
    width: 20.2%;
}
#sec10 .top .tableArea td.twoLines{
    padding: 0;
    flex-direction: column;
}
#sec10 td.twoLines > div{
    width: 100%;
    min-height: 60px;
    padding: 0 0 0 20px;
    border-bottom: 1px dotted #ccc;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#sec10 td.twoLines > div:last-child{
    border-bottom: none;
}
#sec10 td.price{
    font-size: 28px;
}
#sec10 td.bold{
    font-weight: 600;
}
#sec10 .bold{
    font-weight: 600;
}
#sec10 td .fs70{
    font-size: 70%;
    position: relative;
    top: 2px;
}

#sec10 .middle{
    padding: 60px 0 0;
}
#sec10 .middle h3{
    padding: 0 0 20px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #0082ba;
    text-align: center;
}
#sec10 .middle .tableArea th:nth-child(1){
    width: 59.6%;
}
#sec10 .middle .tableArea th:nth-child(2){
    width: 20.2%;
}
#sec10 .middle .tableArea th:nth-child(3){
    width: 20.2%;
}
#sec10 .middle .tableArea td:nth-child(1){
    width: 59.6%;
}
#sec10 .middle .tableArea td:nth-child(2){
    width: 20.2%;
    font-size: 30px;
}
#sec10 .middle .tableArea td:nth-child(3){
    width: 20.2%;
    font-size: 30px;
}
#sec10 .middle .tableArea02 th:nth-child(1){
    width: 35.4%;
}
#sec10 .middle .tableArea02 th:nth-child(2){
    width: 32.3%;
}
#sec10 .middle .tableArea02 th:nth-child(3){
    width: 32.3%;
}
#sec10 .middle .tableArea02 td:nth-child(1){
    width: 35.4%;
    padding: 0 50px 0 0;
    justify-content: flex-end;
    font-size: 25px;
}
#sec10 .middle .tableArea02 td:nth-child(2){
    width: 32.3%;
    font-size: 25px;
}
#sec10 .middle .tableArea02 td:nth-child(3){
    width: 32.3%;
    color: #0082ba;
}

#sec10 .middle .tableArea02{
    padding: 80px 0 0;
}
#sec10 .middle .tableArea02 h3{
    padding: 0 0 50px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: #0082ba;
    text-align: center;
}
#sec10 .middle .tableArea02 table{
    border: 1px solid #b2b2b2;
    border-right-color: #33a6e7;
}
#sec10 .middle .tableArea th:nth-child(3) span{
    font-size: 17px;
}
#sec10 .middle .tableArea th:nth-child(3) span span.fs150{
    display: block;
    padding: 10px 0 0;
    font-size: 150%;
    font-weight: 600;
}
#sec10 .middle .tableArea02 tr{
    overflow: hidden;
}
#sec10 .middle .tableArea02 tr:first-child{
    overflow: visible;
}
#sec10 .middle .tableArea02 tr:last-child{
    overflow: visible;
}
#sec10 .middle .tableArea02 th{
    background-color: #b2b2b2;
}
#sec10 .middle .tableArea02 th:nth-child(2){
    border-right: none;
}
#sec10 .middle .tableArea02 th:nth-child(3){
    position: relative;
}
#sec10 .middle .tableArea02 th:nth-child(3) > div{
    width: calc(100% + 1px);
    height: 80px;
    border-radius: 10px 10px 0 0 / 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0 / 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0 / 10px 10px 0 0;
    background-color: #33a6e8;
    border: 1px solid #33a6e8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
}
#sec10 .middle .tableArea02 td:nth-child(2){
    border-right: none;
}
#sec10 .middle .tableArea02 td:nth-child(3){
    position: relative;
}
#sec10 .middle .tableArea02 td:nth-child(3) > div{
    width: calc(100% + 1px);
    height: 100%;
    background-color: #fff;
    border-left: 1px solid #33a6e8;
    border-right: 1px solid #33a6e8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
#sec10 .middle .tableArea02 tr:last-child td:nth-child(3) > div:after{
    content: '';
    width: 100%;
    height: 20px;
    padding: 0;
    background: #fff;
    border-left: 1px solid #33a6e8;
    border-right: 1px solid #33a6e8;
    border-bottom: 1px solid #33a6e8;
    border-radius: 0 0 10px 10px / 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px / 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px / 0 0 10px 10px;
    position: absolute;
    bottom: -20px;
    left: -1px;
    box-shadow: 0 5px 6px rgba(0,0,0,0.2);
}

#sec10 .middle .tableArea02 p{
    display: block;
    padding: 50px 0 0;
    text-align: center;
}

#sec10-2 .coupon{
    width: 100%;
    padding: 70px 0 0;
    margin: 0 auto;
}
#sec10-2 .coupon h3{
    padding: 0 0 20px;
    text-align: center;
}
#sec10-2 .coupon p{
    display: block;
    padding: 0 0 30px;
    font-size: 17px;
    text-align: center;
}
#sec10-2 .coupon .flexBox{
	width: 568px;
	margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
#sec10-2 .coupon .left{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#sec10-2 .coupon .right{
	padding: 20px 0 0;
}








/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC11

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec11{
    background: url(img/sec11/bg-filter.png),
                url(img/sec11/bg.jpg)50%/cover;
}
#sec11 > .inner{
    padding-top: 70px;
    padding-bottom: 70px;
}
#sec11 .headeing{
    padding: 0 0 80px;
    text-align: center;
    position: relative;
}
#sec11 .headeing img[alt="なぜかというと"]{
    position: absolute;
	bottom: -35px;
    left: 0px;
}
#sec11 ul{
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 50px 25px;
    background-color: #fff;
    border-radius: 5px;
}
#sec11 li{
    margin: 0 0 40px;
    display: flex;
    align-items: flex-start;
}
#sec11 li:last-child{
    margin: 0;
}
#sec11 .checkBox{
    width: 30px;
    height: 30px;
    margin: 5px 15px 0 0;
    border: 2px solid #e5e5e5;
    box-shadow: 0 2px 3px rgba(0,0,0,.3);
    position: relative;
}
#sec11 .checkBox:after{
    content: '';
    display: block;
    width: 34px;
    height: 27px;
    background: url(img/sec11/check.png) 50%/cover;
    position: absolute;
    right: -11px;
    bottom: 0px;
}
#sec11 li span{
    font-size: 22px;
    line-height: 1.5;
}
#sec11 li span span{
    font-size: 26px;
    font-weight: 600;
    color: #0082ba;
}
#sec11 .textArea{
    padding: 60px 0 0;
    text-align: center;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC12

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec12{
}
#sec12 > .inner{
    padding-top: 80px;
    padding-bottom: 60px;
}
#sec12 .headeing{
    padding: 0 0 100px;
    text-align: center;
    position: relative;
}
#sec12 .flexBox{
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}
#sec12 .left,#sec12 .right{
	position: relative;
}
#sec12 .left{
	width: max-content;
	margin: 0 auto 70px;
}
#sec12 .left:after{
	content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 22px 15px 0 15px;
	border-color: #88c427 transparent transparent transparent;
    position: absolute;
    bottom: -46px;
    right: 50%;
    margin-left: -15px;
}
#sec12 .right{
	width: max-content;
	margin: 0 auto;
	text-align: center;
}
#sec12 .seal{
	width: 100px;
	height: 100px;
	border-radius: 50px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: -40px;
	left: -40px;
}
#sec12 .seal span{
	font-weight: 600;
	line-height: 24px;
	color: #fff;
	position: relative;
	top: 5px;
}
#sec12 .left .seal{
	background-color: #b2b2b2;
}
#sec12 .right .seal{
	background-color: #33a6e8;
}
#sec12 .right img{
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
#sec12 .flexBox p:last-child{
	display: block;
    margin: 0 auto;
	padding: 20px 0 0;
	font-size: 25px;
    text-align: left;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC13

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec13{
    background-color: #f2ece4;
    position: relative;
}
#sec13:before{
    content: '';
    display: block;
    width: 0;
	height: 0;
	border-style: solid;
	border-width: 50px 50px 0 50px;
	border-color: #ffffff transparent transparent transparent;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -50px;
}
#sec13 > .wrap{
    width: 100%;
    height: 100%;
}
#sec13 > .wrap > .inner{
    width: 100%;
    padding: 80px 70px;
    margin: 0 auto;
}
#sec13 .headeing{
    padding: 0 0 30px;
    text-align: center;
}
#sec13 span{
    display: block;
    padding: 30px 0 0;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.7;
    color: #0082ba;
}
#sec13 p{
	font-size: 25px;
    line-height: 1.7;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC14

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec14{
    background-color: #fafafa;
}
#sec14 > .inner{
    padding-top: 80px;
    padding-bottom: 80px;
}
#sec14 .headeing{
    padding: 0 0 100px;
    text-align: center;
    position: relative;
}
#sec14 .qa{
    padding: 0 0 40px;
    position: relative;
}
#sec14 .qa:last-child{
    padding: 0;
    position: relative;
}
#sec14 .sec14-qa-checked{
    display: none;
}
#sec14 .qa-title{
    display: block;
    padding: 17.5px 50px;
    background-color: #33a6e8;
    box-shadow: 0 3px 8px rgba(0,0,0,.2);
    position: relative;
    z-index: 1;
}
#sec14 .qa-title span{
	display: block;
	padding: 0 50px;
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    position: relative;
}
#sec14 .qa-title span:before{
	content: '';
	display: block;
	width: 20px;
	height: 2px;
	margin-top: -1px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 0;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
    -ms-transition: .5s;
    transition: .5s;
}
#sec14 .qa-title span:after{
	content: '';
	display: block;
	width: 2px;
	height: 20px;
	margin-top: -10px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 9px;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
    -ms-transition: .5s;
    transition: .5s;
}
#sec14 .qa .open{
    background-color: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,.2);
    position: relative;
    z-index: 1;
    -moz-transition: 0s;
    -webkit-transition: 0s;
    -o-transition: 0s;
    -ms-transition: 0s;
    transition: 0s;
    visibility: hidden;
    opacity: 0;
    height: 0;
}
#sec14 .qa .open ul{
    padding: 0 50px;
}
#sec14 .qa .open li{
    padding: 20px 0 45px;
    border-bottom: 1px dotted #ccc;
}
#sec14 .qa .open li:last-child{
    border-bottom: none;
}
#sec14 .qa .open li h3{
    padding: 10px 0 20px 50px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    background: url(img/sec14/Q.png) 0% 0% no-repeat;
}
#sec14 .qa .open li p{
    padding: 20px 0 0 50px;
    line-height: 1.5;
    background: url(img/sec14/A.png) 0% 10% no-repeat;
}

/* checked ------------------------------*/
#sec14 .sec14-qa-checked:checked ~ .qa-title span:before{
	visibility: hidden;
	opacity: 0;
	transform: rotate(90deg);
}
#sec14 .sec14-qa-checked:checked ~ .qa-title span:after{
	transform: rotate(90deg);
}
#sec14 .sec14-qa-checked:checked ~ .open{
    height: auto;
    padding: 20px 0 0;
    visibility: visible;
    opacity: 1;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
    -ms-transition: .5s;
    transition: .5s;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC15

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec15{
}
#sec15 > .inner{
    padding-top: 80px;
    padding-bottom: 60px;
}
#sec15 .headeing{
    padding: 0 0 40px;
    text-align: center;
    position: relative;
}
#sec15 .flexBox{
	padding: 0 0 30px;
	display: flex;
	flex-direction: column;
}
#sec15 .flexBox .imgArea{
	width: 100%;
}
#sec15 .flexBox .imgArea img{
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
#sec15 .flexBox .textArea{
	width: 100%;
}
#sec15 h3{
	padding: 60px 0 20px;
	margin: 0 0 25px;
	border-bottom: 1px solid #33a6e8;
	font-size: 30px;
	font-weight: 600;
	text-align: center;
}
#sec15 ul{
	width: 100%;
	padding: 30px 25px;
	margin: 30px auto;
	background-color: #fafafa;
}
#sec15 li{
	padding: 0 0 20px 20px;
	font-size: 20px;
	line-height: 1.5;
	font-weight: 600;
	position: relative;
}
#sec15 li:last-child{
	padding: 0 0 0 20px;
}
#sec15 li:before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #3daae9;
    border-radius: 10px;
    position: absolute;
    top: 9px;
    left: 0;
}
#sec15 li:after {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #d6edfa;
    border-radius: 10px;
    position: absolute;
    top: 12px;
    left: 3px;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC16

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec16{
    position: relative;
    background: url(img/sec16/bg-filter.png), url(img/sec16/bg.jpg) 50%/cover;
}
#sec16:after{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 50px 0 50px;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0 0 0 -50px;
}
#sec16 > .inner{
    padding-top: 100px;
    padding-bottom: 60px;
    text-align: center;
}
#sec16 .headeing{
    padding: 0 0 50px;
    text-align: center;
    position: relative;
}
#sec16 p{
	padding: 0 0 30px;
	font-size: 25px;
}
#sec16 span{
    display: block;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.5;
    color: #0082ba;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC17

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec17{
    background-color: #f2ece4;
    position: relative;
}
#sec17 > .inner{
    width: 100%;
    padding-top: 50px;
    padding-bottom: 70px;
    text-align: center;
}
#sec17 .headeing{
    padding: 30px 0 50px;
}
#sec17 .textArea{
	width: 100%;
}
#sec17 span{
    display: block;
    padding: 60px 0 20px;
    font-size: 22px;
    text-align: right;
}
#sec17 p{
	font-size: 25px;
	text-align: left;
    line-height: 1.7;
}
#sec17 .sign{
	display: block;
	margin: 0 0 0 auto;
}
#sec17 .bg{
    display: block;
    width: 42.6%;
    height: 100%;
    margin: 0 0 0 auto;
    background: url(img/sec17/img.jpg) 50% 50%/cover;
}






/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

SEC18

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
#sec18{

}
#sec18 > .inner{
	padding: 30px 0 120px;
}
#sec18 table{
	width: 660px;
	margin: 0 auto;
}
#sec18 tr{
    display: flex;
    flex-direction: column;
    background: url(img/sec18/line.jpg) 0% 100% no-repeat;
}
#sec18 th,#sec18 td{
    line-height: 1.5;
}
#sec18 th{
    min-width: 100%;
    padding: 30px 0 0;
    font-size: 30px;
    font-weight: 600;
    text-align: left;
}
#sec18 td{
    width: 100%;
    padding: 20px 0 20px;
    font-size: 25px;
}


#footerFloatingMenu {
    display: block;
    width: 100%;
    position: fixed;
    left: 0px;
    bottom: 2px;
    z-index: 999999;
    text-align: center;
    padding: 0 auto;
}
 
#footerFloatingMenu img {
    max-width: 99%;
}



/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

copyright

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
.copyright{
	display: block;
	padding: 30px 0;
	font-size: 20px;
	color: #b2b2b2;
	text-align: center;
	margin-bottom: 100px;
}



.normal_title {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.7;
    color: #0082ba;
	text-align: center;
	margin-top: 50px;
	border-bottom: 4px solid #ddd;
	padding: 10px;
}
.place_list td p { margin: 0 0 20px;  font-size: 25px;}
.place_list td p strong { display: block;}
.place_list span {
	width: 100%;
	text-align: center;
	color: #0082ba;
	font-weight: bold;
	display: block;
	background: #eee;
	border-radius:5px;
	padding: 10px 15px;
	margin: 1px 10px 10px 0;}


/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 add 190723 COLOBO 
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

@keyframes bnr-anime {
    from {
		transform-origin: bottom;
        transform:scale(1);
    }
	90%{
		transform-origin: bottom;
        transform:scale(1.07);
    }
    to {
		transform-origin: bottom;
        transform:scale(1.05);
    }
}

.btn_move {
	animation-name: bnr-anime;
	animation-iteration-count: infinite;
	animation-duration: 2s;
	animation-timing-function:ease-in;
	animation-direction:reverse;
}

.btn_ygreen:hover,
.btn_orange:hover {
	opacity: 0.7;
}
.btn_ygreen {
	width: 93%;
	height: 100px;
	display: block;
	margin:0 auto 30px;
	padding: 37px 0 20px;
	border-radius: 6px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	text-shadow:1px 1px 3px  #679000;
	vertical-align: bottom;
	font-weight: bold;
	font-size: 170%;
	background: #c6ff42;
	background: -moz-linear-gradient(top, #c6ff42 0%, #b6e026 20%, #89bf00 100%);
	background: -webkit-linear-gradient(top, #c6ff42 0%,#b6e026 20%,#89bf00 100%);
	background: linear-gradient(to bottom, #c6ff42 0%,#b6e026 20%,#89bf00 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c6ff42', endColorstr='#89bf00',GradientType=0 );
}


.btn_orange {
	width: 93%;
	height: 100px;
	display: block;
	margin: 0 auto 60px;
	padding:22px 0 20px;
	border-radius: 6px;
	color: #fff;
	text-decoration: none;
	text-align: center;
	text-shadow:1px 1px 3px  #a27800;
	vertical-align: bottom;
	font-weight: bold;
	font-size: 170%;
	line-height: 1;
	background: #ffb042;
	background: -moz-linear-gradient(top, #ffb042 0%, #ed9a25 20%, #e88b00 100%);
	background: -webkit-linear-gradient(top, #ffb042 0%,#ed9a25 20%,#e88b00 100%);
	background: linear-gradient(to bottom, #ffb042 0%,#ed9a25 20%,#e88b00 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb042', endColorstr='#e88b00',GradientType=0 );
}


.btn_ygreen::before,
.btn_ygreen::after,
.btn_orange::before,
.btn_orange::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.btn_arrow::before{
    left:10px;
    width: 10px;
    height: 10px;
    border-top: 5px solid #fff;
    border-right: 5px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}