.eyecatchArea{
    height: calc(80vh - (var(--HeaderHeight) + var(--HeaderNaviHeight)));
    background-color: #fff;
    position: relative;
    background-image: url('../img/index/eyecatch01.jpg');
    background-position: center;
    background-size: cover;
}
.eyecatchArea > .inner{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.eyecatchContent{
    width: 100%;
    padding-top: 80px;
    padding-left: 64px;
    padding-right: 64px;
    color: #fff;
}
.eyecatchH1{
    font-size: 32px;
    margin-bottom: 24px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}
.eyecatchH2{
    font-size: 64px;
    font-weight: bold;
    margin-bottom: 48px;
    transform: rotate(-3deg);
    text-shadow: 4px 4px 6px rgba(0,0,0,0.8);
}
.eyecatchH3{
    font-size: 24px;
    width: 50%;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}


.aboutArea{
    
}

.aboutContent{
    font-size: 24px;
    color: #666;
    font-family: "Yuji Syuku", serif;
    font-weight: 400;
    font-style: normal;
}
.aboutContentRow00{
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
}
.aboutContentRow00Left{
    transform: rotate(-3deg);
    font-size: 26px;
    color: #00f;
    text-shadow: 
    1px 1px 0  #ccf,
    -3px 3px 0  #ccf,
    -1px -1px 0  #ccf,
    1px -1px 0  #ccf;
}



.aboutContentRow00Right{
    
}
.aboutContentRow00Image{
    width: 130px;
}
.aboutContentRow01{
    color: #000;
    margin-bottom: 16px;
}
.aboutContentRow02{
    font-size: 32px;
    font-weight: bold;
    color: #444;
    margin-bottom: 48px;
}
.aboutContentRow03{
    color: #172A88;
    margin-bottom: 16px;
    font-weight: bold;
}

.sellingPoint{
    padding: 32px;
    border: #f00 4px solid;
    border-radius: 16px;
    background-color: #f5f2f0;
    position: relative;
}
.sellingPointFloat{
    display: grid;
    place-content: center;
    position: absolute;
    top: -32px;
    left: 16px;
    border: #f00 4px solid;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    background-color: #f00;
    color: #fff;
    border-radius: 10px;
}

.sellingPointList{
    color: #593b1d;
    list-style: '※ ';
}
.sellingPointItem{
    margin-bottom: 8px;
    font-weight: bold;
}

.flow{
    margin-bottom: 32px;
    position: relative;
    background-color: #e6f3ff;
    padding: 16px;
    padding-top: 32px;
    border: #448 1px solid;
}
.flowCaption{
    background-color: #fff;
    padding: 4px;
    position: absolute;
    top: -10px;
    left: 10px;
    border: #448 1px solid;
    border-bottom: #448 2px double;
}
.flowItem{
    font-weight: bold;
}
.flowArrow{
    text-align: center;
}

.privacyBlock{
    margin-bottom: 32px;
    position: relative;
    background-color: #e6f3ff;
    padding: 16px;
    padding-top: 32px;
    border: #448 1px solid;
}
.privacyCaption{
    background-color: #fff;
    padding: 4px;
    position: absolute;
    top: -10px;
    left: 10px;
    border: #448 1px solid;
    border-bottom: #448 2px double;
}

.privacyCheck{
    text-align: center;
}
.btnPrivacyCheck{
    margin-bottom: 32px;
    padding-top: 8px;
    padding-left: 48px;
    position: relative;
}
.btnPrivacyCheck:before{
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 6px;
    left: 6px;
    border: #55bb55 2px solid;
    background-color: rgba(255,255,255,0.8);
}
.btnPrivacyCheck:after{
    border-right: 3px solid #55bb55;
    border-bottom: 3px solid #55bb55;
    content: '';
    display: block;
    height: 9px;
    left: 16px;
    top: 12px;
    opacity: 0;
    position: absolute;
    transform: rotate(45deg);
    width: 5px;    
}
input[name="privacyCheck"]:checked + .btnPrivacyCheck::after{
    opacity: 1;
}

.contentArea.contactArea{
    background-color: wheat;
}