@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');
body {
    overflow-x: hidden;
    box-sizing: border-box;
}


.main {
    font-size: 62.5%;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}


/* scroll btn */
.toTopAnime {
    position: fixed;
    right: 2%;
    bottom: 2%;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #fff;
    border: solid 1px rgb(39,120,190);
}

.toTopAnime a {
    width: 100%;
    height: 100%;
    transform: translateY(0);
    display: block;

}

.scrollbtn {
    width: 1px;
    height: 25px;
    background: rgb(39,120,190);
    position: absolute;
    top: 15px;
    left: 25px;
    transform: translateX(-50%);
}
.scrollbtn2 {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 20px;
    height: 20px;
    border-top: solid 1px rgb(39,120,190);
    border-right: solid 1px rgb(39,120,190);
    transform: rotate(-45deg);
}

.toTopAnime.show {
    opacity: 1;
    visibility: visible;
}




/* hero section */

.hero {
    position: relative;
    margin: auto;
    width: 100%;
    height: 850px;
    background-image: url("./img/back.svg");
    background-position: center;
    background-size: cover;

}


/* ヘッダー */
header {
    width: 100vw;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    background-color: rgba(187, 143, 14, 0.807);
    z-index: 1;
}

.headcontainer {
    width: 100%;
    max-width: 1720px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    z-index: 300;
    padding-right: 5%;
}

.rogo-back {
    width: 20%;
    min-width: 90px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffffff;
    border-radius: 0px 0px 20px 0px;
}

.area_logo_header {
    width: 12%;
    min-width: 60px;
    max-width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5%;

}
.area_logo_header img {
    width: 100%;
    min-width: 60px;
}


/* ヘッダーナビ */
.nav_header {
    display: flex;
    align-items: center;
    z-index: 4;
}

.list_nav_header {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.list_nav_header > li:nth-child(2),
.list_nav_header > li:nth-child(3),
.list_nav_header > li:nth-child(4),
.list_nav_header > li:nth-child(5)
 {
    padding-right:50px;
}
.list_nav_header > li:first-child {
    opacity: 0;
    visibility: hidden;
    text-transform: capitalize;
    width: 0;
}
.list_nav_header > li:last-child {
    opacity: 0;
    visibility: hidden;
    text-transform: capitalize;
    width: 0;
}

.nav1 {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    line-height: 1.2em;
    position: relative;
    
}


.nav1::after {
    content: " ";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 40px;
    height: 40px;
    background: rgb(39,120,190);
    border-radius: 50px;
    transition: all .3s;

    transform: scale(0) translate(-50%, -50%);
    transform-origin: center;
    z-index: -1;
    
}
.nav1:hover::after {
    transform: scale(1, 1) translate(-50%, -50%);
}

/* hamburger menu */

.hamburger {
    width: 0;
    height: 0;
}
 /* 表示された時用のCSS */
 .nav-open .nav_header {
    right: 0;
  }
 
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }

/* top view */
.area_top_view {
   position: relative;
   margin: auto;
   max-width: 1720px;
    height: 850px;
}

.corp {
    position: absolute;
    top: 120px;
    left: 5%;
}
.corp-text {
    font-family: 'Noto Serif JP', serif;
    color: rgb(198, 106, 0);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5em;
}

.copy_area {
    position: absolute;
    top: 230px;
    left: 4%;
    z-index: 1;
}

.copy {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: rgb(39,120,190);
    font-weight: 900;
    font-size: 3rem;
    -ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
    	
     white-space: nowrap;
     letter-spacing: 0.1em;
     line-height: 1.5em;
     text-shadow: 5px 5px 1px rgb(255, 255, 255);

     transform: translateY(200px);
     visibility: hidden;
     opacity: 0;
     transition: 3s; 
     display: none;
 
}

.copy.copyanime {

    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
    position: relative;
    z-index: 5; 
}
.topimage {
    height: 1000px;
    position: absolute;
    bottom: 50px;
    left: 18%;
    opacity: 0;
    visibility: hidden; 
    transition: 1.2s; 
    display: none;
}
.topimage.imageanime {
    visibility: visible;
    opacity: 1;
}
.topimage > img {
    height: 100%;
    
}

.rogospace {
    width: 900px;
    position: absolute;
    bottom: -20px;
    right: 0px;
    z-index: 1;
    
}
.rogospace > img {
    width: 100%;
    opacity: 0.9;
}

/* scrolldown */

.scrolldown {
    display: block;
    padding-top: 70px;
    position: absolute;
    top: 60%;
    right: 5%;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    width: 150px;
    height: 100px;
    border-radius: 50%;
    border: solid 1px rgb(66, 167, 255);
    display: none;
  }

  .scrolldown.downanime {
    opacity: 1;
    visibility: visible;
  }
  .scrolldown::before {
    animation: scroll 3.5s infinite;
    border: solid rgb(66, 167, 255);
    border-width: 0 0 1px 1px;
    content: "";
    display: inline-block;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    transform: rotate(-45deg);
    width: 20px;
    height: 20px;
  }
  .scrolldown::after {
    animation: scroll 3.5s infinite;
    border: solid rgb(66, 167, 255);
    border-width: 0 0 1px 1px;
    content: "";
    display: inline-block;
    margin: auto;
    position: absolute;
    top: 10px;
    right: 0;
    left: 0;
    transform: rotate(-45deg);
    width: 20px;
    height: 20px;
  }

  .sdtxt {
    transform: translateY(30px);
    text-align: center;
    font-size: 1rem;
    font-weight: 100;
    color: rgb(66, 167, 255);
    display: block;
  }
  @keyframes scroll {
    0% {
      transform: rotate(-45deg) translate(0, 0);
    }
    80% {
      transform: rotate(-45deg) translate(-30px, 30px);
    }
    0%, 80%, 100% {
      opacity: 0;
    }
    40% {
      opacity: 1;
    }
  }
   


/* policy section */

.area_policy {
    background: rgb(230, 191, 75);
    background-image: url("./img/policyback.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.area_policy_back {
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(230, 191, 75);
    width: 70%;
    height: 100%;
 
}

.area_policy_back2 {
    position: absolute;
    bottom: -70px;
    left: -150px;
    background: url("./img/rogoshapewhite.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 700px;
    height: 500px;
 
}
.contents_area {
    width: 100%;
    max-width: 850px;
    margin: auto;
}

.contents_area2 {
    width: 70%;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.scanime {
    opacity: 0;
    visibility: hidden;
    transition: 2s;
    transform: translateY(20px);
}
.scanime.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

h2 {
    padding: 120px 5px 80px 5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 400px;
}

h2 p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    display: inline-block;
    line-height: 1.5em;
    position: relative;
}

h2 p::before {
    position: absolute;
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    top: -50px;
    left: -50px;
    z-index: -1;

}

.h2black {
        color: #000;
}
.circlew::before {
    border: solid 1px #fff;
}
.circley::before {
    border: solid 1px rgb(230, 191, 75);
}
h2 img {
    width: 300px;
}


.contents_area2 > p {
    width: 400px;
    color: #000;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    font-size: 1rem;
    margin: auto;
    line-height: 2.3em;
    letter-spacing: 0.02em;
    text-align: justify;
}

.rolling-container {
    width: 100%;
    margin-top: 100px;
    transform: translateY(100px);
}

/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  
  
  .rolling__wrap {
    display: flex;

  }
  
  .rolling__list {
    display: flex;
    list-style: none;
  }
  
  .rolling__list--left{
  /* 100sで移動*/
  animation :infinity-scroll-left 100s infinite linear 0.5s both;
  }
  
  .rolling__item {
    width: 300px;
    margin: 0 5px;
  }
  .rolling__item > img{
     width: 100%;
  }





/* work section */

.area_work {
    width: 100vw;
    background: rgb(230,191,75);
    background: linear-gradient(180deg, rgba(230,191,75,1) 0%, rgb(194, 158, 52) 100%);
 
}

.h2white {
    color: #fff;
}

.card2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;  
    align-items: center;
}

.card_wrap {
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    width: 400px;
    background-image: url("./img/workback.svg");
    background-repeat: no-repeat;
    background-size: 100%;
}

.card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
}

.card_pic {
    margin-top: 30px;
    width: 90%;
    position: relative;
}
.card_ttl {
    position: absolute;
    top: 25%;
    left: 25%;
    transform: translate(-50%, -50%);
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: rgb(39, 120, 190);
}

.card_pic > img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
}

.under_card {
    height: 150px;
    margin-bottom: 30px;
    display: inline-block;
    text-align: center;
}
.card_text {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    text-align: center;
    line-height: 2em;
    margin: 10px 0;
}

.card_btn {
    width: 250px;
    border-radius: 40px;
    border: solid 1px rgb(39, 120, 190);
    box-shadow: 5px 5px 10px rgba(41, 63, 117, 0.239);
    transition: all .1s;
}
.card_btn:hover {
    box-shadow: 3px 3px 5px rgba(112, 144, 225, 0.19);
    transform: translateY(2px);
}

.card_btn > a {
    width: 250px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgb(39, 120, 190);
    text-align: center;
    transition: .3s;
    position: relative;
    line-height: 3em;
}

.card_btn > a::after {
    content: "";
    display: block;
    position: absolute;
    top: 25%;
    right: -20px;
    width: 10px;
    height: 10px;
    border-right: solid 3px rgb(39, 120, 190);
    border-bottom: solid 3px rgb(39, 120, 190);
    transform: rotate(-45deg);
}

.order-corp {
    padding: 100px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.order-corp-ttl {
    width: 90%;
    height: 80px;
    margin: auto;
    border: solid 1px #fff;
}
.order-corp-ttl > p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 80px;
    
}

.order-corp > p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    line-height: 2.5em;
    margin-top: 20px;
}

/* info section */

.area_info {
    background: #F6F5EA;
}

/* table01 */
.table01 {
    width: 80%;
    font-family: 'Noto Serif JP', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    margin: auto;
   
}
.table01 tr {
    border-bottom: 1px solid #b5b1b1;
  }
  
  .table01 th,
  .table01 td {
    padding: 36px 0;
    border: none;
  }
  
  .table01 th {
    width: 30%;
  }
  
  .employ_wrap {
    margin: auto;
    width: 90%;
    padding: 80px 0;

  }

  .employ_wrap > p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgb(198, 106, 0);
    line-height: 2em;
    margin: auto;
    text-align: center;
    
  }
.employ {
    width: 85%;
    margin: 30px auto;

}
.employ > p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgb(198, 106, 0);
    line-height: 2em;
    margin: auto;
    text-align: justify;
}
.initialwrap {
    margin: auto;
    max-width: 100%;
    width: 95vw;
}
.initial img {
    max-width: 100%;
    width: 95vw;
    height: auto;
}
.initt {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgb(198, 106, 0);
    line-height: 1.3em;
    margin: 30px auto;
    text-align: left;
}
.orgchartwrap {
    margin: auto;
    max-width: 1133px;
    width: 100%;
    padding-bottom: 30px;
}
.orgchartwrap img {
    width: 100%;
    height: auto;
}
/* access section */
.area_access {
    background: #F6F5EA;
    padding-bottom: 220px;

}

.map {
    position: relative;    
    padding-top: 56.25%;

}
.map iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.address_text {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgb(0, 0, 0);
    line-height: 3em;
}

/* contact section */

.area_contact {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.contact_wrap {
    width: 100%;
    background-image: url("./img/contactback.svg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

/* form */
#formwrap {
    padding-bottom: 200px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
}

#form {
    padding-top: 32px;
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 32px;
    background-color: transparent;
}

.formbox > li {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgb(0, 0, 0);
    line-height: 2em;
}



.g_form {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 16px;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    margin-top: 5px;
    border-style: none;
}

.g_form_text {
    border-radius: 4px;
    border-style: none;
    background-color: #FFFFFF;
    min-height: 168px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 16px;
    box-sizing: border-box;
    display: block;
    margin-top: 8px;
}

.formbutton {
    border-radius: 4px;
    background-color: rgb(39, 120, 190);
    border-style: none;
    -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.43);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.43);
    color: #FFFFFF;
    line-height: 48px;
    width: 120px;
    cursor: pointer;
    margin: 0 auto;
}


#form ul {
    padding: 0px;
    margin: 0;
    list-style-type: none;
}

#form ul li {
    margin-bottom: 24px;
}

.form_submit {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankswrap {
    margin: 50px auto;
    max-width: 960px;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(230, 191, 75);
    border-radius: 10px;
    padding: 50px 50px;
}

.thanksform {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgb(0, 0, 0);
    line-height: 2em;
}

.thanksform > h3 {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.5em;
    margin-bottom: 30px;
}
/* footer */

.area_footer {
    background: rgb(230,191,75);
background: linear-gradient(180deg, rgba(230,191,75,1) 0%, rgb(194, 158, 52) 100%);
    padding: 50px 0 10px 0;
}

.footer_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer_link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.footer_link p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}
.vert {
    position: relative;
    padding-right: 50px;
}
.vert::after {
    position: absolute;
    top: 0;
    right: 25px;
    content: "";
    display: block;
    width: 1px;
    height: 110%;
    background-color: #fff;
}

.footer_link > ul > li {
    display: inline-block;
}
.footer_link > ul > li > a {
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: rgb(39, 120, 190);
    transition: .2s;
    
}
.footer_link > ul > li > a:hover {
    color: rgb(84, 162, 231);
}

.footer_wrap img {
    width: 100px;
    margin-bottom: 5px;
}

.company {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.company h3, 
.company p {
    text-decoration: none;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
}

.footer_tel {
    text-decoration: none;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #fff;
    margin-top: 5px;
    font-weight: 500;
}
.footer_tel > .tel-tell {
    font-size: 0.8rem;
}

.footer_tel > .tel-number {
    font-size: 1.6rem;
    letter-spacing: 0.01em;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
}

.copyright {
    font-size: 10px;
    font-weight: 300;
    color: #fff;
}


/* animation------------------------------- */

.logoanime {
    text-align: center;
}

@keyframes sun {
  
    0% {
        transform: translate(10px, 10px);
    }
    70% {
        transform: translate(0px, 0px);
    }
    100% {
        transform: translate(0px, 0px);
    }

}

@keyframes lkira {
   

    0% {
        transform: scale(0.2) translate(30px, -10px);
    }
    60% {
        transform: scale(0.2) translate(30px, -10px);
    }
    100% {
        transform: scale(1) translate(0px, 0px);
    }
}

@keyframes rkira {
    
    0% {
        transform: scale(0.2) translate(-20px, 0px);
    }
    70% {
        transform: scale(0.2) translate(-20px, 0px);
    }
    100% {
        transform: scale(1) translate(0px, 0px);
    }
}
.sun {
    transform-origin: center;
    transform: translate(10px, 10px);
    animation: 3s linear 0s infinite normal forwards running sun;
}

.leftkira {
    transform-origin: center;
    transform: scale(0.2) translate(30px, -10px);
    animation: 3s ease-out 2.8s infinite normal forwards running lkira;
}

.rightkira {
    transform-origin: center;
    transform: scale(0.2) translate(-20px, 0px);
    animation: 3s ease-out 2.5s infinite normal forwards running rkira;
}


