@charset "utf-8";

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #FAFAFA;
}

a {
    transition: .3s;
}

a:hover {
    opacity: .8;
}

.pop {
    font-family: "Poppins", sans-serif;
}

.fadeIn {
    transform: translate3d(0, 50px, 0);
    transition: 1s;
    opacity: 0;
}

.fadeIn.animated {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.animation {
    animation: fade-in 4s;
    animation-fill-mode: forwards;
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

.pagetop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 30px;
}

.pagetop a {
    display: block;
    background-color: #000;
    text-align: center;
    color: #FFF;
    font-size: 12px;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50%;
}

.pagetop a:hover {
    display: block;
    background-color: #e60033;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    padding: 15px 20px;
}

/* Navi */

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: rgba(255, 255, 255);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 5;
}

.logo {
    width: 140px;
    height: auto;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 28%;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav-links a:hover {
    color: #e60033;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: 0.5s ease;
}

.nav-active {
    transform: translateX(0%) !important;
}


@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .nav-links {
        /* display: flex; */
        position: absolute;
        right: 0;
        height: 40vh;
        top: 8vh;
        background-color: rgba(255, 255, 255, 0.8);
        flex-direction: column;
        align-items: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links li {
        opacity: 0;
    }

    .burger {
        display: block;
    }
}

@keyframes navLinksFade {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(405deg) translate(-5px, -6px);
}

.header-h1 {
    font-size: 16px;
}



/* Vision */

.vision-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 200px 30px 60px 30px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .vision-area {
        width: 100%;
        flex-direction: column;
        padding: 80px 15px 30px 15px;
    }
}

.vision-01 {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .vision-01 {
        width: 100%;
        margin-top: 30px;
    }
}

.vision-headline {
    font-size: 90px;
    color: #333;
    font-weight: 700;
    margin: 0;
}

.vision-headline .tc {
    color: #e60033;
}

.vision-description {
    padding: 0x;
    background: #fff;
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.2rem;
    color: #333;
    margin: 20px 0;
}

.vision-02 {
    width: 50%;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .vision-02 {
        width: 100%;
        margin-top: 30px;
    }
}

.vision-02>img {
    width: 100%;
}

.txt {
    display: flex;
    overflow: hidden;
}

.txt p {
    font-size: 90px;
    color: #333;
    font-weight: 700;
    margin: 0;
    transform: translateY(2em);
    animation: textanimation 1s forwards;
}

.txt>.tc {
    color: #e60033;
}

@media screen and (max-width: 768px) {
    .txt p,txt-02 p {
        font-size: 60px;
    }
    .txt p .tc {
        font-size: 60px;
    }
    .vision-description {
        font-size: 20px;
        letter-spacing: 0.1rem;
    }
}

.txt p:nth-child(1) {
    animation-delay: 0.1s
}

.txt p:nth-child(2) {
    animation-delay: 0.2s
}

.txt p:nth-child(3) {
    animation-delay: 0.3s
}

.txt p:nth-child(4) {
    animation-delay: 0.4s
}

.txt p:nth-child(5) {
    animation-delay: 0.5s
}

.txt p:nth-child(6) {
    animation-delay: 0.6s
}

@keyframes textanimation {
    0% {
        transform: translateY(2em);
    }

    100% {
        transform: translateY(0);
    }
}

.txt2 {
    display: flex;
    overflow: hidden;
}

.txt2 p {
    font-size: 90px;
    color: #333;
    font-weight: 700;
    margin: 0;
    transform: translateY(2em);
    animation: textanimation 1s forwards;
}

.txt2>.tc {
    color: #e60033;
}

@media screen and (max-width: 768px) {
    .txt2 p,txt-02 p {
        font-size: 60px;
    }
    .txt2 p .tc {
        font-size: 60px;
    }
    .vision-description {
        font-size: 20px;
        letter-spacing: 0.1rem;
    }
}

.txt2 p:nth-child(1) {
    animation-delay: 0.5s
}

.txt2 p:nth-child(2) {
    animation-delay: 0.6s
}

.txt2 p:nth-child(3) {
    animation-delay: 0.7s
}

.txt2 p:nth-child(4) {
    animation-delay: 0.8s
}

.txt2 p:nth-child(5) {
    animation-delay: 0.9s
}

.txt2 p:nth-child(6) {
    animation-delay: 1s
}

.txt2 p:nth-child(7) {
    animation-delay: 1.1s
}

.txt2 p:nth-child(8) {
    animation-delay: 1.2s
}

/* Business */

#business {
    position: relative;
}

.business-area {
    max-width: 1400px;
    margin: 100px auto 0;
    background-color: #87B2D1;
    border-radius: 30px;
    padding: 50px;
}

@media screen and (max-width: 768px) {
    .business-area {
        padding: 30px 0px;
        margin: 50px 10px 0 10px;
    }
}

.business-headline {
    font-size: 90px;
    color: #FFF;
    margin-top: 200px;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .business-headline {
        font-size: 52px;
        margin-top: 30px;
    }
}

.business-headline span {
    display: block;
    font-size: 24px;
    color: #FFF;
    font-family: 'Noto Sans JP', sans-serif;
    margin-top: 20px;
}

.business-graph {
    width: 100%;
    text-align: center;
}

.business-graph>img {
    max-width: 360px;
    margin-top: 50px;
}

.b-w {
    display: flex;
}

@media screen and (max-width: 820px) {
    .business-graph {
        max-width: 90%;
        margin: 0 auto;
    }

    .business-graph>img {
        max-width: 90%;
    }
    .b-w {
        background-position: right 20% top 50%;
        background-size: 50%;
    }
}


.b-01 {
    width: 45%;
}

.b-01 p {
    font-size: 18px;
    font-weight: 500;
    line-height: 2;
}

.b-02 {
    width: 55%;
    margin-left: 20px;
}

.b-02 h2 {
    font-size: 48px;
    color: #FFF;
    border-top: #FFF 1px solid;
    padding-top: 50px;
    margin-top: 50px;
    margin-bottom: 0;
}

.ttl {
    display: flex;
    align-items: center;
    justify-content: left;
    color: #fff;
    margin-top: 0;
    margin-bottom: 50px;
    font-size: 16px;
}

.ttl:before,
.ttl:after {
    border-top: 1px solid #fff;
    content: "";
    width: 50px;
}

.ttl:before {
    margin-right: 1em;
}

.ttl:after {
    margin-left: 1em;
}

@media screen and (max-width: 768px) {
    .b-02 {
        padding: 0 15px;
    }
    .b-02 h2 {
        font-size: 38px;
        line-height: 1;
        letter-spacing: 2px;
    }
    .ttl:before,
    .ttl:after {
        border-top: 1px solid #fff;
        content: "";
        width: 30px;
    }

    .ttl {
        margin-top: 20px;
    }
}

.b-02 ul {
    list-style-type: none;
    padding-left: 10px;
}

.b-02 li {
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    color: #FFF;
    padding: 0;
}

.b-02 li {
    display: flex;
    align-items: first baseline;
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    color: #FFF;
    gap: 0 10px;
}

.b-02 li::before {
    transform: rotate(-45deg);
    width: .4em;
    height: .4em;
    border-bottom: 3px solid #FFF;
    border-right: 3px solid #FFF;
    content: '';
}

@media screen and (max-width: 768px) {
    .b-w {
        display: block;
    }
    .b-w .b-01 {
        width: 100%;
        margin: 0 auto;
    }
    .b-w .b-02 {
        width: 100%;
        margin: 0 auto;
    }
    .b-01 h2,
    span {
        font-size: 28px;
    }
    .b-01 h2 span {
        font-size: 28px;
    }
    .b-02 ul {
        padding: 0;
    }
    .b-02 li {
        font-size: 16px;
    }
}

/* Company */

#company {
    position: relative;
    background-color: rgb(255, 255, 255, .8);
    margin: 100px 0 0;
}

.company-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 30px 100px 30px;
}

.company-headline {
    font-size: 90px;
    margin-bottom: 60px;
    text-align: center;
}

.company-headline span {
    display: block;
    font-size: 24px;
    font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 768px) {
    .company-area {
        padding: 30px 10px 100px 10px;
    }

    .company-headline {
        font-size: 60px;
    }
}

.company-area table {
    width: 100%;
}

.company-area th {
    width: 30%;
    padding: 20px 10px;
    border-bottom: #cccccc 1px solid;
    font-size: 18px;
    font-weight: 500;
}

.company-area td {
    width: 70%;
    padding: 20px 10px;
    border-bottom: #cccccc 1px solid;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .1rem;
}

@media screen and (max-width: 768px) {
    .company-area th {
        font-size: 16px;
        padding: 20px 5px;
    }

    .company-area td {
        font-size: 16px;
        letter-spacing: 0;
        padding: 20px 5px;
    }
}

/* Contact */

#contact {
    position: relative;

}

.contact-area {
    max-width: 900px;
    margin: 100px auto 0;
    border-radius: 30px;
    padding-bottom: 100px;
}

.contact-headline {
    font-size: 90px;
    margin-bottom: 60px;
    margin-top: 0;
    text-align: center;
}

.contact-headline span {
    display: block;
    font-size: 24px;
    font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 768px) {
    #contact {
        padding: 0;
    }

    .contact-area {
        padding-bottom: 50px;
        margin-bottom: 50px;
        margin-top: 60px;
    }

    .contact-headline {
        font-size: 60px;
        margin-bottom: 0;
    }
}

.form {
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

@media screen and (max-width: 768px) {
    .form {
        margin-top: 40px;
    }
}

.form-Item {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .form-Item {
        padding-left: 14px;
        padding-right: 14px;
        padding-top: 16px;
        padding-bottom: 16px;
        flex-wrap: wrap;
    }
}

.form-Item-Label {
    width: 100%;
    max-width: 248px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .form-Item-Label {
        max-width: inherit;
        display: flex;
        align-items: center;
        font-size: 16px;
    }
}

.form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

@media screen and (max-width: 768px) {
    .form-Item-Label.isMsg {
        margin-top: 0;
    }
}

.form-Item-Label-Required {
    border-radius: 6px;
    margin-left: 10px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 44px;
    display: inline-block;
    text-align: center;
    background: #87B2D1;
    color: #fff;
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    .form-Item-Label-Required {
        border-radius: 4px;
        padding-top: 4px;
        padding-bottom: 4px;
        width: 32px;
        font-size: 10px;
    }
}

.form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #999;
}

@media screen and (max-width: 768px) {
    .form-Item-Input {
        margin-left: 0;
        /* margin-top: 18px; */
        height: 40px;
        flex: inherit;
        font-size: 15px;
    }
}

.form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .form-Item-Textarea {
        margin-top: 18px;
        margin-left: 0;
        height: 200px;
        flex: inherit;
        font-size: 15px;
    }
}

.form-Btn {
    border-radius: 6px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 280px;
    display: block;
    letter-spacing: 0.05em;
    background: #87B2D1;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    border: none;
    transition: .3s;
}

.form-Btn:hover {
    color: #ffffff;
    background-color: #e60033;
    cursor: pointer;

}

@media screen and (max-width: 768px) {
    .form-Btn {
        margin-top: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
        width: 160px;
        font-size: 16px;
    }
}

/* Footer */

.footer_index {
    text-align: center;
    padding: 50px;
    background-color: #87B2D1;
    position: relative;
    bottom: 0px;
    width: 100%;
}

.footer_contact {
    text-align: center;
    padding: 50px;
    background-color: #87B2D1;
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.footer-copy {
    font-size: 14px;
    color: #FFF;
}

@media screen and (max-width: 768px) {
    footer {
        padding: 30px 0;
    }
}


/* Mailform */
.thanks {
    padding: 50px 0;
    margin-top: 60px;
}

.thanks-area {
    max-width: 900px;
    margin: 20px auto;
    border-radius: 30px;
    background-color: #fff;
    padding: 50px 15px 30px 15px;
    text-align: center;
    font-size: 16px;
}

.thanks-headline {
    font-size: 38px;
    color: #87B2D1;
    margin-bottom: 60px;
    margin-top: 0;
}

.php-txt {
    font-size: 16px;
    color: #333;
}

.formTable {
    margin: 50px auto;
}

.formTable th {
    font-size: 16px;
    color: #333;
    padding: 20px;
    border-bottom: #ccc 1px solid;
    width: 30%;
}

.formTable td {
    font-size: 16px;
    color: #333;
    padding: 20px;
    border-bottom: #ccc 1px solid;
}


/* SVG */

svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.in-top {
    animation: rotate 25s linear infinite;
}

@media screen and (max-width: 768px) {
    .in-top {
        display: none;
    }
}

.in-bottom {
    animation: rotate 25s linear infinite;
}

@media screen and (max-width: 768px) {
    .in-bottom {
        display: none;
    }
}


/* PP */
.pp-ttl {
    font-size: 14px;
    padding: 0 15px;
}

.pp-ttl a {
    color: #87B2D1;
    text-decoration: none;
}

.pp-ttl a:hover {
    color: #e60033;
}

.pp-area {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px 100px 30px;
}

@media screen and (max-width: 768px) {
    .pp-area {
        padding: 0 15px 50px 15px;
    }
}

.pp-area h1 {
    color: #87B2D1;
    font-size: 60px;
    text-align: center;
    letter-spacing: .3rem;
}

.pp-area h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .pp-area h1 {
        font-size: 40px;
    }
    .pp-area h2 {
        font-size: 18px;
    }
}

.info {
    text-align: right;
}





   
