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

@font-face {
    font-family: kosugi;
    src: url(../fs/KosugiMaru-Regular.ttf);
}

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

h2 {
    letter-spacing: -.25em;
    font-size: 6vw;
    font-family: kosugi;
    color: #7B4E4B;
}

h3 {
    letter-spacing: .15em;
    font-size: 4.2vw;
    font-family: kosugi;
    color: #7B4E4B;
}

h4 {
    letter-spacing: .15em;
    font-size: 4.2vw;
    font-family: kosugi;
    color: #7B4E4B;
}

p {
    letter-spacing: .1em;
    font-size: 4vw;
    line-height: 1.3;
    font-family: kosugi;
    color: #7B4E4B;
}

a {
    line-height: 1.6;
    text-decoration: none;
    text-align: center;
    color: rgb(91, 102, 84);
}

ul {
    list-style-type: none;
}

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

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

header {
    display: flex;
    width: 100%;
    background-color: #EBEBDC;
}

header .h1-box {
    width: 100%;
    margin-top: 2vw;
    margin-bottom: 2vw;
}

header .h1-box h1 {
    width: 60%;
    margin-left: 5%;
    margin-right: 35%;
}

header .h1-box h1 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: 100%; /*全幅表示*/
    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: #FFED97; /*背景をグレーにする*/
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

header:nth-of-type(2) nav.NavMenu ul li{
	font-size: 1.3em;
	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: .5em 0;
    letter-spacing: .05em;
}


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


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

.Toggle-img {
	position: fixed;    /* bodyに対しての絶対位置指定 */
	right: 11px;
	top: 11px;
	width: 100px;
	z-index: 3000;/*ボタンを一番上にしている(押せなくなるから)*/
}

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

.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;
}
/* ヘッダーここまで */

/* 真下のここから ----------------------------------------------------------*/
.link-box {
    position: fixed;
    bottom: 2vw;
    display: flex;
    width: 95%;
    margin-left: 2.5%;
    margin-right: 2.5%;
    z-index: 10000000;
    opacity: .9;
}

.link-box1 {
    width: 49%;
    margin-right: 2%;
    border: 3px solid #F7F7F7;
    border-radius: 10px;
    box-shadow: 1px 1px .5px gray;
    background-color: #FFED97;
}

.link-box1 p {
    padding-top: 3.1vw;
    padding-bottom: 3vw;
    text-align: center;
    color: #59BC7B;
    font-size: 3.9vw;
}

.link-box2 {
    width: 49%;
    border: 3px solid #F7F7F7;
    border-radius: 10px;
    box-shadow: 1px 1px .5px gray;
    background-color: #FFED97;
}

.link-box2 p {
    padding-top: 3.1vw;
    padding-bottom: 3vw;
    text-align: center;
    color: #59BC7B;
    font-size: 3.9vw;
}
/* 真下のここまで */

/* top画像ここから */
.top-img-smart {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

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

.top-img {
    display: none;
}
/* top画像ここまで */

main {
    background-color: #EBEBDC;
    padding-bottom: 10vw;
}


/* このサイトは何？ここから */
section:nth-of-type(1) {
    background-color: #EBEBDC;
}

.merit-box {
    display: none;
}

.merit-box-smart {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 22vw;
    padding-bottom: 16vw;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.merit-box-h2 {
    position: relative;
    width: 36%;
    height: 4vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10vw;
    border-radius: 15px;
    background-color: #FFE37C;
}

.merit-box-h2 h2 {
    position: absolute;
    top: -3vw;
    width: fit-content;
    text-align: center;
}

.merit-box-h3 {
    width: 100%;
    margin-bottom: 10vw;
}

.merit-box-h3 h3 {
    text-align: center;
}

.merit-box-mess {
    width: 100%;
    margin-top: 8vw;
}

.merit-box-mess h4 {
    width: 100%;
    margin-bottom: 3vw;
    text-align: center;
}

.merit-box-mess p {
    text-align: center;
}
/* このサイトは何？ここまで */

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

.news-box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 22vw;
    padding-bottom: 16vw;
    box-shadow: 2px 2px 4px gray;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.news-box .news-title {
    position: relative;
    width: 59%;
    height: 4vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10vw;
    border-radius: 15px;
    background-color: #FFF5C8;
}

.news-box .news-title h2 {
    position: absolute;
    top: -3vw;
    width: fit-content;
    text-align: center;
}

.news-article {
    width: 90%;
    margin-top: 1.5vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6vw;
}

.news-article .article1 {
    display: flex;
    width: 58%;
    margin-top: 1vw;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 2px dashed #FFF5C8;
}

.news-article .article1 .article1-1 {
    width: fit-content;
    margin-top: .3vw;
    margin-left: auto;
    margin-bottom: .5vw;
    padding-left: 1vw;
    padding-right: 1vw;
}

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

.news-article .article1 .article1-2 {
    width: 32%;
    height: 4.5vw;
    margin-top: .2vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vw;
    padding-top: .5vw;
    padding-left: 3vw;
    padding-right: 3vw;
    padding-bottom: .3vw;
    border-radius: 4px;
    background-color: #EBE562;
}

.news-article .article1 .article1-2 p {
    font-size: 3.5vw;
    line-height: 1.2;
    color: #7B4E4B;
    text-align: center;
}

/* アコーディオンここから */
.qa-2 {
  width: 95%;
  margin: 0 auto 1em;
  margin-bottom: 5vw;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.qa-2 summary {
  display: flex;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: .5em 1em 0.2em .8em;
  border-bottom: 2px solid #F7F7F7;
  color: #7B4E4B;
  font-weight: 500;
  font-size: 4vw;
  font-family: kosugi;
  cursor: pointer;
}

.qa-2 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 1.5vw;
  height: 1.5vw;
  margin-left: 10px;
  border-bottom: 3px solid #7B4E4B;
  border-right: 3px solid #7B4E4B;
  content: '';
  transition: transform .5s;
}

.qa-2[open] summary::after {
  transform: rotate(225deg);
}

.qa-2 p {
  position: relative;
  width: 90%;
  transform: translateY(-10px);
  opacity: 0;
  margin-left: auto;
  margin-right: auto;
  padding: .5em 1em 1.5em;
  font-size: 4vw;
  color: #7B4E4B;
  letter-spacing: normal;
  transition: transform .5s, opacity .5s;
}

.qa-2[open] p {
  transform: none;
  opacity: 1;
}

.qa-2 p::before {
  color: #ff8d8d;
  line-height: 1.2;
  content: "";
}
/* アコーディオンここまで */
/* NEWSここまで */

/* ABOUTここから */
section:nth-of-type(3) {
    width: 100%;
    padding-top: 15vw;
    padding-bottom: 1vw;
    background-color: #EBEBDC;
}

.about-box {
    display: none;
}

.about-box-smart {
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15vw;
    background-color: #FFE37C;
    border-radius: 20px;
    box-shadow: 3px 3px 6px gray;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.about-flex {
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.about-img {
    width: 25%;
    margin-top: 3vw;
    margin-left: 5%;
}

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

.about-title {
    position: relative;
    width: 51%;
    height: 4vw;
    margin-top: 13vw;
    margin-left: 5%;
    margin-right: auto;
    border-radius: 15px;
    background-color: #FFF5C8;
}

.about-title h2 {
    position: absolute;
    top: -3vw;
    width: fit-content;
    text-align: center;
}

.aboutbox-child {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.aboutbox-child h3 {
    margin-top: 8vw;
    margin-bottom: 8vw;
    text-align: center;
}

.aboutbox-child p {
    padding-left: 5%;
    text-align: left;
}

.aboutbox-child2 {
    width: 95%;
    margin-top: 15vw;
    margin-right: 5%;
    padding-bottom: 8vw;
}

.aboutbox-child2 p {
    text-align: right;
}
/* ABOUTここまで */

/* sampleここから */
section:nth-of-type(4) {
    display: none;
}

section:nth-of-type(5) {
    width: 100%;
    padding-top: 15vw;
    background-color: #F7F7F7;
}

.sample-title {
    position: relative;
    width: 46%;
    height: 4vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
    border-radius: 15px;
    background-color: #FFE37C;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.sample-title h2 {
    position: absolute;
    top: -3vw;
    width: fit-content;
    text-align: center;
}

.sample-article {
    width: 100%;
    margin-bottom: 15vw;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.sample-article p {
    text-align: center;
}

.sample-box1 {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
    background-color: #59BC7B;
    border: 4px solid #BCAFAF;
    border-radius: 30px;
    box-shadow: 3px 3px 6px gray;
}

.sample-box3 {
    position: relative;
    width: 55%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
    background-color: #59BC7B;
    border: 4px solid #BCAFAF;
    border-radius: 30px;
    box-shadow: 3px 3px 6px gray;
}

.sample-img {
    width: 100%;
}

.sample-img video {
    display: block;
    width: 90%;
    margin-top: 4vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}

.sample-text {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.sample-text h3 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
    text-align: center;
    border-bottom: 4px solid #F7F7F7;
    font-size: 4.4vw;
}

.sample-plan {
    width: 90%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: .7vw;
}

.sample-plan p {
    text-align: center;
    font-size: 3.5vw;
}

.sample-plan2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.sample-plan2 p {
    margin-top: 1vw;
    margin-bottom: 2vw;
    padding-left: 4%;
}

.sample-posi {
    position: absolute;
    top: -2vw;
    left: -4vw;
    width: 100%;
}

.sample-posi p {
    width: fit-content;
    transform: rotate(-15deg);
    font-size: 2vw;
    background: linear-gradient(transparent 40%, #FFE062 70%);
}

.sample-border {
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15vw;
}

.sample-border2 {
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 15vw;
}

.sample-border-child {
    width: 14%;
    margin-right: 3.2%;
    border-bottom: 4px solid #F8C37B;
}

.sample-border-child2 {
    width: 14%;
    border-bottom: 4px solid #F8C37B;
}
/* スライダーここから */
.slide-wrap{
   display:-webkit-box;
   display:-ms-flexbox;
   display: flex;
   overflow-x: scroll;
   -webkit-overflow-scrolling: touch;
   overflow-scrolling: touch;
   scroll-snap-type: x mandatory;
   padding:0 1em 1em;
   margin:0 0 2em 0;
   margin-top: 5vw;
   margin-bottom: 10vw;
   scroll-behavior: smooth;
   opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.slide-wrap2{
   display:-webkit-box;
   display:-ms-flexbox;
   display: flex;
   overflow-x: scroll;
   -webkit-overflow-scrolling: touch;
   overflow-scrolling: touch;
   scroll-snap-type: x mandatory;
   padding:0 1em 1em;
   margin:0 0 2em 0;
   margin-top: 5vw;
   scroll-behavior: smooth;
   opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.slide-wrap .slide-content{
   flex: 0 0 90%;
   margin: 0 10px;
   height: 100vw;
}

.slide-wrap2 .slide-content{
   flex: 0 0 90%;
   margin: 0 10px;
   height: 190vw;
}

@media screen and (max-width: 480px){
.slide-wrap .slide-content {
    flex: 0 0 88%;
    margin: 0px 10px;
    height: 107vw;
    scroll-snap-align:center;
}
}

@media screen and (max-width: 480px) {
.slide-wrap2 .slide-content {
    flex: 0 0 88%;
    margin: 0px 10px;
    height: 196vw;
    scroll-snap-align:center;
}
}
/* スライダーここまで */
/* sampleここまで */

/* Planここから */
section:nth-of-type(6) {
    width: 100%;
    padding-top: 18vw;
    padding-bottom: 1vw;
    background-color: #EBEBDC;
}

.plan-box-smart {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 16vw;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.plan-box-h2 {
    position: relative;
    width: 36%;
    height: 4vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6vw;
    border-radius: 15px;
    background-color: #FFE37C;
}

.plan-box-h2 h2 {
    position: absolute;
    top: -3vw;
    width: fit-content;
    text-align: center;
    text-indent: .85em;
}

.plan-article {
    width: 76%;
    margin-left: 15%;
    margin-right: auto;
}

.plan-article p {
    text-align: left;
}

.plan-set-origin {
    width: 85%;
    margin-top: 8vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 4vw;
    padding-bottom: 12vw;
    border-radius: 20px;
    background-color: #F7F7F7;
}

.plan-set1 {
    width: 80%;
    margin-left: 15%;
    margin-top: 8vw;
    margin-bottom: 2.5vw;
}

.plan-set1 p {
    font-size: 3.5vw;
}

.plan-set1 p::before {
    margin-right: 3%;
    content: "★";
    color: #59BC7B;
    font-size: 4vw;
}

.plan-set2 {
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1vw;
    border-bottom: 2px solid #F8C37B;
}

.plan-set2 p {

}

.plan-set2-a {
    width: 36%;
    margin-right: 1%;
}

.plan-set2-b {
    width: 63%;
}

.plan-set2-b p {
    text-align: right;
}

.plan-material {
    display: none;
}

.plan-material-smart {
    width: 85%;
    margin-top: 8vw;
    margin-left: 10%;
    margin-right: auto;
}

.plan-material-smart p {

}

.plan-contact-link {
    width: 30%;
    margin-top: 10vw;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #7B4E4B;
    border-radius: 30px;
    box-shadow: 2px 2px 4px gray;
    background-color: #F7F7F7;
}

.plan-contact-link p {
    padding-top: 2vw;
    padding-bottom: 2vw;
    text-align: center;
}
/* Planここまで */

/* Flowここから */
section:nth-of-type(7) {
    width: 100%;
    padding-top: 5vw;
    padding-bottom: 15vw;
    background-color: #EBEBDC;
}

.flow-box {
    display: none;
}

.flow-box-smart {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15vw;
    padding-bottom: 10vw;
    border: 2px solid rgb(230, 229, 229);
    border-radius: 20px;
    box-shadow: 2px 2px 4px gray;
    background-color: #FFED97;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.flow-box-smart .flow-title {
    position: relative;
    width: 40%;
    height: 4vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
    border-radius: 15px;
    background-color: #FFF5C8;
}

.flow-box-smart .flow-title h2 {
    position: absolute;
    top: -3vw;
    width: fit-content;
    text-align: center;
    text-indent: 1em;
}

.flow-article {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10vw;
}

.flow-article p {
    text-align: center;
}

.flow-title2 {
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    background-color: #B9E0CB;
}

.flow-title2 p {
    padding-top: 1.1vw;
    padding-bottom: 1vw;
}

.flow-title2 span {
    margin-left: 15%;
}

.flow-article2 {
    width: 75%;
    margin-top: 3vw;
    margin-left: 20%;
    margin-right: auto;
    margin-bottom: 5vw;
}

.flow-article2 p {

}

.flow-doted {
    position: absolute;
    top: 17vw;
    left: 1.7vw;
    width: 100%
}

.flow-doted p {
    writing-mode: vertical-rl;
    color: #F8C37B;
}
/* Flowここまで */

/* FAQここから */
section:nth-of-type(8) {
    width: 100%;
    border-top: 3px solid #E3E3D0;
    border-bottom: 3px solid #E3E3D0;
    box-shadow: 2px 2px 4px gray;
    background-color: #F8C37B;
}

.faq-box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 12vw;
    padding-bottom: 8vw;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.faq-box .faq-title {
    position: relative;
    width: 47%;
    height: 4vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    background-color: #FFF5C8;
}

.faq-box .faq-title h2 {
    position: absolute;
    top: -3vw;
    width: fit-content;
    text-align: center;
}

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

.faq-article p {
    text-align: center;
}

.faq-link {
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #7B4E4B;
    border-radius: 30px;
    box-shadow: 2px 2px 4px gray;
    background-color: #F7F7F7;
}

.faq-link p {
    padding-top: 2vw;
    padding-bottom: 2vw;
    text-align: center;
}
/* FAQここまで */

/* CONTACTここから */
section:nth-of-type(9) {
    width: 100%;
    margin-top: 10vw;
    margin-bottom: 1vw;
    border-top: 3px solid #E3E3D0;
    border-bottom: 3px solid #E3E3D0;
    box-shadow: 2px 2px 4px gray;
    background-color: #F8C37B;
}

.contact-box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 12vw;
    padding-bottom: 8vw;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.contact-box .contact-title {
    position: relative;
    width: 49%;
    height: 4vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    background-color: #FFF5C8;
}

.contact-box .contact-title h2 {
    position: absolute;
    top: -3vw;
    width: fit-content;
    text-align: center;
}

.contact-article {
    width: 90%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 7vw;
}

.contact-article p {
    text-align: center;
}

.contact-link {
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #7B4E4B;
    border-radius: 30px;
    box-shadow: 2px 2px 4px gray;
    background-color: #F7F7F7;
}

.contact-link p {
    padding-top: 2vw;
    padding-bottom: 2vw;
    text-align: center;
}

section:nth-of-type(10) {
    display: none;
}
/* CONTACTここまで */

/* フッターここから */
footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #F7F7F7;
}

.footer-box {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3vw;
}

.footer-imgbox {
    display: flex;
    width: 100%;
}

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

.imgbox1 {
    width: 13%;
    margin-left: 4%;
}

.imgbox2 {
    width: 40%;
    padding-top: 4vw;
}
/* mail */
.footer-address {
    display: flex;
    width: 90%;
    margin-top: 2vw;
    margin-left: 10%;
    align-items: flex-end;
}

.mail-img {
    width: 5%;
    margin-right: 3%;
    padding-bottom: .2vw;
}

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

.mail-address {
    width: 77%;
    padding-top: 1.8vw;
}

.footer-address p {
    text-align: left;
    font-size: 3vw;
}
/* 利用規約・プライバシー */
.footer-link {
    width: 90%;
    margin-top: 3vw;
    margin-left: 10%;
}

.footer-kiyaku {
    width: 50%;
}

.footer-kiyaku a p {
    padding-top: .5vw;
    font-size: 3vw;
    text-align: left;
}

.footer-privacy {
    width: 60%;
}

.footer-privacy a p {
    padding-top: .5vw;
    font-size: 3vw;
    text-align: left;
}
/* ソーシャルアイコンここから */
.social-box {
    position: absolute;
    bottom: 25vw;
    right: 4vw;
    display: flex;
    width: 25%;
    margin-left: 2%;
    margin-right: auto;
}

.social-box a:nth-of-type(1) {
    width: 50%;
    margin-right: 3%;
}

.social-box a:nth-of-type(2) {
    padding-top: 1.4vw;
    width: 39%;
}

.social-box a img {
    width: 100%;
    vertical-align: bottom;
}
/* ソーシャルアイコンここまで */
.footer-copy {
    width: 100%;
    margin-top: 5vw;
    padding-bottom: 15vw;
}

.footer-copy p {
    text-align: center;
}
/* フッターここまで */
.isAnimate {
    opacity: 1;
    transform: translateY(0px);
}

.left-cloud-a {
    display: none;
}

.left-cloud-b {
    display: none;
}

.left-cloud-c {
    display: none;
}

.left-cloud {
    display: none;
}

.right-cloud {
    display: none;
}

.center-raimbow {
    display: none;
}