@charset "UTF-8";
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, margin-top 0.3s ease;
  margin-top: 102px;
}
.header.is-scrolled {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.page-sub .header {
  margin-top: 0;
  background: #FFFDF8;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-top: 30px;
  padding-bottom: 10px;
}
.header-inner {
  display: flex;
  align-items: center;
  width: 80%;
  max-width: 1120px;
  margin: 0 auto;
  height: 72px;
  justify-content: space-between;
}
.header-logo {
  flex-shrink: 0;
  padding-left: 30px;
}
.header-logo img {
  height: 40px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  background: #FFFDF8;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 0 0 0 6px;
  padding-left: 24px;
}
.header-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
  height: 72px;
}
.header-nav-list a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  transition: opacity 0.3s ease;
  position: relative;
}
.header-nav-list a:hover {
  opacity: 0.6;
}
.header-nav-list a.is-current::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #F8CC4D;
  border-radius: 50%;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 12px 16px;
  height: 72px;
}
.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header-btn:hover {
  opacity: 0.75;
}
.header-btn--outline {
  border: 2px solid #F3E230;
  color: #333;
  background: transparent;
}
.header-btn--filled {
  border: 2px solid #F3E230;
  background: #F3E230;
  color: #333;
}
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 1px;
}

footer {
  background-color: #FDEFC6;
}
footer .cta {
  padding: 100px 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  background: url("../images/cta-bg.png") no-repeat center/cover;
}
footer .cta > p {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 400;
}
footer .cta .btn {
  display: flex;
  gap: 30px;
}
footer .cta .btn > div {
  width: 370px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  position: relative;
  border-radius: 50px;
  height: 80px;
}
footer .cta .btn > div p {
  font-size: 20px;
  font-weight: 500;
}
footer .cta .btn > div a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
footer .cta .btn > div:first-child {
  background-color: #fff;
}
footer .cta .btn > div:last-child {
  background-color: #00C300;
}
footer .cta .btn > div:last-child p {
  color: #fff;
}

html {
  background-color: #FFFDF8;
  overflow-x: hidden;
}

* {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #434343;
}

.sp-br {
  display: none;
}

.sp_aboutimg {
  display: none;
}

.bg-o {
  position: relative;
}
.bg-o img {
  position: absolute;
}
.bg-o .bg1 {
  top: -800px;
  left: -200px;
  z-index: 0;
}
.bg-o .bg2 {
  right: -100px;
  top: -200px;
  z-index: 0;
}
.bg-o .bg3 {
  right: -100px;
  bottom: 0px;
  z-index: 0;
}
.bg-o .bg4 {
  right: 50px;
  top: 200px;
  z-index: 0;
}

.hero {
  width: 80%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  margin-top: 102px;
}
.hero .main-content {
  width: 100%;
  position: relative;
}
.hero .main-content .hero-bg {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  height: 562px;
}
.hero .main-content .hero-bg img {
  width: 100%;
  border-radius: 25px 0px 25px 0px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2s ease;
  height: 100%;
}
.hero .main-content .hero-bg img:first-child {
  position: relative;
}
.hero .main-content .hero-bg img.is-visible {
  opacity: 1;
}
.hero .main-content .hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8), transparent);
  border-radius: 25px 0 0 0;
  z-index: 1;
  pointer-events: none;
}
.hero .hero-content {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.hero .hero-content .item-l {
  border-top-right-radius: 30px;
  height: 150px;
  padding: 0 82px;
  position: relative;
  /* rgba を使う方法 */
  background: linear-gradient(to right, #FAF7D4 30%, #FFFDF8 100%);
  z-index: 95;
  display: flex;
  align-items: center;
}
.hero .hero-content .item-l p {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #434343;
}
.hero .hero-content .item-l p .dable-l {
  background-image: url(../images/dable-l.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 48px;
  height: 48px;
  display: inline-block;
  scale: 0.6;
}
.hero .hero-content .item-l p .dable-r {
  background-image: url(../images/dable-r.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 48px;
  height: 48px;
  display: inline-block;
  scale: 0.6;
}
.hero .hero-content .item-l div {
  display: flex;
  align-items: center;
  gap: 16px;
  position: absolute;
  bottom: -30px;
  right: 0;
}
.hero .hero-content .item-l div .border {
  display: block;
  width: 60px;
  height: 2px;
  background-color: #888888;
  border-radius: 30px;
  position: relative;
  right: -40px;
}
.hero .hero-content .item-l div img {
  position: relative;
  right: -40px;
}
.hero .hero-content .item-r {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  border: solid 2px #00C300;
  height: 75px;
  align-items: center;
  width: 300px;
  gap: 18px;
  padding: 0 14px;
  top: 50px;
  left: 30px;
  position: relative;
}
.hero .hero-content .item-r img {
  width: 48px;
}
.hero .hero-content .item-r p {
  font-size: 14px;
  font-weight: 500;
  color: #434343;
}
.hero .hero-content .item-r a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.hero .bg {
  position: absolute;
  top: 100px;
  left: -200px;
  z-index: 99;
}

.about {
  margin-top: 180px;
  margin-bottom: 180px;
}
.about .main {
  width: 100%;
  max-width: 760px;
  background-color: #fff;
  border-radius: 50px;
  margin: 0 auto;
  padding: 90px 90px;
  position: relative;
}
.about .main .ttl {
  text-align: center;
}
.about .main .ttl .yellow {
  color: #F8CC4D;
  font-size: 14px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}
.about .main .ttl p {
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin-top: 16px;
}
.about .main .item {
  margin-top: 60px;
  text-align: center;
}
.about .main .item p {
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
.about .main .item p:last-child {
  margin-top: 20px;
}
.about .main .card {
  background: #FDEFC6;
  padding: 10px 45px;
  width: 452px;
  margin: 0 auto;
  margin-top: 55px;
  border-radius: 30px;
  height: 92px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.3);
}
.about .main .card > div p {
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.about .main .card > img {
  width: 20px;
}
.about .main .card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about .parts {
  position: absolute;
}
.about .p1 {
  top: -30px;
  right: 50px;
}
.about .p2 {
  top: 30px;
  right: -330px;
}
.about .p3 {
  bottom: 170px;
  right: -210px;
}
.about .p4 {
  bottom: 60px;
  right: -130px;
  z-index: 10;
}
.about .p5 {
  bottom: -30px;
  right: -50px;
}
.about .p6 {
  bottom: -30px;
  right: 120px;
}
.about .p7 {
  top: -80px;
  left: -320px;
}
.about .p8 {
  top: 170px;
  left: -120px;
  z-index: 10;
}
.about .p9 {
  top: 280px;
  left: 0px;
  z-index: 10;
}
.about .p10 {
  top: 330px;
  left: -200px;
}

.act .main {
  display: flex;
  width: 100%;
}
.act .main .item-l {
  background-color: #FDF8D0;
  width: 50%;
  padding: 94px 0;
}
.act .main .item-l .ttl {
  padding-left: 40%;
}
.act .main .item-l .ttl p {
  color: #929292;
}
.act .main .item-l .ttl h2 {
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 28px;
}
.act .main .item-l .content {
  padding-left: 40%;
  margin-top: 60px;
}
.act .main .item-l .content .item {
  display: flex;
  height: 85px;
  gap: 40px;
  align-items: center;
}
.act .main .item-l .content .item .left {
  width: 90px;
  display: flex;
  position: relative;
}
.act .main .item-l .content .item .left p {
  font-size: 16px;
  font-weight: 500;
  background: linear-gradient(180deg, #FDEFC6, #F8CC4D 60%);
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: -25px;
}
.act .main .item-l .content .item .left img {
  background: #fff;
  padding: 12px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.act .main .item-l .content .item .right p {
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.act .main .item-l .content .item .right img {
  position: relative;
  bottom: -5px;
}
.act .main .item-l .btn {
  display: flex;
  align-items: center;
  margin-top: 80px;
  flex-flow: column;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.act .main .item-l .btn:hover {
  transform: translateX(10px);
}
.act .main .item-l .btn a {
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 0.04em;
  display: block;
  position: relative;
  padding-bottom: 12px;
}
.act .main .item-l .btn a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 250px;
  height: 1px;
  background-color: #434343;
}
.act .main .item-l .btn a::before {
  content: "";
  position: absolute;
  bottom: -25px;
  right: -145px;
  width: 48px;
  height: 48px;
  background-color: rgba(243, 226, 48, 0.3019607843);
  border-radius: 50%;
  opacity: 0.4;
}
.act .main .item-l .btn img {
  position: relative;
  top: 10px;
  right: 15px;
}
.act .main .item-r {
  width: 50%;
  padding: 94px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-bg {
  background-color: #FDEFC6;
  padding-top: 40px;
}
.section-bg img {
  width: 100%;
  position: relative;
  top: 10px;
}

.works {
  margin-top: 178px;
}
.works .info {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.interview {
  width: 100%;
  margin-top: 60px;
}
.interview .bg {
  width: 100%;
  display: flex;
}
.interview .bg > div {
  width: 50%;
  background-color: #FDF8D0;
  height: 50px;
}
.interview .bg > div:nth-child(1) {
  border-top-right-radius: 50px;
}
.interview .bg > div:nth-child(2) {
  border-top-left-radius: 50px;
}
.interview .main {
  background-color: #FDF8D0;
  width: 100%;
  display: flex;
  padding-top: 80px;
  padding-bottom: 136px;
  gap: 46px;
}
.interview .main .img {
  width: 60%;
  display: flex;
  justify-content: end;
}
.interview .main .content {
  width: 40%;
}
.interview .main .content .ttl h2 {
  font-size: 24px;
  font-weight: 50;
  margin-top: 8px;
  font-weight: 500;
}
.interview .main .content .info {
  margin-top: 20px;
}
.interview .main .content .info p {
  color: #000000;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-size: 16px;
  max-width: 496px;
  width: 100%;
}
.interview .main .content .info .i1 {
  margin-top: 40px;
}
.interview .main .content .info img {
  margin-top: 20px;
}
.interview .main .content .info a img {
  padding-left: 100px;
  transition: transform 0.3s ease;
}
.interview .main .content .info a:hover img {
  transform: translateX(10px);
  transition: transform 0.3s ease;
}

.contents {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  margin-top: 200px;
  padding-bottom: 200px;
}
.contents .main {
  width: 100%;
  display: flex;
  gap: 26px;
  margin-top: 20px;
}
.contents .main .item {
  width: 33%;
  position: relative;
}
.contents .main .item p {
  margin-top: 10px;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
}
.contents .main .item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.footer-nav {
  padding: 80px 0;
}
.footer-nav-inner {
  display: flex;
  align-items: center;
  max-width: 1120px;
  width: 80%;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.footer-logo img {
  height: 36px;
  width: auto;
}
.footer-logo span {
  font-size: 11px;
  font-weight: 500;
  color: #434343;
  line-height: 1.5;
  font-family: "Zen Maru Gothic", sans-serif;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.footer-links a {
  font-size: 14px;
  font-weight: 400;
  color: #434343;
  text-decoration: none;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.5;
  text-align: center;
  transition: opacity 0.3s ease;
}
.footer-links a:hover {
  opacity: 0.6;
}

.footer-line {
  display: flex;
  align-items: center;
}
.footer-line img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.footer-copy {
  text-align: right;
  font-size: 14px;
  color: #929292;
  max-width: 1120px;
  width: 80%;
  margin: 0 auto;
  margin-top: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.02em;
}

.k-hero .ttl {
  width: 250px;
  margin: 0 auto;
  margin-top: 178px;
  text-align: center;
}
.k-hero .ttl h1 {
  font-weight: 500;
  font-size: 24px;
  margin-top: 10px;
}
.k-hero .ttl img {
  margin: 0 auto;
}
.k-hero .hero-img {
  max-width: 1116px;
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
}

.s-nav {
  margin: 80px 0;
}
.s-nav .content {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
.s-nav .content .item {
  width: 197px;
  height: 80px;
  text-align: center;
  border-right: 1px solid #D9D9D9;
  position: relative;
}
.s-nav .content .item p {
  color: #F8CC4D;
  font-size: 14px;
  font-weight: 500;
}
.s-nav .content .item h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 6px;
}
.s-nav .content .item::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #F8CC4D;
  border-bottom: 1px solid #F8CC4D;
  transform: rotate(45deg);
  margin: 10px auto 0;
}
.s-nav .content .item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.s-nav .content .item:first-child {
  border-left: 1px solid #D9D9D9;
}

.strength-section {
  margin: 60px 0;
}

.s1 {
  margin: 0 auto;
  margin-top: 120px;
  display: flex;
  max-width: 1100px;
  width: 100%;
  justify-content: center;
  gap: 40px;
}
.s1 .info {
  max-width: 550px;
}
.s1 .info .ttl h2 {
  font-size: 20px;
  font-weight: 500;
  padding-left: 50px;
  position: relative;
  bottom: 20px;
}
.s1 .info .ttl p {
  font-size: 16px;
  font-weight: 400;
  padding-left: 50px;
  position: relative;
  bottom: 20px;
}
.s1 .info .txt {
  padding-left: 50px;
}
.s1 .info .txt p {
  font-size: 16px;
  font-weight: 400;
  max-width: 512px;
  width: 100%;
}
.s1 .info .voice {
  margin-top: 38px;
  padding-left: 55px;
  padding-right: 55px;
  border: 2px solid #F8CC4D;
  border-radius: 20px;
  padding-bottom: 30px;
}
.s1 .info .voice h3 {
  padding-left: 20px;
  padding-right: 20px;
  color: #F8CC4D;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  bottom: 15px;
  background: #FFFDF8;
  display: inline-block;
}
.s1 .img {
  width: 50%;
  display: flex;
  justify-content: right;
}
.s1 .img img {
  height: 100%;
  max-height: 442px;
}
.s1 .img .width75 {
  width: 75%;
}

.s2 {
  margin: 0 auto;
  margin-top: 180px;
  max-width: 1100px;
  width: 100%;
  padding-bottom: 100px;
}
.s2 .main {
  display: flex;
  flex-flow: row-reverse;
  justify-content: center;
  gap: 40px;
}
.s2 .main .info {
  width: 50%;
}
.s2 .main .info .ttl h2 {
  font-size: 20px;
  font-weight: 500;
  padding-left: 50px;
  position: relative;
  bottom: 20px;
}
.s2 .main .info .ttl p {
  font-size: 16px;
  font-weight: 400;
  padding-left: 50px;
  position: relative;
  bottom: 20px;
}
.s2 .main .info .txt {
  padding-left: 50px;
}
.s2 .main .info .txt p {
  font-size: 16px;
  font-weight: 400;
}
.s2 .main .img {
  width: 50%;
}
.s2 .main .img img {
  width: 100%;
}
.s2 .voice {
  display: flex;
  align-items: center;
  padding: 30px 60px;
  justify-content: center;
  border: 2px solid #F8CC4D;
  border-radius: 20px;
  margin-top: 30px;
}
.s2 .voice h3 {
  color: #F8CC4D;
  font-size: 16px;
  font-weight: 400;
  width: 20%;
  text-align: center;
}
.s2 .voice p {
  width: 80%;
}
.s2 .licence {
  margin-top: 30px;
}
.s2 .licence h3 {
  color: #F8CC4D;
  font-size: 16px;
  font-weight: 400;
}
.s2 .licence .main {
  margin-top: 20px;
  display: flex;
  flex-flow: column;
  gap: 0;
}
.s2 .licence .main .item {
  display: flex;
  width: 100%;
  gap: 70px;
  border-bottom: 2px solid #D9D9D9;
  align-items: center;
  padding: 37px 53px;
}
.s2 .licence .main .item .ttl {
  width: 30%;
  display: flex;
  gap: 20px;
  align-items: center;
}
.s2 .licence .main .item .ttl h4 {
  font-weight: 400;
  font-size: 20px;
}
.s2 .licence .main .item .info {
  width: 70%;
}
.s2 .licence .main .item .info p {
  font-size: 16px;
  font-weight: 400;
}
.s2 .licence .main .item:first-child {
  border-top: 2px solid #D9D9D9;
}
.s2 .s7-img {
  margin-top: 100px;
  width: 100%;
}
.s2 .s7-img img {
  width: 100%;
}

.s3 {
  width: 100%;
  background: #fff;
  padding: 60px 0;
  padding-bottom: 120px;
}
.s3 .info {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.s3 .info .ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.s3 .info .ttl > div h2 {
  font-size: 20px;
  font-weight: 500;
  padding-left: 50px;
  position: relative;
  bottom: 20px;
}
.s3 .info .ttl p {
  font-size: 20px;
  font-weight: 400;
  position: relative;
  bottom: 10px;
}
.s3 .main_img {
  width: 100%;
  margin-top: 40px;
}
.s3 .main_img img {
  width: 100%;
}
.s3 .main_img p {
  max-width: 512px;
  width: 100%;
  margin: 0 auto;
  margin-top: 38px;
  text-align: center;
}
.s3 .sub {
  width: 100%;
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
.s3 .sub .item {
  width: 50%;
}
.s3 .sub .item img {
  width: 100%;
}
.s3 .sub .item p {
  margin-top: 20px;
  text-align: center;
}

.act-data {
  max-width: 1100px;
  width: 100%;
  margin: 80px auto;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.act-card {
  width: 40%;
  border: 2px solid #F8CC4D;
  border-radius: 20px;
  padding: 40px 15px;
  position: relative;
  text-align: center;
  background: #fff;
}
.act-card-label {
  display: inline-block;
  background: #F8CC4D;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 6px 28px;
  border-radius: 50px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.act-card-body {
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.act-card-people {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  top: 70px;
}
.act-card-number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.act-card-number .num {
  font-size: 128px;
  font-weight: 700;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
}
.act-card-number .unit {
  font-size: 32px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-left: 4px;
}
.act-card-note {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: -4px;
  padding-left: 40px;
}
.act-card-desc {
  font-size: 16px;
  font-weight: 400;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: 24px;
}
.act-card--wide {
  width: 60%;
}

.act-chart {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  width: 100%;
  height: 300px;
  position: relative;
  justify-content: center;
}
.act-chart::after {
  content: "";
  position: absolute;
  bottom: 25px;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: #F8CC4D;
}
.act-chart-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.act-chart-value {
  display: flex;
  align-items: baseline;
}
.act-chart-value .num {
  font-size: 40px;
  font-weight: 700;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
}
.act-chart-value .unit {
  font-size: 18px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-left: 2px;
}
.act-chart-fill {
  width: 90px;
  border-radius: 4px 4px 0 0;
}
.act-chart-name {
  font-size: 14px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  white-space: nowrap;
  padding-top: 8px;
  text-align: center;
}

.act-pie-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.act-pie {
  display: block;
}

.act-pie-label {
  position: absolute;
  display: flex;
  flex-direction: column;
}
.act-pie-label .act-pie-name {
  font-size: 16px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
}
.act-pie-label .act-pie-value {
  display: flex;
  align-items: baseline;
}
.act-pie-label .act-pie-value .num {
  font-size: 36px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
}
.act-pie-label .act-pie-value .unit {
  font-size: 16px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-left: 2px;
}
.act-pie-label--left {
  top: 30px;
  left: -25px;
}
.act-pie-label--right {
  bottom: 30px;
  right: -30px;
  align-items: flex-end;
}

.label_1 {
  right: 50px !important;
}

.label_2 {
  top: 100px !important;
}

.label_3 {
  bottom: 20px !important;
}

.label_4 {
  top: 80px !important;
}

.label_5 {
  left: 50px !important;
}

.act-donut-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.act-donut {
  display: block;
}

.act-donut-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.act-donut-label {
  position: absolute;
  display: flex;
  flex-direction: column;
}
.act-donut-label .act-donut-name {
  font-size: 16px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
}
.act-donut-label .act-donut-value {
  display: flex;
  align-items: baseline;
}
.act-donut-label .act-donut-value .num {
  font-size: 36px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
}
.act-donut-label .act-donut-value .unit {
  font-size: 16px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-left: 2px;
}
.act-donut-label--left {
  top: 20px;
  left: 20px;
}
.act-donut-label--right {
  top: 20px;
  right: 20px;
  align-items: flex-end;
}

.act-card--height {
  height: 356px;
  width: 30%;
}
.act-card--height:nth-child(3) {
  width: 40%;
}

.act-card-small {
  font-size: 14px;
}

.act-simple-number {
  display: flex;
  align-items: baseline;
}
.act-simple-number .prefix {
  font-size: 36px;
  font-weight: 400;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-right: 4px;
}
.act-simple-number .num {
  font-size: 128px;
  font-weight: 700;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
}
.act-simple-number .unit {
  font-size: 32px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-left: 4px;
}

.act-bar-chart {
  width: 100%;
  padding: 0 10px;
}
.act-bar-chart-sublabel {
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 20px;
  position: relative;
}
.act-bar-chart-sublabel:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #434343;
  position: absolute;
  right: 26px;
  top: 35px;
  transform: rotate(45deg);
}
.act-bar-chart-row {
  display: flex;
  width: 100%;
  height: 100px;
  border-radius: 4px;
  overflow: hidden;
}
.act-bar-chart-fill {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
}
.act-bar-chart-fill--main {
  background-color: #F8CC4D;
}
.act-bar-chart-fill--sub {
  background-color: #FDEFC6;
  align-items: center;
}
.act-bar-chart-text {
  font-size: 14px;
  font-weight: 400;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
}
.act-bar-chart-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.act-bar-chart-value .num {
  font-size: 36px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1;
}
.act-bar-chart-value .unit {
  font-size: 18px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-left: 2px;
}

.teamwork {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 200px;
}
.teamwork .sp {
  display: none;
}

.i-nav--content {
  max-width: 591px;
  width: 100%;
  display: flex;
  margin: 0 auto;
  margin-top: 100px;
}
.i-nav--item {
  position: relative;
  width: 197px;
  text-align: center;
  border-right: 1px solid #D9D9D9;
  height: 80px;
}
.i-nav--item:first-child {
  border-left: 1px solid #D9D9D9;
}
.i-nav--item p {
  color: #F8CC4D;
  font-size: 14px;
  font-weight: 500;
}
.i-nav--item h3 {
  font-size: 16px;
  font-weight: 500;
}
.i-nav--item::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #F8CC4D;
  border-bottom: 1px solid #F8CC4D;
  transform: rotate(45deg);
  margin: 10px auto 0;
}
.i-nav--item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.i-s--small--width {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.i-s--case {
  margin-top: 60px;
}
.i-s--case h2 {
  font-size: 32px;
  font-weight: 400;
}
.i-s--profile {
  margin-top: 30px;
}
.i-s--main {
  max-width: 519px;
  width: 100%;
  background: #fff;
  display: flex;
  padding: 20px 0;
  border-radius: 20px;
  border-right: 10px solid #FDF8D0;
  border-bottom: 10px solid #FDF8D0;
}
.i-s--main img {
  width: 74px;
  position: relative;
  bottom: 20px;
}
.i-s--main h3 {
  margin-left: 30px;
  font-weight: 700;
  font-size: 16px;
}
.i-s--main > div {
  margin-left: 70px;
}
.i-s--main > div p {
  font-weight: 500;
  font-size: 16px;
}
.i-s--main > div p:last-child {
  margin-top: 12px;
}
.i-s--info {
  margin-top: 40px;
}
.i-s--info p:last-child::before {
  content: "";
  width: 40px;
  height: 1px;
  background: #434343;
  display: inline-block;
  position: relative;
  bottom: 6px;
  margin-right: 10px;
}
.i-s--img {
  margin-top: 60px;
  padding: 40px 0 0;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.i-s--faq {
  margin-top: 60px;
  margin-bottom: 120px;
}

.accordion-item {
  margin-top: 30px;
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: center;
  background: #F8CC4D;
  border-radius: 10px;
}
.accordion-header p {
  font-size: 16px;
  font-weight: 500;
  color: #434343;
  width: 100%;
}
.accordion-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 20px;
}
.accordion-icon::before, .accordion-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
  transition: transform 0.3s ease;
}
.accordion-icon::before {
  width: 20px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.accordion-icon::after {
  width: 2px;
  height: 20px;
  transform: translate(-50%, -50%);
}
.is-open .accordion-icon::before {
  background: #fff;
}
.is-open .accordion-icon::after {
  background: #fff;
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
  border-radius: 0 0 10px 10px;
}
.accordion-body p {
  font-size: 15px;
  line-height: 2;
  text-align: center;
  color: #434343;
}
.is-open .accordion-body {
  max-height: 500px;
  padding: 30px 30px 40px;
}

.carousel {
  position: relative;
}
.carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.8s ease;
}
.carousel-slide {
  flex: 0 0 40%;
  margin: 0 -2%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.8s ease, opacity 0.8s ease;
  transform: scale(1);
}
.carousel-slide img {
  width: 100%;
  display: block;
}
.carousel-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.8s ease;
}
.carousel-slide.is-active {
  z-index: 2;
  transform: scale(1.1) translateY(15px);
  position: relative;
  top: 20px;
}
.carousel-slide.is-active::after {
  opacity: 0;
}
.carousel-slide.no-transition {
  transition: none !important;
}
.carousel-slide.no-transition::after {
  transition: none !important;
}
.carousel-track.no-transition {
  transition: none !important;
}
.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 80px 20% 30px 0;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #FDEFC6;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}
.carousel-dot.is-active {
  width: 20px;
  height: 20px;
  background: #FDEFC6;
}

.d-nav--content {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 100px;
}
.d-nav--item {
  width: 204px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}
.d-nav--item a {
  text-decoration: none;
  color: black;
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.d-nav--item:nth-child(1) {
  background: #FFBE00;
}
.d-nav--item:nth-child(1) a {
  color: #fff;
}
.d-nav--item:nth-child(2) {
  background: #FDEFC6;
}

.daily {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  margin-top: 120px;
}
.daily .ttl h2 {
  font-weight: 700;
  font-size: 36px;
}
.daily .ttl h2 span {
  font-size: 16px;
  font-weight: 400;
  margin-left: 10px;
}
.daily .img {
  width: 100%;
}
.daily .img img {
  width: 100%;
}
.daily .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .daily .pc {
    display: none;
  }
  .daily .sp {
    display: block;
  }
}
.daily .position {
  position: relative;
  bottom: 100px;
}
.daily .position2 {
  margin-bottom: 20px;
}

.margin-b {
  margin-bottom: 120px;
}

.recruit-tab {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 0 20px;
  margin-bottom: 200px;
}
.recruit-tab__buttons {
  display: flex;
}
.recruit-tab__btn {
  flex: 1;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  border: none;
  cursor: pointer;
  background: #e6e6e6;
  color: #434343;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 4px solid transparent;
}
.recruit-tab__btn.is-active {
  background: #F8CC4D;
  font-weight: 700;
}
.recruit-tab__content {
  padding: 40px 0;
}
.recruit-tab__panel {
  display: none;
}
.recruit-tab__panel.is-active {
  display: block;
}

.recruit-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  position: relative;
  margin-bottom: 100px;
}
.recruit-actions__back {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 18px 40px;
  border: 2px solid #F8CC4D;
  border-radius: 999px;
  background: #fff;
  color: #F8CC4D;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.recruit-actions__back:hover {
  background: #F8CC4D;
  color: #fff;
}
.recruit-actions__apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: #F8CC4D;
  border-radius: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
  position: absolute;
  right: -50px;
  top: 30px;
}
.recruit-actions__apply:hover {
  opacity: 0.8;
}

.recruit-list {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px 120px;
}
.recruit-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.recruit-list__empty {
  text-align: center;
  font-size: 16px;
  color: #929292;
  padding: 60px 0;
}

.recruit-card {
  display: block;
  background: #fff;
  border: 2px solid #F8CC4D;
  border-radius: 16px;
  padding: 28px 24px 24px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.recruit-card:hover {
  box-shadow: 0 4px 16px rgba(248, 204, 77, 0.25);
  transform: translateY(-2px);
}
.recruit-card__date {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #F8CC4D;
  font-family: "Zen Maru Gothic", sans-serif;
}
.recruit-card__title {
  font-size: 16px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.6;
  margin-top: 14px;
}
.recruit-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.recruit-card__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 4px 14px;
  border-radius: 4px;
  line-height: 1.4;
}
.recruit-card__tag--employment {
  background: #F8CC4D;
  color: #fff;
}
.recruit-card__tag--job {
  background: #FDEFC6;
  color: #434343;
}

.r-s {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
}
.r-s .main .ttl h1 {
  font-size: 20px;
  font-weight: 400;
  color: #434343;
  text-align: center;
}
.r-s .main .content {
  margin-top: 50px;
}
.r-s .main .content .wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}
.r-s .main .content .wp-block-table table tbody tr td {
  border: solid 1px #D9D9D9;
}
.r-s .main .content .wp-block-table table tbody tr td:first-child {
  background: #FDEFC6;
  text-align: center;
  width: 251px;
  padding: 30px 0;
}
.r-s .main .content .wp-block-table table tbody tr td:last-child {
  text-align: center;
  padding: 30px 0;
}
.r-s .main .content .wp-block-table table tbody tr td:last-child p:nth-child(n+2) {
  margin-top: 12px;
}

.entry-step {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  background: #f5f5f5;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #F8CC4D;
}
.entry-step__item {
  flex: 1;
  text-align: center;
  padding: 16px 0 16px 10px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #929292;
  position: relative;
  background: #FFFDF8;
}
.entry-step__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -19px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 27px solid transparent;
  border-bottom: 27px solid transparent;
  border-left: 19px solid #F8CC4D;
  z-index: 3;
}
.entry-step__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 17px solid #FFFDF8;
  z-index: 4;
}
.entry-step__item:nth-child(n+2) {
  padding-left: 28px;
}
.entry-step__item.is-active {
  background: #F8CC4D;
  color: #434343;
  font-weight: 700;
}
.entry-step__item.is-active::before {
  border-left-color: #F8CC4D;
}
.entry-step__item.is-active::after {
  border-left-color: #F8CC4D;
}
.entry-step__item.is-done {
  background: #FDEFC6;
  color: #434343;
}
.entry-step__item.is-done::before {
  border-left-color: #FDEFC6;
}
.entry-step__item.is-done::after {
  border-left-color: #FDEFC6;
}

.entry-form {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px 120px;
}
.entry-form__inner {
  width: 100%;
}
.entry-form__required-note {
  font-size: 16px;
  color: #434343;
  margin-top: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.entry-form__required-note .required {
  color: #F8CC4D;
  margin-right: 2px;
}
.entry-form__confirm-note {
  font-size: 16px;
  color: #434343;
  margin-top: 20px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
}
.entry-form__errors {
  background: #fff0f0;
  border: 1px solid #e88;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 20px;
}
.entry-form__errors p {
  font-size: 14px;
  color: #c33;
  line-height: 1.8;
}
.entry-form__table {
  margin-top: 30px;
}
.entry-form__row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #F8CC4D;
  min-height: 80px;
  gap: 20px;
}
.entry-form__row--textarea {
  align-items: center;
  padding: 20px 0;
  background: #FFFDF8;
}
.entry-form__label {
  width: 200px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  padding: 0 10px;
}
.entry-form__label .required {
  color: #F8CC4D;
  margin-right: 2px;
}
.entry-form__field {
  flex: 1;
  padding: 10px 0;
}
.entry-form__field input[type=text],
.entry-form__field input[type=email],
.entry-form__field input[type=tel],
.entry-form__field input[type=date] {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 0;
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #000;
  outline: none;
  border: solid 1px #D9D9D9;
  background: #FFFDF8;
}
.entry-form__field input[type=text]::-moz-placeholder, .entry-form__field input[type=email]::-moz-placeholder, .entry-form__field input[type=tel]::-moz-placeholder, .entry-form__field input[type=date]::-moz-placeholder {
  color: #D9D9D9;
}
.entry-form__field input[type=text]::placeholder,
.entry-form__field input[type=email]::placeholder,
.entry-form__field input[type=tel]::placeholder,
.entry-form__field input[type=date]::placeholder {
  color: #D9D9D9;
}
.entry-form__field input[type=text]:focus,
.entry-form__field input[type=email]:focus,
.entry-form__field input[type=tel]:focus,
.entry-form__field input[type=date]:focus {
  background: #fdf8e8;
}
.entry-form__field textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #000;
  resize: vertical;
  outline: none;
}
.entry-form__field textarea::-moz-placeholder {
  color: #D9D9D9;
}
.entry-form__field textarea::placeholder {
  color: #D9D9D9;
}
.entry-form__field textarea:focus {
  border-color: #F8CC4D;
}
.entry-form__field--confirm {
  font-size: 15px;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 20px 0;
}
.entry-form__radio {
  display: inline-flex;
  align-items: center;
  margin-right: 24px;
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #434343;
  cursor: pointer;
}
.entry-form__radio input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #d9d9d9;
  border-radius: 50%;
  margin-right: 6px;
  position: relative;
  cursor: pointer;
}
.entry-form__radio input[type=radio]:checked {
  border-color: #F8CC4D;
}
.entry-form__radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #F8CC4D;
  border-radius: 50%;
}
.entry-form__checkbox {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #434343;
  cursor: pointer;
}
.entry-form__checkbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #d9d9d9;
  border-radius: 3px;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}
.entry-form__checkbox input[type=checkbox]:checked {
  background: #F8CC4D;
  border-color: #F8CC4D;
}
.entry-form__checkbox input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.entry-form__submit {
  text-align: center;
  margin-top: 50px;
}
.entry-form__submit button,
.entry-form__submit .entry-btn-confirm {
  display: inline-block;
  min-width: 400px;
  padding: 18px 60px;
  background: #F8CC4D;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  letter-spacing: 0.1em;
}
.entry-form__submit button:hover,
.entry-form__submit .entry-btn-confirm:hover {
  opacity: 0.8;
}
.entry-form__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}
.entry-form__actions p {
  display: flex;
  gap: 20px;
}
.entry-form__back {
  display: inline-block;
  min-width: 200px;
  padding: 16px 40px;
  border: 2px solid #d9d9d9;
  border-radius: 999px;
  background: #fff;
  color: #929292;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s, color 0.3s;
  letter-spacing: 0.1em;
}
.entry-form__back:hover {
  background: #f5f5f5;
}
.entry-form__send {
  display: inline-block;
  min-width: 300px;
  padding: 18px 60px;
  background: #F8CC4D;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  letter-spacing: 0.1em;
}
.entry-form__send:hover {
  opacity: 0.8;
}

.wpcf7 .entry-form__field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7 .entry-form__field input.wpcf7-form-control[type=text],
.wpcf7 .entry-form__field input.wpcf7-form-control[type=email],
.wpcf7 .entry-form__field input.wpcf7-form-control[type=tel],
.wpcf7 .entry-form__field input.wpcf7-form-control[type=date] {
  width: 100%;
  padding: 12px 16px;
  border: solid 1px #D9D9D9;
  border-radius: 0;
  background: #FFFDF8;
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #000;
  outline: none;
}
.wpcf7 .entry-form__field input.wpcf7-form-control[type=text]::-moz-placeholder, .wpcf7 .entry-form__field input.wpcf7-form-control[type=email]::-moz-placeholder, .wpcf7 .entry-form__field input.wpcf7-form-control[type=tel]::-moz-placeholder, .wpcf7 .entry-form__field input.wpcf7-form-control[type=date]::-moz-placeholder {
  color: #D9D9D9;
}
.wpcf7 .entry-form__field input.wpcf7-form-control[type=text]::placeholder,
.wpcf7 .entry-form__field input.wpcf7-form-control[type=email]::placeholder,
.wpcf7 .entry-form__field input.wpcf7-form-control[type=tel]::placeholder,
.wpcf7 .entry-form__field input.wpcf7-form-control[type=date]::placeholder {
  color: #D9D9D9;
}
.wpcf7 .entry-form__field input.wpcf7-form-control[type=text]:focus,
.wpcf7 .entry-form__field input.wpcf7-form-control[type=email]:focus,
.wpcf7 .entry-form__field input.wpcf7-form-control[type=tel]:focus,
.wpcf7 .entry-form__field input.wpcf7-form-control[type=date]:focus {
  background: #fdf8e8;
}
.wpcf7 .entry-form__field textarea.wpcf7-form-control {
  width: 100%;
  padding: 16px;
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #000;
  resize: vertical;
  outline: none;
}
.wpcf7 .entry-form__field textarea.wpcf7-form-control::-moz-placeholder {
  color: #D9D9D9;
}
.wpcf7 .entry-form__field textarea.wpcf7-form-control::placeholder {
  color: #D9D9D9;
}
.wpcf7 .entry-form__field textarea.wpcf7-form-control:focus {
  border-color: #F8CC4D;
}
.wpcf7 .entry-form__field .wpcf7-radio {
  display: flex;
  gap: 0;
}
.wpcf7 .entry-form__field .wpcf7-radio .wpcf7-list-item {
  margin: 0 24px 0 0;
}
.wpcf7 .entry-form__field .wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #434343;
  cursor: pointer;
}
.wpcf7 .entry-form__field .wpcf7-radio .wpcf7-list-item input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #d9d9d9;
  border-radius: 50%;
  margin-right: 6px;
  position: relative;
  cursor: pointer;
}
.wpcf7 .entry-form__field .wpcf7-radio .wpcf7-list-item input[type=radio]:checked {
  border-color: #F8CC4D;
}
.wpcf7 .entry-form__field .wpcf7-radio .wpcf7-list-item input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #F8CC4D;
  border-radius: 50%;
}
.wpcf7 .entry-form__field .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .entry-form__field .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #434343;
  cursor: pointer;
}
.wpcf7 .entry-form__field .wpcf7-acceptance .wpcf7-list-item a {
  color: #000;
}
.wpcf7 .entry-form__field .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #d9d9d9;
  border-radius: 3px;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}
.wpcf7 .entry-form__field .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked {
  background: #F8CC4D;
  border-color: #F8CC4D;
}
.wpcf7 .entry-form__field .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.wpcf7 .entry-form__submit input.wpcf7-submit {
  display: inline-block;
  min-width: 400px;
  padding: 18px 60px;
  background: #F8CC4D;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  letter-spacing: 0.1em;
}
.wpcf7 .entry-form__submit input.wpcf7-submit:hover {
  opacity: 0.8;
}
.wpcf7 .entry-form__actions input.wpcf7-submit,
.wpcf7 .entry-form__actions input.wpcf7-previous {
  font-family: "Zen Maru Gothic", sans-serif;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  letter-spacing: 0.1em;
}
.wpcf7 .entry-form__actions input.wpcf7-previous {
  min-width: 200px;
  padding: 16px 40px;
  border: 2px solid #d9d9d9;
  background: #fff;
  color: #929292;
  font-size: 16px;
  font-weight: 500;
}
.wpcf7 .entry-form__actions input.wpcf7-previous:hover {
  background: #f5f5f5;
}
.wpcf7 .entry-form__actions input.wpcf7-submit {
  min-width: 300px;
  padding: 18px 60px;
  background: #F8CC4D;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
}
.wpcf7 .entry-form__actions input.wpcf7-submit:hover {
  opacity: 0.8;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #c33;
  font-size: 13px;
  margin-top: 4px;
}
.wpcf7 .wpcf7-response-output {
  border-color: #F8CC4D !important;
  padding: 12px 20px;
  font-size: 14px;
}

.entry-thanks {
  text-align: center;
  padding: 80px 0;
}
.entry-thanks h2 {
  font-size: 24px;
  font-weight: 500;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
}
.entry-thanks p {
  font-size: 16px;
  color: #434343;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-top: 24px;
  line-height: 2;
}
.entry-thanks__btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 50px;
  background: #F8CC4D;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  letter-spacing: 0.1em;
}
.entry-thanks__btn:hover {
  opacity: 0.8;
}

.entry-info {
  margin: 60px auto;
  max-width: 610px;
  width: 100%;
}
.entry-info > div {
  text-align: center;
}
.entry-info > div > p {
  font-size: 16px;
  font-weight: 400;
}

.privacy__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 100px;
}
.privacy__lead {
  font-size: 15px;
  line-height: 2;
  color: #000000;
  margin-bottom: 50px;
}
.privacy__section {
  margin-bottom: 40px;
}
.privacy__section h2 {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 12px;
}
.privacy__section p {
  font-size: 15px;
  line-height: 2;
  color: #000000;
}
.privacy__section ul {
  list-style: none;
  padding: 0;
  margin-top: 4px;
}
.privacy__section ul li {
  font-size: 15px;
  line-height: 2;
  color: #000000;
}
.privacy__contact {
  margin-top: 20px;
}
.privacy__contact p {
  line-height: 2;
}
.privacy__date {
  font-size: 15px;
  color: #000000;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .sp_aboutimg {
    display: block;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
    position: relative;
    z-index: 30;
  }
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  .sp-br {
    display: block;
  }
  .header {
    margin-top: 0;
  }
  .header-inner {
    width: 90%;
    height: 60px;
  }
  .header-logo {
    padding-left: 0;
  }
  .header-logo img {
    height: 30px;
  }
  .header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #FFFDF8;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 0;
    border-radius: 0;
  }
  .header-nav.is-open {
    display: flex;
  }
  .header-nav-list {
    flex-direction: column;
    height: auto;
    gap: 30px;
    padding: 0;
  }
  .header-nav-list a {
    font-size: 16px;
  }
  .header-actions {
    flex-direction: column;
    height: auto;
    gap: 12px;
    padding: 20px 0 0;
  }
  .header-btn {
    width: 240px;
    text-align: center;
    padding: 14px 24px;
  }
  .header-hamburger {
    display: flex;
    z-index: 201;
  }
  .header-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header-hamburger.is-open span:nth-child(2) {
    opacity: 0;
  }
  .header-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .header-hamburger span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .page-sub .header {
    padding-top: 10px;
    padding-bottom: 5px;
  }
  .hero {
    width: 92%;
    margin-top: 80px;
  }
  .hero .main-content .hero-bg {
    height: auto;
  }
  .hero .main-content .hero-bg img {
    border-radius: 15px 0 15px 0;
    height: auto;
  }
  .hero .hero-content {
    flex-direction: column;
    position: relative;
    bottom: auto;
  }
  .hero .hero-content .item-l {
    padding: 0 20px;
    height: auto;
    padding-top: 16px;
    padding-bottom: 20px;
    border-top-right-radius: 15px;
    flex-flow: column;
  }
  .hero .hero-content .item-l p {
    font-size: 18px;
    text-align: left;
  }
  .hero .hero-content .item-l p span {
    font-size: 28px;
  }
  .hero .hero-content .item-l div {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 10px;
    justify-content: flex-start;
  }
  .hero .hero-content .item-l div .border {
    right: 0;
  }
  .hero .hero-content .item-l div img {
    right: 0;
  }
  .hero .hero-content .item-r {
    width: 250px;
    top: 0;
    left: 0;
    margin-top: 16px;
    height: 60px;
    gap: 12px;
    align-self: flex-end;
  }
  .hero .hero-content .item-r img {
    width: 36px;
  }
  .hero .hero-content .item-r p {
    font-size: 12px;
  }
  .bg-o .bg1 {
    top: 0;
  }
  .bg-o .bg3 {
    left: -150px;
    bottom: -50px;
  }
  .about {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .about .main {
    width: 90%;
    padding: 40px 24px;
    border-radius: 30px;
  }
  .about .main .ttl p {
    font-size: 16px;
  }
  .about .main .ttl .yellow {
    font-size: 13px;
  }
  .about .main .item {
    margin-top: 30px;
  }
  .about .main .item p {
    font-size: 15px;
  }
  .about .main .item p br {
    display: none;
  }
  .about .main .card {
    width: 100%;
    padding: 10px 20px;
    height: auto;
    border-radius: 20px;
    margin-top: 30px;
  }
  .about .main .card > div p {
    font-size: 13px;
  }
  .about .parts img {
    width: 60px;
  }
  .about .p1 {
    top: -20px;
    right: -10px;
  }
  .about .p2,
  .about .p3,
  .about .p7,
  .about .p10 {
    display: none;
  }
  .about .p4 {
    bottom: 40px;
    right: -30px;
  }
  .about .p5 {
    bottom: -20px;
    right: 10px;
    display: none;
  }
  .about .p6 {
    bottom: -20px;
    right: 80px;
  }
  .about .p8 {
    top: auto;
    left: -20px;
    bottom: 100px;
  }
  .about .p8 img {
    width: 50px;
  }
  .about .p9 {
    top: auto;
    left: -10px;
    bottom: 0px;
  }
  .about .p9 img {
    width: 50px;
  }
  .act .main {
    flex-direction: column;
  }
  .act .main .item-l {
    width: 100%;
    padding: 50px 0;
  }
  .act .main .item-l .ttl {
    padding-left: 8%;
  }
  .act .main .item-l .ttl h2 {
    font-size: 22px;
  }
  .act .main .item-l .content {
    padding-left: 10%;
    margin-top: 60px;
  }
  .act .main .item-l .content .item {
    gap: 20px;
    margin-top: 20px;
  }
  .act .main .item-l .content .item .left {
    width: 70px;
  }
  .act .main .item-l .btn {
    margin-top: 40px;
    align-items: center;
  }
  .act .main .item-l .btn a {
    font-size: 16px;
  }
  .act .main .item-l .btn a::after {
    width: 200px;
  }
  .act .main .item-l .btn a::before {
    right: -120px;
  }
  .act .main .item-r {
    width: 100%;
    padding: 40px 20px;
  }
  .act .main .item-r img {
    width: 80%;
    margin: 0 auto;
  }
  .section-bg {
    padding-top: 20px;
  }
  .works {
    margin-top: 80px;
  }
  .works .info {
    max-width: 280px;
  }
  .interview .bg > div {
    height: 30px;
  }
  .interview .main {
    flex-direction: column;
    padding: 40px 5% 60px;
    gap: 30px;
  }
  .interview .main .img {
    width: 100%;
    justify-content: center;
  }
  .interview .main .content {
    width: 100%;
  }
  .interview .main .content .ttl h2 {
    font-size: 20px;
  }
  .interview .main .content .info p {
    width: 100%;
    font-size: 16px;
  }
  .interview .main .content .info p .pc-br {
    display: none;
  }
  .interview .main .content .info a {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
  }
  .interview .main .content .info a img {
    padding-left: 0;
  }
  .contents {
    width: 90%;
    margin-top: 80px;
    padding-bottom: 80px;
  }
  .contents .ttl img {
    width: 80%;
    margin: 0 auto;
  }
  .contents .main {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .contents .main .item {
    width: 80%;
  }
  .contents .main .item p {
    font-size: 16px;
  }
  footer .cta {
    padding: 60px 20px;
  }
  footer .cta > p {
    font-size: 15px;
    text-align: center;
  }
  footer .cta > p br {
    display: none;
  }
  footer .cta .btn {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: center;
  }
  footer .cta .btn > div {
    width: 100%;
    max-width: 320px;
    height: 60px;
  }
  footer .cta .btn > div p {
    font-size: 16px;
  }
  .footer-nav {
    padding: 40px 0;
  }
  .footer-nav-inner {
    flex-direction: column;
    width: 90%;
    gap: 24px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-left: 0;
  }
  .footer-links a {
    font-size: 13px;
  }
  .footer-copy {
    text-align: center;
    width: 90%;
    font-size: 12px;
  }
  .k-hero .ttl {
    margin-top: 80px;
    width: 200px;
  }
  .k-hero .ttl h1 {
    font-size: 20px;
  }
  .k-hero .hero-img {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .k-hero .ttl {
    width: 200px;
    margin-top: 80px;
  }
  .k-hero .ttl h1 {
    font-size: 18px;
  }
  .k-hero .hero-img {
    margin-top: 20px;
    width: 90%;
  }
  .s-nav {
    margin: 40px 0;
  }
  .s-nav .content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    width: 100%;
    margin: 0 auto;
  }
  .s-nav .content .item {
    width: 33%;
    height: 100px;
    border-right: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    box-sizing: border-box;
    padding: 10px 0;
  }
  .s-nav .content .item:first-child {
    border-left: 1px solid #D9D9D9;
    border-top: 1px solid #D9D9D9;
  }
  .s-nav .content .item:nth-child(2) {
    border-top: 1px solid #D9D9D9;
  }
  .s-nav .content .item:nth-child(3) {
    border-top: 1px solid #D9D9D9;
  }
  .s-nav .content .item:nth-child(4) {
    border-left: 1px solid #D9D9D9;
  }
  .s-nav .content .item h3 {
    font-size: 14px;
  }
  .strength-section {
    margin: 40px 0;
  }
  .s1 {
    flex-direction: column;
    margin-top: 60px;
    width: 100%;
    gap: 30px;
    padding: 0 5%;
  }
  .s1 .info {
    width: 100%;
  }
  .s1 .info .ttl h2 {
    font-size: 18px;
    padding-left: 0px;
    bottom: 10px;
  }
  .s1 .info .ttl p {
    font-size: 16px;
    padding-left: 0px;
    bottom: 10px;
  }
  .s1 .info .ttl img {
    width: 40px;
    position: relative;
    right: 15px;
    bottom: 6px;
  }
  .s1 .info .txt {
    padding-left: 0;
  }
  .s1 .info .txt p {
    font-size: 16px;
  }
  .s1 .info .voice {
    padding: 0 20px 20px;
    margin-top: 24px;
  }
  .s1 .info .voice h3 {
    font-size: 14px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .s1 .info .voice p {
    font-size: 16px;
  }
  .s1 .img {
    width: 100%;
  }
  .s1 .img img {
    width: 100%;
  }
  .s2 {
    margin-top: 80px;
    width: 100%;
    padding-bottom: 60px;
    padding: 0 5%;
  }
  .s2 .main {
    flex-direction: column;
    gap: 30px;
  }
  .s2 .main .info {
    width: 100%;
  }
  .s2 .main .info .ttl h2 {
    font-size: 18px;
    padding-left: 0;
    bottom: 10px;
  }
  .s2 .main .info .ttl p {
    font-size: 16px;
    padding-left: 0;
    bottom: 10px;
  }
  .s2 .main .info .ttl img {
    width: 40px;
    position: relative;
    right: 15px;
    bottom: 6px;
  }
  .s2 .main .info .txt {
    padding-left: 0;
  }
  .s2 .main .info .txt p {
    font-size: 16px;
  }
  .s2 .main .img {
    width: 100%;
  }
  .s2 .main .img img {
    width: 100%;
  }
  .s2 .voice {
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }
  .s2 .voice h3 {
    width: 100%;
    text-align: left;
  }
  .s2 .voice p {
    width: 100%;
    font-size: 16px;
  }
  .s2 .licence .main .item {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }
  .s2 .licence .main .item .ttl {
    width: 100%;
  }
  .s2 .licence .main .item .ttl h4 {
    font-size: 18px;
  }
  .s2 .licence .main .item .info {
    width: 100%;
  }
  .s2 .licence .main .item .info p {
    font-size: 16px;
  }
  .s2 .s7-img {
    margin-top: 60px;
  }
  .s3 {
    padding: 40px 0 60px;
  }
  .s3 .info {
    width: 90%;
  }
  .s3 .info .ttl > div h2 {
    font-size: 18px;
    padding-left: 0;
    bottom: 10px;
  }
  .s3 .info .ttl > div img {
    width: 40px;
    position: relative;
    bottom: 8px;
  }
  .s3 .info .ttl p {
    font-size: 16px;
    bottom: 0;
    text-align: center;
  }
  .s3 .info .ttl p br {
    display: none;
  }
  .s3 .main_img p {
    font-size: 16px;
    text-align: center;
  }
  .s3 .main_img p br {
    display: none;
  }
  .s3 .sub {
    flex-direction: column;
    gap: 24px;
  }
  .s3 .sub .item {
    width: 100%;
  }
  .s3 .sub .item p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .act-data {
    flex-direction: column;
    gap: 50px;
    margin: 50px auto;
    width: 90%;
    padding: 0;
  }
  .act-card {
    width: 100% !important;
    padding: 30px 15px;
  }
  .act-card-label {
    font-size: 14px;
    padding: 5px 20px;
  }
  .act-card-body {
    min-height: auto;
  }
  .act-card-people {
    top: 40px;
  }
  .act-card-people img {
    width: 180px;
  }
  .act-card-number .num {
    font-size: 90px;
  }
  .act-card-number .unit {
    font-size: 24px;
  }
  .act-card-note {
    font-size: 14px;
    padding-left: 20px;
  }
  .act-card-desc {
    font-size: 14px;
    margin-top: 16px;
  }
  .act-card--height {
    height: auto !important;
  }
  .act-card--height:nth-child(3) {
    width: 100% !important;
  }
  .act-chart {
    gap: 20px;
    height: 260px;
    padding-top: 40px;
  }
  .act-chart-value .num {
    font-size: 24px;
  }
  .act-chart-value .unit {
    font-size: 12px;
  }
  .act-chart-fill {
    width: 50px;
  }
  .act-chart-fill[style*="220px"] {
    height: 160px !important;
  }
  .act-chart-fill[style*="24px"] {
    height: 20px !important;
  }
  .act-chart-name {
    font-size: 12px;
  }
  .act-pie-wrapper {
    margin: 20px 0;
  }
  .act-pie {
    width: 200px !important;
    height: 200px !important;
  }
  .act-pie-label .act-pie-name {
    font-size: 14px;
  }
  .act-pie-label .act-pie-value .num {
    font-size: 28px;
  }
  .act-pie-label .act-pie-value .unit {
    font-size: 14px;
  }
  .act-pie-label--left {
    top: 10px;
    left: -10px;
  }
  .act-pie-label--right {
    bottom: 10px;
    right: -10px;
  }
  .act-donut-wrapper {
    margin: 20px 0;
  }
  .act-donut {
    width: 200px !important;
    height: 200px !important;
  }
  .act-donut-icon img {
    width: 70px;
  }
  .act-donut-label .act-donut-name {
    font-size: 14px;
  }
  .act-donut-label .act-donut-value .num {
    font-size: 28px;
  }
  .act-donut-label .act-donut-value .unit {
    font-size: 14px;
  }
  .act-donut-label--left {
    top: 10px;
    left: 0;
  }
  .act-donut-label--right {
    top: 10px;
    right: 0;
  }
  .act-simple-number .prefix {
    font-size: 24px;
  }
  .act-simple-number .num {
    font-size: 90px;
  }
  .act-simple-number .unit {
    font-size: 24px;
  }
  .act-card-small {
    font-size: 12px;
  }
  .act-bar-chart {
    padding: 0;
  }
  .act-bar-chart-sublabel {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .act-bar-chart-sublabel::after {
    right: 20px;
    top: 30px;
  }
  .act-bar-chart-row {
    height: 80px;
  }
  .act-bar-chart-fill {
    padding: 0 10px;
  }
  .act-bar-chart-text {
    font-size: 11px;
  }
  .act-bar-chart-value .num {
    font-size: 24px;
  }
  .act-bar-chart-value .unit {
    font-size: 14px;
  }
  .teamwork {
    width: 90%;
    padding-bottom: 80px;
  }
  .teamwork .pc {
    display: none;
  }
  .teamwork .sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .i-nav--content {
    margin-top: 50px;
    width: 90%;
    max-width: none;
  }
  .i-nav--item {
    width: 33.333%;
    height: 70px;
  }
  .i-nav--item p {
    font-size: 12px;
  }
  .i-nav--item h3 {
    font-size: 13px;
  }
  .i-s--small--width {
    width: 90%;
  }
  .i-s--case {
    margin-top: 50px;
    text-align: center;
  }
  .i-s--case img {
    width: 80px;
    margin: 0 auto;
  }
  .i-s--case h2 {
    font-size: 20px;
    margin-top: 12px;
    line-height: 1.5;
  }
  .i-s--profile {
    margin-top: 24px;
  }
  .i-s--main {
    max-width: 100%;
    padding: 16px 0;
    border-right-width: 6px;
    border-bottom-width: 6px;
  }
  .i-s--main img {
    width: 56px;
    bottom: 16px;
  }
  .i-s--main h3 {
    margin-left: 16px;
    font-size: 14px;
  }
  .i-s--main > div {
    margin-left: 20px;
  }
  .i-s--main > div p {
    font-size: 13px;
  }
  .i-s--info {
    margin-top: 30px;
  }
  .i-s--info p {
    font-size: 14px;
  }
  .i-s--img {
    margin-top: 40px;
    padding: 30px 0 0;
  }
  .i-s--faq {
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .accordion-item {
    margin-top: 20px;
  }
  .accordion-header {
    padding: 16px 14px;
  }
  .accordion-header p {
    font-size: 13px;
    line-height: 1.6;
  }
  .accordion-icon {
    width: 16px;
    height: 16px;
    margin-left: 12px;
  }
  .accordion-icon::before {
    width: 16px;
  }
  .accordion-icon::after {
    height: 16px;
  }
  .accordion-body {
    padding: 0 16px;
  }
  .accordion-body p {
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
  }
  .is-open .accordion-body {
    max-height: 800px;
    padding: 20px 16px 24px;
  }
  .carousel-slide {
    flex: 0 0 70%;
    margin: 0 -2%;
    border-radius: 12px;
  }
  .carousel-slide.is-active {
    transform: scale(1.05) translateY(10px);
    top: 10px;
  }
  .carousel-dots {
    padding: 40px 0 20px;
    justify-content: center;
  }
  .carousel-dot {
    width: 10px;
    height: 10px;
  }
  .carousel-dot.is-active {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 768px) {
  .d-nav--content {
    margin-top: 50px;
    gap: 16px;
    padding: 0 20px;
  }
  .d-nav--item {
    width: 140px;
    height: 44px;
  }
  .d-nav--item a {
    font-size: 15px;
  }
  .daily {
    margin-top: 60px;
    width: 90%;
  }
  .daily .ttl h2 {
    font-size: 22px;
    line-height: 1.4;
  }
  .daily .ttl h2 span {
    font-size: 12px;
    margin-left: 6px;
    display: block;
    margin-top: 4px;
  }
  .daily .img {
    margin-top: 20px;
  }
  .daily .position {
    bottom: 0;
    margin-top: 20px;
  }
  .daily .position2 {
    margin-bottom: 12px;
  }
  .margin-b {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-tab {
    margin-top: 50px;
    padding: 0 16px;
    margin-bottom: 100px;
  }
  .recruit-tab__btn {
    padding: 12px 0;
    font-size: 14px;
  }
  .recruit-tab__content {
    padding: 24px 0;
  }
  .recruit-list {
    padding: 40px 16px 60px;
  }
  .recruit-list__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .recruit-list__empty {
    font-size: 14px;
    padding: 40px 0;
  }
  .recruit-card {
    padding: 20px 18px 18px;
    border-radius: 12px;
  }
  .recruit-card__date {
    font-size: 14px;
  }
  .recruit-card__title {
    font-size: 15px;
    margin-top: 10px;
  }
  .recruit-card__tags {
    margin-top: 12px;
    gap: 6px;
  }
  .recruit-card__tag {
    font-size: 12px;
    padding: 3px 12px;
  }
  .r-s {
    width: 90%;
    margin-top: 50px;
  }
  .r-s .main .ttl h1 {
    font-size: 17px;
    line-height: 1.5;
  }
  .r-s .main .content {
    margin-top: 30px;
  }
  .r-s .main .content .wp-block-table table tbody tr {
    display: flex;
    flex-direction: column;
  }
  .r-s .main .content .wp-block-table table tbody tr td:first-child {
    width: 100%;
    padding: 12px 10px;
    font-size: 14px;
  }
  .r-s .main .content .wp-block-table table tbody tr td:last-child {
    padding: 16px 10px;
    font-size: 14px;
  }
  .recruit-actions {
    flex-direction: column;
    gap: 16px;
    padding: 40px 16px 60px;
    margin-bottom: 40px;
  }
  .recruit-actions__back {
    min-width: 0;
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
    font-size: 14px;
  }
  .recruit-actions__apply {
    position: relative;
    right: auto;
    top: auto;
    width: 100px;
    height: 100px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .entry-info {
    padding: 0px 10px;
  }
  .entry-info div p {
    font-size: 13px;
    line-height: 1.8;
  }
  .entry-info div p br {
    display: none;
  }
  .entry-step {
    max-width: 100%;
    width: 90%;
  }
  .entry-step__item {
    padding: 14px 4px 14px 4px;
    font-size: 13px;
    line-height: 1.2;
  }
  .entry-step__item:not(:last-child)::before {
    right: -12px;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 12px solid #F8CC4D;
  }
  .entry-step__item:not(:last-child)::after {
    right: -10px;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 10px solid #FFFDF8;
  }
  .entry-step__item:nth-child(n+2) {
    padding-left: 14px;
  }
  .entry-step__item.is-active::before {
    border-left-color: #F8CC4D;
  }
  .entry-step__item.is-active::after {
    border-left-color: #F8CC4D;
  }
  .entry-step__item.is-done::before {
    border-left-color: #FDEFC6;
  }
  .entry-step__item.is-done::after {
    border-left-color: #FDEFC6;
  }
  .entry-form {
    padding: 30px 16px 60px;
  }
  .entry-form__required-note {
    font-size: 13px;
    margin-top: 16px;
  }
  .entry-form__confirm-note {
    font-size: 13px;
    margin-top: 16px;
    line-height: 1.6;
  }
  .entry-form__errors {
    padding: 12px 16px;
    margin-top: 16px;
  }
  .entry-form__errors p {
    font-size: 12px;
  }
  .entry-form__table {
    margin-top: 20px;
  }
  .entry-form__row {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 16px 0;
    gap: 16px;
  }
  .entry-form__row--textarea {
    padding: 16px 0;
  }
  .entry-form__label {
    width: 100%;
    text-align: left;
    padding: 0;
    font-size: 16px;
  }
  .entry-form__label br {
    display: none;
  }
  .entry-form__field {
    padding: 0;
  }
  .entry-form__field input[type=text],
  .entry-form__field input[type=email],
  .entry-form__field input[type=tel],
  .entry-form__field input[type=date] {
    padding: 10px 14px;
    font-size: 14px;
  }
  .entry-form__field textarea {
    padding: 14px;
    font-size: 14px;
  }
  .entry-form__field--confirm {
    padding: 6px 0;
    font-size: 14px;
  }
  .entry-form__radio {
    margin-right: 16px;
    font-size: 14px;
  }
  .entry-form__radio input[type=radio] {
    width: 16px;
    height: 16px;
  }
  .entry-form__checkbox {
    font-size: 13px;
  }
  .entry-form__checkbox input[type=checkbox] {
    width: 16px;
    height: 16px;
  }
  .entry-form__submit {
    margin-top: 30px;
  }
  .entry-form__submit button,
  .entry-form__submit .entry-btn-confirm {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    padding: 14px 30px;
    font-size: 16px;
  }
  .entry-form__actions {
    flex-direction: column-reverse;
    gap: 16px;
    margin-top: 30px;
  }
  .entry-form__back {
    min-width: 0;
    width: 100%;
    max-width: 280px;
    padding: 12px 30px;
    font-size: 14px;
  }
  .entry-form__send {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    padding: 14px 30px;
    font-size: 16px;
  }
  .wpcf7 .entry-form__field input.wpcf7-form-control[type=text],
  .wpcf7 .entry-form__field input.wpcf7-form-control[type=email],
  .wpcf7 .entry-form__field input.wpcf7-form-control[type=tel],
  .wpcf7 .entry-form__field input.wpcf7-form-control[type=date] {
    padding: 10px 14px;
    font-size: 14px;
  }
  .wpcf7 .entry-form__field textarea.wpcf7-form-control {
    padding: 14px;
    font-size: 14px;
  }
  .wpcf7 .entry-form__field .wpcf7-radio {
    flex-wrap: wrap;
  }
  .wpcf7 .entry-form__field .wpcf7-radio .wpcf7-list-item {
    margin: 0 16px 8px 0;
  }
  .wpcf7 .entry-form__field .wpcf7-radio .wpcf7-list-item label {
    font-size: 16px;
  }
  .wpcf7 .entry-form__field .wpcf7-acceptance .wpcf7-list-item label {
    font-size: 16px;
  }
  .wpcf7 .entry-form__submit input.wpcf7-submit {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    padding: 14px 30px;
    font-size: 16px;
  }
  .wpcf7 .entry-form__actions p {
    display: flex;
    flex-flow: column;
    gap: 0;
  }
  .wpcf7 .entry-form__actions input.wpcf7-previous {
    min-width: 0;
    width: 100%;
    max-width: 280px;
    padding: 12px 30px;
    font-size: 14px;
  }
  .wpcf7 .entry-form__actions input.wpcf7-submit {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    padding: 14px 30px;
    font-size: 16px;
  }
  .wpcf7 .wpcf7-response-output {
    font-size: 12px;
    padding: 10px 14px;
  }
  .entry-thanks {
    padding: 50px 20px;
  }
  .entry-thanks h2 {
    font-size: 20px;
  }
  .entry-thanks p {
    font-size: 14px;
    margin-top: 20px;
  }
  .entry-thanks p br {
    display: none;
  }
  .entry-thanks__btn {
    margin-top: 30px;
    padding: 14px 40px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */