/*
Theme Name: MMI Robot Service Template
Theme URI:　
Version: 1.01
*/

/*######################################################################

		Base CSS

************************************************************************/

*,
*::before,
*::after {
  box-sizing: border-box;
  min-inline-size: 0;
}

:root {
  --font-size-12: .75rem;
  --font-size-14: .875rem;
  --font-size-16: 1rem;
  --font-size-18: 1.125rem;
  --font-size-21: 1.3125rem;
  --font-size-24: 1.5rem;
  --font-size-26: 1.625rem;
  --font-size-32: 2rem;
  --font-size-40: 2.5rem;
  --font-size-48: 3rem;
  --font-size-56: 3.5rem;
  --font-size-64: 4rem;
  --font-size-72: 4.5rem;
  --font-size-80: 5rem;
  --font-size-88: 5.5rem;
  --font-size-128: 8rem;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  color: #111;
  font-size: var(--font-size-16);
  font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
}

:where(ul, ol) {
  list-style: none;
  list-style-type: '';
  padding: unset;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.4;
}

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

:where(:any-link, button, [type='button'], [type='reset'], [type='submit'], label[for], select, summary, [role='tab'], [role='button']) {
  cursor: pointer;
}

:where(button, [type='button'], [type='reset'], [type='submit']) {
  touch-action: manipulation;
}

legend, fieldset {
  all: unset;
}

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

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

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after, ::backdrop {
    background-attachment: scroll !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}


/*######################################################################

		General

************************************************************************/

/* wordpress */

.sticky {
  display: block;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.wp-caption {
  text-align: center;
  margin: 10px;
  padding: 4px 0 0 0;
}

.wp-caption img {
  margin: 0;
  padding: 0;
}

.wp-caption p.wp-caption-text,
.gallery-caption {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 1.4;
}


/*
  link
/////////////////////////////////////////////////////////*/

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

a:hover {
  color: #111;
  text-decoration: underline;
  transition: .3s ease;
}

a:hover img {
  opacity: 0.7;
}

/*######################################################################

		Header

************************************************************************/
/*
	header-area
/////////////////////////////////////////////////////////*/

/*  header-general */

.header-fixed {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 24px;
  left: 24px;
  width: calc(100% - 48px);
  padding: 16px 24px;
  background-color: rgb(220 220 220 / .8);
  border: 1px solid #dcdcdc;
  border-radius: 50vh;
  z-index: 90;
}

h1.header__logo {
  width: 128px;
  line-height: 1;
}

p.header__logo {
  width: 128px;
  height: 20px;
  line-height: 1;
}

@media not all and (min-width: 768px){
  .header-fixed {
    top: 16px;
    padding: 8px 16px;
  }

  h1.header__logo {
    width: 96px;
    height: 15px;
  }

  p.header__logo {
    width: 96px;
    height: 15px;
  }
}

.header__logo a {
  display: block;
  background: linear-gradient(#000, #000) 0 100% / 0 2px no-repeat;
  transition: background-size .4s;
}

@media (any-hover: hover) {
  .header__logo a:hover {
    text-decoration: none;
    background-size: 100% 2px;
  }
}

.header__logo a:focus-visible {
  text-decoration: none;
  background-size: 100% 2px;
}

.g-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  font-size: var(--font-size-14);
  font-weight: 700;
}

.g-nav .__text a {
  display: inline-block;
  background: linear-gradient(#000, #000) 0 100% / 0 2px no-repeat;
  transition: background-size .4s;
}

@media (any-hover: hover) {
  .g-nav .__text a:hover {
    text-decoration: none;
    background-size: 100% 2px;
  }
}

.g-nav .__text a:focus-visible {
  text-decoration: none;
  background-size: 100% 2px;
}

.g-nav .__nav-button a {
  display: block;
  padding: 4px 24px;
  color: #fff;
  font-weight: 700;
  background-color: #0576A7;
  border-radius: 50vh;
}

@media (any-hover: hover) {
  .g-nav .__nav-button a:hover {
    text-decoration: none;
    background-color: #065476;
  }
}

.g-nav .__nav-button a:focus-visible {
  text-decoration: none;
  background-color: #065476;
}

@media not all and (min-width: 1200px){
  .g-nav {
    gap: 24px;
  }
}

@media not all and (min-width: 768px){
  .g-nav {
    gap: 16px;
  }
}

@media not all and (min-width: 1056px){
  .g-nav .__text {
    display: block !important;
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    contain: strict !important;
    opacity: 0 !important;
  }
}

@media not all and (min-width: 568px){
  .g-nav .__dl {
    display: block !important;
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    contain: strict !important;
    opacity: 0 !important;
  }
}

@media not all and (min-width: 568px){
  .g-nav .__nav-button {
    display: block !important;
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    contain: strict !important;
    opacity: 0 !important;
  }
}

.g-nav .__menu {
  display: none;
}

@media not all and (min-width: 768px){
  .g-nav .__menu {
    display: block;
  }
}

.g-nav .__menu-button {
  display: block;
  padding: 0;
  color: #111;
  background-color: rgb(0 0 0 / 0);
  border: none;
}

.home-nav {
  position: fixed;
  top: 91px;
  left: 80px;
  width: calc(100% - 160px);
  padding: 8px 24px;
  background-color: rgb(220 220 220 / .8);
  border: 1px solid #dcdcdc;
  border-radius: 0 0 50vh 50vh;
  z-index: 90;
}

.home-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

@media not all and (min-width: 1090px){
  .home-nav {
    left: 49px;
    width: calc(100% - 98px);
    padding: 8px 24px;
    border-radius: 0 0 16px 16px;
  }

  .home-nav__list {
    gap: 24px;
  }
}

@media not all and (min-width: 960px){
  .home-nav {
    display: block !important;
    position: absolute;
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    contain: strict !important;
    opacity: 0 !important;
  }
}

.home-nav__list a {
  display: inline-block;
  font-size: var(--font-size-14);
  font-weight: 700;
  background: linear-gradient(#000, #000) 0 100% / 0 2px no-repeat;
  transition: background-size .4s;
}

@media (any-hover: hover) {
  .home-nav__list a:hover {
    text-decoration: none;
    background-size: 100% 2px;
  }
}

.home-nav__list a:focus-visible {
  text-decoration: none;
  background-size: 100% 2px;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  padding: 40px;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #051D27;
  transition: transform .6s ease-in-out;
  z-index: 1001;
  transform: translateY(-100%);
  overflow-y: auto;
}

.drawer.open {
  transform: translateY(0);
}

.drawer-list li:not(:last-child) {
  margin-bottom: 16px;
}

@keyframes drawer-text {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.close-button {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.drawer.open .close-button {
  animation: .3s drawer-text 1s forwards;
  opacity: 0;
}

.drawer-list a {
  color: #fff;
}

.drawer.open .drawer-list a {
  animation: .3s drawer-text 1s forwards;
  opacity: 0;
}

.drawer-list .__en {
  display: inline-block;
  margin-right: 24px;
  font-size: var(--font-size-32);
}

@media not all and (min-width: 400px){
  .drawer-list a {
    font-size: var(--font-size-14);
  }

  .drawer-list .__en {
    margin-right: 16px;
    font-size: var(--font-size-24);
  }
}


/*######################################################################

		Contents

************************************************************************/

/*
	general
/////////////////////////////////////////////////////////*/

.container {
  padding: 200px 24px 160px;
  overflow-x: hidden;
}

@media not all and (min-width: 768px){
  .container {
    padding: 160px 24px 80px;
  }
}

.column-container {
  background-color: #092531;
}

.case-study-container {
  background-color: #E2EDF1;
}

.seminar-container {
  background-color: #F1F1F1;
}

.page-header {
  margin-bottom: 128px;
  font-weight: 700;
}

@media not all and (min-width: 768px){
  .page-header {
    margin-bottom: 80px;
  }
}

@media not all and (min-width: 568px){
  .page-header {
    margin-bottom: 64px;
  }
}

.page-header__title .__en {
  display: block;
  font-size: var(--font-size-128);
  line-height: 1.4;
}

h1.page-header__title .__en {
  margin-bottom: 5px;
}

.page-header__title .__jp {
  display: block;
  font-size: var(--font-size-24);
}

.column-container .page-header__title .__en {
  color: #6BCEF9;
}

.column-container .page-header__title .__jp {
  color: #f2f2f2;
}

@media not all and (min-width: 980px){
  .page-header__title .__en {
    font-size: var(--font-size-88);
  }

  .page-header__title .__jp {
    font-size: var(--font-size-21);
  }
}

@media not all and (min-width: 768px){
  .page-header__title .__en {
    font-size: var(--font-size-64);
  }

  .page-header__title .__jp {
    font-size: var(--font-size-18);
  }
}

@media not all and (min-width: 568px){
  .page-header__title .__en {
    margin-bottom: 16px;
    font-size: var(--font-size-48);
  }

  .page-header__title .__jp {
    font-size: var(--font-size-18);
  }
}

.page-header__description {
  margin-top: 40px;
  font-size: var(--font-size-18);
  font-weight: 700;
}

.page-contents {
  max-width: 800px;
}

.page-contents p {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .page-contents p {
    margin-bottom: 32px;
  }
}

.page-contents h2 {
  margin-block: 80px 40px;
  font-size: var(--font-size-32);
}

@media not all and (min-width: 768px){
.page-contents h2 {
  margin-block: 64px 32px;
  font-size: var(--font-size-26);
}
}

.page-contents ol {
  counter-reset: contents-ol-list;
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .page-contents ol {
    margin-bottom: 32px;
  }
}

.page-contents ol li {
  position: relative;
  padding-left: 2em;
}

.page-contents ol li:not(:last-child) {
  margin-bottom: 8px;
}

.page-contents ol li::before {
  counter-increment: contents-ol-list;
  content: counter(contents-ol-list) ".";
  position: absolute;
  top: 0;
  left: 1em;
}

.page-contents a {
  text-decoration: underline;
}

@media (any-hover: hover) {
  .page-contents a:hover {
    text-decoration: none;
  }
}

.page-contents a:focus-visible {
  text-decoration: none;
}

.section {
  margin-bottom: 100px;
}

@media not all and (min-width: 768px) {
  .section {
    margin-bottom: 50px;
  }
}

.section__area {
  margin: 0 auto;
  width: 1200px;
}

@media not all and (min-width: 1200px) {
  .section__area {
    padding: 0 10px;
    width: 100%;
  }
}

.section-min-area {
  margin: 0 auto;
  width: 800px;
}

@media not all and (min-width: 800px) {
  .section-min-area {
    padding: 0 10px;
    width: 100%;
  }
}

.more-btn {
  text-align: center;
}

.archive__pagenation {
  margin-top: 80px;
  width: 100%;
  font-family: "Anton", "Zen Kaku Gothic New", sans-serif;
}

.archive__pagenation ol {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-inline: auto;
}

@media not all and (min-width: 768px){
  .archive__pagenation {
    margin-top: 40px;
  }

  .archive__pagenation ol {
    gap: 40px;
  }
}

.archive__pagenation li {
  width: 128px;
}

.archive__pagenation .__prev a,
.archive__pagenation .__next a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: fit-content;
}

@media not all and (min-width: 768px){
  .archive__pagenation .__prev a,
  .archive__pagenation .__next a {
    gap: 16px;
    font-size: var(--font-size-14);
  }
}

.archive__pagenation .__prev a::before,
.archive__pagenation .__next a::after {
  content: '';
  display: inline-block;
  width: 56px;
  height: 32px;
  background-image: url(./assets/images/common/button-light.svg);
  background-size: 56px 32px;
	background-repeat: no-repeat;
	background-position: center;
  border-radius: 50vh;
}

@media not all and (min-width: 768px){
  .archive__pagenation .__prev a::before,
  .archive__pagenation .__next a::after {
    width: 40px;
    height: 24px;
    background-size: 40px 24px;
  }
}

.archive__pagenation .__prev a::before {
  transform: rotate(180deg);
}

.archive__pagenation .__text-border {
  position: relative;
}

.archive__pagenation .__text-border::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  width: 100%;
  height: 2px;
  background-color: #0576A7;
}

.archive__pagenation .__prev .__text-border::after {
  transform-origin: left top;
}

@media (hover) {
  .archive__pagenation a:hover {
    text-decoration: none;
  }

  .archive__pagenation .__prev a:hover::before,
  .archive__pagenation .__next a:hover::after {
    background-color: #22A2D7;
  }

  .archive__pagenation a:hover .__text-border::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }

  .archive__pagenation .__prev a:hover .__text-border::after {
    transform-origin: right top;
  }
}

.archive__pagenation .__current-page {
  text-align: center;
}

.archive__pagenation .__current-page .__heading {
  display: block;
  font-size: var(--font-size-14);
}

.archive__pagenation .__current-page .__number {
  font-size: var(--font-size-21);
  font-weight: 600;
}

@media not all and (min-width: 768px){
  .archive__pagenation .__current-page .__heading {
    font-size: var(--font-size-12);
  }

  .archive__pagenation .__current-page .__number {
    font-size: var(--font-size-18);
  }
}

.archive__pagenation .disabled {
  color: rgb(0 0 0 / 0);
  cursor: default;
}

.archive__pagenation .disabled::before,
.archive__pagenation .disabled::after {
  border-color: rgb(0 0 0 / 0);
}

.column-archive .archive__pagenation,
.column-archive .archive__pagenation a {
  color: #fff;
}


/*
	top
/////////////////////////////////////////////////////////*/

.home-mv {
  position: relative;
}

.home-mv video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

@media not all and (min-width: 768px){
  .home-mv video {
    height: 60vh;
  }
}

.home-mv__container {
  display: flex;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(0 0 0 / .4);
}

@media not all and (min-width: 768px){
  .home-mv__container {
    height: 60vh;
  }
}

.home-mv__wrap {
  margin-inline: auto;
  margin-bottom: 80px;
  width: 1200px;
  color: #fff;
}

@media not all and (min-width: 1248px){
  .home-mv__wrap {
    padding-inline: 24px;
    width: 100%;
  }
}

@media not all and (min-width: 768px){
  .home-mv__wrap {
    margin-bottom: 40px;
  }
}

.home-mv__heading {
  margin-bottom: 40px;
  font-size: var(--font-size-80);
}

.home-mv__text {
  font-size: var(--font-size-24);
}

@media not all and (min-width: 768px){
  .home-mv__heading {
    margin-bottom: 24px;
    font-size: var(--font-size-40);
  }

  .home-mv__text {
    font-size: var(--font-size-18);
  }
}

@media not all and (min-width: 568px){
  .home-mv__heading {
    font-size: var(--font-size-32);
  }

  .home-mv__text {
    font-size: var(--font-size-16);
  }

  .home-mv__text br {
    display: none;
  }
}

@media not all and (min-width: 368px){
  .home-mv__heading br {
    display: none;
  }
}

.home-hero {
  margin-inline: auto;
  padding: 160px 24px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-hero {
    padding: 80px 24px;
  }
}

.home-hero__header {
  margin-inline: auto;
  margin-bottom: 80px;
  max-width: fit-content;
}

@media not all and (min-width: 768px){
  .home-hero__header {
    margin-bottom: 40px;
  }
}

.home-hero__heading {
  font-size: var(--font-size-64);
  text-align: center;
  line-height: 1.2;
}

.home-hero__heading .__num {
  color: #0576A7;
  font-size: var(--font-size-128);
}

.home-hero__add {
  font-size: var(--font-size-21);
  text-decoration: underline;
}

@media not all and (min-width: 868px){
  .home-hero__heading {
    font-size: var(--font-size-48);
  }

  .home-hero__heading .__num {
    font-size: var(--font-size-80);
  }

  .home-hero__add {
    font-size: var(--font-size-18);
  }
}

@media not all and (min-width: 568px){
  .home-hero__heading {
    font-size: var(--font-size-32);
  }

  .home-hero__heading .__num {
    font-size: var(--font-size-64);
  }

  .home-hero__add {
    font-size: var(--font-size-16);
  }
}

@media not all and (min-width: 568px){
  .home-hero__heading {
    font-size: var(--font-size-26);
  }

  .home-hero__heading .__num {
    font-size: var(--font-size-48);
  }

  .home-hero__add {
    font-size: var(--font-size-14);
  }
}

.home-hero__main-image {
  margin-inline: auto;
  margin-bottom: 160px;
  width: fit-content;
}

@media not all and (min-width: 768px){
  .home-hero__main-image {
    margin-bottom: 80px;
  }
}

.home-hero__main-image .__sp {
  display: none;
}

@media not all and (min-width: 768px){
  .home-hero__main-image .__pc {
    display: none;
  }

  .home-hero__main-image .__sp {
    display: block;
  }
}

.home-hero__sub-heading {
  margin-bottom: 80px;
  font-size: var(--font-size-56);
  text-align: center;
}

@media not all and (min-width: 768px){
  .home-hero__sub-heading {
    margin-bottom: 32px;
    font-size: var(--font-size-40);
  }
}

@media not all and (min-width: 568px){
  .home-hero__sub-heading {
    margin-bottom: 24px;
    font-size: var(--font-size-32);
  }
}

@media not all and (min-width: 568px){
  .home-hero__sub-heading {
    font-size: var(--font-size-24);
  }
}

.home-hero__wrap {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  font-size: var(--font-size-18);
  font-weight: 700;
  line-height: 2;
}

.home-hero__wrap:not(:last-child) {
  margin-bottom: 128px;
}

@media not all and (min-width: 768px){
  .home-hero__wrap {
    font-size: var(--font-size-16);
  }

  .home-hero__wrap:not(:last-child) {
    margin-bottom: 64px;
  }
}

.home-hero__wrap:nth-child(odd) {
  flex-direction: row-reverse;
}

.home-hero__media {
  width: 40%;
}

.home-hero__sentence {
  width: 50%;
}

@media not all and (min-width: 768px){
  .home-hero__media {
    margin-bottom: 32px;
    width: 100%;
  }

  .home-hero__sentence {
    width: 100%;
  }
}

.home-hero__media.__video img {
  border-radius: 32px;
}

@media not all and (min-width: 768px){
  .home-hero__media.__video img {
    border-radius: 24px;
  }
}

.home-hero__sentence .__strong-text {
  font-size: var(--font-size-26);
}

.home-hero__sentence p:not(:last-child) {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .home-hero__sentence p:not(:last-child) {
    margin-bottom: 32px;
  }
}

.home-hero__media {
  max-width: 560px;
  margin: 0 auto;
}

.home-hero__modal-video {
  width: 100%;
  background-color: rgba(0 0 0 / 0);
  border: none;
  cursor: pointer;
}

.home-hero__modal-video img {
  width: 100%;
  height: auto;
}

.home-hero__media-modal {
  display: none;
  place-content: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  position: relative;
  display: grid;
  place-content: center;
  max-width: 80%;
}

.modal-content video {
  display: block;
  width: 100%;
}

.modal-close-button {
  position: absolute;
  top: 140px;
  right: -30px;
  color: white;
  font-size: var(--font-size-48);
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px 10px;
}

.modal-close-button:hover,
.modal-close-button:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.home-section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}

.home-section-header__heading {
  order: 2;
  font-size: var(--font-size-48);
}

.home-section-header__text {
  order: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 16px;
  color: #0576A7;
  font-weight: 700;
}

.home-section-header__text .__en {
  font-size: var(--font-size-14);
}

.home-section-header__text .__jp {
  font-size: var(--font-size-24);
}

.__bg-blue .home-section-header__heading {
  color: #fff;
}

.__bg-blue .home-section-header__text {
  color: #B0E7FF;
}

@media not all and (min-width: 768px){
  .home-section-header {
    margin-bottom: 40px;
  }

  .home-section-header__heading {
    font-size: var(--font-size-32);
  }

  .home-section-header__heading br {
    display: none;
  }

  .home-section-header__text {
    gap: 32px;
  }

  .home-section-header__text .__jp {
    font-size: var(--font-size-18);
  }
}

@media not all and (min-width: 468px){
  .home-section-header__heading {
    font-size: var(--font-size-26);
  }

  .home-section-header__text .__jp {
    font-size: var(--font-size-18);
  }
}

.home-section-header.__center .home-section-header__heading {
  margin-inline: auto;
  width: fit-content;
}

.home-section-header.__center .home-section-header__text {
  flex-direction: column;
  gap: 0;
  text-align: center;
}


.home-problem {
  color: #fff;
  background-color: #07618C;
  border-radius: 80px 80px 0 0;
}

.home-problem__area {
  margin-inline: auto;
  padding: 160px 24px 240px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-problem {
    border-radius: 40px 40px 0 0;
  }

  .home-problem__area {
    padding: 80px 24px 128px;
  }
}

.home-problem__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 16px 2%;
  margin-bottom: 40px;
}

.home-problem__item {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  padding: 8px 16px;
  width: 49%;
  background-color: #1A759D;
  border-radius: 32px;
}

@media not all and (min-width: 768px){
  .home-problem__item {
    width: 100%;
    border-radius: 16px;
  }
}

.home-problem__icon {
  width: 150px;
}

.home-problem__text {
  width: calc(100% - 160px);
  font-size: var(--font-size-16);
  text-align: center;
}

@media not all and (min-width: 1200px){
  .home-problem__text {
    text-align: left;
  }

  .home-problem__text br {
    display: none;
  }
}

@media not all and (min-width: 568px){
  .home-problem__text {
    width: calc(100% - 120px);
  }

  .home-problem__icon {
    width: 100px;
  }
}

.home-problem__copy {
  position: relative;
  margin-inline: auto;
  padding-top: 80px;
  max-width: 840px;
  font-size: var(--font-size-48);
  font-weight: 700;
  text-align: center;
}

.home-problem__copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background-image: url(./assets/images/home/home-problem-arrow01.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.home-problem__copy::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-image: url(./assets/images/home/home-problem-arrow02.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media not all and (min-width: 860px){
  .home-problem__copy {
    max-width: 600px;
    font-size: var(--font-size-32);
  }

  .home-problem__copy::before {
    width: 100px;
    height: 100px;
  }

  .home-problem__copy::after {
    width: 100px;
    height: 100px;
  }
}

@media not all and (min-width: 468px){
  .home-problem__copy {
    padding-top: 40px;
    max-width: 600px;
    font-size: var(--font-size-26);
  }

  .home-problem__copy::before {
    width: 48px;
    height: 48px;
  }

  .home-problem__copy::after {
    width: 48px;
    height: 48px;
  }
}

.home-aboutus {
  margin-top: -80px;
  padding: 160px 24px;
  background-color: #fff;
  border-radius: 80px 80px 0 0;
}

@media not all and (min-width: 768px){
  .home-aboutus {
    margin-top: -40px;
    padding: 80px 24px;
    border-radius: 40px 40px 0 0;
  }
}

.home-aboutus__sub-heading {
  margin-inline: auto;
  margin-bottom: 80px;
  width: fit-content;
  font-size: var(--font-size-26);
  font-weight: 700;
}

@media not all and (min-width: 768px){
  .home-aboutus__sub-heading {
    margin-bottom: 40px;
    font-size: var(--font-size-21);
  }
}

.home-aboutus__sentence {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  margin-inline: auto;
  max-width: 1000px;
}

.home-aboutus__sentence::before {
  content: '';
  display: inline-block;
  width: 211px;
  height: 163px;
  background-image: url(./assets/images/home/home-about-image01.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.home-aboutus__sentence::after {
  content: '';
  display: inline-block;
  width: 211px;
  height: 163px;
  background-image: url(./assets/images/home/home-about-image02.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media not all and (min-width: 940px){
  .home-aboutus__sentence {
    justify-content: center;
    gap: 40px;
  }

  .home-aboutus__sentence p {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .home-aboutus__sentence::before {
    order: 2;
  }

  .home-aboutus__sentence::after {
    order: 3;
  }
}

@media not all and (min-width: 568px){
  .home-aboutus__sentence {
    justify-content: center;
    gap: 24px;
  }

  .home-aboutus__sentence p {
    text-align: left;
  }

  .home-aboutus__sentence p br {
    display: block;
  }

  .home-aboutus__sentence::before {
    width: 45%;
  }

  .home-aboutus__sentence::after {
    width: 45%;
  }
}

.home-point-list {
  margin-inline: auto;
  padding: 0 24px 160px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-point-list {
    padding: 0 24px 80px;
  }
}

.home-point-list__heading {
  margin-bottom: 80px;
  font-size: var(--font-size-48);
}

@media not all and (min-width: 768px){
  .home-point-list__heading {
    margin-bottom: 40px;
    font-size: var(--font-size-32);
  }
}

@media not all and (min-width: 468px){
  .home-point-list__heading {
    margin-bottom: 32px;
    font-size: var(--font-size-26);
  }
}

.home-point-list__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 40px 0;
}

.home-point-list__item {
  display: flex;
  flex-direction: column;
  width: 32%;
}

@media not all and (min-width: 768px){
  .home-point-list__item {
    width: 100%;
  }
}

.home-point-list__sub-heading {
  order: 2;
  margin-inline: auto;
  margin-bottom: 24px;
  width: fit-content;
  font-size: var(--font-size-24);
}

.home-point-list__text {
  order: 3;
}

.home-point-list__image {
  order: 1;
  margin-bottom: 32px;
}

.home-point-list__image img {
  width: 100%;
  border-radius: 32px;
}

@media not all and (min-width: 768px){
  .home-point-list__sub-heading {
    margin-bottom: 16px;
    font-size: var(--font-size-21);
  }

  .home-point-list__image {
    margin-bottom: 24px;
  }

  .home-point-list__image img {
    border-radius: 24px;
  }
}

.home-point01 {
  margin-inline: auto;
  padding: 0 24px 160px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-point01 {
    padding: 0 24px 80px;
  }
}

.home-point01__description {
  margin-block: -40px 80px;
}

@media not all and (min-width: 768px){
  .home-point01__description {
    margin-block: 0 40px;
  }
}

.home-point01__list li {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  margin-bottom: 80px;
}

.home-point01__list li:nth-child(3) {
  flex-direction: column;
}

@media not all and (min-width: 768px){
  .home-point01__list li {
    margin-bottom: 40px;
  }
}

.home-point01__image {
  width: 45%;
}

.home-point01__list li:nth-child(3) .home-point01__image {
  margin-bottom: 40px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.home-point01__list li:nth-child(3) .home-point01__image img {
  min-width: 900px;
}

.home-point01__sentence {
  width: 50%;
}

.home-point01__image img {
  border-radius: 32px;
}

.home-point01__image img {
  width: 100%;
}

.home-point01__heading {
  margin-bottom: 40px;
  font-size: var(--font-size-26);
}

@media not all and (min-width: 768px){
  .home-point01__image {
    margin-bottom: 32px;
    width: 100%;
  }

  .home-point01__list li:nth-child(3) .home-point01__image {
    margin-bottom: 32px;
  }

  .home-point01__sentence {
    width: 100%;
  }

  .home-point01__image img {
    border-radius: 24px;
  }

  .home-point01__heading {
    margin-bottom: 32px;
    font-size: var(--font-size-21);
  }
}

@media not all and (min-width: 468px){
  .home-point01__heading br {
    display: none;
  }
}

.home-point01__button.__button a {
  margin-inline: auto;
  background-color: #F0F6F9;
}

@media (any-hover: hover) {
  .home-point01__button.__button a:hover {
    background-color: #c2d7e1;
  }
}

.home-point01__button.__button a:focus-visible {
  background-color: #c2d7e1;
}

.home-point02 {
  margin-inline: auto;
  padding: 0 24px 160px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-point02 {
    padding: 0 24px 80px;
  }
}

.home-point02__hero-wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-bottom: 80px;
}

.home-point02__sentence {
  width: 50%;
}

.home-point02__image {
  width: 45%;
}

.home-point02__sentence p:not(:last-child) {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .home-point02__hero-wrap {
    margin-bottom: 40px;
  }

  .home-point02__sentence {
    margin-bottom: 32px;
    width: 100%;
  }

  .home-point02__image {
    width: 100%;
  }

  .home-point02__sentence p:not(:last-child) {
    margin-bottom: 32px;
  }
}

.home-point02__image img {
  margin-inline: auto;
}

.home-point02__contents {
  padding: 80px 40px;
  background-color: #F0F6F9;
  border-radius: 40px;
}

.home-point02__contents:not(:last-child) {
  margin-bottom: 80px;
}

@media not all and (min-width: 768px){
  .home-point02__contents {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .home-point02__contents:not(:last-child) {
    margin-bottom: 40px;
  }
}

.home-point02__contents-heading {
  margin-inline: auto;
  margin-bottom: 40px;
  width: fit-content;
  font-size: var(--font-size-32);
}

.home-point02__contents-wrap {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
}

.home-point02__contents-wrap.__contents02 {
  flex-direction: row-reverse;
}

.home-point02__contents-list {
  width: 50%;
}

.home-point02__contents-image {
  width: 45%;
}

@media not all and (min-width: 768px){
  .home-point02__contents-heading {
    margin-bottom: 32px;
    font-size: var(--font-size-24);
  }

  .home-point02__contents-list {
    margin-bottom: 32px;
    width: 100%;
  }

  .home-point02__contents-image {
    width: 100%;
  }
}

.home-point02__contents-list li {
  padding: 32px;
  background-color: #fff;
  border-radius: 24px;
}

@media not all and (min-width: 768px){
  .home-point02__contents-list li {
    padding: 24px;
    border-radius: 16px;
  }
}

.home-point02__contents-list li:not(:last-child) {
  margin-bottom: 16px;
}

.home-point02__contents-list dt {
  margin-bottom: 16px;
  font-size: var(--font-size-21);
  font-weight: 700;
}

.home-point02__contents-image img {
  margin-inline: auto;
}

.home-point__copy {
  font-size: var(--font-size-26);
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
}

@media not all and (min-width: 768px){
  .home-point__copy {
    font-size: var(--font-size-21);
  }
}

.home-point03 {
  margin-inline: auto;
  padding: 0 24px 160px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-point03 {
    padding: 80px 24px;
  }
}

.home-point03__hero-wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-bottom: 80px;
}

.home-point03__text {
  width: 50%;
}

.home-point03__image {
  width: 45%;
}

.home-point03__text p:not(:last-child) {
  margin-bottom: 40px;
}

.home-point03__image img {
  border-radius: 32px;
}

@media not all and (min-width: 768px){
  .home-point03__hero-wrap {
    margin-bottom: 40px;
  }

  .home-point03__text {
    margin-bottom: 32px;
    width: 100%;
  }

  .home-point03__image {
    width: 100%;
  }

  .home-point03__text p:not(:last-child) {
    margin-bottom: 32px;
  }

  .home-point03__image img {
    border-radius: 24px;
  }
}

.home-point03__item {
  display: flex;
	justify-content: space-between;
  align-items: flex-start;
	flex-wrap: wrap;
  padding: 40px;
  background-color: #F0F6F9;
  border-radius: 32px;
}

.home-point03__item:not(:last-child) {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .home-point03__item {
    padding: 24px;
    border-radius: 24px;
  }

  .home-point03__item:not(:last-child) {
    margin-bottom: 24px;
  }
}

.home-point03__heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 440px;
  font-size: var(--font-size-26);
}

.home-point03__sentence {
  width: calc(100% - 440px);
}

@media not all and (min-width: 940px){
  .home-point03__heading {
    margin-bottom: 40px;
    width: 100%;
  }

  .home-point03__sentence {
    width: 100%;
  }
}

@media not all and (min-width: 768px){
  .home-point03__heading {
    margin-bottom: 32px;
    font-size: var(--font-size-21);
  }
}

.home-point03__sentence p {
  margin-bottom: 40px;
}

.home-point03__sentence > *:last-child {
  margin-bottom: 0;
}

@media not all and (min-width: 768px){
  .home-point03__sentence p {
    margin-bottom: 32px;
  }
}

.home-point03__sentence-wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .home-point03__sentence-wrap {
    margin-bottom: 32px;
  }
}

.home-point03__sentence img {
  margin-inline: auto;
}


.home-cta {
  margin-inline: auto;
  padding: 0 24px 160px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-cta {
    padding: 0 24px 80px;
  }
}

.home-cta__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.home-cta__sentence {
  width: 48%;
}

.home-cta__image {
  width: 45%;
}

@media not all and (min-width: 940px){
  .home-cta__sentence {
    width: 65%;
  }

  .home-cta__image {
    width: 30%;
  }
}

@media not all and (min-width: 768px){
  .home-cta__wrap {
    flex-direction: column-reverse;
  }

  .home-cta__sentence {
    width: 100%;
  }

  .home-cta__image {
    margin-bottom: 32px;
    width: 100%;
  }
}

.home-cta__main-text {
  margin-bottom: 32px;
  font-size: var(--font-size-21);
  font-weight: 700;
}

.home-cta__sub-text {
  margin-bottom: 40px;
  color: #777;
}

.home-cta__button {
  margin-bottom: 24px;
}

.home-cta__button a {
  display: block;
  padding: 16px 24px;
  color: #fff;
  font-size: var(--font-size-26);
  font-weight: 700;
  text-align: center;
  background-color: #0576A7;
  border-radius: 50vh;
}

@media (any-hover: hover) {
  .home-cta__button a:hover {
    text-decoration: none;
    background-color: #044a69;
  }
}

.home-cta__button a:focus-visible {
  text-decoration: none;
  background-color: #044a69;
}

@media not all and (min-width: 768px){
  .home-cta__main-text {
    margin-bottom: 24px;
    font-size: var(--font-size-18);
  }

  .home-cta__sub-text {
    margin-bottom: 32px;
  }

  .home-cta__button {
    margin-bottom: 16px;
  }

  .home-cta__button a {
    padding: 8px 16px;
    font-size: var(--font-size-21);
  }
}

.home-location {
  background-color: #F0F6F9;
}

.home-location__container {
  margin-inline: auto;
  padding: 160px 24px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-location__container {
    padding: 80px 24px;
  }
}

.home-location__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 64px 2%;
  margin-bottom: 80px;
}

.home-location__item {
  display: flex;
  flex-direction: column;
  width: 32%;
}

@media not all and (min-width: 768px){
  .home-location__wrap {
    gap: 48px 4%;
    margin-bottom: 40px;
  }

  .home-location__item {
    width: 48%;
  }
}

@media not all and (min-width: 468px){
  .home-location__item {
    width: 100%;
  }
}

.home-location__heading {
  order: 2;
  margin-bottom: 16px;
  padding-inline: 24px;
  color: #0576A7;
  font-size: var(--font-size-26);
}

@media not all and (min-width: 768px){
  .home-location__heading {
    padding-inline: 16px;
    font-size: var(--font-size-21);
  }
}

.home-location__data {
  order: 3;
  padding-inline: 24px;
}

@media not all and (min-width: 768px){
  .home-location__data {
    padding-inline: 16px;
  }
}

.home-location__data dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.home-location__data dt {
  width: 80px;
}

.home-location__data dt::after {
  content: ':';
}

.home-location__image {
  margin-bottom: 24px;
}

.home-location__image img {
  border-radius: 32px;
}

@media not all and (min-width: 768px){
  .home-location__image img {
    border-radius: 24px;
  }
}

.home-quick-cleaning {
  margin-inline: auto;
  padding: 160px 24px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-quick-cleaning {
    padding: 80px 24px;
  }
}

.home-quick-cleaning__item:not(:last-child) {
  margin-bottom: 80px;
}

@media not all and (min-width: 768px){
  .home-quick-cleaning__item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.home-quick-cleaning__heading {
  margin-bottom: 32px;
  font-size: var(--font-size-26);
}

.home-quick-cleaning__description {
  margin-bottom: 24px;
  font-size: var(--font-size-21);
  font-weight: 700;
}

.home-quick-cleaning__description .__add {
  font-size: var(--font-size-18);
}

.home-quick-cleaning__flow {
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
}

.home-quick-cleaning__flow img {
  min-width: 900px;
  border-radius: 32px;
}

@media not all and (min-width: 768px){
  .home-quick-cleaning__heading {
    margin-bottom: 24px;
    font-size: var(--font-size-21);
  }

  .home-quick-cleaning__description {
    margin-bottom: 24px;
    font-size: var(--font-size-18);
  }

  .home-quick-cleaning__description .__add {
    font-size: var(--font-size-14);
  }

  .home-quick-cleaning__flow img {
    border-radius: 24px;
  }
}

.home-section-heading {
  margin-bottom: 40px;
}

.home-section-heading .__en {
  display: block;
  color: #0576A7;
  font-size: var(--font-size-80);
}

.home-section-heading .__jp {
  font-size: var(--font-size-24);
}

@media not all and (min-width: 768px){
  .home-section-heading {
    margin-bottom: 32px;
  }

  .home-section-heading .__en {
    font-size: var(--font-size-40);
  }

  .home-section-heading .__jp {
    font-size: var(--font-size-21);
  }
}

.home-case-study {
  background-color: #E2EDF1;
}

.home-case-study__container {
  margin-inline: auto;
  padding: 160px 24px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-case-study__container {
    padding: 80px 24px;
  }
}

.home-case-study__description {
  margin-bottom: 80px;
}

@media not all and (min-width: 768px){
  .home-case-study__description {
    margin-bottom: 40px;
  }
}

.case-study-archive__contents {
  margin-inline: calc(50% - 50vw);
  margin-bottom: 40px;
}

.case-study-archive__contents .case-study-archive__item {
  margin-right: 24px;
  width: 26%;
}

@media not all and (min-width: 940px){
  .case-study-archive__contents .case-study-archive__item {
    margin-right: 16px;
    width: 36%;
  }
}

@media not all and (min-width: 768px){
  .case-study-archive__contents .case-study-archive__item {
    margin-right: 8px;
    width: 45%;
  }
}

@media not all and (min-width: 468px){
  .case-study-archive__contents .case-study-archive__item {
    width: 70%;
  }
}

@media not all and (min-width: 368px){
  .case-study-archive__contents .case-study-archive__item {
    width: 85%;
  }
}

.swiper {
  padding-top: 56px;
}
.slider {
  display: none;
}
.slider.slick-initialized {
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 0;
  margin-top: 0;
  width: 48px;
  height: 48px;
  color: rgba(0 0 0 / 0);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.swiper-button-next {
  right: 40px;
  background-image: url(./assets/images/common/button-blue.svg);
}

.swiper-button-prev {
  right: 98px;
  left: auto;
  transform: rotate(180deg);
  background-image: url(./assets/images/common/button-blue.svg);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  filter: blur(.5px);
  opacity: .7;
}

.home-case-study.__button a {
  margin-inline: auto;
}

.home-seminar {
  background-color: #F0F6F9;
}

.home-seminar__container {
  margin-inline: auto;
  padding: 160px 24px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-seminar__container {
    padding: 80px 24px;
  }
}

.home-seminar__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.home-seminar__sentence {
  width: 30%;
}

.home-seminar__list {
  width: 60%;
}

.home-seminar__sentence p {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .home-seminar__sentence {
    display: contents;
    width: 100%;
  }

  .home-seminar__description {
    order: 1;
  }

  .home-seminar__list {
    order: 2;
    margin-bottom: 32px;
    width: 100%;
  }

  .home-seminar__sentence p {
    margin-bottom: 32px;
  }

  .home-seminar__button {
    order: 3;
    margin-inline: auto;
  }

  .home-seminar__button a {
    width: 320px;
  }
}

.home-column {
  color: #fff;
  background-color: #092531;
}

.home-column__container {
  margin-inline: auto;
  padding: 160px 24px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-column__container {
    padding: 80px 24px;
  }
}

.home-column__description {
  margin-bottom: 80px;
  max-width: 800px;
}

@media not all and (min-width: 768px){
  .home-column__description {
    margin-bottom: 40px;
  }
}

.home-column .column-archive__wrap {
  margin-bottom: 32px;
}

.home-column__button.__button a {
  margin-inline: auto;
}

.home-news {
  margin-inline: auto;
  padding: 160px 24px;
  max-width: 1200px;
}

@media not all and (min-width: 768px){
  .home-news {
    padding: 80px 24px;
  }
}

.home-news__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.home-news__sentence {
  width: 30%;
}

.home-news__list {
  width: 60%;
}

.home-news__sentence p {
  margin-bottom: 40px;
}

.home-news__button.__button {
  margin-top: 40px;
}

.home-news__button.__button a {
  background-color: #E2EDF1;
}

@media not all and (min-width: 768px){
  .home-news__sentence {
    display: contents;
    width: 100%;
  }

  .home-news__description {
    order: 1;
  }

  .home-news__list {
    order: 2;
    margin-bottom: 32px;
    width: 100%;
  }

  .home-news__sentence p {
    margin-bottom: 32px;
  }

  .home-news__button.__button {
    order: 3;
    margin-top: 0;
    margin-inline: auto;
  }

  .home-news__button a {
    width: 320px;
  }
}

.overlay,
.sp-menu-container {
  display: none;
}

@media not all and (min-width: 960px){
  .overlay,
  .sp-menu-container {
    display: block;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }

  .sp-menu-container {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
  }

  .toggle-button {
    display: grid;
    place-content: center;
    width: 128px;
    height: 48px;
    color: #ffffff;
    background-color: #051D27;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .sp-menu {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 0.5rem;
    padding: 24px;
    width: 260px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .sp-menu li {
    margin-bottom: 0.5rem;
  }

  .sp-menu a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }
}


/*
	products
/////////////////////////////////////////////////////////*/

.products__main {
  margin-inline: calc(50% - 50vw);
}

.products__item {
  margin-bottom: 160px;
  padding-block: 160px;
  background-color: #E7E7E7;
}

@media not all and (min-width: 768px){
  .products__item {
    margin-bottom: 80px;
    padding-block: 80px;
  }
}

.products__item-wrap {
  margin-inline: auto;
  padding-inline: 24px;
  max-width: 1200px;
}

.products__heading-main {
  margin-bottom: 8px;
  color: #0576A7;
  font-size: var(--font-size-80);
}

.products__heading-jp {
  margin-bottom: 40px;
  font-size: var(--font-size-26);
}

@media not all and (min-width: 768px){
  .products__heading-main {
    font-size: var(--font-size-40);
  }

  .products__heading-jp {
    margin-bottom: 32px;
    font-size: var(--font-size-21);
  }
}

.products__hero-wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-bottom: 80px;
}

.products__hero-sentence {
  width: 55%;
  font-size: var(--font-size-18);
}

.products__hero-image {
  width: 35%;
}

.products__hero-sentence p:not(:last-child) {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .products__hero-wrap {
    margin-bottom: 40px;
    flex-direction: column-reverse;
  }

  .products__hero-sentence {
    width: 100%;
    font-size: var(--font-size-16);
  }

  .products__hero-image {
    margin-bottom: 32px;
    width: 100%;
  }

  .products__hero-sentence p:not(:last-child) {
    margin-bottom: 32px;
  }
}

.products__movie {
  margin-bottom: 80px;
}

@media not all and (min-width: 768px){
  .products__movie {
    margin-bottom: 40px;
  }
}

.products__movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.products__movie figcaption {
  display: block !important;
  position: absolute;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  contain: strict !important;
  opacity: 0 !important;
}

.products__future-wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 64px 2%;
  margin-bottom: 80px;
}

.products__future-item {
  display: flex;
  flex-direction: column;
  width: 32%;
}

@media not all and (min-width: 768px){
  .products__future-wrap {
    gap: 48px 4%;
    margin-bottom: 40px;
  }

  .products__future-item {
    width: 48%;
  }
}

@media not all and (min-width: 468px){
  @media not all and (min-width: 768px){
    .products__future-wrap {
      gap: 48px 0;
      margin-bottom: 40px;
    }

    .products__future-item {
      width: 100%;
    }
  }
}

.products__future-heading {
  order: 2;
  margin-inline: auto;
  margin-bottom: 16px;
  width: fit-content;
  font-size: var(--font-size-21);
}

.products__future-description {
  order: 3;
}

.products__future-image {
  margin-bottom: 24px;
  order: 1;
}

.products__future-image img {
  border-radius: 24px;
}

.products__future-details {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  gap: 40px 4%;
  margin-bottom: 80px;
}

.products__future-details dl {
  width: 48%;
}

.products__future-details dt {
  margin-bottom: 8px;
  font-size: var(--font-size-21);
  font-weight: 700;
}

@media not all and (min-width: 768px){
  .products__future-details {
    gap: 40px 0;
    margin-bottom: 40px;
  }

  .products__future-details dl {
    width: 100%;
  }

  .products__future-details dt {
    font-size: var(--font-size-18);
  }
}

.products__specification-wrap {
  display: flex;
	flex-wrap: wrap;
  margin-bottom: 80px;
  gap: 16px 2%;
}

.products__specification-wrap dl {
  padding: 24px;
  width: 32%;
  border-bottom: 1px solid #aaa;
}

.products__specification-wrap dt {
  font-weight: 700;
}

@media not all and (min-width: 768px){
  .products__specification-wrap {
    margin-bottom: 40px;
    gap: 16px 4%;
  }

  .products__specification-wrap dl {
    width: 48%;
  }
}

@media not all and (min-width: 468px){
  .products__specification-wrap {
    gap: 16px 0;
  }

  .products__specification-wrap dl {
    width: 100%;
  }
}

.products__floor-type {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  margin-bottom: 80px;
  padding: 40px;
  background-color: #D5D5D5;
  border-radius: 32px;
}

@media not all and (min-width: 768px){
  .products__floor-type {
    margin-bottom: 40px;
    padding: 32px 24px;
    border-radius: 24px;
  }
}

.products__floor-type-heading {
  margin-top: 56px;
  width: 150px;
  font-size: var(--font-size-21);
}

.products__floor-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 2%;
  width: calc(100% - 150px);
}

@media not all and (min-width: 940px){
  .products__floor-type-heading {
    margin-top: 0;
    width: 100%;
  }

  .products__floor-type-list {
    gap: 16px 2%;
    width: 100%;
  }
}

@media not all and (min-width: 768px){
  .products__floor-type-list {
    gap: 16px 2%;
  }
}

.products__floor-type-list li {
  width: 15%;
}

.products__floor-type-list li img {
  margin-bottom: 8px;
  border: 4px solid #fff;
  border-radius: 8px;
}

.products__floor-type-list figcaption {
  margin-inline: auto;
  width: fit-content;
  font-size: var(--font-size-16);
  font-weight: 700;
}

@media not all and (min-width: 768px){
  .products__floor-type-list li {
    width: 32%;
  }

  .products__floor-type-list li img {
    border: 3px solid #fff;
  }

  .products__floor-type-list figcaption {
    font-size: var(--font-size-14);
  }
}




.products__review-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 40px;
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .products__review-header {
    gap: 16px 32px;
    margin-bottom: 32px;
  }
}

.products__review-heading {
  font-size: 24px;
}

.review-write-button {
  padding: 8px 24px;
  font-size: var(--font-size-14);
  line-height: 1;
  background-color: transparent;
  border: 2px solid #333;
  border-radius: 50vh;
  cursor: pointer;
  transition: all .3s ease;
}

@media (any-hover: hover) {
  .review-write-button:hover {
    background-color: #333;
    color: #fff;
  }
}

.review-write-button:focus-visible {
  background-color: #333;
  color: #fff;
}

.review-view-all-button {
  margin-top: 40px;
  padding: 8px 24px;
  font-size: var(--font-size-14);
  background-color: transparent;
  border: 2px solid #333;
  border-radius: 50vh;
  cursor: pointer;
  transition: all .3s ease;
}

@media not all and (min-width: 768px){
  .review-view-all-button {
    margin-top: 32px;
  }
}

@media (any-hover: hover) {
  .review-view-all-button:hover {
    background-color: #333;
    color: #fff;
  }
}

.review-view-all-button:focus-visible {
  background-color: #333;
  color: #fff;
}


.review-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgb(0 0 0 / .8);
}

.review-modal-container {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 32px;
  width: 90%;
  max-width: 600px;
  height: calc(100vh - 160px);
  background-color: #fefefe;
  border-radius: 24px;
}

@media not all and (min-width: 768px){
  .review-modal-container {
    top: 40px;
    padding: 24px;
    height: calc(100vh - 80px);
    border-radius: 16px;
  }
}

.review-modal-content {
  position: relative;
  height: 100%;
  overflow-y: scroll;
}

.review-close {
  position: absolute;
  top: -60px;
  right: -30px;
  color: #fff;
  font-size: var(--font-size-48);
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px 10px;
}

.review-close:hover,
.review-close:focus {
  color: #ccc;
  text-decoration: none;
  cursor: pointer;
}

.review-modal-heading {
  margin-bottom: 32px;
  font-size: var(--font-size-26);
}

@media not all and (min-width: 768px){
  .review-modal-heading {
    margin-bottom: 24px;
    font-size: var(--font-size-21);
  }
}

.glsr-minimal form.glsr-form {
  grid-row-gap: 24px!important;
}

.glsr-label span {
  display: block;
  margin-bottom: 8px;
  font-size: var(--font-size-18);
  font-weight: 700;
}

.glsr-field-rating {
  order: 1;
}

.glsr-field-text {
  order: 2;
}

.glsr-input-text {
  display: block;
  margin-bottom: 32px;
  padding: 16px 24px;
  font-size: var(--font-size-18);
  border: 2px solid #065B8A;
  border-radius: 8px;
}

.glsr-field-textarea {
  order: 3;
}

.glsr-textarea {
  display: block;
  margin-bottom: 32px;
  padding: 16px 24px;
  height: 240px;
  font-size: var(--font-size-18);
  border: 2px solid #065B8A;
  border-radius: 8px;
}

div[data-field="submit-button"] {
  order: 4;
}

.glsr-minimal button.glsr-button {
  display: grid;
  place-content: center;
  padding: 24px;
  width: 100%;
  height: 80px;
  font-size: 21px;
  font-weight: 700;
  background-color: #065B8A!important;
  border-color: rgb(0 0 0 / 0);
  border-radius: 8px;
}

@media (any-hover: hover) {
  .glsr-minimal button.glsr-button:hover {
    background-color: #054365!important;
  }
}

.glsr-minimal button.glsr-button:focus-visible {
  background-color: #054365!important;
}

.glsr-minimal .glsr-form-success {
  order: 5;
  color: #000;
}

.glsr-review {
  padding: 24px;
  background-color: #f1f1f1;
  border-radius: 8px;
}

.glsr-review-response::after {
  border-radius: 8px!important;
}

.glsr-summary {
  justify-content: flex-end;
  flex-direction: row-reverse;
  margin-bottom: 24px;
}

.glsr-summary-text {
  display: block !important;
  position: absolute;
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  contain: strict !important;
  opacity: 0 !important;
}

.glsr-review-content p {
  font-size: 16px;
  line-height: 1.6;
}

.glsr-review-rating {
  order: 1;
  display: block;
  margin-bottom: 8px;
}

.glsr-review-author {
  order: 2;
  display: block;
  width: 100%;
  font-weight: 700;
}

.glsr-review-content {
  order: 3;
}

.glsr-review-response {
  order: 4;
  margin-top: 16px;
}

.glsr-review-response:before {
  display: none!important;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers.current {
  display: block;
  padding: 8px 16px;
  color: #fff;
  background-color: #111;
  border: 1px solid #111;
  border-radius: 8px;
}

a.page-numbers {
  display: block;
  padding: 8px 16px;
  color: #111;
  background-color: #fff;
  border: 1px solid #111;
  border-radius: 8px;
}

@media (any-hover: hover) {
  a.page-numbers:hover {
    color: #fff;
    text-decoration: none;
    background-color: #111;
  }
}

a.page-numbers:focus-visible {
  color: #fff;
  text-decoration: none;
  background-color: #111;
}


/*
	faq
/////////////////////////////////////////////////////////*/

.faq__list {
  margin-inline: auto;
  max-width: 1000px;
}

.faq__item {
  padding: 40px;
  border-bottom: 1px solid #C6D3D9;
}

@media not all and (min-width: 768px){
  .faq__item {
    padding: 24px;
  }
}

.faq__dl {
  position: relative;
}

.faq__dl dt::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #0576A7;
  font-size: var(--font-size-40);
  font-weight: 700;
}

.faq__dl dt.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__dl dt {
  position: relative;
  padding-inline: 64px;
  font-size: var(--font-size-18);
  font-weight: 700;
  cursor: pointer;
}

@media not all and (min-width: 768px){
  .faq__dl dt {
    padding-inline: 40px;
  }
}

.faq__dl dt::before {
  content: 'Q';
  position: absolute;
  top: 12px;
  left: 0;
  transform: translateY(-50%);
  color: #0576A7;
  font-size: var(--font-size-40);
  font-weight: 700;
}

@media not all and (min-width: 768px){
  .faq__dl dt::before {
    font-size: var(--font-size-32);
  }
}

.faq__dl dd {
  padding-left: 64px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s ease, opacity .5s ease, padding .5s ease;
}

.faq__dl dt.active + dd {
  padding-block: 24px;
  max-height: fit-content;
  opacity: 1;
}

@media not all and (min-width: 768px){
  .faq__dl dd {
    padding-left: 40px;
  }
}


/*
	column
/////////////////////////////////////////////////////////*/

.column-archive__wrap {
  display: flex;
	flex-wrap: wrap;
  gap: 40px 2%;
}

.column-archive__item {
  width: 32%;
}

@media not all and (min-width: 768px){
  .column-archive__wrap {
    gap: 40px 4%;
  }

  .column-archive__item {
    width: 48%;
  }
}

@media not all and (min-width: 568px){
  .column-archive__wrap {
    gap: 40px 0;
  }

  .column-archive__item {
    width: 100%;
  }
}

.column-archive__item a {
  display: block;
  background-color: #fff;
  border-radius: 32px;
  overflow: hidden;
}

@media (any-hover: hover) {
  .column-archive__item a:hover {
    text-decoration: none;
    background-color: #ddd;
  }
}

.column-archive__item a:focus-visible {
  text-decoration: none;
  background-color: #ddd;
}

.column-archive__thumbnail {
  overflow: hidden;
}

.column-archive__thumbnail img {
  transition: .3s;
}

@media (any-hover: hover) {
  .column-archive__item a:hover .column-archive__thumbnail img {
    transform: scale(1.05);
  }
}

.column-archive__item a:focus-visible .column-archive__thumbnail img {
  transform: scale(1.05);
}

.column-archive__meta {
  padding: 24px;
}

.column-archive__heading {
  margin-bottom: 16px;
  font-size: var(--font-size-18);
}

.column-archive__time {
  display: block;
  margin-bottom: 24px;
  font-size: var(--font-size-14);
}

.column-archive__item a .column-archive__meta::after {
  content: '';
  display: block;
  margin-left: auto;
  width: 56px;
  height: 32px;
  background-image: url(./assets/images/common/button-blue.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.column-single {
  margin-inline: auto;
  padding: 80px 24px;
  max-width: 880px;
  background-color: #fff;
  border-radius: 40px;
}

@media not all and (min-width: 768px){
  .column-single {
    padding: 40px 24px;
    border-radius: 24px;
  }
}

.column-single__header {
  margin-bottom: 64px;
}

.column-single__title {
  margin-bottom: 8px;
  font-size: var(--font-size-32);
}

.column-single__time {
  display: block;
  margin-bottom: 40px;
  font-size: var(--font-size-14);
}

.column-single__thumbnail img {
  border-radius: 32px;
}

@media not all and (min-width: 768px){
  .column-single__header {
    margin-bottom: 40px;
  }

  .column-single__title {
    font-size: var(--font-size-26);
  }

  .column-single__time {
    margin-bottom: 24px;
  }

  .column-single__thumbnail img {
    border-radius: 16px;
  }
}

.column-single__main {
  margin-bottom: 160px;
}

@media not all and (min-width: 768px){
  .column-single__main {
    margin-bottom: 80px;
  }
}

.column-single__main p {
  margin-bottom: 40px;
}

.column-single__main h2 {
  position: relative;
  margin-block: 80px 40px;
  padding-bottom: 24px;
  font-size: var(--font-size-26);
  border-bottom: 2px solid #BCBCBC;
}

.column-single__main h2::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 120px;
  height: 2px;
  background-color: #0576A7;
}

.column-single__main h3 {
  margin-block: 64px 32px;
  font-size: var(--font-size-24);
}

.column-single__main ul {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .column-single__main p {
    margin-bottom: 32px;
  }

  .column-single__main h2 {
    margin-block: 64px 32px;
    padding-bottom: 16px;
    font-size: var(--font-size-24);
  }

  .column-single__main h3 {
    margin-block: 48px 24px;
    font-size: var(--font-size-21);
  }

  .column-single__main ul {
    margin-bottom: 32px;
  }
}

.column-single__main ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 2em;
}

.column-single__main ul li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 14px;
  width: 8px;
  height: 8px;
  background-color: #0576A7;
  border-radius: 50vh;
}


.footer-share {
  display: flex;
	align-items: center;
	flex-wrap: wrap;
  gap: 40px;
  padding: 40px 24px;
  background-color: #D7D7D7;
  border-radius: 16px;
}

@media not all and (min-width: 768px){
  .footer-share {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }
}

.footer-share__heading {
  font-weight: 700;
}

.footer-share__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-share__list li {
  width: 120px;
}

.footer-share__list li a {
  display: grid;
  place-content: center;
  width: 100%;
  height: 48px;
  background-color: #6BCEF9;
  border-radius: 8px;
}

@media not all and (min-width: 768px){
  .footer-share__list {
    gap: 2%;
    width: 100%;
  }

  .footer-share__list li {
    width: 32%;
  }

  .footer-share__list li a {
    height: 40px;
  }
}

@media (any-hover: hover) {
  .footer-share__list li a:hover {
    background-color: #0576A7;
  }
}

.footer-share__list li a:focus-visible {
  background-color: #0576A7;
}

.single-related {
  margin-top: 160px;
  margin-inline: auto;
  max-width: 1200px;
}

.single-related__heading {
  margin-bottom: 40px;
  font-size: var(--font-size-32);
  text-align: center;
}

@media not all and (min-width: 768px){
  .single-related {
    margin-top: 80px;
  }

  .single-related__heading {
    margin-bottom: 32px;
    font-size: var(--font-size-26);
  }
}

.column-single-related .single-related__heading {
  color: #f2f2f2;
}

.single-related .__button a {
  margin-top: 80px;
  margin-inline: auto;
}

@media not all and (min-width: 768px){
  .single-related .__button a {
    margin-top: 40px;
  }
}



/*
	case study
/////////////////////////////////////////////////////////*/

.case-study-archive__wrap {
  display: flex;
	flex-wrap: wrap;
  gap: 40px 2%;
}

.case-study-archive__item {
  width: 32%;
}

@media not all and (min-width: 768px){
  .case-study-archive__wrap {
    gap: 40px 4%;
  }

  .case-study-archive__item {
    width: 48%;
  }
}

@media not all and (min-width: 568px){
  .case-study-archive__wrap {
    gap: 40px 0;
  }

  .case-study-archive__item {
    width: 100%;
  }
}

.case-study-archive__item a {
  display: block;
  background-color: #fff;
  border-radius: 32px;
  overflow: hidden;
}

@media (any-hover: hover) {
  .case-study-archive__item a:hover {
    text-decoration: none;
    background-color: #ddd;
  }
}

.case-study-archive__item a:focus-visible {
  text-decoration: none;
  background-color: #ddd;
}

.case-study-archive__thumbnail {
  overflow: hidden;
}

.case-study-archive__thumbnail img {
  transition: .3s;
}

@media (any-hover: hover) {
  .case-study-archive__item a:hover .case-study-archive__thumbnail img {
    transform: scale(1.05);
  }
}

.case-study-archive__item a:focus-visible .case-study-archive__thumbnail img {
  transform: scale(1.05);
}

.case-study-archive__meta {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.case-study-archive__heading {
  order: 2;
  margin-bottom: 16px;
  font-size: var(--font-size-18);
}

.case-study-archive__company-name {
  order: 1;
  margin-bottom: 8px;
  font-size: var(--font-size-14);
  font-weight: 700;
}

.case-study-archive__item a .case-study-archive__meta::after {
  order: 4;
  content: '';
  display: block;
  margin-left: auto;
  width: 56px;
  height: 32px;
  background-image: url(./assets/images/common/button-blue.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.case-study-single__header {
  margin-bottom: 80px;
}

.case-study-single__title {
  margin-inline: auto;
  width: fit-content;
  margin-bottom: 40px;
  font-size: var(--font-size-40);
}

.case-study-single__thumbnail {
  margin-inline: auto;
  max-width: 880px;
}

.case-study-single__thumbnail img {
  border-radius: 32px;
}

.case-study-single__meta {
  position: relative;
  margin-top: -24px;
  margin-inline: auto;
  padding: 40px;
  max-width: 560px;
  background-color: #CDDDE3;
  border-radius: 24px;
  z-index: 1;
}

.case-study-single__company-name {
  margin-bottom: 24px;
  font-size: var(--font-size-21);
  font-weight: 700;
}

.case-study-single__dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.case-study-single__dl dt {
  width: 120px;
  font-weight: 700;
}

.case-study-single__dl dd {
  width: calc(100% - 120px);
}

@media not all and (min-width: 768px){
  .case-study-single__header {
    margin-bottom: 40px;
  }

  .case-study-single__title {
    margin-bottom: 32px;
    font-size: var(--font-size-26);
  }

  .case-study-single__thumbnail img {
    border-radius: 16px;
  }

  .case-study-single__meta {
    margin-top: 24px;
    padding: 24px;
    border-radius: 16px;
  }

  .case-study-single__company-name {
    margin-bottom: 16px;
    font-size: var(--font-size-18);
  }
}

.case-study-single__main {
  margin-bottom: 160px;
}

@media not all and (min-width: 768px){
  .case-study-single__main {
    margin-bottom: 80px;
  }
}

.case-study-single__main p:not(:last-child) {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .case-study-single__main p:not(:last-child) {
    margin-bottom: 32px;
  }
}

.case-study-single__main h2 {
  margin-block: 80px 40px;
  font-size: var(--font-size-26);
}

.case-study-single__main {
  margin-inline: auto;
  max-width: 880px;
}

.case-study-single__issue-results {
  margin-bottom: 160px;
  padding: 40px;
  background-color: #fff;
  border-radius: 24px;
}

.case-study-single__issue-results-dl {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.case-study-single__issue-results-dl.__issue {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #B6C9D0;
}

.case-study-single__issue-results-dl dt {
  width: 100px;
  font-size: var(--font-size-21);
  font-weight: 700;
}

.case-study-single__issue-results-dl dd {
  width: calc(100% - 100px);
}

.case-study-single__issue-results-dl dt::before {
  content: '';
  display: inline-block;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
	background-position: center;
}

.case-study-single__issue-results-dl.__issue dt::before {
  background-image: url(./assets/images/common/case-study-issue.svg);
  background-size: 18px 13px;
}

.case-study-single__issue-results-dl.__results dt::before {
  background-image: url(./assets/images/common/case-study-result.svg);
  background-size: 17px 19px;
}

@media not all and (min-width: 768px){
  .case-study-single__issue-results {
    margin-bottom: 80px;
    padding: 24px;
    border-radius: 16px;
  }

  .case-study-single__issue-results-dl.__issue {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .case-study-single__issue-results-dl dt {
    margin-bottom: 16px;
    width: 100%;
    font-size: var(--font-size-18);
  }

  .case-study-single__issue-results-dl dd {
    width: 100%;
  }
}

.case-study-single__qa p {
  margin-bottom: 40px;
}

.case-study-single__qa h2 {
  position: relative;
  margin-block: 80px 40px;
  padding-left: 64px;
  color: #0576A7;
  font-size: var(--font-size-21);
}

.case-study-single__qa h2::before {
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #0576A7;
}

.case-study-single__qa img {
	margin: 0 auto 40px;
}

@media not all and (min-width: 768px){
  .case-study-single__qa p {
    margin-bottom: 32px;
  }

  .case-study-single__qa h2 {
    margin-block: 64px 24px;
    padding-left: 48px;
    font-size: var(--font-size-18);
  }

  .case-study-single__qa h2::before {
    top: 13px;
    width: 32px;
  }

  .case-study-single__qa img {
    margin: 0 auto 32px;
  }
}


/*
	seminar
/////////////////////////////////////////////////////////*/

.seminar-archive__wrap {
  margin-inline: auto;
  max-width: 880px;
}

.seminar-archive__item {
  border-top: 1px solid #C6D3D9;
}

.seminar-archive__item:last-child {
  border-bottom: 1px solid #C6D3D9;
}

.seminar-archive__item a {
  display: block;
  position: relative;
  padding: 40px;
}

@media (any-hover: hover) {
  .seminar-archive__item a:hover {
    text-decoration: none;
    background-color: #ddd;
  }
}

.seminar-archive__item a:focus-visible {
  text-decoration: none;
  background-color: #ddd;
}

.seminar-archive__item a::after {
  content: '';
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 56px;
  height: 32px;
  background-image: url(./assets/images/common/button-light.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media not all and (min-width: 568px){
  .seminar-archive__item a::after {
    display: block;
    position: relative;
    bottom: auto;
    right: auto;
    margin-left: auto;
  }
}

.seminar-archive__heading {
  margin-bottom: 32px;
  font-size: var(--font-size-21);
}

.seminar-archive__meta {
  padding-right: 64px;
}

@media not all and (min-width: 568px){
  .seminar-archive__meta {
    padding-right: 0;
  }
}

.seminar-archive__meta-dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4px;
  font-size: var(--font-size-14);
}

.seminar-archive__meta-dl dt {
  width: 80px;
  font-weight: 700;
}

.seminar-archive__meta-dl dd {
  width: calc(100% - 100px);
}


.seminar-single__header {
  margin-bottom: 64px;
}

@media not all and (min-width: 768px){
  .seminar-single__header {
    margin-bottom: 32px;
  }
}

.seminar-single__button {
  margin-inline: auto;
  margin-bottom: 64px;
  width: fit-content;
}

@media not all and (min-width: 768px){
  .seminar-single__button {
    margin-bottom: 32px;
  }
}

.seminar-single__button a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 16px 40px;
  color: #fff;
  font-weight: 700;
  background-color: #0576A7;
  border-radius: 8px;
}

.seminar-single__button a::after {
  content: '';
  display: inline-block;
  width: 56px;
  height: 32px;
  background-image: url(./assets/images/common/button-light.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.seminar-single__title {
  margin-inline: auto;
  margin-bottom: 80px;
  width: fit-content;
  font-size: var(--font-size-40);
}

.seminar-single__meta {
  margin-inline: auto;
  margin-bottom: 80px;
  padding: 40px;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 24px;
}

.seminar-single__meta-heading {
  margin-bottom: 32px;
}

@media not all and (min-width: 768px){
  .seminar-single__title {
    margin-bottom: 40px;
    font-size: var(--font-size-26);
  }

  .seminar-single__meta {
    margin-bottom: 40px;
    padding: 24px;
    border-radius: 16px;
  }

  .seminar-single__meta-heading {
    margin-bottom: 24px;
    font-size: var(--font-size-21);
  }
}

.seminar-single__meta-wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.seminar-single__meta-dl:not(:last-child) {
  margin-bottom: 8px;
}

.seminar-single__meta-item:nth-child(1) {
  width: 150px;
}

.seminar-single__meta-item:nth-child(2) {
  width: calc(100% - 540px);
}

.seminar-single__meta-item:nth-child(3) {
  width: 160px;
}

.seminar-single__meta-item:nth-child(4) {
  width: 160px;
}

@media not all and (min-width: 940px){
  .seminar-single__meta-item:nth-child(1) {
    width: 120px;
  }

  .seminar-single__meta-item:nth-child(2) {
    width: calc(100% - 460px);
  }

  .seminar-single__meta-item:nth-child(3) {
    width: 140px;
  }

  .seminar-single__meta-item:nth-child(4) {
    width: 140px;
  }
}

@media not all and (min-width: 768px){
  .seminar-single__meta-item:nth-child(1) {
    margin-bottom: 24px;
    width: 120px;
  }

  .seminar-single__meta-item:nth-child(2) {
    margin-bottom: 24px;
    width: calc(100% - 150px);
  }

  .seminar-single__meta-item:nth-child(3) {
    width: 48%;
  }

  .seminar-single__meta-item:nth-child(4) {
    width: 48%;
  }
}

@media not all and (min-width: 568px){
  .seminar-single__meta-item:nth-child(1) {
    width: 80px;
  }

  .seminar-single__meta-item:nth-child(2) {
    width: calc(100% - 110px);
  }
}

@media not all and (min-width: 400px){
  .seminar-single__meta-item:nth-child(1) {
    margin-bottom: 24px;
    width: 100%;
  }

  .seminar-single__meta-item:nth-child(2) {
    margin-bottom: 0;
    width: 100%;
  }

  .seminar-single__meta-item:nth-child(3),
  .seminar-single__meta-item:nth-child(4) {
    width: 100%;
  }
}

.seminar-single__meta-speaker-image img {
  border-radius: 8px;
}

.seminar-single__meta-dl dt {
  font-weight: 700;
}

.seminar-single__meta-dl dd {
  font-size: var(--font-size-14);
}

.seminar-single__map {
  margin-inline: auto;
  margin-bottom: 80px;
  max-width: 1000px;
}

.seminar-single__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 6;
  border-radius: 24px;
}

@media not all and (min-width: 568px){
  .seminar-single__map iframe {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
}

.seminar-single__main {
  margin-inline: auto;
  margin-bottom: 80px;
  max-width: 1000px;
}

@media not all and (min-width: 768px){
  .seminar-single__main {
    margin-bottom: 40px;
  }
}

.seminar-single__main p {
  margin-bottom: 40px;
}

.seminar-single__main h2 {
  position: relative;
  margin-block: 80px 40px;
  padding-bottom: 24px;
  font-size: var(--font-size-26);
  border-bottom: 2px solid #BCBCBC;
}

.seminar-single__main h2::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 120px;
  height: 2px;
  background-color: #0576A7;
}

.seminar-single__main h3 {
  margin-block: 64px 32px;
  font-size: var(--font-size-24);
}

.seminar-single__main ul {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .seminar-single__main p {
    margin-bottom: 32px;
  }

  .seminar-single__main h2 {
    margin-block: 64px 32px;
    padding-bottom: 16px;
    font-size: var(--font-size-24);
  }

  .seminar-single__main h3 {
    margin-block: 48px 24px;
    font-size: var(--font-size-21);
  }

  .seminar-single__main ul {
    margin-bottom: 32px;
  }
}

.seminar-single__main ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 2em;
}

.seminar-single__main ul li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 14px;
  width: 8px;
  height: 8px;
  background-color: #0576A7;
  border-radius: 50vh;
}

.seminar-single__form {
  margin-inline: auto;
  padding: 80px;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 24px;
}

@media not all and (min-width: 768px){
  .seminar-single__form {
    padding: 40px;
    border-radius: 16px;
  }
}

.seminar-single__form h2 {
  margin-bottom: 40px;
  font-size: var(--font-size-32);
  text-align: center;
}

.seminar-single__form p {
  margin-bottom: 40px;
}

.seminar-single .__button {
  margin-top: 40px;
}

.seminar-single .__button a {
  margin-inline: auto;
}


/*
	news
/////////////////////////////////////////////////////////*/

.news__wrap {
  display: flex;
	justify-content: space-between;
  flex-direction: row-reverse;
	flex-wrap: wrap;
}

.news__main {
  width: calc(100% - 340px);
}

.news__sidebar {
  width: 280px;
}

@media not all and (min-width: 940px){
  .news__main {
    margin-bottom: 80px;
    width: 100%;
  }

  .news__sidebar {
    width: 100%;
  }
}

.news__sidebar-heading {
  margin-bottom: 24px;
  padding-bottom: 16px;
  font-size: var(--font-size-18);
  border-bottom: 1px solid #C6D3D9;
}

.news__sidebar-list li {
  margin-bottom: 8px;
}

.news__sidebar-list li a {
  display: block;
  position: relative;
  padding-right: 21px;
  background: linear-gradient(#000, #000) 0 100% / 0 2px no-repeat;
  transition: background-size .4s;
}

@media (any-hover: hover) {
  .news__sidebar-list li a:hover {
    text-decoration: none;
    background-size: 100% 2px;
  }
}

.news__taxonomy-title {
  margin-bottom: 32px;
}

.news__sidebar-list li a:focus-visible {
  text-decoration: none;
  background-size: 100% 2px;
}

.news__sidebar-list li a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 15px;
  background-image: url(./assets/images/common/arrow.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.news-archive__item {
  border-top: 1px solid #C6D3D9;
}

.news-archive__item:last-child {
  border-bottom: 1px solid #C6D3D9;
}

.news-archive__item a {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 40px;
}

.news-archive__item a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 56px;
  height: 32px;
  background-image: url(./assets/images/common/button-blue.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

@media (any-hover: hover) {
  .news-archive__item a:hover {
    text-decoration: none;
    background-color: #ddd;
  }
}

.news-archive__item a:focus-visible {
  text-decoration: none;
  background-color: #ddd;
}

@media not all and (min-width: 768px){
  .news-archive__item a {
    padding: 24px;
  }

  .news-archive__item a::after {
    right: 24px;
    width: 32px;
    height: 18px;
  }
}

.news-archive__heading {
  order: 2;
  margin-right: 80px;
  font-size: var(--font-size-21);
}

@media not all and (min-width: 768px){
  .news-archive__heading {
    margin-right: 56px;
    font-size: var(--font-size-18);
  }
}

.news-archive__meta {
  order: '1';
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 16px;
  font-size: var(--font-size-14);
}

.news-single {
  margin-inline: auto;
  padding: 80px 24px;
  max-width: 880px;
  background-color: #fff;
  border-radius: 40px;
}

@media not all and (min-width: 768px){
  .news-single {
    padding: 40px 24px;
    border-radius: 24px;
  }
}

.news-single__header {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 64px;
}

.news-single__title {
  margin-bottom: 8px;
  font-size: var(--font-size-32);
}

.news-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin-bottom: 16px;
  font-size: var(--font-size-14);
}

.news-single__thumbnail img {
  border-radius: 32px;
}

@media not all and (min-width: 768px){
  .news-single__header {
    margin-bottom: 40px;
  }

  .news-single__title {
    font-size: var(--font-size-26);
  }

  .news-single__time {
    margin-bottom: 24px;
  }

  .news-single__thumbnail img {
    border-radius: 16px;
  }
}

.news-single__main {
  margin-bottom: 160px;
}

@media not all and (min-width: 768px){
  .news-single__main {
    margin-bottom: 80px;
  }
}

.news-single__main p {
  margin-bottom: 40px;
}

.news-single__main h2 {
  position: relative;
  margin-block: 80px 40px;
  padding-bottom: 24px;
  font-size: var(--font-size-26);
  border-bottom: 2px solid #BCBCBC;
}

.news-single__main h2::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 120px;
  height: 2px;
  background-color: #0576A7;
}

.news-single__main h3 {
  margin-block: 64px 32px;
  font-size: var(--font-size-24);
}

.news-single__main ul {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .news-single__main p {
    margin-bottom: 32px;
  }

  .news-single__main h2 {
    margin-block: 64px 32px;
    padding-bottom: 16px;
    font-size: var(--font-size-24);
  }

  .news-single__main h3 {
    margin-block: 48px 24px;
    font-size: var(--font-size-21);
  }

  .news-single__main ul {
    margin-bottom: 32px;
  }
}

.news-single__main ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 2em;
}

.news-single__main ul li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 14px;
  width: 8px;
  height: 8px;
  background-color: #0576A7;
  border-radius: 50vh;
}

.news-single-related .__button a {
  background-color: #f1f1f1;
}


/*
	contact / download
/////////////////////////////////////////////////////////*/

.contact__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.contact__description {
  width: 30%;
}

.contact__form {
  width: 65%;
}

@media not all and (min-width: 768px){
  .contact__description {
    margin-bottom: 32px;
    width: 100%;
  }

  .contact__form {
    width: 100%;
  }
}

.contact__description p:not(:last-child) {
  margin-bottom: 40px;
}

@media not all and (min-width: 768px){
  .contact__description p:not(:last-child) {
    margin-bottom: 32px;
  }
}


/*######################################################################

		Footer

************************************************************************/

.footer {
  overflow-x: hidden;
}

.footer-contact {
  position: relative;
  padding: 128px 24px;
  background-color: rgb(9 37 49 / .85);
}

@media not all and (min-width: 768px){
  .footer-contact {
    padding: 64px 24px;
  }
}

.footer-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-image: url(./assets/images/common/footer-contact-bg.jpg);
  background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
  z-index: -1;
}

.footer-contact__contents {
  margin-inline: auto;
  max-width: 720px;
  color: #fff;
}

.footer-contact__heading {
  margin-bottom: 40px;
  text-align: center;
}

.footer-contact__heading .__en {
  display: block;
  color: #6BCEF9;
  font-size: var(--font-size-80);
}

.footer-contact__heading .__JP {
  font-size: var(--font-size-24);
}

.footer-contact__description {
  margin-bottom: 64px;
}

@media not all and (min-width: 768px){
  .footer-contact__heading {
    margin-bottom: 32px;
  }

  .footer-contact__heading .__en {
    font-size: var(--font-size-64);
  }

  .footer-contact__heading .__JP {
    font-size: var(--font-size-21);
  }

  .footer-contact__description {
    margin-bottom: 40px;
  }
}

.footer-contact__button a {
  margin-inline: auto;
}

.__button a {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  padding: 16px 24px;
  max-width: 320px;
  font-weight: 700;
  line-height: 1;
  background-color: #fff;
  border-radius: 50vh;
  transition: all .3s;
}

@media (any-hover: hover) {
  .__button a:hover {
    text-decoration: none;
    background-color: #ddd;
  }
}

.__button a:focus-visible {
  text-decoration: none;
  background-color: #ddd;
}

.__button a::after {
  content: '';
  display: inline-block;
  width: 56px;
  height: 32px;
  background-image: url(./assets/images/common/button-blue.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.cta {
  padding: 160px 24px;
  color: #fff;
  background-color: #051D27;
}

@media not all and (min-width: 768px){
  .cta {
    padding: 80px 24px;
  }
}

.cta__wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-inline: auto;
  max-width: 1200px;
}

.cta__sectence {
  width: 40%;
}

.cta__list {
  width: 55%;
}

@media not all and (min-width: 940px){
  .cta__sectence {
    margin-bottom: 32px;
    width: 100%;
  }

  .cta__list {
    width: 100%;
  }
}

.cta__heading {
  margin-inline: auto;
  margin-bottom: 80px;
  width: fit-content;
  font-size: var(--font-size-40);
}

.cta__description p:not(:last-child) {
  margin-bottom: 32px;
}

@media not all and (min-width: 768px){
  .cta__heading {
    margin-bottom: 40px;
    font-size: var(--font-size-32);
  }
}

.cta__list {
  border-top: 1px solid #5B666A;
}

.cta__list li {
  border-bottom: 1px solid #5B666A;
}

.cta__list li a {
  display: flex;
	justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
  padding: 32px;
  color: #fff;
  font-size: var(--font-size-21);
  font-weight: 700;
  transition: .3s;
}

@media not all and (min-width: 768px){
  .cta__list li a {
    padding: 24px;
    font-size: var(--font-size-18);
  }
}

@media (any-hover: hover) {
  .cta__list li a:hover {
    text-decoration: none;
    background-color: rgb(255 255 255 / .05);
  }
}

.cta__list li a:focus-visible {
  text-decoration: none;
  background-color: rgb(255 255 255 / .05);
}

.cta__list li a::after {
  content: '';
  display: inline-block;
  width: 56px;
  height: 32px;
  background-image: url(./assets/images/common/button-blue.svg);
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.cta__list li a .__text-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media not all and (min-width: 568px){
  .cta__list li a .__text-wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

.cta__list .__qr img {
  width: 124px;
}

.footer-section {
  padding: 80px 24px;
  color: #fff;
  background-color: #021016;
}

.footer-wrap {
  display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  margin-inline: auto;
  margin-bottom: 80px;
  max-width: 1200px;
  color: #fff;
}

.footer-nav {
  width: 640px;
}

@media not all and (min-width: 1026px){
  .footer-nav {
    margin-bottom: 40px;
    width: 100%;
  }

  .footer-company {
    width: 100%;
  }
}

.footer-nav__heading {
  margin-bottom: 24px;
  font-size: var(--font-size-21);
  font-weight: 700;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.footer-nav__list a {
  color: #fff;
}

.footer-company__heading {
  margin-bottom: 24px;
  font-size: var(--font-size-14);
  font-weight: 700;
}

.footer-company__name {
  margin-bottom: 8px;
}

.footer-company__name a {
  color: #fff;
  font-weight: 700;
}

.footer-company__address {
  margin-bottom: 32px;
}

.footer-sns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.fixed-button {
  position: fixed;
  bottom: 128px;
  left: calc(100% - 57px);
}

@media not all and (min-width: 768px){
  .fixed-button {
    bottom: 40px;
  }
}

.fixed-button a {
  display: block;
  padding: 24px 16px;
  color: #fff;
  font-size: var(--font-size-14);
  font-weight: 700;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  background-color: #0576A7;
  border-radius: 24px 0 0 24px;
}

@media (any-hover: hover) {
  .fixed-button a:hover {
    text-decoration: none;
    background-color: #065476;
  }
}

.fixed-button a:focus-visible {
  text-decoration: none;
  background-color: #065476;
}

.footer-text-loop__wrap {
  position: relative;
  margin-bottom: 80px;
  width: 100vw;
  height: 240px;
  overflow-x: hidden;
}

.footer-text-loop {
  display: inline-block;
  position: absolute;
  top: 0;
  color: #052938;
  font-size: 240px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}

@media not all and (min-width: 768px){
  .footer-text-loop__wrap {
    margin-bottom: 40px;
    height: 128px;
  }

  .footer-text-loop {
    bottom: -32px;
    font-size: var(--font-size-128);
  }
}

.copyright {
  text-align: center;
}