@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: robot;
    src: url(../fs/RobotoMono-ExtraLight.ttf);
}

@font-face {
    font-family: noto;
    src: url(../fs/Noto_Sans_JP/static/NotoSansJP-Regular.ttf);
}

h1 {
    font-size: 2.5vw;
    text-shadow: 1px 1px 2px;
}

h2 {
    letter-spacing: .1em;
    font-size: 6vw;
    font-family: robot;
    color: #202020;
}

h3 {
    letter-spacing: .15em;
    font-size: 3.3vw;
    font-family: noto;
    color: rgb(91, 102, 84);
}

p {
    font-size: 3.3vw;
    line-height: 1.6;
    font-family: noto;
    color: rgb(91, 102, 84);
}

a {
    line-height: 1.6;
    letter-spacing: .1em;
    text-decoration: none;
    text-align: center;
    font-family: noto;
    color: rgb(91, 102, 84);
}

ul {
    list-style-type: none;
}

li {
    font-family: noto;
    text-align: center;
    font-size: 1.5vw;
}

html {
    scroll-behavior: smooth;
}
/* ヘッダーここから */
header:nth-of-type(1) {
    display: none;
}

header {
    display: flex;
    width: 100%;
    height: 41.5vw;
    padding-top: 2vw;
    background-image: url(../images/top3-2\(800\)sora.png);
    background-size: contain;
    background-repeat: no-repeat;
}
/* アニメーションここから */
.header-anime1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 42.5vw;
    background-image: url(../images/top3-2\(800\).png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 100;
}
/* 雲 */
.header-anime2 {
    position: absolute;
    top: 10vw;
    width: 100%;
    overflow: hidden;
    z-index: 10;
}

.header-cloud {
    display: flex;
    width: 100%;
    margin-left: -180vw;
    animation: move 200s linear infinite;
}

.header-cloud img {
    width: 100%;
    vertical-align: bottom;
}

@keyframes move {
    100% {
        margin-left: 100%;
    }
}

/* 飛行機 */
.header-anime3 {
    position: absolute;
    width: 100%;
    height: 40vw;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    z-index: 9;
}

.header-airplane {
    width: 105%;
    margin-left: auto;
    margin-right: auto;
    animation: move2 20s linear infinite;
}

.header-airplane img {
    width: 8%;
    vertical-align: bottom;
}

@keyframes move2 {
    0% {
        margin-top: 25vw;
        margin-left: 110vw;
    }
    100% {
        margin-left: -130vw;
    }
}
/* アニメーションここまで */
header .h1-box {
    width: 70%;
    margin-top: 1vw;
    margin-left: 7%;
    margin-right: auto;
    z-index: 100;
}

.header-logo {
    width: 100%;
}

.header-logo img {
    width: 100%;
    vertical-align: bottom;
}

nav.NavMenu{
	position: fixed; /*表示位置を固定*/
	z-index: 10000; /*重ね順を変更*/
	top: 0; /*表示位置を指定*/
	left: 0; /*表示位置を指定*/
	background: #fff;/*背景を白にする*/
	color: #000; /*文字色を黒にする*/
	text-align: center; /*テキストを中央揃え*/
	width: 30%; /*全幅表示*/
    margin-left: 70%;
    border-top: 1px dotted black;
    border-left: 1px dotted black;
    opacity: .8;
	transform: translateY(-100%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
	transition: all 0.6s; /*アニメーションの時間を指定*/
}

nav.NavMenu ul{
	background: #ccc; /*背景をグレーにする*/
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

header:nth-of-type(2) nav.NavMenu ul li{
	font-size: 1.1em;
	list-style-type: none;
	padding: 0;
	width: 100%;
	border-bottom: 1px dotted #333;
}

nav.NavMenu ul li:last-child{
	padding-bottom: 0;
	border-bottom: none; /*最後のメニュー項目のみ下線を消す*/
}

nav.NavMenu ul li a{
	display: block; /*クリックできる領域を広げる*/
	color: #000;
	padding: 1em 0;
}


/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active{
	transform: translateY(0%);/*上から出したい場合は、transform: translateYを使う。*/
}


/*トグルボタンのスタイルを指定*/
.Toggle {
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 13px;
	width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 30000;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
	display: block;
	position: absolute;
	width: 30px;
	border-bottom: solid 3px #000;
	transition: .35s ease-in-out;/*変化の速度を指定*/
	left: 6px;
}

.Toggle span:nth-child(1) {
	top: 9px;
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

header nav div h1 a:nth-of-type(1) {
    display: none;
}
/* ヘッダーここまで */

/* 横スクロールここから */
.scroll-box {
    width: 100%;
    margin-top: .2vw;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.scroll-box .A-1 {
    display: flex;
    width: 1300%;
    animation: move 60s linear infinite;
}

@keyframes move {
    0% {
        margin-left: 0vw;
    }
    100% {
        margin-left: -300vw;
    }
}

.scroll-box .A-1 a {
    width: 100%;
    margin-left: 2vw;
}

.scroll-box .A-1 a img {
    width: 100%;
    margin-right: 5vw;
    margin-left: 5vw;
    vertical-align: bottom;
}
/* 横スクロールここまで */

/* NEWSここから */
section:nth-of-type(1) {
    width: 100%;
    background-color: #F5F2ED;
}

.news-box {
    width: 100%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
    padding-top: 5vw;
    padding-bottom: 5vw;
}

.news-box .news-title {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
    text-align: center;
}

.news-box .news-title img {
    width: 100%;
    vertical-align: bottom;
}

.news-article {
    width: 95%;
    margin-top: 2.5vw;
    margin-left: auto;
    margin-right: auto;
}

.news-article .article1 {
    display: flex;
    margin-top: 1vw;
}

.news-article .article1 .article1-1 {
    margin-right: 2%;
    border-bottom: 1px solid #7D826A;
    padding-left: 1vw;
    padding-right: 1vw;
}

.news-article .article1 .article1-1 p {
    font-size: 2.8vw;
}

.news-article .article1 .article1-2 {
    height: 3.5vw;
    margin-top: .9vw;
    margin-right: 1vw;
    padding-top: .1vw;
    padding-left: .7vw;
    padding-right: .5vw;
    padding-bottom: .3vw;
    border-radius: 4px;
    background-color: rgb(193, 212, 136);
}

.news-article .article1 .article1-2 p {
    line-height: 1.3;
    font-size: 2.8vw;
    color: white;
    text-decoration: none;
}

.news-article .article1 .article1-3 {
    display: block;
    width: 73%;
    border-bottom: 1px solid #7D826A;
    padding-left: 1vw;
    padding-right: 1vw;
    text-align: left;
}

.news-article .article1 .article1-3 p {
    font-size: 2.8vw;
}

.news-all {
    width: fit-content;
    margin-top: 7vw;
    margin-left: auto;
    margin-right: auto;
    padding: .5vw 1.8vw;
    border-radius: 15px;
    background-color: rgb(249, 192, 86);
}

.news-all a {
    font-size: 3.3vw;
    letter-spacing: .1em;
    color: white;
}
/* NEWSここまで */

/* ABOUTここから */
.about-box {
    position: relative;
    width: 100%;
    height: 75vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5vw;
    padding-bottom: 30vw;
}

.about-box .about-article {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.about-box .about-article .about-article-img {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
}

.about-box .about-article img {
    width: 100%;
    vertical-align: bottom;
}

.about-box .about-article p {
    margin-top: 5vw;
    letter-spacing: .05em;
    text-align: center;
}
/* top */
.about-top {
    position: absolute;
    top: 35vw;
    left: 30vw;
    width: 43%;
}

.about-top-img {
    position: relative;
    width: 90%;
}

.about-top-img img {
    width: 100%;
    vertical-align: bottom;
}

.about-top-img-p {
    position: absolute;
    top: 9vw;
    left: 6vw;
    width: 80%;
}

.about-top-img-p h3 {
    text-align: center;
    margin-bottom: 2vw;
    font-size: 3vw;
}

.about-top-img-p p {
    text-align: center;
}
/* left */
.about-left {
    position: absolute;
    top: 69vw;
    left: 12vw;
    width: 43%;
}

.about-left-img {
    position: relative;
    width: 90%;
}

.about-left-img img {
    width: 100%;
    vertical-align: bottom;
}

.about-left-img-p {
    position: absolute;
    top: 8vw;
    left: 1.3vw;
    width: 80%;
}

.about-left-img-p h3 {
    text-align: center;
    margin-bottom: 2vw;
    font-size: 3vw;
}

.about-left-img-p p {
    text-align: center;
}
/* right */
.about-right {
    position: absolute;
    top: 65vw;
    left: 50vw;
    width: 43%;
}

.about-right-img {
    position: relative;
    width: 93%;
}

.about-right-img img {
    width: 100%;
    vertical-align: bottom;
}

.about-right-img-p {
    position: absolute;
    top: 15vw;
    left: 3vw;
    width: 80%;
}

.about-right-img-p h3 {
    text-align: center;
    margin-bottom: 2vw;
    font-size: 3vw;
}

.about-right-img-p p {
    text-align: center;
}
/* ABOUTここまで */

/* SERVICEここから */
.service-box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10vw;
}

.service-box .service-box-title {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
}

.service-box .service-box-title img {
    width: 100%;
    vertical-align: bottom;
}

.service-box .service-box-article {
    display: none;
}

.service-box .service-box-article-smart {
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
}

.service-box .service-box-article-smart p {
    text-align: center;
    color: rgb(91, 102, 84);
}
/* HP作成ここから */
.service-pc-tablet {
    display: none;
}

.service-smart {
    position: relative;
    width: 100%;
    height: 350vw;
}

.service-smart .service-hpbox {
    position: absolute;
    top: 4vw;
    left: 4vw;
    width: 92%;
    height: 335vw;
    background-color: rgb(193, 212, 136);
}

.service-smart .service-hpbox-shadow {
    position: absolute;
    top: 0;
    right: 0;
    width: 92%;
    height: 335vw;
    margin-left: auto;
    border: 4px solid white;
    background-color: #F5F2ED;
}
/* 左 */
.service-hp {
    width: 70%;
    margin-top: 3vw;
    margin-left: auto;
    margin-right: auto;
}

.service-hp .service-img {
    width: 100%;
}

.service-hp .service-img img {
    width: 100%;
    border: 2px solid #7D826A;
    border-radius: 1.5vw;
    vertical-align: bottom;
}

.service-hp .service-p {
    width: fit-content;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
    padding: .5vw;
    background-color: white;
}

.service-hp .service-p p {
    text-align: center;
}
/* 右 */
.service-hp2 {
    width: 90%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right:auto;
}

.service-website {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3vw;
}

.service-website img {
    width: 100%;
    vertical-align: bottom;
}

.service-hp2 p {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5vw;
}

.service-kinds {
    display: flex;
    width: 95%;
    margin-top: 1vw;
    margin-left: auto;
    margin-right: auto;
}

.service-kinds .service-kinds-item1 {
    width: 20%;
    height: 4.3vw;
    margin-left: 5%;
    margin-right: 3%;
    border: 2px solid white;
    background-color: rgb(193, 212, 136);
}

.service-kinds .service-kinds-item2 {
    width: 25%;
    height: 4.3vw;
    margin-right: 3%;
    border: 2px solid white;
    background-color: rgb(193, 212, 136);
}
.service-kinds .service-kinds-item3 {
    width: 38%;
    height: 4.3vw;
    margin-right: 3%;
    border: 2px solid white;
    background-color: rgb(193, 212, 136);
}

.service-kinds p {
    text-align: center;
    font-size: 2.5vw;
}
/* plan */
.plan-box {
    position: absolute;
    top: 105vw;
    left: 10vw;
    width: 88%;
    height: 172vw;
    margin-top: 2vw;
}

.plan-messe {
    width: 98%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
}

.plan-messe-img {
    width: 28%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
}

.plan-messe-img img {
    width: 100%;
    vertical-align: bottom;
}

.plan-messe-child {
    width: 67%;
    margin-top: 2.5vw;
    margin-left: auto;
    margin-right: auto;
}

.plan-child2 {
    width: 100%;
    height: 24vw;
}

.plan-child2-left {
    width: 78%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    padding: 5vw 2vw;
    border-radius: 5px;
    background-color: white;
}

.plan-child2-center {
    width: 78%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    padding: 5vw 2vw;
    border-radius: 5px;
    background-color: white;
}

.plan-child2-right {
    width: 78%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    padding: 5vw 2vw;
    border-radius: 5px;
    background-color: white;
}

.plan-child2-title1 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: .3vw;
    padding-bottom: .3vw;
    border-radius: 10px;
    background-color: #faedba;
}

.plan-child2-title2 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding-top: .3vw;
    padding-bottom: .3vw;
    border-radius: 10px;
    background-color: #fae695;
}
.plan-child2-title3 {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
    padding-top: .3vw;
    padding-bottom: .3vw;
    border-radius: 10px;
    background-color: #ffe062;
}

.plan-child2-title1 p {
    text-align: center;
    font-size: 4vw;
}

.plan-child2-title2 p {
    text-align: center;
    font-size: 4vw;
}

.plan-child2-title3 p {
    text-align: center;
    font-size: 4vw;
}

.plan-child2-title-sub {
    margin-top: 4vw;
    margin-bottom: 4vw;
}

.plan-child2-title-sub p {
    text-align: center;
    font-size: 3.3vw;
}

.plan-child2-list {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 20vw;
    border-radius: 5px;
    background-color: #F5F2ED;
}

.plan-child2-right .plan-child2-list {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 20vw;
    border-radius: 5px;
}

.plan-child2-list p {
    padding-top: 1vw;
    padding-left: 1vw;
    font-size: 3.3vw;
}
/* HP作成ここまで */
/* 動画作成ここから */
.service-pc-tablet2 {
    display: none;
}

.service-smart2 {
    position: relative;
    width: 100%;
    height: 350vw;
}

.service-smart2 .service-hpbox {
    position: absolute;
    top: 4vw;
    right: 4vw;
    width: 92%;
    height: 335vw;
    background-color: rgb(253, 225, 152);
}

.service-smart2 .service-hpbox-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 92%;
    height: 335vw;
    margin-left: auto;
    border: 4px solid white;
    background-color: #F5F2ED;
}
/* 左 */
.service-hp4 {
    width: 70%;
    margin-top: 3vw;
    margin-left: auto;
    margin-right: auto;
}

.service-hp4 .service-img {
    width: 100%;
}

.service-hp4 .service-img img {
    width: 100%;
    border: 2px solid #7D826A;
    border-radius: 1.5vw;
    vertical-align: bottom;
}

.service-hp4 .service-p {
    width: fit-content;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
    padding: .5vw;
    background-color: white;
}

.service-hp4 .service-p p {
    text-align: center;
}
/* 右 */
.service-hp3 {
    width: 90%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right:auto;
}

.service-movie {
    width: 58%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3vw;
}

.service-movie img {
    width: 100%;
    vertical-align: bottom;
}

.service-hp3 p {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5vw;
}

.service-kinds2 {
    display: flex;
    width: 95%;
    margin-top: 1vw;
    margin-left: auto;
    margin-right: auto;
}

.service-kinds2 .service-kinds-item1 {
    width: 20%;
    height: 4.3vw;
    margin-left: 5%;
    margin-right: 3%;
    border: 2px solid white;
    background-color: rgb(253, 225, 152);
}

.service-kinds2 .service-kinds-item2 {
    width: 25%;
    height: 4.3vw;
    margin-right: 3%;
    border: 2px solid white;
    background-color: rgb(253, 225, 152);
}
.service-kinds2 .service-kinds-item3 {
    width: 38%;
    height: 4.3vw;
    margin-right: 3%;
    border: 2px solid white;
    background-color: rgb(253, 225, 152);
}

.service-kinds2 p {
    text-align: center;
    font-size: 2.5vw;
}
/* plan */
.plan-box2 {
    position: absolute;
    top: 105vw;
    right: 10vw;
    width: 88%;
    height: 172vw;
    margin-top: 2vw;
}

.plan-messe {
    width: 98%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
}

.plan-messe-img {
    width: 28%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
}

.plan-messe-img img {
    width: 100%;
    vertical-align: bottom;
}

.plan-messe-child {
    width: 67%;
    margin-top: 2.5vw;
    margin-left: auto;
    margin-right: auto;
}

.plan-child2 {
    width: 100%;
    height: 24vw;
}

.plan-child2-left {
    width: 78%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    padding: 5vw 2vw;
    border-radius: 5px;
    background-color: white;
}

.plan-child2-center {
    width: 78%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    padding: 5vw 2vw;
    border-radius: 5px;
    background-color: white;
}

.plan-child2-right {
    width: 78%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    padding: 5vw 2vw;
    border-radius: 5px;
    background-color: white;
}

.plan-child2-title4 {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: .3vw;
    padding-bottom: .3vw;
    border-radius: 10px;
    background-color: #faedba;
}

.plan-child2-title5 {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding-top: .3vw;
    padding-bottom: .3vw;
    border-radius: 10px;
    background-color: #fae695;
}
.plan-child2-title6 {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
    padding-top: .3vw;
    padding-bottom: .3vw;
    border-radius: 10px;
    background-color: #ffe062;
}

.plan-child2-title4 p {
    text-align: center;
    font-size: 4vw;
}

.plan-child2-title5 p {
    text-align: center;
    font-size: 4vw;
}

.plan-child2-title6 p {
    text-align: center;
    font-size: 4vw;
}

.plan-child2-title-sub {
    margin-top: 4vw;
    margin-bottom: 4vw;
}

.plan-child2-title-sub p {
    text-align: center;
    font-size: 3.3vw;
}

.plan-child2-list {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 20vw;
    border-radius: 5px;
    background-color: #F5F2ED;
}

.plan-child2-right .plan-child2-list {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 20vw;
    border-radius: 5px;
}

.plan-child2-list p {
    padding-top: 1vw;
    padding-left: 1vw;
    font-size: 3.3vw;
}
/* 動画作成ここまで */
/* プッシュボタン */
.plan-push1 {
    width: 50%;
    margin-top: 146vw;
    margin-left: auto;
    margin-right: auto;
}

.plan-push1 p {
    text-align: center;
}

.plan-push2 {
    width: 15vw;
    height: 15vw;
    border: 2px solid white;
    border-radius: 50%;
    margin-top: 3vw;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(249, 192, 86);
}

.plan-push2 p {
    text-align: center;
    line-height: 14vw;
    color: white;
}
/* SERVICEここまで */

/* Flowここから */
.flow-box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5vw;
}

.flow-box .flow-box-title {
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
}

.flow-box .flow-box-title img {
    width: 100%;
    vertical-align: bottom;
}

.flow-box .flow-box-article {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
}

.flow-box .flow-box-article p {
    text-align: center;
    color: rgb(91, 102, 84);
}
/* flowの流れ */
.flow-flow {
    display: none;
}

.flow-flow-smart {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.flow-grand {
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #7D826A;
    border-radius: 10px;
    background-color: #F5F2ED;
}

.flow-grand-flex {
    width: 30%;
    margin-top: 1vw;
}

.flow-grand-step {
    width: 80%;
    height: 6.5vw;
    margin-top: 1vw;
    margin-left: 10%;
    margin-right: auto;
    margin-bottom: .5vw;
    border-radius: 50%;
    background-color: white;
}

.flow-grand-step2 {
    width: 80%;
    height: 6.5vw;
    margin-top: 1vw;
    margin-left: 10%;
    margin-right: auto;
    margin-bottom: .5vw;
    border-radius: 50%;
    background-color: white;
}

.flow-grand-step p {
    text-align: center;
    line-height: 1.8;
    font-size: 3.5vw;
}

.flow-grand-step2 p {
    text-align: center;
    font-size: 3.5vw;
}

.flow-grand-title {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    padding-top: 1vw;
}

.flow-grand-title p {
    text-align: center;
}

.flow-block1 {
    text-align: center;
    line-height: 1;
    font-size: 3vw;
}

.flow-block2 {
    margin-bottom: 1vw;
    text-align: center;
    line-height: 1.5;
    font-size: 3vw;
}

.flow-grand-article1 {
    width: 70%;
    margin: 1vw;
    padding: 1vw;
    border: 1px solid white;
    border-radius: 10px;
    background-color: rgb(197, 210, 195);
}

.flow-grand-article2 {
    width: 70%;
    margin: 1vw;
    padding: 1vw;
    border: 1px solid white;
    border-radius: 10px;
    background-color: rgb(210, 222, 155);
}

.flow-grand-article3 {
    width: 70%;
    margin: 1vw;
    padding: 1vw;
    border: 1px solid white;
    border-radius: 10px;
    background-color: rgb(224, 231, 223);
}

.flow-grand-article1 p {
    padding: .8vw;
    font-size: 3vw;
}

.flow-grand-article2 p {
    padding: .8vw;
    font-size: 3vw;
}

.flow-grand-article3 p {
    padding: .8vw;
    font-size: 3vw;
}
/* 矢印 */
.flow-yajirushi {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.flow-yajirushi p {
    font-size: 5vw;
    color: rgb(249, 192, 86);
}
/* flowの流れ下の文章 */
.flow-box-article2 {
    width: 80%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
}

.flow-box-article2 p {
    text-align: center;
}
/* Flowここまで */

/* CONTACTここから */
section:nth-of-type(5) {
    width: 100%;
    background-color: #F5F2ED;
}

.contact-box {
    width: 100%;
    padding-top: 5vw;
    padding-bottom: 1vw;
    margin-left: auto;
    margin-right: auto;
}

.contact-img1 {
    width: 35%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
}

.contact-img1 img {
    width: 100%;
    vertical-align: bottom;
}

.contact-box .contact-center {
    width: 53%;
    margin-left: auto;
    margin-right: auto;
}

.contact-box .contact-center p {
    letter-spacing: .1em;
    text-align: center;
}

.contact-box .contact-center .contact-center-a {
    width: 35%;
    margin-top: 4vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
    border: 2px solid white;
    border-radius: 20px;
    background-color: rgb(249, 192, 86);
    transition: .5s;
}

.contact-box .contact-center .contact-center-a a {
    display: block;
    padding: 1vw;
    letter-spacing: .1em;
    text-align: center;
    font-size: 3vw;
    color: white;
}
/* CONTACTここまで */

/* FAQ求人情報ここから */
.faq-box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.faq-box .faq-left {
    width: 80%;
    margin-top: 10vw;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #7D826A;
    border-radius: 15px;
    background-color: #F5F2ED;
}

.faq-box .faq-right {
    width: 80%;
    margin-top: 10vw;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #7D826A;
    border-radius: 15px;
    background-color: #F5F2ED;
}

.faq-image1 {
    width: 30%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
}

.faq-image2 {
    width: 43%;
    margin-top: 2.4vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.1vw;
}

.faq-image1 img {
    width: 100%;
    vertical-align: bottom;
}

.faq-image2 img {
    width: 100%;
    vertical-align: bottom;
}

.faq-messe {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 1vw;
    border-radius: 5px;
    background-color: white;
}

.faq-a {
    width: 50%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
    border: 2px solid white;
    border-radius: 20px;
    background-color: rgb(249, 192, 86);
    transition: .5s;
}

.faq-a a {
    display: block;
    padding: 1vw;
    letter-spacing: .1em;
    text-align: center;
    font-size: 3vw;
    color: white;
} 

.faq-bottom {
    width: 80%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
}

.faq-bottom p {
    text-align: center;
    letter-spacing: .15em;
    font-size: 3.3vw;
}
/* FAQ求人情報ここまで */

/* フッターここから */
footer:nth-of-type(1) {
    display: none;
}

footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #F5F2ED;
}

footer .footer-box1 {
    display: flex;
    width: 100%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5vw;
}

footer .footer-box1 .footer-imgbox {
    width: 55%;
    margin-left: 12%;
    margin-right: 5%;
}

footer .footer-imgbox img {
    width: 100%;
    vertical-align: bottom;
}

/* ソーシャルアイコンここから */
.social-box {
    display: flex;
    width: 20%;
    margin-left: 2%;
    margin-right: auto;
}

.social-box a:nth-of-type(1) {
    width: 40%;
}

.social-box a:nth-of-type(2) {
    width: 58%;
    margin-top: -1.7vw;
}

.social-box a img {
    width: 100%;
    vertical-align: bottom;
}
/* ソーシャルアイコンここまで */
.footer-privacy {
    display: flex;
    width: 60%;
    margin-top: 2vw;
    margin-left: 22%;
    margin-right: auto;
    margin-bottom: 3vw;
}

.footer-libox {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.footer-libox li {
    list-style-type: none;
}

.footer-libox li a {
    font-size: 3vw;
}

footer p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1vw;
    text-align: center;
}
/* フッターここまで */