html {
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  color: #000;
}

body.is-noscroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #000;
}

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

li {
  list-style: none;
}

section {
  padding-top: 80px;
}
@media (max-width: 768px) {
  section {
    padding-top: 50px;
  }
}
.section-title {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 4px;
  font-family: "El Messiri", sans-serif;
}

@media (max-width: 768px) {
  .section-title  {
    font-size: 40px;
    margin-bottom: 2px;
  }
}
.sub-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1;
}

@media (max-width: 768px) {
  .sub-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.wrapper {
  width: 100%;
/*  max-width: 1046px;*/
  max-width: 1076px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .wrapper {
    padding: 0 16px;
  }
}
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl, figure) {
  margin: 0;
  padding: 0;
}

.img-w {
  width: 100%;
  position: relative;
}

.js-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

.js-bg-img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  image-rendering: auto;
}

.is-bg-loaded .js-bg-img {
  opacity: 1;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 352px;
  width: 100%;
  height: 83px;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  border-bottom: 4px solid #000;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 768px) {
  .btn {
    max-width: 352px;
    width: 80%;
    height: 64px;
    margin: 0 auto;
  }  
}
.btn .icon {
  position: absolute;
  right: 29px;
  width: 12px;
  height: 12px;
}
.btn .icon img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
}
@media (any-hover: hover) {
  .btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    border-bottom: 6px solid #111;
  }
}
@media (any-hover: hover) {
  .btn:hover img {
    filter: brightness(0) invert(1);
  }
}
.btn:active {
  transform: translateY(2px);
  border-bottom-width: 3px;
}

.header {
  position: fixed;
  width: 100%;
  height: 50px;
  top: 0;
  background: #fff;
  z-index: 1000;
}
.header .container {
  max-width: 1294px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header .logo img {
  display: block;
  height: auto;
  width: 114px;
}

.header .nav-menu ul {
  display: flex;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .nav-menu a {
  font-size: 18px;
  font-weight: 500;
  font-family: "El Messiri", sans-serif;
  transition: color 0.3s;
}
@media (any-hover: hover) {
  .header .nav-menu a:hover {
    color: #007bff;
  }
}
.header .nav-sns {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header .nav-sns .sns-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}
.header .nav-sns .sns-icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.3s ease;
}
@media (any-hover: hover) {
  .header .nav-sns .sns-icon:hover img {
    filter: invert(36%) sepia(97%) saturate(2176%) hue-rotate(201deg) brightness(97%) contrast(101%);
  }
}
@media (max-width: 768px) {
  .header .nav-menu,
  .header .nav-sns {
    display: none;
  }
}
.header-btn {
  position: relative;
  display: none;
  width: 50px;
  margin-right: -15px;
  aspect-ratio: 1;
  z-index: 2;
  cursor: pointer;
  transition: background-color 0.4s;
  background-color: #fff;
  z-index: 4;
}

@media (max-width: 768px) {
  .header-btn {
    display: block;
  }
}
.header-btn span {
  position: absolute;
  width: 24px;
  height: 2px;
  left: 50%;
  translate: -50%;    
  background-color: #333;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.header-btn span:nth-child(1) {
  top: 16px;
}

.header-btn span:nth-child(2) {
  top: 24px;
}

.header-btn span:nth-child(3) {
  top: 32px;
}

.header-btn span.close:nth-child(1) {
  top: 24px;
  transform: rotate(-45deg);
}
.header-btn span.close:nth-child(2) {
  display: none;
}

.header-btn span.close:nth-child(3) {
  top: 24px;
  transform: rotate(45deg);
}

.drawer {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 50px;
  left: 100%;
  padding: 60px 25px;
  transition: left 0.6s;
  z-index: 3;
  background: #fff;
  overflow: auto;
}
.drawer.slidein {
  left: 0;
}
.drawer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.drawer__text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 358px;
  width: calc(100% - 32px);
/*  height: 100%;*/
  overflow: auto;
}
.drawer-link-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 0;
  z-index: 1;
}
.drawer-link__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.drawer-link__item {
  position: relative;
  /* display: flex; */
  width: 100%;
  font-size: 18px;
  font-family: "El Messiri", sans-serif;
  line-height: 1.8;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  text-align: center;
}
.drawer-link__item a {
  display: block;
  padding: 15px 0;
  color: #333;
  transition: color 0.4s;
}
.drawer-link__item > a:active {
  color: #007bff;
}
@media (any-hover: hover) {
  .drawer-link__item > a:hover {
    color: #007bff;
  }
}
.drawer .nav-sns {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.main-visual {
  position: relative;
  height: 603px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 768px) {
  .main-visual {
    height: 100svh;
  }
}
.main-visual img {
  width: 100%;
  height: 100%;
}
.main-visual .mv-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.main-visual .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.main-visual .slide.active {
  opacity: 1;
}
.main-visual .slide .img-w,
.main-visual .slide .js-bg,
.main-visual .slide .js-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-visual .slide .js-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.main-visual .mv-inner {
  position: relative;
  z-index: 2;
  max-width: 425px;
}
@media (max-width: 768px) {
  .main-visual .mv-inner {
    width: 70%;
  }
}
.main-visual .mv-inner .mv-title {
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  padding: 10px 0 10px;
}
.main-visual .mv-inner .mv-title img {
  display: block;
  width: 388px;
  height: auto;
}
@media (max-width: 768px) {
  .main-visual .mv-inner .mv-title img {
    max-width: 388px;
    width: 100%;
    margin: 0 auto;
  }
}
.main-visual .mv-inner .mv-title::before, .main-visual .mv-inner .mv-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #fff;
}
.main-visual .mv-inner .mv-title::before {
  top: 0;
}
.main-visual .mv-inner .mv-title::after {
  bottom: 0;
}
.main-visual .mv-inner .mv-sub {
  font-size: 31.81px;
  line-height: 41.2px;
  color: #F7F7F7;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
}
@media (max-width: 768px) {
  .main-visual .mv-inner .mv-sub {
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
    margin-inline: calc(50% - 50vw);
  }
}
.main-visual .mv-inner .mv-sub span {
  font-size: 27.57px;
}
@media (max-width: 768px) {
  .main-visual .mv-inner .mv-sub span {
    font-size: 20px;
  }
}
.main-visual .mv-label {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1;
  border-left: 1px solid #fff;
  color: #fff;
  z-index: 2;
  transition: opacity 1s ease-in-out;
}
@media (max-width: 768px) {
  .main-visual .mv-label {
    display: none;
  }
}
.main-visual .mv-dots {
  position: absolute;
  right: 23px;
  top: 516px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}
@media (max-width: 768px) {
  .main-visual .mv-dots {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    top: auto;
    left: 50%;
    translate: -50%;
    bottom: 24px;
  }
}
.main-visual .mv-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
@media (max-width: 768px) {
  .main-visual .mv-dots .dot {
    width: 8px;
    height: 8px;
  }
}
.main-visual .mv-dots .dot.active {
  background: #fff;
  transform: scale(1.3);
}
@media (any-hover: hover) {
  .main-visual .mv-dots .dot:hover {
    background: #fff;
  }
}

.about {
  padding-top: 80px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 768px) {
  .about {
    padding-top: 64px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.about .about-head {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  margin-bottom: 72.77px;
}
@media (max-width: 768px) {
  .about .about-head {
    margin-bottom: 64px;
  }
}
.about .about-head .sub-title {
  margin-bottom: 32px;
}
.about .about-head .about-text {
  font-size: 17px;
  line-height: 1.7;
  color: #111;
}

@media (max-width: 768px) {
  .about .about-head .about-text {
    font-size: 16px;
  }
}
.about .about-slider {
  --gap: 40px;
  --duration: 36s;
  overflow: hidden;
  position: relative;
}
.about .about-slider .slider-item {
  display: flex;
  gap: var(--gap);
  width: -moz-max-content;
  width: max-content;
  animation: marquee var(--duration) linear infinite;
}
/*.about .about-slider .item .img-w,
.about .about-slider .item .js-bg,
.about .about-slider .item .js-bg-img {
  width: 100%;
  height: 100%;
}
.about .about-slider .item .js-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
*/@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 3));
  }
}

.item {
  width: 283px;
  height: 425px;
  overflow: hidden;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .item {
    width: calc(283px * 0.61);
    height: calc(425px * 0.61);
  }
}
.item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.item:nth-child(5n+1) {
  transform: translateY(-37px);
}

.item:nth-child(5n+2) {
  transform: translateY(37px);
}

.item:nth-child(5n+3) {
  transform: translateY(-37px);
}

.item:nth-child(5n+4) {
  transform: translateY(37px);
}

.item:nth-child(5n+5) {
  transform: translateY(-37px);
}

.item:nth-child(10n+6) {
  transform: translateY(37px);
}

.item:nth-child(10n+7) {
  transform: translateY(-37px);
}

.item:nth-child(10n+8) {
  transform: translateY(37px);
}

.item:nth-child(10n+9) {
  transform: translateY(-37px);
}

.item:nth-child(10n+10) {
  transform: translateY(37px);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.services {
  padding-top: 112px;
}
@media (max-width: 768px) {
  .services {
    padding-top: 64px;
  }
  .services .services-head .sub-title {
    margin-bottom: 24px;
  }
}
.services .service-head {
  text-align: left;
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 100%;
}
@media (max-width:768px) {
  .services .services-grid {
    display: grid;
/*    grid-template-columns: repeat(2, 1fr);*/
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-template-rows: repeat(2, 1fr);
  }
}
.services .service-item {
  position: relative;
  height: 414px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  transition: filter 0.5s ease;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services .service-item {
    height: 296px;
  }
}
@media (any-hover: hover) {
  .services .service-item:hover {
    filter: brightness(1.1);
  }
}
@media (any-hover: hover) {
  .services .service-item:hover .service-image .js-bg-img {
    transform: scale(1.1);
  }
}
.services .service-item.blue {
  background-color: #2900CD;
}
.services .service-item.red {
  background-color: #C80000;
}
.services .service-item.purple {
  background-color: #8D00C9;
}
.services .service-item.green {
  background-color: #009E1E;
}
.services .service-item.yellow {
  background-color: #E29300;
}
.services .service-item.pink {
  background-color: #D700A9;
}
.services .service-item .service-image {
  max-width: 223px;
  width: 75%;
/*  height: 223px;*/
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 40px;
  transition: transform 0.4s ease;
}
@media (max-width: 768px) {
  .services .service-item .service-image {
    margin-top: -40px;
    margin-bottom: 20px;
  }
}
@media (max-width: 400px) {
  .services .service-item .service-image {
    width: 44%;
  }
}
.services .service-item .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
@media (any-hover: hover) {
  .services .service-item:hover .service-image img {
    transform: scale(1.1);
  }
}
.services .service-item .service-text {
  width: 100%;
  max-width: 100%;
  text-align: left;
  padding-left: 41px;
}
@media (max-width: 768px) {
  .services .service-item .service-text {
    padding-left: 0;
    text-align: center;
  }
}
.services .service-item .service-text .item-sub {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0px;
  line-height: 1;
  font-family: "El Messiri", sans-serif;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .services .service-item .service-text .item-sub {
    font-size: 18px;
  }
}
.services .service-item .service-text .item-title {
  font-size: 28px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .services .service-item .service-text .item-title {
    font-size: 20px;
    margin-top: 4px;
  }
}
.services .service-item .service-arrow {
  position: absolute;
  right: 39px;
  bottom: 40.82px;
  width: 25px;
  height: 14px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .services .service-item .service-arrow {
    width: 16px;
    right: auto;
    bottom: 20px;
    left: 50%;
    translate: -50%;    
  }
}
.services .service-item .service-arrow img {
  width: 100%;
  height: auto;
  display: block;
}
@media (any-hover: hover) {
  .services .service-item:hover .service-arrow {
    transform: translateY(4px);
  }
}
.writing {
  padding-top: 96px;
}
@media (max-width: 768px) {
  .writing {
    padding-top: 64px;
  }
}
.writing .wrapper {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .writing .wrapper {
    padding: 0 24px;
  }
}
.writing .writing-head {
  text-align: center;
  margin-bottom: 40px;
}
.writing .writing-head .section-title {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .writing .writing-head .section-title {
    font-size: 36px;
    margin-bottom: 2px;
  }
  .writing .writing-head {
    margin-bottom: 24px;
  }
}
.writing .writing-grid {
  display: grid;
/*  grid-template-columns: repeat(5, 178px);*/
  grid-template-columns: repeat(auto-fit, minmax(178px, 1fr));
/*  grid-auto-rows: 285px;*/
  justify-content: center;
  gap: 32px 34.5px;
  justify-content: center;
}
@media (max-width: 768px) {
  .writing .writing-grid {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 16px;
  }
  .writing .writing-grid .book-item:nth-child(n+7) {
    display: none;
  }
}
@media (max-width: 430px) {
  .writing .writing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.writing .writing-grid .book-item {
  /*width: 178px;
  height: 285px;*/
  display: grid;
  place-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
}
.writing .writing-grid .book-item .img-w,
.writing .writing-grid .book-item .js-bg,
.writing .writing-grid .book-item .js-bg-img {
  width: 100%;
  height: 100%;
}
.writing .writing-grid .book-item .js-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.writing .writing-grid .book-paris-item {
/*  height: 255px;*/
  align-self: center;
}
.writing .writing-viewall {
  text-align: center;
  margin: 48px 0 80px;
}
@media (max-width: 768px) {
  .writing .writing-viewall {
    margin: 40px 0 64px;
  }
  .writing .writing-viewall .btn {
    width: calc((100vw - 32px) * 0.8);
    max-width: 352px;
  }
}
.collaboration {
  padding: 80px 0 81px;
  background-color: #FAFBFE;
}
@media (max-width: 768px) {
  .collaboration {
    padding: 64px 0 64px;
  }
}
.collaboration .collaboration-inner {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}
@media (max-width: 768px) {
  .collaboration .collaboration-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.collaboration .collaboration-image {
  flex: 0 0 50%;
}
.collaboration .collaboration-image .img-w,
.collaboration .collaboration-image .js-bg,
.collaboration .collaboration-image .js-bg-img {
  width: 100%;
  height: 100%;
}
.collaboration .collaboration-image .js-bg-img {
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.collaboration .collaboration-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.collaboration .collaboration-text .section-title {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .collaboration .collaboration-text .section-title {
    font-size: 36px;
    margin-bottom: 2px;
  }
}
.collaboration .collaboration-text .sub-title {
  margin-bottom: 24px;
}
.collaboration .collaboration-text .description {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #111;
}
@media (max-width: 768px) {
  .collaboration .collaboration-text .description {
    font-size: 16px;
  }
}
.guide {
  padding: 80px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .guide {
    padding: 64px 0;
  }
}
.guide .guide-head {
  margin-bottom: 40px;
}
.guide .guide-head .section-title {
  font-size: 40px;
  margin-bottom: 4px;
  line-height: 1;
}
@media (max-width: 768px) {
  .guide .guide-head .section-title {
    font-size: 36px;
    margin-bottom: 2px;
  }
}
.guide .guide-head .sub-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.29;
}
@media (max-width: 768px) {
  .guide .guide-head .sub-title {
    font-size: 18px;
  }
}
.guide .guide-head .description {
  font-size: 17px;
  color: #111;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: left;
}
@media (max-width: 768px) {
  .guide .guide-head .description {
    font-size: 16px;
  }
}
.guide .guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 25px;
  justify-content: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .guide .guide-grid {
/*    grid-template-columns: repeat(2, 1fr);*/
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 40px;
  }
}
.guide .guide-grid .guide-item {
  text-align: left;
}
@media (max-width: 768px) {
  .guide .guide-grid .guide-item:nth-child(n + 4) {
    display: none;
  }
}
.guide .guide-grid .guide-item img {
  max-width: none;
  width: 100%;
}
.guide .guide-grid .guide-item .img-w,
.guide .guide-grid .guide-item .js-bg,
.guide .guide-grid .guide-item .js-bg-img {
  width: 100%;
  height: 100%;
}
.guide .guide-grid .guide-item .js-bg-img {
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.guide .guide-grid .guide-item .guide-title {
  font-size: 17px;
  line-height: 1.7;
  padding-top: 20px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .guide .guide-grid .guide-item .guide-title {
    padding-top: 12px;
    font-weight: 400;
    font-size: 16px;
  }
}
.guide .guide-viewall {
  text-align: center;
}

.therapy {
  background-color: #FAFBFE;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .therapy {
    padding: 64px 0;
  }
}
.therapy .therapy-inner {
  display: flex;
  align-items: center;
  gap: 74px;
}
@media (max-width: 768px) {
  .therapy .therapy-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
}
.therapy .therapy-image {
  flex: 0 0 50%;
}
.therapy .therapy-image .img-w,
.therapy .therapy-image .js-bg,
.therapy .therapy-image .js-bg-img {
  width: 100%;
  height: 100%;
}
.therapy .therapy-image .js-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
.therapy .therapy-text .section-title {
  font-size: 40px;
  margin-bottom: 4px;
  font-family: "El Messiri", sans-serif;
}
.therapy .therapy-text .sub-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.therapy .therapy-text .description {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #111111;
}

.workshops {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .workshops {
    padding: 64px 0;
  }
}
.workshops .workshops-inner {
  display: flex;
  align-items: center;
  gap: 74px;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .workshops .workshops-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
}
.workshops .workshops-image {
  flex: 0 0 50%;
}
.workshops .workshops-image .img-w,
.workshops .workshops-image .js-bg,
.workshops .workshops-image .js-bg-img {
  width: 100%;
  height: 100%;
}
.workshops .workshops-image .js-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
.workshops .workshops-text .section-title {
  font-size: 40px;
  margin-bottom: 4px;
  font-family: "El Messiri", sans-serif;
}
.workshops .workshops-text .sub-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.workshops .workshops-text .description {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #111111;
}

.community {
  background-color: #FAFBFE;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .community {
    padding: 64px 0;
  }
}
.community .community-inner {
  display: flex;
  align-items: center;
  gap: 74px;
}
@media (max-width: 768px) {
  .community .community-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }
}
.community .community-image {
  flex: 0 0 50%;
}
.community .community-image .img-w,
.community .community-image .js-bg,
.community .community-image .js-bg-img {
  width: 100%;
  height: 100%;
}
.community .community-image .js-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}

@media (max-width: 768px) {
  .therapy .wrapper,
  .workshops .wrapper,
  .community .wrapper {
    padding: 0 16px;
  }
  .workshops-text,
  .therapy-text,
  .community-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0;
  }
  .workshops-text .btn,
  .therapy-text .btn,
  .community-text .btn {
    align-self: center;
    width: calc((100vw - 32px) * 0.8);
    max-width: 352px;
  }
}
.community .community-text .section-title {
  font-size: 40px;
  margin-bottom: 4px;
  font-family: "El Messiri", sans-serif;
}
.community .community-text .sub-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.community .community-text .description {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: #111111;
}
@media (max-width: 768px) {
  .therapy .therapy-text .section-title,
  .workshops .workshops-text .section-title,
  .community .community-text .section-title {
    font-size: 36px;
    margin-bottom: 2px;
  }
  .therapy .therapy-text .sub-title,
  .workshops .workshops-text .sub-title,
  .community .community-text .sub-title {
    font-size: 18px;
  }
  .therapy .therapy-text .description,
  .workshops .workshops-text .description,
  .community .community-text .description {
    font-size: 16px;
  }
}

.profile {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  min-height: 700px;
  background: url(../img/THIS.png) no-repeat;
  background-size: 100% 100%;
  background-position: left center;
}
@media (max-width: 768px) {
  .profile {
    padding: 64px 0;
    background-size: cover;
    background-position: center center;
  }
}
.profile .img-w,
.profile .js-bg,
.profile .js-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.profile .js-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.profile .wrapper {
  position: relative;
  z-index: 2;
}
.profile .profile-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 71px;
}
@media (max-width: 768px) {
  .profile .profile-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .profile .profile-text {
    display: contents;
  }
  .profile .profile-head {
    order: 1;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
  }
  .profile .profile-image {
    order: 2;
    width: 80%;
    height: auto;
    margin: 0 auto -4px;
  }
  .profile .profile-image img {
    width: 100%;
    height: auto;
  }
  .profile .profile-detail {
    order: 3;
    width: 100%;
    margin-top: 24px;
  }
}
.profile .profile-text {
  flex: 0 0 50%;
/*  flex: 0 0 524px;*/
  position: relative;
  z-index: 2;
  color: #111;
}
.profile .profile-text .sub-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1;
}
@media (max-width: 768px) {
  .profile .profile-text .sub-title {
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 18px;
  }
  .profile .profile-text .section-title,
  .profile .profile-text .sub-title,
  .profile .profile-head .section-title,
  .profile .profile-head .sub-title {
    text-align: center;
  }
  .profile .profile-text .profile-head .sub-title {
    margin-bottom: 24px !important;
  }
  .profile .wrapper {
    padding: 0 16px;
  }
}
.profile .profile-text .profile-name {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .profile .profile-text .profile-name {
    font-size: 20px;
  }
}
.profile .profile-text .company {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .profile .profile-text .company {
    font-size: 16px;
  }
}
.profile .profile-text .profile-desc {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .profile .profile-text .profile-desc{
    font-size: 16px;
  }
}
.profile .profile-text .profile-achievements .achieve-title {
  font-weight: 700;
  font-size: 19px;
  line-height: 1.7;
}
.profile .profile-text .profile-achievements ul {
  margin: 0;
  list-style: disc;
}
.profile .profile-text .profile-achievements ul li {
  font-size: 17px;
  line-height: 1.7;
}
.profile .profile-image {
  flex: 0 0 43%;
/*  flex: 0 0 449px;*/
  height: 547px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}
.profile .profile-image .img-w,
.profile .profile-image .js-bg,
.profile .profile-image .js-bg-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.profile .profile-image .js-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}

.contact {
  background-color: #00004F;
  color: #fff;
  padding: 68px 0 65px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact {
    padding: 64px 0 40px;
  }
}
.contact .contact-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .contact .contact-inner {
    flex-direction: column;
    gap: 32px;
  }
}
.contact .contact-left {
  flex-shrink: 0;
  max-width: 323px;
  width: 100%;
}
.contact .contact-left .sub-title {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .contact .contact-left .sub-title {
    font-size: 18px;  
  }
}
.contact .contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 768px) {
  .contact .contact-right {
    width: 100%;
  }
}
.contact .contact-right .contact-text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact .contact-right .contact-mail {
  width: 100%;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  .contact .contact-right .contact-mail {
    margin-bottom: 24px;
  }
}
.contact .contact-right .contact-mail .contact-mail-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #E98101;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  padding: 42px 58px 42px 60px;
  max-width: 739px;
  width: 100%;
  height: 144px;
  text-decoration: none;
  transition: background 0.3s ease;
  text-decoration: underline;
  text-underline-offset: 1px;
  text-decoration-thickness: 1px;
  text-decoration-color: #fff;
}
@media (max-width: 768px) {
  .contact .contact-right .contact-mail .contact-mail-link {
    font-size: 18px;
    padding: 16px 20px;
    height: auto;
    min-height: 80px;
    overflow: hidden;
    gap: 12px;
  }
  .contact .contact-right .contact-mail .contact-mail-link .contact-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}
.contact .contact-right .contact-mail .contact-mail-link:hover {
  background-color: #b45907;
}
.contact .contact-right .contact-mail .contact-mail-link .contact-arrow {
  display: inline-flex;
  width: 27px;
  height: 27px;
  margin-left: 12px;
}
.contact .contact-right .contact-mail .contact-mail-link .contact-arrow img {
  width: 100%;
  height: auto;
}
.contact .contact-right .contact-footer {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .contact .contact-right .contact-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.contact .contact-right .contact-footer .logo {
  width: 178px;
  height: 43px;
}
.contact .contact-right .contact-footer .logo img {
  width: 100%;
  height: auto;
  margin-top: 2px;
}
.contact .contact-right .contact-footer .contact-sns {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact .contact-right .contact-footer .contact-sns a {
  color: #fff;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  transition: opacity 0.3s ease;
  border-bottom: 1px solid #fff;
}
@media (any-hover: hover) {
  .contact .contact-right .contact-footer .contact-sns a:hover {
    opacity: 0.7;
  }
}
.footer {
  background-color: #00004F;
  border-top: 1px solid rgba(241, 241, 241, 0.4);
  padding: 30px 27px 30px 96px;
  color: #fff;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 16px 15px;
  }
}
.footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer .footer-inner {
    flex-direction: column;
    gap: 40px;
  }
}
.footer .footer-nav {
  display: flex;
  gap: 53px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .footer .footer-nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer .footer-nav a {
  color: #fff;
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
  font-family: "El Messiri", sans-serif;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .footer .footer-nav a:hover {
    opacity: 0.7;
  }
}
.footer .footer-copy {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 12px;
  color: #fff;
}