header {
    height: 10%;
    width: 100%;
    z-index: 10;
    opacity: 0.7;
    background-color: #047622;
    color: #f0f8ff;
    position: fixed;
    top: 0px;
    display: flex;
    align-items: center;
}

.header-left {
    font-size: larger;
    width: 40%;
    display: flex;
    text-align: right;
    align-items: center;
}

.header-left a {
    text-decoration: none;
    padding-left: 8%;
    color: white;
}

.header-left img {
    height: 50px;
    padding-left: 40%;
    padding-right: 5%
}

.header-left p {
    font-weight: bolder;
    text-align: center;
    font-size: 120%;
}

.header-right {
    width: 60%;
    text-align: right;
    padding-right: 5%;
}

.header-right nav a {
    padding-right: 2%;
    text-decoration: none;
    color: white;
    font-size: 100%;
    font-weight: bold;
    font-family: serif;
}

/* ハンバーガーメニュー非表示 */
.hamburger-morph {
    display: none;
}

.nav-morph {
    display: none;
}


/* ハンバーガーメニューのCSS */

.hamburger-morph {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger-morph__icon {
    width: 100%;
    height: 100%;
}

.hamburger-morph__line {
    fill: none;
    stroke: white;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 60 207;
}

.hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 60 60;
}

.hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 60 207;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
}

.hamburger-morph.active .hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
}

.nav-morph {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgb(1, 59, 5);
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
}

.nav-morph.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
}

.nav-morph__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.nav-morph__list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.nav-morph__item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-morph.active .nav-morph__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-morph.active .nav-morph__item:nth-child(1) {
    transition-delay: 0.3s;
}

.nav-morph.active .nav-morph__item:nth-child(2) {
    transition-delay: 0.4s;
}

.nav-morph.active .nav-morph__item:nth-child(3) {
    transition-delay: 0.5s;
}

.nav-morph.active .nav-morph__item:nth-child(4) {
    transition-delay: 0.6s;
}

.nav-morph.active .nav-morph__item:nth-child(5) {
    transition-delay: 0.6s;
}

.nav-morph.active .nav-morph__item:nth-child(6) {
    transition-delay: 0.6s;
}

.nav-morph__link {
    position: relative;
    display: inline-block;
    padding: 20px;
    font-size: 28px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.nav-morph__text,
.nav-morph__hover {
    display: block;
    transition: transform 0.3s ease;
}

.nav-morph__hover {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(0%);
}

.nav-morph__link:hover .nav-morph__text {
    transform: translateY(-100%);
}

.nav-morph__link:hover .nav-morph__hover {
    transform: translateY(-100%);
}



.msg {
    padding: 5% 0 4% 0;
}

.msg h2 {
    font-size:x-large;
    font-family: serif;
    font-weight: bolder;
}

/* メイン部分 */
main {
    margin: 0 auto;
    text-align: center;
    font-family: serif;
}

.container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}





/* メイン部分 */
.main-title {
    padding:10% 0 0 0;
}

.main-title h1 {
    padding-top:5%;
}

.flex-section {
    display: flex;
}

.flex-section img {
    width: 45%;
    height: auto;
}

.question-coment {
    padding-left: 5%;
    width: 55%;
    text-align: left;
}

.question-coment p {
    height: 20%;
    font-size: 150%;
    font-family: serif;
}

.message-group {
    padding-bottom:5%;
}


/* footer部分 */
footer {
    padding-top: 2%;
    padding-bottom: 2%;
    margin: 0 auto;
    background-color: #29a83a;
    opacity: 0.7;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.company-logo {
    width: 30%;
    margin: 0 auto;
}

.company-name {
    width: 30%;
    margin: 0 auto;
}

.footer-wrapper {
    color: white;
    display: inline-flex;
    flex-direction: column;

}

.footer-wrapper p {
    font-size: 20px;
    font-family: serif;
    margin: 5px 0px;
}

.footer-tel {
    font-size: 30px;
    color: white;
    text-decoration: none;
    font-family: serif;
    font-weight: bold;
}

.footer-contact-button {
    display: inline-block;
    border-radius: 4%;
    padding: 15px 40px;
    font-size: 20px;
    background-color: rgb(49, 159, 159);
    text-decoration: none;
    color: white;
    font-family: serif;
}

.privacy-policy {
    text-decoration: none;
    font-size: 20px;
    color: white;
    font-family: serif;
}