@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: movie;
    src: url(../fs/movie.otf);
}

@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: 2.7vw;
    font-family: kosugi;
    color: #7B4E4B;
}

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

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

p {
    letter-spacing: .1em;
    font-size: 1.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;
}

.back-g {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/background.jpg);
    background-size: 100%;
    background-color: rgba(255,255,255,0.8);
    background-blend-mode: lighten;
    background-attachment: fixed;
}
/* ヘッダーここから */
header:nth-of-type(1) {
    display: none;
}

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

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

header .h1-box h1 {
    width: 35%;
    margin-left: 4%;
    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: 7vw;
	top: 4.8vw;
	width: 6vw;
    height: 6vw;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 30000;/*ボタンを一番上にしている(押せなくなるから)*/
}

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

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

.Toggle span {
	display: block;
	position: absolute;
	width: 60px;
	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: 24px;
}

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

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

/* 60%ここから------------------------------------------------------------ */
.center60 {
    position: relative;
    width: 60%;
    margin-left: 20%;
    margin-right: 20%;
    border-radius: 20px;
    box-shadow: 2px 2px 4px gray;
    background-color: #EBEBDC;
    z-index: 9;
}
/* 60%ここまで */

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

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

.link-box1 p {
    padding-top: .7vw;
    padding-bottom: .6vw;
    text-align: center;
    color: #59BC7B;
    font-size: 1.4vw;
}

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

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

/* top画像ここから */
.top-img {
    width: 89%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 3vw;
}

.top-img img {
    width: 100%;
    border-radius: 20px;
    vertical-align: bottom;
}

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

main {
    position: relative;
    background-color: #B9DBED;
    padding-bottom: 6vw;
    overflow: hidden;
}
/* 雲と虹 */
.left-cloud-a {
    position: absolute;
    top: 75vw;
    left: 2vw;
    width: 90%;
    z-index: 3;
    opacity: 0;
    transition: 2s;
    transform: translateY(50px);
}

.cloud-a-left-img {
    width: 15%;
}

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

.left-cloud-b {
    position: absolute;
    top: 185vw;
    left: 82vw;
    width: 90%;
    z-index: 3;
    opacity: 0;
    transition: 2s;
    transform: translateY(50px);
}

.cloud-b-left-img {
    width: 15%;
}

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

.left-cloud-c {
    position: absolute;
    top: 255vw;
    left: 3vw;
    width: 90%;
    z-index: 3;
    opacity: 0;
    transition: 2s;
    transform: translateY(50px);
}

.cloud-c-left-img {
    width: 15%;
}

.cloud-c-left-img img {
    width: 100%;
    vertical-align: bottom;
}
/* フッターの雲 */
.left-cloud {
    position: absolute;
    bottom: -5vw;
    left: -2vw;
    width: 90%;
    z-index: 3;
    opacity: 0;
    transition: 2s;
    transform: translateY(50px);
}

.cloud-left-img {
    width: 45%;
}

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

.right-cloud {
    position: absolute;
    bottom: -6vw;
    left: 65vw;
    width: 90%;
    opacity: 0;
    transition: 2s;
    transform: translateY(50px);
}

.cloud-right-img {
    width: 45%;
}

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

.center-raimbow {
    position: absolute;
    bottom: -5vw;
    left: -2.5vw;
    width: 90%;
    opacity: 0;
    transition: 8s;
    transform: translateY(50px);
}

.center-raimbow-img {
    width: 130%;
}

.center-raimbow-img img {
    width: 100%;
    vertical-align: bottom;
}
/* このサイトは何？ここから */
section:nth-of-type(1) {
    background-color: #EBEBDC;
}

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

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

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

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

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

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

.merit-box-mess h4 {
    width: 100%;
    margin-bottom: 1vw;
    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: 8vw;
    padding-bottom: 5vw;
    box-shadow: 2px 2px 4px gray;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

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

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

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

.news-article .article1 {
    display: flex;
    width: 40%;
    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;
    padding-top: .5vw;
    padding-left: 1vw;
    padding-right: 1vw;
}

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

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

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

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

.qa-2 summary {
  display: flex;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: .5em 1em 0.3em .8em;
  border-bottom: 2px solid #F7F7F7;
  color: #7B4E4B;
  font-weight: 500;
  font-size: 1.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: 60%;
  transform: translateY(-10px);
  opacity: 0;
  margin-left: auto;
  margin-right: auto;
  padding: .5em 1em .5em;
  font-size: 1.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: 8vw;
}

.about-box {
    display: none;
}

.about-box-smart {
    position: relative;
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8vw;
    background-color: #FFE37C;
    border-radius: 50px;
    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: 37.5%;
    height: 1.8vw;
    margin-top: 11vw;
    margin-left: 5%;
    margin-right: auto;
    border-radius: 15px;
    background-color: #FFF5C8;
}

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

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

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

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

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

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

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

section:nth-of-type(5) {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 6vw;
    border-radius: 50px;
    background-color: #F7F7F7;
}

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

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

.sample-article {
    width: 100%;
    margin-bottom: 5vw;
    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 {
    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: 2vw;
    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: 2vw;
    text-align: center;
    border-bottom: 4px solid #F7F7F7;
    font-size: 1.8vw;
}

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

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

.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: 40%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
}

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

.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;
   scroll-snap-type: x mandatory;
   padding:0 1em 1em;
   margin:0 0 2em 0;
   margin-bottom: 5vw;
   scroll-behavior: smooth;
   opacity: 0;
   transition: 1s;
   transform: translateY(50px);
}

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

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

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

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

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

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

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

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

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

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

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

.plan-set-origin {
    width: 85%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1vw;
    padding-bottom: 5vw;
    border-radius: 50px;
    background-color: #F7F7F7;
}

.plan-set1 {
    width: 60%;
    margin-left: 25%;
    margin-top: 4vw;
    margin-bottom: 1vw;
}

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

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

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

.plan-set2 p {

}

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

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

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

.plan-material-smart {
    display: none;
}

.plan-material {
    width: 55%;
    margin-top: 3vw;
    margin-left: auto;
    margin-right: auto;
}

.plan-material p {

}

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

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

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

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

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

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

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

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

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

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

.flow-title2 p {
    padding-top: .8vw;
    padding-bottom: .7vw;
}

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

.flow-article2 p {

}

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

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

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

section:nth-of-type(9) {
    display: none;
}

.faq-contact-flex {
    display: flex;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 6vw;
    opacity: 0;
    transition: 1s;
    transform: translateY(50px);
}

.faq-box {
    width: 48%;
    margin-right: 4%;
    padding-top: 3vw;
    padding-bottom: 1vw;
    border-radius: 30px;
    border: 2px solid rgb(227, 227, 227);
    box-shadow: 2px 2px 3px gray;
    background-color: #F8C37B;
}

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

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

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

.faq-article p {
    text-align: center;
    font-size: 1.3vw;
}

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

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

/* CONTACTここから */
.contact-box {
    width: 48%;
    padding-top: 3vw;
    padding-bottom: 1vw;
    border-radius: 30px;
    border: 2px solid rgb(227, 227, 227);
    box-shadow: 2px 2px 3px gray;
    background-color: #F8C37B;
}

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

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

.contact-article {
    width: 94%;
    margin-top: 1.5vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
}

.contact-article p {
    text-align: center;
    font-size: 1.3vw;
}

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

.contact-link p {
    padding-top: .3vw;
    padding-bottom: .3vw;
    text-align: center;
    font-size: 2vw;
}
/* CONTACTここまで */

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

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

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

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

.imgbox1 {
    width: 5%;
    margin-left: 5%;
}

.imgbox2 {
    width: 20%;
    margin-left: .6%;
    padding-top: 1.4vw;
}
/* mail */
.footer-address {
    display: flex;
    width: 90%;
    margin-left: 6%;
    margin-right: auto;
    align-items: flex-end;
}

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

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

.mail-address {
    width: 30%;
    margin-right: auto;
    padding-top: 1.8vw;
}

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

.footer-kiyaku {
    width: 40%;
}

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

.footer-privacy {
    width: 40%;
}

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

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

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

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

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