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

input {
    font-family: noto;
    color: #5c5c5c;
}

label {
    font-family: noto;
    color: #5c5c5c;
}

select {
    font-family: noto;
    color: #5c5c5c;
}
/* ヘッダーここから */
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;
}
/* ヘッダーここまで */

/* contactここから */
.contact-box {
    display: flex;
    width: 90%;
    margin-top: 3vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 5vw;
    padding-bottom: 5vw;
}

.contact-box .contact-title {
    width: 35%;
    margin-left: auto;
    margin-right: auto;
}

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

form:nth-of-type(1) {
    display: none;
}

.form-box {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 1vw;
    background-color: #e7f5f4;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
}
/* 申し込みかお問い合わせか？ */
.omousikomi-box {
    margin-top: .5vw;
    padding: .5vw;
    border: 1px solid black;
    border-radius: 10px;
    background-color: white;
}

.omousikomi-box label {
    display: inline-block;
    width: 25%;
    line-height: 3vw;
    font-size: 3vw;
}

.omousikomi-box label:nth-of-type(1) {
    display: inline-block;
    width: 5%;
    margin-left: 18vw;
    line-height: 3vw;
}
/* 名前 */
.name-box {
    margin-top: .5vw;
    padding: .5vw;
    border: 1px solid black;
    border-radius: 10px;
    background-color: white;
}

.name-box label {
    display: inline-block;
    width: 25%;
    line-height: 5vw;
    font-size: 3vw;
}

label span {
    padding-left: .1vw;
    padding-right: .1vw;
    font-size: 1.8vw;
    background-color: rgb(211, 150, 107);
    
}

label .nini {
    padding-left: .1vw;
    padding-right: .1vw;
    font-size: 1.8vw;
    background-color: rgb(242, 234, 159);
}

.name-box input {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    padding: 1vw .5vw;
    border: none;
    border-radius: 10px;
    background-color: #f0f9f9;
    font-size: 3vw;
}
/* メール */
.email-box {
    margin-top: 1vw;
    padding: .5vw;
    border: 1px solid black;
    border-radius: 10px;
    background-color: white;
}

.email-box label {
    display: inline-block;
    width: 50%;
    line-height: 5vw;
    font-size: 3vw;
}

.email-box input {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    padding: 1vw .5vw;
    border: none;
    border-radius: 10px;
    background-color: #f0f9f9;
    font-size: 3vw;
}
/* 電話 */
.tel-box {
    margin-top: 1vw;
    padding: .5vw;
    border: 1px solid black;
    border-radius: 10px;
    background-color: white;
}

.tel-box label {
    display: inline-block;
    width: 25%;
    line-height: 5vw;
    font-size: 3vw;
}

.tel-box input {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    padding: 1vw .5vw;
    border: none;
    border-radius: 10px;
    background-color: #f0f9f9;
    font-size: 3vw;
}
/* お申し込み内容 */
.check {
    margin-top: 1vw;
    padding: .5vw;
    border: 1px solid black;
    border-radius: 10px;
    background-color: white;
}

.check .check-label {
    display: inline-block;
    width: 40%;
    line-height: 5vw;
    font-size: 3vw;
}

.check .check-child {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    padding: .5vw;
    background-color: #f0f9f9;
}

.check .check-child .check-plan {
    width: 98%;
    margin-top: .5vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: .5vw;
    padding: .1vw;
    border-radius: 10px;
    background-color: white;
}

.check .check-child .check-plan .smart {
    width: 100%;
    margin-left: 5%;
}

.check .check-child .check-plan .smart input:nth-of-type(1) {
    margin-left: 1%;
}

.check .check-child .check-plan .smart label:nth-of-type(1) {
    display: inline-block;
    width: 18%;
    font-size: 3vw;
}

.check .check-child .check-plan .smart label:nth-of-type(2) {
    display: inline-block;
    width: 29%;
    font-size: 3vw;
}

.check .check-child .check-plan .smart label:nth-of-type(3) {
    display: inline-block;
    width: 22%;
    font-size: 3vw;
}

/* ご相談 */
.textarea {
    margin-top: 1vw;
    padding: .5vw;
    border: 1px solid black;
    border-radius: 10px;
    background-color: white;
}

.textarea label {
    display: inline-block;
    width: 25%;
    line-height: 5vw;
    font-size: 3vw;
}

.textarea textarea {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    height: 20vw;
    padding: 1vw .5vw;
    border: none;
    border-radius: 10px;
    background-color: #f0f9f9;
    font-size: 2vw;
}
/* ご利用規約 */
.kiyaku {
    margin-top: 1vw;
    padding: .5vw;
    border: 1px solid black;
    border-radius: 10px;
    background-color: white;
}

.kiyaku label {
    display: inline-block;
    width: 25%;
    line-height: 5vw;
    font-size: 3vw;
}

.kikaku-child {
    display: flex;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    background-color: #f0f9f9;
}

.kiyaku .kikaku-child label {
    display: inline-block;
    width: 90%;
    margin-left: 2%;
    padding: 2vw;
    font-size: 3vw;
}

.kiyaku .kikaku-child input {
    margin-top: .9vw;
    margin-left: 1vw;
    padding: 1vw 1vw;
    line-height: 2vw;
    border: none;
    border-radius: 10px;
}

.kiyaku-messege {
    overflow: auto;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    height: 50vw;
    margin-top: 2vw;
    margin-bottom: 2vw;
    border: 1px solid black;
    background-color: #f0f9f9;
}
/* 申し込みボタン */
.submit-box {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.submit-box input {
    display: block;
    width: 70%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    padding: 1vw;
    border: 1px solid #bee1de;
    border-radius: 15px;
    font-size: 2.5vw;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
    background-color: #e7f5f4;
}

/* 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: 45%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.8vw;
}

.social-box a:nth-of-type(1) {
    width: 25%;
    margin-left: 10%;
    font-size: 7vw;
    color: black;
}

.social-box a:nth-of-type(2) {
    width: 25%;
    margin-left: 7%;  
    font-size: 7vw;
    line-height: 1.5;
    color: blue;
}

.social-box a:nth-of-type(3) {
    width: 25%;
    margin-left: 7%;
    margin-right: auto;
    font-size: 7vw;
    color: red;
}
/* ソーシャルアイコンここまで */
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: .2vw;
    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);
}