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

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

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

h3 {
    letter-spacing: .15em;
    font-size: 3.3vw;
    font-family: noto;
    color: rgb(91, 102, 84);
}

h4 {
    font-family: noto;
}

p {
    font-size: 3.3vw;
    line-height: 1.6;
    font-family: noto;
    color: rgb(91, 102, 84);
}

a {
    line-height: 1.6;
    letter-spacing: .1em;
    text-decoration: none;
    text-align: center;
    font-family: noto;
    color: rgb(91, 102, 84);
}

ul {
    list-style-type: none;
}

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

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

header {
    display: flex;
    width: 100%;
    height: 17vw;
    padding-top: 2vw;
    background-image: url(../images/top3-2\(800\)sora.png);
    background-size: cover;
    background-repeat: no-repeat;
}

header .h1-box {
    width: 70%;
    margin-top: 1vw;
    margin-left: 7%;
    margin-right: auto;
}

.header-logo {
    width: 100%;
}

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

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

/* ABOUTここから */
.about-box {
    position: relative;
    width: 100%;
    height: 75vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 8vw;
    padding-bottom: 30vw;
}

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

.about-box .about-article .about-article-img {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
}

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

.about-box .about-article p {
    margin-top: 5vw;
    letter-spacing: .05em;
    text-align: center;
}
/* top */
.about-top {
    position: absolute;
    top: 40vw;
    left: 30vw;
    width: 43%;
}

.about-top-img {
    position: relative;
    width: 90%;
}

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

.about-top-img-p {
    position: absolute;
    top: 9vw;
    left: 6vw;
    width: 80%;
}

.about-top-img-p h3 {
    text-align: center;
    margin-bottom: 2vw;
    font-size: 3vw;
}

.about-top-img-p p {
    text-align: center;
}
/* left */
.about-left {
    position: absolute;
    top: 74vw;
    left: 12vw;
    width: 43%;
}

.about-left-img {
    position: relative;
    width: 90%;
}

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

.about-left-img-p {
    position: absolute;
    top: 8vw;
    left: 1.3vw;
    width: 80%;
}

.about-left-img-p h3 {
    text-align: center;
    margin-bottom: 2vw;
    font-size: 3vw;
}

.about-left-img-p p {
    text-align: center;
}
/* right */
.about-right {
    position: absolute;
    top: 70vw;
    left: 50vw;
    width: 43%;
}

.about-right-img {
    position: relative;
    width: 93%;
}

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

.about-right-img-p {
    position: absolute;
    top: 15vw;
    left: 3vw;
    width: 80%;
}

.about-right-img-p h3 {
    text-align: center;
    margin-bottom: 2vw;
    font-size: 3vw;
}

.about-right-img-p p {
    text-align: center;
}
/* ABOUTここまで */

/* 代表挨拶ここから */
.greetings-title {
    width: 40%;
    margin-top: 15vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 7vw;
}

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

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

.greetings-smart {
    position: relative;
    width: 90%;
    height: 60vw;
    margin-bottom: 65vw;
}

.greetings-smart .greetings-box {
    position: absolute;
    top: 4vw;
    left: 5vw;
    width: 95%;
    height: 106vw;
    background-color: rgb(193, 212, 136);
}

.greetings-smart .greetings-box-shadow {
    position: absolute;
    top: 0;
    left: 7vw;
    width: 95%;
    height: 106vw;
    margin-left: auto;
    border: 4px solid white;
    background-color: #F5F2ED;
}

.greetings-circle {
    width: 85%;
    height: 94vw;
    margin-top: 6vw;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #7D826A;
    border-radius: 20px;
}
/* 左 */
.greetings-top {
    display: flex;
    width: 100%;
    margin-top: 1vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
}

.greetings-top-name {
    width: 62%;
    margin-left: 5%;
    margin-right: 7%;
}

.greetings-top .greetings-top-title {
    width: fit-content;
    margin-top: 3vw;
    margin-right: auto;    
    padding: .5vw 1vw;
    border-radius: 10px;
    background-color: white;
}

.greetings-top .greetings-top-title p {
    letter-spacing: .1em;
    font-size: 2.7vw;
}

.greetings-top-name img {
    width: 100%;
    margin-left: 2vw;
    vertical-align: bottom;
}

.greetings-top-img {
    width: 21%;
    padding-top: 2.3vw;
}

.greetings-top-img-child {
    width: 90%;
}

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

.greetings-kinds {
    display: flex;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.kinds-item1 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1vw;
    padding-left: .5vw;
    padding-right: .5vw;
    border: 2px solid white;
    background-color: rgb(193, 212, 136);
}

.greetings-message {
    width: 95%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    background-color: white;
}

.greetings-message h4 {
    padding-top: 1vw;
    text-align: center;
    color: rgb(91, 102, 84);
}

.greetings-message p {
    padding: .8vw;
}
/* 代表挨拶ここまで */

/* スタッフ紹介ここから */
.staff-box {
    width: 100%;
}

.staff-box .staff-title {
    width: 25%;
    margin-left: auto;
    margin-right: auto;
}

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

.staff-box .staff-article {
    width: 60%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
}

.staff-box .staff-article p {
    text-align: center;
}

.staff-member {
    text-align: center;
}

.staff-member p {
    font-size: 5vw;
}

.staff-side {
    width: 100%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
}

.staff-side2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.staff-pc-tablet2 {
    position: relative;
    width: 90%;
    height: 93vw;
    margin-bottom: 6vw;
}

.staff-pc-tablet3 {
    position: relative;
    width: 90%;
    height: 93vw;
    margin-bottom: 6vw;
}

.staff-box2 {
    position: absolute;
    top: 5vw;
    left: 9vw;
    width: 95%;
    height: 88vw;
    background-color: rgb(253, 225, 152);
}

.staff-box2-shadow {
    position: absolute;
    top: 0;
    left: 5vw;
    width: 95%;
    height: 89vw;
    margin-left: auto;
    border: 4px solid white;
    background-color: #F5F2ED;
}

.staff-circle2 {
    width: 85%;
    height: 77vw;
    margin-top: 6vw;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #7D826A;
    border-radius: 20px;
}
/* 全員共通 */
.staff-center {
    width: 95%;
}

.staff-center-img {
    display: flex;
    width: 100%;
    margin-top: 2vw;
    margin-bottom: 2vw;
}

.staff-center-leftimg {
    width: 23%;
    margin-left: 5.5%;

}

.staff-center-leftimg img{
    width: 100%;
    vertical-align: bottom;
}

.staff-center-rightimg {
    width: 70%;
    margin-top: .9vw;
    margin-right: auto;

}

.staff-center-rightimg img{
    width: 100%;
    vertical-align: bottom;
}

.staff-kinds {
    display: flex;
    width: 85%;
    margin-left: auto;
    margin-top: .5vw;
    margin-bottom: .5vw;
}

.staff-item1 {
    width: fit-content;
    margin-right: 4.5%;
    padding-left: .5vw;
    padding-right: .5vw;
    border: 2px solid white;
    background-color: rgb(253, 225, 152);
}

.staff-message {
    width: 100%;
    margin-top: 2vw;
    margin-left: 2.5%;
    margin-right: auto;
    border-radius: 15px;
    background-color: white;
}

.staff-message h4 {
    padding-top: 1vw;
    text-align: center;
    color: rgb(91, 102, 84);
}

.staff-message p {
    padding: 1vw;
}
/* Michiko&Atsuko専用 */
.staff-center-img2 {
    display: flex;
    width: 100%;
    margin-top: 3vw;
    margin-bottom: 3vw;
}
.staff-center-leftimg2 {
    width: 20%;
    margin-left: 6%;
    margin-right: 2%;
}

.staff-center-leftimg2 img {
    width: 100%;
    vertical-align: bottom;
}
/* スタッフ紹介ここまで */

/* COMPANYここから */
.recruit-box {
    width: 100%;
}

.recruit-box .recruit-title {
    width: 70%;
    margin-top: 20vw;
    margin-left: auto;
    margin-right: auto;
}

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

.recruit-box .recruit-p {
    width: 60%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
}

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

.company-frame {
    width: 80%;
    height: 136vw;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    padding: 3vw;
    border-radius: 20px;
    background-color: #f5f2ed;
}

.company-frame p:nth-of-type(1) {
    display: block;
    width: 90%;
    text-align: center;
    margin-bottom: 2vw;
    padding-top: 2vw;
    padding-left: 1vw;
    line-height: 2;
    font-size: 3vw;
}

.company-frame p {
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5vw;
    padding-left: 1vw;
    line-height: 2;
    font-size: 2.8vw;
}
/* COMPANYここまで */

/* CONTACTここから */
.contact-box {
    width: 100%;
    padding-top: 15vw;
    padding-bottom: 1vw;
    margin-left: auto;
    margin-right: auto;
}

.contact-img1 {
    width: 35%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
}

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

.contact-box .contact-center {
    width: 53%;
    margin-left: auto;
    margin-right: auto;
}

.contact-box .contact-center p {
    letter-spacing: .1em;
    text-align: center;
}

.contact-box .contact-center .contact-center-a {
    width: 35%;
    margin-top: 4vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4vw;
    border: 2px solid white;
    border-radius: 20px;
    background-color: rgb(249, 192, 86);
    transition: .5s;
}

.contact-box .contact-center .contact-center-a a {
    display: block;
    padding: 1vw;
    letter-spacing: .1em;
    text-align: center;
    font-size: 3vw;
    color: white;
}

/* CONTACTここまで */

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

footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #F5F2ED;
}

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

footer .footer-box1 .footer-imgbox {
    width: 55%;
    margin-left: 12%;
    margin-right: 5%;
}

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

/* ソーシャルアイコンここから */
.social-box {
    display: flex;
    width: 20%;
    margin-left: 2%;
    margin-right: auto;
}

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

.social-box a:nth-of-type(2) {
    width: 58%;
    margin-top: -1.7vw;
}

.social-box a img {
    width: 100%;
    vertical-align: bottom;
}
/* ソーシャルアイコンここまで */
.footer-privacy {
    display: flex;
    width: 60%;
    margin-top: 2vw;
    margin-left: 22%;
    margin-right: auto;
    margin-bottom: 3vw;
}

.footer-libox {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.footer-libox li {
    list-style-type: none;
}

.footer-libox li a {
    font-size: 3vw;
}

footer p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1vw;
    text-align: center;
}
/* フッターここまで */