@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: 2.8vw;
    font-family: robot;
    color: #202020;
}

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

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

p {
    font-size: 1.5vw;
    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;
}

summary {
    font-family: noto;
    letter-spacing: .1em;
    color: rgb(91, 102, 84);
}

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

header {
    display: flex;
    width: 100%;
    height: 10vw;
    padding-top: 2vw;
    background-image: url(../images/header.png);
    background-size: cover;
}

header .h1-box {
    width: 40%;
    margin-top: 1vw;
    margin-left: 5%;
    margin-right: 10%;
}

.header-logo {
    width: 100%;
}

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

header nav {
    width: 50%;
    margin-right: auto;
    padding-top: 1vw;
    padding-bottom: 3vw;
}

header nav ul {
    display: flex;
}

header nav ul div {
    width: 17%;
    margin-right: 4%;
}

header nav ul div:nth-of-type(2) {
    width: 21%;
    margin-right: 5%;
}

header nav ul div:nth-of-type(3) {
    width: 12%;
    margin-right: 5%;
}

header nav ul div:nth-of-type(4) {
    width: 18%;
    margin-right: 5%;
}

header nav ul li {
    width: fit-content;
    height: 3vw;
    margin-right: 4%;
    transition: 1s;
}

header nav ul li a {
    display: block;
    text-align: left;
    line-height: 1.5;
    font-family: noto;
    color: rgb(70, 78, 64);
}

header nav ul li a:hover {
    line-height: 1.5;
    border-bottom: 2px solid rgb(91, 102, 84);
    transition: .2s;
}
/* ヘッダーここまで */

/* HP作成ここから */
.hp-box {
    width: 100%;
}

.hp-box .hp-title {
    width: 30%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
}

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

.hp-box .hp-article {
    width: 70%;
    margin-top: 3vw;
    margin-left: auto;
    margin-right: auto;
}

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

/* プランここから */
.hp-box .plan-title {
    width: 13%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
}

.hp-box .plan-title img {
    width: 100%;
    vertical-align: bottom;
}
/* ライトプランここから */
.details {
    width: 70%;
	height: 8vw;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
	transition: all ease-in-out .3s;
	border-radius: 20px;
    box-shadow: 2px 2px 4px;
    background-color: #e7f5f4;
}

.details:hover {
    background-color: #bee1de;
}

.details[open] {
	height: 28vw;
	background-color: #bee1de;
}

.details-summary {
    position: relative;
	display: block;
	padding: 1vw 1vw 1vw 1.5vw;
	font-size: 1.8vw;
	font-weight: bold;
    
}
/* プラン名の上の文字列 */
.details-summary span {
    font-size: 1vw;
}

.details-summary::-webkit-details-marker {
	display: none;
}

.details-content {
	margin: 0 2vw 2vw;
	padding: 1vw;
	height: 15vw;
    border: 1px solid black;
	overflow: hidden;
	overflow-y: auto;
    box-shadow: 2px 2px 4px;
	background-color: #fff;
}
/* ライトプランここまで */

/* スタンダードプランここから */
.details2 {
    width: 70%;
	height: 8vw;
    margin-top: 1vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    box-shadow: 2px 2px 4px;
	transition: all ease-in-out .3s;
    background-color: #e7f5f4;
}

.details2:hover {
    background-color: #bee1de;
}

.details2[open] {
	height: 28vw;
	background-color: #bee1de;
}

.details-summary2 {
    position: relative;
	display: block;
	padding: 1vw 1vw 1vw 1.5vw;
	font-size: 1.8vw;
	font-weight: bold;	
}
/* プラン名の上の文字列 */
.details-summary2 span {
    font-size: 1vw;
}

.details-summary2::-webkit-details-marker {
	display: none;
}

.details-content2 {
	margin: 0 2vw 2vw;
	padding: 1vw;
	height: 15vw;
    border: 1px solid black;
	overflow: hidden;
	overflow-y: auto;
    box-shadow: 2px 2px 4px;
	background-color: #fff;
}
/* スタンダードプランここまで */

/* プレミアムプランここから */
.details3 {
    width: 70%;
	height: 8vw;
    margin-top: 1vw;
    margin-left: auto;
    margin-right: auto;
	transition: all ease-in-out .3s;
    box-shadow: 2px 2px 4px;
	border-radius: 20px;
    background-color: #e7f5f4;
}

.details3:hover {
    background-color: #bee1de;
}

.details3[open] {
	height: 28vw;
	background-color: #bee1de;
}

.details-summary3 {
    position: relative;
	display: block;
    padding: 1vw 1vw 1vw 1.5vw;
	font-size: 1.8vw;
	font-weight: bold;
}
/* プラン名の上の文字列 */
.details-summary3 span {
    font-size: 1vw;
}

.details-summary3::-webkit-details-marker {
	display: none;
}

.details-content3 {
	margin: 0 2vw 2vw;
	padding: 1vw;
	height: 17vw;
    border: 1px solid black;
	overflow: hidden;
	overflow-y: auto;
    box-shadow: 2px 2px 4px;
	background-color: #fff;
}
/* プレミアムプランここまで */

/* 料金表ここから */
.details4 {
    width: 70%;
	height: 8vw;
    margin-top: 1vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10vw;
	transition: all ease-in-out .3s;
    box-shadow: 2px 2px 4px;
	border-radius: 20px;
    background-color: #e7f5f4;
}

.details4:hover {
    background-color: #bee1de;
}

.details4[open] {
	height: 30vw;
	background-color: #bee1de;
}

.details-summary4 {
    position: relative;
	display: block;
	padding: 1vw 1vw 1vw 1.5vw;
	font-size: 1.8vw;
	font-weight: bold;
    align-items: center;
}
/* プラン名の上の文字列 */
.details-summary4 span {
    font-size: 1vw;
}

.details-summary4::-webkit-details-marker {
	display: none;
}

.details-content4 {
	margin: 0 2vw 2vw;
	padding: 1vw;
	height: 17vw;
    border: 1px solid black;
	overflow: hidden;
	overflow-y: auto;
    box-shadow: 2px 2px 4px;
	background-color: #fff;
}
/* 料金表ここまで */
.details[open] .details-content {
  	animation: fadeIn .3s ease;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px); 
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.details-summary span:nth-of-type(2) {
    font-size: 3vw;
    line-height: 1vw;
}

.details-summary2 span:nth-of-type(2) {
    font-size: 3vw;
    line-height: 1vw;
}

.yajirusi1 {
    position: absolute;
    right: 2vw;
    bottom: .9vw;
    font-size: 3vw;
    background-color: white;
    width: 6.5%;
    border-radius: 50%;
    text-align: center;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
}

.yajirusi2 {
    position: absolute;
    right: 2vw;
    bottom: .9vw;
    font-size: 3vw;
    background-color: white;
    width: 6.5%;
    border-radius: 50%;
    text-align: center;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
}

.yajirusi3 {
    position: absolute;
    right: 2vw;
    bottom: .9vw;
    font-size: 3vw;
    background-color: white;
    width: 6.5%;
    border-radius: 50%;
    text-align: center;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
}

.yajirusi4 {
    position: absolute;
    right: 2vw;
    bottom: .9vw;
    font-size: 3vw;
    background-color: white;
    width: 6.5%;
    border-radius: 50%;
    text-align: center;
    box-shadow: 1px 1px 2px rgb(163, 163, 163);
}
/* プランここまで */




/* HP作成ここまで */

/* CONTACTここから */
section:nth-of-type(5) {
    width: 100%;
    background-color: #F5F2ED;
}
.contact-box {
    width: 100%;
    padding-top: 1vw;
    padding-bottom: 1vw;
    margin-left: auto;
    margin-right: auto;
}

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

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

.contact-box .contact-center {
    width: 30%;
    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: 30%;
    margin-top: 2vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2vw;
    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;
    letter-spacing: .1em;
    text-align: center;
    font-size: 1.4vw;
    color: white;
}
/* CONTACTここまで */

/* フッターここから */
footer:nth-of-type(2) {
    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: 3vw;
}

footer .footer-box1 .footer-imgbox {
    width: 30%;
    margin-left: 10%;
    margin-right: 2%;
}

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

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

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

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

.social-box a img {
    width: 100%;
    vertical-align: bottom;
}
/* ソーシャルアイコンここまで */
.grand-footer {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
/* footer2段目ここから */
.footer-box2 {
    width: 80%;
    margin-top: 2vw;
    margin-left: 18%;
    margin-right: auto;
}

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

.footer-box2 ul .footer-libox {
    width: 10%;
    margin-left: 5%;
}

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

footer .footer-box2 ul li a {
    line-height: 1.5;
    font-family: noto;
    color: rgb(70, 78, 64);
    font-size: 1.5vw;
}

footer .footer-box2 ul li a:hover {
    line-height: 1.5;
    border-bottom: 2px solid rgb(91, 102, 84);
    transition: .2s;
    font-size: 1.5vw;
}
/* footer2段目ここまで */
/* footer3段目ここから */
.footer-box3 {
    width: 80%;
    margin-top: 3vw;
    margin-left: 18%;
    margin-right: auto;
    margin-bottom: 5vw;
}

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

.footer-box3 ul .footer-libox {
    width: 10%;
    margin-left: 5%;
}

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

footer .footer-box3 ul li a {
    line-height: 1.5;
    font-family: noto;
    color: rgb(70, 78, 64);
    font-size: 1.5vw;
}

footer .footer-box3 ul li a:hover {
    line-height: 1.5;
    border-bottom: 2px solid rgb(91, 102, 84);
    transition: .2s;
    font-size: 1.5vw;
}
/* footer3段目ここまで */
footer p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1vw;
    text-align: center;
}
/* フッターここまで */