@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&display=swap");
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  letter-spacing: 0;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

body {
  background-color: #DFD8D2;
  max-width: 100vw;
  color: #3D312E;
  font-family: "Anonymous Pro", monospace;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

a {
  color: #3D312E;
  text-decoration: none;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

li {
  list-style: none;
}

#header {
  width: 100%;
  height: 80px;
  background-color: hsla(0, 7%, 55%, 0.6);
}
#header a {
  position: relative;
  opacity: 1;
}
#header a::after {
  position: absolute;
  background-color: #3D312E;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  transition: 0.5s all;
  width: 0;
}
@media (hover: hover) {
  #header a:hover::after {
    width: 100%;
    opacity: 1;
  }
}

.header__nav {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 100px;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.header__nav .nav__inner {
  display: flex;
  gap: 50px;
  align-items: center;
}
.header__nav .nav__inner .nav__inner--list {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1.3333333333;
  color: #3D312E;
  text-transform: capitalize;
}
.header__nav .nav__inner .logo {
  width: 17.7777777778vw;
  height: 5.5555555556vw;
}

@media screen and (max-width: 1100px) {
  .hamburger__wrapper {
    position: relative;
    width: 100%;
    align-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 300;
    z-index: 1000;
  }
  .hamburger__wrapper .hamburger__wrapper--logo {
    position: absolute;
    top: 20px;
    left: 4.8%;
    z-index: 200;
  }
  .hamburger__wrapper .hamburger__wrapper--logo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 50px;
  }
  .hamburger__wrapper .hamburger {
    width: 80px;
    height: 80px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 500;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  }
  .hamburger__wrapper .hamburger .hamburger__text span {
    position: absolute;
    bottom: 9px;
    left: 0;
    right: 0;
    font-size: 1rem;
    text-transform: capitalize;
  }
  .hamburger__wrapper .hamburger .hamburger__text span:nth-of-type(2) {
    display: none;
  }
  .hamburger__wrapper .hamburger.active {
    width: 80px;
    height: 80px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 800;
    transition: all 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  }
  .hamburger__wrapper .hamburger.active .hamburger__text span:nth-of-type(1) {
    display: none;
  }
  .hamburger__wrapper .hamburger.active .hamburger__text span:nth-of-type(2) {
    display: block;
  }
  .hamburger__wrapper .hamburger.active .hamburger__icon {
    position: absolute;
    top: 0;
    right: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  .header__nav {
    width: 100%;
    height: 100%;
    background-color: #DFD8D2;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    opacity: 0;
    transition: left 0.3s ease-in-out, opacity 0.3s ease-in-out;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .header__nav.active {
    opacity: 1;
    transition: left 0.3s ease-in-out, opacity 0.3s ease-in-out;
    visibility: visible;
    z-index: 500;
    margin: 0;
  }
  .header__nav .logo {
    position: absolute;
    top: 0;
    left: 4.8%;
    width: 160px;
    height: 50px;
  }
  .header__nav .logo img {
    width: 100%;
    height: 100%;
  }
  .header__nav .nav__inner {
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 17px;
    padding: 0;
  }
  .header__nav .nav__inner img {
    width: 353px;
    height: 53px;
  }
  body.active {
    height: 100vh;
    overflow: hidden;
    touch-action: none;
  }
}
#footer {
  background-color: hsla(0, 7%, 55%, 0.8);
  padding: 80px 15.2% 30px;
}
@media screen and (max-width: 1100px) {
  #footer {
    padding: 30px 4.8% 20px;
  }
}
#footer .footer__inner {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 1100px) {
  #footer .footer__inner {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
  }
}
#footer .footer__inner .footer__nav ul,
#footer .footer__inner .footer__link ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  font-size: 1.25rem;
  text-transform: capitalize;
}
@media screen and (max-width: 1100px) {
  #footer .footer__inner .footer__nav ul,
  #footer .footer__inner .footer__link ul {
    gap: 10px;
  }
}
#footer .footer__inner .footer__sns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  font-size: 1.25rem;
  text-transform: capitalize;
}
@media screen and (max-width: 1100px) {
  #footer .footer__inner .footer__sns {
    gap: 10px;
  }
}
#footer .footer__inner .footer__sns .sns {
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 1100px) {
  #footer .footer__inner .footer__sns .sns {
    gap: 10px;
  }
}
#footer .footer__inner .footer__sns .sns img {
  width: 25px;
  height: 25px;
}
@media (hover: hover) {
  #footer .footer__inner .footer__sns .sns img:hover {
    transition: 0.5s all;
    opacity: 1;
    background-color: #3D312E;
    border-radius: 5px;
    padding: 3px;
    scale: 1.2;
  }
}
#footer .copyright img {
  width: 256px;
  height: 80px;
}
@media screen and (max-width: 1100px) {
  #footer .copyright img {
    width: 180px;
    height: 56px;
  }
}
#footer .copyright p {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media screen and (max-width: 1100px) {
  #footer .copyright p {
    font-size: 0.875rem;
    line-height: 1;
  }
}
#footer .footer__nav a,
#footer .footer__link a {
  position: relative;
  opacity: 1;
}
#footer .footer__nav a::after,
#footer .footer__link a::after {
  position: absolute;
  background-color: #3D312E;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  transition: 0.5s all;
  width: 0;
}
@media (hover: hover) {
  #footer .footer__nav a:hover::after,
  #footer .footer__link a:hover::after {
    width: 100%;
    opacity: 1;
  }
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

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

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

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
.fadein-bottom {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
}
.fadein-bottom.scrollin {
  opacity: 1;
  transform: translateY(0);
}

.fv__text {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 1s ease;
}

.fv__text.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.layer__wrapper {
  padding-top: 173px;
  color: #DFD8D2;
  background-color: #F9F8F6;
}
@media screen and (max-width: 1100px) {
  .layer__wrapper {
    padding-top: 80px;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}

@media (hover: none) and (pointer: coarse) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
  a:hover,
  .c-btn:hover,
  button:hover {
    transform: none !important;
    background-color: inherit !important;
    transition: none !important;
  }
}
#contact {
  margin: 65px 0 0;
}
@media screen and (max-width: 1100px) {
  #contact {
    margin: 50px 4.8% 0;
  }
}
#contact .form {
  margin: 50px 23% 70px;
  text-align: center;
  max-width: 100%;
}
@media screen and (max-width: 1100px) {
  #contact .form {
    margin: 30px 0 0;
  }
}
#contact .form .form-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 1100px) {
  #contact .form .form-item {
    margin-bottom: 10px;
  }
}
#contact .form .form-item .form_label {
  font-size: 1.25rem;
  margin: 0 0 5px 27px;
  text-align: left;
}
@media screen and (max-width: 1100px) {
  #contact .form .form-item .form_label {
    font-size: 0.875rem;
    margin: 0 0 5px 15px;
  }
}
#contact .form .form-item .form_input {
  width: 100%;
  height: 70px;
  padding: 20px;
  background-color: hsla(0, 0%, 100%, 0.8);
  border: 1px solid #3D312E;
  border-radius: 30px;
  text-align: left;
  font-size: 1.5rem;
}
#contact .form .form-item .form_input:hover {
  border: 3px solid #3D312E;
}
@media screen and (max-width: 1100px) {
  #contact .form .form-item .form_input {
    height: 35px;
    padding: 8px 15px;
    font-size: 0.875rem;
  }
}
#contact .form .form-item .form_textarea {
  width: 100%;
  height: 150px;
  padding: 20px;
  background-color: hsla(0, 0%, 100%, 0.8);
  border: 1px solid #3D312E;
  border-radius: 30px;
  text-align: left;
  font-size: 1.25rem;
}
#contact .form .form-item .form_textarea:hover {
  border: 3px solid #3D312E;
}
#contact .form .form-item .form_textarea textarea {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  #contact .form .form-item .form_textarea {
    height: 100px;
  }
}
#contact .send {
  margin: 0 23% 0;
}
@media screen and (max-width: 1100px) {
  #contact .send {
    margin: 0 12% 0;
  }
}
#contact .send .form-btn {
  width: 100%;
  height: 50px;
  align-content: center;
  background-color: hsla(0, 7%, 55%, 0.6);
  border-radius: 30px;
  border-bottom: 2px solid #3D312E;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  transition: 0.5s all;
}
@media screen and (max-width: 1100px) {
  #contact .send .form-btn {
    height: 20px;
    font-size: 0.875rem;
    letter-spacing: 0.1rem;
    line-height: 1;
  }
}
#contact .send .form-btn:hover {
  background-color: hsla(0, 0%, 100%, 0.8);
  color: #3D312E;
  transition: 0.5s all;
}

.c-section .c-section__title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-section .c-section__title img {
  width: 80px;
  height: auto;
}
.c-section .c-section__title h2 {
  font-size: 3rem;
  letter-spacing: 0.1rem;
  line-height: 1.3333333333;
  font-weight: 700;
  text-transform: capitalize;
}
@media screen and (max-width: 1100px) {
  .c-section .c-section__title h2 {
    max-width: 150px;
    font-size: 2rem;
    letter-spacing: 0.1rem;
    line-height: 1.25;
  }
}
.c-section .c-section__text {
  font-size: 1.25rem;
  letter-spacing: 0.2rem;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .c-section .c-section__text {
    font-size: 0.875rem;
    letter-spacing: 0.1rem;
    line-height: 1;
    margin-top: -12px;
  }
}

.c-pagetop {
  height: 72px;
  width: 72px;
  position: fixed;
  right: 2.2%;
  bottom: 27px;
  background-color: hsla(0, 0%, 100%, 0.8);
  border: 1px solid hsla(0, 7%, 55%, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
  z-index: 30;
  transition: 0.5s all;
}
@media screen and (max-width: 1100px) {
  .c-pagetop {
    height: 48px;
    width: 48px;
    right: 4%;
    bottom: 15.19px;
  }
}
.c-pagetop .fa-chevron-right {
  font-size: 1.875rem;
  color: #3D312E;
  transform: rotate(-90deg);
  transition: 0.5s all;
}
@media screen and (max-width: 1100px) {
  .c-pagetop .fa-chevron-right {
    font-size: 1.125rem;
  }
}

.c-pagetop.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (hover: hover) {
  .c-pagetop:hover {
    background-color: #3D312E;
    transition: 0.5s all;
  }
  .c-pagetop:hover .fa-chevron-right {
    color: hsla(0, 0%, 100%, 0.8);
  }
}
@media (hover: none) {
  .c-pagetop {
    background-color: hsla(0, 0%, 100%, 0.8) !important;
    border: none;
  }
  .c-pagetop .fa-chevron-right {
    color: #3D312E !important;
  }
}
.footprints-container {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.footprint-animation.is-visible {
  width: 1000px;
  height: 150px;
  background-image: url("../img/common/cat_line_left.png");
  background-repeat: no-repeat;
  animation: walk 2s steps(5) forwards;
}

@keyframes walk {
  0% {
    opacity: 0.3;
    background-position: -900px 0;
  }
  100% {
    opacity: 1;
    background-position: 0 0;
  }
}
/* 右から左へ歩くためのコンテナ設定 */
.footprints-container.rtl {
  width: 100%;
  height: 150px;
  overflow: hidden;
  position: relative;
}

/* 右から左へ歩くためのアニメーション */
.footprint-animation.rtl.is-visible {
  width: 1000px;
  height: 150px;
  background-image: url("../img/common/cat_line_right.png");
  background-repeat: no-repeat;
  animation: walk-rtl 2s steps(5) forwards;
  position: absolute;
  right: 0;
}

@keyframes walk-rtl {
  0% {
    opacity: 0.3;
    background-position: 900px 0;
  }
  100% {
    opacity: 1;
    background-position: 0 0;
  }
}
.back-link {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 1100px) {
  .back-link {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.4375;
  }
}
.back-link a {
  width: 100%;
  height: 100%;
  padding: 10px 25px;
  align-content: center;
  background-color: hsla(0, 7%, 55%, 0.6);
  border-radius: 30px;
  border-bottom: 2px solid #3D312E;
  color: #fff;
  font-size: 1.25rem;
  transition: 0.5s all;
}
@media screen and (max-width: 1100px) {
  .back-link a {
    height: 20px;
    font-size: 0.875rem;
    letter-spacing: 0.1rem;
    line-height: 1;
  }
}
.back-link a:hover {
  background-color: hsla(0, 0%, 100%, 0.8);
  color: #3D312E;
  transition: 0.5s all;
}

#fv {
  max-width: 100%;
  height: 100%;
}
#fv .fv__title {
  margin: 50px auto;
}
@media screen and (max-width: 1100px) {
  #fv .fv__title {
    margin: 30px auto;
  }
}
#fv .fv__title img {
  width: 30.1388888889vw;
  height: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 1100px) {
  #fv .fv__title img {
    width: 53.3333333333vw;
    height: auto;
    margin-bottom: 10px;
  }
}
#fv .fv__title .fv__title--text {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  text-transform: capitalize;
}
@media screen and (max-width: 1100px) {
  #fv .fv__title .fv__title--text {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.5;
  }
}
#fv .fv__title .anim-box.poyoyon3.is-animated {
  animation: poyoyon3 2.5s infinite;
  opacity: 1;
}
@keyframes poyoyon3 {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}

#works {
  margin: 70px 0 0;
}
@media screen and (max-width: 1100px) {
  #works {
    margin: 30px 0 0;
  }
}
#works .works__wrapper {
  margin: 50px 0;
  /* 両方の矢印のベース */
  /* 左矢印（必要なら） */
  /* 右矢印 */
}
@media screen and (max-width: 1100px) {
  #works .works__wrapper {
    padding: 30px 20px !important;
  }
}
#works .works__wrapper .slick-list {
  overflow: hidden !important;
  height: auto !important;
}
#works .works__wrapper .slick-track {
  margin: 20px 10px;
}
#works .works__wrapper .slick-arrow {
  width: 26px;
  height: 26px;
  background-color: #3D312E;
  border-radius: 50%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (max-width: 1100px) {
  #works .works__wrapper .slick-arrow {
    display: none !important;
  }
}
#works .works__wrapper .slick-prev {
  left: -40px;
}
#works .works__wrapper .slick-next {
  right: -40px;
}
#works .works__wrapper .slick-prev::before,
#works .works__wrapper .slick-next::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid hsla(0, 0%, 100%, 0.8);
  border-right: 2px solid hsla(0, 0%, 100%, 0.8);
}
#works .works__wrapper .slick-prev::before {
  transform: rotate(-130deg);
}
#works .works__wrapper .slick-next::before {
  transform: rotate(45deg);
}
@media screen and (max-width: 1100px) {
  #works .works__wrapper {
    margin: 0;
    padding: 50px 0;
    border-radius: 50px;
  }
}
#works .works__wrapper .works__wrapper--inner {
  max-width: 1300px;
  margin: 0 auto;
  height: auto;
}
@media screen and (max-width: 1100px) {
  #works .works__wrapper .works__wrapper--inner {
    display: block !important;
    max-width: 100%;
    width: 100%;
  }
}
#works .works__wrapper .works__wrapper--inner .works__inner {
  text-align: left;
  background-color: hsla(0, 0%, 100%, 0.8);
  border-radius: 15px;
  padding: 25px;
  max-width: 320px;
  width: 100%;
  margin: 0 20px;
}
@media screen and (max-width: 1100px) {
  #works .works__wrapper .works__wrapper--inner .works__inner {
    max-width: 100%;
    margin-left: 10px;
    margin-right: 20px;
  }
}
@media (hover: hover) {
  #works .works__wrapper .works__wrapper--inner .works__inner:hover {
    transition: 0.5s all;
    scale: 1.1;
    box-shadow: 0 5px 5px hsla(0, 0%, 0%, 0.5);
  }
}
#works .works__wrapper .works__wrapper--inner .works__inner .work__image {
  max-width: 300px;
  height: auto;
  box-shadow: 0 0 5px 5px hsla(0, 0%, 0%, 0.25);
  margin-bottom: 30px;
  cursor: pointer;
}
#works .works__wrapper .works__wrapper--inner .works__inner .work__image img {
  width: 100%;
  height: auto;
}
#works .works__wrapper .works__wrapper--inner .works__inner .work__content .work__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}

.work-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  font-family: inherit;
}
.work-modal.is-open {
  display: block;
}

.work-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.work-modal__content {
  position: relative;
  max-width: 960px;
  width: 90%;
  max-height: 90vh;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
}

.work-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.work-modal__body {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.work-modal__left {
  flex: 1 1 55%;
  max-height: 70vh;
  overflow: auto;
}
.work-modal__left img {
  width: 100%;
  height: auto;
  display: block;
}

.work-modal__right {
  flex: 1 1 45%;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}
.work-modal__right .work-modal__title {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}
.work-modal__right .work-modal__time {
  margin-bottom: 8px;
}
.work-modal__right .work-modal__comment {
  margin-bottom: 8px;
  white-space: pre-line;
}
.work-modal__right .work-modal__link {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 30px;
  background: #3D312E;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.work-modal__right .work-modal__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #DFD8D2);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
@media (hover: hover) {
  .work-modal__right .work-modal__link:hover {
    opacity: 1;
    color: #3D312E;
    border: #3D312E 1px solid;
  }
  .work-modal__right .work-modal__link:hover::before {
    transform: translateX(0%);
  }
}
.work-modal__right .work-modal__tools {
  margin: 16px 0;
}
.work-modal__right .work-modal__tools h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.work-modal__right .work-modal__tools ul {
  padding-left: 1.2em;
}
.work-modal__right .work-modal__tools ul li {
  list-style: disc;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.2;
}

body.scroll-lock {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

html.no-scroll-smooth {
  scroll-behavior: auto !important;
}

@media screen and (max-width: 1100px) {
  .work-modal__content {
    width: 94%;
    margin: 20px auto;
    max-height: 100vh;
    height: 100vh;
    padding: 16px 16px 30px 16px;
    overflow-y: auto;
  }
  /* 中身は縦並び（画像 → テキスト）にする */
  .work-modal__body {
    flex-direction: column;
    gap: 16px;
  }
  /* 画像側のスクロールをやめる（PCの overflow:auto を打ち消す） */
  .work-modal__left {
    max-height: none;
    overflow: visible;
  }
  .work-modal__close {
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 9999;
  }
}
#about {
  background-color: hsla(0, 0%, 100%, 0.8);
  padding: 70px 0 0;
  box-shadow: inset 0 0 60px 0 #DFD8D2;
}
@media screen and (max-width: 1100px) {
  #about {
    padding: 40px 4.8% 0;
  }
}
#about .about__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 70px;
  justify-content: center;
  align-items: center;
  margin: 50px 0 0;
}
@media screen and (max-width: 1100px) {
  #about .about__inner {
    flex-direction: column;
    gap: 0;
  }
}
#about .about__inner .about__inner--text {
  max-width: 60%;
  width: 100%;
  font-size: 1.125rem;
  letter-spacing: 0.2222222222rem;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 1100px) {
  #about .about__inner .about__inner--text {
    max-width: 100%;
    font-size: 0.875rem;
    letter-spacing: 0.1rem;
    line-height: 1.7857142857;
  }
}
#about .about__inner .about__inner--text p {
  margin-bottom: 30px;
  text-transform: capitalize;
}
#about .about__inner .about__inner--text p span {
  font-weight: 700;
}
#about .about__inner .about__inner--img {
  width: 500px;
  height: 500px;
}
@media screen and (max-width: 1100px) {
  #about .about__inner .about__inner--img {
    width: 300px;
    height: 300px;
  }
}
#about .about__inner .about__inner--img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: scaleX(-1);
}

#skills {
  background-color: hsla(0, 0%, 100%, 0.8);
  padding: 70px 0 0;
  box-shadow: inset 0 0 60px 0 #DFD8D2;
}
@media screen and (max-width: 1100px) {
  #skills {
    padding: 50px 0 0;
  }
}
#skills .skills__wrapper {
  margin: 50px 71px 0;
}
@media screen and (max-width: 1100px) {
  #skills .skills__wrapper {
    margin: 30px 3.6% 0;
  }
}
#skills .skills__wrapper .skills__inner {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1100px) {
  #skills .skills__wrapper .skills__inner {
    flex-direction: column;
    gap: 20px;
  }
}
#skills .skills__wrapper .skills__inner .skills__inner--item {
  background-color: hsla(0, 0%, 100%, 0.8);
  border: 1px solid #3D312E;
  border-radius: 300px;
  padding: 20px;
  width: 100%;
  height: 100%;
  align-content: center;
}
@media screen and (max-width: 1100px) {
  #skills .skills__wrapper .skills__inner .skills__inner--item {
    border-radius: 100px;
  }
}
@media (hover: hover) {
  #skills .skills__wrapper .skills__inner .skills__inner--item:hover {
    transition: 0.5s all;
    box-shadow: 0 4px 4px hsla(0, 0%, 0%, 0.5);
  }
}
#skills .skills__wrapper .skills__inner .skills__inner--item h2 {
  display: inline-block;
  font-size: 2.25rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-transform: capitalize;
  border-bottom: 2px dashed #3D312E;
  margin-bottom: 15px;
  text-shadow: 0 4px 4px hsla(0, 0%, 0%, 0.5);
}
@media screen and (max-width: 1100px) {
  #skills .skills__wrapper .skills__inner .skills__inner--item h2 {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    line-height: 1.3333333333;
  }
}
#skills .skills__wrapper .skills__inner .skills__inner--item .first {
  text-transform: uppercase;
}
#skills .skills__wrapper .skills__inner .skills__inner--item p {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  line-height: 1.4375;
  word-break: break-all;
}
@media screen and (max-width: 1100px) {
  #skills .skills__wrapper .skills__inner .skills__inner--item p {
    font-size: 0.875rem;
    letter-spacing: 0.1rem;
    line-height: 1.6428571429;
  }
}
#skills .skills__wrapper .skills__inner .skills__inner--last {
  max-width: 48.6111111111vw;
  padding: 20px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  #skills .skills__wrapper .skills__inner .skills__inner--last {
    max-width: 100%;
    border-radius: 100px;
  }
}

#thanks {
  margin: 50px 0 50px;
}
#thanks h2 {
  font-size: 2.25rem;
  letter-spacing: 0.15rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1100px) {
  #thanks h2 {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    line-height: 1.5;
  }
}
#thanks p {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1100px) {
  #thanks p {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.4375;
  }
}
#thanks a {
  width: 100%;
  height: 100%;
  padding: 10px 25px;
  align-content: center;
  background-color: hsla(0, 7%, 55%, 0.6);
  border-radius: 30px;
  border-bottom: 2px solid #3D312E;
  color: #fff;
  font-size: 1.25rem;
  transition: 0.5s all;
}
@media screen and (max-width: 1100px) {
  #thanks a {
    height: 20px;
    font-size: 0.875rem;
    letter-spacing: 0.1rem;
    line-height: 1;
  }
}
#thanks a:hover {
  background-color: hsla(0, 0%, 100%, 0.8);
  color: #3D312E;
  transition: 0.5s all;
}

#privacy {
  text-align: left;
}
@media screen and (max-width: 1100px) {
  #privacy {
    margin: 50px 8% 50px;
  }
}
#privacy .container {
  margin: 50px 14% 50px;
}
#privacy h2 {
  font-size: 2.25rem;
  letter-spacing: 0.15rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 1100px) {
  #privacy h2 {
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    line-height: 1.5;
  }
}
#privacy p {
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 1100px) {
  #privacy p {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.2;
  }
}
#privacy .privacy__content {
  margin-bottom: 20px;
}
#privacy .privacy__content h3 {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  margin-bottom: 10px;
  border-bottom: 1px solid #3D312E;
}
@media screen and (max-width: 1100px) {
  #privacy .privacy__content h3 {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.2;
  }
}
#privacy .privacy__content ul {
  margin-left: 2rem;
}
#privacy .privacy__content ul li {
  list-style: disc;
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
}
@media screen and (max-width: 1100px) {
  #privacy .privacy__content ul li {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    line-height: 1.2;
  }
}
#privacy .privacy__content p {
  margin-bottom: 10px;
}

.kind-certified-nursery-school {
  background-color: hsla(0, 7%, 55%, 0.8);
}

.kind-small-nursery-school {
  background-color: hsla(0, 7%, 55%, 0.6);
}

.kind-small-scale-childcare-business-type-a {
  background-color: #EDF4FF;
}

.no-article {
  font-size: 1.25rem;
  letter-spacing: 0.125rem;
  margin-top: 32px;
  align-content: center;
}

.sidebar__list--content a.is-current {
  background-color: #DFD8D2 !important;
  color: hsla(0, 0%, 100%, 0.8);
}

@media screen and (max-width: 1100px) {
  #l-404 #heading .heading__title--wrapper {
    top: 20px;
  }
  #l-404 #heading .heading__title {
    line-height: 1.5;
  }
  #l-404 #heading .en {
    margin-top: 12px;
  }
}

.error-content {
  margin: 120px 12.5% 174px;
  text-align: left;
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  color: #000000;
}
.error-content P,
.error-content li {
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1100px) {
  .error-content {
    margin: 88px 4% 120px;
    font-size: 1.0625rem;
    letter-spacing: 0.1rem;
    line-height: 1.5;
  }
}
.error-content ul {
  margin: 24px 0;
}

select {
  appearance: none;
  -webkit-appearance: none;
  /* Safari, Chrome */
  -moz-appearance: none;
  /* Firefox */
}

.wpcf7 .wpcf7-form-control {
  border: none;
  padding: 0;
  max-width: 100%;
  height: 100%;
}
.wpcf7 .wpcf7-list-item {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  width: 100%;
  align-content: center;
  margin: 0;
}
.wpcf7 .wpcf7-list-item input {
  margin-right: 4px;
}
.wpcf7 .area .wpcf7-form-control {
  max-width: 100%;
  width: 100%;
  text-align: left;
}
.wpcf7 .form__address-row .wpcf7-form-control-wrap {
  max-width: 100%;
  width: 100%;
}
.wpcf7 .container__box--inquiry {
  width: 100%;
}
.wpcf7 .radio-style-column .wpcf7-form-control {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  gap: 10px;
}
.wpcf7 .radio-style .wpcf7-form-control {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.wpcf7 .radio-style .wpcf7-form-control label {
  white-space: nowrap;
}
.wpcf7 .form__checkbox label {
  display: flex;
  justify-content: center;
  gap: 12px;
  color: #3D312E;
  align-items: flex-start;
}
.wpcf7 .form__checkbox label .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.wpcf7 .form__checkbox label .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
}
.wpcf7 .form__checkbox label .wpcf7-list-item .wpcf7-list-item-label:before {
  display: none;
}
.wpcf7 .form__checkbox label .wpcf7-list-item .req {
  min-width: 42px;
  min-height: 20px;
  border-radius: 4px;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.075rem;
  line-height: 1;
  background-color: #DFD8D2;
  color: hsla(0, 0%, 100%, 0.8);
  vertical-align: middle;
}
.wpcf7 .form__checkbox label .wpcf7-list-item input {
  width: 20px;
  height: 20px;
  margin: 0;
  vertical-align: middle;
}
.wpcf7 .c-btn {
  color: #3D312E;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
  line-height: 1;
}
.wpcf7 .wpcf7-response-output {
  border-color: #DFD8D2 !important;
}
.wpcf7 .container__gender .wpcf7-list-item:first-child {
  display: none;
}/*# sourceMappingURL=style.css.map */