@charset "UTF-8";
/*
*
// 基本的な比較
@include mq('md', '>=') {
	background: green; // 768px以上
}

@include mq('lg', '<') {
	background: orange; // 991px以下（992px未満）
}

// 範囲指定（between）
@include mq('sm', '>=', 'lg', '<') {
	background: blue; // 576px以上、992px未満
}
*
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

a:not([class]) {
  color: currentColor;
  text-decoration-skip-ink: auto;
}

img,
picture {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

:root {
  --container-width: 1200px;
  --container-spacing-x: 12px;
  --color-primary: #C3D689;
  --color-secondary: #846EA8;
  --color-tertiary: #3E3A3A;
  --color-text: #3E3A3A;
  --menu-font-family: serif;
  --font-family-serif: serif;
  --font-family-text: "Zen Kaku Gothic New",
  	sans-serif;
}

body {
  overflow-x: hidden;
  background: #F9F9F4;
  font-weight: 500;
  font-family: var(--font-family-text);
}

:where(h1, h2, h3, h4, h5, h6) {
  line-height: 1.5;
}

.l-container, .l-footer__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-spacing-x);
}

.l-header {
  display: none;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: min(100%, 1920px);
  margin: 0 auto;
}
.l-header__inner {
  padding: 0 var(--container-spacing-x);
}
.l-header__branding {
  position: absolute;
  top: 20px;
  left: 5vw;
  width: 180px;
}
.l-header__bg-image {
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.l-header__nav {
  position: absolute;
  top: 4vw;
  right: 10vw;
}

.l-sp-header {
  display: block;
  z-index: 100;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
}
.l-sp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  padding-inline: var(--container-spacing-x) 0;
  background: #fff;
}
.l-sp-header__branding {
  max-width: 150px;
}
.l-sp-header__menu-toggle {
  position: relative;
}

.l-footer {
  background: var(--color-secondary);
  color: #fff;
}
.l-footer__inner {
  padding-block: 40px 24px;
}

.header-menu {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 1.5em;
  font-weight: 700;
  font-size: min(22px, 1.5vw);
  font-family: var(--menu-font-family);
  list-style: none;
}
.header-menu a {
  position: relative;
  color: #595757;
  text-decoration: none;
}
.header-menu a::before {
  position: absolute;
  top: 4px;
  left: 2px;
  width: 14px;
  height: 9px;
  background-image: url(../images/menu-hover-icon.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header-menu a:hover::before {
  opacity: 1;
}

.sp-header-nav {
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(0);
  transform-origin: top right;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease-in-out;
}
.sp-header-nav.is-active {
  transform: scale(1);
  opacity: 1;
}

.sp-menu-toggle {
  display: inline-flex;
  z-index: 1;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 53px;
  padding: 0.5em 1em;
  border: 0;
  border-bottom-left-radius: 2em;
  background: var(--color-primary);
  color: #fff;
  cursor: pointer;
}
.sp-menu-toggle__bar {
  position: absolute;
  top: 30px;
  width: 19px;
  height: 3px;
  border-radius: 2em;
  background-color: #fff;
  transition: all 0.3s ease;
}
.sp-menu-toggle__bar:nth-child(1) {
  top: 18px;
}
.sp-menu-toggle.is-active .sp-menu-toggle__bar:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}
.sp-menu-toggle.is-active .sp-menu-toggle__bar:nth-child(2) {
  top: 23px;
  transform: rotate(-45deg);
}

.sp-header-nav__inner {
  display: flex;
  flex-direction: column;
  padding: 60px 24px 40px 40px;
  gap: 24px;
  border-bottom-left-radius: 80px;
  background: var(--color-primary);
}

.sp-header-nav__menu {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 24px;
  font-family: var(--menu-font-family);
  list-style: none;
}
.sp-header-nav__menu a {
  display: block;
  color: #595757;
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
}

.footer-branding {
  display: grid;
  place-items: center;
  gap: 16px;
}
.footer-branding__logo {
  width: 48px;
  height: auto;
}
.footer-branding__organization {
  font-size: 12px;
}
.footer-branding__organization a:hover {
  text-decoration: none;
}
.footer-branding__sns {
  display: flex;
  justify-content: center;
  margin: 24px 0 0;
  padding: 0;
  gap: 40px;
  list-style: none;
}
.footer-branding__sns a {
  display: block;
}

.copyright {
  margin-top: 30px;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
}

.fp-worries {
  position: relative;
}

.fp-worries__title {
  --circle-size-1: 13px;
  --circle-size-2: 9px;
  display: inline-block;
  z-index: 1;
  position: relative;
  top: -12px;
  padding: 0.75em;
  border-radius: 2em;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}
.fp-worries__title::before {
  position: absolute;
  right: calc((var(--circle-size-1) + 2px) * -1);
  bottom: 6px;
  aspect-ratio: 1;
  width: var(--circle-size-1);
  border-radius: 50%;
  background: var(--color-secondary);
  content: "";
}
.fp-worries__title::after {
  position: absolute;
  right: calc((var(--circle-size-2) + var(--circle-size-1) + 4px) * -1);
  bottom: 0px;
  aspect-ratio: 1;
  width: var(--circle-size-2);
  border-radius: 50%;
  background: var(--color-secondary);
  content: "";
}

.fp-worries__bg {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fp-worries__bg > svg {
  width: 100%;
  height: 100%;
}

.fp-worries__content {
  position: relative;
  padding-block: 0 40px;
}

.fp-worries__list-wrapper {
  position: relative;
  width: min(100%, 870px);
}
.fp-worries__list-wrapper.is-scrollable::before {
  display: block;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(235, 231, 234));
  content: "";
}
.fp-worries__list-wrapper.is-scrollable.is-at-bottom::before {
  display: none;
}

.fp-worries__list {
  display: flex;
  position: relative;
  flex-direction: column;
  height: 420px;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  list-style: none;
}
.fp-worries__list::-webkit-scrollbar {
  width: 11px;
}
.fp-worries__list::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #DAD4E4;
}
.fp-worries__list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #AD9EAE;
}
.fp-worries__list::-webkit-scrollbar-thumb:hover {
  background: #8c7b99;
}

.fp-worries__item {
  position: relative;
  padding: 4px 0;
  padding-left: 28px;
  border-bottom: 1px solid var(--color-secondary);
  color: var(--color-text);
}
.fp-worries__item::before {
  position: absolute;
  top: 1em;
  left: 0;
  width: 1em;
  height: 1em;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2229%22%20height%3D%2224%22%20viewBox%3D%220%200%2029%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5.10444%205.21045C-0.198154%208.76237%20-0.992501%2015.7089%203.67377%2020.1634C7.21153%2023.5419%2013.021%2024.2899%2017.4837%2021.9525C20.8978%2020.1605%2022.8065%2017.1023%2023.0381%2013.9207C23.1315%2012.659%2023.9262%2011.4986%2025.2047%2010.961C25.7719%2010.7238%2026.3103%2010.4012%2026.7952%209.99558C28.8402%208.28307%2029.2963%205.44609%2027.8736%203.28706C26.0004%200.449519%2021.8544%20-0.242188%2018.985%201.67987C18.6715%201.88988%2018.3911%202.12049%2018.1388%202.36561C17.1647%203.3179%2015.7042%203.73947%2014.2956%203.46011C11.2085%202.83945%207.84945%203.38123%205.11636%205.21198L5.10444%205.21045Z%22%20fill%3D%22%238369A4%22%20%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  color: var(--color-secondary);
  font-size: 20px;
  line-height: 1;
}

.fp-worries__item-title {
  font-weight: 700;
  font-size: 12px;
}

.fp-worries__item-description {
  margin-top: 4px;
  font-size: 10px;
}

.fp-our-teams {
  --col: 1;
  display: grid;
  position: relative;
  grid-template-columns: repeat(var(--col), minmax(0, 1fr));
  padding-block: 40px 0;
  gap: 24px 12px;
}
.fp-our-teams__member {
  display: flex;
  flex-wrap: nowrap;
  padding: 24px;
  gap: 16px;
  border-bottom: 1px solid #727171;
  border-top-left-radius: 40px;
  background: #fff;
}
.fp-our-teams__member-photo {
  flex: 0 0 115px;
  height: 177px;
  overflow: hidden;
  border-top-left-radius: 20px;
}
.fp-our-teams__member-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fp-our-teams__member-info {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: auto 1fr;
  grid-template-areas: "name sns" "bio bio";
  row-gap: 8px;
  flex: 1 1 auto;
}
.fp-our-teams__member-name {
  grid-area: name;
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 17px;
}
.fp-our-teams__member-sns {
  display: flex;
  grid-area: sns;
  flex-wrap: wrap;
  justify-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}
.fp-our-teams__member-bio {
  grid-area: bio;
  color: #727171;
  font-size: 10px;
  line-height: 1.2;
}

.fp-news__list {
  display: flex;
  flex-direction: column;
  margin: 12px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}
.fp-news__item {
  border-bottom: 1px solid var(--color-secondary);
  background: #fff;
}
.fp-news__body {
  display: flex;
  flex-direction: column;
  padding: 0 10px 0.5em;
  gap: 0.5em;
  font-size: 16px;
}
.fp-news__title {
  font-weight: bold;
  font-size: 1em;
}
.fp-news__excerpt {
  font-size: 0.75em;
  line-height: 1.2;
}
.fp-news__date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 105px;
  height: 30px;
  padding: 4px 8px;
  background: #F9F9F4;
  color: var(--color-secondary);
  font-size: 12px;
}

.fp-mv {
  width: 100%;
  height: auto;
}
.fp-mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fp-section {
  --section-spacing-y: 30px;
  position: relative;
  padding: 0 25px;
}
.fp-section__inner {
  --gap: 16px;
  --title-area-width: 168px;
  position: relative;
  width: min(100%, 1260px);
  margin: 0 auto;
}
.fp-section__title-area {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
}
.fp-section__title-before-icon > svg {
  aspect-ratio: 37/27;
  width: 50px;
  height: auto;
}
.fp-section__title {
  color: #595757;
  font-size: 17px;
  line-height: 1.4;
}
.fp-section__title > * {
  display: block;
}
.fp-section__title > .en {
  font-family: var(--font-family-serif);
}
.fp-section__title > .ja {
  font-weight: 400;
  font-size: 10px;
}
.fp-section__content {
  flex: 1;
  padding: 0 0 var(--section-spacing-y);
  color: var(--color-text);
}
.fp-section__content > h3 {
  margin-top: 0.5em;
  color: var(--color-text);
  font-weight: 700;
  font-size: 13px;
}
.fp-section__content > p:where(:not(:first-child)) {
  margin-top: 1em;
}

/**
 * About Us
 */
#fp-about-us-section {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
#fp-about-us-section .fp-section__inner {
  padding: var(--section-spacing-y) 0 calc(var(--section-spacing-y) + 12px);
}
#fp-about-us-section .fp-section__content {
  padding-block: 0;
  font-size: 13px;
}

/**
 * Our Team
 */
#fp-our-team-section.fp-section {
  margin-top: 0;
}
#fp-our-team-section .fp-section__content > h3 {
  font-size: 12px;
}

/**
 * News
 */

.cta {
  padding-block: 26px;
  background-image: url(../images/cta-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.cta__inner {
  text-align: center;
}
.cta__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 40px;
  border: 1px solid #fff;
  border-radius: 2em;
  background: transparent;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 20px;
  font-family: var(--font-family-serif);
  text-decoration: none;
}
.cta__contact-btn:hover {
  border-color: var(--color-secondary);
  background: var(--color-secondary);
  color: #fff;
}
@media (min-width: 576px) and (max-width: 768px){
  .fp-our-teams__member-bio {
    font-size: 12px;
    line-height: 1.3;
  }
}
@media (min-width: 769px){
  .fp-worries__item {
    padding-block: 10px;
  }
  .fp-worries__item-title {
    font-size: 20px;
  }
  .fp-worries__item-description {
    font-size: 12px;
  }
  .fp-our-teams {
    --col: 2;
  }
  .fp-our-teams__member {
    align-items: flex-start;
  }
  .fp-our-teams__member-photo {
    flex: 0 0 135px;
    height: auto;
  }
  #fp-our-team-section .fp-section__content > h3 {
    font-size: 14px;
  }
  .cta {
    padding-block: 70px;
  }
  .cta__contact-btn {
    font-size: 36px;
  }
}
@media (min-width: 993px){
  .l-header {
    display: block;
  }
  .l-header__branding {
    width: 250px;
  }
  .l-sp-header {
    display: none;
  }
  .fp-worries__content {
    margin-left: var(--title-area-width);
  }
  .fp-worries__list-wrapper {
    margin-left: 40px;
  }
  .fp-worries__list {
    height: 360px;
  }
  .fp-news__item {
    display: flex;
    gap: 35px;
  }
  .fp-news__body {
    padding-block: 15px;
  }
  .fp-mv {
    height: min(660px, 60dvh);
  }
  .fp-section {
    padding-block: 0;
  }
  .fp-section__inner::before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: calc(var(--title-area-width) + var(--gap) / 2);
    width: 1px;
    height: 100%;
    background: #727171;
    content: "";
  }
  .fp-section__inner {
    display: flex;
    align-items: flex-start;
    gap: var(--gap);
  }
  .fp-section__title-area {
    flex: 0 0 var(--title-area-width);
    padding: 0.5em;
    border-bottom-right-radius: 24px;
    background: var(--color-primary);
  }
  .fp-section__title-before-icon {
    display: none;
  }
  .fp-section__title {
    font-size: 20px;
  }
  .fp-section__title > .ja {
    color: #fff;
    font-size: 12px;
  }
  .fp-section__content {
    padding-left: 40px;
    padding-block: var(--section-spacing-y);
  }
  .fp-section__content > h3 {
    margin-top: 0;
    font-size: 20px;
  }
  #fp-about-us-section .fp-section__title-area {
    padding-left: 3em;
    border-top-left-radius: 80px;
  }
  #fp-our-team-section.fp-section {
    border-top: 1px solid #3E3A3A;
  }
  #fp-news-section.fp-section {
    border-top: 1px solid #3E3A3A;
  }
  .u-only-sp {
    display: none;
  }
}
@media (min-width: 1201px){
  .l-header__branding {
    width: 280px;
  }
  .l-header__nav {
    top: 60px;
    right: 5vw;
  }
  .fp-our-teams__member-bio {
    font-size: 12px;
    line-height: 1.4;
  }
}
@media (min-width: 1441px){
  .l-header__branding {
    top: 40px;
    width: 100%;
  }
  .l-header__nav {
    right: min(7vw, 500px);
  }
  .header-menu {
    font-size: 24px;
  }
}
@media (min-width: 1601px){
  .l-header__nav {
    top: min(100px, 5vw);
    right: min(15vw, 500px);
  }
}
@media (max-width: 991px){
  .u-only-pc {
    display: none;
  }
}
