@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&amp;family=Noto+Sans:ital,wght@0,500;1,500&amp;display=swap');


/* CSS reset */

/*
  1. Use a more-intuitive box-sizing model.
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin and tap color
*/
* {
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
}

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  letter-spacing: 0px;
}

/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

/* CSS reset end */


* {
  box-sizing: border-box;
}

:root {
  --fontColor: #333333;
  --circleS: 300px;
  --circleM: 400px;
  --circleL: 500px;
  --circleXL: 600px;
  --circleCover: 0;
  --circleCoverDouble: 0;
  --darkGreen: #007758;
  --midGreen: #2da050;
  --lightGreen: #efffe6;
  --neonGreen: #9BE137;
  --backgroundColor: #faf6f2;
  --footerBackgroundColor: #f4eee6;
  --redColor: #FF4B41;
  /* --sceneHeight is set by javascript in pixels */
  --sceneHeight: 100%;
  --breakWidth: 1680px;
  --direction: ltr;
  --fontMedium: "KaioMedium", "Noto Sans JP", sans-serif;
  --fontRegular: "KaioRegular", "Noto Sans JP", sans-serif;
  --fontLight: "KaioLight", "Noto Sans JP", sans-serif;
  --fontWeightMedium: 500;

}

*,
[data-language="ja"] .english-content * {
  --fs14: 14px;
  --fs15: 15px;
  --fs16: 16px;
  --fs17: 17px;
  --fs18: 18px;
  --fs20: 20px;
  --fs22: 22px;
  --fs24: 24px;
  --fs25: 25px;
  --fs28: 28px;
  --fs30: 30px;
  --fs32: 32px;
  --fs33: 33px;
  --fs38: 38px;
  --fs44: 44px;
  --fs50: 50px;
  --fs55: 55px;
  --fs60: 60px;
  --fs120: 120px;
  --fs0-8: 0.8em;
  --fs1-0: 1em;
  --fs1-125: 1.125em;
  --fs1-25: 1.25em;
  --fs1-4: 1.4em;
  --fs1-5: 1.5em;
  --fs1-6: 1.6em;
  --fs1-75: 1.75em;
  --fs1-875: 1.875em;
  --fs2-0: 2em;
  --fs2-2: 2.2em;
  --fs2-3: 2.3em;
  --fs2-44: 2.44em;
  --fs2-7: 2.7em;
  --fs2-75: 2.75em;
}

[data-language="ja"] * {
  --fontScale: 0.9;
  --fs14: calc(14px * var(--fontScale));
  --fs15: calc(15px * var(--fontScale));
  --fs16: calc(16px * var(--fontScale));
  --fs17: calc(17px * var(--fontScale));
  --fs18: calc(18px * var(--fontScale));
  --fs20: calc(20px * var(--fontScale));
  --fs22: calc(22px * var(--fontScale));
  --fs24: calc(24px * var(--fontScale));
  --fs25: calc(25px * var(--fontScale));
  --fs28: calc(28px * var(--fontScale));
  --fs30: calc(30px * var(--fontScale));
  --fs32: calc(32px * var(--fontScale));
  --fs33: calc(33px * var(--fontScale));
  --fs38: calc(38px * var(--fontScale));
  --fs44: calc(44px * var(--fontScale));
  --fs50: calc(50px * var(--fontScale));
  --fs55: calc(55px * var(--fontScale));
  --fs60: calc(60px * var(--fontScale));
  --fs120: calc(120px * var(--fontScale));
  --fs0-8: calc(0.8em * var(--fontScale));
  --fs1-0: calc(1em * var(--fontScale));
  --fs1-125: calc(1.125em * var(--fontScale));
  --fs1-25: calc(1.25em * var(--fontScale));
  --fs1-4: calc(1.4em * var(--fontScale));
  --fs1-5: calc(1.5em * var(--fontScale));
  --fs1-6: calc(1.6em * var(--fontScale));
  --fs1-75: calc(1.75em * var(--fontScale));
  --fs1-875: calc(1.875em * var(--fontScale));
  --fs2-0: calc(2em * var(--fontScale));
  --fs2-2: calc(2.2em * var(--fontScale));
  --fs2-3: calc(2.3em * var(--fontScale));
  --fs2-44: calc(2.44em * var(--fontScale));
  --fs2-7: calc(2.7em * var(--fontScale));
  --fs2-75: calc(2.75em * var(--fontScale));
}

/* NOTE: Add this class to the parent to avoid font scale on children */
.english-content {}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-size: var(--fs16);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--fontColor);
  font-feature-settings: "ss03" 1, "ss02" 1;
  background-color: var(--backgroundColor);
}

body {
  will-change: font-size;
}

button {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
}

button:focus {
  outline: none !important;
}

/* Fluid container */

:root {
  --pageSidePaddingL: 100px;
  --pageSidePaddingM: 56px;
  --pageSidePaddingS: 30px;
  --sidePadding: var(--pageSidePaddingL);
  --pageWidth: min(calc(100vw - 2 * var(--sidePadding)), calc(var(--breakWidth) - 2 * var(--sidePadding)));
}

.hc-container-fluid {
  position: relative;
  margin: 0 auto;
  width: var(--pageWidth) !important;
  min-height: 100%;
}

.hc-absolute-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.hc-fluid-width {
  margin: 0 auto;
  width: var(--pageWidth) !important;
}

.hc-flex-container {
  display: flex;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .hc-flex-container {
    display: block;
  }
}

.hc-flex-container-left {
  position: relative;
  flex: 0.43;
}

.hc-center-text-align {
  display: flex;
  align-items: center;
  min-height: min-content;
}

.hc-center-text-align-wrapper {
  padding: 10vh 0;
  line-height: 1.5;
  font-size: var(--fs18);
}

.hc-flex-inverse .hc-flex-container-left {
  position: relative;
  flex: 0.57;
}

.hc-flex-container-right {
  position: relative;
  flex: 0.57;
}

.hc-flex-inverse .hc-flex-container-right {
  position: relative;
  flex: 0.43;
}

.hc-relative {
  position: relative;
}

/* main page gutters */

@media only screen and (max-width: 1200px) {
  :root {
    --sidePadding: var(--pageSidePaddingM);
  }
}

@media only screen and (max-width: 992px) {
  :root {
    --sidePadding: var(--pageSidePaddingS);
  }
}

@font-face {
  font-family: "KaioMedium";
  src: url("../woff/kaio-medium-2.woff");
}

@font-face {
  font-family: "KaioRegular";
  src: url("../woff/kaio-regular-2.woff");
}

@font-face {
  font-family: "KaioLight";
  src: url("../woff/kaio-light.woff");
}

.regular-text {
  font-family: var(--fontRegular);
}

.medium-text {
  font-family: var(--fontMedium);
  font-weight: var(--fontWeightMedium);
}

/*


    UI inputs


*/

.hc-button {
  border-radius: 20px;
  border: 1px solid transparent;
  transition: border 0.4s ease-in-out;
  cursor: pointer;
}

.hc-button {
  border: 1px solid var(--fontColor);
}

.hc-round-button {
  width: 85px;
  height: 85px;
  background: var(--backgroundColor);
  border: 1px solid var(--fontColor);
  border-radius: 50%;
  overflow: hidden;
  transition: border 0.2s ease-in-out, opacity 0.2s ease-in-out;
  cursor: pointer;
}

.hc-rounded-button {
  padding: 0 10px;
  height: 70px;
  border-radius: 45px;
  border: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs25);
  background: transparent;
  border: 1px solid var(--backgroundColor);
}

.hc-large-button {
  --transition: 0.34s ease-out;
  border: 0.04em solid var(--color);
  color: var(--color);
  text-decoration: none;
  background: var(--secondaryColor);
  transition: border var(--transition), color var(--transition), background var(--transition);
}

.hc-large-button:hover {
  color: var(--secondaryColor);
  background: var(--color);
}

.general-button {
  --color: var(--midGreen);
  --transition: 0.42s cubic-bezier(.34, 0, .13, 1);
  padding: 0 2.15em;
  height: 4em;
  border-radius: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fontMedium);
  font-weight: var(--fontWeightMedium);
  background: transparent;
  border: 0.14em solid var(--color);
  color: var(--color);
}

.general-button div {
  font-size: var(--fs1-75);
}

.general-button.hc-animated {
  transition: color var(--transition), background var(--transition);
}

.general-button:hover {
  color: var(--backgroundColor);
  background: var(--color);
}

@media (hover: none) {
  .general-button:hover {
    color: var(--color);
    background: transparent;
  }
}

.general-button.hc-active {
  color: var(--backgroundColor);
  background: var(--color);
}

.hc-round-button .hc-chevron {
  --chevronColor: var(--fontColor);
}

.hc-round-button .hc-chevron rect {
  transition: fill 0.2s ease-in-out;
}

.hc-round-button:hover {
  border: 1px solid var(--midGreen);
}

.hc-round-button:hover .hc-chevron {
  --chevronColor: var(--midGreen);
}


/*


    Scroll bar


*/

.hc-scrollbar {
  --scrollbarTrackColor: var(--backgroundColor);
  --scrollbarThumbColor: var(--primaryColor);
  --scrollbarSize: 6px;
  padding-right: 12px;
}

.hc-scrollbar.hc-scrollbar-invert {
  --scrollbarTrackColor: var(--primaryColor);
  --scrollbarThumbColor: var(--backgroundColor);
}

.hc-scrollbar::-webkit-scrollbar {
  width: var(--scrollbarSize);
  height: var(--scrollbarSize);
  background-color: var(--scrollbarTrackColor);
  /* or add it to the track */
}

/* thumb */
.hc-scrollbar::-webkit-scrollbar-thumb {
  background: var(--scrollbarThumbColor);
}

/* Custom scrollbar for Firefox */
.wrapper {
  scrollbar-width: thin;
  /* Makes the scrollbar thinner */
  scrollbar-color: var(--scrollbarThumbColor) var(--scrollbarTrackColor);
  /* thumb color and track color */
}

/*


    Circle Stuff


*/

.circle {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
  will-change: width, height, transform, left, opacity;
}

.inner-circle,
.inner-background-circle {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: cover;
}

.inner-circle-multi img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0;
  object-fit: cover;
}

.inner-background-circle {
  position: absolute;
  border-radius: 50%;
}

img.inner-circle {
  object-fit: cover;
}

.circle-s,
.circle-s .inner-circle {
  width: var(--circleS);
  height: var(--circleS);
}

.circle-m,
.circle-m .inner-circle {
  width: var(--circleM);
  height: var(--circleM);
}

.circle-l,
.circle-l .inner-circle {
  width: var(--circleL);
  height: var(--circleL);
}

.circle-xl,
.circle-xl .inner-circle {
  width: var(--circleXL);
  height: var(--circleXL);
}

.circle-cover,
.circle-cover .inner-circle {
  width: var(--circleCover);
  height: var(--circleCover);
}

.circle-cover-double,
.circle-cover-double .inner-circle {
  width: var(--circleCoverDouble);
  height: var(--circleCoverDouble);
}

.hc-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.circle.image-stretch .inner-circle {
  width: 100% !important;
  height: 100%;
}

.hc-event-wrapper {
  pointer-events: none;
}

.hc-event-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

/* bold <span> */

.hc-span-text span {
  font-family: var(--fontMedium);
  font-weight: var(--fontWeightMedium);
}

/* overflow cover */

#page-overflow-cover {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  will-change: height;
  background-color: var(--footerBackgroundColor);
}

/* Carousel text */


.circle-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 425px;
  font-size: var(--fs33);
  will-change: opacity;
  direction: var(--direction);
}

.circle-text span {
  font-family: var(--fontMedium);
  font-weight: var(--fontWeightMedium);
}

@media only screen and (orientation:portrait) and (max-width: 992px) {
  .carousel-text-container {
    position: absolute;
    left: 50%;
    bottom: 0;
    top: unset;
    transform: translateX(-50%);
  }

  .circle-text {
    opacity: 1;
    top: unset;
    bottom: 95px;
    transform: unset;
    width: 100%;
    font-size: var(--fs26);
    min-height: 23%;
    padding: 0;
  }
}

.carousel-title {
  font-size: var(--fs2-7);
  max-width: 100%;
  width: fit-content;
  z-index: 1;
  color: var(--midGreen);
  direction: var(--direction);
}

.page-title {
  font-size: inherit !important;
  max-width: 40em;
  padding-top: 19.4em;
  padding-bottom: 2.625em;
}

.page-title div {
  font-size: var(--fs2-7);
}

.filter-content {
  margin-bottom: 3.75em;
  display: flex;
  gap: 0.8em 1.875em;
  height: max-content;
  flex-wrap: wrap;
}

@media only screen and (max-width: 840px) {
  .page-title {
    padding-top: 15.4em;
  }
}

/*
*
*   ARTICLES
*
*/

.read-more {
  position: relative;
  margin-top: 0.95em;
  width: max-content;
}

.read-more svg {
  width: 1.33em;
  height: 1.25em;
}

.open-quote {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}

.quote-text {
  font-feature-settings: "ss01" 1;
}

.quote-text-inline {
  font-feature-settings: "ss01" 1;
  font-size: var(--fs1-16);
}

.quote-mark {
  position: absolute;
  font-feature-settings: "ss01" 1;
  font-size: var(--fs1-16);
  padding: 0 0.1em;
}

.quote-mark-text {
  padding-left: 0.75em;
}

.article-title {
  font-size: inherit;
  margin-bottom: 3.5em;
}

.article-title div {
  font-weight: normal;
  font-family: var(--fontRegular);
  font-size: var(--fs2-75);
}

.hc-article h1 {
  font-weight: normal;
  font-family: var(--fontRegular);
  font-size: var(--fs2-75);
  margin-bottom: 1.636em;
}

.article-sub-title {
  font-size: inherit;
  margin-top: 3.8em;
}

.article-sub-title div {
  font-size: var(--fs1-125);
  font-weight: 600;
}

.hc-article h2 {
  font-size: var(--fs1-125);
  font-weight: 600;
/*   margin-top: 3.377em; */
  margin-top: 2em;
}

.article-text,
.hc-article p {
  margin-top: 1em;
  font-size: var(--fs1-125);
  line-height: 1.5;
}

.hc-article ul {
  padding-left: 1em;
  margin-top: 1.12em;
}

.hc-article li {
  display: list-item;
  margin-top: 0.8em;
}

.hc-article a,
.hc-article a:visited {
  color: var(--fontColor);
}

.hc-article a:hover {
  color: var(--midGreen);
}

.article-image,
.hc-article figure {
  width: 100%;
  margin-top: 2.2em;
  font-size: var(--fs1-125);
}

#article-details,
.article-details-grid {
  display: flex;
  gap: 5em;
}

#article-details {
  margin-bottom: 11.5em;
}

.article-details-section {
  flex: 1;
}

.article-details-section a,
.article-details-section a:visited {
  text-decoration: none;
  color: var(--fontColor);
}

.article-details-section a:hover {
  color: var(--primaryColor);
}

.article-details-section.hc-large {
  flex: 2;
}

.article-details-section-item {
  margin-bottom: 1.8em;
  line-height: 1.5;
}

.article-details-section-title {
  font-size: var(--fs1-125);
}

.article-details-section-text {
  font-size: var(--fs1-125);
  font-weight: 600;
}

.article-details-section-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.46em;
  gap: 0.625em;
}

.article-details-tag {
  font-size: var(--fs0-8);
  --color: var(--midGreen);
  padding: 0.1em 1em;
  background-color: var(--color);
  color: white;
  flex: 0;
  white-space: nowrap;
  border-radius: 1.2em;
}

/*
*
*   Shared bottom news section
*
*/

#bottom-news-section,
#company-footer {
  margin-top: 9.3em;
}

#bottom-news-section .article-title {
  margin-bottom: 3.5em;
}

@media only screen and (max-width: 740px) {
  #bottom-news-section {
    margin-top: 9.3em;
  }
}

#article-details-section-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 0.6em;
}

#article-details-section-socials div {
  cursor: pointer;
  position: relative;
  width: 35px;
  height: 35px;
}

#article-details-section-socials div svg {
  width: 100%;
  height: 100%;
}

/*  
    the default view is what's used on the tablet version
    if the screen is greater than the break point media applies
*/

@media only screen and (min-width: 1320px) {
  #article-details {
    display: block;
    margin-top: -22em;
  }

  .article-details-grid {
    display: block;
  }
}

@media only screen and (max-width: 1100px) {
  #company-bg-circle {
    left: 124%;
    top: 78em;
  }
}


@media only screen and (max-width: 740px) {
  #article-details {
    display: block;
    margin-bottom: 7.5em;
  }

  .article-details-grid {
    gap: 4em;
  }
}

.hc-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: opacity;
}

.hc-video video {
  position: relative;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hc-video-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hc-full-anchor {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}

/*
*
* CAPTCHA
*
*/

.grecaptcha-badge {
  right: -10000px !important;
}


@media (max-width: 781px) {

  .order-changed-columns .wp-block-column:first-child {
          order: 2;
      }
  .order-changed-columns  .wp-block-column:last-child {
          order: 1;
      }
  }