@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: 3vw;
    text-shadow: 1px 1px 2px;
}

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

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

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

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

a {
    text-decoration: none;
    font-family: noto;
    color: #5c5c5c;
}

ul {
    list-style-type: none;
}

li {
    font-family: moto;
    font-size: 2vw;
}

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

header:nth-of-type(2) {
    width: 100%;
}

.header-title {
    display: flex;
    width: 100%;
    padding-top: 1vw;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 2vw;
}

header:nth-of-type(2) .header-title-img {
    width: 60%;
    margin-left: 20%;
    padding-top: 3.5vw;
    padding-bottom: 1vw;
}

header:nth-of-type(2) .header-title-img h1 img {
    width: 100%;
    vertical-align: bottom;
}

header nav ul {
    display: block;
}

header nav ul li {
    background-color: rgb(230, 230, 230);
}

header nav ul li a {
    display: block;
    font-size: 3vw;
    line-height: 1.5;
}

nav.NavMenu{
	position: fixed; /*表示位置を固定*/
	z-index: 2; /*重ね順を変更*/
	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: 20px;
	width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 3;/*ボタンを一番上にしている(押せなくなるから)*/
}

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

/* galleryここから */
/* main画像ここから */
/* スライドする要素 */
.slider-container {
    position: relative; /* 親要素を基準に絶対配置する */
    width: 100%;        /* コンテナ幅を100%に */
    height: 58vw;
    margin-top: 5vw;
    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%;
    background-color: #e7f5f4;
}

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

.news-box .news-title {
    width: 50%;;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5vw;
}

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

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

.news-article {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
}

.news-article .article1 {
    display: flex;
    margin-top: 2vw;
    padding-bottom: 2vw;
}

.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: 70%;
    border-bottom: 2px solid #bee1de;
    padding-left: 1vw;
    padding-right: 1vw;
    text-align: left;
}
/* INFOここまで */

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

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

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

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

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

.about-box-smart p {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 7vw;
    text-align: center;
}

.about-box-smart .about-image {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.about-box-smart .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 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10vw;
}

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

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

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

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

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

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

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

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

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

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

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

.position-box2 .position-p {
    width: 30%;
    margin-top: 10vw;
    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;
    z-index: 10000;
}

.position-box2 .position-p a {
    display: block;
    text-align: center;
    font-size: 5vw;
    z-index: 10000;
}

.position-box2 .position-img2 {
    position: absolute;
    right: 2vw;
    bottom: 5vw;
    width: 25%;
    z-index: 1000;
}

.position-box2 .position-img2 img {
    width: 100%;
    vertical-align: bottom;
    z-index: 1000;
}
/* 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: 180%;
    height: 30vw;
    animation: move 180s linear infinite;
}
/* 98.6のところをうまく調整してがくッとならないように */
@keyframes move {
    0% {
        margin-left: 0vw;
    }
    100% {
        margin-left: -1950vw;
    }
}

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

.scroll-box .A-2 {
    position: absolute;
    bottom: 1.2vw;
    left: 60vw;
    width: 20%;
}

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

.scroll-box .A-3 {
    position: absolute;
    bottom: -2.6vw;
    left: 37vw;
    width: 30%;
}

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

.scroll-box .A-4 {
    position: absolute;
    bottom: -1.1vw;
    left: 22vw;
    width: 27%;
}

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

.scroll-box .A-5 {
    position: absolute;
    bottom: -.1vw;
    left: 17vw;
    width: 17%;
}

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

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

.service-pc-tablet {
    display: none;
}

.service-box {
    display: none;
}

.service-box-smart {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10vw;
}

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

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

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

.service-box-article {
    width: 82%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2vw;
    padding-bottom: 7vw;
}
/* service上段ここから */
.service-article1 {
    display: flex;
    width: 100%;
    margin-top: 10vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12vw;
}

.service-article1 .service-article1-1 {
    position: relative;
    width: 46%;
    margin-left: 3%;
    margin-right: 2%;
}

.service-article1 .service-article1-1 .service-article1-1-posi {
    position: absolute;
    top: 1vw;
    left: 4vw;
    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: 2vw;
    padding: .2vw;
}

.service-article1 .service-article1-2 {
    position: relative;
    width: 46%;
    margin-right: 3%;
}

.service-article1 .service-article1-2 .service-article1-2-posi {
    position: absolute;
    top: 1vw;
    left: 4vw;
    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: 2vw;
    padding: .2vw;
}

.service-article-img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vw;
}

.service-article-img img {
    width: 100%;
    margin-bottom: 2vw;
    vertical-align: bottom;
    border: 3px solid #bee1de;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    border-radius: 15px;
}

.service-article-a {
    width: 78%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
    border: 2px solid #bee1de;
    border-radius: 15px;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: #e7f5f4;
}

.service-article-a a {
    display: block;
    text-align: center;
    font-size: 3vw;
}

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

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

.service-article2 .service-article2-1 {
    position: relative;
    width: 46%;
    margin-left: 3%;
    margin-right: 2%;
}

.service-article2 .service-article2-1 .service-article2-1-posi {
    position: absolute;
    top: 1vw;
    left: 4vw;
    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: 2vw;
    padding: .2vw;
}

.service-article2 .service-article2-2 {
    position: relative;
    width: 46%;
    margin-right: 3%;
}

.service-article2 .service-article2-2 .service-article2-2-posi {
    position: absolute;
    top: 1vw;
    left: 4vw;
    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: 2vw;
    padding: .2vw;
}
/* service下段ここまで */
/* SERVICEここまで */

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

.plan-pc-tablet {
    display: none;
}

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

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

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

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

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

.plan-box .plan-box-article {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
    padding-top: 2vw;
}

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

.plan-article0 .plan-article1 {
    width: 48%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
}

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

.plan-article .plan-article2 {
    width: 48%;
    margin-left: 2%;
}

.plan-article .plan-article3 {
    width: 48%;
    margin-right: 2%;
}
.plan-article-img1 {
    width: 25%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vw;
}

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

.plan-article-img2 {
    width: 90%;
    border-radius: 45%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vw;
}

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

.plan-article-a {
    width: 80%;
    margin-top: 3vw;
    margin-left: 11%;
    margin-right: auto;
    margin-bottom: 5vw;
    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: 3.8vw;
}

.plan-article-p {
    width: 90%;
    margin-top: 3vw;
    margin-left: auto;
    margin-right: auto;
}

.plan-article-p p {
    display: block;
    padding-top: 1vw;
    padding-bottom: 2vw;
    text-align: center;
    font-size: 3vw;
}

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

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

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

.flow-pc-tablet {
    display: none;
}

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

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

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

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

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

.flow-info1 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border: 3px 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: 30.9%;
    margin-right: 2%;
    padding-top: .15vw;
}

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

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

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

.flow-p2 {
    width: 67.1%;
    height: 24.5vw;
    margin-bottom: 2vw;
    padding: .5vw;
    border-radius: 10px;
    background-color: rgb(249, 249, 249);
}

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

.flow-arrow {
    width: 10%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1vw;
    padding-bottom: 1vw;
}

.flow-arrow p {
    display: block;
    text-align: center;
    font-size: 5vw;
}
/* FLOWの流れここまで */
.flow-text {
    position: relative;
    width: 88%;
    margin-top: 5vw;
    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: 1vw;
    left: .5vw;
    display: block;
    padding: 8vw;
    text-align: center;
    font-size: 4vw;
}
/* FLOWここまで */

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

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

.contact-img1 {
    width: 10%;
    padding-top: 1vw;
    margin-left: 10%;
}

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

.contact-img2 {
    width: 10%;
    padding-top: 1vw;
    margin-right: 10%;
}

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

.contact-box .contact-center {
    width: 54%;
    margin-left: 3%;
    margin-right: 3%;
    padding-top: 2vw;
}

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

.contact-box .contact-center .contact-center-a {
    width: 60%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #bee1de;
    border-radius: 15px;
    background-color: white;
    box-shadow: .7px .7px 1.2px rgb(163, 163, 163);
}

.contact-box .contact-center .contact-center-a a {
    display: block;
    text-align: center;
    font-size: 3vw;
}
/* CONTACTここまで */

/* フッターここから */
footer:nth-of-type(1) {
    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: 70%;
    margin-left: 8%;
    margin-right: 3%;
    padding-top: 2vw;
}

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

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

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

.social-box a img {
    width: 100%;
    vertical-align: bottom;
}
/* ソーシャルアイコンここまで */
footer p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-box3 {
    width: 100%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3vw;
}

.footer-box3 ul {
    display: flex;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

footer .footer-box3 ul li a {
    display: block;
    font-size: 1vw;
}

footer .footer-box3 ul li:nth-of-type(1) a {
    width: 10vw;
    padding-left: 1vw;
    padding-right: 1vw;
    font-size: 2.5vw;
}

footer .footer-box3 ul li:nth-of-type(2) a {
    width: 10vw;
    padding-left: 1vw;
    padding-right: 1vw;
    font-size: 2.5vw;
}

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

footer .footer-box3 ul p {
    display: block;
    margin-left: 1%;
    margin-right: 1%;
    font-size: 3vw;
    line-height: .9;
}

/* TOPへ戻るボタンここから */
.footer-box1 .pagejump {
    width: 13%;
    margin-top: 2.8vw;
    margin-right: auto;
    padding-top: .8vw;
    text-align: center;
}

.footer-box1 .pagejump a {
    display: block;
    width: 88%;
    border-radius: 50%;
    border: 1px solid rgb(174, 138, 138);
    font-size: 7vw;
    color: white;
    background-color: #83c1bd;
}
/* TOPへ戻るボタンここまで */
/* フッターここまで */
.isAnimate {
    opacity: 1;
    transform: translateY(0px);
}