@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
* {
  box-sizing: border-box;
  word-break: break-all;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

details summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #222;
  font-family: "Noto Sans JP", serif;
}

.sp-none {
  display: none;
}
@media screen and (min-width: 768px) {
  .sp-none {
    display: inline-block;
  }
}

.tb-none {
  display: none;
}
@media screen and (min-width: 1024px) {
  .tb-none {
    display: inline-block;
  }
}

.pc-none {
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .pc-none {
    display: none;
  }
}

.l-about {
  position: relative;
  margin-bottom: 71px;
}
@media screen and (min-width: 768px) {
  .l-about {
    margin-bottom: 141px;
  }
}

.l-benefits {
  padding-bottom: 78px;
}
@media screen and (min-width: 768px) {
  .l-benefits {
    padding-bottom: 107px;
  }
}

.l-blog {
  padding-top: 54px;
  background-color: #faf7f1;
}

.l-footer {
  width: 100%;
}

.l-fv {
  position: relative;
  width: 100%;
  height: 667px;
}
@media screen and (min-width: 1024px) {
  .l-fv {
    height: 823px;
  }
}

.l-recruitment {
  padding-top: 66px;
  padding-bottom: 87px;
  background-color: #faf7f1;
}
@media screen and (min-width: 1024px) {
  .l-recruitment {
    padding-top: 141px;
    padding-bottom: 139px;
  }
}

.l-staff {
  margin-bottom: 71px;
}
@media screen and (min-width: 1024px) {
  .l-staff {
    margin-bottom: 127px;
  }
}

.c-arrow {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 100%;
  background-color: rgb(255, 255, 255);
  border: 1px solid #222;
  transition: all 0.1s;
}
.c-arrow::before {
  content: "";
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  display: block;
  width: 16px;
  height: 2px;
}
.c-arrow span::before, .c-arrow span::after {
  content: "";
  width: 11px;
  height: 2px;
  display: inline-block;
  border-radius: 2px;
  background: #222;
  position: absolute;
  right: 18px;
}
.c-arrow span::before {
  top: calc(50% - 4px);
  transform: rotate(45deg);
}
.c-arrow span::after {
  bottom: calc(50% - 5px);
  transform: rotate(-45deg);
}
.c-arrow:hover {
  width: 70px;
  height: 70px;
}
.c-arrow:hover span::before, .c-arrow:hover span::after {
  right: 24px;
}

.c-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  font-size: 1rem;
  font-family: "Viga", sans-serif;
  width: 277px;
  padding-right: 2px;
  height: 62px;
  margin: 0 auto;
  border: 1px solid #222;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 1.25rem;
    width: 355px;
    height: 80px;
    padding-right: 0;
    padding-top: 2px;
    transform: translateX(-1px);
  }
}
.c-button::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 3px solid #222;
  border-right: 3px solid #222;
  position: absolute;
  right: 25px;
  top: 47%;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-button::after {
    width: 10px;
    height: 10px;
    border-top: 4px solid #222;
    border-right: 4px solid #222;
    right: 31px;
    top: 48%;
  }
}
.c-button:hover {
  color: rgb(255, 255, 255);
  background-color: #222;
}
.c-button:hover::after {
  border-top: 3px solid rgb(255, 255, 255);
  border-right: 3px solid rgb(255, 255, 255);
}

.c-button-subPage {
  width: 294px;
  height: 56px;
  border: 1px solid #222;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #faf7f1;
  color: #222;
  font-size: 1.25rem;
  font-weight: bold;
  padding-top: 1px;
  padding-left: 16px;
}
.c-button-subPage::after {
  content: "";
  width: 16px;
  height: 21px;
  display: inline-block;
  background-image: url(../../img/tetote/down-arrow.png);
  transform: translateX(12px);
}

.c-hamburger {
  border: none;
  position: relative;
  width: 56px;
  height: 48px;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    padding: 57px 56px;
  }
}
.c-hamburger__border {
  position: absolute;
  display: block;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 32px;
  height: 2px;
  background-color: rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  .c-hamburger__border {
    width: 52px;
  }
}
.c-hamburger__border::before, .c-hamburger__border::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 2px;
  background-color: rgb(255, 255, 255);
  transition: all 0.4s;
}
@media screen and (min-width: 768px) {
  .c-hamburger__border::before, .c-hamburger__border::after {
    width: 52px;
  }
}
.c-hamburger__border::before {
  top: -9px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-hamburger__border::before {
    top: -15px;
  }
}
.c-hamburger__border::after {
  top: 9px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-hamburger__border::after {
    top: 15px;
  }
}
.c-hamburger__border.change-borderColor {
  background-color: #222;
}
.c-hamburger__border.change-borderColor::before, .c-hamburger__border.change-borderColor::after {
  background-color: #222;
}
.c-hamburger__borderSubPage {
  background-color: #222;
}
.c-hamburger__borderSubPage::before, .c-hamburger__borderSubPage::after {
  background-color: #222;
}
.c-hamburger__text {
  font-family: "Viga", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 10px;
  width: 40px;
  position: absolute;
  transform: translate(-20px, 9px);
}
@media screen and (min-width: 768px) {
  .c-hamburger__text {
    font-size: 12px;
    transform: translate(-20px, 14px);
  }
}
.c-hamburger__text.change-textColor {
  color: #222;
}
.c-hamburger__textSubPage {
  color: #222;
}

.c-hamburger[aria-expanded=true] .c-hamburger__border {
  background-color: transparent;
}
.c-hamburger[aria-expanded=true] .c-hamburger__border::before {
  transform: rotate(45deg);
  top: 3px;
  left: 5px;
  background-color: #222;
}
@media screen and (min-width: 768px) {
  .c-hamburger[aria-expanded=true] .c-hamburger__border::before {
    top: 5px;
    left: 7px;
  }
}
.c-hamburger[aria-expanded=true] .c-hamburger__border::after {
  transform: rotate(-45deg);
  top: 3px;
  left: 3px;
  background-color: #222;
}
@media screen and (min-width: 768px) {
  .c-hamburger[aria-expanded=true] .c-hamburger__border::after {
    top: 5px;
    left: 6px;
  }
}
.c-hamburger[aria-expanded=true] .c-hamburger__text {
  display: none;
}

.c-title {
  position: relative;
  padding-inline: 17px;
}
@media screen and (min-width: 768px) {
  .c-title {
    padding-inline: 0;
    text-align: center;
  }
}
.c-title__ja {
  font-size: 2rem;
  font-weight: bold;
  padding: 24px 0;
}
@media screen and (min-width: 768px) {
  .c-title__ja {
    font-size: 3.25rem;
  }
}
.c-title__ja span {
  text-decoration-line: underline;
  text-decoration-color: #222;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-decoration-skip-ink: none;
}
.c-title__en {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(151, 151, 151, 0.1);
  font-size: 5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-title__en {
    font-size: 8.5rem;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.p-header__inner {
  position: fixed;
  top: 0;
  height: 59px;
  z-index: 9;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    height: 118px;
  }
}
.p-header__inner.change-background {
  background-color: rgb(255, 255, 255);
}
.p-header__logo {
  position: absolute;
  z-index: 9;
  width: 154px;
  top: 8px;
  left: 12px;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 250px;
    top: 26px;
    left: 30px;
  }
}
.p-header__logo-firstImg.changeTransparent {
  opacity: 0;
}
.p-header__logo-changeImg {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.p-header__logo-changeImg.changeVisible {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .p-header__logoSubPage {
    top: 28px;
    left: 26px;
  }
}
.p-header__logo img {
  width: 100%;
}
.p-header__button {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__button {
    display: flex;
    gap: 22px;
    position: absolute;
    top: 38px;
    right: 122px;
    z-index: 999;
  }
}
.p-header__buttonInNav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 54px;
  padding-left: 12px;
}
@media screen and (min-width: 768px) {
  .p-header__buttonInNav {
    padding-left: 62px;
  }
}
@media screen and (min-width: 1024px) {
  .p-header__buttonInNav {
    flex-direction: row;
    gap: 30px;
    margin-top: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .p-header__buttonInNav {
    margin-top: 51px;
  }
}
.p-header__buttonLink {
  color: rgb(255, 255, 255);
  width: 126px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  background-color: #222;
  transition: all 0.1s;
}
.p-header__buttonLinkInNav {
  color: rgb(255, 255, 255);
  width: 248px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
  background-color: #222;
  transition: all 0.1s;
}
.p-header__buttonLinkInNav:hover {
  color: #222;
  background-color: rgb(255, 255, 255);
  border: 1px solid #222;
}
.p-header__buttonLink:hover {
  color: #222;
  background-color: rgb(255, 255, 255);
  border: 1px solid #222;
}
.p-header__buttonItem:last-child .p-header__buttonLink {
  background-color: #afa86f;
  font-family: "Viga", sans-serif;
  font-weight: 400;
  padding-top: 1px;
}
.p-header__buttonItem:last-child .p-header__buttonLink:hover {
  color: rgb(255, 255, 255);
  background-color: #988c2c;
  border: none;
}
.p-header__buttonItemInNav:last-child .p-header__buttonLinkInNav {
  background-color: #afa86f;
  font-family: "Viga", sans-serif;
  font-weight: 400;
  padding-top: 1px;
}
.p-header__buttonItemInNav:last-child .p-header__buttonLinkInNav:hover {
  color: rgb(255, 255, 255);
  background-color: #988c2c;
  border: none;
}
.p-header__nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: -100%;
  width: 100%;
  background: #faf7f1;
  opacity: 0;
  transition: 0.5s;
  z-index: -10;
  height: 100%;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  /*Google Chrome、Safariへの対応*/
}
.p-header__nav::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__navFlexBox {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 207px;
  }
}
@media screen and (min-width: 1440px) {
  .p-header__navFlexBoxChild {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .p-header__navFlexBox div + div {
    border-left: 1px solid #afa86f;
  }
}

.p-header__nav[aria-expanded=true] {
  opacity: 1;
  z-index: 99;
  top: 0;
}

.p-nav__logo {
  width: 150px;
  margin-top: 11px;
  margin-left: 12px;
}
@media screen and (min-width: 576px) {
  .p-nav__logo {
    margin-top: 8px;
    margin-left: 12px;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__logo {
    width: 40%;
    display: flex;
    justify-content: end;
    margin-top: 0;
    margin-right: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .p-nav__logo {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-nav__logoLink {
    display: inline-block;
    width: 250px;
  }
}
.p-nav__logo img {
  width: 100%;
}
@media screen and (min-width: 1440px) {
  .p-nav__logo img {
    transform: translate(-63px, 1px);
  }
}
.p-nav__list {
  width: 100%;
  padding-inline: 12px;
  margin-top: 41px;
}
@media screen and (min-width: 768px) {
  .p-nav__list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 201px;
    padding-left: 62px;
    padding-right: 131px;
    gap: 0 30px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-nav__list {
    height: 315px;
  }
}
@media screen and (min-width: 768px) {
  .p-nav__item {
    width: 145px;
  }
}
@media screen and (min-width: 1024px) {
  .p-nav__item {
    width: 248px;
  }
}
.p-nav__link {
  display: block;
  color: #222;
  font-size: 1.125rem;
  font-family: "Viga", sans-serif;
  padding: 13px 0 11px;
  transition: all 0.3s;
  border-top: 1px solid #afa86f;
}
.p-nav__item:last-child .p-nav__link {
  border-bottom: 1px solid #afa86f;
}
@media screen and (min-width: 768px) {
  .p-nav__item:nth-child(3) .p-nav__link {
    border-bottom: 1px solid #afa86f;
  }
}
@media screen and (min-width: 1024px) {
  .p-nav__link {
    font-size: 2rem;
    padding: 24px 0 21px;
  }
}
.p-nav__link span {
  display: block;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  margin-top: 9px;
}
@media screen and (min-width: 1024px) {
  .p-nav__link span {
    font-size: 1rem;
    margin-top: 10px;
  }
}
.p-nav__link:hover {
  opacity: 0.6;
}
@media screen and (min-width: 1440px) {
  .p-nav__item:nth-child(3) .p-nav__link span {
    transform: translateX(4px);
  }
}

.p-header__hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9999;
}

.p-top {
  width: 100%;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  .isSingular-overflowX-visible {
    overflow-x: visible;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.swiper-slide-active .swiper-fvImage,
.swiper-slide-duplicate-active .swiper-fvImage,
.swiper-slide-prev .swiper-fvImage {
  animation: zoomUp 7s linear 0s normal both;
}

.p-fv__inner {
  width: 100%;
  height: 100%;
}
.p-fv__swiper img {
  width: 100%;
  height: 667px;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 1024px) {
  .p-fv__swiper img {
    height: 823px;
  }
}
.p-fv__title {
  color: rgb(255, 255, 255);
  font-size: 3rem;
  font-family: "Viga", sans-serif;
  line-height: 1.2;
  position: absolute;
  bottom: 137px;
  z-index: 3;
  margin-left: 12px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 1024px) {
  .p-fv__title {
    font-size: 6rem;
    bottom: 307px;
    margin-left: 66px;
  }
}
.p-fv__text {
  position: absolute;
  bottom: 89px;
  left: 0;
  z-index: 3;
  display: inline-block;
  color: rgb(255, 255, 255);
  font-size: 0.75rem;
  font-weight: bold;
  background-color: #222;
  padding: 9px 25px 9px 12px;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}
@media screen and (min-width: 1024px) {
  .p-fv__text {
    bottom: 163px;
    font-size: 1.5rem;
    padding: 17px 67px 17px 66px;
  }
}
.p-fv__newsBox {
  position: absolute;
  bottom: 10px;
  z-index: 8;
  width: 351px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  .p-fv__newsBox {
    bottom: 38px;
    width: 90%;
    max-width: 1016px;
    transform: translateX(-51.3%);
  }
}
.p-fv__newsItem {
  position: relative;
}
.p-fv__newsTab {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  color: rgb(255, 255, 255);
  background-color: #222;
  font-size: 0.625rem;
  font-family: "Viga", sans-serif;
  border-radius: 50px 0 0 50px;
  padding: 19px 12px 19px 12px;
}
@media screen and (min-width: 1024px) {
  .p-fv__newsTab {
    font-size: 1.5rem;
    padding: 19px 59px 19px 59px;
  }
}
.p-fv__newsTitle {
  color: #222;
  background-color: rgb(255, 255, 255);
  font-size: 0.75rem;
  line-height: 1.2;
  display: inline-flex;
  width: 100%;
  align-items: center;
  height: 48px;
  padding-left: 61px;
  border: 1px solid #222;
  border-radius: 50px;
}
@media screen and (min-width: 1024px) {
  .p-fv__newsTitle {
    font-size: 1rem;
    height: 62px;
    padding-left: 274px;
    padding-top: 1px;
  }
}
.p-fv__newsMoreView {
  color: #222;
  position: absolute;
  right: 63px;
  top: 51%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  font-family: "Viga", sans-serif;
}
.p-fv__newsMoreView::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  rotate: 45deg;
  display: inline-block;
  position: absolute;
  right: -13px;
  top: 2px;
}

.swiper-about {
  width: 100%;
  height: 238px;
  margin-top: 41px;
  margin-bottom: 77px;
}
@media screen and (min-width: 768px) {
  .swiper-about {
    height: 429px;
  }
}
@media screen and (min-width: 1440px) {
  .swiper-about {
    margin-top: 101px;
    margin-bottom: 100px;
  }
}
.swiper-aboutWrapper {
  width: 100%;
}
.swiper-aboutSlide img {
  width: 100%;
  height: 210px;
  border-radius: 60px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .swiper-aboutSlide img {
    height: 393px;
  }
}
.swiper-aboutShift {
  margin-top: 27px;
}
@media screen and (min-width: 768px) {
  .swiper-aboutShift {
    margin-top: 36px;
  }
}

.p-about__sloganBox {
  position: absolute;
  z-index: 8;
  top: 162px;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
}
@media screen and (min-width: 768px) {
  .p-about__sloganBox {
    top: 269px;
  }
}
.p-about__slogan {
  font-size: 1.5rem;
  font-weight: bold;
  padding: 13px 11px 12px;
  background-color: rgb(255, 255, 255);
  margin: 0 auto;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-about__slogan {
    font-size: 2.5rem;
    padding: 16px 11px 16px;
  }
}
.p-about__slogan + .p-about__slogan {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .p-about__slogan + .p-about__slogan {
    margin-top: 7px;
  }
}
.p-about__textBox {
  background-image: url(../../img/tetote/map01.webp);
  background-size: 85%;
  background-repeat: no-repeat;
  background-position: 48% 1%;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__textBox {
    background-size: 71%;
    background-position: 50% 1%;
    margin-bottom: 52px;
  }
}
.p-about__text {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2.5;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-about__text {
    font-size: 2.25rem;
    line-height: 1.8;
  }
}
.p-about__text + .p-about__text {
  margin-top: 39px;
}
@media screen and (min-width: 1024px) {
  .p-about__text + .p-about__text {
    margin-top: 53px;
  }
}

.swiper-staff {
  width: 100%;
  margin-top: 50px;
  padding-bottom: 140px;
  margin-left: 26px;
}
@media screen and (min-width: 1024px) {
  .swiper-staff {
    margin-top: 52px;
    padding-bottom: 169px;
    margin-left: 0;
  }
}
.swiper-staffWrapper {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .swiper-staffWrapper {
    margin-left: 0;
  }
}
.swiper-staffSlide {
  position: relative;
  width: 246px;
}
@media screen and (min-width: 1024px) {
  .swiper-staffSlide {
    width: 300px;
  }
}
.swiper-staffSlide__imgBlock {
  position: relative;
  width: 100%;
}
.swiper-staffSlide img {
  width: 246px;
  height: 311px;
  border-radius: 30px;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .swiper-staffSlide img {
    width: 300px;
    height: 379px;
  }
}
.swiper-staffSlide__textBlock {
  position: absolute;
  top: 263px;
  color: #222;
}
@media screen and (min-width: 1024px) {
  .swiper-staffSlide__textBlock {
    top: 331px;
  }
}
.swiper-staffSlide__message01, .swiper-staffSlide__message02 {
  width: fit-content;
  font-size: 1rem;
  font-weight: bold;
  padding: 7px;
  background-color: #afa86f;
}
@media screen and (min-width: 1024px) {
  .swiper-staffSlide__message01, .swiper-staffSlide__message02 {
    font-size: 1.25rem;
    padding: 5px 7px;
  }
}
.swiper-staffSlide__message01 {
  margin-bottom: 6px;
}
.swiper-staffSlide__message02 {
  margin-bottom: 9px;
}
@media screen and (min-width: 1024px) {
  .swiper-staffSlide__message02 {
    margin-bottom: 16px;
  }
}
.swiper-staffSlide__type, .swiper-staffSlide__joinYear {
  font-size: 0.75rem;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .swiper-staffSlide__type, .swiper-staffSlide__joinYear {
    font-size: 1rem;
  }
}
.swiper-staffSlide__type {
  display: inline-block;
  margin-right: 10px;
}
.swiper-staffSlide__name {
  display: block;
  width: fit-content;
  font-size: 1.25rem;
  margin-top: 15px;
}
@media screen and (min-width: 1024px) {
  .swiper-staffSlide__name {
    font-size: 1.5rem;
  }
}
.swiper-staffShift {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .swiper-staffShift {
    margin-top: 36px;
  }
}

.swiper-staffSlide[aria-label="2 / 6"],
.swiper-staffSlide[aria-label="4 / 6"],
.swiper-staffSlide[aria-label="6 / 6"] {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .swiper-staffSlide[aria-label="2 / 6"],
  .swiper-staffSlide[aria-label="4 / 6"],
  .swiper-staffSlide[aria-label="6 / 6"] {
    margin-top: 36px;
  }
}

.p-staff__swiper {
  position: relative;
}
.p-staff__swiper-buttonWrapper {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-staff__swiper-buttonWrapper {
    width: 156px;
    height: 58px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    right: 20px;
    bottom: -62px;
  }
}
@media screen and (min-width: 1024px) {
  .p-staff__swiper-buttonWrapper {
    right: 100px;
  }
}
@media screen and (min-width: 1440px) {
  .p-staff__swiper-buttonWrapper {
    right: 217px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
}

.swiper-button-prev {
  transform: rotate(180deg);
  z-index: 5;
}

.swiper-button-prev:hover {
  transform: translate(-6px, -6px) rotate(180deg);
}

.swiper-button-next {
  z-index: 5;
}
.swiper-button-next:hover {
  transform: translate(6px, -6px);
}

@media screen and (min-width: 768px) {
  .p-staff__inner {
    margin-left: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .p-staff__inner {
    margin-left: 242px;
  }
}
@media screen and (min-width: 768px) {
  .p-staff__title {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .p-staff__titleJa {
    padding: 23px 0 25px;
  }
}
@media screen and (min-width: 768px) {
  .p-staff__titleEn {
    left: 0;
    transform: translate(-166px, -51%);
  }
}
.p-staff__text {
  padding-inline: 17px;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 19px;
}
@media screen and (min-width: 768px) {
  .p-staff__text {
    padding-inline: 0;
    margin-top: 26px;
  }
}
.p-staff__textBlock {
  position: absolute;
  top: 50%;
}
@media screen and (min-width: 1440px) {
  .p-staff__textBlock__button {
    transform: translateX(-122px);
  }
}

@media screen and (min-width: 768px) {
  .p-benefits__title {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-benefits__titleJa span {
    text-underline-offset: 8px;
  }
}
.p-benefits__text {
  padding-inline: 17px;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 19px;
}
@media screen and (min-width: 768px) {
  .p-benefits__text {
    padding-inline: 0;
    text-align: center;
    margin-top: 23px;
    padding-left: 48px;
  }
}
.p-benefits__list {
  margin-top: 51px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media screen and (min-width: 768px) {
  .p-benefits__list {
    margin-top: 110px;
    gap: 72px;
  }
}
@media screen and (min-width: 1024px) {
  .p-benefits__list {
    flex-direction: row;
    justify-content: center;
    gap: 94px;
  }
}
.p-benefits__item {
  position: relative;
  margin-inline: 17px;
  max-width: 430px;
}
@media screen and (min-width: 768px) {
  .p-benefits__item {
    margin-inline: 0;
  }
}
.p-benefits__image {
  width: 251px;
  height: 251px;
  margin: 0 auto;
  background-color: rgb(250, 247, 241);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-benefits__image {
    width: 430px;
    height: 430px;
  }
}
.p-benefits__image img {
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .p-benefits__image img {
    width: 327px;
    height: 277px;
    object-fit: cover;
  }
}
@media screen and (min-width: 768px) {
  .p-benefits__item:nth-child(2) .p-benefits__image img {
    width: 341px;
    height: 279px;
    object-fit: contain;
    object-position: 0 26px;
  }
}
.p-benefits__lead {
  position: absolute;
  top: 0;
  right: 59px;
  writing-mode: vertical-rl;
  color: #222;
  font-size: 0.875rem;
  font-family: "Viga", sans-serif;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .p-benefits__lead {
    font-size: 1.5rem;
    right: 20px;
  }
}
.p-benefits__item:nth-child(2) .p-benefits__lead {
  top: -1px;
}
.p-benefits__itemTitle {
  position: absolute;
  top: 228px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  width: fit-content;
  color: #222;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 7px;
  background-color: #afa86f;
}
@media screen and (min-width: 768px) {
  .p-benefits__itemTitle {
    font-size: 2rem;
    padding: 5px 7px;
    top: 379px;
  }
}
.p-benefits__item:first-child .p-benefits__itemTitle {
  left: 49%;
  transform: translateX(-49%);
}
@media screen and (min-width: 768px) {
  .p-benefits__item:first-child .p-benefits__itemTitle {
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-benefits__item:last-child .p-benefits__itemTitle {
  left: 49%;
  transform: translateX(-47%);
}
@media screen and (min-width: 768px) {
  .p-benefits__item:last-child .p-benefits__itemTitle {
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-benefits__itemText {
  color: #222;
  padding-top: 36px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-benefits__itemText {
    padding-top: 27px;
  }
}
.p-benefits__arrowBox {
  position: absolute;
  top: 170px;
  right: 58px;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .p-benefits__arrowBox {
    top: 306px;
    right: 20px;
  }
}
.p-benefits__arrow {
  width: 42px;
  height: 42px;
  background-color: #222;
}
@media screen and (min-width: 768px) {
  .p-benefits__arrow {
    width: 58px;
    height: 58px;
  }
}
.p-benefits__arrow::before {
  background-color: rgb(255, 255, 255);
}
.p-benefits__arrow span::before, .p-benefits__arrow span::after {
  background-color: rgb(255, 255, 255);
  right: 10px;
}
@media screen and (min-width: 768px) {
  .p-benefits__arrow span::before, .p-benefits__arrow span::after {
    right: 17px;
  }
}
.p-benefits__arrow:hover {
  width: 42px;
  height: 42px;
}
@media screen and (min-width: 768px) {
  .p-benefits__arrow:hover {
    width: 58px;
    height: 58px;
  }
}
.p-benefits__arrow:hover span::before, .p-benefits__arrow:hover span::after {
  right: 10px;
}
@media screen and (min-width: 768px) {
  .p-benefits__arrow:hover span::before, .p-benefits__arrow:hover span::after {
    right: 17px;
  }
}
.p-benefits__link:hover .p-benefits__image img {
  scale: 1.2;
}
.p-benefits__link:hover .p-benefits__arrowBox {
  transform: translateX(20px);
}

.p-blog__inner {
  max-width: 705px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-blog__inner {
    max-width: 956px;
    position: relative;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog__title {
    text-align: left;
  }
  .p-blog__titleJa {
    padding: 34px 0;
  }
  .p-blog__titleEn {
    left: auto;
    transform: translate(-13%, -50%);
  }
}
.p-blog__text {
  padding-inline: 17px;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 19px;
  margin-bottom: 43px;
}
@media screen and (min-width: 768px) {
  .p-blog__text {
    padding-inline: 0;
    margin-top: 38px;
    margin-bottom: 61px;
  }
}
.p-blog__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .p-blog__list {
    flex-direction: row;
    align-items: normal;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 23px;
  }
}
.p-blog__item {
  margin-inline: 17px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  max-width: 341px;
}
@media screen and (min-width: 576px) {
  .p-blog__item {
    margin-inline: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog__item {
    margin-inline: 0;
    max-width: 452px;
  }
}
.p-blog__item a {
  display: flex;
}
.p-blog__item a:hover {
  opacity: 0.7;
}
.p-blog__itemTitle {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.5;
  text-decoration-line: underline;
  text-decoration-color: #222;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-skip-ink: none;
  margin-top: 10px;
}
@media screen and (min-width: 1024px) {
  .p-blog__itemTitle {
    font-size: 1.125rem;
    text-underline-offset: 3px;
    margin-top: 22px;
  }
}
.p-blog figure {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}
.p-blog figure img {
  width: 121px;
  height: 121px;
  object-fit: cover;
  object-position: center;
}
@media screen and (min-width: 1024px) {
  .p-blog figure img {
    width: 156px;
    height: 180px;
  }
}
.p-blog__textBlock {
  color: #222;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 18px;
  padding-right: 7px;
}
@media screen and (min-width: 1024px) {
  .p-blog__textBlock {
    padding-inline: 23px;
    padding-top: 12px;
  }
}
.p-blog__category {
  font-size: 0.75rem;
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .p-blog__category {
    font-size: 0.875rem;
    padding-left: 2px;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog__category li {
    transform: translateY(-1px);
  }
}
.p-blog__category img {
  width: 12px;
  margin-right: 4px;
  transform: scaleY(1.2) translateY(1px);
}
@media screen and (min-width: 1024px) {
  .p-blog__category img {
    width: 14px;
    margin-right: 2px;
    transform: translate(-2px, 1px);
  }
}
.p-blog__date {
  font-size: 0.75rem;
  position: absolute;
  bottom: 6px;
}
@media screen and (min-width: 1024px) {
  .p-blog__date {
    bottom: 21px;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog__item:nth-child(2) figure img {
    width: 158px;
    height: 182px;
    transform: translateY(-1px);
  }
}
@media screen and (min-width: 1024px) {
  .p-blog__item:nth-child(2) .p-blog__textBlock {
    padding-left: 21px;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog__item:nth-child(2) .p-blog__itemTitle {
    margin-top: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog__item:nth-child(2) .p-blog__date {
    bottom: 23px;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog__item:nth-child(4) figure img {
    width: 158px;
    height: 182px;
    transform: translateY(-1px);
  }
}
@media screen and (min-width: 1024px) {
  .p-blog__item:nth-child(4) .p-blog__textBlock {
    padding-left: 21px;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog__item:nth-child(4) .p-blog__itemTitle {
    margin-top: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog__item:nth-child(4) .p-blog__date {
    bottom: 23px;
  }
}
.p-blog__arrowViewMore {
  margin-top: 51px;
  margin-left: 17px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #222;
  font-size: 1rem;
  font-family: "Viga", sans-serif;
  text-decoration-line: underline;
  text-decoration-color: #222;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-skip-ink: none;
}
.p-blog__arrowViewMore:hover .p-blog__arrow {
  width: 70px;
  height: 70px;
}
.p-blog__arrowViewMore:hover .p-blog__arrow span::before, .p-blog__arrowViewMore:hover .p-blog__arrow span::after {
  right: 24px;
}
@media screen and (min-width: 1024px) {
  .p-blog__arrowViewMore {
    margin-top: 0;
    margin-left: 0;
    position: absolute;
    top: 30px;
    right: 21px;
  }
}

.p-recruitment__text {
  padding-inline: 17px;
  margin-top: 19px;
  margin-bottom: 29px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-recruitment__text {
    padding-inline: 0;
    margin-top: 23px;
    margin-bottom: 60px;
    text-align: center;
    transform: translateX(-1px);
  }
}
.p-recruitment__buttonWrapper {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@media screen and (min-width: 1024px) {
  .p-recruitment__buttonWrapper {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 956px;
    gap: 16px;
    margin: 0 auto;
  }
}
.p-recruitment__link {
  font-size: 1.25rem;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  width: 341px;
  padding-right: 0;
  height: 86px;
  margin: 0 auto;
  border: none;
  background-color: rgb(255, 255, 255);
}
@media screen and (min-width: 1024px) {
  .p-recruitment__link {
    width: 470px;
    height: 120px;
    padding-left: 2px;
  }
  .p-recruitment__link:nth-child(2) {
    padding-top: 1px;
  }
  .p-recruitment__link:last-child {
    width: 956px;
    margin-top: 5px;
  }
}
.p-recruitment__link::after {
  width: 10px;
  height: 10px;
  border-top: 4px solid #222;
  border-right: 4px solid #222;
  right: 31px;
}
@media screen and (min-width: 768px) {
  .p-recruitment__link::after {
    right: 36px;
    top: 49%;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruitment__link::after {
    right: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .p-recruitment__link:nth-child(2)::after {
    transform: rotate(45deg) translate(-1px, -7px);
  }
}

.p-entry {
  position: relative;
}
.p-entry__image {
  width: 100%;
  height: 250px;
  background-image: url(../../img/tetote/cta-sp.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-entry__image {
    height: 488.32px;
    background-image: url(../../img/tetote/cta-pc.webp);
  }
}
.p-entry__content {
  position: absolute;
  top: 132px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  width: 91.4%;
  max-width: 956px;
  height: 236px;
}
@media screen and (min-width: 768px) {
  .p-entry__content {
    top: 352px;
    height: 273px;
  }
}
.p-entry__text {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2.5;
  text-align: center;
  padding: 24px 0;
  transform: translate(1px, 1px);
}
@media screen and (min-width: 768px) {
  .p-entry__text {
    font-size: 1rem;
    line-height: 1.5;
    transform: none;
    margin-top: 26px;
    padding: 24px 0 31px;
  }
}
.p-entry__button {
  background-color: #afa86f;
  font-size: 0.875rem;
  width: 200px;
  padding-right: 0;
  padding-top: 1px;
  height: 54px;
  border: none;
}
@media screen and (min-width: 768px) {
  .p-entry__button {
    width: 556px;
    height: 70px;
    padding-top: 0;
    font-size: 1rem;
    transform: translateX(0px);
  }
}
.p-entry__button::after {
  width: 8px;
  height: 8px;
  border-top: 3px solid #222;
  border-right: 3px solid #222;
  top: 47%;
  right: 29px;
}

.p-footer__container {
  background-color: #faf7f1;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-footer__container {
    width: auto;
    margin-inline: 64px;
    margin-bottom: 64px;
    border-radius: 0 0 20px 20px;
    position: relative;
    height: 500px;
  }
}
@media screen and (min-width: 1440px) {
  .p-footer__container {
    height: 442px;
  }
}
.p-footer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
  font-weight: bold;
  padding-top: 169px;
}
@media screen and (min-width: 1024px) {
  .p-footer__list {
    padding-top: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 41px 22px;
    width: 44%;
    max-width: 565px;
    position: absolute;
    top: 224px;
    right: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .p-footer__list {
    font-size: 1rem;
    right: 210px;
  }
}
.p-footer__link {
  color: #222;
}
@media screen and (min-width: 1440px) {
  .p-footer__item:nth-child(2), .p-footer__item:nth-child(3), .p-footer__item:nth-child(4), .p-footer__item:nth-child(5) {
    transform: translateX(1px);
  }
}
.p-footer__item:nth-of-type(7), .p-footer__item:nth-of-type(8), .p-footer__item:nth-of-type(9) {
  transform: translateX(-2px);
}
@media screen and (min-width: 1024px) {
  .p-footer__item:nth-of-type(7), .p-footer__item:nth-of-type(8), .p-footer__item:nth-of-type(9) {
    transform: none;
  }
}
.p-footer__social {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 55px;
  margin-bottom: 28px;
}
.p-footer__socialIcon {
  width: 24px;
}
.p-footer__socialLink img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-footer__social {
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    bottom: 59px;
    right: 13.6%;
  }
}
.p-footer__logo {
  text-align: center;
  padding-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  .p-footer__logo {
    text-align: unset;
    padding-bottom: 0;
    position: absolute;
    top: 199px;
    left: 13.6%;
  }
}
.p-footer__copyright {
  color: rgb(153, 153, 153);
  font-size: 0.75rem;
  font-family: "Viga", sans-serif;
  padding-bottom: 25px;
  text-align: center;
}
.p-footer__copyright small {
  display: inline-block;
  transform: translateX(4px);
}
@media screen and (min-width: 1024px) {
  .p-footer__copyright {
    padding-bottom: 0;
    text-align: unset;
    position: absolute;
    bottom: 66px;
    left: 13.3%;
  }
}

.l-subpage-container {
  margin-top: 59px;
}
@media screen and (min-width: 768px) {
  .l-subpage-container {
    margin-top: 118px;
  }
}

.l-subpage-fv {
  margin-top: 59px;
  width: 100%;
  height: 339px;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .l-subpage-fv {
    margin-top: 118px;
  }
}

.breadcrumbs {
  font-size: 0.875rem;
  padding: 20px 5% 21px;
  background-color: rgb(240, 240, 240);
}
.breadcrumbs-inner {
  width: 100%;
  max-width: 977px;
  margin: 0 auto;
}
.breadcrumbs span {
  color: #222;
}

.c-subpage-fvTitle__wrapper {
  padding-top: 75px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .c-subpage-fvTitle__wrapper {
    padding-left: 232px;
  }
}
.c-subpage-fvTitle__main {
  width: fit-content;
  color: #222;
  font-size: 2rem;
  font-family: "Viga", sans-serif;
  padding: 3px 10px;
  background-color: rgb(255, 255, 255);
  margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .c-subpage-fvTitle__main {
    font-size: 4rem;
  }
}
.c-subpage-fvTitle__ja {
  width: fit-content;
  color: #222;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 3px 10px;
  background-color: rgb(255, 255, 255);
  margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .c-subpage-fvTitle__ja {
    font-size: 1.5rem;
  }
}
.c-subpage-fvTitle__gold {
  width: fit-content;
  color: #988c2c;
  font-size: 1rem;
  font-weight: bold;
  padding: 7px 10px;
  background-color: rgb(255, 255, 255);
}

.c-subpage-secTitle {
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-subpage-secTitle {
    font-size: 2rem;
  }
}

.p-about-fv {
  background-image: url(../../img/tetote/about-fv.webp);
}
.p-about-features__secTitle {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-about-features__secTitle {
    padding-top: 65px;
    padding-bottom: 86px;
  }
}
.p-about-features__list {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 125px;
}
@media screen and (min-width: 1024px) {
  .p-about-features__list {
    max-width: 980px;
  }
}
.p-about-features__item {
  padding: 20px;
  background-color: #faf7f1;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-about-features__item {
    padding: 30px 80px 30px;
  }
}
.p-about-features__itemLead {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-about-features__itemLead {
    gap: 21px;
  }
}
.p-about-features__number {
  display: inline-block;
  font-size: 1.125rem;
  padding: 8px 12px;
  border: 1px solid #222;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-about-features__number {
    padding: 14px 18px;
  }
}
.p-about-features__itemTitle {
  font-size: clamp(0.875rem, 3vw, 1rem);
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-about-features__itemTitle {
    font-size: 1.25rem;
    transform: translateY(1px);
  }
}
.p-about-features__itemText {
  font-size: 0.75rem;
  line-height: 1.5;
  padding-top: 14px;
}
@media screen and (min-width: 768px) {
  .p-about-features__itemText {
    font-size: 1rem;
    padding-top: 21px;
  }
}
.p-about-ceo__secTitle {
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-about-ceo__secTitle {
    padding-bottom: 109px;
  }
}
.p-about-ceo__messageWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  margin-bottom: 111px;
}
@media screen and (min-width: 768px) {
  .p-about-ceo__messageWrapper {
    flex-direction: row;
    align-items: normal;
    justify-content: center;
    width: 90%;
    margin-inline: auto;
  }
}
.p-about-ceo__messageImage {
  width: 90%;
  max-width: 484px;
}
.p-about-ceo__messageImage img {
  width: 100%;
}
.p-about-ceo__messageBox {
  width: 90%;
  max-width: 479px;
}
.p-about-ceo__slogan {
  display: block;
  font-size: clamp(1.25rem, 6vw, 1.75rem);
  font-weight: bold;
  line-height: 1.5;
  margin-top: 18px;
  margin-bottom: 44px;
}
@media screen and (min-width: 1024px) {
  .p-about-ceo__slogan {
    font-size: 2rem;
    transform: translateX(-80px);
  }
}
.p-about-ceo__text {
  color: rgb(0, 0, 0);
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-about-ceo__text {
    font-size: 1rem;
  }
}
.p-about-ceo__text + .p-about-ceo__text {
  padding-top: 31px;
}
.p-about-ceo__name {
  display: block;
  margin-top: 21px;
}
.p-about-service {
  padding-bottom: 103px;
}
.p-about-service__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-about-service__inner {
    max-width: 1024px;
  }
}
.p-about-service__secTitle {
  text-align: center;
  margin-bottom: 44px;
}
@media screen and (min-width: 1024px) {
  .p-about-service__secTitle {
    text-align: left;
    padding-left: 22px;
  }
}
.p-about-service__lead {
  margin-bottom: 82px;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-about-service__lead {
    padding-left: 22px;
    max-width: 703px;
  }
}
.p-about-service__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid #afa86f;
}
@media screen and (min-width: 1024px) {
  .p-about-service__item {
    flex-direction: row;
    align-items: normal;
    gap: 42px;
    padding: 49px 0px 47px 22px;
  }
}
.p-about-service__item:first-child {
  padding-top: 0;
  border-top: none;
}
@media screen and (min-width: 1024px) {
  .p-about-service__item:first-child {
    gap: 47px;
  }
}
.p-about-service__item + .p-about-service__item {
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-about-service__item + .p-about-service__item {
    margin-top: 0;
  }
}
.p-about-service__itemImage {
  width: 90%;
  max-width: 462px;
}
.p-about-service__itemImage img {
  width: 100%;
}
.p-about-service__item:first-child .p-about-service__itemImage {
  max-width: 457px;
}
.p-about-service__item:last-child .p-about-service__itemImage {
  margin-top: 11px;
}
.p-about-service__itemTitle {
  color: #988c2c;
  font-size: clamp(1.25rem, 6vw, 1.75rem);
  font-weight: bold;
  margin-top: 22px;
}
@media screen and (min-width: 1024px) {
  .p-about-service__itemTitle {
    font-size: 2rem;
  }
}
.p-about-service__subTitle {
  font-size: clamp(0.875rem, 3vw, 1rem);
  font-weight: bold;
  line-height: 1.5;
  display: block;
  margin-top: 20px;
}
@media screen and (min-width: 1440px) {
  .p-about-service__subTitle {
    font-size: 1.5rem;
    margin-top: 40px;
  }
}
.p-about-service__item:first-child .p-about-service__subTitle {
  margin-top: 34px;
}
.p-about-service__itemText {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 20px;
  max-width: 430px;
}
@media screen and (min-width: 1024px) {
  .p-about-service__itemText {
    font-size: 1rem;
    margin-top: 40px;
  }
}
.p-about-service__item:first-child .p-about-service__itemText {
  margin-top: 34px;
}
.p-about-scroll-mt {
  scroll-margin-top: 100px;
}
@media screen and (min-width: 1024px) {
  .p-about-scroll-mt {
    scroll-margin-top: 180px;
  }
}
.p-about-company {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  box-sizing: content-box;
  margin-bottom: 139px;
}
.p-about-company__secTitle {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-about-company__secTitle {
    text-align: left;
  }
}
.p-about-company__overview {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-about-company__overview {
    margin-top: 77px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about-company tr {
    border-bottom: 1px dashed #222;
  }
}
.p-about-company th,
.p-about-company td {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-about-company th,
  .p-about-company td {
    display: inline-block;
    width: auto;
  }
}
.p-about-company th {
  width: 100%;
  color: rgb(255, 255, 255);
  background-color: #afa86f;
  padding: 18px 0;
}
@media screen and (min-width: 1024px) {
  .p-about-company th {
    text-align: left;
    vertical-align: top;
    width: 231px;
    color: #222;
    background-color: rgb(255, 255, 255);
    padding: 36px 0 35px;
  }
}
.p-about-company td {
  text-align: center;
  line-height: 1.5;
  padding-top: 16px;
  padding-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .p-about-company td {
    text-align: left;
    padding-top: 32px;
    padding-bottom: 31px;
  }
}
@media screen and (min-width: 1024px) {
  .p-about-company td ul li {
    position: relative;
    padding-left: 14px;
  }
  .p-about-company td ul li::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #222;
    position: absolute;
    top: 12px;
    left: 0;
  }
}

#overviewAdjust {
  padding-top: 36px;
  padding-bottom: 35px;
  padding-left: 10px;
}

.p-staffSub-fv {
  background-image: url(../../img/tetote/staff-fv.webp);
}
.p-staffSub-fv__titleJa {
  padding: 3px 11px 3px 10px;
}
.p-staffSub-card {
  position: relative;
}
.p-staffSub-list {
  width: 100%;
  max-width: 986px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 137px 43px;
  margin: 0 auto;
  padding-top: 129px;
  padding-bottom: 228px;
}
.p-staffSub-list figure img {
  width: 300px;
  height: 379px;
}
.p-staffSub-textBlock {
  top: 87%;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}
@media screen and (min-width: 1024px) {
  .p-staffSub-textBlock {
    left: auto;
    transform: none;
    width: auto;
  }
}
.p-staffSub-message01 {
  padding: 6px 7px 4px;
}
.p-staffSub-message02 {
  padding: 6px 8px 4px 7px;
}
.p-staffSub-type {
  margin-right: 5px;
}
.p-staffSub-name {
  margin-top: 16px;
}

.p-staff-single__fv {
  width: 100%;
  background-color: #faf7f1;
}
.p-staff-single__fvInner {
  width: 90%;
  max-width: 976px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-staff-single__fvInner {
    flex-direction: row;
    gap: 85px;
  }
}
.p-staff-single__fvTextBlock {
  width: 90%;
  max-width: 605px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-staff-single__fvTextBlock {
    width: 70%;
    margin-bottom: 6px;
  }
}
.p-staff-single__fvMessage01 {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 3px 10px;
  background-color: rgb(255, 255, 255);
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-staff-single__fvMessage01 {
    font-size: 1.75rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-staff-single__fvMessage01 {
    font-size: 2.25rem;
  }
}
.p-staff-single__fvMessage02 {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 3px 10px;
  background-color: rgb(255, 255, 255);
  margin-top: 18px;
}
@media screen and (min-width: 1024px) {
  .p-staff-single__fvMessage02 {
    font-size: 1.5rem;
  }
}
.p-staff-single__fvType {
  display: block;
  color: #988c2c;
  font-size: 0.875rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 12px;
}
.p-staff-single__fvName {
  font-size: 1.5rem;
  font-weight: bold;
}
.p-staff-single__fvJoinYear {
  font-size: 1rem;
  display: inline-block;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-staff-single__fvJoinYear {
    margin-left: 17px;
    transform: translateY(1px);
  }
}
.p-staff-single__fvLead {
  line-height: 1.8;
  max-width: 605px;
  margin-top: 13px;
}
.p-staff-single__fvImage {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .p-staff-single__fvImage {
    margin-top: 44px;
    margin-bottom: 42px;
  }
}
.p-staff-single__fvImage img {
  width: 286px;
  height: 368px;
}
@media screen and (min-width: 1440px) {
  .p-staff-single__fvImage img {
    object-fit: contain;
  }
}
.p-staff-single__contents {
  margin-top: 24px;
  margin-bottom: 23px;
  width: 90%;
  max-width: 976px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-staff-single__contents {
    margin-top: 90px;
  }
}
.p-staff-single__contentsText {
  width: 100%;
  max-width: 701px;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-staff-single__contentsText {
    width: 60%;
  }
}
@media screen and (min-width: 1440px) {
  .p-staff-single__contentsText {
    width: 80%;
  }
}
.p-staff-single__contentsText h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 16px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-staff-single__contentsText h2 {
    margin-top: 0;
    margin-bottom: 41px;
  }
}
@media screen and (min-width: 768px) {
  .p-staff-single__contentsText h2::before {
    content: "";
    width: 108px;
    height: 1px;
    background-color: #222;
    position: absolute;
    top: 50%;
    right: 102.3%;
  }
}
@media screen and (min-width: 1024px) {
  .p-staff-single__contentsText h2::before {
    width: 162px;
  }
}
@media screen and (min-width: 1440px) {
  .p-staff-single__contentsText h2::before {
    width: 216px;
  }
}
@media screen and (min-width: 1024px) {
  .p-staff-single__contentsText h2:nth-of-type(4)::before, .p-staff-single__contentsText h2:nth-of-type(5)::before {
    transform: translateY(1px);
  }
}
.p-staff-single__contentsText h3 {
  margin-top: 30px;
}
.p-staff-single__contentsText p {
  margin-bottom: 23px;
}
.p-staff-single__contentsText p:nth-of-type(2) {
  margin-bottom: 29px;
}
.p-staff-single__contentsText p:nth-of-type(3) {
  margin-bottom: 28px;
}
.p-staff-single__contentsText p:nth-of-type(4) {
  margin-bottom: 13px;
}
.p-staff-single__contentsText p:nth-of-type(5) {
  margin-bottom: 15px;
}
.p-staff-single__contentsText p:nth-of-type(6) {
  margin-bottom: 14px;
}
.p-staff-single__contentsText p:nth-of-type(7) {
  margin-bottom: 14px;
}
.p-staff-single__contentsText p:nth-of-type(8) {
  margin-bottom: 14px;
}
.p-staff-single__contentsText ul {
  list-style-type: disc; /* 「・」を表示する設定 */
  padding-left: 1.5rem;  /* 「・」が隠れないように左側に余白を確保 */
  margin-bottom: 40px;
}
.p-staff-single__contentsText ul li {
  list-style-type: disc;
}
.p-staff-single__secTitle {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 50px;
}
.p-staff-single__otherPosts {
  width: 100%;
  margin-top: 85px;
  margin-bottom: 228px;
}
.p-staff-single__otherPosts-inner {
  width: 90%;
  max-width: 986px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 130px 43px;
}

#p-staff-single__sidebar {
  display: none;
}
@media screen and (min-width: 768px) {
  #p-staff-single__sidebar {
    display: block;
    width: 210px;
    min-width: 210px;
    height: fit-content;
    position: sticky;
    top: 120px;
    margin-top: 7px;
  }

  #p-staff-single__sidebar nav ul {
    list-style: disc;
    padding: 0;
    margin: 0;
  }

  #p-staff-single__sidebar nav ul li {
    margin: 16px 0;
  }

  #p-staff-single__sidebar nav ul li a {
    color: #999; /* 非アクティブのタイトルカラー */
    text-decoration: none;
    transition: color 0.3s ease;
  }

  #p-staff-single__sidebar nav ul li a.is-active {
    color: #222; /* アクティブ時のカラー */
    font-weight: bold;
  }

  #p-staff-single__sidebar nav ul li a:hover {
    color: #222;
  }

  html {
    /* 固定ヘッダーの高さ（118px）＋ 視覚的な余白（20px程度） */
    scroll-padding-top: 140px;
  }
}

.ez-toc-container {
  width: 210px;
}
.ez-toc-title-container {
  text-align: left;
  padding: 0px;
  font-size: 0.875rem;
  color: #666;
  display: block;
  margin-bottom: 5px;
}
.ez-toc-list {
  padding: 0 !important;
}
.ez-toc-list li {
  position: relative;
}
.ez-toc-list li::before {
  content: "";
  display: block;
  width: 3.5px;
  height: 3.5px !important;
  border-radius: 50%;
  background: #999;
  position: absolute;
  top: 17px;
  left: 5px !important;
  right: auto !important;
}
.ez-toc-list li a {
  padding-left: 14px !important;
  font-size: 0.875rem;
  color: #999;
  font-weight: bold;
}
.ez-toc-list li:nth-child(3) a {
  padding: 8px 0 8px 14px !important;
  letter-spacing: 0.01em;
}
.ez-toc-list li:nth-child(6) a {
  padding-top: 8px !important;
}

.ez-toc-list li.active {
  background-color: #fff !important;
  height: auto !important;
}
.ez-toc-list li.active::before {
  background-color: #222;
}
.ez-toc-list li.active a {
  color: #222 !important;
}

.p-benefits-fv {
  background-image: url(../../img/tetote/benefits-fv.webp);
}
.p-benefits-fv__titleJa {
  padding: 3px 11px 3px 10px;
}
.p-benefits-fv__titleGold {
  padding: 7px 11px 7px 10px;
}
.p-benefits-systems {
  margin-top: 145px;
  margin-bottom: 128px;
}
.p-benefits-systems__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-benefits-systems__inner {
    max-width: 980px;
  }
}
.p-benefits-systems__table {
  width: 100%;
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  .p-benefits-systems__table {
    margin-top: 77px;
  }
}
.p-benefits-systems__table tr {
  border-bottom: 1px dashed #222;
}
.p-benefits-systems__table th {
  width: 24%;
  text-align: left;
  vertical-align: top;
  padding: 36px 0;
  max-width: 231px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-benefits-systems__table th {
    line-height: 1;
  }
}
.p-benefits-systems__table td {
  line-height: 1.5;
  padding: 36px 0 36px;
}
.p-benefits-systems__table tr:first-child td {
  padding: 36px 0 35px;
}
.p-benefits-systems__table tr:nth-of-type(2) th,
.p-benefits-systems__table tr:nth-of-type(3) th {
  padding: 36px 0 35px;
}
.p-benefits-systems__table tr:nth-of-type(2) td,
.p-benefits-systems__table tr:nth-of-type(3) td {
  transform: translateX(-4px);
  padding: 32px 0 31px;
}
.p-benefits-systems__table tr:nth-of-type(4) td {
  transform: translateX(8px);
  padding: 36px 0 35px;
}
.p-benefits-systems__table tr:nth-of-type(5) td {
  padding: 36px 0 35px;
}
.p-benefits-systems__List li {
  position: relative;
  padding-left: 12px;
}
.p-benefits-systems__List li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #222;
  position: absolute;
  top: 11px;
  left: 2px;
}
.p-benefits-systems__facilityList li {
  position: relative;
  padding-left: 12px;
}
.p-benefits-systems__facilityList li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #222;
  position: absolute;
  top: 12px;
  left: -2px;
}
.p-benefits-voice__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-benefits-voice__inner {
    max-width: 980px;
  }
}
.p-benefits-voice__list {
  display: flex;
  flex-direction: column;
  gap: 46px;
  margin-top: 23px;
}
@media screen and (min-width: 768px) {
  .p-benefits-voice__list {
    flex-direction: row;
  }
}
.p-benefits-voice__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-benefits-voice__item {
    max-width: 467px;
  }
}
.p-benefits-voice__itemYear {
  color: #988c2c;
  font-size: 1rem;
  font-weight: bold;
}
.p-benefits-voice__itemName {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  margin-top: 13px;
  margin-bottom: 25px;
}
.p-benefits-voice__itemText {
  font-size: 1rem;
  line-height: 1.8;
}
.p-benefits-voice__image {
  width: 100%;
  margin-top: 37px;
  margin-bottom: 138px;
}
.p-benefits-voice__image img {
  width: 100%;
}

.p-blogSub-fv {
  background-image: url(../../img/tetote/blog-fv.webp);
}
@media screen and (min-width: 768px) {
  .p-blogSub-fv__titleGold {
    padding: 7px 11px 7px 10px;
  }
}
.p-blogSub-archive {
  width: 100%;
  background-color: rgb(255, 255, 255);
}
.p-blogSub-archive__list {
  width: 95%;
  max-width: 704px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 97px;
  gap: 20px 22px;
}
@media screen and (min-width: 1024px) {
  .p-blogSub-archive__list {
    max-width: 956px;
    margin-top: 129px;
  }
}
.p-blogSub-archive__item {
  background-color: #faf7f1;
}
@media screen and (min-width: 768px) {
  .p-blogSub-archive__item:nth-child(7), .p-blogSub-archive__item:nth-child(8) {
    margin-top: 2px;
  }
}
.p-blogSub-pagination {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 139px;
}
.p-blogSub-pagination a.page-numbers,
.p-blogSub-pagination span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #222;
  background-color: rgb(255, 255, 255);
  border: 1px solid #222;
  width: 58px;
  height: 58px;
  border-radius: 50%;
}
.p-blogSub-pagination .page-numbers.current {
  color: rgb(255, 255, 255);
  background-color: #222;
}

.p-blog-single {
  background-color: #faf7f1;
  padding-top: 33px;
  padding-bottom: 139px;
}
.p-blog-single__inner {
  width: 90%;
  margin: 0 auto;
  padding: 41px 24px 40px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-blog-single__inner {
    max-width: 800px;
    padding: 41px 40px 23px;
  }
}
.p-blog-single__data {
  display: flex;
  align-items: center;
  gap: 19px;
}
.p-blog-single__category li {
  display: flex;
  font-size: 0.875rem;
  align-items: center;
  gap: 3px;
}
.p-blog-single__date {
  font-size: 0.875rem;
}
.p-blog-single__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 41px;
}
@media screen and (min-width: 768px) {
  .p-blog-single__title {
    font-size: 2rem;
  }
}
.p-blog-single__thumbnail {
  max-width: 720px;
  height: 210px;
  overflow: hidden;
}
@media screen and (min-width: 576px) {
  .p-blog-single__thumbnail {
    height: 280px;
  }
}
@media screen and (min-width: 768px) {
  .p-blog-single__thumbnail {
    height: 411px;
  }
}
.p-blog-single__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-blog-single__content {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .p-blog-single__content {
    font-size: 1rem;
  }
}
.p-blog-single__content h2 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 14px;
  margin-bottom: 41px;
}
@media screen and (min-width: 768px) {
  .p-blog-single__content h2 {
    font-size: 1.5rem;
  }
}
.p-blog-single__content ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.5em;
}
.p-blog-single__content ul > li {
  display: list-item;
  list-style-type: disc;
}
.p-blog-single__postLink-wrapper {
  width: 100%;
  background-color: rgb(240, 240, 240);
}
.p-blog-single__postLink-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  max-width: 924px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .p-blog-single__postLink-inner {
    flex-direction: row;
    align-items: normal;
    width: 80%;
  }
}
.p-blog-single__postLink-inner li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 341px;
}
@media screen and (min-width: 768px) {
  .p-blog-single__postLink-inner li {
    width: 420px;
  }
}
@media screen and (min-width: 1024px) {
  .p-blog-single__postLink-inner li {
    width: 50%;
  }
}
@media screen and (min-width: 1440px) {
  .p-blog-single__postLink-inner li {
    justify-content: flex-start;
  }
  .p-blog-single__postLink-inner li:last-child {
    justify-content: flex-end;
  }
}
.p-blog-single__postLink-inner li a {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 27px 0;
  line-height: 1.5;
}
.p-blog-single__postLink-prev {
  position: relative;
}
.p-blog-single__postLink-prevNotes {
  display: flex;
  flex-direction: column;
  transform: translateX(-29px);
  color: #222;
}
.p-blog-single__postLink-prevDate {
  font-size: 0.75rem;
  transform: translateY(-1px);
}
@media screen and (min-width: 1024px) {
  .p-blog-single__postLink-prev::after {
    content: "";
    display: block;
    height: 56px;
    width: 0;
    border-right: 1px solid #222;
    position: absolute;
    right: -1px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.p-blog-single__postLink-prev img {
  width: 24px;
  height: 24px;
  margin-right: 50px;
}
.p-blog-single__postLink-nextNotes {
  display: flex;
  flex-direction: column;
  transform: translateX(28px);
  color: #222;
}
.p-blog-single__postLink-nextDate {
  font-size: 0.75rem;
  transform: translateY(-1px);
}
.p-blog-single__postLink-next img {
  width: 24px;
  height: 24px;
  margin-left: 50px;
}

.p-career-fv {
  background-image: url(../../img/tetote/career-fv.webp);
}
.p-career-fv__titleMain {
  padding: 3px 14px 3px 10px;
}
.p-career-fv__titleGold {
  padding: 7px 11px 7px 10px;
}
.p-career-features {
  margin-top: 145px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-career-features {
    margin-bottom: 89px;
  }
}
.p-career-features__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-career-features__inner {
    max-width: 980px;
  }
}
.p-career-features__secTitle {
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .p-career-features__secTitle {
    line-height: 1;
  }
}
.p-career-features__text {
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .p-career-features__text {
    line-height: 1;
  }
}
.p-career-features__textUpper {
  margin-top: 32px;
  margin-bottom: 48px;
}
@media screen and (min-width: 1024px) {
  .p-career-features__textUpper {
    margin-top: 113px;
  }
}
.p-career-features__textLower {
  margin-top: 36px;
}
.p-career-features img {
  width: 100%;
  max-width: 980px;
}
.p-career-step {
  margin-bottom: 176px;
}
.p-career-step__inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-career-step__inner {
    max-width: 980px;
  }
}
.p-career-step__title {
  font-size: 1rem;
  font-weight: bold;
  background-color: #afa86f;
  border-radius: 10px;
  padding: 12px 0 12px 21px;
}
@media screen and (min-width: 768px) {
  .p-career-step__title {
    font-size: 1.5rem;
  }
}
.p-career-step__text {
  font-size: 0.75rem;
  line-height: 1.8;
  margin-top: 24px;
  margin-bottom: 38px;
}
@media screen and (min-width: 768px) {
  .p-career-step__text {
    font-size: 1rem;
    margin-top: 50px;
  }
}
.p-career-step__text:nth-of-type(2), .p-career-step__text:nth-of-type(4) {
  margin-bottom: 37px;
}

.p-details-fv {
  background-image: url(../../img/tetote/details-fv.webp);
}
.p-details-main {
  width: 100%;
  margin-top: 145px;
  margin-bottom: 139px;
}
.p-details-inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-details-inner {
    max-width: 980px;
  }
}
.p-details-lead {
  margin-bottom: 200px;
}
@media screen and (min-width: 1024px) {
  .p-details-lead {
    margin-bottom: 97px;
  }
}
.p-details-lead__secTitle {
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .p-details-lead__secTitle {
    line-height: 1;
  }
}
.p-details-lead__text {
  margin-top: 40px;
  margin-bottom: 70px;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .p-details-lead__text {
    line-height: 1;
    margin-top: 113px;
  }
}
.p-details-lead__buttonWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 49px;
}
@media screen and (min-width: 1024px) {
  .p-details-lead__buttonWrapper {
    flex-direction: row;
    align-items: normal;
  }
}
.p-details-block {
  scroll-margin-top: 100px;
}
@media screen and (min-width: 1024px) {
  .p-details-block {
    scroll-margin-top: 0;
  }
}
.p-details-block + .p-details-block {
  margin-top: 88px;
}
.p-details-tableContents {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  .p-details-tableContents {
    margin-top: 77px;
  }
}
.p-details-tableContents tr {
  border-bottom: 1px dashed #222;
}
.p-details-tableContents th {
  width: 112px;
  text-align: left;
  vertical-align: top;
  padding-top: 36px;
}
@media screen and (min-width: 768px) {
  .p-details-tableContents th {
    width: 231px;
  }
}
.p-details-tableContents td {
  line-height: 1.5;
  padding: 32px 0 31px;
}
.p-details-tableContents tr:first-child td {
  padding: 36px 0 35px;
}

.p-entrySub {
  background-color: #faf7f1;
  width: 100%;
  padding-top: 33px;
  padding-bottom: 57px;
}
.p-entrySub-inner {
  width: 90%;
  max-width: 880px;
  margin: 0 auto;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
}
.p-entrySub-secTitle {
  text-align: center;
  padding-top: 58px;
  margin-bottom: 51px;
}
.p-entrySub-secTitleEn {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 29px;
}
.p-entrySub-secTitleJa {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-entrySub-secTitleJa {
    font-size: 2rem;
    line-height: 1;
  }
}
.p-entrySub-secTitleJa span {
  color: #988c2c;
  font-size: 2rem;
}
@media screen and (min-width: 1024px) {
  .p-entrySub-secTitleJa span {
    font-size: 2rem;
  }
}
.p-entrySub-textBlock {
  text-align: center;
  margin-bottom: 94px;
}
.p-entrySub-textBlockThanks {
  text-align: center;
  margin-bottom: 0;
}
.p-entrySub-text {
  text-align: left;
  display: inline-block;
  line-height: 1.5;
  padding-inline: 10%;
}
@media screen and (min-width: 1024px) {
  .p-entrySub-text {
    padding-inline: 0;
    transform: translateX(-8px);
  }
}
.p-entrySub-text span {
  color: #988c2c;
}
.p-entrySub-textThanks {
  padding-bottom: 95px;
  transform: translateX(-1px);
}
.p-entrySub-thanksWrap {
  padding-bottom: 57px;
}
.p-entrySub-thanksComment {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  padding-top: 58px;
  padding-bottom: 51px;
}
@media screen and (min-width: 768px) {
  .p-entrySub-thanksComment {
    font-size: 2rem;
  }
}
.p-entrySub-whiteBase {
  width: 100%;
  height: 139px;
  background-color: rgb(255, 255, 255);
}

.Form {
  max-width: 738px;
  margin: 0 auto;
  border-top: 1px dashed #afa86f;
  display: flex;
  flex-direction: column;
  gap: 27px;
  padding-top: 97px;
  padding-bottom: 81px;
}
.Form-Item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .Form-Item {
    flex-direction: row;
    align-items: center;
    gap: 0;
    width: auto;
    margin: 0;
  }
}
.Form-Item-birthYear {
  display: flex;
  align-items: center;
}
.Form-Item-moveLabelUp {
  align-items: flex-start;
}
.Form-Item-type {
  padding-top: 3px;
}
.Form-Item-chance {
  margin-top: 11px;
}
.Form-Item-Label {
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .Form-Item-Label {
    width: 163px;
    transform: translateY(-1px);
  }
}
.Form-Item-Label span {
  color: #988c2c;
}
@media screen and (min-width: 1024px) {
  .Form-Item-Label-type {
    transform: none;
  }
}
@media screen and (min-width: 1024px) {
  .Form-Item-Label-selfPR {
    transform: translateY(12px);
  }
}
@media screen and (min-width: 1024px) {
  .Form-Item-Label-chance {
    padding-right: 35px;
    transform: translateY(1px);
  }
}
.Form-Item-acceptance {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .Form-Item-acceptance {
    font-size: 0.875rem;
    margin: 0 auto;
    padding-top: 67px;
    transform: translateX(-2px);
  }
}
@media screen and (min-width: 1024px) {
  .Form-Item-birthBlock {
    margin-left: 163px;
    transform: translateY(-12px);
  }
}

.wpcf7-name,
.wpcf7-kana,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea {
  width: 100%;
  font-size: 1rem;
  font-family: "Noto Sans JP", serif;
  padding: 15px 20px 15px 19px;
  background-color: #faf7f1;
  border: 1px solid #afa86f;
  border-radius: 10px;
  max-height: 240px;
}
@media screen and (min-width: 1024px) {
  .wpcf7-name,
  .wpcf7-kana,
  .wpcf7-email,
  .wpcf7-tel,
  .wpcf7-textarea {
    width: 575px;
  }
}

.wpcf7-textarea {
  transform: translateY(-3px);
}

.wpcf7-year, .wpcf7-month, .wpcf7-day {
  width: 168px;
  font-family: "Noto Sans JP", serif;
  background-color: #faf7f1;
  border: 1px solid #afa86f;
  border-radius: 10px;
  margin-right: 10px;
}
.wpcf7-year {
  font-size: 1rem;
  padding: 15px 20px 15px 19px;
}
.wpcf7-yearWord {
  transform: translateY(-1px);
}
.wpcf7-month {
  font-size: 0.75rem;
  padding: 18px 15px 19px 19px;
}
.wpcf7-monthWord {
  display: inline-block;
  transform: translate(-4px, 2px);
}
.wpcf7-day {
  font-size: 0.75rem;
  padding: 18px 15px 19px 19px;
}
@media screen and (min-width: 1024px) {
  .wpcf7-day {
    margin-left: 25px;
  }
}
.wpcf7-dayWord {
  display: inline-block;
  transform: translate(-3px, 2px);
}

@media screen and (min-width: 1440px) {
  .select02 {
    transform: translateX(-4px);
  }
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

.select01,
.select02 {
  position: relative;
  width: fit-content;
}
.select01::after,
.select02::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
  position: absolute;
  top: 40%;
  right: 46px;
  rotate: 45deg;
  pointer-events: none;
}

.wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1px;
}
.wpcf7-radio input {
  -webkit-appearance: none;
  appearance: none;
  display: inline-grid;
  place-content: center;
  width: 24px;
  height: 24px;
  background-color: #faf7f1;
  border: 1px solid #afa86f;
  border-radius: 50%;
  transform: translate(-5px, -3px);
}
.wpcf7-radio input::before {
  content: "";
  border: 0.4em solid #222;
  border-radius: 50%;
  visibility: hidden;
}
.wpcf7-radio input:checked::before {
  visibility: visible;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.wpcf7-checkbox input {
  -webkit-appearance: none;
  appearance: none;
  display: inline-grid;
  place-content: center;
  width: 24px;
  height: 24px;
  background-color: #faf7f1;
  border: 1px solid #afa86f;
  transform: translate(-4px, -2px);
  margin-right: 5px;
}
.wpcf7-checkbox input::before {
  content: "";
  border: 0.4em solid #222;
  visibility: hidden;
}
.wpcf7-checkbox input:checked::before {
  visibility: visible;
}

.wpcf7-acceptance input {
  -webkit-appearance: none;
  appearance: none;
  display: inline-grid;
  place-content: center;
  width: 16px;
  height: 16px;
  background-color: #faf7f1;
  border: 1px solid #afa86f;
  transform: translate(0, -2px);
}
.wpcf7-acceptance input::before {
  content: "";
  border: 0.4em solid #222;
  visibility: hidden;
}
.wpcf7-acceptance input:checked::before {
  visibility: visible;
}

.button-wrap {
  padding-top: 29px;
}

.wpcf7-submit {
  color: #222 !important;
  font-size: 1rem;
  padding: 16px 95px 14px 95px;
  border: 1px solid #222;
  background-color: rgb(255, 255, 255);
  display: block;
  margin: 0 auto;
}
.wpcf7-submit:disabled {
  color: #222;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.p-faq-fv {
  background-image: url(../../img/tetote/faq-fv.webp);
  background-position: bottom;
}
@media screen and (min-width: 1024px) {
  .p-faq-fv__titleGold {
    padding: 7px 11px 7px 10px;
  }
}
.p-faq-main {
  width: 100%;
  margin-top: 145px;
  margin-bottom: 139px;
}
.p-faq-inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-faq-inner {
    max-width: 980px;
  }
}
.p-faq-buttonWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 49px;
  margin-bottom: 96px;
}
@media screen and (min-width: 1024px) {
  .p-faq-buttonWrapper {
    flex-direction: row;
    align-items: normal;
  }
}
.p-faq-scroll-mt {
  scroll-margin-top: 100px;
}
@media screen and (min-width: 1024px) {
  .p-faq-scroll-mt {
    scroll-margin-top: 0;
  }
}
.p-faq-block {
  margin-top: 40px;
  margin-bottom: 88px;
}
@media screen and (min-width: 1024px) {
  .p-faq-block {
    margin-top: 112px;
  }
}
.p-faq-accordion {
  width: 100%;
}
.p-faq-accordion__title {
  position: relative;
  font-size: 1rem;
  padding: 31px 30px 32px 0;
  border-top: 1px solid #afa86f;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-faq-accordion__title {
    display: list-item;
    padding: 31px 0 32px 0;
    line-height: 1;
  }
}
.p-faq-accordion__title span {
  font-family: "Viga", sans-serif;
  color: #988c2c;
  font-size: 1.5rem;
  margin-right: 21px;
  transform: translateY(1px);
  display: inline-block;
}
.p-faq-accordion__title::before, .p-faq-accordion__title::after {
  position: absolute;
  content: "";
  background-color: #988c2c;
}
.p-faq-accordion__title::before {
  width: 16px;
  height: 2px;
  top: 53%;
  right: 0;
  transform: translateY(-50%);
}
.p-faq-accordion__title::after {
  width: 2px;
  height: 16px;
  top: 53%;
  right: 7px;
  transform: translateY(-50%);
}
.p-faq-accordion__title.active::after {
  display: none;
}
.p-faq-accordion__text {
  font-size: 1rem;
  line-height: 1.8;
  padding-bottom: 9px;
  transform: translate(36px, -19px);
  padding-right: 68px;
}

#p-faq-accordion:nth-of-type(3) summary,
#p-faq-accordion:nth-of-type(4) summary,
#p-faq-accordion:nth-of-type(5) summary,
#p-faq-accordion:nth-of-type(6) summary {
  padding: 35px 30px 32px 0;
}
@media screen and (min-width: 1024px) {
  #p-faq-accordion:nth-of-type(3) summary,
  #p-faq-accordion:nth-of-type(4) summary,
  #p-faq-accordion:nth-of-type(5) summary,
  #p-faq-accordion:nth-of-type(6) summary {
    padding: 35px 0 32px 0;
  }
}

#p-faq-accordion:last-child {
  border-bottom: 1px solid #afa86f;
}

#p-faq-accordion:first-child .p-faq-accordion__title::before,
#p-faq-accordion:first-child .p-faq-accordion__title::after {
  top: 50%;
}

.u-add-margin {
  margin-bottom: 1px;
}

.u-trim-mt:nth-of-type(2n) {
  margin-top: 0;
}

.u-shiftDown-elements::before,
.u-shiftDown-elements::after {
  top: 51% !important;
}

.u-shiftUp-elements::before,
.u-shiftUp-elements::after {
  top: 52% !important;
}

/*# sourceMappingURL=style.css.map */
