@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,900&display=swap&subset=japanese');
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html,body{	height:100%;}
html{
	font-size:62.5%;
    overflow-y: scroll;
}
*,*:after,*:before{
	box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form ,figure{
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: 400;
	color: #593d1f;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", YuGothic, メイリオ, Meiryo, sans-serif;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select::-ms-expand {
	display: none;
}
textarea{
	resize: vertical;
}
button{
	cursor: pointer;
}

a {
	color: #000;
	text-decoration: none;
	transition: opacity 0.3s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a img {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
img{
	vertical-align: bottom;
	max-width: 100%;
    -webkit-backface-visibility: hidden;
}

@media screen and (min-width: 768px) {
	.sp{
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.pc{
		display: none !important;
	}
	img{
		width: 100%;
	}
}


/* マウスオーバー
--------------------------------*/
@media screen and (min-width: 769px) {
	.fade:hover,a:hover img{
		opacity: 0.7;
	}
	.fade,a img{
		transition: opacity 0.3s ease-out;
	}
}


/* base
--------------------------------*/
body {
	color: #593d1f;
/*	min-width: 1100px;*/
	font-size: 1.0rem;
}
body:before{
	background: url(../images/bg01.png) no-repeat 0 0 / cover;
    content: "";
    display: block;
    position: fixed;
    top:0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
}
main{
    text-align: center;
}
section {
	position: relative;
}
p,th,td,dt,dd,li,input,button,textarea {
	font-size: 1.6rem;
	line-height: 1.8;
}
.box {
	display: flex;
	justify-content: space-between;
}
.left{
	float: left;
}
.right{
	float: right;
}
.center{
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.a_right{
  text-align: right;
}
.a_center{
  text-align: center;
}
.txt_small{
  font-size: 1.2rem;
}
.bold{
  font-weight: 900;
}

.deco{
    position: absolute;
    display: block;
    content: "";
}
#contents{
    position: relative;
    padding-bottom: 32vw;
}


@media screen and (max-width: 767px) {
	body {
		min-width: inherit;
	}
	p,th,td,dt,dd,li,input,button,textarea {
		font-size: 3.2vw;
		line-height: 1.6;
	}
    #contetns{
        background-size: 100% auto;
    }
}


/* ------------------------------
    mv
------------------------------ */
#mv{
	width: 100%;
    padding-bottom: 0.1vw;
}
#mv:before{
    position: absolute;
    display: block;
    content: "";
	background: url(../images/deco01.png) no-repeat 0 0 / 100%;
    width: 18vw;
    height:21vw;
    top:1vw;
    right: 0;
    z-index: 1;
}
#mv:after{
    position: absolute;
    display: block;
    content: "";
	background: url(../images/deco02.png) no-repeat 0 0 / 100%;
    width: 22vw;
    height:16vw;
    top:0;
    left: 0;
    z-index: 1;
}
#mv .inner{
    position: relative;
    z-index: 0;
}
#mv .inner:before{
    position: absolute;
    display: block;
    content: "";
	background: url(../images/deco03.png) no-repeat 0 0 / 100%;
    width: 13vw;
    height:21vw;
    top:46%;
    left: 0;
}
#mv h1{
    padding-top: 6vw;
    margin:0 auto 3vw;
    width: 80%;
}
#mv p{
    font-weight: bold;
    margin-bottom: 2rem;
}
#mv p.btn{
    width: 30vw;
    margin: 0 auto 3vw;
    max-width: 386px;
}
#mv p.btn a{
    background: url(../images/mv_btn_bg.png) no-repeat 0 0 / 100%;
    color: #fff;
    padding: 7% 0;
    font-size: 1.4rem;
    display: block;
    letter-spacing: 1px;
}


@media screen and (min-width: 768px) and (max-width: 1199px) {
    #mv p.btn {
        width: 40vw;
    }
}

@media screen and (max-width: 767px) {
    #mv{
        z-index: 1;
    }
    #mv p{
        font-size: 2.8vw;
        margin-bottom: 1rem;
    }
    #mv p.btn{
        width: 60vw;
    }
    #mv p.btn a{
        font-size: 2.8vw;
        padding-top: 6.5%;
    }
}

/* ------------------------------
    anchor_area
------------------------------ */
#anchor_area{
    position: relative;
}
#anchor_area:before{
    position: absolute;
    background: url(../images/deco04.png) no-repeat 0 0 / 100%;
    content: "";
    display: block;
    width: 33vw;
    height:41vw;
    top:-9vw;
    right: 0;
}
#anchor_area:after{
    position: absolute;
    background: url(../images/deco05.png) no-repeat 0 0 / 100%;
    content: "";
    display: block;
    width: 35vw;
    height:40vw;
    top:2vw;
    left: -6vw;
    z-index: 0;
}
#anchor_area {
    padding-top: 2vw;
    padding-bottom: 1vw;
}
#anchor_area .inner{
    width: 50%;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}
#anchor_area .inner h2{
    margin-bottom: 2vw;
    width: 50%;
}
#anchor_area .inner ul{
    margin:0 auto 2vw;
    max-width: 630px;
    display: flex;
}
#anchor_area .inner ul li{
    padding: 0 2%;
}


@media screen and (min-width: 768px) and (max-width: 1199px) {
    #anchor_area .inner{
        width: 70%;
        margin-top: 2vw;
    }
}

@media screen and (max-width: 767px) {
    #anchor_area{
        padding-top: 7vw;
    }
    #anchor_area .inner {
        width: 80%;
    }
    #anchor_area .inner ul li{
        padding: 0;
    }
}

/* ------------------------------
    section
------------------------------ */
section h2{
    margin:0 auto 6vw;
    width: 40%;
}
section .inner .box{
    position: relative;
    display: block;
}
section .inner .box h3{
    text-align: left;
    position: relative;
}
section .inner .box h3 img:first-child{
    width: 50%;
    max-width: 415px;
}
section .inner .box h3 img:last-child{
    max-width: 439px;
    position: absolute;
    left: 27%;
    top:8%;
    width: 50%;
}
section .inner .txt{
    position: absolute;
    top:35%;
    left: 42%;
}
section .inner .txt p{
    text-align: left;
    font-size: 1.4rem;
    margin-bottom: 1vw;
    line-height: 1.7;
}
section .inner .txt .box{
    display: table;
    table-layout: fixed;
    width: auto;
}
section .inner .txt .box li{
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #62963f;
    padding: 0;
    display: table-cell;
}
section .inner .txt .box li img{
    display: block;
    margin:0 auto 1rem;
    max-width: 5vw;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    section .inner .txt{
        left: 46%;
    }
}

@media screen and (max-width: 767px) {
    section h2{
        width: 50%;
    }
    section .inner .txt p {
        font-size: 1.2rem;
    }
    section .inner .txt{
        position: relative;
        top:0 !important;
        left: 0 !important;
        width: 100% !important;
    }
    section .inner > .box{
        left: 0 !important;
    }
    section .inner .box h3{
        margin-bottom: 1rem;
    }
    section .inner .box h3 img:first-child,
    section .inner .box h3 img:last-child{
        width: 100%;
    }
    section .inner .box h3 img:last-child{
        right: 0;
        bottom: 0;
        top:auto !important;
        left: auto;
    }
    section .inner .txt .box{
        width: 100% !important;
    }
    section .inner .txt .box li img{
        max-width: 12vw;
    }
}

/* ------------------------------
    sec01
------------------------------ */
#sec01{
	padding: 6vw 4vw calc(14px + 70px) 7vw;
	overflow: hidden;
	background: url(../images/sec_bg.png) no-repeat 0 bottom / 100%;
    width: 85%;
    margin: 0 auto 6vw;
    max-width: 1080px;
}
#sec01::before{
	content: "";
	display: block;
	background: url(../images/deco06.png) no-repeat 0 0 / 100%;
	position: absolute;
	top: 0;
	right: 0;
    width: 27%;
    height: 18%;
}
#sec01 .inner::after{
	content: "";
	display: block;
	background: url(../images/deco08.png) no-repeat 0 0 / 100%;
	position: absolute;
	top: 15vw;
	left: 12%;
    width: 8%;
    height: 10%;
}

#sec01 .inner > .box:nth-child(2){
    padding-bottom: 5vw;
    margin-bottom: 1vw;
}
#sec01 .inner > .box:nth-child(3){
    padding-bottom: 7vw;
    margin-bottom: 1vw;
    left: 10%;
}
#sec01 .inner > .box:nth-child(4){
    padding-bottom: 9vw;
}
#sec01 .inner > .box:nth-child(5){
    left: 20%;
}
#sec01 .inner > .box:nth-child(2):before{
    background: url(../images/deco09.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 7%;
    height: 8vw;
    top: 72%;
    left: 40%;
}
#sec01 .inner > .box:nth-child(3):before{
    background: url(../images/deco10.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 5%;
    height: 6vw;
    top: 2vw;
    right: 13%;
}
#sec01 .inner > .box:nth-child(3):after{
    background: url(../images/deco11.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 4%;
    height: 5vw;
    top: 86%;
    left: 40%;
}
#sec01 .inner > .box:nth-child(4):before{
    background: url(../images/deco09.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 7%;
    height: 8vw;
    top: 80%;
    left: 60%;
}
#sec01 .inner > .box:nth-child(5):after{
    background: url(../images/deco11.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 4%;
    height: 5vw;
    top: 80%;
    left: auto;
    right: 56%;
}
#sec01 .inner .box:nth-child(3) h3 img:last-child{
    left:38%;
}
#sec01 .inner .box:nth-child(4) h3 img:last-child{
    top:4%;
}
#sec01 .inner .box:nth-child(5) h3 img:last-child{
    top:14%;
    left: 36%;
}
#sec01 .inner .box:nth-child(3) .txt{
    left: 49%;
    top:28%;
    width: 40%;
}
#sec01 .inner .box:nth-child(4) .txt{
    top:25%;
    width: 48%;
}
#sec01 .inner .box:nth-child(5) .txt{
    left: 48%;
    top:47%;
}
#sec01 .inner .txt p.btn{
    width: 45%;
    max-width: 175px;
    height: 3.5vw;
}
#sec01 .inner .txt p.btn a{
    color: #fff;
    padding: 7% 0 0;
    font-size: 1.1rem;
    display: block;
    text-align: center;
    background: url(../images/sec_btn_bg.png) no-repeat 0 0 / 100%;
    letter-spacing: 1px;
    height: 3.5vw;
    line-height: 1;
}
.chrome.win #sec01 .inner .txt p.btn{
    width: 45%;
}
#sec01 .inner .box:nth-child(3) .txt .box li{
    width: 20%;
}
#sec01 .inner .box:nth-child(4) .txt .box{
    width: 100%;
}
#sec01 .inner .box:nth-child(4) .txt .box li{
    width: 16.66%;
}

@media screen and (max-width: 1280px) {
    #sec01 .inner > .box:nth-child(4) {
        padding-bottom: 11vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    #sec01{
        padding-left: 4vw;
        padding-bottom: calc(14px + 20px); 
    }
    #sec01 .inner .txt p.btn{
        width: 50%;
    }
    #sec01 .inner .txt p.btn a{
        height: 5vw;
    }
    #sec01 .inner .box:nth-child(3) .txt{
        left: 52%;
    }
    #sec01 .inner > .box:nth-child(4){
        padding-bottom: 12vw;
    }
    #sec01 .inner > .box:nth-child(5){
        left: 10%;
        padding-bottom: 5vw;
    }
    #sec01 .inner .box:nth-child(5) .txt{
        left: 52%;
        top:40%;
    }
}

@media screen and (min-width: 1700px) {
    #sec01 .inner .box:nth-child(3) .txt{
        width: 42%;
    }
    #sec01 .inner .box:nth-child(4) .txt{
        width: 50%;
    }
}

@media screen and (max-width: 1040px) {
    #sec01 .inner > .box:nth-child(4){
        padding-bottom: 14vw;
    }
    #sec01 .inner .box:nth-child(4) .txt{
        top:22%;
    }
}

@media screen and (max-width: 880px) {
    #sec01 .inner > .box:nth-child(4){
        padding-bottom: 16vw;
    }
    #sec01 .inner .box:nth-child(4) .txt{
        top:20%;
    }
}

@media screen and (max-width: 820px) {
    #sec01 .inner > .box:nth-child(4){
        padding-bottom: 20vw;
    }
    #sec01 .inner .box:nth-child(4) .txt{
        top:16%;
    }
    #sec01 .inner > .box:nth-child(3){
        margin-bottom: 9vw;
    }
}

@media screen and (max-width: 767px) {
    #sec01{
        padding-left:4vw;
        padding-bottom: calc(14px + 20px);
    }
    #sec01 .inner .txt p.btn{
        width: 62%;
        height: 12vw;
   }
    #sec01 .inner .txt p.btn a{
        height: 12vw;
    }
    #sec01 .inner::after {
        width: 12%;
        height: 4%;
    }
    #sec01 .inner > .box:nth-child(2),
    #sec01 .inner > .box:nth-child(4){
        padding-bottom: 14vw;
    }
    #sec01 .inner > .box:nth-child(2)::before,
    #sec01 .inner > .box:nth-child(4)::before {
        width: 12%;
        height: 13vw;
        top:90%;
    }
    #sec01 .inner > .box:nth-child(3){
        padding-bottom: 14vw;
        margin-top:8%;
    }
    #sec01 .inner > .box:nth-child(3)::before,
    #sec01 .inner > .box:nth-child(3)::after,
    #sec01 .inner > .box:nth-child(5)::after{
        width: 10%;
        height: 12vw;
        top:90%;
    }
    #sec01 .inner > .box:nth-child(3)::before {
        right: 4%;
        top:-7%;
    }
    #sec01 .inner > .box:nth-child(3)::after{
        top:92%;
    }
    #sec01 .inner > .box:nth-child(5){
        padding-bottom: 14vw;
    }
    #sec01 .inner .box:nth-child(2) h3 img:last-child{
        right: -30%;
    }
    #sec01 .inner .box:nth-child(3) h3 img:last-child{
        right: -50%;
        left: auto;
    }
    #sec01 .inner .box:nth-child(4) h3 img:last-child{
        right: -30%;
    }
}

/* ------------------------------
    sec02
------------------------------ */
#sec02{
	padding: 6vw 4vw calc(14px + 80px) 7vw;
	overflow: hidden;
	background: url(../images/sec_bg.png) no-repeat 0 bottom / 100%;
    width: 85%;
    margin: 0 auto 8vw;
    max-width: 1080px;
}
#sec02::before{
	content: "";
	display: block;
	background: url(../images/deco02.png) no-repeat 0 0 / 100%;
	position: absolute;
	top: 0;
	left: 0;
    width: 27%;
    height: 20vw;
}
#sec02 .inner > .box:nth-child(2){
    padding-bottom: 8vw;
}
#sec02 .inner > .box:nth-child(3){
    padding-bottom: 35px;
    margin-bottom: 10px;
    left: 10%;
}
#sec02 .inner > .box:nth-child(4){
    padding-bottom: 8vw;
}
#sec02 .inner > .box:nth-child(5){
    padding-bottom: 2vw;
    left: 15%;
}
#sec02 h2{
    margin-bottom: 5vw;
    width: 50%;
}
#sec02 .inner > .box:nth-child(2):before{
    background: url(../images/deco09.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 7%;
    height: 8vw;
    top: 70%;
    left: 35%;
}
#sec02 .inner > .box:nth-child(3):before{
    background: url(../images/deco12.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 9%;
    height: 6vw;
    top: -10%;
    right: 17%;
}
#sec02 .inner > .box:nth-child(3):after{
    background: url(../images/deco11.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 4%;
    height: 5vw;
    top: 80%;
    left: auto;
    right: 38%;
}
#sec02 .inner > .box:nth-child(4):before{
    background: url(../images/icon_or.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 8%;
    max-width:70px;
    height: 6vw;
    top: -13%;
    left: 22%;
    z-index: 1
        ;
}
#sec02 .inner > .box:nth-child(4):after{
    background: url(../images/deco09.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 7%;
    height: 8vw;
    top: 76%;
    right: 32%;
}
#sec02 .inner > .box:nth-child(5):after{
    background: url(../images/deco11.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 4%;
    height: 5vw;
    top: 80%;
    left: auto;
    right: 57%;
}
#sec02 .inner .box:nth-child(2) h3 img:last-child{
    top:5%;
    left: 25%;
}
#sec02 .inner .box:nth-child(3) h3 img:last-child{
    top:-7%;
}
#sec02 .inner .box:nth-child(4) h3 img:last-child{
    left:31%;
    top:-2%;
}
#sec02 .inner .box:nth-child(5) h3 img:last-child{
    left:31%;
    top:1%;
}
#sec02 .inner .box:nth-child(2) .txt{
    left: 41%;
    top:28%;
    width: 47%;
}
#sec02 .inner .box:nth-child(3) .txt{
    left: 42%;
    top:25%;
}
#sec02 .inner .box:nth-child(4) .txt{
    top:26%;
    left: 43%;
}
#sec02 .inner .box:nth-child(5) .txt{
    top:30%;
    left: auto;
    right: 15%;
    width: 40%;
}
#sec02 .inner .box:nth-child(2) .txt .box{
    width: 100%;
}
#sec02 .inner .box:nth-child(2) .txt .box li{
    width: 16.66%;
}
#sec02 .inner .box:nth-child(3) .txt .box{
    width: 47%;
}
#sec02 .inner .box:nth-child(4) .txt .box{
    width: 47%;
}
#sec02 .inner .box:nth-child(5) .txt .box{
    width: 100%;
}
#sec02 .inner .box:nth-child(5) .txt .box li{
    width: 20;
}

@media screen and (min-width: 1600px) {
    #sec02 .inner .box:nth-child(3) .txt{
        left:47%;
    }
    #sec02 .inner .box:nth-child(5) .txt{
        width:42%;
        right: 13%;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    #sec02{
        padding-left: 4vw;
        padding-bottom: calc(14px + 60px); 
    }
    #sec02 .inner .box:nth-child(2) .txt{
        left: 44%;
    }
    #sec02 .inner .box:nth-child(3) .txt{
        width: 48%;
        left: 47%;
    }
    #sec02 .inner .box:nth-child(3) .txt .box{
        width: 54%;
    }
    #sec02 .inner .box:nth-child(4) .txt{
        left: 45%;
    }
    #sec02 .inner > .box:nth-child(5){
        left: 10%;
    }
    #sec02 .inner .box:nth-child(5) .txt{
        right: 8%;
    }
}

@media screen and (max-width: 1040px) {
    #sec02 .inner > .box:nth-child(3){
        padding-bottom: 10vw;
    }
    #sec02 .inner > .box:nth-child(4):before{
        top:-24%;
    }
    #sec02 .inner .box:nth-child(3) .txt{
        top:22%;
    }
}

@media screen and (max-width: 850px) {
    #sec02 .inner > .box:nth-child(3){
        padding-bottom: 14vw;
    }
    #sec02 .inner .box:nth-child(3) .txt{
        top:18%;
    }
}

@media screen and (min-width: 1560px) {
    #sec02 .inner .box:nth-child(2) .txt{
        width: 50%;
    }
}

@media screen and (max-width: 767px) {
    #sec02{
        padding-left:4vw;
        padding-bottom: calc(14px + 20px);
    }
    #sec02 h2{
        width: 55%;
        margin-left: 25%;
    }
    #sec02 .inner .box:nth-child(3) .txt .box,
    #sec02 .inner .box:nth-child(4) .txt .box{
        width: 60% !important;
    }
    #sec02 .inner > .box:nth-child(2){
        padding-bottom: 12vw;
        margin-bottom: 2vw;
    }
    #sec02 .inner > .box:nth-child(3){
        padding-bottom: 5vw;
    }    
    #sec02 .inner > .box:nth-child(4){
        margin-bottom: 4vw;
        margin-top: -8%;
    }
    #sec02 .inner > .box:nth-child(5){
        padding-bottom: 15vw;
    }
    #sec02 .inner > .box:nth-child(2)::before ,
    #sec02 .inner > .box:nth-child(4)::after {
        width: 12%;
        height: 13vw;
        top:90%;
    }
    #sec02 .inner > .box:nth-child(3)::before {
        width: 12%;
        height: 8vw;
        top:-4%;
        right: 10%;
    }
    #sec02 .inner > .box:nth-child(3)::after {
        width: 10%;
        height: 12vw;
        top:90%;
        left: 80%;
    }
    #sec02 .inner > .box:nth-child(4)::before {
        position: relative;
        width: 15%;
        height: 13vw;
        left: 40%;
    }
    #sec02 .inner > .box:nth-child(5)::after {
        width: 12%;
        height: 15vw;
        top:90%;
    }
    #sec02 .inner .box:nth-child(3) h3 img:last-child{
        right: -10%;
    }
    #sec02 .inner .box:nth-child(4) h3 img:last-child{
        right: -10%;
        left: auto;
    }
}

figure.deco_left{
    position: relative;
    left: 0;
    top:-22vw;
    width: 27%;
    text-align: left;
    margin-bottom: -29vw;
    z-index: 2;
}

@media screen and (min-width: 1500px) {
    figure.deco_left{
        margin-bottom: -24vw
    }
}

/* ------------------------------
    sec03
------------------------------ */
#sec03{
	padding: 6vw 4vw calc(14px + 90px) 7vw;
	overflow: hidden;
	background: url(../images/sec_bg.png) no-repeat 0 bottom / 100%;
    width: 85%;
    z-index: 1;
    margin: 0 auto;
    max-width: 1080px;
}
#sec03::before{
	content: "";
	display: block;
	background: url(../images/deco06.png) no-repeat 0 0 / 100%;
	position: absolute;
	top: 0;
	right: 0;
    width: 23vw;
    height: 20vw;
}
#sec03 .inner h2{
    margin-bottom: 4vw;
}
#sec03 .inner > .box:nth-child(2){
    padding-bottom: 7vw;
}
#sec03 .inner > .box:nth-child(3){
    padding-bottom: 4vw;
    margin-bottom: 2vw;
    left:17%;
}
#sec03 .inner > .box:nth-child(4){
    padding-bottom: 8vw;
}
#sec03 .inner > .box:nth-child(5){
    padding-bottom: 4vw;
    left:10%;
}
#sec03 .inner > .box:nth-child(2):before{
    background: url(../images/deco14.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 7%;
    height: 5vw;
    top: 86%;
    left: 7%;
}
#sec03 .inner > .box:nth-child(2):after{
    background: url(../images/deco13.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 16%;
    height: 8vw;
    bottom: 8vw;
    right: 10%;
}
#sec03 .inner > .box:nth-child(3):after{
    background: url(../images/deco11.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 4%;
    height: 5vw;
    top: 86%;
    right: 55%;
}
#sec03 .inner > .box:nth-child(4):before{
    background: url(../images/deco09.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 7%;
    height: 8vw;
    top: 80%;
    right: 20%;
}
#sec03 .inner > .box:nth-child(5):after{
    background: url(../images/deco11.png) no-repeat 0 0 /100%;
    content: "";
    display: block;
    position: absolute;
    width: 4%;
    height: 5vw;
    top: 80%;
    left: auto;
    right: 50%;
}
#sec03 .inner .box:nth-child(2) h3 img:last-child{
    top:5%;
    left: 24%;
}
#sec03 .inner .box:nth-child(3) h3 img:last-child{
    top:0%;
    left: 25%;
}
#sec03 .inner .box:nth-child(4) h3 img:last-child{
    top:-4%;
    left: 26%;
}
#sec03 .inner .box:nth-child(5) h3 img:last-child{
    top:7%;
    left: 34%;
}
#sec03 .inner .box:nth-child(2) .txt{
    left: 45%;
    top:33%;
}
#sec03 .inner .box:nth-child(3) .txt{
    left: 43%;
    top:28%;
}
#sec03 .inner .box:nth-child(4) .txt{
    left: 44%;
    top:25%;
}
#sec03 .inner .box:nth-child(5) .txt{
    left: auto;
    right: 12%;
    top:45%;
}
#sec03 .inner .box:nth-child(3) .txt p{
    margin-bottom: 1.5vw;
}
#sec03 .inner .box:nth-child(2) .txt .box{
    width: 32%;
}

#sec03 .inner .txt p.btn{
    width: 56%;
    max-width: 217px;
    height: 3.5vw;
}
#sec03 .inner .txt p.btn a{
    color: #fff;
    padding: 6% 0 0;
    font-size: 1.1rem;
    display: block;
    text-align: center;
    background: url(../images/sec_btn_bg_l.png) no-repeat 0 0 / 100%;
    height: 3.5vw;
    letter-spacing: 1px;
    line-height: 1;
}
#sec03 .inner .box:nth-child(4) .txt .box{
    width: 45%;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    #sec03{
        padding-left: 4vw;
        padding-bottom: calc(14px + 20px); 
    }
    #sec03 .inner > .box:nth-child(3){
        left: 12%;
        padding-bottom: 6vw;
    }
    #sec03 .inner .box:nth-child(3) .txt{
        left: 46%;
        width: 44%;
        top:25%;
    }
    #sec03 .inner .box:nth-child(3) .txt p.btn{
        width: 70%;
    }
    #sec03 .inner .box:nth-child(3) .txt p.btn a{
        height: 5vw;
    }
    #sec03 .inner .box:nth-child(4) .txt{
        top:20%;
    }
    #sec03 .inner > .box:nth-child(5){
        left: 6%;
    }
    #sec03 .inner .box:nth-child(5) .txt{
        width: 50%;
        right: 2%;
        top:30%;
    }
}

@media screen and (min-width: 1700px) {
    #sec03 .inner .box:nth-child(5) .txt{
        right: 10%;
    }
}

@media screen and (max-width: 880px) {
    #sec03 .inner > .box:nth-child(3){
        margin-bottom: 10vw;
    }
}

@media screen and (max-width: 767px) {
    #sec03{
        padding-left:4vw;
        padding-bottom: calc(14px + 20px);
    }
    #sec03 .inner > .box:nth-child(2){
        padding-bottom: 14vw;
    }
    #sec03 .inner > .box:nth-child(4){
        padding-bottom: 10vw;
        margin-bottom: 2vw;
    }
    #sec03 .inner > .box:nth-child(5){
        margin-bottom: 10vw;
    }
    #sec03 .inner > .box:nth-child(2)::before,
    #sec03 .inner > .box:nth-child(4)::before {
        width: 12%;
        height: 13vw;
        top:90%;
    }
    #sec03 .inner > .box:nth-child(2)::after {
        width: 22%;
        height: 13vw;
        bottom: 20vw;
    }
    #sec03 .inner > .box:nth-child(3)::after,
    #sec03 .inner > .box:nth-child(5)::after{
        width: 10%;
        height: 12vw;
        top:96%;
        right: 15%;
    }
    #sec03 .inner .box:nth-child(2) .txt .box{
        width: 40% !important;
    }
    #sec03 .inner .box:nth-child(4) .txt .box{
        width: 60% !important;
    }
    #sec03 .inner .txt p.btn{
        width: 70%;
        height: 10vw;
    }
    #sec03 .inner .box:nth-child(2) h3 img:last-child{
        right: 0;
        left: auto;
        bottom: -6%;
    }
    #sec03 .inner .box:nth-child(2) h3{
        margin-bottom: 5vw;
    }
    #sec03 .inner .box:nth-child(4) h3 img:last-child{
        right:0;
        left: auto;
    }
    #sec03 .inner .box:nth-child(5) h3 img:last-child{
        right:-40%;
        left: auto;
    }
    #sec03 .inner .txt p.btn a{
        height:11vw;
    }
}


/* ------------------------------
    footer
------------------------------ */
footer{
	width: 100%;
	position: absolute;
	z-index: 0;
	overflow: hidden;
    background: url(../images/footer_bg.png) no-repeat 0 0 / cover;
    height:40vw;
    bottom:0;
}
footer figure{
    bottom: -25vw;
    position: relative;
    left: auto;
    right: auto;
}


@media screen and (max-width: 767px) {
    footer figure{
        bottom: -22vw;
    }
    footer figure img{
        width: 25%;
    }
}




/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */