body {
    font-size: 1vw;
    background-color: #f7f7f7;
    font-family: "Noto Serif JP", serif;
    overflow-x: hidden;
}
/* ----------------------------------------------------
   header-pc
---------------------------------------------------- */
#header-pc {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: #fff;
    width: 100%;
}
#header-pc ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 1.1vw;
    font-weight: bold;
}
#logo-img {
    padding: 0 3vw;
}
#logo-img img {
    display: block;
    width: 7vw;
    height: auto;
}
#header-btn-left {
    margin-left: 12vw;
}
.header-btn {
    margin: 0 1vw;
    width: 10vw;
    text-align: center;
}
.header-btn a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 1% 0;
}
.header-tel-btn a,
.header-mail-btn a {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    padding: 1.2vw 3vw;
    color: #fff;
    text-decoration: none;
}
.header-tel-btn {
    margin-left: 3vw;
}
.header-tel-btn a {
    background-color: #37b5ff;
}
.header-tel-btn img {
    margin-bottom: 0.3vw;
    width: 2vw;
}
.header-mail-btn a {
    background-color: #ea0e00;
    padding: 1.2vw 2.5vw;
}
.header-mail-btn img {
    margin-bottom: 0.3vw;
    width: 2vw;
}
#header-pc .dropdown {
    display: none !important;
}
#header-pc .has-dropdown:hover .dropdown {
    display: block !important;
}
.has-dropdown {
    position: relative;
}
.has-dropdown a {
    cursor: pointer;
}
.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    margin: 0;
    padding: 0.5vw 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 99999;
}
.has-dropdown:hover .dropdown {
    display: block;
}
.has-dropdown .dropdown li {
    margin: 0;
}
.has-dropdown .dropdown li a {
    display: block;
    padding: 0.8vw 2vw;
    font-size: 1vw;
    color: #333;
    text-decoration: none;
}
.has-dropdown .dropdown li a:hover {
    background-color: #f5f5f5;
}
/* -------------------------------------------------------
header-mobile
------------------------------------------------------- */
.header-mobile-logo-area {
    position: fixed;
    z-index: 9999;
    top: 0;
    display: flex;
    width: 100%;
    background-color: #fff;
}
#logo-mobile-img {
    padding: 4vw;
    width: 30vw;
}
#g-nav {
    position: fixed;
	z-index: -1;
	display: none;
	top: 0;
	width: 100%;
    height: 100vh;
	transition: all 0.5s;
    background-color: #37b5ff;
}
#g-nav.panelactive {
	display: block;
	z-index: 999;
}
#g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
.nav-area {
    display: flex;
    flex-direction: column;
    margin-top: 30%;
    margin-left: 10%;
    font-size: 4.5vw;
    font-weight: bold;
    color: #fff;
}
.margin-left-li {
    margin-left: 4.5vw;
}
.nav-area ul li {
    margin-bottom: 8%;
}
.mobile-contact-area {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 5%;
    font-size: 5vw;
    color: #fff;
    font-weight: bold;
}
.mobile-contact-area img {
    width: 8vw;
    margin-bottom: 1vw;
}
.mobile-tel-btn {
    width: 30vw;
    background-color: #ea0e00;
    padding: 3% 0;
    margin-right: 15%;
    border-radius: 5px;
    font-size: 5vw;
}
.mobile-mail-btn {
    width: 30vw;
    background-color: #ea0e00;
    padding: 3% 0;
    border-radius: 5px;
    font-size: 5vw;
}
#g-nav .privacy-area {
    margin-top: 10%;
    margin-bottom: 25vw;
    margin-left: 10%;
    font-size: 4.5vw;
    font-weight: bold;
    color: #fff;
}
.open-btn {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2%;
    z-index: 9999;
    padding: 8%;
	cursor: pointer;
}
.open-btn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 3px;
    border-radius: 2px;
	background-color: #000;
  	width: 45%;
}
.open-btn span:nth-of-type(1) {
	top: 40%;	
}
.open-btn span:nth-of-type(2) {
	top: 50%;
}
.open-btn span:nth-of-type(3) {
	top: 60%;
}
.open-btn.active span:nth-of-type(1) {
    top: 50%;
    left: 26%;
    transform: rotate(-45deg);    
    width: 50%;
}
.open-btn.active span:nth-of-type(2) {
	opacity: 0;
}
.open-btn.active span:nth-of-type(3){
    top: 50%;
    left: 26%;
    transform: rotate(45deg);
    width: 50%;
}
@media screen and (min-width: 768px) {
    #header-mobile {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    #header-pc {
        display: none;
    }
}
/* ----------------------------------------------------
top-img
---------------------------------------------------- */
.main-img-area {
    position: relative;
}
#top-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center bottom;
}
#top-img-mobile {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.main-img-area h3 {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    font-family: "Rampart One", sans-serif;
    font-size: 10vw;
    color: #37b5ff;
}
@media screen and (min-width: 768px) {
    #top-img-mobile {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    #top-img {
        display: none;
    }
    .main-img-area h3 {
        text-align: center;
        position: absolute;
        top: 12%;
        left: 50%;
        transform: translateY(0%);
        transform: translateX(-50%);
        font-family: "Rampart One", sans-serif;
        font-size: 22vw;
        width: 100%;
    }
}
/* ----------------------------------------------------
wrap02
---------------------------------------------------- */
.wrap02 {
    position: relative;
} 
#wrap02-img {
    width: 100%;
}
.wrap02-textarea {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    text-align: center;
    width: 50vw;
    padding: 3vw 5vw 6vw;
    background-color: #fff;
    font-size: 1.2vw;
    font-weight: bold;
    line-height: 1.5;
}
.wrap02-textarea h2 {
    margin-bottom: 5%;
    font-size: 3vw;
    color: #37b5ff;
}
.wrap02-textarea img {
    margin-bottom: 5%;
    width: 2vw;
}
.wrap02-textarea p {
    text-align: left;
}
.wrap02-btn-area {
    position: relative;
}
.wrap02-btn-area a {
    position: absolute;
    top: 2vw;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding: 1.5vw 3vw;
    background-color: #ea0e00;
    font-size: 1.5vw;
    color: #fff;
    box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 767px) {
    #wrap02-img {
        width: 100%;
    }
    .wrap02-textarea {
        position: absolute;
        left: 50%;
        bottom: -55vw;
        transform: translateX(-50%);
        text-align: center;
        width: 90vw;
        padding: 3vw 5vw 6vw;
        font-size: 3.5vw;
    }
    .wrap02-textarea h2 {
        margin-bottom: 5%;
        font-size: 4.5vw;
    }
    .wrap02-textarea img {
        margin-bottom: 5%;
        width: 5vw;
    }
    .wrap02-textarea p {
        text-align: left;
    }
    .wrap02-btn-area {
        position: relative;
    }
    .wrap02-btn-area a {
        position: absolute;
        top: 2vw;
        padding: 1.5vw 8vw;
        font-size: 4.5vw;
    }
}
/* ----------------------------------------------------
wrap03
---------------------------------------------------- */
.wrap03 img {
    width: 100%;
}
.bbs-area {
    margin-top: -8.5vw;
    position: relative;
    height: 7vw;
}
.bbs {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    overflow: hidden;
    font-size: 12vw;
    font-weight: bold;
    white-space: nowrap;
    color: #fff;
    text-shadow:
        3px 3px 0 #37b5ff,
        -3px 3px 0 #37b5ff,
        -3px -3px 0 #37b5ff,
        3px -3px 0 #37b5ff;
}
.bbs ul {
    display: flex;
    animation: flowing 20s linear infinite;
    transform: translateX(100%);
}
@keyframes flowing {
    0% { transform:translateX(0); }
    100% { transform:translateX(-100%); }
}
.bbs ul li {
    display: inline-block;
    margin-right: 5%;
}
@media screen and (max-width: 767px) {
    .bbs-area {
        display: none;
    }
}
/* ----------------------------------------------------
news-area
---------------------------------------------------- */
.news-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15%;
}
#news-head-img {
    width: 70vw;
    object-fit: cover;
}
.news-text {
    margin-top: 2%;
    padding: 1% 2%;
    width: 70vw;
    border-bottom: solid 1px #000;
}
.day-tag-area {
    display: flex;
    align-items: center;
    width: 100%;
}
.news-tag {
    margin-left: 5%;
    padding: 1% 5%;
    color: #fff;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    background-color: #ea0e00;
}
.news-text-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2%;
    font-size: 1.5vw;
    font-weight: bold;
}
.news-arrow-img {
    width: 2vw;
}
@media screen and (max-width: 767px) {
    .news-area {
        margin-top: 65vw;
    }
    #news-head-img {
        width: 90vw;
        object-fit: cover;
    }
    .news-text {
        margin-top: 4%;
        padding: 1% 1%;
        width: 90vw;
    }
    .day-tag-area {
        font-size: 3vw;
    }
    .news-tag {
        margin-left: 10%;
        padding: 1% 8%;
    }
    .news-text-title {
        margin-top: 3%;
        font-size: 4vw;
    }
    .news-arrow-img {
        width: 5vw;
    }
}
/* ----------------------------------------------------
wrap04
---------------------------------------------------- */
.wrap04 {
    position: relative;
    margin-top: 15%;
}
#wrap04-img {
    width: 100%;
}
.wrap04-text {
    position: absolute;
    top: 30%;
    left: 10%;
    font-weight: bold;
    color: #fff;
}
.wrap04-text h3 {
    font-size: 5vw;
}
.wrap04-text p {
    font-size: 1.5vw;
}
.service-area {
    position: absolute;
    width: 100%;
    top: 70%;
}
.service-upper-area {
    display: flex;
    justify-content: center;
    margin-bottom: 3%;
}
.service-bottom-area {
    display: flex;
    justify-content: center;
}
.service-card {
    position: relative;
    background-color: #fff;
    width: 33vw;
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.3);
}
.right-space {
    margin-right: 5vw;
}
.service-card-img {
    width: 100%;
    height: 20vw;
    object-fit: cover;
}
.service-card-text {
    padding: 2vw;
}
.service-card-text-head {
    display: flex;
    align-items: center;
    font-weight: bold;
}
.service-card-text-head h4 {
    margin-right: 8%;
    font-size: 2.5vw;
}
.service-card-text-head p {
    font-size: 1.2vw;
}
.service-card-text02 {
    margin-top: 5%;
    width: 80%;
    font-size: 1.1vw;
    font-weight: bold;
}
.service-card-icon {
    position: absolute;
    width: 5vw;
    right: 5%;
    bottom: 9%;
}
@media screen and (max-width: 767px) {
    .wrap04 {
        position: relative;
        margin-top: 25%;
    }
    .wrap04-text {
        top: 30%;
        left: 5%;
    }
    .wrap04-text h3 {
        font-size: 7vw;
    }
    .wrap04-text p {
        font-size: 3.5vw;
    }
    .service-area {
        position: absolute;
        width: 100%;
        top: 85%;
    }
    .service-upper-area {
        flex-direction: column;
        margin-bottom: 0;
    }
    .service-bottom-area {
        flex-direction: column;
    }
    .service-card {
        position: relative;
        margin: 0 10vw 5vw 10vw;
        width: 80vw;
    }
    .right-space {
        margin-right: 0;
    }
    .service-card-img {
        width: 80vw;
        height: 40vw;
        object-fit: cover;
        object-position: center center;
    }
    .service-card-text {
        padding: 5% 5%;
    }
    .service-card-text-head h4 {
        margin-right: 8%;
        font-size: 5.5vw;
    }
    .service-card-text-head p {
        font-size: 2.5vw;
    }
    .service-card-text02 {
        margin-top: 5%;
        width: 90%;
        font-size: 3.5vw;
    }
    .service-card-icon {
        width: 10vw;
        right: 2.5%;
        bottom: 9%;
    }
}
/* ----------------------------------------------------
wrap05
---------------------------------------------------- */
.wrap05 {
    display: flex;
    margin: 65vw 10% 5% 10%;
    width: 80%;
}
.wrap05 a {
    margin-right: 3%;
    width: 100%;
}
.wrap05 img {
    width: 100%;
}
.wrap05 a:last-child {
    margin-right: 0;
}
@media screen and (max-width: 767px) {
    .wrap05 {
        display: flex;
        margin: 300vw 5% 20vw 5%;
        width: 90%;
    }
    .wrap05 a {
        margin-right: 5%;
    }
}
/* ----------------------------------------------------
wrap06
---------------------------------------------------- */
.wrap06 {
    position: relative;
}
#wrap06-img {
    width: 100%;
}
.wrap06-text-head {
    position: absolute;
    top: 7%;
    left: 10%;
    font-weight: bold;
    color: #37b5ff;
}
.wrap06-text-head h3 {
    font-size: 4vw;
}
.wrap06-text-head p {
    font-size: 1.5vw;
}
.wrap06-card-area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    width: 70%;
}
.wrap06-card {
    position: relative;
    box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.3);
}
.wrap06-card img {
    width: 100%;
}
.wrap06-card-text {
    position: absolute;
    left: 5%;
    bottom: 13%;
    font-weight: bold;
    color: #fff;
}
.wrap06-card-text h4 {
    margin-bottom: 5%;
    font-size: 2.5vw;
}
@media screen and (max-width: 767px) {
    .wrap06-text-head {
        position: absolute;
        top: 7%;
        left: 5%;
    }
    .wrap06-text-head h3 {
        font-size: 7vw;
    }
    .wrap06-text-head p {
        font-size: 3.5vw;
    }
    .wrap06-card-area {
        top: 110%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: 90%;
    }
    .wrap06-card {
        margin-bottom: 5vw;
        width: 80%;
    }
    .wrap06-card img {
        width: 100%;
    }
    .wrap06-card-text {
        position: absolute;
        left: 5%;
        bottom: 13%;
        font-size: 3vw;
    }
    .wrap06-card-text h4 {
        margin-bottom: 5%;
        font-size: 4.5vw;
    }
}
/* ----------------------------------------------------
wrap07
---------------------------------------------------- */
.wrap07 {
    margin-top: 10%;
}
#wrap07-img {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .wrap07 {
        margin-top: 70%;
    }
}
/* ----------------------------------------------------
contact-area
---------------------------------------------------- */
.contact-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2% 5%;
    width: 100%;
    background: rgb(24,23,146);
    background: linear-gradient(90deg, rgba(24,23,146,1) 0%, rgba(0,133,183,1) 100%);
}
#contact-img {
    width: 50vw;
}
#contact-img02 {
    width: 30vw;
}
@media screen and (max-width: 767px) {
    .contact-area {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        padding: 10vw;
        width: 100%;
        background: rgb(24,23,146);
        background: linear-gradient(90deg, rgba(24,23,146,1) 0%, rgba(0,133,183,1) 100%);
    }
    #contact-img {
        width: 100vw;
    }
    #contact-img02 {
        margin-top: 10vw;
        width: 70vw;
    }
}
/* ----------------------------------------------------
footer
---------------------------------------------------- */
footer {
    display: flex;
    width: 100%;
    padding: 8% 0 8% 8%;
    font-size: 1.2vw;
    color: #fff;
    background-color: #191919;
}
.footer-area01, .footer-area02, .footer-area03 {
    margin-right: 8%;
}
footer ul li {
    margin-bottom: 20%;
}
footer ul li:last-child {
    margin-bottom: 0;
}
.font-big {
    font-size: 1.5vw;
    font-weight: bold;
}
.copy-light-area {
    padding: 1% 0;
    text-align: center;
    color: #fff;
    background-color: #191919;
}
@media screen and (max-width: 767px) {
    footer {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 15% 5% 4% 5%;
        font-size: 4vw;
    }
    .footer-area01, .footer-area02, .footer-area03 {
        margin-right: 0;
    }
    footer ul li {
        margin-bottom: 8%;
    }
    footer ul li:last-child {
        margin-bottom: 8%;
    }
    .footer-area02 ul li:not(:first-child), .footer-area03 ul li:not(:first-child) {
        margin-left: 4.5vw;
    }
    .font-big {
        font-size: 4.5vw;
    }
    .copy-light-area {
        padding: 3% 0;
        font-size: 2.5vw;
    }
}