@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: robot;
    src: url(../fs/NotoSansCanadianAboriginal-Light.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 {
    font-size: 3vw;
    letter-spacing: .1em;
    font-family: robot;
    color: #8f8f8f;
}

h3 {
    font-size: 1.2vw;
    font-family: noto;
    color: #8f8f8f;
    letter-spacing: .1em;
}

h4 {
    font-size: 2vw;
    font-family: noto;
    color: #202020;
}

p {
    font-size: 1.5vw;
    line-height: 1.6;
    font-family: noto;
    color: #5c5c5c;
}

a {
    line-height: 1.6;
    text-decoration: none;
    text-align: center;
    font-family: noto;
    color: #5c5c5c;
}

ul {
    list-style-type: none;
}

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

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

header {
    display: flex;
    width: 100%;
    height: 8vw;
    padding-top: 2.5vw;
}

header .header-imgbox {
    width: 34%;
    margin-left: 6%;
    margin-right: 3%;
    padding-top: .4vw;
}

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

header nav {
    width: 70%;
    margin-left: 4%;
    margin-right: auto;
    padding-top: 2vw;
    padding-bottom: 3vw;
}

header nav ul {
    display: flex;
}

header nav ul li {
    width: fit-content;
    margin-left: 2.5%;
    transition: 1s;
}

header nav ul li:hover {
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: #e7f5f4;
    transition: 1s;
}

header nav ul li a {
    display: block;
    padding-top: .3vw;
    padding-left: 1vw;
    padding-right: .8vw;
    padding-bottom: .3vw;
    line-height: 1.2;
    letter-spacing: .1em;
    font-family: noto;
}

.li-hover {
    position: relative;
}

.li-hover p {
    display: block;
    padding-top: .3vw;
    padding-left: 1vw;
    padding-right: 1vw;
    padding-bottom: .3vw;
    line-height: 1.2;
    letter-spacing: .1em;
    font-family: noto;
}

.li-hover:hover ul {
    height: 70vh;
    transition: 3s;
}

.li-hover ul {
    position: absolute;
    top: 3;
    left: 0;
    height: 0;
    overflow: hidden;
    transition: .5s;
    z-index: 1000;
}

.li-hover ul {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.li-hover ul li {
    width: 96%;
}

.li-hover ul li a {
    margin-top: .5vw;
    padding-left: 0;
    padding-right: 0;
    font-size: 1.2vw;
    background-color: #e7f5f4;
    transition: 1s;
}

.li-hover ul li a:hover {
    background-color: #bffef8;
    transition: 1s;
}
/* ヘッダーここまで */

/* main画像ここから */
/* スライドする要素 */
.slider-container {
    position: relative; /* 親要素を基準に絶対配置する */
    width: 85%;        /* コンテナ幅を100%に */
    height: 40vw;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;   /* はみ出す部分は非表示 */
}

.content {
    position: absolute; /* 重ねて配置 */
    inset: 0;           /* 親要素内にフルサイズ配置 */
    opacity: 0;         /* 初期は非表示 */
    background-size: cover; /* 画像をコンテナ全体に拡大 */
    animation: fadeAnime 20s linear infinite; /* 12秒でループ */
}

/* スライドの表示/非表示タイミング */
@keyframes fadeAnime {
  0%, 40%, 100% {
    opacity: 0; /* 非表示 */
  }
  15%, 25% {
    opacity: 1; /* 表示 */
  }
}

.content:nth-child(1) {
    background-image: url(../images/top1.jpg);
    animation-delay: 0s;
}

.content:nth-child(2) {
    background-image: url(../images/top2.jpg);
    animation-delay: 5s;
}

.content:nth-child(3) {
    background-image: url(../images/top3.jpg);
    animation-delay: 10s;
}

.content:nth-child(4) {
    background-image: url(../images/top4.jpg);
    animation-delay: 15s;
}
/* main画像ここまで */

/* INFOここから */
section:nth-of-type(1) {
    width: 100%;
}

.news-box {
    display: flex;
    width: 100%;
    margin-top: 10vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10vw;
    padding-bottom: 10vw;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
    background-color: #e7f5f4;
}

.news-box .news-title {
    width: 30%;
    margin-top: 1vw;
    margin-left: 7%;

}

.news-box .news-title .h2title {
    width: 58%;
    margin-left: auto;
    margin-right: auto;
}

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

.news-article {
    width: 50%;
    margin-right: 13%;
}

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

.news-article .article1 p:nth-of-type(1) {
    margin-right: 3%;
    border-bottom: 2px solid #bee1de;
    padding-left: 1vw;
    padding-right: 1vw;
}

.news-article .article1 p:nth-of-type(2) {
    display: block;
    width: 73%;
    border-bottom: 2px solid #bee1de;
    padding-left: 1vw;
    padding-right: 1vw;
    text-align: left;
}
/* INFOここまで */

/* ABOUTここから */
.about-box-smart {
    display: none;
}

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

.about-box .about-article {
    width: 28%;
    margin-left: 8%;
    margin-right: 8%;
}

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

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

.about-box .about-article p {
    display: block;
    width: 100%;
    margin-top: 3vw;
    margin-left: auto;
    text-align: center;
}

.about-box .about-image {
    width: 45%;
    margin-top: 7vw;
    margin-left: 4%;
    margin-right: auto;
}

.about-box .about-image img {
    width: 100%;
    border-radius: 50%;
    vertical-align: bottom;
}
/* ABOUTここまで */

/* FAQここから */
section:nth-of-type(3) {
    width: 100%;  
}

.faq-master {
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
    background-color: #e7f5f4;
}

.faq-box {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10vw;
}

.faq-box .faq-box-title {
    width: 30%;
    margin-left: 6.8%;
    margin-bottom: 3vw;
}

.faq-box .faq-box-title .h2title {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
}

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

.faq-box .faq-box-article {
    width: 52%;
    margin-right: auto;
    padding-top: .2vw;
}
/* FAQの中身1ここから */
.position-box1 {
    position: relative;
    width: 80%;
    height: 45vw;
    margin-left: auto;
    margin-right: auto;
}

.position-box1 .position-article1 {
    position: absolute;
    top: 8vw;
    left: 3vw;
    border: 3px solid #bee1de;
    border-radius: 50px;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: white;
}

.position-box1 .position-article2 {
    position: absolute;
    top: 1vw;
    left: 30vw;
    border: 3px solid #bee1de;
    border-radius: 50px;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: white;
}

.position-box1 .position-article3 {
    position: absolute;
    top: 8vw;
    left: 55vw;
    border: 3px solid #bee1de;
    border-radius: 50px;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: white;
}

.position-box1 p {
    padding: 1.5vw;
    font-size: 1.6vw;
}

.position-box1 .position-img1 {
    position: absolute;
    top: 15vw;
    left: 30vw;
    width: 20%;
}

.position-box1 .position-img1 img {
    width: 100%;
    vertical-align: bottom;
}
/* FAQの中身1ここまで */
/* FAQの中身2ここから */
.position-box2 {
    position: relative;
    width: 90%;
    height: 20vw;
    margin-left: auto;
    margin-right: auto;
}

.position-box2 p {
    text-align: center;
}

.position-box2 .position-p {
    width: 15%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #bee1de;
    border-radius: 50px;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: white;
    transition: 1s;
}

.position-box2 .position-p:hover {
    background-color: #bee1de;;
    transition: 1s;
}

.position-box2 .position-p a {
    display: block;
    padding-bottom: .3vw;
    text-align: center;
    font-size: 2.5vw;
    letter-spacing: .1em;
    transition: 1s;
}

.position-box2 .position-p a:hover {
    transition: 1s;
}

.position-box2 .position-img2 {
    position: absolute;
    right: 8vw;
    bottom: 7vw;
    width: 15%;
}

.position-box2 .position-img2 img {
    width: 100%;
    vertical-align: bottom;
}
/* FAQの中身2ここまで */
/* FAQここまで */

/* 横スクロールここから */
.scroll-box {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.scroll-box .A-1 {
    display: flex;
    width: 100%;
    animation: move 180s linear infinite;
}
/* 98.6のところをうまく調整してがくッとならないように */
@keyframes move {
    0% {
        margin-left: 0vw;
    }
    100% {
        margin-left: -1200.61vw;
    }
}

.scroll-box .A-1 img {
    width: 100%;
    vertical-align: bottom;
}

.scroll-box .A-2 {
    position: absolute;
    bottom: 1vw;
    left: 55.5vw;
    width: 13%;
}

.scroll-box .A-2 img {
    width: 100%;
    vertical-align: bottom;
}

.scroll-box .A-3 {
    position: absolute;
    bottom:-.8vw;
    left: 44vw;
    width: 15%;
}

.scroll-box .A-3 img {
    width: 100%;
    vertical-align: bottom;
}

.scroll-box .A-4 {
    position: absolute;
    bottom: -.1vw;
    left: 36vw;
    width: 13%;
}

.scroll-box .A-4 img {
    width: 100%;
    vertical-align: bottom;
}

.scroll-box .A-5 {
    position: absolute;
    bottom: .3vw;
    left: 32vw;
    width: 10%;
}

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

/* SERVICEここから */
.service-elem {
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

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

.service-smart {
    display: none;
}

.service-box {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6vw;
    padding-top: 10vw;
}

.service-box .service-box-title {
    width: 30%;
    margin-top: .6vw;
    margin-left: 6.05%;
    margin-right: 4.5%;
}

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

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

.service-box .service-box-article {
    width: 50%;
    margin-right: auto;
}
/* service上段ここから */
.service-article1 {
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3vw;
}

.service-article1 .service-article1-1 {
    position: relative;
    width: 30%;
    margin-left: 15%;
    margin-right: 10%;
}

.service-article1 .service-article1-1 .service-article1-1-posi {
    position: absolute;
    top: 1vw;
    left: 1vw;
    padding-left: .3vw;
    padding-right: .3vw;
    border: 1px solid black;
    border-radius: 15px;
    background-color: rgb(245, 241, 185);
}

.service-article1 .service-article1-1 .service-article1-1-posi p {
    font-size: 1vw;
    padding: .2vw;
}

.service-article1 .service-article1-2 {
    position: relative;
    width: 30%;
    margin-right: 15%;
}

.service-article1 .service-article1-2 .service-article1-2-posi {
    position: absolute;
    top: 1vw;
    left: 1vw;
    padding-left: .3vw;
    padding-right: .3vw;
    border: 1px solid black;
    border-radius: 15px;
    background-color: rgb(245, 241, 185);
}

.service-article1 .service-article1-2 .service-article1-2-posi p {
    font-size: 1vw;
    padding: .2vw;
}

.service-article-img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vw;
    border: 5px solid #bee1de;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    border-radius: 15px;
    overflow: hidden;
}

.service-article-img img {
    width:100%;
    vertical-align: bottom;
    transition: .5s;
}

.service-article-img img:hover {
    transform: scale(1.1);
    transition: .5s;
}

.service-article-a {
    width: 70%;
    height: 3vw;
    margin-top: 1.5vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
    border: 3px solid #bee1de;
    border-radius: 50px;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: #e7f5f4;
    transition: .5s;
}

.service-article-a:hover {
    background-color: #bee1de;
    transition: .5s;
}

.service-article-a a {
    display: block;
    padding-top: .25vw;
    text-align: center;
    font-size: 1.5vw;
    
}

.service-article-p {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.service-article-p p {
    display: block;
    text-align: left;
    font-size: 1.2vw;
}
/* service上段ここまで */
/* service下段ここから */
.service-article2 {
    display: flex;
    width: 90%;
    margin-top: 8vw;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10vw;
}

.service-article2 .service-article2-1 {
    position: relative;
    width: 30%;
    margin-left: 15%;
    margin-right: 10%;
}

.service-article2 .service-article2-1 .service-article2-1-posi {
    position: absolute;
    top: 1vw;
    left: 1vw;
    padding-left: .3vw;
    padding-right: .3vw;
    border: 1px solid black;
    border-radius: 15px;
    background-color: rgb(245, 241, 185);
}

.service-article2 .service-article2-1 .service-article2-1-posi p {
    font-size: 1vw;
    padding: .2vw;
}

.service-article2 .service-article2-2 {
    position: relative;
    width: 30%;
    margin-right: 15%;
}

.service-article2 .service-article2-2 .service-article2-2-posi {
    position: absolute;
    top: 1vw;
    left: 1vw;
    padding-left: .3vw;
    padding-right: .3vw;
    border: 1px solid black;
    border-radius: 15px;
    background-color: rgb(245, 241, 185);
}

.service-article2 .service-article2-2 .service-article2-2-posi p {
    font-size: 1vw;
    padding: .2vw;
}

.service-article2 .service-article2-3 {
    position: relative;
    width: 30%;
}

.service-article2 .service-article2-3 .service-article2-3-posi {
    position: absolute;
    top: 1vw;
    left: 2vw;
    padding-left: .3vw;
    padding-right: .3vw;
    border: 1px solid black;
    border-radius: 15px;
    background-color: rgb(245, 241, 185);
}

.service-article2 .service-article2-3 .service-article2-3-posi p {
    font-size: 1vw;
    padding: .2vw;
}

/* service下段ここまで */
/* SERVICEここまで */

/* PLANここから */
.plan-elem {
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.plan-smart {
    display: none;
}

section:nth-of-type(5) {
    width: 100%;
    background-color: #e7f5f4;
}

.plan-box {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
    padding-top: 10vw;
}

.plan-box .plan-box-title {
    width: 30%;
    margin-top: .6vw;
    margin-left: 6.05%;
    margin-right: 4.5%;
}

.plan-box .plan-box-title .h2title {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
}

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

.plan-box .plan-box-article {
    width: 50%;
    margin-top: 1.5vw;
    margin-right: auto;
}

.plan-article {
    display: flex;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10vw;
}

.plan-article .plan-article1 {
    width: 30%;
    margin-right: 5%;
}

.plan-article .plan-article2 {
    width: 30%;
    margin-right: 5%;
}

.plan-article .plan-article3 {
    width: 30%;
}

.plan-article-img1 {
    width: 20%;
    height: 5vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vw;
}

.plan-article-img1 img {
    width: 100%;
    vertical-align: bottom;
    border-radius: 15px;
}

.plan-article-img1-2 {
    width: 40%;
    height: 5vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vw;
}

.plan-article-img1-2 img {
    width: 100%;
    vertical-align: bottom;
    border-radius: 15px;
}

.plan-article-img1-3 {
    width: 25%;
    height: 5vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vw;
}

.plan-article-img1-3 img {
    width: 100%;
    vertical-align: bottom;
    border-radius: 15px;
}

.plan-article-img2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3vw;
}

.plan-article-img2 img {
    width: 100%;
    border-radius: 50%;
    vertical-align: bottom;
    border: 5px solid #bee1de;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
}

.plan-article-a {
    width: 80%;
    margin-top: 2vw;
    margin-left: 11.5%;
    margin-right: auto;
    margin-bottom: 3vw;
    border-radius: 5px;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: #bee1de;
}

.plan-article-a p {
    display: block;
    text-align: center;
    font-size: 1.8vw;
}

.plan-article-p {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1vw;
}

.plan-article-p p {
    display: block;
    text-align: center;
    font-size: 1.5vw;
}

.plan-article-p p:nth-of-type(2) {
    margin-top: 1vw;
}

.plan-article-p p span {
    font-size: 2vw;
    letter-spacing: .1em;
    font-weight: 900;
    border-bottom: 3px solid #bee1de;
}
/* PLANここまで */

/* FLOWここから */
.flow-elem {
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.flow-smart {
    display: none;
}

.flow-box {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8vw;
    padding-top: 10vw;
}

.flow-box .flow-box-title {
    width: 30%;
    margin-top: .6vw;
    margin-left: 6.05%;
    margin-right: 4.5%;
}

.flow-box .flow-box-title .h2title {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
}

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

.flow-box .flow-box-article {
    width: 54%;
    margin-top: .5vw;
    margin-right: auto;
}
/* FLOWの流れここから */
.flow-infobox {
    width: 76%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5vw;
}

.flow-info1 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border: 5px solid #bee1de;
    border-radius: 10px;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: #e7f5f4;
}

.flow-pmg {
    display: flex;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}

.flow-img {
    width: 15.5%;
    margin-right: 2%;
    padding-bottom: 1vw;
}

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

.flow-p1 {
    width: 90%;
    margin-top: .8vw;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: .8vw;
}

.flow-p1 p {
    display: block;
    text-align: center;
    font-size: 1.6vw;
}

.flow-p2 {
    width: 82.5%;
    height: 10.2vw;
    margin-bottom: 2vw;
    border-radius: 10px;
    background-color: white;
}

.flow-p2 p {
    display: block;
    width: fit-content;
    padding: .3vw;
    font-size: 1.5vw;
}

.flow-arrow {
    width: 10%;
    margin-left: auto;
    margin-right: auto;
}

.flow-arrow p {
    display: block;
    text-align: center;
    font-size: 2vw;
}
/* FLOWの流れここまで */
.flow-text {
    position: relative;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10vw;
}

.flow-text img {
    width: 100%;
    vertical-align: bottom;
    border-radius: 10px;
    opacity: .4;
}

.flow-text p {
    position: absolute;
    top: 4vw;
    left: .5vw;
    display: block;
    padding: 5vw;
    text-align: center;
    font-size: 1.8vw;
}
/* FLOWここまで */

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

.contact-box {
    display: flex;
    width: 80%;
    padding-top: 5vw;
    padding-bottom: 3vw;
    margin-left: auto;
    margin-right: auto;
}

.contact-img1 {
    width: 8%;
    margin-left: 19%;
}

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

.contact-img2 {
    width: 8%;
    margin-right: 19%;
}

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

.contact-box .contact-center {
    width: 30%;
    margin-left: 8%;
    margin-right: 8%;
}

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

.contact-box .contact-center .contact-center-a {
    width: 55%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
    padding-top: .5vw;
    padding-bottom: .5vw;
    border: 2px solid #bee1de;
    border-radius: 50px;
    background-color: white;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    transition: .5s;
}

.contact-box .contact-center .contact-center-a:hover {
    background-color: #bee1de;
    transition: .5s;
}

.contact-box .contact-center .contact-center-a a {
    display: block;
    text-align: center;
    font-size: 1.7vw;
    letter-spacing: .1em;
    transition: .5s;
}
/* CONTACTここまで */

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

footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

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

footer .footer-box1 .footer-imgbox {
    width: 30%;
    margin-left: 5%;
    margin-right: 50%;
}

footer .footer-imgbox img {
    width: 100%;
    vertical-align: bottom;
}
/* ソーシャルアイコンここから */
.social-box {
    display: flex;
    width: 15%;
    margin-right: auto;
}

.social-box a:nth-of-type(1) {
    padding-top: 1vw;
    width: 30%;
}

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

.social-box a img {
    width: 100%;
    vertical-align: bottom;
}
/* ソーシャルアイコンここまで */

.footer-all {
    display: flex;
    width: 82%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
}

/* footer2段目ここから */
.footer-box2 {
    width: 30%;
    margin-top: 2vw;
    margin-left: 17%;
    margin-right: 12%;
}

.footer-box2 ul {
    width: 55%;
    margin-right: auto;
}

.footer-box2 ul li {
    width: fit-content;
    padding-bottom: .5vw;
    transition: 1s;
}

.footer-box2 ul li a:hover {
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: #e7f5f4;
    transition: .3s;
}

footer .footer-box2 ul li a {
    display: block;
    font-size: 1.5vw;
    text-align: left;
    letter-spacing: .2em;
}

footer .footer-box2 ul li:nth-of-type(1) a {
    display: block;
    padding-left: 1vw;
    padding-right: 1vw;
}

footer .footer-box2 ul li:nth-of-type(2) a {
    display: block;
    padding-left: 1vw;
    padding-right: 1vw;
}

footer .footer-box2 ul li:nth-of-type(3) a {
    display: block;
    padding-left: 1vw;
    padding-right: 1vw;
}

footer .footer-box2 ul li:nth-of-type(4) a {
    display: block;
    padding-left: 1vw;
    padding-right: 1vw;
}

footer .footer-box2 ul li:nth-of-type(5) a {
    display: block;
    padding-left: 1vw;
    padding-right: 1vw;
}

footer .footer-box2 ul p {
    display: block;
    margin-left: 1%;
    margin-right: 1%;
    font-size: 2vw;
    line-height: .9;
}
/* footer2段目ここまで */
/* footer3段目ここから */
.footer-box4 {
    width: 50%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: 10%;
}

.footer-box4 ul {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.footer-box4 ul li {
    width: fit-content;
    padding-bottom: .5vw;
    transition: 1s;
}

.footer-box4 ul li a:hover {
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: #e7f5f4;
    transition: .3s;
}

footer .footer-box4 ul li a {
    display: block;
    font-size: 1.5vw;
    text-align: left;
    letter-spacing: .2em;
}

footer .footer-box4 ul li:nth-of-type(1) a {
    display: block;
    padding-left: .5vw;
    padding-right: .5vw;
}

footer .footer-box4 ul li:nth-of-type(2) a {
    display: block;
    padding-left: .5vw;
    padding-right: .5vw;
}

footer .footer-box4 ul li:nth-of-type(3) a {
    display: block;
    padding-left: .5vw;
    padding-right: .5vw;
}

footer .footer-box4 ul li:nth-of-type(4) a {
    display: block;
    padding-left: .5vw;
    padding-right: .5vw;
}

footer .footer-box4 ul p {
    display: block;
    margin-left: 1%;
    margin-right: 1%;
    font-size: 1.7vw;
    line-height: .9;
}
/* footer3段目ここまで */
/* footer4段目ここから */
.footer-box3 {
    width: 100%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
}

.footer-box3 ul {
    width: 100%;
    margin-right: auto;
}

footer .footer-box3 ul li {
    width: fit-content;
    padding-bottom: .5vw;
    transition: 1s;
}

footer .footer-box3 ul li:hover {
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: #e7f5f4;
    transition: .3s;
}

footer .footer-box3 ul li a {
    display: block;
    font-size: 1.5vw;
    text-align: left;
    letter-spacing: .2em;
}

footer .footer-box3 ul li:nth-of-type(1) a {
    display: block;
    padding-left: 1vw;
    padding-right: 1vw;
}

footer .footer-box3 ul li:nth-of-type(2) a {
    display: block;
    padding-left: 1vw;
    padding-right: 1vw;
}

footer .footer-box3 ul li:nth-of-type(3) a {
    display: block;
    padding-left: 1vw;
    padding-right: 1vw;
}

footer .footer-box3 ul p {
    display: block;
    margin-left: 1%;
    margin-right: 1%;
    font-size: 1.5vw;
    line-height: .9;
}
/* footer4段目ここまで */
footer p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -7vw;
    text-align: center;
}
/* footer下部イメージここから */
.footer-ill {
    width: 40%;
    margin-left: auto;
}

.footer-ill img {
    width: 100%;
    vertical-align: bottom;
}
/* footer下部イメージここまで */
/* フッターここまで */
.isAnimate {
    opacity: 1;
    transform: translateY(0px);
}