@charset "utf-8";

/****************************************

    /* CSS 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,
sub,
sup,
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 {
    font-size: 100%;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

body {
    line-height: 1;
    min-height: 100vh;
    position: relative;
    /*←相対位置*/
    box-sizing: border-box;
    /*←全て含めてmin-height:100vhに*/
}

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;
}

a {
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    margin: 0;
    padding: 0;
}

ins {
    color: #000;
    text-decoration: none;
    background-color: #ff9;
}

mark {
    color: #000;
    font-style: italic;
    font-weight: bold;
    background-color: #ff9;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

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

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

input,
select,
textarea,
img,
th,
td {
    vertical-align: middle;
}

ul,
dl,
ol {
    list-style: none;
}

/****************************************

    /* 共通設定

*****************************************/

* {
    -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;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #111;
    line-height: 1.6;
    background-color: #FFE200;
    -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 800px) {

    body {
        font-size: 16px;
        padding-bottom: 0px;
        /*←footerの高さ*/
    }

}

h1,
h2,
h3,
h4,
h5,
h6,
th,
strong {
    font-weight: bold;
}

a {
    color: #333;
    text-decoration: none;
    transition-duration: .3s;
}

a:hover {
    text-decoration: none;
    transition-duration: .3s;
}

a:hover img {
    transition-duration: .3s;
}

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

table {
    table-layout: fixed;
}

table th,
table td {
    vertical-align: middle;
}

/* ■ Wrap
----------------------------- */

.wrap {
    width: 960px;
    margin: 0 auto;
    position: relative;
}

.wrap:after {
    content: "";
    display: block;
    clear: both;
}



@media screen and (max-width: 800px) {

    .wrap {
        width: 100%;
        padding: 0 5vw;
        overflow: hidden;
        z-index: unset;
    }

}

/* ■ inner
----------------------------- */

.inner {
    position: relative;
    text-align: center;
}

@media screen and (max-width: 800px) {
  
}

/* ■ PC/SP
----------------------------- */

.dispSP {
    display: none !important;
}

@media screen and (max-width: 800px) {

    .dispSP {
        display: block !important;
    }

    .dispPC {
        display: none !important;
    }

}

/****************************************

    /* セクション

*****************************************/

section {
    padding: 98px 0;
    position: relative;
}

@media screen and (max-width: 800px) {

    section {
        padding: 36px 0;
    }

}

/****************************************

    /* 見出し

*****************************************/

.hl-01 {
    line-height: 1.3;
    letter-spacing: 0;
}

.hl-03 {
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0;
    border-bottom: 4px solid #333;
    padding-bottom: 3px;
    margin-bottom: 100px;
    text-align: center;
    display: inline-block;
}

.hl-03 span {
    font-size: 1.2em;
}

.hl-04 {
    font-size: 2.4em;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0;
    white-space: nowrap;
}

.sub-ttl {
    font-weight: bold;
    font-size: 1.6em;
}

@media screen and (max-width: 800px) {

    .hl-01 {
        font-size: 6vw;
        margin-bottom: 40px;
    }

    .hl-02 {
        font-size: 6vw;
    }

    .hl-03 {
        font-size: 1.6em;
        line-height: 1.3;
        margin-bottom: 30px;
        display: block;
    }

    .hl-04 {
        font-size: 2em;
    }

    .bg-y {
        padding: 5px 20px;
    }

}



/****************************************

    /* ヘッダー

*****************************************/

header .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

header h1 {
    width: 15%;
}

header ul {
    width: 67%;
    display: flex;
    justify-content: flex-end;
}

header li {
    background-color: #fff;
    border: #333 solid 4px;
    border-bottom: 12px solid #333;
    border-radius: 8px;
    margin: 10px 0 10px 10px;
    transition: .3s;
}

header li:hover {
    background-color: #444;
    border: #444 solid 4px;
    border-bottom: 8px solid #444;
    margin: 14px 0 10px 10px;
    transition: .3s;
}

header a {
    text-decoration: none;
    font-weight: bold;
}

header li:hover a {
    color: #fff;
}

header p {
    padding: 17px 2em;
}

@media screen and (max-width: 800px) {

    header .wrap {
        justify-content: center;
    }

    header h1 {
        width: 30%;
    }

    header ul {
        background: #ffe201;
        justify-content: space-around;
        position: fixed;
        width: 100%;
        left: 0;
        bottom: 0;
        z-index: 4;
    }

    header li {
        margin: 2% 0;
        width: 48%;
        text-align: center;
    }

    header li p {
        padding: 0.8em 0;
        white-space: nowrap;
    }
    
}

/****************************************

    /* トップ

*****************************************/

#top {
    padding: 0;
}

#top .inner {
    display: flex;
}

#top .top-img {
    width: 100%;
}

#top .top-pickup {
    background-image: url(images/top-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    margin-top: -40px;
    z-index: 1;
    position: relative;

}

#top .top-pickup .wrap {
    width: 50%;
    display: flex;
    padding: 4.8vw 0 3vw;
    color: #fff;
    align-items: stretch;
    justify-content: space-around;
}

#top .top-pickup p {
    position: relative;
    padding-right: 20px;
    font-size: 1em;
}

#top .top-pickup p img {
    width: 172px;
    display: block;
    margin: 0 auto;
}

#top .top-pickup .wrap>p:nth-child(2) {
    width: 27%;
    text-indent: 0.5vw;
    white-space: nowrap;
    padding-left: 0.5vw;
    padding-bottom: 0.4%;
}

#top .top-pickup .wrap>p:nth-child(2) strong {
    font-size: 2em;
}

#top .top-pickup .wrap>p:nth-child(2) strong:last-child {
    font-weight: normal;
}

#top .top-pickup .wrap>p:nth-child(2) span.v-rl {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

#top .top-pickup ul {
    display: flex;
}

#top .top-pickup li {
    text-align: center;
}

#top .top-pickup li span {
    font-size: 0.7em;
}

@media screen and (max-width: 800px) {

    #top .wrap {
        padding: 0;
    }

    #top .inner {
        display: block;
    }

    #top .top-img {
        justify-content: space-around;
    }

    #top .top-img img {
        padding-top: 0;
        width: 100%;
        margin-top: 20px;
    }

    #top .wrap li {
    margin: 14px 0 14px;
    }

    #top .top-pickup {
        background-image: url(images/top-bg_02.png);
        position: relative;
        margin-top: -28.7vw;
        position: relative;
        z-index: -1;
    }

    #top .top-pickup .wrap {
        flex-wrap: wrap;
        position: relative;
        width: 100%;
        padding: 8vw 0px 3vw 0px;
    }

    #top .top-pickup .wrap>p:nth-child(1) {
        width: 50%;
        padding-right: 15px;
        margin-bottom: 10px;
        position: absolute;
        top: -130px;
        z-index: 10;
    }

    #top .top-pickup .wrap>p:nth-child(2) {
        width: 60%;
        font-size: 4.5vw;
    }

    #top .top-pickup ul {
        margin: 0 auto;
        width: 90%;
        flex-wrap: nowrap;
        display: flex;
        justify-content: space-between;
    }

    #top .top-pickup li {
        width: 32%;
        font-size: 1em;
        line-height: 2;
    }
    
    #top .top-pickup p {
        padding: 0;
    }

}

/****************************************

    /* cv

*****************************************/

.cv .cv-btn {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.cv .cv-btn li {
    background: #fff;
    border: #333 solid 6px;
    border-radius: 11px;
    border-bottom: 12px solid #333;
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
    justify-content: space-around;
    transition: .3s;
}

.cv .cv-btn li:hover {
    background-color: #444;
    border: #444 solid 6px;
    margin-top: 4px;
    border-bottom: 8px solid #444;
    transition: .3s;
}

.cv .cv-btn li:hover a {
    color: #fff;
}

.cv .cv-btn li:nth-child(1) {
    width: 63%;
}

.cv .cv-btn li p {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv .cv-btn li:nth-child(1) img {
    width: 21%;
    margin: 0.05em 0.8em;
}

.cv .cv-btn li:nth-child(2) {
    width: 36%;
}

.cv .cv-btn li a {
    display: flex;
    width: 100%;
    justify-content: center;
}

.cv .cv-description {
    display: flex;
    align-items: center;
    margin: 52px 0 42px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cv .cv-description li {
    background: #fff;
    border-radius: 10px;
    width: 32%;
    padding: 12px;
    font-size: 0.8em;
    text-align: center;
    margin: 0 0 1em;
    font-weight: bold;
}

.cv .compensation {
    display: flex;
    padding: 5px 76px 0;
    border: #333 solid 6px;
    border-radius: 6px;
    justify-content: space-between;
}

.cv .compensation-txt {
    width: 68%;
    margin-top: 69px;
    text-align: left;
}

.cv .compensation-txt p:nth-child(1){
    background: #333;
    color: #fff;
    padding: 0.4em 1.6em;
    display: inline-block;
    margin-bottom: 21px;
}

.cv .compensation-txt p:nth-child(1) img {
    padding-right: 5px;
    max-width: 200px;
}

.cv .compensation-txt p:last-child{
    margin-top: 17px;
    margin-bottom: 72px;
    font-size: 0.8em;
    line-height: 1.8;
}

.cv .compensation-img {
    width: 32%;
    display: flex;
    align-items: flex-end;
}

.cv-second {
    background: #FFEF6F;
    -webkit-clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
    clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
    padding-bottom: 123px;
}

.cv-third {
    -webkit-clip-path: polygon(0 3%, 100% 0%, 100% 100%, 0 100%);
    clip-path: polygon(0 3%, 100% 0%, 100% 100%, 0 100%);
    margin-top: -40px;
}

.btnshine {
    position: relative;
    display: inline-block;
    text-decoration: none;
    outline: none;
    overflow: hidden;
}

.btnshine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    transform: skewX(-25deg);
    pointer-events: none;
}

.btnshine:hover::before {
    animation: shine 0.7s;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

@media screen and (max-width: 800px) {

    .cv .cv-btn {
        display: block;
    }

    .cv .cv-btn li p {
        font-size: 0.8em;
    }

    .cv .cv-btn li:nth-child(1),
    .cv .cv-btn li:nth-child(2) {
        width: 100%;
        border-bottom: 16px solid #333;
        margin-bottom: 12px;
        height: 89px;
    }

    .cv .cv-btn li:nth-child(1) img {
        width: 13%;
        margin: 0 9px 0 17px;
    }

    .cv .cv-description {
        margin: 29px 0 10px;
        align-items: stretch;
    }

    .cv .cv-description li {
        width: 48%;
    }

    .cv .compensation {
        position: relative;
        display: block;
        padding: 5vw;
    }

    .cv .compensation-txt {
        width: fit-content;
        margin-top: 0;
    }

    .cv .compensation-txt p:nth-child(1) img {
        width: 44%;
        padding-bottom: 2%;
    }

    .cv .compensation-txt p:last-child {
        margin-bottom: 0;
    }

    .cv .compensation-txt p:nth-child(1) {
        padding: 0.4em 1em;
        margin-bottom: 9px;
    }

    .cv .compensation-txt p:last-child {
        width: 56%;
        margin-top: 7px;
        margin-bottom: 0;
        font-size: 0.8em;
        line-height: 1.6;
    }

    .cv .compensation-img {
        width: 47%;
        max-width: 240px;
        display: block;
        position: absolute;
        bottom: 0;
        right: -8px;
    }

    .cv-second .wrap,
    .cv-third .wrap {
        margin-top: 25px;
    }

}

@media screen and (max-width: 480px) {

    .cv .cv-btn li:nth-child(1) img {
        width: 17%;
        margin: 0 9px 0 0px;
    }

    .cv-second {
        padding-bottom: 60px;
    }

}

/****************************************

    /* メディア

*****************************************/

#media {
    background: #fff;
    -webkit-clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
    clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
}

@media screen and (max-width: 800px) {
    #media {
        background: #fff;
        -webkit-clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
        clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
        padding-bottom: 51px;
    }
}



/****************************************

    /* こんな時

*****************************************/

#when {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 81px;
}

#when::after {
    content: "";
    position: absolute;
    top: 100%;
    box-sizing: border-box;
    border-right: 50vw solid transparent;
    border-left: 50vw solid transparent;
    border-top: 80px solid #FFE200;
}

#when .hl-03 {
    margin-bottom: 58px;
}

@media screen and (max-width: 800px) {

    #when {
        margin-bottom: 46px;
    }

    #when .hl-03 {
        margin-bottom: 50px;
    }

}

/****************************************

    /* 放っておくと

*****************************************/

#if {
    background: #fff;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 81px;
}

#if::after {
    content: "";
    position: absolute;
    top: 100%;
    box-sizing: border-box;
    border-right: 50vw solid transparent;
    border-left: 50vw solid transparent;
    border-top: 80px solid #fff;
}

#if .hl-03 {
    margin-bottom: 65px;
}

#if ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
}

#if li {
    width: 49%;
}

#if figcaption {
    position: relative;
    bottom: 122px;
    line-height: 1.8;
    height: 0;
}

#if p.lines {
    display: inline-block;
    margin: 4px 0 56px;
    font-size: 2em;
    font-weight: bold;
    line-height: 1.3;
}

#if p.lines::before {
    content: '';
    background-image: url(images/if-img_05.png);
    background-repeat: no-repeat;
    background-size: 73%;
    display: block;
    width: 130px;
    height: 100px;
    position: relative;
    top: 78px;
    left: -92px;
}

@media screen and (max-width: 800px) {

    #if .hl-03 {
        margin-bottom: 30px;
    }

    #if ul {
        display: block;
    }

    #if li {
        width: 90%;
        margin: 0 auto 5vw;
    }

    #if li:last-child {
        margin: 0 auto 0;
    }

    #if figcaption {
        bottom: 23vw;
        font-size: 4vw;
        line-height: 1.3;
    }

    #if p.lines {
        margin: 0px 0 5vw;
        font-size: 1.5em;
    }

    #if p.lines::before {
        background-size: 73%;
        width: 70px;
        height: 69px;
        top: 28px;
        left: -6vw;
    }
}


/****************************************

    /* 理由

*****************************************/

#reason  {
    padding-bottom: 0px;
}

#reason .hl-03 {
    margin-top: -44px;
    margin-bottom: 76px;
}

#reason ul {
    position: relative;
}

#reason li {
    margin-bottom: 135px;
}

#reason li:nth-child(odd) {
    text-align: left;
}

#reason li:nth-child(even) {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

#reason li img.reason-num {
    vertical-align: top;
    width: 10%;
}

#reason li img.reason-pic {
    width: 49%;
    position: absolute;
    z-index: -1;
}

#reason li:nth-child(odd) img.reason-pic {
    right: 0;
}

#reason li:nth-child(even) img.reason-pic {
    left: 0;
}

#reason .hl-04 {
    background: #fff;
    border: #333 solid 6px;
    border-radius: 10px;
    padding: 0.3em 0.5em;
    margin: 46px 0 46px;
    max-width: fit-content;
    font-size: 2.2em;
}

#reason p {
    font-size: 0.8em;
    line-height: 1.6;
    text-align: left;
}

@media screen and (max-width: 800px) {

    #reason .hl-03 {
        margin-bottom: 50px;
        margin-top: 0;
    }

    #reason li {
        margin-bottom: 36px;
    }

    #reason li:nth-child(odd),
    #reason li:nth-child(even) {
        text-align: left;
        display: block;
    }

    #reason li img.reason-num {
        width: 29%;
    }

    #reason li img.reason-pic {
        width: 79%;
        margin-top: 11%;
        max-width: 110vh;
    }

    #reason li:nth-child(even) img.reason-pic {
        right: 0;
        left: auto;
    }

    #reason .hl-04 {
        background: rgb(255,255,255,0.8);
        padding: 14px 20px;
        margin: 30% 0 16px;
        font-size: 1.3em;
        width: 87%;
        white-space: normal;
    }

    #reason p {
        font-size: 1em;
    }

}


/****************************************

    /* 被害が大きくなる前に

*****************************************/

#before {
    background: #FFEF6F;
    -webkit-clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
    clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
}

#before .hl-03 {
    margin-bottom: 63px;
}

#before ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 70%;
    margin: 0 auto;
}

#before li {
    width: 42%;
    position: relative;
    margin-bottom: 2%;
}

#before p.lines {
    display: inline-block;
    margin: 5px 0 -88px;
    font-size: 2em;
    font-weight: bold;
    line-height: 1.3;
}

#before p.lines::before {
    content: '';
    background-image: url(images/before-img_13.png);
    background-repeat: no-repeat;
    background-size: 60%;
    display: block;
    width: 130px;
    height: 119px;
    position: relative;
    top: 112px;
    left: -102px;
}

#before p.lines::after {
    content: '';
    background-image: url(images/before-img_14.png);
    background-repeat: no-repeat;
    background-size: 60%;
    display: block;
    width: 130px;
    height: 119px;
    position: relative;
    bottom: 112px;
    left: 103%;
}

@media screen and (max-width: 800px) {

    #before .wrap {
        margin-top: 30px;
    }

    #before .hl-03 {
        margin-bottom: 30px;
    }

    #before ul {
        align-items: flex-end;
    }

    #before li {
        width: 47%;
        margin-bottom: 2vw;
    }

    #before p.lines {
        font-size: 1.5em;
        position: relative;
        margin-bottom: -23px;
        overflow: hidden;
    }

    #before p.lines::before {
        background-size: 66%;
        width: 60px;
        height: 60px;
        top: 22px;
        left: -13px;
        transform: rotate(25deg);
    }

    #before p.lines::after {
        background-size: 66%;
        width: 60px;
        height: 60px;
        bottom: 31px;
        left: 90%;
        transform: rotate(25deg);
    }

}


/****************************************

    /* 新型コロナウイルス感染症対策

*****************************************/

#infection {
    padding-bottom: 40px;
}

#infection ul {
    display: flex;
    justify-content: space-evenly;
}

#infection li {
    width: 24%;
}

#infection p {
    display: flex;
    justify-content: space-between;
}

#infection figcaption {
    position: relative;
    bottom: 60px;
    font-size: 0.8em;
    line-height: 1.4;
}

@media screen and (max-width: 800px) {

    #infection {
        padding-bottom: 0px;
    }

    #infection ul {
        flex-wrap: wrap;
    }

    #infection li {
        width: 49%;
    }


    #infection img {
        max-width: 80%;
    }

    #infection figcaption {
        bottom: 11vw;
        font-size: 0.8em;
        line-height: 1.3;
    }

}

/****************************************

    /* 流れ

*****************************************/

#flow {
    padding-bottom: 107px;
}

#flow ul {
    display: flex;
    justify-content: space-between;
}

#flow li {
    position: relative;
}

#flow li p:nth-child(1) {
    width: 40%;
    position: absolute;
    top: 0;
    left: -2px;
}

#flow li p:nth-child(2) {
    background-color: #fff;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

#flow li:not(:last-child) p:nth-child(2)::after{
    content: '';
    background-image: url(images/flow-arrow.png);
    width: 22px;
    height: 14px;
    display: block;
    background-size: 50%;
    background-repeat: no-repeat;
    position: absolute;
    right: -18%;
    z-index: 2;
}

#flow .cards {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    margin-top: 60px;
}

#flow .cards p {
    width: 48%;
    position: relative;
}

#flow .cards p:first-of-type::after {
    content: '';
    border: #666 solid 1px;
    height: 30px;
    display: inline-block;
    right: -30px;
    position: absolute;
}

#flow .cards img {
    width: 65%;
}

@media screen and (max-width: 1300px) {
    #flow li:not(:last-child) p:nth-child(2)::after{
        right: -1.5em;
    }
}


#flow li p:nth-child(2) img {
    width: 50%;
}

#flow li p:nth-child(3) {
    position: relative;
    bottom: -4px;
    line-height: 1.3;
}

@media screen and (max-width: 800px) {

    #flow {
        padding-bottom: 50px;
    }

    #flow ul {
        flex-direction: column;
        margin-top: 30px;
    }

    #flow li p:nth-child(1) {
        width: 74px;
        left: 22px;
        top: -14px;
        z-index: 1;
    }

    #flow li p:nth-child(2) {
        background-color: initial;
        width: 100%;
        height: auto;
        max-height: 60px;
        border-radius: inherit;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        margin: 0;
        padding: 10px 30px;
        position: absolute;
        z-index: 2;
        top: 13%;
    }

    #flow li p:nth-child(2) img {
        width: 59px;
    }

    #flow li:not(:last-child) p:nth-child(2)::after {
        background-image: none;
    }

    #flow li p:nth-child(3) {
        background-color: #fff;
        padding: 32px 26px;
        border-radius: 10px;
        margin-bottom: 30px;
        text-align: left;
    }

    #flow li:not(:last-child) p:nth-child(3)::after {
        content: '';
        background-image: url(images/flow-arrow.png);
        width: 22px;
        height: 14px;
        display: block;
        background-size: 50%;
        background-repeat: no-repeat;
        position: absolute;
        left: 47%;
        bottom: -24px;
        transform: rotate(90deg);
    }

    #flow .cards {
        padding: 10px 0 15px;
        margin-top: 20px;
        flex-direction: column;
    }

    #flow .cards p {
        width: 100%;
        margin-top: 5px;
    }

    #flow .cards p:first-of-type::after {
        display: none;
    }

}

/****************************************

    /* 会計

*****************************************/

#account {
    background: #FFEF6F;
    -webkit-clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
    clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
    padding-bottom: 128px;
}

@media screen and (max-width: 800px) {

    #account {
        padding-bottom: 66px;
    }

    #account .wrap {
        margin-top: 26px;
    }

}

/****************************************

    /* 対応可能エリア

*****************************************/

#area {
    background: #fff;
    -webkit-clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
    clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
    margin-top: -30px;
}

#area h3+div {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#area img {
    width: 30%;
}

#area img+div {
    width: 55%;
}

#area ul {
    text-align: left;
    display: flex;
    justify-content: flex-start;
    font-size: 32px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-left: -8px;
}

#area li {
    margin-left: 10px;
}

#area li:not(:first-child)::before {
    content: '・';
}

#area dl {
    text-align: left;
}

#area dt {
    font-size: 2.5em;
    line-height: 1.3;
}

#area dd {
    padding-top: 20px;
    line-height: 1.6;
    font-size: 0.8em;
}

@media screen and (max-width: 800px) {

    #area .wrap {
        margin-top: 14px;
    }

    #area h3+div {
        position: relative;
        padding-bottom: 30px;
        display: flex;
        flex-direction: column;
    }

    #area img {
        width: auto;
        max-width: 80%;
        padding-bottom: 1rem;
    }

    #area img+div {
        width: 100%;
    }

    #area ul {
        font-size: 20px;
        width: 80%;
        margin: 0 auto;
        margin-bottom: -18px;
        justify-content: center;
    }

    #area li {
        margin-left: 0;
    }

    #area dl {
        text-align: center;
        width: 100%;
        padding-top: 30px;
        z-index: 2;
    }

    #area dt {
        font-size: 2em;
    }

    #area dd {
        padding-top: 16px;
        line-height: 1.6;
        font-size: 1em;
    }

}

/****************************************

    /* お客様の声

*****************************************/

#voice li {
    background: #fff;
    padding: 30px 3%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

#voice li:last-child {
    margin-bottom: 0px;
}

#voice img {
    width: 10vw;
    height: 10vw;
    margin-right: 4%;
}

#voice dl {
    text-align: left;
}

#voice .voice-name {
    font-size: 1em;
    line-height: 1.3;
    font-weight: bold;
}

#voice .voice-place {
    font-size: 0.8em;
    line-height: 1.3;
}

#voice .voice-place img {
    height: 29px;
    width: 20px;
    margin: 0px 6px 2px 20px;
}

#voice .voice-family {
    font-size: 0.8em;
    line-height: 1.3;
    background-color: #EEEEEE;
    border-radius: 30px;
    padding: 5px 20px;
    margin-left: 10px;
}

#voice dd {
    padding-top: 10px;
    line-height: 1.6;
    font-size: 0.8em;
}

@media screen and (max-width: 800px) {

    #voice li {
        padding: 41px 8vw 36px;
        display: block;
    }

    #voice img {
        width: 43vw;
        height: 43vw;
        margin-right: 0;
    }

    #voice dt {
        font-size: 1.3em;
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        width: 70%;
        align-items: center;
        margin: 0 auto;
    }

    #voice .voice-place {
        margin-top: 5px;
    }

    #voice .voice-place img {
        margin: 0px 6px -2px 0px;
    }

    #voice .voice-family {
        margin-left: 0px;
        margin-top: 11px;
    }

    #voice dd {
        padding-top: 13px;
        line-height: 1.6;
        font-size: 1em;
    }

}

/****************************************

    /* よくある質問

*****************************************/

#qa {
    background: #fff;
    -webkit-clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
    clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0 100%);
}

#qa dl {
    text-align: left;
    position: relative;
}

#qa dt {
    font-size: 1em;
    line-height: 1.3;
    font-weight: bold;
    padding-left: 110px;
    display: flex;
    align-items: center;
    padding-bottom: 30px;
}

#qa dt::before {
    content: '';
    display: inline-block;
    background-image: url(images/qa-img_01.png);
    width: 86px;
    height: 86px;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: -11px;
    background-position-x: 3px;
}

#qa dd {
    background: #FFEF6F;
    line-height: 1.6;
    font-size: 0.8em;
    padding: 30px 10px 30px 110px;
    margin-bottom: 40px;
    border-radius: 10px;
}

#qa dd::before {
    content: '';
    display: inline-block;
    background-image: url(images/qa-img_02.png);
    width: 61px;
    height: 61px;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    left: 24px;
}

@media screen and (max-width: 800px) {

    #qa .wrap {
        margin-top: 30px;
        margin-bottom: 36px;
    }

    #qa ul {
        margin-top: 10px;
    }

    #qa li:nth-child(2) dt {
        padding-top: 10px;
    }


    #qa dt {
        font-size: 1.2em;
        padding-left: 90px;
        padding-bottom: 16px;
        position: relative;
        padding-top: 7px;
    }

    #qa dt:nth-child(1) {
        padding-top: 0;
    }

    #qa dt::before {
        width: 63px;
        height: 63px;
        left: 0px;
    }

    #qa dd {
        font-size: 1em;
        position: relative;
        padding: 17px 10px 17px 90px;
        margin-bottom: 5vw;
    }

    #qa li:last-child dd {
        margin-bottom: 0px;
    }

    #qa dd::before {
        width: 45px;
        height: 45px;
        top: 22px;
    }

}

/****************************************

    /* メールフォーム

*****************************************/
#form {
    background-color: #fff;
}

#form .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

#form .flex:not(:last-child) {
    padding-bottom: 40px;
}

#form .flex:last-child {
    padding-bottom: 80px;
}

#form .flex label {
    width: 28%;
    position: relative;
    font-weight: bold;
}

#form span.required {
    color: #ffffff;
    background-color: #E60013;
    padding: 4px 10px;
    font-size: 0.6em;
    position: absolute;
    right: 0;
}

#form span.optional {
    color: #ffffff;
    background-color: #BCBCBC;
    padding: 4px 10px;
    font-size: 0.6em;
    position: absolute;
    right: 0;
}

#form input,
#form select,
#form .box_det,
#form textarea {
    background-color: #eee;
    border: none;
    border-radius: 10px;
    width: 70%;
    height: 60px;
    padding: 0 2em;
    font-size: initial;
}

#form select {
    width: 100%;
    padding: 0 2em;
}

#form .box_det {
    padding: 0 !important;
}

#form textarea {
    height: fit-content;
    font-size: 1rem;
    font-weight: 400;
    padding: 2em;
}

#form input:-webkit-autofill {
    transition: background-color 5000s ease-in-out 0s !important;
}

#form p.error {
    color: #E60013;
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    left: -8px;
    padding-left: 31%;
}

#form .btnshine {
    width: 50%;
    border: #333 solid 6px;
    border-radius: 11px;
    border-bottom: 12px solid #333;
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
    justify-content: space-around;
    transition: .3s;
    margin: 0 auto;
    padding: 0.5em;
}

#form .btnshine:hover {
    background-color: #444;
    border: #444 solid 6px;
    margin-top: 4px;
    border-bottom: 8px solid #444;
    transition: .3s;
}

#form .btnshine input {
    background-color: transparent;
    margin: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

#form .btnshine:hover input {
    color: #fff;
}

@media screen and (max-width: 800px) {

    #form .flex {
        display: block;
    }

    #form .flex:not(:last-child) {
        padding-bottom: 20px;
    }

    #form .flex:last-child {
        padding-bottom: 40px;
    }

    #form .flex label {
        display: block;
        margin-bottom: 1vh;
        width: auto;
        text-align: left;
    }

    #form span.required,
    #form span.optional {
        padding: 6px 10px;
        position: inherit;
        margin-left: 10px;
    }

    #form input,
    #form select,
    #form .box_det,
    #form textarea {
        width: 100%;
        height: 60px;
        padding: 1em;
        color: 000;
    }

    #form input[type="submit"]{
        width: 100%;
        height: 60px;
        padding: 0;
        height: 50px;
        font-size: initial;
        color: #333;
        background-color: transparent;
    }

    #form p.error {
        position: relative;
        top: 1vw;
        padding-left: 0;
        text-align: left;
    }

    #form .btnshine {
        width: 100%;
    }

}

/****************************************

    /* メール送信後

*****************************************/

#formthanks {
    background-color: #e9edf2;
    padding: 8vh;
    height: 100vh;
}

#formthanks .wrap {
    background-color: #ffffff;
    text-align: center;
    padding: 8vh;
    border-radius: 10px;
}

#formthanks h4+div {
    color: red;
    margin: 4vh auto;
}

#formthanks input,
#formthanks a {
    border: none;
    background-color: #006199;
    border-radius: 10px;
    color: #fff;
    padding: 23px 40px;
    display: inline-block;
    text-decoration: none;
    margin-top: 4vh;
    font-size: 16px;
}

#formthanks input:hover,
#formthanks a:hover {
    opacity: 0.6;
}

@media screen and (max-width: 800px) {
    #formthanks {
        padding: 4vh;
    }

    #formthanks .wrap {
        padding: 6vh 2vh;
    }
}


/****************************************

    /* フッター

*****************************************/

footer {
    background: #fff;
}

footer ul {
    display: flex;
    padding: 10px 0;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    font-size: 14px;
    width: 960px;
    margin: 0 auto;
}

footer a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 800px) {

    footer {
        padding-bottom: 90px;
    }

    footer ul {
        padding: 25px 0;
        width: 100%;
    }

}

/****************************************

    /* 運営会社情報

*****************************************/

#management .hl-03 {
    border: none;
    margin: 0 auto;
    display: block;
}

#management table {
    background: #fff;
    width: 100%;
    margin-top: 40px;
}
    
#management table th,
#management table td {
    border: 4px solid #000;
    padding: 20px;
    font-weight: 400;
}

#management table th {
    font-weight: bold;
    background-color: #eee;
    width: 40%; 
}

@media screen and (max-width: 767px) {
    #management table,
    #management table tr,
    #management table td,
    #management table th {
        display:block;
    }

    #management table {
        border: 4px solid #000;
        border-top: none;
    }

    #management tbody {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
    }

    #management table th {
        width:auto;
        border-bottom: 4px solid #000;
        border-top: 4px solid #000;
        border-right:none ;
        border-left:none ;
    }

    #management table td {
        border: 0px solid #000;
        padding: 20px;
        font-weight: 400;
    }
}

/****************************************

    /* プライバシーポリシー

*****************************************/

#privacy .hl-03 {
    border: none;
    margin: 0 auto 40px;
    display: block;
}

#privacy .contentbox {
    background-color: #fff;
    padding: 40px;
}

#privacy .contentbox p {
    padding: 1em 0;
}

#privacy .contentbox .textbox {
    border: none;
    padding: 0 0;
    margin: 0.4rem;
}

#privacy .contentbox h2 {
    border-bottom: 4px solid #000;
    margin-top: 1.6rem;
    padding-bottom: 0.1rem;
    margin-bottom: 0.4rem;
}

@media screen and (max-width: 767px) {

    #privacy .contentbox {
        background-color: #fff;
        padding: 5vw;
    }

}