@charset "UTF-8";
/*
Theme Name: FLOURISH theme
Author: Ryoko N
Description: FLOURISH wordpress implement theme
Version: 1.0
Text Domain: FLOURISH's theme
*/
:root {
  --color-white: #fff;
  --color-gray100: #fafafa;
  --color-gray400: #bdbdbd;
  --color-yellow: #f2f626;
  --font-color: #333;
  --font-color-gray: #757575;
  --base-color: #f8f6f7;
  --link-color: #1073e7;
  --link-color-hover: #83bafa;
  --textLine-color: #fde8e7;
}

/* CSSリセット例 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
Theme Name: FLOURISH theme
Author: Ryoko N
Description: FLOURISH wordpress implement theme
Version: 1.0
Text Domain: FLOURISH's theme
*/
body {
  line-height: 1.7;
  color: var(--font-color);
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 4.2667rem;
  font-weight: 800;
  letter-spacing: 0.25rem;
}

h2 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

h3 {
  font-size: 2.1333rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

h4 {
  font-size: 1.8286rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

p {
  font-size: 1.6rem;
  line-height: 3rem;
  letter-spacing: 0.13rem;
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: 0.2s ease;
}
a:hover {
  color: var(--link-color-hover);
  text-decoration: underline;
}

ol li,
ul li {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.0422rem;
}

blockquote {
  font-size: 1.4222rem;
  color: var(--font-color-gray);
  line-height: 2.4rem;
  letter-spacing: 0.1422rem;
}

table thead th {
  font-size: 1.4222rem;
  line-height: 2.1rem;
}
table tbody th {
  font-size: 1.4222rem;
}
table td {
  font-size: 1.4222rem;
}

/*
Theme Name: FLOURISH theme
Author: Ryoko N
Description: FLOURISH wordpress implement theme
Version: 1.0
Text Domain: FLOURISH's theme
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media (max-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 1800px) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}
@media (max-width: 900px) {
  body {
    padding: 0;
  }
}

p {
  margin-bottom: 2rem;
}

.grecaptcha-badge {
  visibility: hidden;
}

iframe {
  width: 100%;
  margin-top: 2rem;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* iOS Safari */
}

a,
button {
  -webkit-tap-highlight-color: transparent; /* より個別に対応 */
  outline: none;
}

.header {
  position: relative;
  background: var(--base-color);
  padding: 1.5rem 0;
  width: 100%;
  z-index: 9999;
  transition: top 0.3s ease, position 0.3s ease;
}
.header.is-fixed {
  position: fixed;
  left: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-bottom: solid;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-inner__logo svg {
  width: 16rem;
  height: auto;
}
.header-inner__nav {
  display: flex; /* PC表示 */
  /* スマホでは非表示にしておく */
}
@media (max-width: 600px) {
  .header-inner__nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; /* ヘッダーの高さに合わせて調整 */
    left: 0;
    width: 100%;
    background-color: var(--base-color, #fff);
    padding: 1rem;
    z-index: 999;
    height: 100vh;
  }
  .header-inner__nav.is-open {
    padding-top: 3rem;
    display: flex !important;
  }
}
.header-inner__nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}
@media (max-width: 600px) {
  .header-inner__nav ul {
    padding: 0rem 3rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.header-inner__nav ul li {
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0;
}
@media (max-width: 600px) {
  .header-inner__nav ul li {
    font-size: 1.6rem;
    font-weight: 700;
    width: 100%;
    border-bottom: 0.1rem solid var(--color-gray400);
  }
}
.header-inner__nav ul li a {
  text-decoration: none;
  color: var(--font-color);
  position: relative;
}
@media (max-width: 600px) {
  .header-inner__nav ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--font-color);
    text-decoration: none;
    position: relative;
  }
}
.header-inner__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 0.2rem;
  background-color: currentColor;
  transition: width 0.3s ease;
}
@media (max-width: 600px) {
  .header-inner__nav ul li a::after {
    display: none;
  }
}
.header-inner__nav ul li a:hover::after {
  width: 100%;
}
.header-inner__nav ul li.current-menu-item a::after,
.header-inner__nav ul li.current-menu-parent a::after,
.header-inner__nav ul li.current_page_ancestor a::after {
  width: 100%;
}

.language-switcher {
  display: flex;
  gap: 1rem;
}
.language-switcher li {
  list-style: none;
}
.language-switcher li a {
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  background-color: transparent;
  color: var(--font-color, #000);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
.language-switcher li a:hover {
  background-color: var(--font-color, #000);
  color: #fff;
}
.language-switcher li.current-lang a {
  background-color: #000;
  color: #fff;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  position: relative;
  z-index: 1001;
}
.hamburger span {
  height: 3px;
  background-color: var(--font-color, #000);
  border-radius: 2px;
  transition: all 0.3s ease;
  border-left: solid;
}
@media (max-width: 600px) {
  .hamburger {
    display: flex;
  }
}
.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.site-footer {
  background-color: var(--color-gray100);
  text-align: center;
  border-top: 0.1rem solid var(--color-gray400);
}
.site-footer .footer-inner .footer-nav {
  margin-bottom: 1rem;
}
.site-footer .footer-inner .footer-nav .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.site-footer .footer-inner .footer-nav .footer-menu li a {
  text-decoration: none;
  color: #000;
  font-size: 1.28rem;
}
.site-footer .footer-inner .footer-nav .footer-menu li a:hover {
  text-decoration: underline;
}
.site-footer .footer-inner p {
  margin: 0;
}
.site-footer .footer-inner .copyright {
  font-size: 0.75rem;
  color: #000;
}

.header-container {
  width: 110rem;
  margin: 0 auto;
  padding: 0rem 3rem;
}
@media (max-width: 900px) {
  .header-container {
    width: 100%;
  }
}

.container {
  width: 110rem;
  margin: 0 auto;
  padding: 8rem 3rem;
}
@media (max-width: 900px) {
  .container {
    padding: 5rem 3rem;
    width: 100%;
  }
}

.footer-inner {
  width: 110rem;
  padding: 3rem 3rem;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .footer-inner {
    width: 100%;
    padding: 2rem;
  }
}

.container-twoColumn {
  width: 110rem;
  margin: 0 auto;
  padding: 5rem 3rem;
  display: flex;
  padding: 2rem;
  margin-top: 5rem;
}
@media (max-width: 900px) {
  .container-twoColumn {
    padding: 5rem 3rem;
    width: 100%;
    flex-direction: column;
    gap: 3rem;
  }
}
.container-twoColumn .toc {
  flex: 3;
  width: 30%;
  padding: 2rem;
  position: sticky;
  top: 13rem;
  align-self: flex-start;
  background: var(--base-color);
  z-index: 10;
}
@media (max-width: 900px) {
  .container-twoColumn .toc {
    width: 100%;
    position: relative;
    top: 0rem;
    margin-top: 0rem;
  }
}
.container-twoColumn .blog-content {
  flex: 7;
  padding-left: 6rem;
}
@media (max-width: 900px) {
  .container-twoColumn .blog-content {
    width: 100%;
    padding: 0;
  }
}

.container-oneColumn .blog-content {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .container-oneColumn .blog-content {
    width: 100%;
  }
}

/*
Theme Name: FLOURISH theme
Author: Ryoko N
Description: FLOURISH wordpress implement theme
Version: 1.0
Text Domain: FLOURISH's theme
*/
/*buttun
  $bg, background
  $text-color,
  $border-color,
  $hover-bg,
  $hover-text-color
*/
.view-all,
.btn-contact,
.load-more {
  display: inline-block;
  background: var(--color-yellow);
  padding: 1rem 4rem;
  border: solid 0.1rem var(--font-color);
  text-decoration: none;
  color: var(--font-color);
  font-size: 1.6rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.view-all:hover,
.btn-contact:hover,
.load-more:hover {
  text-decoration: none;
  background: var(--font-color);
  color: var(--color-white);
}

.btn-cta {
  display: inline-block;
  background: var(--base-color);
  padding: 1rem 4rem;
  border: solid 0.1rem var(--font-color);
  text-decoration: none;
  color: var(--font-color);
  font-size: 1.6rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.btn-cta:hover {
  text-decoration: none;
  background: var(--font-color);
  color: var(--base-color);
}

.see-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: bold;
  font-size: 1.0666rem;
  text-decoration: none;
  color: var(--font-color);
  transition: color 0.3s;
}
.see-detail i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  background-color: var(--font-color);
  color: var(--color-yellow);
  font-size: 0.9rem;
  transition: transform 0.3s ease, color 0.3s;
}
.see-detail:hover {
  color: var(--font-color);
  text-decoration: none;
}
.see-detail:hover i {
  transform: translateX(4px);
}

.all-button {
  display: inline-flex;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  gap: 8px;
  /* hover時にSVGを暗くする */
}
.all-button:hover {
  color: #000;
}
.all-button::after {
  content: "";
  display: inline-block; /* 必須 */
  width: 2rem;
  height: 2rem;
  background: url("../img/all-view.svg") no-repeat center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.all-button:hover::after {
  filter: brightness(0.6);
}

.btn_outer {
  position: relative;
  display: block;
  margin-top: 10rem;
  text-align: center;
}

/*
Theme Name: FLOURISH theme
Author: Ryoko N
Description: FLOURISH wordpress implement theme
Version: 1.0
Text Domain: FLOURISH's theme
*/
.post-card-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.post-card {
  background-color: transparent;
  width: calc(33.333% - 1.33rem);
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
@media (max-width: 600px) {
  .post-card {
    width: 100%;
    margin-bottom: 3.5rem;
  }
}
.post-card__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-card__thumb {
  background-color: #fff;
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: none;
  border: 1px solid #000;
  display: inline-block;
  margin-bottom: 1rem;
  aspect-ratio: 14/9;
  overflow: hidden;
}
.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-card__link:hover .post-card__thumb {
  box-shadow: 10px 10px 0 #000;
  transform: translateY(-2px);
}
.post-card__link:active .post-card__thumb {
  box-shadow: 4px 4px 0 #000;
  transform: translateY(1px);
}
.post-card__body {
  padding: 0 0.5rem;
}
.post-card__title {
  font-size: 1.4222rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.post-card__date {
  font-size: 1.28rem;
  color: var(--font-color-gray);
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-list__item {
  border-bottom: 1px solid #eee;
  transition: background 0.3s;
}
.news-list__item:hover {
  background-color: #f9f9f9;
}
.news-list__link {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  text-decoration: none;
  color: inherit;
  gap: 2rem;
}
.news-list__link:hover {
  text-decoration: none;
}
.news-list__date {
  font-size: 0.9rem;
  color: #999;
  flex: 0 0 100px;
}
@media (max-width: 600px) {
  .news-list__date {
    flex: 0 0 50px;
  }
}
.news-list__label {
  background-color: #ff0;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.3rem 1rem;
  flex: 0 0 auto;
  display: inline-block;
  text-align: center;
  border: 0.1rem solid;
  color: #000;
  width: 10%;
}
@media (max-width: 600px) {
  .news-list__label {
    width: 20%;
  }
}
.news-list__title {
  font-size: 1.28rem;
  flex: 1;
  line-height: 1.5;
}
.news-list__title:hover {
  text-decoration: none;
  color: var(--font-color-gray);
}
/*
Theme Name: FLOURISH theme
Author: Ryoko N
Description: FLOURISH wordpress implement theme
Version: 1.0
Text Domain: FLOURISH's theme
*/
/* 記事の文字や図表 */
.blog-content h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.blog-content h3 {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.blog-content h4 {
  margin-top: 2rem;
  margin-top: 1rem;
}
.blog-content .highlighted {
  background-color: #fff8dc;
}
.blog-content p {
  line-height: 1.9;
}
.blog-content ul {
  margin: 3rem 0;
  padding: 5rem;
  list-style: none;
  background: var(--color-gray100);
}
.blog-content ul li {
  position: relative;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
  line-height: 1.6;
}
.blog-content ul li::before {
  content: "●";
  color: var(--color-yellow);
  font-size: 1rem;
  display: inline-block;
  width: 1.5rem;
}
.blog-content ul li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.blog-content ul li ul {
  margin: 0;
  padding: 0;
  background: none;
}
.blog-content ul li ul li {
  margin-bottom: 0.5rem;
  margin-left: 2rem;
}
.blog-content ul li ul li::before {
  content: "–";
  color: var(--color-gray300);
}
.blog-content ol {
  counter-reset: custom-counter;
  list-style: none;
  margin-left: 0;
  margin: 3rem 0;
  padding: 2.4rem;
  gap: 1.6rem;
  background: var(--color-gray100);
}
.blog-content ol li {
  counter-increment: custom-counter;
  position: relative;
  padding-left: 5rem;
  line-height: 2.4rem;
  letter-spacing: 0.1422rem;
}
.blog-content ol li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  /* top: 0.1rem; */
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-yellow);
  color: var(--font-color);
  /* font-weight: bold; */
  font-size: 1.2rem;
  display: flex;
  /* align-items: center; */
  justify-content: center;
}
.blog-content ol li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.blog-content ol li ol {
  counter-reset: custom-sub-counter;
  margin: 1.5rem 0 0 0;
  padding: 0;
  background: none;
}
.blog-content ol li ol li {
  counter-increment: custom-sub-counter;
  padding-left: 2rem;
  position: relative;
}
.blog-content ol li ol li::before {
  content: counter(custom-sub-counter) ".";
  position: absolute;
  left: 0;
  background: none;
  color: var(--font-color);
  font-size: 1rem;
  width: auto;
  height: auto;
  display: inline-block;
  line-height: 1;
}
.blog-content ol li ol li:not(:last-child) {
  margin-bottom: 0.8rem;
}
.blog-content strong {
  font-weight: 700;
  box-shadow: inset 0 -1rem 0 0 var(--textLine-color);
}
.blog-content figure {
  margin: 2rem 0;
}
.blog-content figure img {
  border-radius: 0.4rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.blog-content figure figcaption {
  margin-top: 2rem;
}
.blog-content blockquote {
  position: relative;
  background: var(--color-gray100);
  padding: 3.5rem 2rem 2rem 3.5rem;
  font-weight: 400;
  margin: 3rem 0;
}
.blog-content blockquote::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  width: 2.8992rem;
  height: 2.112rem;
  background: url("../img/quote-icon.svg") no-repeat center center;
  background-size: contain;
  flex-shrink: 0;
}

.toc .toc-icon {
  width: 1.5em;
  height: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
  margin-left: -10px;
}
.toc .toc-icon li {
  font-size: 1.4222rem;
}
.toc h2 {
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}
.toc ul {
  list-style: none;
  padding: 0;
  border-left: solid 1px;
  padding: 2rem;
}
.toc ul li {
  margin-bottom: 1rem;
}
.toc ul li a {
  color: var(--font-color);
}
.toc ul li a.active {
  color: var(--link-color);
  font-weight: bold;
}

figure.wp-block-image {
  text-align: center !important;
  font-style: italic !important;
}

/*
Theme Name: FLOURISH theme
Author: Ryoko N
Description: FLOURISH wordpress implement theme
Version: 1.0
Text Domain: FLOURISH's theme
*/
.topHero {
  background-color: var(--base-color);
}
.topHero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .topHero__inner {
    flex-direction: column;
  }
}
.topHero__inner__content {
  width: 60%;
}
@media (max-width: 600px) {
  .topHero__inner__content {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.topHero__inner__content h1 {
  font-size: 4.2667rem;
  margin-bottom: 3rem;
}
.topHero__inner__content p {
  margin-bottom: 2rem;
}
.topHero__inner__image {
  width: 40%;
}
@media (max-width: 600px) {
  .topHero__inner__image {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.topHero__inner__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 600px) {
  .topHero__inner__image img {
    width: 80%;
    max-width: 600px;
  }
}

.breadcrumb {
  background-color: var(--base-color);
  padding: 1rem 0;
}

.contentHero {
  background-color: var(--base-color);
}
.contentHero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 600px) {
  .contentHero__inner {
    flex-direction: column;
  }
}
.contentHero__inner__content {
  width: 60%;
}
@media (max-width: 600px) {
  .contentHero__inner__content {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.contentHero__inner__content h1 {
  font-size: 3.2rem;
  margin-bottom: 3rem;
  line-height: 1.4;
}
.contentHero__inner__content p {
  margin-bottom: 2rem;
}
.contentHero__inner__image {
  width: 40%;
}
@media (max-width: 600px) {
  .contentHero__inner__image {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.contentHero__inner__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 1rem 1rem rgb(0, 0, 0);
}
@media (max-width: 600px) {
  .contentHero__inner__image img {
    width: 80%;
    max-width: 600px;
  }
}

.newsHero {
  background-color: var(--base-color);
}
.newsHero h1 {
  font-size: 3.2rem;
}

.cta {
  background-color: var(--base-color);
}
.cta p {
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/*
Theme Name: FLOURISH theme
Author: Ryoko N
Description: FLOURISH wordpress implement theme
Version: 1.0
Text Domain: FLOURISH's theme
*/
form.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
form.wpcf7-form p {
  margin: 0;
}
form.wpcf7-form p label {
  display: block;
  font-weight: 600;
  font-size: 1.4222rem;
  margin-bottom: 0.5rem;
  color: var(--font-color);
}
form.wpcf7-form p label span {
  color: #ff9898;
}
form.wpcf7-form p input[type=text],
form.wpcf7-form p input[type=email],
form.wpcf7-form p input[type=tel],
form.wpcf7-form p textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1.8286rem;
  border: 1px solid var(--color-gray400);
  border-radius: 0.5rem;
  transition: border-color 0.3s;
}
form.wpcf7-form p input[type=text]:focus,
form.wpcf7-form p input[type=email]:focus,
form.wpcf7-form p input[type=tel]:focus,
form.wpcf7-form p textarea:focus {
  border-color: var(--link-color);
  outline: none;
}
form.wpcf7-form p textarea {
  min-height: 150px;
  resize: vertical;
}
form.wpcf7-form input[type=submit] {
  align-self: flex-start;
  background-color: var(--link-color);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
form.wpcf7-form input[type=submit]:hover {
  background-color: var(--link-color);
}
form.wpcf7-form .wpcf7-response-output {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #d00;
}

/*
Theme Name: FLOURISH theme
Author: Ryoko N
Description: FLOURISH wordpress implement theme
Version: 1.0
Text Domain: FLOURISH's theme
*/
.title-h2 {
  font-size: 4.2667rem;
  margin-bottom: 5rem;
}

.title-h3 {
  font-size: 3.2rem;
  font-weight: 300;
}

.solution {
  margin: 0 auto;
  padding: 3rem 0;
  border-top: 1px solid hsl(0, 0%, 87%);
}
.solution:last-of-type {
  border-bottom: 1px solid hsl(0, 0%, 87%);
}
.solution .solution__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.solution .solution__header .toggle-btn {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}
.solution .solution__header .toggle-btn.open {
  transform: rotate(45deg);
}
.solution .solution__inner {
  display: flex;
  flex-wrap: wrap;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.3s ease;
}
.solution .solution__inner__left {
  width: 60%;
  padding-right: 3rem;
}
.solution .solution__inner__right {
  width: 40%;
  padding-left: 3rem;
}
.solution .solution__inner__bottom {
  width: 100%;
  margin-top: 2rem;
}
.solution .solution__inner.open {
  margin-top: 2rem;
  max-height: 2000px;
  opacity: 1;
}

.venn-diagram {
  position: relative;
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
}
.venn-diagram .venn-svg {
  width: 100%;
  height: auto;
  display: block;
}
.venn-diagram .box {
  border: 0.1rem solid var(--font-color);
  position: absolute;
  background: var(--color-yellow);
  padding: 1rem;
  font-size: 0.9rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 30rem;
}
.venn-diagram .box .box-title {
  display: none;
}
.venn-diagram .box ul li {
  margin-left: 2rem;
}
.venn-diagram .box.box-marketing {
  top: -10%;
  right: 5%;
}
.venn-diagram .box.box-creative {
  bottom: -10%;
  left: -5%;
}
.venn-diagram .box.box-technology {
  bottom: -15%;
  right: -3%;
}
@media (max-width: 600px) {
  .venn-diagram .box {
    position: static;
    margin: 1.5rem auto;
    max-width: 100%;
    display: block;
  }
  .venn-diagram .box .box-title {
    display: block;
  }
  .venn-diagram .venn-svg {
    display: none;
  }
}

/*
Theme Name: FLOURISH theme
Author: Ryoko N
Description: FLOURISH wordpress implement theme
Version: 1.0
Text Domain: FLOURISH's theme
*/
.talks-page {
  background-color: var(--base-color);
}
.talks-page .pickup h1 {
  margin-bottom: 2rem;
}
.talks-page a {
  text-decoration: none;
}
.talks-page a:hover {
  text-decoration: none;
}
.talks-page a .pickup__inner {
  display: flex;
  gap: 4.5rem;
  flex-wrap: wrap;
  color: var(--font-color);
}
.talks-page a .pickup__inner__left {
  flex: 6;
}
@media (max-width: 600px) {
  .talks-page a .pickup__inner__left {
    flex: 1 1 100%;
  }
}
.talks-page a .pickup__inner__left img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 1rem 1rem rgb(0, 0, 0);
}
.talks-page a .pickup__inner__left:hover {
  opacity: 0.9;
}
.talks-page a .pickup__inner__right {
  flex: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 600px) {
  .talks-page a .pickup__inner__right {
    flex: 1 1 100%;
  }
}
.talks-page a .pickup__inner__right .pickup-item-tex {
  font-size: 2.1333rem;
  font-weight: 800;
  border: 0.1rem solid var(--font-color);
}
.talks-page a .pickup__inner__right .pickup-item__date {
  font-size: 1.4222rem;
  margin-bottom: 0.5rem;
}
.talks-page a .pickup__inner__right__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.talks-page a .pickup__inner__right__excerpt {
  font-size: 1.6rem;
  color: var(--font-color-gray);
}

/*
Theme Name: FLOURISH theme
Author: Ryoko N
Description: FLOURISH wordpress implement theme
Version: 1.0
Text Domain: FLOURISH's theme
*/
.capabilities .capabilities__group {
  margin-bottom: 3rem;
}
.capabilities .capabilities__group h2.title-h2 {
  font-size: 3.2rem;
}
.capabilities .capabilities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.capabilities .capabilities__grid .card {
  background: var(--color-white);
  border: 1px solid var(--color-gray400);
  padding: 1rem;
  transition: box-shadow 0.2s;
}
.capabilities .capabilities__grid .card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.capabilities .capabilities__grid .card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.capabilities .capabilities__grid .card p {
  font-size: 1.28rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.kpi-section {
  padding: 8rem 0;
  background-color: var(--base-color);
}
.kpi-section .contentHero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
}
.kpi-section .contentHero__inner__content {
  flex: 1;
}
.kpi-section .contentHero__inner__content h1 {
  font-size: 3rem;
  margin-bottom: 1.2rem;
}
.kpi-section .contentHero__inner__image {
  flex: 1;
}
.kpi-section .contentHero__inner__image img {
  width: 100%;
  height: auto;
}
.kpi-section .section-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.problems {
  padding: 6rem 0;
}
.problems h2 {
  margin-bottom: 3rem;
}
.problems .problems-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 600px) {
  .problems .problems-list {
    flex-direction: column;
  }
}
.problems .problem-item {
  flex: 1 1 calc(25% - 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--font-color-gray);
  padding: 2rem;
  text-align: left;
  min-height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 600px) {
  .problems .problem-item {
    width: 100%;
    flex: none;
  }
}
.problems .problem-item .problem-content h3 {
  margin-bottom: 1rem;
}
.problems .problem-item .problem-image {
  margin-top: 2rem;
  text-align: right;
}
.problems .problem-item .problem-image img {
  max-width: 60px;
  height: auto;
  display: inline-block;
}

.services {
  padding: 6rem 0;
}
.services h2 {
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}
.services .services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
}
.services .service-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--font-color-gray);
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  height: 100%;
}
.services .service-item h3 {
  background-color: #fff00c;
  color: #000;
  padding: 0.5rem 1rem;
  font-size: 16px;
  font-weight: bold;
  min-height: 8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
  left: -2.5rem;
  width: calc(100% + 2.5rem);
}
@media (max-width: 600px) {
  .services .service-item h3 {
    left: 0;
    width: 100%;
  }
}
.services .service-item p {
  flex-grow: 1;
}

.features {
  padding: 6rem 0;
  background: var(--color-gray100);
}
.features h2 {
  margin-bottom: 3rem;
}
.features .features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 600px) {
  .features .features-list {
    flex-direction: column;
  }
}
.features .feature-item {
  flex: 1 1 calc(33.333% - 2rem);
  background: #fff;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 600px) {
  .features .feature-item {
    width: 100%;
    flex: none;
  }
}
.features .feature-item img {
  max-width: 60px;
  margin-bottom: 1rem;
}
.features .feature-item h3 {
  margin-bottom: 1rem;
  min-height: 8rem;
  align-items: center;
  display: flex;
}
.features .feature-item p {
  text-align: left;
}

.step {
  background-color: #fff;
  padding: 6rem 0;
}
.step h2 {
  margin-bottom: 4rem;
}
.step .step-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-left: 4rem;
}
@media (max-width: 600px) {
  .step .step-list {
    padding-left: 0;
  }
}
.step .step-item {
  position: relative;
  padding-left: 3rem;
}
.step .step-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.88rem;
  width: 2px;
  height: 160%;
  background-color: #ccc;
  z-index: 0;
}
.step .step-item:last-child::before {
  height: 2.75rem;
}
.step .step-item .step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-yellow);
  border-radius: 50%;
  /* font-weight: bold; */
  font-size: 1.6rem;
  line-height: 3.7rem;
  text-align: center;
  z-index: 1;
}
.step .step-item .step-title {
  margin-bottom: 1rem;
  margin-left: 2rem;
}
.step .step-item .step-description {
  margin-left: 2rem;
  line-height: 1.6;
}

.center {
  text-align: center;
}

.margin-ajast {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .margin-ajast {
    width: 100%;
    margin: 0 auto;
  }
}

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