html {font-size: 62.5%;}
body {
  font-size: 1.8rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.94;
  color: #000;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
ul,ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
a:hover,a:hover img {
  opacity: 0.8;
}
img {
  height: auto;
}
table {
  border-collapse: collapse;
}

 /* Layout
---------------------------------------- */
.sp-only {
  display: none;
}
.fb {
  display: flex;
}
.bg-grad {
  background: rgb(185,255,234);
  background: linear-gradient(90deg, rgba(185,255,234,0.4) 0%, rgba(160,220,153,0.4) 50%, rgba(255,221,83,0.4) 100%);
}
.bg-orange {
  background: rgba(255, 163, 32, 0.15);
}

@media (max-width: 950px) {

}
@media (max-width: 519px) {
  body {
    font-size: clamp(1.2rem, 3.75vw, 2.4rem);
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}

 /* Header
---------------------------------------- */
.header {
  height: 100px;
  width: 100%;
  position: fixed;
  position: sticky;
  background: #fff;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  z-index: 99;
}
.openbtn,
.btn-hdr-contact {
  display: none;
}
.header .logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.header .logo img {
  height: 45px;
  margin: 0 29px;
}
#g-nav {
  display: flex;
  align-items: center;
  margin-right: 34px;
}
.gnav ul {
  display: flex;
}
.gnav li {
  margin: 0 min(1.68vw, 1em);
}
.gnav li a {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  color: #666;
}
.gnav li a:hover {
  color: #000;
}
.gnav li a span {
  display: none;
}
.gnav ul.submenu {
  display: none;
}
.hdr-info {
  display: none;
}

@media (max-width: 950px) {
  .gnav ul {
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}
@media (max-width: 519px) {
  .header {
    height: min(15.625vw, 100px);
    display: block;
  }
  .header .fb {
    background: #fff;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
  }

  .openbtn{
    display: flex;
    position:relative;
    z-index: 9999;
    cursor: pointer;
    width: min(15.625vw, 100px);
    height: 100%;
  }
  .openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    height: 2px;
    background-color: #999;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top:35%;	
  }
  .openbtn span:nth-of-type(2) {
    top:50%;
  }
  .openbtn span:nth-of-type(3) {
    top:65%;
  }
  .openbtn.active span {
    top: 50%;
    transform: translateX(-50%) translateY(-2px) rotate(-45deg);
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3){
    transform: translateX(-50%) translateY(-2px) rotate(45deg);
  }
  .btn-hdr-contact {
    display: block;
    width: min(15.625vw, 100px);
    height: 100%;
    position: relative;
    z-index: 9999;
  }
  .btn-hdr-contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .btn-hdr-contact img {
    width: min(6.4vw, 41px);
    height: min(4.6875vw, 30px);
  }

  .header .logo {
    position: relative;
    z-index: 9999;
  }
  .header .logo img {
    width: min(45.3125vw, 290px);
    height: auto;
    margin: 0 1em;
  }

  #g-nav{
    display: block;
    position:fixed;
    z-index: 99;
    top:-120%;
    left:0;
    width:100%;
    height: 100vh;
    background:#fff;
    transition: all 0.6s;
  }

  #g-nav.panelactive{
    top: 0;
  }

  #g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 99; 
    width: 100%;
    height: calc(100vh - min(15.625vw, 100px));
    margin-top: min(15.625vw, 100px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #g-nav .gnav {
    background: #ffa320;
    margin-right: 0;
    width: 100%;
  }
  .gnav ul {
    display: block;
    justify-content: inherit;
  }
  .gnav li {
    margin: 0 5vw;
    border-bottom: 1px solid #fff;
  }
  .gnav li:last-child {
    border-bottom: none;
  }
  .gnav li a {
    font-size: clamp(1.7rem, 5.468vw, 3.5rem);
    color: #fff;
    line-height: 1;
    padding: 5vw 0;
    display: block;
  }
  .gnav li a span {
    display: inline;
    font-size: 0.75em;
    font-weight: bold;
    color: #000;
    padding-left: 1em;
  }
  .gnav ul.submenu {
    display: flex;
  }
  .hdr-info {
    display: block;
    margin: 6.25vw 5vw 5vw;
  }
  .hdr-info .info-title {
    font-size: clamp(1.2rem, 3.75vw, 2.4rem);
    font-weight: bold;
  }
  .hdr-info .number a {
    color: #ffa320;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    line-height: 1;
  }
  .hdr-info .work-time,
  .hdr-info .address {
    font-size: clamp(1rem, 3.125vw, 2rem);
  }
  .hdr-info .sns-link {
    justify-content: inherit;
    margin: 6.25vw 0 3.75vw;
    gap: min(4.68vw, 30px);
  }
  .hdr-info .sns-link img {
    width: min(7.8125vw, 50px);
  }
  .hdr-info h2 {
    font-size: clamp(1.3rem, 4.06vw, 2.6rem);
  }
}

 /* Float btn contact
---------------------------------------- */
.float-bnr-contact {
  display: none;
  width: 292px;
  background: #ffb520;
  border-radius: 10px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  text-align: center;
  line-height: 1;
  padding: 26px 28px 18px;
}
.float-bnr-contact::before {
  display: block;
  content: "";
  width: 99px;
  height: 103px;
  background: url(../images/img_mascot.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-30px);
  z-index: -1;
}
.float-bnr-contact .contact-link {
  border-bottom: 1px solid #fff;
  padding-bottom: 14px;
  margin-bottom: 13px;
}
.float-bnr-contact .contact-link a {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  font-weight: bold;
}
.float-bnr-contact .contact-link a::before {
  display: inline-block;
  content: "";
  width: 33px;
  height: 24px;
  background: url(../images/icon_mail.svg) no-repeat;
  background-size: contain;
  margin-right: 10px;
  transform: translateY(2px);
}
.float-bnr-contact p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.3125;
}
.float-bnr-contact .pc-only {
  display: block;
}
.float-bnr-contact .btn-close {
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 13px;
  right: 13px;
}
.float-bnr-contact .btn-close::before,
.float-bnr-contact .btn-close::after {
  display: inline-block;
  content: "";
  width: 27px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
}
.float-bnr-contact .btn-close::before {
  transform: rotate(45deg);
}
.float-bnr-contact .btn-close::after {
  transform: rotate(-45deg);
}

@media (max-width: 519px) {
  .float-bnr-contact {
    width: min(74.5vw, 477px);
    bottom: 3.6vw;
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
    padding: 3.6vw 7vw 2.5vw 18.75vw;
  }
  .float-bnr-contact::before {
    width: min(18.6vw, 119px);
    height: min(19.2vw, 123px);
    top: 0;
    left: 2.34vw;
    transform: translateY(-4vw);
  }
  .float-bnr-contact .contact-link {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1.5vw;
  }
  .float-bnr-contact .contact-link a {
    font-size: clamp(1.8rem, 5.625vw, 3.6rem);
  }
  .float-bnr-contact .contact-link a::before {
    width: min(6.25vw, 40px);
    height: min(4.68vw, 30px);
    margin-right: 2vw;
  }
  .float-bnr-contact p {
    font-size: clamp(1rem, 3.125vw, 2rem);
  }
  .float-bnr-contact .pc-only {
    display: none;
  }
  .float-bnr-contact .btn-close {
    width: min(6vw, 30px);
    height: min(6vw, 30px);
    top: 2vw;
    right: 2.8vw;
  }
  .float-bnr-contact .btn-close::before,
  .float-bnr-contact .btn-close::after {
    width: min(6.5vw, 42px);
    top: 50%;
    left: 0;
  }
  .float-bnr-contact .btn-close::before {
    transform: rotate(45deg);
  }
  .float-bnr-contact .btn-close::after {
    transform: rotate(-45deg);
  }
}

 /* Footer
---------------------------------------- */
.ftr-bnr-area {
  padding: min(17vw, 170px) 30px min(12vw, 120px);
  position: relative;
}
.ftr-bnr-area .bg-grad {
  display: block;
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.ftr-bnr-area ul {
  display: flex;
  justify-content: space-between;
  width: 1280px;
  width: min(100%, 1280px);
  margin: 0 auto;
}
.ftr-bnr-area ul li {
  width: min(48%, 600px);
}
.ftr-contact-area {
  background-image: url(../images/bg_ftr_contact.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: min(14vw, 140px) 6% min(10vw, 100px);
}
.ftr-contact-area h2 {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 45px;
}
.ftr-contact-area h2 span {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  margin-top: 25px;
  padding-top: 15px;
  position: relative;
}
.ftr-contact-area h2 span::before {
  display: block;
  content: "";
  background: #fff;
  width: 100px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.ftr-contact-area p {
  color: #fff;
  font-size: 2rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 45px;
}
.ftr-contact-area .fb {
  justify-content: center;
  gap: 34px;
}
.btn-contact {
  width: min(77.8%, 440px);
}
.btn-contact a{
  display: block;
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(4,0,0,0.5);
  height: 170px;
  line-height: 1;
}
.btn-contact a:hover {
  opacity: 1;
}
.btn-contact.tel a {
  background: #fff;
}
.btn-contact.mail a {
  background: #f39700;
  color: #fff;
}
.btn-contact.tel h3,
.btn-contact.mail h3 {
  font-size: 2rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  padding-top: 33px;
}
.btn-contact.tel .number {
  color: #f39700;
  font-size: 4rem;
  font-size: clamp(2rem, 4vw, 4rem);
  font-family: 'Roboto', sans-serif;
  margin: 18px 0 13px;
}
.btn-contact.tel .work-time {
  font-size: 1.6rem;
}
.btn-contact .contact-link {
  font-size: 3.3rem;
  font-family: 'Roboto', sans-serif;
  margin-top: 35px;
}
.btn-contact .contact-link::before {
  display: inline-block;
  content: "";
  width: 37px;
  height: 27px;
  background-image: url(../images/icon_mail.svg);
  background-size: contain;
  margin-right: 10px;
  transform: translateY(2px);
}
.pagetop {
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(185,255,234);
  background: linear-gradient(90deg, rgba(185,255,234,1) 0%, rgba(160,220,153,1) 50%, rgba(255,221,83,1) 100%);
}
.pagetop a {
  display: block;
  width: 30px;
  height: 30px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg) translateY(50%);
}
.ftr-nav-area {
  display: flex;
  justify-content: center;
  gap: 120px;
  gap: min(6vw, 120px);
  padding: 80px 30px 0;
}
.ftr-nav-area .ftr-info {
  letter-spacing: 0.1em;
}
.ftr-nav-area .ftr-info h2 {
  font-size: inherit;
  margin-top: 40px;
}
.ftr-nav-area .ftr-info p {
  font-size: 1.6rem;
}
.ftr-nav-area .ftr-info .sns-link {
  gap: 25px;
  margin-top: 28px;
}
.ftr-nav-area .ftr-nav {
  flex-shrink: 0;
}
.ftr-nav-area .ftr-nav ul {
  column-count: 2;
  gap: 195px;
  gap: min(5vw, 195px);
}
.ftr-nav-area .ftr-nav li {
  background: url(../images/arw_gray.svg) no-repeat;
  background-position: center left;
  background-size: 8px 12px;
  padding-left: 26px;
  line-height: 2.5;
}
.ftr-nav-area .ftr-nav a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
}
.copyright {
  color: #666;
  text-align: center;
  font-size: 1.4rem;
  padding: 40px 6%;
}

@media (max-width: 950px) {
  .ftr-nav-area .ftr-nav ul {
    column-count: 1;
  }
}
@media (max-width: 519px) {
  .ftr-bnr-area {
    padding: 30vw 5.46vw 6.25vw;
    position: relative;
  }
  .ftr-bnr-area .bg-grad {
    height: 100vw;
  }
  .ftr-bnr-area ul {
    display: block;
  }
  .ftr-bnr-area ul li {
    width: 100%;
    margin-bottom: 6.25vw;
  }
  .ftr-contact-area {
    padding: 15vw 6% 12.3vw;
  }
  .ftr-contact-area h2 {
    font-size: clamp(2.5rem, 7.8vw, 5rem);
    margin-bottom: 7.8vw;
  }
  .ftr-contact-area h2 span {
    font-size: clamp(1.3rem, 4vw, 2.6rem);
    margin-top: 5.625vw;
    padding-top: 2.5vw;
  }
  .ftr-contact-area h2 span::before {
    width: min(15.625vw, 100px);
  }
  .ftr-contact-area p {
    font-size: clamp(1.2rem, 3.75vw, 2.4rem);
    line-height: 1.46;
    margin-bottom: 7.8vw;
  }
  .ftr-contact-area .fb {
    flex-wrap: wrap;
    gap: inherit;
  }
  .btn-contact {
    width: min(77.65vw, 497px);
    margin-bottom: 7.5vw;
  }
  .btn-contact a{
    height: min(30vw, 192px);
  }
  .btn-contact.tel h3,
  .btn-contact.mail h3 {
    font-size: clamp(1.35rem, 4.2vw, 2.7rem);
    padding-top: 5.15vw;
  }
  .btn-contact.tel .number {
    font-size: clamp(2.3rem, 7.18vw, 4.6rem);
    margin: 3.125vw 0 2.65vw;
  }
  .btn-contact.tel .work-time {
    font-size: clamp(1rem, 3.125vw, 2rem);
  }
  .btn-contact .contact-link {
    font-size: clamp(1.8rem, 5.78vw, 3.7rem);
    margin-top: 6.25vw;
  }
  .btn-contact .contact-link::before {
    width: min(6.56vw, 42px);
    height: min(4.68vw, 30px);
  }
  .pagetop {
    height: 15.625vw;
  }
  .pagetop a {
    width: 7.8125vw;
    height: 7.8125vw;
  }
  .ftr-nav-area {
    gap: inherit;
    padding: 8.43vw 6.25vw 0;
  }
  .ftr-nav-area .ftr-info {
    letter-spacing: 0.05em;
  }
  .ftr-nav-area .ftr-info .logo-ftr img {
    width: min(66.6%, 426px);
    margin: 0 auto;
  }
  .ftr-nav-area .ftr-info h2 {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    margin-top: 9.375vw;
  }
  .ftr-nav-area .ftr-info p {
    font-size: clamp(1.2rem, 3.75vw, 2.4rem);
  }
  .ftr-nav-area .ftr-info .sns-link {
    gap: min(4.68vw, 25px);
    margin-top: 6.25vw;
  }
  .ftr-nav-area .ftr-nav {
    display: none;
  }
  .copyright {
    font-size: clamp(1rem, 3.125vw, 1.4rem);
    padding: 5.6vw 3%;
  }
}

 /* Pages
---------------------------------------- */
.inner-l {
  width: 1024px;
  width: min(90%, 1024px);
  margin: 0 auto;
}
.inner-m {
  width: 784px;
  width: min(90%, 784px);
  margin: 0 auto;
}
.cont-title {
  color: #ffa320;
  font-family: 'Roboto', sans-serif;
  font-size: 8rem;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 1;
  padding: 0 min(3.6%, 70px);
}
.cont-title span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: #000;
  display: block;
  letter-spacing: 0.1em;
  padding-top: min(1.5vw, 15px);
}
.cont-catch {
  font-size: 3.5rem;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: min(100%, 260px);
  color: #fff;
  line-height: 1;
  font-weight: bold;
  border-radius: 35px;
}
.btn.btn-bk a {
  background-color: #333;
}
.btn.btn-or a {
  background-color: #f39700;
}
.pagetitle-area {
  display: flex;
  align-items: center;
  margin: 60px 0 70px;
}
.pagetitle-area .pagetitle-main {
  width: 50%;
  flex-shrink: 0;
  padding-left: 70px;
  padding-left: min(4.66vw, 70px);
}
.pagetitle-area .page-img {
  display: block;
  content: "";
  width: 50%;
  height: 407px;
  border-radius: 10px;
  background-image: url(../images/main_page.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pagetitle-area .page-img::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgb(185,255,234);
  background: linear-gradient(90deg, rgba(185,255,234,0.4) 0%, rgba(160,220,153,0.4) 50%, rgba(255,221,83,0.4) 100%);
  width: 100%;
  height: 100%;
}
.bread li,.bread li a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #666;
  letter-spacing: 0.025em;
}
.bread li:not(:last-child)::after {
  content: "＞";
  color: #f39700;
  padding: 0 0.5em;
}
.pagetitle {
  color: #ffa320;
  font-family: 'Roboto', sans-serif;
  font-size: 8rem;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 1;
  margin-top: min(2.6vw, 40px);
  margin-bottom: min(2.6vw, 40px);
}
.pagetitle .jp {
  display: block;
  color: #000;
  font-size: 2.8rem;
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  margin-top: min(2.5vw, 16px);
  letter-spacing: 0.1em;
}

/* fadeUp */
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

@media (max-width: 519px) {
  .cont-title {
    font-size: clamp(4rem, 12.5vw, 8rem);
    padding: 0 min(4.68vw, 30px);
  }
  .cont-title span {
    font-size: clamp(1.4rem, 4.375vw, 2.8rem);
    padding-top: 1.5vw;
  }
  .cont-catch {
    font-size: clamp(1.7rem, 5.46vw, 3.5rem);
  }
  .btn {
    text-align: center;
  }
  .btn a {
    height: min(15.625vw, 100px);
    width: min(63.75vw, 408px);
    border-radius: min(7.8vw, 50px);
  }
  .pagetitle-area {
    display: block;
    margin: min(10vw, 70px) 0 min(7.8vw, 50px);
  }
  .pagetitle-area .pagetitle-main {
    width: 100%;
  }
  .pagetitle-area .page-img {
    width: 100%;
    height: min(54.2vw, 347px);
  }
  .bread li,.bread li a {
    font-size: clamp(1rem, 3.125vw, 2rem);
  }
  .pagetitle {
    margin-top: min(3.125vw, 20px);
    margin-bottom: min(10vw, 64px);
  }
  .pagetitle .jp {
    font-size: clamp(1.4rem, 4.375vw, 2.8rem);
  }
}

 /* Top
---------------------------------------- */
.fv-area {
  height: calc(100vh - 100px);
}
.mv-area {
  height: calc(100% - 80px);
  background: url(../images/mv.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 min(1.8vw, 57px);
}
.mv-area::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(185,255,234);
  background: linear-gradient(90deg, rgba(185,255,234,0.4) 0%, rgba(160,220,153,0.4) 50%, rgba(255,221,83,0.4) 100%);
  width: 100%;
  height: calc(100% - 80px);
}
.mv-area .main-text {
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}
.mv-area .catch {
  font-size: 3.5rem;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.485;
  position: relative;
  z-index: 1;
}
.news-bar {
  height: 80px;
  background: rgba(232, 232, 229, 0.4);
  padding: 0 min(3vw, 30px);
  display: flex;
  align-items: center;
}
.news-bar h2 {
  font-family: 'Roboto', sans-serif;
  color: #ffa320;
  font-size: 3rem;
  margin-right: 25px;
}
.news-bar .date,
.news-bar .title {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
}
.news-bar .date {
  color: #666;
  margin-right: 1em;
}
.top-concept {
  margin: min(11vw, 70px) 0 min(18vw, 180px);
  position: relative;
}
.top-concept .cont-title {
  transform: translateY(min(4vw, 40px));
}
.concept-cont {
  display: flex;
  gap: min(6.66vw, 100px);
}
.top-concept .concept-cont::before {
  display: block;
  content: "";
  width: 44.666vw;
  height: 39.88vw;
  background: url(../images/img_top_concept.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  flex-shrink: 0;
}
.concept-cont .cont-catch {
  margin-bottom: 35px;
}
.want-list-area {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 253px;
  padding: 50px 0;
  overflow: hidden;
}
.want-list-area .want-list-bg {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px 0 0 30px;
  position: absolute;
  top: 0;
  left: 0;
}
.want-list-area .want-list {
  position: relative;
  z-index: 1;
  margin-left: 35px;
  margin-right: 1em;
}
.want-list-area .want-list li {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 32px;
  margin-bottom: 30px;
  background: url(../images/icon_check.svg) no-repeat left center;
  background-size: 32px 32px;
  padding-left: 40px;
}
.want-list-area .want-list li:last-child {
  margin-bottom: 0;
}
.concept-cont p {
  margin: 35px 0 30px;
  width: min(97%, 560px);
}
.top-service {
  padding-bottom: 30px;
}
.top-service .cont-title {
  transform: translateY(-40px);
}
.top-service .cont-catch {
  text-align: center;
  margin: 0 1em 90px;
}
.top-service .top-service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1024px;
  width: min(94%, 1024px);
  margin: 0 auto;
  counter-reset: listCounter;
}
.top-service .top-service-list li {
  width: 485px;
  width: min(48%, 485px);
  height: 330px;
  background: #fff;
  margin-bottom: 90px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  counter-increment: listCounter;
  position: relative;
  opacity: 0;
}
.top-service .top-service-list li::before {
  content: counter(listCounter, decimal-leading-zero);
  font-family: 'Roboto', sans-serif;
  font-size: 8rem;
  font-weight: bold;
  line-height: 1;
  -webkit-text-stroke: 1px #ffa320;
  text-stroke: 1px #ffa320;
  color: rgba(0, 0, 0, 0);
  position: absolute;
  top: -45px;
  left: 20px;
  z-index: 1;
}
.top-service .top-service-list li img {
  width: 100%;
}
.top-service .top-service-list li h4 {
  color: #ffa320;
  font-size: 3rem;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-top: 25px;
}
.top-service .top-service-list li p {
  letter-spacing: 0.1em;
  margin: 0 40px;
  line-height: 1.55;
}
.top-works {
  padding: min(13vw, 130px) min(3.6%, 70px) min(6.66vw, 100px);
  display: flex;
  gap: min(6.66vw, 100px);
}
.top-works .cont-title {
  padding: 0;
  margin-bottom: min(6.26vw, 40px);
}
.top-works-txt .btn-or {
  margin-top: 30px;
}
.works-cat-list .fb {
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: min(6.26vw, 40px);
}
.works-cat-list li a {
  color: #999;
  border: 1px solid #999;
  border-radius: 15px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 6px 20px;
}
.works-list-wrap {
  width: min(58.67vw, 880px);
  flex-shrink: 0;
}
.works-list-wrap .fb {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: min(5.33vw, 80px);
}
.works-list-wrap li {
  flex-shrink: 0;
  width: min(26.66vw, 400px);
}
.works-list-wrap li .img {
  position: relative;
}
.works-list-wrap li .img::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(185,255,234);
  background: linear-gradient(90deg, rgba(185,255,234,0.4) 0%, rgba(160,220,153,0.4) 50%, rgba(255,221,83,0.4) 100%);
  top: 14px;
  left: 14px;
  z-index: -1;
}
.works-list-wrap li .info {
  margin: 40px 0 12px;
  font-size: 1.4rem;
  line-height: 1;
}
.works-list-wrap li .info .cat {
  color: #999;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-right: 1px solid #000;
  padding-right: 0.5em;
}
.works-list-wrap li .info .date {
  letter-spacing: 0.05em;
  padding-left: 0.5em;
}
.works-list-wrap li .title {
  line-height: 1.4;
  font-size: 1em;
}

@media (max-width: 519px) {
  .fv-area {
    height: auto;
  }
  .mv-area {
    height: calc(100vh - min(15.625vw, 100px));
    padding: 0 5.8vw;
  }
  .mv-area::after {
    height: 100%;
  }
  .mv-area .main-text {
    margin-bottom: min(5.625vw, 35px);
  }
  .mv-area .catch {
    font-size: clamp(1.3rem, 4vw, 2.6rem);
    line-height: 1.53;
  }
  .news-bar {
    height: auto;
    padding: 3.75vw 4.68vw;
    display: block;
  }
  .news-bar h2 {
    font-size: clamp(1.7rem, 5.15vw, 3.3rem);
    line-height: 1;
    margin-bottom: 1.56vw;
    margin-right: 0;
  }
  .news-bar .date,
  .news-bar .title {
    font-size: clamp(1.2rem, 3.75vw, 2.4rem);
  }
  .news-bar .date {
    margin-right: 0;
  }
  .top-concept {
    margin: 0 0 25.6vw;
  }
  .top-concept .cont-title {
    transform: inherit;
    position: absolute;
    top: min(63vw, 400px);
  }
  .concept-cont {
    display: block;
  }
  .top-concept .concept-cont::before {
    width: 100%;
    height: min(69.2vw, 443px);
    margin-bottom: 8.28vw;
  }
  .concept-cont .wrap {
    padding-left: min(4.2vw, 27px);
  }
  .concept-cont .cont-catch {
    margin-bottom: min(6.25vw, 40px);
  }
  .want-list-area {
    min-height: inherit;
    padding: 6.25vw 0;
  }
  .want-list-area .want-list {
    margin-left: min(5vw, 30px);
    margin-right: 10vw;
  }
  .want-list-area .want-list li {
    font-size: clamp(1.2rem, 3.75vw, 2.4rem);
    line-height: 5.78vw;
    margin-bottom: 4.68vw;
    background: url(../images/icon_check.svg) no-repeat left center;
    background-size: 5.78vw 5.78vw;
    padding-left: 10vw;
  }
  .concept-cont p {
    margin: 6.25vw 0;
    width: min(95.8%, 560px);
  }
  .concept-cont .btn {
    margin-left: min(-4.2vw, -27px);
  }
  .top-service {
    padding-bottom: 1vw;
  }
  .top-service .cont-title {
    transform: translateY(-6vw);
  }
  .top-service .cont-catch {
    text-align: left;
    margin: 0 1em 13vw;
  }
  .top-service .top-service-list {
    display: block;
    width: 89.5vw;
  }
  .top-service .top-service-list li {
    width: 100%;
    height: 65.625vw;
    margin-bottom: 14vw;
  }
  .top-service .top-service-list li::before {
    font-size: clamp(4.7rem, 14.84vw, 9.5rem);
    top: -8vw;
    left: 3.75vw;
  }
  .top-service .top-service-list li h4 {
    font-size: clamp(1.75rem, 5.46vw, 3.5rem);
    margin-top: 3.75vw;
  }
  .top-service .top-service-list li p {
    margin: 0 1.5em;
  }
  .top-works {
    padding: min(13vw, 130px) min(4.68vw, 30px) 0;
    display: block;
  }
  .works-list-wrap {
    width: 100%;
    margin-top: min(6.26vw, 40px);
  }
  .works-list-wrap .fb {
    display: block;
    margin-bottom: 40px;
    margin-right: 14px;
  }
  .works-list-wrap li {
    width: 100%;
    margin-bottom: min(6.26vw, 40px);
  }
  .works-list-wrap li .info {
    margin: 25px 0 7px;
  }
}

 /* Works
---------------------------------------- */
.page-works {
  padding: 20px min(3.6%, 70px) min(6.66vw, 100px);
}
.page-works .works-cat-list .fb {
  justify-content: center;
  margin-bottom: min(6.26vw, 55px);
}
.page-works .works-list-wrap {
  width: 100%;
}
.page-works .works-list-wrap .fb {
  justify-content: center;
}


 /* Company
---------------------------------------- */
.company-catch {
  padding-top: min(4.6vw, 70px);
  padding-bottom: min(13.33vw, 200px);
  text-align: center;
}
.company-catch h2 {
  width: min(90%, 710px);
  margin: 0 auto min(9.3vw, 60px);
}
.company-catch .cont-catch {
  margin-bottom: min(7vw, 45px);
}
.company-catch p {
  width: 640px;
  width: min(100%, 640px);
  margin: 0 auto;
  line-height: 2.2;
  font-feature-settings: inherit;
}
.company-info-table {
  margin-top: min(10vw, 60px);
  margin-bottom: min(20vw, 200px);
  width: 100%;
  border-top: 1px solid #ccc;
}
.company-info-table th,
.company-info-table td {
  border-bottom: 1px solid #ccc;
  padding: min(4.68vw, 30px) 0;
}
.company-info-table th {
  text-align: left;
  width: min(24vw, 220px);
}
.company-access {
  padding-bottom: min(4.6vw, 70px);
}
.company-access .cont-title {
  transform: translateY(-45px);
}
.company-access .map iframe {
  width: 100%;
  height: 468px;
}
.company-access p {
  text-align: center;
  line-height: 2.2;
  margin-top: 1em;
}
.company-access p span {
  font-weight: bold;
}

@media (max-width: 519px) {
  .company-catch {
    text-align: left;
  }
  .company-catch .cont-catch {
    letter-spacing: inherit;
  }
  .company-info-table th,
  .company-info-table td {
    padding: min(3vw, 20px) 0;
  }
  .company-access {
    padding-bottom: min(10vw, 70px);
  }
  .company-access .cont-title {
    transform: translateY(-6vw);
  }
  .company-access .map iframe {
    height: min(60vw, 468px);
  }
}

 /* Contact
---------------------------------------- */
.contact-cont-top {
  text-align: center;
  padding-top: min(4vw, 60px);
  padding-bottom: min(4.6vw, 70px);
}
.contact-cont-top p {
  line-height: 2.22;
  margin-bottom: min(4.68vw, 30px);
}
.contact-cont-top .btn-contact {
  margin: 0 auto;
}
.contact-form-area {
  padding-top: min(6.66vw, 100px);
}
.contact-form-area h2 {
  text-align: center;
  font-size: 6rem;
  font-size: clamp(3rem, 6.25vw, 6rem);
  margin-bottom: min(2vw, 20px);
}
.contact-form-area h2::before {
  display: inline-block;
  content: "";
  width: min(6.35vw, 61px);
  height: min(4.68vw, 45px);
  background: url(../images/icon_mail_orange.svg) no-repeat;
  background-size: contain;
  margin-right: min(2vw, 20px);
}
.contact-form-area p {
  text-align: center;
}
.contact-form-area p.fw-b {
  font-weight: bold;
  font-size: 2rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
}
.contact-form-area .required {
  color: #ff6600;
}
.contact-form-table {
  width: 100%;
  margin-top: min(5.2vw, 50px);
}
.contact-form-table th,
.contact-form-table td {
  padding: min(2.6vw, 25px) 0;
}
.contact-form-table th {
  text-align: left;
  vertical-align: top;
  width: 230px;
  width: min(25vw, 230px);
  padding-right: 1em;
}
.contact-form-table select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
}
.contact-form-table select option[selected][disabled] {
  display: none;
}
.contact-form-table .select {
  position: relative;
  z-index: 1;
}
.contact-form-table .select::after {
  content: "▼";
  color: #666;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: -1;
}
.contact-form-table input,
.contact-form-table textarea,
.contact-form-table select {
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px;
}
.contact-form-table input.short,
.contact-form-table input.agreement {
  border: 1px solid #ccc;
  width: auto;
}
.contact-form-table input.agreement {
  margin-right: 0.5em;
}
.contact-form-table ::placeholder {
  color: #999;
}
.contact-form-table .btn-area {
  text-align: center;
}
.contact-form-table .btn-area a {
  text-decoration: underline;
}
.contact-form-table .btn-area a:hover {
  text-decoration: none;
}
.btn-submit button {
  width: 100%;
  background: #f39700;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 3.3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 30px;
  cursor: pointer;
  padding: 15px 0;
  box-shadow: 4px 4px 4px rgba(0,0,0,0.3);
}

@media (max-width: 519px) {
  .contact-cont-top {
    text-align: left;
    padding-top: min(6vw, 60px);
    padding-bottom: min(7vw, 70px);
  }
  .contact-cont-top p {
    line-height: 1.9;
  }
  .contact-cont-top .btn-contact {
    text-align: center;
  }
  .contact-form-table {
    margin-top: min(3vw, 30px);
  }
  .contact-form-table th,
  .contact-form-table td {
    display: block;
    padding: 0;
  }
  .contact-form-table th {
    width: 100%;
    padding: min(3vw, 30px) 0 min(1.2vw, 12px);
  }
  .contact-form-table input,
  .contact-form-table textarea,
  .contact-form-table select {
    padding: 12px;
  }
  .contact-form-table input.short,
  .contact-form-table input.agreement {
    width: auto;
  }
  .contact-form-table input.short {
    width: 46%;
  }
  .btn-submit button {
    font-size: clamp(1.6rem, 5vw, 3.3rem);
    margin-top: min(5vw, 30px);
    padding: min(4vw, 15px) 0;
  }
}

 /* Privacy
---------------------------------------- */
.privacy {
  font-size: 1.6rem;
}
.privacy h2 {
  color: #f39700;
  font-size: 1.875em;
  line-height: 1.5;
  margin-bottom: 1em;
}
.privacy h3 {
  font-size: 1.25em;
  margin: 2em 0 0.5em;
}
.privacy ol {
  margin: 1em 0 0 2em;
  list-style: decimal;
}
.privacy li ol {
  margin-bottom: 1em;
}
.privacy .tr {
  text-align: right;
}

@media (max-width: 519px) {
  .privacy {
    font-size: clamp(1.2rem, 3.75vw, 2.4rem);
  }
  .privacy h2 {
    font-size: 1.5em;
  }
}

 /* Tope - TextRandomAnime
---------------------------------------- */
.TextRandomAnime span{
  opacity: 0;
}
.TextRandomAnime.appearRandomtext span{ 
  animation:text_randomanime_on .5s ease-out forwards;
}
@keyframes text_randomanime_on {
  0% {opacity:0;}
  100% {opacity:1;}
}
.TextRandomAnime.appearRandomtext span:nth-child(2n) {
  animation-delay: .5s;
}
.TextRandomAnime.appearRandomtext span:nth-child(3n+1) {
  animation-delay: .15s;
}

/* その場で */
.fadeIn{
  animation-name:fadeInAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 右から */
.fadeRight{
  animation-name:fadeRightAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeRightAnime{
  from {
    opacity: 0;
    transform: translateX(120%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInTrigger,
.fadeRightTrigger{
    opacity: 0;
}
.delay-time1{  
  animation-delay: 1s;
}
.delay-time15{  
  animation-delay: 1.5s;
}
.delay-time2{  
  animation-delay: 2s;
}
.delay-time25{  
  animation-delay: 2.5s;
}

 /* Page title - bgextend
---------------------------------------- */
.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:1s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;/*　はみ出た色要素を隠す　*/
	opacity:0;
}
@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
  }
}
/*中の要素*/
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:1s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes bgextendAnimeSecond{
	0% {
    opacity: 0;
    }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffa320;
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}