@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
p,
a,
li,
dt,
dd,
th,
td {
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  p,
  a,
  li,
  dt,
  dd,
  th,
  td {
    line-height: 1.8;
  }
}

.display_w600 {
  display: none;
}
@media screen and (max-width: 600px) {
  .display_w600 {
    display: block;
  }
}

.f_en {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
}
.header.scroll {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1400px) {
  .header .header-box01 {
    padding-right: 0;
  }
}
.header .header-box01 .header-box-inner01.flex {
  padding-left: 3%;
}
.header .header-sub-box {
  display: flex;
  align-items: center;
}
.header .header-menu > li a {
  font-size: 1.6rem;
  padding: 0 30px;
  transition: all 0.3s ease-in;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1400px) {
  .header .header-menu > li a {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1300px) {
  .header .header-menu > li a {
    padding: 0 15px;
    font-size: 1.4rem;
  }
}
.header .header-menu > li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(10deg, #f39800 50%, #e60012 100%);
  transform: scale(0);
  margin: auto;
  margin-top: 10px;
  transition: all 0.3s ease-in;
}
.header .header-menu > li a:hover {
  background-image: linear-gradient(10deg, #f39800 50%, #e60012 100%);
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.3s ease-in;
}
.header .header-menu > li a:hover::after {
  transform: scale(1);
  transition: all 0.3s ease-in;
}

.g-sub-nav02 .g-sub-nav-list.flex a {
  background: linear-gradient(15deg, #f39800 15%, #e60012 30%, #e60012 55%, #f39800 85%);
  background-size: 500% 100%;
  background-position: 0% 50%;
  color: #fff;
  transition: all 0.3s;
}
.g-sub-nav02 .g-sub-nav-list.flex a:hover {
  background-position: 100% 50%;
  transition: all 0.3s;
  color: #fff;
}

.fix_sub_nav {
  display: none;
}
@media screen and (max-width: 1024px) {
  .fix_sub_nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(15deg, #f39800, #e60012);
    color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    z-index: 1;
  }
  .fix_sub_nav a {
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  .fix_sub_nav::before {
    content: "";
    width: 18px;
    height: 12px;
    background: url(../img/icon-mail-white.svg) no-repeat;
    background-size: contain;
  }
  .fix_sub_nav.scroll {
    display: flex;
  }
}

.sp-header-inner {
  position: relative;
}
.sp-header-inner .logo {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 300px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .sp-header-inner .logo {
    max-width: 200px;
    left: 5%;
    right: unset;
  }
}
.sp-header-inner .logo img {
  width: 100%;
}

.sp-header-icon-list {
  margin-left: auto;
}

.mobile-logo {
  height: 68px;
  position: relative;
}
.mobile-logo img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 150px;
  display: flex;
  align-items: center;
}

#mobile-nav {
  background: rgba(0, 0, 0, 0.8);
}

.mobile-sub-nav li a {
  padding: 10px 15px;
  background-color: #fff;
  background-image: linear-gradient(70deg, #f39800, #e60012);
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mobile-sub-nav li a::before {
  content: "";
  width: 18px;
  height: 12px;
  background: url(../img/icon-mail-white.svg) no-repeat;
  background-size: contain;
}

main.panelactive {
  display: none;
}

#mobile-nav {
  display: none;
}
#mobile-nav.panelactive {
  display: block;
}

.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1e1e1e;
  z-index: 9999;
  animation: byeShutter 2s forwards;
}
.shutter::before, .shutter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.shutter::before {
  background: linear-gradient(15deg, #f39800, #e60012);
  background: linear-gradient(15deg, #f39800, #e8420b);
  width: 0;
  height: 1px;
  animation: shutterOpen1 2s forwards;
}
.shutter::after {
  width: 120%;
  height: 0;
  margin-left: -10%;
  background-color: #f3f3f3;
  animation: shutterOpen2 2s forwards;
}
.shutter .logo img {
  width: 5%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .shutter .logo img {
    width: 10%;
  }
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
@keyframes shutterOpen1 {
  0% {
    width: 0;
    height: 0px;
  }
  50% {
    width: 100%;
    height: 0px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes shutterOpen2 {
  60% {
    width: 120%;
    height: 0;
    transform: rotate(5deg);
  }
  90% {
    width: 120%;
    height: 100%;
    transform: rotate(-5deg);
  }
  100% {
    width: 120%;
    height: 100%;
    transform: rotate(-5deg);
  }
}
#page-top img {
  max-width: unset;
  max-height: unset;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 1024px) {
  #page-top img {
    width: 40px;
  }
}
@media screen and (max-width: 1024px) {
  #page-top img {
    height: 40px;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 700px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

.less_1300 {
  display: none;
}
@media screen and (max-width: 1300px) {
  .less_1300 {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .less_1300 {
    display: none;
  }
}

.contact-band {
  background: #689fda;
}
.contact-band .contact-band-inner {
  width: 80%;
  margin: auto;
  background: #fff;
}
.contact-band .contact-band-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: clamp(12px, 2.8rem, 2.8rem);
}
@media screen and (max-width: 1024px) {
  .contact-band .contact-band-title {
    gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .contact-band-title {
    font-size: clamp(12px, 1.4rem, 1.4rem);
  }
}
.contact-band .contact-band-title::before, .contact-band .contact-band-title::after {
  content: "";
  width: 80px;
  height: 60px;
  background-image: url(../img/title_deco_right_01.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .contact-band .contact-band-title::before, .contact-band .contact-band-title::after {
    width: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .contact-band-title::before, .contact-band .contact-band-title::after {
    height: 30px;
  }
}
.contact-band .contact-band-title::before {
  transform: scale(-1, 1);
}
.contact-band .cf-cb-txt {
  font-size: clamp(12px, 2rem, 2rem);
}
@media screen and (max-width: 1024px) {
  .contact-band .cf-cb-txt {
    font-size: clamp(12px, 1rem, 1rem);
  }
}
.contact-band .btn01 {
  justify-content: center;
  align-items: center;
}
.contact-band .contact-band-tel-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-band .contact-band-tel-box::before {
  content: "";
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 1024px) {
  .contact-band .contact-band-tel-box::before {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-band .contact-band-tel-box::before {
    height: 15px;
  }
}
.contact-band .contact-band-tel-box:first-of-type::before {
  background-image: url(../img/img_tel.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.contact-band .contact-band-tel-box:last-of-type::before {
  background-image: url(../img/img_sp.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.inner {
  width: 90%;
  margin: auto;
  max-width: 1400px;
}

.btn {
  transition: all 0.5s;
  letter-spacing: 0.05em;
}
.btn::after {
  content: "";
  display: block;
  width: 30px;
  height: 11px;
  background: url(../img/icon-arrow-black.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .btn::after {
    width: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .btn::after {
    height: 5.5px;
  }
}
.btn:hover {
  color: #f39800;
  transition: all 0.5s;
}
.btn:hover::after {
  background: url(../img/icon-arrow-gradation.svg) no-repeat;
  background-size: contain;
}

.title01 {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .title01 {
    margin-bottom: 30px;
  }
}
.title01 .en {
  display: block;
  font-size: clamp(12px, 4.2rem, 4.2rem);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: left;
  background-image: linear-gradient(70deg, rgb(0, 0, 0) 45%, #e60012 50%, #f39800 55%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .title01 .en {
    font-size: clamp(12px, 2.1rem, 2.1rem);
  }
}
.title01 .ja {
  display: block;
  font-size: clamp(12px, 1.4rem, 1.4rem);
  letter-spacing: 0.03em;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  text-align: left;
  line-height: 1;
  margin-top: 8px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .title01 .ja {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
@media screen and (max-width: 1024px) {
  .title01 .ja {
    margin-top: 4px;
  }
}
.title01.is-show .en {
  animation: shine 5s forwards;
}
.title01.is-show .ja {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes shine {
  0% {
    background-position: 100% 50%;
    opacity: 0;
  }
  100% {
    background-position: 0% 50%;
    opacity: 1;
  }
}
.title02 {
  margin-bottom: 60px;
  background: linear-gradient(5deg, #f39800, #eb3e07);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 2.6rem;
}
@media screen and (max-width: 1024px) {
  .title02 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .title02 {
    font-size: 2rem;
  }
}

main,
.sub-header {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  main,
  .sub-header {
    margin-top: 68px;
  }
}

.slider__wrap {
  position: relative;
}

.slider__txt {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 8.2291666667vw;
  padding-left: 0.78125vw;
  padding-right: 0.78125vw;
  box-sizing: border-box;
  margin: auto;
}
@media screen and (max-width: 700px) {
  .slider__txt {
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 10px;
    bottom: 0;
    margin: auto;
  }
}
.slider__txt .catch {
  font-size: 3.6458333333vw;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 40px;
  opacity: 0;
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}
@media screen and (max-width: 1024px) {
  .slider__txt .catch {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 700px) {
  .slider__txt .catch {
    font-size: 7vw;
  }
}
.slider__txt .lead {
  text-align: center;
  font-weight: 700;
  color: #fff;
  opacity: 0;
}
.slider__txt .lead._lerge {
  font-size: clamp(14px, 1.25vw, 1.25vw);
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s;
}
@media screen and (max-width: 700px) {
  .slider__txt .lead._lerge {
    font-size: clamp(12px, 3vw, 3vw);
  }
}
.slider__txt .lead._small {
  font-size: clamp(10px, 0.8333333333vw, 0.8333333333vw);
  font-weight: 500;
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-delay: 3s;
}
@media screen and (max-width: 700px) {
  .slider__txt .lead._small {
    font-size: clamp(10px, 2vw, 2vw);
  }
}

.slider {
  position: relative;
}
.slider::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(#262626, #000);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
}

.f-news {
  padding-top: 150px;
  margin-top: -150px;
}
@media screen and (max-width: 1024px) {
  .f-news {
    padding-top: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news {
    margin-top: -75px;
  }
}
.f-news #news {
  padding-top: 150px;
  margin-top: -150px;
}
@media screen and (max-width: 1024px) {
  .f-news #news {
    padding-top: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news #news {
    margin-top: -75px;
  }
}
.f-news .inner {
  width: 65%;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 50px;
  padding-left: 49px;
  padding-right: 40px;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transform: translate(0, -50px);
}
@media screen and (max-width: 1024px) {
  .f-news .inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .inner {
    padding-top: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .inner {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .inner {
    padding-left: 24.5px;
  }
}
@media screen and (max-width: 1024px) {
  .f-news .inner {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1400px) {
  .f-news .inner {
    width: 80%;
  }
}
.f-news__titleArea {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .f-news__titleArea {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .f-news__titleArea {
    flex-direction: row;
  }
}
.f-news__list {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  .f-news__list {
    width: 100%;
  }
}
.f-news__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.5);
  padding: 13px 0px;
  opacity: 0;
  transform: translate(10%, 0);
  transition: 2s;
}
@media screen and (max-width: 1024px) {
  .f-news__list li {
    padding: 6.5px 0px;
  }
}
@media screen and (max-width: 600px) {
  .f-news__list li {
    flex-wrap: wrap;
  }
}
.f-news__list li .time {
  width: 20%;
  font-size: clamp(12px, 1.4rem, 1.4rem);
  font-weight: 500;
  color: rgba(51, 51, 51, 0.5);
  line-height: 2.5;
}
@media screen and (max-width: 1024px) {
  .f-news__list li .time {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}
@media screen and (max-width: 600px) {
  .f-news__list li .time {
    width: 100%;
  }
}
.f-news__list li a {
  transition: all 0.5s;
  width: 70%;
}
@media screen and (max-width: 600px) {
  .f-news__list li a {
    width: 100%;
  }
}
.f-news__list li a:hover {
  color: #f39800;
  transition: all 0.5s;
}
.f-news__list li.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.f-news .btn {
  max-width: 160px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .f-news .btn {
    max-width: 110px;
    display: flex;
    align-items: center;
  }
}
.f-news .btn.is-show {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.f-mission {
  background: #f3f4f5;
  padding-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .f-mission {
    padding-bottom: 5px;
  }
}
.f-mission .title01 {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-mission .title01 {
    margin-bottom: 40px;
  }
}
.f-mission .title01 .en {
  text-align: center;
}
.f-mission__txt p {
  font-size: clamp(12px, 2rem, 2rem);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .f-mission__txt p {
    font-size: clamp(12px, 1rem, 1rem);
  }
}

.f-service {
  background: #f3f4f5;
  padding-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  .f-service {
    padding-bottom: 75px;
  }
}
.f-service .title01 {
  opacity: 0;
}
.f-service .title01 .en,
.f-service .title01 .ja {
  text-align: center;
}
.f-service .title01.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}
.f-service__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .f-service__list {
    flex-direction: column;
  }
}
.f-service__list li {
  width: 31%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .f-service__list li {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .f-service__list li {
    margin-bottom: 60px;
  }
}
.f-service__list li.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.f-service__list li .imgArea {
  display: block;
  overflow: hidden;
  position: relative;
}
.f-service__list li .imgArea::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, #f39800 0%, rgba(230, 0, 18, 0.3) 100%);
  transform: skewX(-25deg);
}
.f-service__list li .imgArea:hover::before {
  animation: shine02 0.7s;
}
@keyframes shine02 {
  100% {
    left: 125%;
  }
}
.f-service__list li .txtArea {
  padding: 20px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .f-service__list li .txtArea {
    padding: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .f-service__list li .txtArea {
    padding-bottom: 60px;
  }
}
.f-service__list li .title {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 25px;
}
@media screen and (max-width: 1024px) {
  .f-service__list li .title {
    font-size: 16px;
  }
}
.f-service__list li .txt {
  font-size: clamp(12px, 1.6rem, 1.6rem);
}
@media screen and (max-width: 1024px) {
  .f-service__list li .txt {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.f-service__list li .btn {
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(15deg, #f39800 15%, #e60012 30%, #e60012 55%, #f39800 85%);
  background-size: 500% 100%;
  background-position: 0% 50%;
  color: #fff;
  border-radius: 999px;
  padding: 10px 30px;
  padding-right: 60px;
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .f-service__list li .btn {
    padding: 5px 15px;
  }
}
@media screen and (max-width: 1024px) {
  .f-service__list li .btn {
    padding-right: 30px;
  }
}
.f-service__list li .btn::after {
  right: 10px;
  background: url(../img/icon-arrow-white.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1024px) {
  .f-service__list li .btn::after {
    right: 5px;
  }
}
.f-service__list li .btn:hover {
  background-position: 100% 50%;
}

.sub-header-title {
  position: relative;
}
.sub-header-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.sub-header-title .sub-header-txt {
  position: relative;
  z-index: 2;
}

.p-sec .title01 .en {
  text-align: center;
}
.p-sec .title01 .ja {
  text-align: center;
}
.p-sec .txtArea p {
  font-size: clamp(12px, 1.6rem, 1.6rem);
}
@media screen and (max-width: 1024px) {
  .p-sec .txtArea p {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}
.p-sec .box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .p-sec .box {
    flex-direction: column;
  }
}
.p-sec .box .txtArea {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .p-sec .box .txtArea {
    width: 100%;
  }
}
.p-sec .box .txtArea p {
  text-align: left !important;
}
.p-sec .box img {
  width: 35%;
}
@media screen and (max-width: 1024px) {
  .p-sec .box img {
    width: 100%;
  }
}
.p-sec._01 {
  padding-top: 0;
}
.p-sec._01 .title01.is-show .en {
  animation-delay: 1s;
}
.p-sec._01 .title01.is-show .ja {
  animation-delay: 2s;
}
.p-sec._01 .txtArea p {
  font-size: clamp(12px, 1.8rem, 1.8rem);
text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-sec._01 .txtArea p {
    font-size: clamp(12px, 0.9rem, 0.9rem);
  }
}
.p-sec._01 .js-fadeUp.is-show {
  animation-delay: 1.5s;
}
.p-sec._02 {
  background: #f3f4f5;
}
.p-sec._02 .txtArea p {
  text-align: center;
}
.p-sec .box .txtArea p.txt span.title {
        font-size: clamp(12px, 2.8rem, 2.8rem);
        font-weight: 600;
}
.company__list {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .company__list {
    margin-top: 50px;
  }
}
.company__list li {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .company__list li {
    margin-bottom: 40px;
  }
}
.company__list li .title {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .company__list li .title {
    margin-bottom: 30px;
  }
}
.company__list li .title .en {
  font-size: clamp(12px, 3.8rem, 3.8rem);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  background-image: linear-gradient(5deg, #f39800, #e60012);
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  width: 20%;
  min-width: 100px;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .company__list li .title .en {
    font-size: clamp(12px, 1.9rem, 1.9rem);
  }
}
.company__list li .title .line {
  display: block;
  width: 80%;
  height: 2px;
  background: linear-gradient(5deg, #f39800, #e60012);
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: left top; /*左上基点*/
}
.company__list li .title.is-show .en {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
.company__list li .title.is-show .line {
  animation-name: fadeInLeftToRight;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}
.company__list li .box .js-fadeUp.is-show {
  animation-delay: 0.5s;
}
.company .map {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .company .map {
    margin-top: 40px;
  }
}
.company .map iframe {
  width: 100%;
}
.company #tablepress-1 tr {
  opacity: 0;
  transform: translate(10%, 0);
  transition: 2s;
}
.company #tablepress-1 tr.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.service .p-sec._01 .title01 .en {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(12px, 3rem, 3rem);
}
.tablepress tbody td.column-2 a {
        text-decoration: underline;
        color: #ffa000;
}
@media screen and (max-width: 1024px) {
  .service .p-sec._01 .title01 .en {
    font-size: clamp(12px, 1.5rem, 1.5rem);
  }
}
.service .p-sec._02 .title02_wrap {
  padding-top: 150px;
  margin-top: -150px;
}
@media screen and (max-width: 1024px) {
  .service .p-sec._02 .title02_wrap {
    padding-top: 75px;
  }
}
@media screen and (max-width: 1024px) {
  .service .p-sec._02 .title02_wrap {
    margin-top: -75px;
  }
}
.service .p-sec._02 .js-fadeIn.is-show {
  animation-duration: 2s;
  animation-delay: 0s;
}
.service__list li {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .service__list li {
    margin-bottom: 40px;
  }
}
.service__list li .txtArea .title {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .service__list li .txtArea .title {
    font-size: 1.6rem;
    margin-top: 20px;
    text-align: center !important;
  }
}

.contact .txtArea {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .contact .txtArea {
    margin-bottom: 30px;
  }
}
.contact .txtArea p {
  text-align: center;
}
.contact .wpcf7-form-control-wrap {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .contact .contact-form01 {
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .contact .contact-form01 tr th {
    padding-top: 25px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 820px) {
  .contact .contact-form01 tr td {
    padding-top: 10px;
  }
}
@media screen and (max-width: 820px) {
  .contact .contact-form01 tr:nth-of-type(3) td, .contact .contact-form01 tr:nth-of-type(4) td, .contact .contact-form01 tr:nth-of-type(7) td {
    display: flex;
  }
}
@media screen and (max-width: 820px) {
  .contact .required {
    position: unset;
  }
}
@media screen and (max-width: 820px) {
  .contact .privacy-check a {
    display: block;
  }
}

.thanks .btn {
  max-width: 140px;
  margin: auto;
}

.tablepress > * + tbody > * > *,
.tablepress > tbody > * ~ * > *,
.tablepress > tfoot > * > * {
  border-top: none !important;
  border-bottom: 1px solid #ddd !important;
}

.archive-info-wrap main {
  margin: auto;
}

.archive-info-txt {
  width: 100%;
  justify-content: flex-start;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .archive-info-txt {
    gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .archive-info-txt {
    flex-direction: column;
  }
}

@media screen and (max-width: 1024px) {
  .archive-info-title {
    width: 100%;
  }
}

.archive-time-cat {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .archive-time-cat {
    width: 100%;
  }
}
.archive-time-cat time {
  font-size: clamp(12px, 1.4rem, 1.4rem);
  font-weight: 500;
  color: rgba(51, 51, 51, 0.5);
  line-height: 2.5;
}
@media screen and (max-width: 1024px) {
  .archive-time-cat time {
    font-size: clamp(12px, 0.7rem, 0.7rem);
  }
}

.single-info-article p {
  font-size: clamp(12px, 1.6rem, 1.6rem);
}
@media screen and (max-width: 1024px) {
  .single-info-article p {
    font-size: clamp(12px, 0.8rem, 0.8rem);
  }
}

.recruit-single-content p {
  font-size: 2rem;
  text-align: center;
  color: #82c582;
}
@media screen and (max-width: 1024px) {
  .recruit-single-content p {
    font-size: 1.6rem;
  }
}

.job-table td a {
  text-decoration: underline;
}

.entry {
  display: flex;
  flex-wrap: wrap;
}
.entry dt {
  width: 15%;
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .entry dt {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .entry dt {
    font-size: 1.4rem;
  }
}
.entry dd {
  width: 85%;
  margin-bottom: 30px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .entry dd {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .entry dd {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .entry dd {
    font-size: 1.4rem;
  }
}

.footer {
  background: #222;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-bottom: 100px;
  }
}
.footer .footer-inner.flex {
  align-items: end;
}
.footer .footer-logo a img {
  width: 20%;
}
.footer .btn {
  width: 18%;
  color: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .footer .btn {
    width: 195px;
    margin: auto;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  .footer .btn {
    width: 165px;
  }
}
.footer .btn::after {
  background: url(../img/icon-arrow-white.svg) no-repeat;
  background-size: contain;
}
.footer .btn:hover {
  color: #f39800;
  transition: all 0.5s;
}
.footer .btn:hover::after {
  background: url(../img/icon-arrow-gradation.svg) no-repeat;
  background-size: contain;
}

.js-fadeUp {
  opacity: 0;
}
.js-fadeUp.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeDown {
  opacity: 0;
}
.js-fadeDown.is-show {
  animation-name: fadeDownAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeIn {
  opacity: 0;
}
.js-fadeIn.is-show {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.js-fadeInRight {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}
.js-fadeInRight.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-fadeInLeft {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.js-fadeInLeft.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-diagonal {
  opacity: 0;
  transform: translate(0, 0);
  transition: 2s;
}
.js-diagonal.is-show {
  opacity: 1;
  transform: translate(-20%, 20%);
}

.js-UpDown {
  opacity: 0;
}
.js-UpDown.is-show {
  animation-name: slideTextY-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
}

@keyframes slideTextY-100 {
  from {
    transform: translateY(-100%); /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
.js-leftToRight {
  transform: scale(0, 1); /*X方向0、Y方向1*/
}
.js-leftToRight.is-show {
  animation-name: fadeInLeftToRight;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes fadeInLeftToRight {
  from {
    transform: scale(0, 1); /*X方向0、Y方向1*/
  }
  to {
    transform: scale(1, 1); /*X方向にスケール拡大*/
  }
}