@charset "UTF-8";
/***
    The new CSS reset - version 1.5.1 (last updated 1.3.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

h2,
h3 {
  border-top: none;
  border-bottom: none;
  margin: 0;
  outline: unset;
  background-color: unset;
  color: unset;
}
h2::after, h2::before,
h3::after,
h3::before {
  border-top: none;
  border-bottom: none;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly. */
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

::-webkit-scrollbar {
  width: 12px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-color: #029C97;
  border-radius: 16px;
  cursor: pointer;
}

#vk-mobile-nav-menu-btn {
  display: none;
}

/*===============================================
size_regulation
===============================================*/
/*===============================================
font_regulation
===============================================*/
/*===============================================
base
===============================================*/
/*===============================================
header height
===============================================*/
/*===============================================
// title：レスポンシブ
// ＜使い方＞
// @include mq(sm){　color:#FFF; };
// ()の中にlg,md,sm,xsを入れてその時の幅でレスポンシブを指定する
// 汎用的なものになるため、個別の幅での対応は screen and (max-width: 〇〇px) で指定をしてください
===============================================*/
/*===============================================
// title：フレックスボックス
// ＜使い方＞
// @include flex;
// 上記を入れるだけで、ブラウザ対応など可能
===============================================*/
/*===============================================
// title：グリッドボックス
// ＜使い方＞
// @include grid(3, 1fr, $spacing-1, $spacing-1);
// 上記を入れるだけで、3つ以上などの要素を並べたい時使える
===============================================*/
/*===============================================
// title：背景画像
// ＜使い方＞
// @include bg_img_cover;
// 毎回「background-repeat: no-repeat;」などを指定するのは面倒なので、1行追加で背景画像の調整ができるようにした
// 基本的には背景の位置やサイズの変更がない限りは使用できる
===============================================*/
/*===============================================
// title：背景画像
// ＜使い方＞
// @include gradient(#ff00ff, #ff00cc, vertical);
// 2色のグラデーションであれば、vertical、horizontal、radialの全てに対応可能
// vertical（上から下）
// horizontal（左から右）
// radial（円形）
===============================================*/
/*===============================================
// title：背景用の三角形のオブジェクト挿入
// ＜使い方＞
// @include bg_triangle(40px, #fff);
// beforeとafterの三角形の高さと幅、色が決まる（二等辺三角形専用）
===============================================*/
.tx_xxs {
  font-size: 1.2rem;
}
.tx_xs {
  font-size: 1.4rem;
}
.tx_ss {
  font-size: 1.6rem;
}
.tx_sm {
  font-size: 1.8rem;
}
.tx_md {
  font-size: 2rem;
}
.tx_lg {
  font-size: 2.2rem;
}
.tx_ll {
  font-size: 2.4rem;
}
.tx_xl {
  font-size: 2.6rem;
}
.tx_xxl {
  font-size: 2.8rem;
}

body {
  background-color: #ffffff;
  color: #222222;
  font-family: "Noto Sans JP", "Inter", sans-serif;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
}

body,
html {
  font-size: 62.5%;
  line-height: 1.7;
}

a,
button {
  border: none;
  color: #029C97;
  cursor: pointer;
  transition: 0.3s;
  outline: none;
  text-decoration: none;
}
a:link, a:visited,
button:link,
button:visited {
  color: inherit;
}
a:hover, a:active,
button:hover,
button:active {
  color: inherit;
  cursor: pointer;
}
a:focus,
button:focus {
  outline: 1px solid #029C97;
}
a img,
button img {
  border: none;
}

img {
  border: 0;
  height: auto;
  pointer-events: none;
  vertical-align: middle;
  width: 100%;
}

iframe {
  width: 100%;
}

ul,
ol,
li {
  font-size: 0;
  list-style: none;
}

section {
  margin: 0;
}

h1,
h3 {
  font-weight: 900;
}

h2 {
  font-weight: 900;
  font-size: 4.4rem;
}
@media screen and (max-width: 960px) {
  h2 {
    font-size: 2.8rem;
  }
}

/*===============================================
common
===============================================*/
.ly_wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}
.ly_wrapper .ly_main {
  flex: 1;
}

.ly_main {
  margin: 0 auto;
  width: 100%;
}

.ly_inner {
  margin: 0 auto;
  height: 100%;
  width: 1248px;
  max-width: 1536px;
}
@media screen and (max-width: 1200px) {
  .ly_inner {
    width: 88%;
  }
}
@media screen and (max-width: 960px) {
  .ly_inner {
    width: 90%;
  }
}

@media screen and (max-width: 960px) {
  .only_pc {
    display: none;
  }
}

.only_sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .only_sp {
    display: block;
  }
}

/*===============================================
top view
===============================================*/
section.top_view {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  padding: 8rem 2rem 10rem;
}
section.top_view .top_view__bg {
  position: absolute;
  inset: -12px -91px 35% -91px;
  overflow: hidden;
  z-index: 0;
  filter: blur(1px) brightness(0.7);
  transform: scale(1.01);
  transform-origin: center;
}
section.top_view .top_view__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}
section.top_view .top_view__bg .top_view__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.8;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  section.top_view .top_view__bg {
    inset: -12px -200px auto -16px;
    height: 280px;
  }
}
section.top_view .top_view__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 960px) {
  section.top_view .top_view__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (max-width: 960px) {
  section.top_view .top_view__inner {
    align-items: flex-start;
  }
}
section.top_view .top_view__texts {
  max-width: 540px;
}
@media screen and (max-width: 960px) {
  section.top_view .top_view__texts {
    width: 100%;
    text-align: left;
    padding-left: 0.5rem;
    align-self: flex-start;
  }
}
section.top_view .top_view__balloons {
  display: inline-flex;
  flex-direction: column;
}
section.top_view .top_view__balloons .balloon {
  display: inline-block;
  background: rgb(255, 122, 89);
  color: #fff;
  padding: 0.3rem 1.6rem;
  border-radius: 20px;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  position: relative;
  margin-right: 0.8rem;
}
section.top_view .top_view__balloons .balloon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 20px;
  border-width: 8px 8px 0 8px;
  border-style: solid;
  border-color: rgb(255, 122, 89) transparent transparent transparent;
}
section.top_view .top_view__balloons .balloon:nth-child(1) {
  transform: translateX(8px);
}
section.top_view .top_view__balloons .balloon:nth-child(2) {
  transform: translateX(50px);
}
@media screen and (max-width: 960px) {
  section.top_view .top_view__balloons {
    align-items: flex-start;
  }
  section.top_view .top_view__balloons .balloon {
    padding: 0.2rem 0.8rem;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }
}
section.top_view .top_view__lead {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}
section.top_view .top_view__lead strong {
  color: #fff;
}
section.top_view .top_view__catch {
  font-size: 2.8rem;
  font-weight: 700;
  color: #008a7d;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  line-height: 1.1;
  position: relative;
  z-index: 4;
}
section.top_view .top_view__catch .top_view__catch-line {
  display: inline-block;
  white-space: nowrap;
  background: #fff;
  padding: 1rem 2rem;
  color: rgb(2, 156, 151);
  border-left: none;
  line-height: 1.1;
}
section.top_view .top_view__catch .top_view__catch-line + .top_view__catch-line {
  margin-top: -0.2rem;
}
section.top_view .top_view__image {
  margin-top: 3.2rem;
}
@media (min-width: 960px) {
  section.top_view .top_view__image {
    margin-top: 0;
  }
}
section.top_view .top_view__image .top_view__image {
  max-width: 480px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  section.top_view .top_view__image {
    position: absolute;
    right: -10%;
    bottom: -20%;
    max-width: 45%;
    margin-top: 0;
    z-index: 3;
  }
  section.top_view .top_view__image .top_view__image {
    max-width: 100%;
  }
}
section.top_view .top_view__cards {
  position: relative;
  max-width: 1080px;
  width: calc(100% - 4rem);
  margin: 0 auto -5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  z-index: 3;
}
@media (min-width: 960px) {
  section.top_view .top_view__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
    transform: translateY(-5%);
  }
}
@media (min-width: 1200px) {
  section.top_view .top_view__cards {
    transform: translateY(-40%);
  }
}
@media screen and (max-width: 960px) {
  section.top_view .top_view__cards {
    width: 100%;
    max-width: 520px;
    margin: -1.5rem auto -3.5rem;
    transform: translateY(5%);
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}
section.top_view .top_view__card {
  background: #fff;
  border-radius: 12px;
  padding: 1.6rem;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.11);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
section.top_view .top_view__card .top_view__card-label {
  color: rgb(255, 122, 89);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
  text-align: center;
}
section.top_view .top_view__card .top_view__card-label--accent {
  color: rgb(255, 122, 89);
}
section.top_view .top_view__card .top_view__card-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 720px) {
  section.top_view .top_view__card .top_view__card-body {
    grid-template-columns: 220px 1fr;
  }
}
@media screen and (max-width: 960px) {
  section.top_view .top_view__card .top_view__card-body {
    grid-template-columns: 110px 1fr;
    gap: 0.8rem;
  }
}
section.top_view .top_view__card .top_view__card-texts {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  order: 2;
}
section.top_view .top_view__card .top_view__card-title {
  font-size: 2rem;
  font-weight: 700;
  color: #444;
  margin: 0;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  section.top_view .top_view__card .top_view__card-title {
    font-size: 1.8rem;
  }
}
section.top_view .top_view__card .top_view__card-desc {
  font-size: 1.4rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  section.top_view .top_view__card .top_view__card-desc {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
section.top_view .top_view__card .top_view__card-button {
  display: inline-block;
  text-align: center;
  padding: 0.8rem 1.6rem;
  background: rgb(2, 156, 151);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.4rem;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 3px 3px 25px 7px rgba(8, 100, 97, 0.32);
}
section.top_view .top_view__card .top_view__card-button:hover {
  background: #008173;
}
section.top_view .top_view__card .top_view__card-button--outline {
  background: transparent;
  color: rgb(2, 156, 151);
  border-color: rgb(2, 156, 151);
}
section.top_view .top_view__card .top_view__card-button--outline:hover {
  background: #e5f4f1;
}
section.top_view .top_view__card .top_view__card-image {
  text-align: left;
  order: 1;
}
section.top_view .top_view__card .top_view__card-image .top_view__card-image-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: 0;
}
@media screen and (max-width: 960px) {
  section.top_view .top_view__card .top_view__card-image {
    border-radius: 16px;
    padding: 0.8rem 1.6rem;
  }
}
@media screen and (max-width: 960px) {
  section.top_view {
    padding: 6rem 1.2rem 6rem;
  }
  section.top_view .top_view__bg {
    inset: 0px -200px auto -16px;
    height: 280px;
  }
  section.top_view .top_view__inner {
    align-items: flex-start;
  }
  section.top_view .top_view__image {
    position: absolute;
    right: -10%;
    bottom: -20%;
    max-width: 50%;
    margin-top: 0;
  }
  section.top_view .top_view__image .top_view__image {
    max-width: 100%;
  }
  section.top_view .top_view__texts {
    width: 100%;
    text-align: left;
    padding-left: 0.5rem;
    align-self: flex-start;
  }
  section.top_view .top_view__balloons {
    align-items: flex-start;
  }
  section.top_view .top_view__balloons .balloon {
    padding: 0.2rem 0.8rem;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }
  section.top_view .top_view__cards {
    width: 100%;
    max-width: 520px;
    margin: -1.5rem auto -3.5rem;
    transform: translateY(5%);
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  section.top_view .top_view__card {
    border-radius: 16px;
    padding: 0.8rem 1.6rem;
  }
  section.top_view .top_view__card-body {
    grid-template-columns: 110px 1fr;
    gap: 0.8rem;
  }
  section.top_view .top_view__card-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  section.top_view .top_view__card-desc {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  section.top_view .top_view__card-button {
    width: 100%;
  }
  section.top_view .top_view__catch .top_view__catch-line {
    font-size: 1.8rem;
    padding: 0.6rem 1.4rem;
  }
}

/*===============================================
top logo list
===============================================*/
section.top_logo_list {
  background-color: #fff;
  margin-top: -130px;
}
@media screen and (max-width: 1200px) {
  section.top_logo_list {
    margin-top: -50px;
  }
}
@media screen and (max-width: 960px) {
  section.top_logo_list {
    margin-top: 0;
  }
}
@media screen and (max-width: 640px) {
  section.top_logo_list {
    margin-top: 16px;
  }
}
section.top_logo_list .section_container {
  padding: 2rem 14rem;
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 8px 32px 16px;
  max-width: 980px;
  margin: auto;
}
@media screen and (max-width: 960px) {
  section.top_logo_list .section_container {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
section.top_logo_list .section_container .logo_list {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 980px;
  text-align: center;
}
@media screen and (max-width: 640px) {
  section.top_logo_list .section_container .logo_list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    justify-content: center;
    justify-items: center;
  }
}
section.top_logo_list .section_container .logo_list .logo_item {
  flex: 0 0 152px;
  width: 152px;
  height: 82px;
  padding: 14px 16px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0;
}
@media screen and (max-width: 960px) {
  section.top_logo_list .section_container .logo_list .logo_item {
    flex: 0 0 120px;
    width: 120px;
    height: 64px;
    padding: 10px 12px;
  }
}
@media screen and (max-width: 640px) {
  section.top_logo_list .section_container .logo_list .logo_item {
    width: 100%;
    max-width: 152px;
    grid-column: span 2;
    justify-self: center;
  }
}
section.top_logo_list .section_container .logo_list .logo_item img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
section.top_logo_list .section_container .logo_list .logo_item:nth-child(1) img {
  transform: scale(1);
}
section.top_logo_list .section_container .logo_list .logo_item:nth-child(2) img {
  transform: scale(0.9);
}
section.top_logo_list .section_container .logo_list .logo_item:nth-child(3) img {
  transform: scale(1.2);
}
section.top_logo_list .section_container .logo_list .logo_item:nth-child(4) img {
  transform: scale(1.05);
}
section.top_logo_list .section_container .logo_list .logo_item:nth-child(5) img {
  transform: scale(1.5);
}
@media screen and (max-width: 640px) {
  section.top_logo_list .section_container .logo_list .logo_item:nth-child(4) {
    grid-column: 2/span 2;
  }
  section.top_logo_list .section_container .logo_list .logo_item:nth-child(5) {
    grid-column: 4/span 2;
  }
}

/*===============================================
top usecase
===============================================*/
.usecase {
  background: #fff;
  color: #222222;
  margin: 8rem auto;
}
.usecase__inner {
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .usecase__inner {
    max-width: 720px;
  }
}
.usecase__title {
  text-align: center;
  font-size: clamp(1.4rem, 3.8vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 5.6rem;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .usecase__title {
    font-size: clamp(1.4rem, 4.5vw, 2rem);
    margin-bottom: 3.2rem;
    white-space: nowrap;
  }
}
.usecase__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
}
@media screen and (max-width: 1200px) {
  .usecase__flex {
    gap: 1.2rem;
    max-width: 940px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .usecase__flex {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    justify-items: center;
  }
}
.usecase__card {
  width: 240px;
  max-width: 240px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .usecase__card {
    width: 180px;
    max-width: 180px;
  }
}
@media screen and (max-width: 640px) {
  .usecase__card {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }
}
.usecase__card img {
  width: 100%;
  height: 141px;
  margin-bottom: 1.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 1200px) {
  .usecase__card img {
    height: 110px;
  }
}
@media screen and (max-width: 640px) {
  .usecase__card img {
    height: 90px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 0.8rem;
  }
}
.usecase__card h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 640px) {
  .usecase__card h3 {
    font-size: 1.2rem;
    min-height: 0;
    width: 100%;
    white-space: normal;
  }
}
.usecase__card p {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  .usecase__card p {
    font-size: 1.2rem;
    text-align: left;
    flex: 1;
    min-height: 4.8rem;
  }
}
@media screen and (max-width: 640px) {
  .usecase {
    margin: 4rem auto;
    padding: 0 1.2rem;
  }
}

/*===============================================
top problems
===============================================*/
section.problems {
  color: #222222;
}
@media screen and (max-width: 1200px) {
  section.problems {
    padding: 0 24px 56px;
  }
}
@media screen and (max-width: 640px) {
  section.problems {
    padding: 0 16px 48px;
  }
}
section.problems .problems__inner {
  max-width: 1080px;
  margin: 0 auto;
  background-color: #ADD9D8;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 0 20px rgba(39, 114, 73, 0.5019607843);
}
@media screen and (max-width: 1200px) {
  section.problems .problems__inner {
    box-shadow: none;
  }
}
@media screen and (max-width: 640px) {
  section.problems .problems__inner {
    padding: 30px 14px;
  }
}
section.problems .problems__title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media screen and (max-width: 1200px) {
  section.problems .problems__title {
    font-size: 2.8rem;
    line-height: 1.4;
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1200px) and (max-width: 640px) {
  section.problems .problems__title {
    font-size: 1.8rem;
    line-height: 1.3;
    max-width: 32ch;
  }
}
section.problems .problems__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
}
@media screen and (max-width: 1200px) {
  section.problems .problems__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
section.problems .problems__item {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  section.problems .problems__item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "icon heading" "text text";
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 12px;
    align-items: center;
  }
}
section.problems .problems__icon-wrapper {
  border-radius: 9999px;
  background-color: #fff;
  min-width: 104px;
  max-width: 104px;
  min-height: 104px;
  max-height: 104px;
  margin-right: 16px;
}
@media screen and (max-width: 1200px) {
  section.problems .problems__icon-wrapper {
    grid-area: icon;
    margin-right: 0;
    min-width: 72px;
    max-width: 72px;
    min-height: 72px;
    max-height: 72px;
    align-self: center;
  }
}
@media screen and (max-width: 1200px) and (max-width: 640px) {
  section.problems .problems__icon-wrapper {
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
  }
}
section.problems .problems__icon-wrapper .problems__icon {
  border-radius: 9999px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  section.problems .problems__content {
    display: contents;
  }
}
section.problems .problems__content .problems__content-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  padding-top: unset;
}
@media screen and (max-width: 1200px) {
  section.problems .problems__content .problems__content-heading {
    grid-area: heading;
    margin-bottom: 0;
    font-size: 1.4rem;
    line-height: 1.35;
    max-width: 30ch;
    align-self: center;
  }
}
@media screen and (max-width: 1200px) and (max-width: 640px) {
  section.problems .problems__content .problems__content-heading {
    font-size: 1.4rem;
    line-height: 1.25;
    max-width: 30ch;
  }
}
section.problems .problems__content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  section.problems .problems__content ul {
    grid-area: text;
  }
}
section.problems .problems__content .problems__content-text {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 4px;
  line-height: 1;
  font-size: 1.2rem;
}
section.problems .problems__content .problems__content-text::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/*===============================================
top feature
===============================================*/
section.feature {
  padding: 4rem 1.6rem;
  background-color: #F5FBF8;
  color: #222222;
  margin-top: 80px;
}
@media screen and (max-width: 640px) {
  section.feature {
    padding: 3.2rem 1.6rem;
    margin-top: 4rem;
  }
}
section.feature .feature__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
section.feature .feature__title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 3.2rem;
  font-weight: 900;
}
section.feature .feature__title--sub {
  color: #029C97;
  display: block;
}
@media screen and (max-width: 640px) {
  section.feature .feature__title {
    font-size: 2.8rem;
    line-height: 1.5;
    margin-bottom: 1.6rem;
  }
  section.feature .feature__title .feature__title--sub {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 0;
    line-height: 0;
    color: transparent;
    position: relative;
  }
  section.feature .feature__title .feature__title--sub::after {
    content: "簡単にマニュアル化、\a生産性を向上";
    white-space: pre;
    color: #029C97;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
section.feature .feature__content {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 24px;
}
@media screen and (max-width: 640px) {
  section.feature .feature__content {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
section.feature .feature__content .feature_image-wrapper {
  position: relative;
  isolation: isolate;
}
section.feature .feature__content .feature_image-wrapper .feature__dots {
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  max-width: 520px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  pointer-events: none;
  z-index: 0;
}
section.feature .feature__content .feature_image-wrapper .feature__dots .feature__dot {
  position: relative;
}
section.feature .feature__content .feature_image-wrapper .feature__dots .feature__dot-img {
  display: block;
  width: 40px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
section.feature .feature__content .feature_image-wrapper .feature__dots--center .feature__dot-img {
  width: 7px;
  height: 74px;
  opacity: 0.9;
}
section.feature .feature__content .feature_image-wrapper .feature__dots .feature__dot--left {
  transform: translateX(-17px);
}
section.feature .feature__content .feature_image-wrapper .feature__dots .feature__dot--right {
  transform: translateX(17px);
}
@media screen and (max-width: 640px) {
  section.feature .feature__content .feature_image-wrapper .feature__dots {
    max-width: 320px;
    top: calc(5.6rem - 2px);
    gap: 3.2rem;
  }
  section.feature .feature__content .feature_image-wrapper .feature__dots .feature__dot-img {
    width: 32px;
    height: 40px;
  }
  section.feature .feature__content .feature_image-wrapper .feature__dots--center .feature__dot-img {
    width: 6px;
    height: 60px;
    opacity: 0.9;
  }
  section.feature .feature__content .feature_image-wrapper .feature__dots .feature__dot--left {
    transform: translateX(-10px);
  }
  section.feature .feature__content .feature_image-wrapper .feature__dots .feature__dot--right {
    transform: translateX(10px);
  }
}
section.feature .feature__content .feature_image-wrapper .feature__icons {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 3.2rem;
  max-width: 520px;
  margin: 0 auto 2rem;
  padding: 0;
  list-style: none;
  transform: translateY(12px);
}
section.feature .feature__content .feature_image-wrapper .feature__icons .feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FF7A59;
  border-radius: 9999px;
  width: 72px;
  height: 72px;
  font-weight: 700;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.2;
  box-shadow: 0px 2.36px 0px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 3;
  margin: 0;
}
@media screen and (max-width: 640px) {
  section.feature .feature__content .feature_image-wrapper .feature__icons {
    justify-content: center;
    max-width: 320px;
    margin: 0 auto 1.6rem;
    gap: 3.2rem;
  }
  section.feature .feature__content .feature_image-wrapper .feature__icons .feature__icon {
    width: 5.6rem;
    height: 5.6rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}
section.feature .feature__content .feature_image-wrapper .feature__image {
  max-width: 600px;
  margin: 0 auto 2.4rem;
  position: relative;
  z-index: 2;
}
section.feature .feature__content .feature_image-wrapper .feature__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 640px) {
  section.feature .feature__content .feature_image-wrapper .feature__image {
    max-width: 360px;
    margin: 0 auto 1.6rem;
  }
}
section.feature .feature__content .feature__text .feature__lead {
  font-size: 2.4rem;
  color: #029C97;
  font-weight: 700;
  margin-bottom: 1.6rem;
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  section.feature .feature__content .feature__text .feature__lead {
    max-width: 38ch;
    width: 38ch;
    position: relative;
    color: transparent;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  section.feature .feature__content .feature__text .feature__lead::after {
    content: "サクサク動く使いやすいデジタルマニュアルで、\a現場業務の効率化をサポート";
    color: #029C97;
    position: absolute;
    inset: 0;
    white-space: pre-line;
    font-size: 1.8rem;
    line-height: 1.5;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  section.feature .feature__content .feature__text .feature__lead {
    font-size: 1.8rem;
    max-width: 23ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    word-break: keep-all;
    position: relative;
    color: transparent;
  }
  section.feature .feature__content .feature__text .feature__lead::after {
    content: "サクサク動く使いやすい\aデジタルマニュアルで、\a現場業務の効率化をサポート";
    color: #029C97;
    position: absolute;
    inset: 0;
  }
}
@media screen and (max-width: 960px) {
  section.feature .feature__content .feature__text .feature__lead {
    font-size: 1.8rem;
    max-width: 23ch;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    word-break: keep-all;
    position: relative;
    color: transparent;
  }
  section.feature .feature__content .feature__text .feature__lead::after {
    content: "サクサク動く使いやすい\aデジタルマニュアルで、\a現場業務の効率化をサポート";
    color: #029C97;
    position: absolute;
    inset: 0;
  }
}
section.feature .feature__content .feature__text .feature__points {
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid #222222;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 16px;
}
@media screen and (max-width: 960px) {
  section.feature .feature__content .feature__text .feature__points {
    margin-top: 3.2rem;
  }
}
section.feature .feature__content .feature__text .feature__points ul {
  text-align: left;
  display: inline-block;
}
section.feature .feature__content .feature__text .feature__points ul li {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 0;
}
section.feature .feature__content .feature__text .feature__points ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 640px) {
  section.feature .feature__content .feature__text .feature__points {
    width: 100%;
    max-width: 320px;
    padding: 1.6rem;
    margin-top: 3.2rem;
  }
  section.feature .feature__content .feature__text .feature__points ul li {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
section.feature .feature__content .feature__text .feature__description {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.6;
  margin-top: 16px;
}
@media screen and (max-width: 640px) {
  section.feature .feature__content .feature__text .feature__description {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-top: 0.8rem;
    margin-bottom: 0;
  }
}
section.feature .feature__buttons {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
section.feature .feature__buttons > div {
  width: 374px;
}
@media screen and (max-width: 640px) {
  section.feature .feature__buttons > div {
    width: 100%;
    max-width: 320px;
  }
}
@media screen and (max-width: 960px) {
  section.feature .feature__buttons {
    flex-wrap: nowrap;
    gap: 1.6rem;
  }
  section.feature .feature__buttons > div {
    width: 374px;
  }
}
@media screen and (max-width: 640px) {
  section.feature .feature__buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2.4rem;
  }
}
section.feature .feature__buttons .feature__button-annotation {
  color: #FF7A59;
  font-weight: 900;
  font-size: 1.6rem;
}
@media screen and (max-width: 640px) {
  section.feature .feature__buttons .feature__button-annotation {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
}
section.feature .feature__buttons .feature__button {
  border-radius: 9999px;
  padding: 1.6rem 2.4rem;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  box-shadow: 0 0 20px rgba(39, 114, 73, 0.5019607843);
}
@media screen and (max-width: 640px) {
  section.feature .feature__buttons .feature__button {
    font-size: 1.6rem;
    padding: 1.6rem 1.6rem;
  }
}
section.feature .feature__buttons .feature__button--trial {
  background-color: #029C97;
  color: #fff;
}
section.feature .feature__buttons .feature__button--download {
  border: 2px solid #029C97;
  color: #029C97;
  background-color: #fff;
}

/*===============================================
top feature detail
===============================================*/
section.feature_detail {
  padding: 80px 20px;
  background: #fff;
  color: #222222;
}
@media screen and (max-width: 960px) {
  section.feature_detail {
    padding: 70px 20px 20px;
  }
}
@media screen and (max-width: 640px) {
  section.feature_detail {
    padding: 60px 16px 16px;
  }
}
section.feature_detail .feature_detail__inner {
  max-width: 1080px;
  margin: 0 auto;
}
section.feature_detail .feature_detail__title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 45px;
}
@media screen and (max-width: 640px) {
  section.feature_detail .feature_detail__title {
    font-size: clamp(27px, 5vw, 3.2rem);
    white-space: nowrap;
  }
}
section.feature_detail .feature_detail__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 64px;
}
@media screen and (max-width: 960px) {
  section.feature_detail .feature_detail__item {
    margin-bottom: 52px;
  }
}
section.feature_detail .feature_detail__item:last-child {
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  section.feature_detail .feature_detail__item:last-child {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 640px) {
  section.feature_detail .feature_detail__item:last-child {
    margin-bottom: 24px;
  }
}
section.feature_detail .feature_detail__item.is_reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  section.feature_detail .feature_detail__item {
    flex-direction: column;
  }
  section.feature_detail .feature_detail__item.is_reverse {
    flex-direction: column;
  }
}
section.feature_detail .feature_detail__image-wrapper {
  position: relative;
  flex: 1;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: visible;
}
section.feature_detail .feature_detail__image-wrapper img,
section.feature_detail .feature_detail__image-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 4px 4px 0 rgba(34, 34, 34, 0.2666666667);
}
section.feature_detail .feature_detail__badge {
  position: absolute;
  top: -16px;
  left: -16px;
  background: #029C97;
  color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
section.feature_detail .feature_detail__badge .label {
  font-size: 1.4rem;
  font-weight: 700;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1.5;
}
section.feature_detail .feature_detail__badge .num {
  font-size: 4.4rem;
  font-weight: 700;
  position: absolute;
  right: 14px;
  top: 46%;
  transform: translateY(-50%);
  line-height: 1;
}
section.feature_detail .feature_detail__textblock {
  margin: auto;
  flex: 1;
}
section.feature_detail .feature_detail__heading {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  section.feature_detail .feature_detail__heading {
    font-size: 1.8rem;
  }
}
section.feature_detail .feature_detail__text {
  font-size: 1.6rem;
  line-height: 1.2;
}

/*===============================================
top feature list
===============================================*/
section.feature_list {
  background: rgb(245, 251, 248);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
section.feature_list .feature_list_inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
section.feature_list .feature_list_title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 48px;
  display: block;
  line-height: 1.3;
  color: #222222;
}
section.feature_list .feature_list_title__line {
  display: inline;
  white-space: nowrap;
}
section.feature_list .feature_list_title__br {
  display: none;
}
@media screen and (max-width: 640px) {
  section.feature_list .feature_list_title__line {
    display: block;
    line-height: 1.2;
  }
}
section.feature_list .feature_list_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: auto;
  width: 100%;
  max-width: 992px;
}
@media screen and (max-width: 960px) {
  section.feature_list .feature_list_grid {
    max-width: none;
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
  }
  section.feature_list .feature_list__card {
    width: 100%;
    max-width: none;
  }
  section.feature_list .feature_list__top {
    padding: 0 16px;
  }
  section.feature_list .feature_list__image {
    left: 50%;
    transform: translateX(-50%);
  }
  section.feature_list .feature_list__image.trim {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 960px) {
  section.feature_list .feature_list__top {
    padding: 0 16px;
  }
}
section.feature_list .feature_list__decor {
  display: block;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
section.feature_list .feature_list__decor--1 {
  width: 300px;
  height: auto;
  top: 45px;
  left: calc(50% - 640px);
  opacity: 0.1;
}
section.feature_list .feature_list__decor--2 {
  width: 360px;
  height: auto;
  top: -60px;
  left: calc(50% + 455px);
}
section.feature_list .feature_list__decor--3 {
  width: 220px;
  height: auto;
  top: 680px;
  left: 50%;
  transform: translateX(170%);
}
section.feature_list .feature_list__decor--4 {
  width: 200px;
  height: auto;
  top: 650px;
  left: calc(50% - 650px);
}
section.feature_list .feature_list__decor--5 {
  width: 200px;
  height: auto;
  top: 420px;
  left: calc(50% + 680px);
}
@media screen and (max-width: 960px) {
  section.feature_list .feature_list__decor {
    display: none;
  }
  section.feature_list .feature_list__corner {
    border-top-width: 130px;
    border-right-width: 130px;
  }
}
section.feature_list .feature_list__card {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgb(238, 238, 238);
  display: flex;
  flex-direction: column;
}
section.feature_list .feature_list__card .feature_list__top {
  position: relative;
  background: rgb(244, 248, 251);
  padding: 0;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}
section.feature_list .feature_list__card .feature_list__corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 64px solid #029C97;
  border-right: 64px solid transparent;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  section.feature_list .feature_list__card .feature_list__corner {
    border-top-width: 130px;
    border-right-width: 130px;
  }
}
@media screen and (max-width: 640px) {
  section.feature_list .feature_list__card .feature_list__corner {
    border-top-width: 64px;
    border-right-width: 64px;
  }
}
section.feature_list .feature_list__card .feature_list__image {
  width: auto;
  max-height: 80%;
  max-width: 100%;
  height: auto;
  position: relative;
  inset: auto;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
}
section.feature_list .feature_list__card .feature_list__image.trim {
  position: absolute;
  width: 88%;
  height: 88%;
  right: 0;
  bottom: 0;
  left: auto;
  top: auto;
  margin: 0;
  max-width: none;
  max-height: none;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
  transform: none;
  z-index: 3;
}
section.feature_list .feature_list__card:nth-child(-n+4) .feature_list__image.trim {
  width: 95%;
  height: 92%;
  border-radius: 0;
  border-top-left-radius: 9px;
}
section.feature_list .feature_list__card:nth-last-child(-n+2) .feature_list__image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
section.feature_list .feature_list__card .feature_list__bottom {
  background: #fff;
  padding: 16px;
  text-align: center;
}
section.feature_list .feature_list__card .feature_list__heading {
  font-size: 1.6rem;
  font-weight: 700;
  max-width: 26ch;
  margin: 0 auto 8px;
}
section.feature_list .feature_list__card .feature_list__text {
  font-size: 1.4rem;
  line-height: 1.2;
}

/*===============================================
top case
===============================================*/
section.case {
  padding: 80px 20px;
  background: #fff;
}
@media screen and (max-width: 640px) {
  section.case {
    padding: 64px 12px;
  }
}
section.case .case__inner {
  max-width: 880px;
  margin: 0 auto;
}
section.case .case__title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 48px;
}
section.case .case__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
section.case .case__item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 16px 32px 12px;
  border: 1px solid #CCCCCC;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}
@media screen and (max-width: 640px) {
  section.case .case__item {
    flex-direction: column;
    align-items: center;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 12px 10px;
  }
}
section.case .case__logo {
  flex-shrink: 0;
  width: 160px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-right: 24px;
  margin-right: 24px;
}
section.case .case__logo::after {
  content: "";
  position: absolute;
  top: -20px;
  bottom: -20px;
  right: 0;
  width: 1px;
  background: rgb(238, 238, 238);
}
section.case .case__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 640px) {
  section.case .case__logo {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-right: 0;
    margin-right: 0;
  }
  section.case .case__logo img {
    width: auto;
    height: 44px;
    max-width: 100%;
  }
  section.case .case__logo::after {
    content: "";
    position: static;
    display: block;
    width: 200%;
    height: 1px;
    background: rgb(238, 238, 238);
    margin: 0;
    align-self: center;
  }
  section.case .case__logo.case__logo--aisin {
    gap: 0;
  }
  section.case .case__logo.case__logo--aisin img {
    transform: scale(0.8);
    transform-origin: center;
  }
}
section.case .case__content {
  flex: 1;
}
section.case .case__heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  section.case .case__heading {
    font-size: 0;
    line-height: 0;
    color: transparent;
  }
  section.case .case__heading::after {
    content: "教育時間の短縮や習熟度の向上を実現。\a社内向けのデジタル要領書としてご活用。";
    white-space: pre;
    font-size: calc(1.8rem - 0.2rem);
    font-weight: 700;
    line-height: 1.6;
    color: #222222;
    display: block;
    margin: 0 auto;
  }
}
section.case .case__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 8px;
}
@media screen and (max-width: 640px) {
  section.case .case__text {
    font-size: calc(1.6rem - 0.2rem);
    padding: 0 4px;
  }
}
section.case .case__company {
  text-align: right;
  font-size: 1.6rem;
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  section.case .case__company {
    font-size: calc(1.6rem - 0.2rem);
  }
}

/*===============================================
top how to use
===============================================*/
section.how_to_use {
  background: #fff;
  padding: 8rem 20px;
  font-weight: 500;
}
section.how_to_use .how_to_use__inner {
  max-width: 1200px;
  margin: 0 auto;
}
section.how_to_use .how_to_use__title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 4rem;
  color: #003030;
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__title {
    font-size: 2.6rem;
    white-space: nowrap;
    margin-bottom: 2.4rem;
  }
}
section.how_to_use .how_to_use__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 0;
       column-gap: 0;
  max-width: 1160px;
  margin: 0 auto;
  transform: translateX(20px);
}
@media screen and (max-width: 1200px) {
  section.how_to_use .how_to_use__grid {
    max-width: 1160px;
    transform: translateX(0);
    -moz-column-gap: 0;
         column-gap: 0;
    padding: 0;
  }
}
@media screen and (max-width: 960px) {
  section.how_to_use .how_to_use__grid {
    max-width: 100%;
    transform: translateX(0);
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
  }
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__grid {
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
  }
}
section.how_to_use .how_to_use__item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__item {
    width: 100%;
  }
}
section.how_to_use .how_to_use__item:nth-child(2) .how_to_use__content {
  transform: translateX(-18px);
}
@media screen and (max-width: 1200px) {
  section.how_to_use .how_to_use__item:nth-child(2) .how_to_use__content {
    transform: translateX(0);
  }
}
@media screen and (max-width: 960px) {
  section.how_to_use .how_to_use__item:nth-child(2) .how_to_use__content {
    transform: translateX(0);
  }
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__item:nth-child(2) .how_to_use__content {
    transform: translateX(0);
  }
}
section.how_to_use .how_to_use__item:nth-child(3) .how_to_use__content {
  transform: translateX(-36px);
}
@media screen and (max-width: 1200px) {
  section.how_to_use .how_to_use__item:nth-child(3) .how_to_use__content {
    transform: translateX(0);
  }
}
@media screen and (max-width: 960px) {
  section.how_to_use .how_to_use__item:nth-child(3) .how_to_use__content {
    transform: translateX(0);
  }
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__item:nth-child(3) .how_to_use__content {
    transform: translateX(0);
  }
}
section.how_to_use .how_to_use__step {
  width: 100%;
  font-weight: 700;
  padding: 14px 12px;
  font-size: 17px;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 18px;
  position: relative;
  letter-spacing: 0.02em;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  section.how_to_use .how_to_use__step {
    transform: translateX(20px);
  }
}
@media screen and (max-width: 960px) {
  section.how_to_use .how_to_use__step {
    transform: translateX(0);
  }
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__step {
    transform: translateX(0);
  }
}
section.how_to_use .how_to_use__step.step_label_1 {
  background-color: rgb(230, 239, 237);
  color: rgb(1, 113, 89);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  section.how_to_use .how_to_use__step.step_label_1 {
    clip-path: none;
  }
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__step.step_label_1 {
    clip-path: none;
  }
}
section.how_to_use .how_to_use__step.step_label_2 {
  background-color: rgb(46, 159, 129);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%, 22px 50%);
  z-index: 2;
  margin-left: -45px;
  padding-left: 34px;
}
@media screen and (max-width: 960px) {
  section.how_to_use .how_to_use__step.step_label_2 {
    clip-path: none;
  }
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__step.step_label_2 {
    clip-path: none;
  }
}
@media screen and (max-width: 960px) {
  section.how_to_use .how_to_use__step.step_label_2 {
    margin-left: 0;
    padding-left: 12px;
  }
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__step.step_label_2 {
    margin-left: 0;
    padding-left: 12px;
  }
}
section.how_to_use .how_to_use__step.step_label_3 {
  background-color: #006a5d;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 22px 50%);
  z-index: 3;
  margin-left: -90px;
}
@media screen and (max-width: 960px) {
  section.how_to_use .how_to_use__step.step_label_3 {
    clip-path: none;
  }
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__step.step_label_3 {
    clip-path: none;
  }
}
@media screen and (max-width: 960px) {
  section.how_to_use .how_to_use__step.step_label_3 {
    margin-left: 0;
    padding-left: 12px;
  }
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__step.step_label_3 {
    margin-left: 0;
    padding-left: 12px;
  }
}
section.how_to_use .how_to_use__content {
  padding-top: 4px;
  width: 330px;
}
@media screen and (max-width: 1200px) {
  section.how_to_use .how_to_use__content {
    width: 300px;
  }
}
@media screen and (max-width: 960px) {
  section.how_to_use .how_to_use__content {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__content {
    width: 100%;
    max-width: 100%;
  }
}
section.how_to_use .how_to_use__content .how_to_use__image {
  width: 100%;
  height: 192px;
  margin-bottom: 1.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 960px) {
  section.how_to_use .how_to_use__content .how_to_use__image {
    height: 180px;
  }
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__content .how_to_use__image {
    height: 168px;
  }
}
section.how_to_use .how_to_use__content .how_to_use__text {
  width: 330px;
  margin: 0 auto;
  padding: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  text-align: left;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  section.how_to_use .how_to_use__content .how_to_use__text {
    width: 300px;
  }
}
@media screen and (max-width: 960px) {
  section.how_to_use .how_to_use__content .how_to_use__text {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 640px) {
  section.how_to_use .how_to_use__content .how_to_use__text {
    width: 100%;
    max-width: 100%;
  }
}

/*===============================================
top fee
===============================================*/
section.fee {
  background-color: #F8F8F8;
  padding: 8rem 1.6rem;
}
section.fee .fee_inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
section.fee .fee_title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 4rem;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 640px) {
  section.fee .fee_title {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}
section.fee .fee_flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  section.fee .fee_flex {
    flex-direction: column;
    align-items: center;
  }
}
section.fee .fee_box {
  background: #009a95;
  color: #fff;
  border-radius: 16px;
  padding: 2.4rem 1.6rem 1.6rem;
  flex: 0 1 360px;
  width: 360px;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 960px) {
  section.fee .fee_box {
    flex: 0 1 auto;
    width: 100%;
    max-width: 360px;
  }
}
section.fee .fee_box .fee_box_label_en {
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1;
}
section.fee .fee_box .fee_box_label_jp {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  line-height: 1.1;
}
section.fee .fee_box .fee_box_price {
  background: #fff;
  color: #d94f3b;
  font-size: 4rem;
  font-weight: 700;
  border-radius: 12px;
  margin: auto 0 0;
  padding: 1.6rem 1.6rem;
  height: 12rem;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.8rem;
  line-height: 1;
  padding-bottom: 0.8rem;
}
section.fee .fee_box .fee_box_number {
  font-size: 10.4rem;
  font-weight: 900;
  line-height: 1;
}
section.fee .fee_box .fee_box_unit {
  font-size: 1.6rem;
  color: #333333;
  line-height: 1;
  margin-bottom: 1.6rem;
}
section.fee .fee_box .fee_box_content {
  background: #fff;
  color: #222222;
  border-radius: 12px;
  margin: auto 0 0;
  padding: 1.6rem 1.6rem;
  padding-top: 2.4rem;
  height: 12rem;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}
section.fee .fee_box .fee_box_desc {
  color: #222222;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0;
  line-height: 1.4;
}
section.fee .fee_box .fee_box_plan {
  color: #222222;
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1.4;
}
section.fee .fee_box .fee_box_note {
  color: #222222;
  font-size: 1.2rem;
  line-height: 1.4;
}
section.fee .fee_plus {
  font-size: calc(4.8rem + 2.4rem);
  font-weight: 700;
  color: #333333;
  line-height: 1;
  align-self: center;
}
@media screen and (max-width: 960px) {
  section.fee .fee_plus {
    margin: 1.6rem 0;
  }
}
section.fee .fee_notes {
  font-size: 1.2rem;
  color: #666666;
  margin-top: 2.4rem;
  text-align: left;
  max-width: 450px;
  margin-left: calc(50% - 400px);
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.fee .fee_notes {
    max-width: 360px;
    margin-left: calc(50% - 180px);
    margin-right: auto;
  }
}
@media screen and (max-width: 640px) {
  section.fee .fee_notes {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.fee .fee_notes_item {
  color: #222222;
  margin-bottom: 0;
  line-height: 1.4;
}

/*===============================================
top inquiry
===============================================*/
section.top_inquiry {
  padding: 2rem 14rem;
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto;
  margin: 40px auto;
}
@media screen and (max-width: 960px) {
  section.top_inquiry {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
section.top_inquiry .ly_header_container {
  text-align: center;
  margin-bottom: 24px;
}
section.top_inquiry .ly_contents_container {
  max-width: 520px;
  margin: auto;
}

/*===============================================
top faq
===============================================*/
section.top_faq .section_container {
  padding: 2rem 14rem;
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_faq .section_container {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
section.top_faq .section_container .ly_header_container {
  text-align: center;
  margin-bottom: 24px;
}
section.top_faq .section_container .link {
  text-decoration: underline;
}
@media screen and (max-width: 960px) {
  section.top_faq .section_container .el_accordion {
    font-size: 1.4rem;
  }
}

/*===============================================
footer
===============================================*/
footer.rittai_lp {
  background-color: #333333;
  color: white;
}
footer.rittai_lp .ly_contents {
  display: flex;
  padding: 80px 140px 48px 140px;
}
@media screen and (max-width: 960px) {
  footer.rittai_lp .ly_contents {
    flex-direction: column-reverse;
    padding: 32px 16px 16px 16px;
  }
}
footer.rittai_lp .ly_contents .ly_logo {
  max-width: 240px;
  margin: auto 80px;
}
@media screen and (max-width: 960px) {
  footer.rittai_lp .ly_contents .ly_logo {
    max-width: 120px;
    margin: 16px auto;
  }
}
footer.rittai_lp .ly_contents .ly_text_container {
  display: grid;
  grid-template-columns: auto 1fr;
  font-size: 1.4rem;
}
footer.rittai_lp .ly_contents .ly_text_container .ly_col {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px white solid;
}
footer.rittai_lp .ly_contents .ly_text_container .title {
  width: 100px;
  padding-left: 8px;
  font-weight: 700;
}
footer.rittai_lp .ly_contents .ly_text_container .description {
  padding-right: 8px;
}
footer.rittai_lp .ly_contents .ly_text_container a {
  text-decoration: underline;
}
footer.rittai_lp .copy_right {
  color: #fff;
}

/*===============================================
header
===============================================*/
header.rittai_manual_lp {
  background-color: rgba(255, 255, 255, 0.5215686275);
  position: fixed;
  z-index: 100;
  width: 100%;
}
header.rittai_manual_lp .ly_contents {
  display: flex;
  padding: 12px 32px;
}
@media screen and (max-width: 960px) {
  header.rittai_manual_lp .ly_contents {
    padding: 4px 8px;
  }
}
header.rittai_manual_lp .ly_contents .ly_logo {
  max-width: 240px;
  margin: auto 20px auto 0;
}
header.rittai_manual_lp .ly_contents .ly_menu {
  margin: auto 0;
  font-size: 1.6rem;
}
header.rittai_manual_lp .ly_contents .ly_menu .menu_item {
  margin: 0 8px;
}
@media screen and (max-width: 960px) {
  header.rittai_manual_lp .ly_contents .ly_menu {
    display: none;
  }
}
header.rittai_manual_lp .ly_contents .ly_button_container {
  display: flex;
  margin: auto 0 auto auto;
}
@media screen and (max-width: 960px) {
  header.rittai_manual_lp .ly_contents .ly_button_container {
    display: none;
  }
}
header.rittai_manual_lp .ly_contents .ly_button_container button {
  width: 160px;
  border-radius: 48px;
  font-weight: 700;
  font-size: 1.6rem;
  margin: 4px;
}
@media screen and (max-width: 960px) {
  header.rittai_manual_lp .ly_contents .ly_button_container button {
    font-size: 1.2rem;
    width: 120px;
  }
}
@media screen and (max-width: 960px) {
  header.rittai_manual_lp .ly_contents .ly_button_container .room_button {
    display: none;
  }
}
header.rittai_manual_lp .ly_hamburgerMenu .ly_buttons_area {
  width: 100%;
  position: fixed;
  bottom: 5px;
  width: calc(100% - 48px);
}
header.rittai_manual_lp .ly_hamburgerMenu .ly_buttons_area button {
  box-shadow: 0px 1px 24px 0px rgba(39, 114, 73, 0.5019607843);
  width: 240px;
  border-radius: 48px;
  color: #fff;
  font-size: 1.6rem;
  height: 64px;
}
@media screen and (max-width: 960px) {
  header.rittai_manual_lp .ly_hamburgerMenu .ly_buttons_area button {
    margin: 8px auto;
    width: 100%;
  }
}
header.rittai_manual_lp .ly_hamburgerMenu .ly_buttons_area button .download_button {
  text-align: center;
  margin: 0 0 12px 0;
}
header.rittai_manual_lp .ly_hamburgerMenu .ly_buttons_area button .download_button .annotation {
  font-size: 1.2rem;
}
header.rittai_manual_lp .el_hamburgerMenu_button {
  margin: auto 0 auto auto;
}

/*===============================================
button
===============================================*/
.el_btn_wrapper {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 640px) {
  .el_btn_wrapper {
    flex-direction: column;
    gap: 0.8rem;
  }
}

.el_btn {
  transition: all 0.4s;
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  line-height: 69px;
  height: 69px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .el_btn {
    line-height: 48px;
    height: 48px;
    font-size: 18px;
  }
}
.el_btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.el_btn:hover {
  opacity: 0.7;
}
.el_btn::after {
  content: "";
  transition: 0.3s;
  height: 15px;
  width: 15px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(0, -50%);
}
.el_btn__gray {
  background-color: #757575;
}
.el_btn__gray span {
  color: #fff;
}
.el_btn__base {
  background: linear-gradient(90deg, #2b7fb5 0%, rgba(130, 244, 169, 0.264589) 106.42%, rgba(43, 127, 181, 0) 115.57%);
}
.el_btn__base span {
  color: #fff;
}
.el_btn__none {
  background: none;
  border: 3px solid #ffffff;
}
@media screen and (max-width: 640px) {
  .el_btn__none {
    border: 1.5px solid #ffffff;
  }
}
.el_btn__none span {
  color: #fff;
}
.el_btn__none:hover {
  opacity: 1;
  background: #2b7fb5;
}

.el_btn_fix_wrapper {
  display: block;
  position: fixed;
  top: 192px;
  right: 0;
  height: 556px;
  width: 96px;
  z-index: 9999;
  transition: 0.5s;
}
@media screen and (min-width: 1920px) {
  .el_btn_fix_wrapper {
    right: calc((100vw - 1920px) / 2);
  }
}
@media screen and (max-width: 960px) {
  .el_btn_fix_wrapper {
    height: 400px;
    width: 56px;
  }
}
@media screen and (max-width: 640px) {
  .el_btn_fix_wrapper {
    top: 120px;
    width: 40px;
  }
}
.el_btn_fix_wrapper.hide {
  transform: translateX(100vw);
}

.el_btn_fix {
  height: 50%;
  width: 100%;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.el_btn_fix__blue {
  background: rgba(71, 151, 185, 0.8);
}
.el_btn_fix__blue:hover {
  background: rgb(71, 151, 185);
}
.el_btn_fix__green {
  background: rgba(99, 219, 166, 0.8);
}
.el_btn_fix__green:hover {
  background: rgb(99, 219, 166);
}
.el_btn_fix span {
  font-weight: 700;
  font-size: 20px;
  color: white;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 960px) {
  .el_btn_fix span {
    font-size: 14px;
  }
}

.el_btn_page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #022F2D;
  padding-bottom: 0.8rem;
  width: 200px;
  transition: 0.5s;
}
@media screen and (max-width: 640px) {
  .el_btn_page {
    width: calc((90vw - 23px) / 2);
  }
}
.el_btn_page__pcHide {
  display: none;
}
@media screen and (max-width: 640px) {
  .el_btn_page__pcHide {
    display: flex;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .el_btn_page__spHide {
    display: none;
  }
}
.el_btn_page:hover {
  opacity: 0.7;
}
.el_btn_page span,
.el_btn_page h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .el_btn_page span,
  .el_btn_page h2 {
    font-size: 1.5rem;
  }
}
.el_btn_page_jp {
  font-family: "Noto Sans JP", "Inter", sans-serif !important;
  font-weight: 700 !important;
}
.el_btn_page img {
  height: 32px;
  width: 32px;
}

.el_btn_view {
  transition: 0.5s;
  font-size: 1.8rem;
  width: 43px;
  position: relative;
}
.el_btn_view::before, .el_btn_view::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #222222;
}
.el_btn_view::before {
  transform: scale(0, 1);
  transform-origin: right top;
}
.el_btn_view::after {
  transform: scale(1, 1);
  transform-origin: left top;
}

.el_snsBtn_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
}
.el_snsBtn_wrapper span {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  margin-right: 0.8rem;
}
.el_snsBtn_wrapper a {
  height: 32px;
  width: 32px;
  display: block;
  transition: 0.5s;
}
.el_snsBtn_wrapper a:hover {
  opacity: 0.7;
}

.el_snsBtn {
  height: 32px;
  width: 32px;
}

.el_main_button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-color: #029C97;
  transition: 0.5s;
}
@media screen and (max-width: 960px) {
  .el_main_button {
    height: 32px;
  }
}
.el_main_button:hover {
  opacity: 0.7;
}
.el_main_button span {
  color: #fff;
}

.el_main_button_outlined {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  color: #029C97;
  background-color: #fff;
  outline: 1px solid #029C97;
  transition: 0.5s;
}
@media screen and (max-width: 960px) {
  .el_main_button_outlined {
    height: 32px;
  }
}
.el_main_button_outlined:hover {
  opacity: 0.7;
}
.el_main_button_outlined span {
  color: #029C97;
}

.el_dark_button {
  display: flex;
  justify-content: center;
  box-shadow: 0px 1px 24px 0px rgba(39, 114, 73, 0.5019607843);
  align-items: center;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background-color: #022F2D;
  transition: 0.5s;
}
.el_dark_button:hover {
  opacity: 0.7;
}
.el_dark_button span {
  color: #fff;
}

.el_white_button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  border-radius: 48px;
  background-color: #fff;
  color: #029C97;
  transition: 0.5s;
  font-size: 1.6rem;
}
.el_white_button:hover {
  opacity: 0.7;
  color: #029C97;
}
.el_white_button span {
  color: #fff;
}

.el_dark_button_outlined {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 120px;
  border-radius: 48px;
  outline: 1px solid;
  background-color: #022F2D;
  color: #fff;
  transition: 0.5s;
  font-size: 1.6rem;
}
.el_dark_button_outlined:hover {
  opacity: 0.7;
}
.el_dark_button_outlined span {
  color: #fff;
}

.el_button_wrapper_anchor:hover, .el_button_wrapper_anchor:focus {
  text-decoration: none;
  outline: none;
}

/*===============================================
carousel
===============================================*/
.el_carousel {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .el_carousel {
    width: 100%;
    margin-top: 3.2rem;
    margin-bottom: 3.2rem;
  }
}
.el_carousel_area {
  width: 100%;
  list-style: none;
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
}

.el_carousel_btn {
  transition: 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  z-index: 1;
  font-size: 1.6rem;
}
@media screen and (max-width: 640px) {
  .el_carousel_btn {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background-color: rgb(237, 237, 237);
  }
}
.el_carousel_btn:hover {
  opacity: 0.7;
}
.el_carousel_btn span {
  display: block;
  width: 22.6px;
  height: 22.6px;
  border-right: 3px solid rgb(43, 127, 181);
  border-bottom: 3px solid rgb(43, 127, 181);
}
@media screen and (max-width: 640px) {
  .el_carousel_btn span {
    width: 16px;
    height: 16px;
    border-right: 2px solid rgb(43, 127, 181);
    border-bottom: 2px solid rgb(43, 127, 181);
  }
}
.el_carousel_btn__l {
  left: -5%;
}
@media screen and (max-width: 640px) {
  .el_carousel_btn__l {
    left: 9%;
  }
}
.el_carousel_btn__l img {
  height: 1.5rem;
  transform: rotate(180deg);
}
@media screen and (max-width: 640px) {
  .el_carousel_btn__l img {
    height: 1.1rem;
  }
}
.el_carousel_btn__l svg {
  height: 1.5rem;
  width: 2.4rem;
  transform: rotate(180deg);
}
.el_carousel_btn__l svg .cls-1 {
  fill: none;
  stroke: #222222;
}
@media screen and (max-width: 640px) {
  .el_carousel_btn__l svg {
    height: 1.1rem;
    width: 1.8rem;
  }
}
.el_carousel_btn__l span {
  transform: rotate(135deg);
}
@media screen and (max-width: 640px) {
  .el_carousel_btn__l span {
    margin-left: 8px;
  }
}
.el_carousel_btn__r {
  right: -5%;
}
@media screen and (max-width: 640px) {
  .el_carousel_btn__r {
    right: 9%;
  }
}
.el_carousel_btn__r img {
  height: 1.5rem;
}
@media screen and (max-width: 640px) {
  .el_carousel_btn__r img {
    height: 1.1rem;
  }
}
.el_carousel_btn__r svg {
  height: 1.5rem;
  width: 2.4rem;
}
.el_carousel_btn__r svg .cls-1 {
  fill: none;
  stroke: #222222;
}
@media screen and (max-width: 640px) {
  .el_carousel_btn__r svg {
    height: 1.1rem;
    width: 1.8rem;
  }
}
.el_carousel_btn__r span {
  transform: rotate(-45deg);
}
@media screen and (max-width: 640px) {
  .el_carousel_btn__r span {
    margin-right: 8px;
  }
}

.slick-dots {
  text-align: center;
  position: absolute;
  bottom: -54px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  .slick-dots {
    bottom: -24px;
  }
}
.slick-dots li {
  display: inline-block;
  margin: 0 15px;
}
.slick-dots li button {
  position: relative;
  text-indent: -9999px;
}
.slick-dots li button:before {
  content: "●";
  font-size: 20px;
  text-indent: 0px;
  position: absolute;
  top: 0;
  left: 0;
  color: #d9d9d9;
}
@media screen and (max-width: 640px) {
  .slick-dots li button:before {
    font-size: 14px;
  }
}
.slick-dots li.slick-active button:before {
  content: "●";
  color: #5e5e5e;
}

.el_carousel_scroll_txt {
  display: none;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  width: 100px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 640px) {
  .el_carousel_scroll_txt {
    display: flex;
    align-items: center;
  }
}
.el_carousel_scroll_txt span {
  display: block;
  width: 0%;
  height: 1px;
  margin-left: 0.8rem;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
/*===============================================
grid
===============================================*/
.el_grid {
  display: grid;
  width: 100%;
}
.el_grid__4col {
  grid-template-columns: repeat(4, 1fr);
  row-gap: 7rem;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media screen and (max-width: 960px) {
  .el_grid__4col {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
    row-gap: 5rem;
  }
}
@media screen and (max-width: 640px) {
  .el_grid__4col {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1.6rem;
         column-gap: 1.6rem;
    row-gap: 3.2rem;
  }
}
.el_grid__3col {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 960px) {
  .el_grid__3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .el_grid__3col {
    grid-template-columns: repeat(1, 1fr);
  }
}
.el_grid__2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 6.4rem;
}
@media screen and (max-width: 960px) {
  .el_grid__2col {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.8rem;
  }
}
.el_grid__2col img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
}
.el_grid__gap_same {
  gap: 1.6rem;
}
@media screen and (max-width: 960px) {
  .el_grid__gap_same {
    gap: 0.8rem;
  }
}
.el_grid_inner {
  width: 100%;
}
.el_grid_inner > *:last-child {
  margin-bottom: 0;
}
.el_grid_imgWrapper {
  display: block;
  width: 100%;
  margin-bottom: 1.6rem;
  overflow: hidden;
  cursor: pointer;
}
.el_grid_imgWrapper:hover > img {
  transform: scale(1.05);
}
.el_grid_imgWrapper img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.el_grid_txt {
  display: block;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 0.8rem;
  text-align: center;
  word-break: break-word;
}
@media screen and (max-width: 640px) {
  .el_grid_txt {
    margin-bottom: 0;
  }
}
.el_grid_txt__md {
  font-size: 1.6rem;
}
.el_grid_txt__sm {
  font-size: 1.4rem;
}

/*===============================================
break point
===============================================*/
@media screen and (max-width: 960px) {
  .br_pc_only {
    display: none;
  }
}

.br_sp_only {
  display: none;
}
@media screen and (max-width: 640px) {
  .br_sp_only {
    display: block;
  }
}

/*===============================================
accordion
===============================================*/
.el_accordion {
  width: 100%;
}
.el_accordion_contents {
  padding: 2rem 2.8rem;
  border-top: 0.5px solid #e6e6e6;
  border-bottom: 0.5px solid #e6e6e6;
}
@media screen and (max-width: 640px) {
  .el_accordion_contents {
    padding: 24px 1.6rem 24px 1.6rem;
  }
}
.el_accordion_contents:first-child {
  border-top: 1px solid #e6e6e6;
}
.el_accordion_contents:last-child {
  border-bottom: 1px solid #e6e6e6;
}
.el_accordion_contents.style {
  background: #f7f8f8;
}
.el_accordion_contents_btn {
  transition: 0.5s;
  display: block;
  height: 12px;
  width: 12px;
  min-height: 12px;
  min-width: 12px;
  border-bottom: 2px solid #029C97;
  border-right: 2px solid #029C97;
  color: #029C97;
  transform: rotate(45deg);
  margin-top: 16px;
}
.el_accordion_contents_btn:focus {
  outline: none;
}
@media screen and (max-width: 640px) {
  .el_accordion_contents_btn {
    height: 10px;
    width: 10px;
    min-height: 10px;
    min-width: 10px;
  }
}
.el_accordion_contents_q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .el_accordion_contents_q {
    font-size: 14px;
  }
}
.el_accordion_contents_q h3 {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  padding: 0;
}
.el_accordion_contents_q h3::before {
  content: "Q";
  margin-right: 16px;
  color: #fff;
  background-color: #029C97;
  border-radius: 100%;
  min-width: 24px;
  height: 24px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.el_accordion_contents_q h3 span {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  margin-right: 40px;
  background-color: #000;
  height: 42px;
  width: 42px;
  min-height: 42px;
  min-width: 42px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .el_accordion_contents_q h3 span {
    margin-right: 1.6rem;
    font-size: 14px;
    height: 32px;
    width: 32px;
    min-height: 32px;
    min-width: 32px;
  }
}
.el_accordion_contents_a {
  transition: max-height 1.6s;
  display: flex;
  max-height: 0px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  line-height: 26px;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .el_accordion_contents_a {
    font-size: 14px;
  }
}
.el_accordion_contents_a::before {
  content: "A";
  margin: auto 16px auto 0;
  color: #fff;
  background-color: #FFD646;
  border-radius: 100%;
  min-width: 24px;
  height: 24px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}
.el_accordion_contents_a span {
  padding: 16px 0;
}
.el_accordion.active {
  background-color: #F8F8F8;
}
.el_accordion.active .el_accordion_contents_a {
  transition: max-height 3s;
  max-height: 1000px;
}
.el_accordion.active .el_accordion_contents_btn {
  transform: rotate(-135deg);
}

/*===============================================
rhombus
===============================================*/
.el_rhombus {
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #029C97;
  transform: rotate(45deg);
}
.el_rhombus + span {
  color: #029C97;
  font-size: 1.2rem;
  font-weight: 400;
}

.el_rhombus__white {
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #fff;
  transform: rotate(45deg);
}
.el_rhombus__white + span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}

/*===============================================
triangle
===============================================*/
.el_triangle {
  margin: auto;
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 40px solid #029C97;
}

/*===============================================
arc
===============================================*/
.el_arc_container {
  background-color: #F8F8F8;
}
.el_arc_container .el_arc {
  background-color: #022F2D;
  border-radius: 0 0 2000px 2000px/0 0 300px 300px;
  margin: 0 -200px 0 -200px;
  padding: 65px 280px;
  min-height: 120px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .el_arc_container .el_arc {
    padding: 32px 0px;
    min-height: 0px;
  }
}

.el_arc_container__white {
  background-color: #022F2D;
}
.el_arc_container__white .el_arc {
  background-color: #F8F8F8;
  border-radius: 0 0 2000px 2000px/0 0 300px 300px;
  margin: 0 -200px 0 -200px;
  padding: 65px 280px;
  min-height: 120px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .el_arc_container__white .el_arc {
    padding: 32px 0px;
    min-height: 0px;
  }
}

/*===============================================
Hamburger Menu
===============================================*/
.el_hamburgerMenu_button {
  height: 40px;
  width: 40px;
  padding: 6px;
  margin: auto 0 auto 8px;
  border-radius: 8px;
}
.el_hamburgerMenu_button:focus {
  outline: 1px solid #029C97;
}
.el_hamburgerMenu_button .hamburgerMenuButtonBar {
  width: 100%;
  height: 2px;
  background-color: #989898;
  position: relative;
  transition: ease 0.4s;
  display: block;
}
.el_hamburgerMenu_button .hamburgerMenuButtonBar:nth-child(1) {
  top: 0;
}
.el_hamburgerMenu_button .hamburgerMenuButtonBar:nth-child(2) {
  margin: 8px 0;
}
.el_hamburgerMenu_button .hamburgerMenuButtonBar:nth-child(3) {
  top: 0;
}
.el_hamburgerMenu_button.active .hamburgerMenuButtonBar:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.el_hamburgerMenu_button.active .hamburgerMenuButtonBar:nth-child(2) {
  opacity: 0;
}
.el_hamburgerMenu_button.active .hamburgerMenuButtonBar:nth-child(3) {
  top: -11px;
  transform: rotate(-45deg);
}

.el_hamburgerMenu {
  opacity: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 120;
  padding: 16px 24px;
  animation: fadeOut 0.3s ease-in 0s forwards;
}
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    display: none;
    opacity: 0;
  }
  0% {
    display: block;
    opacity: 1;
  }
}
.el_hamburgerMenu.active {
  display: block;
  animation: fadeIn 0.3s ease-in 0s forwards;
}
.el_hamburgerMenu .menu_item {
  padding: 20px 8px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #989898;
  font-size: 1.6rem;
  font-weight: 900;
}

/*===============================================
page top button
===============================================*/
.page_top_btn {
  background-color: #029C97;
  border-radius: 8px;
  box-shadow: 0px 1px 24px 0px rgba(34, 34, 34, 0.2666666667);
}

/*===============================================
background figure
===============================================*/
.el_bg_figure {
  z-index: -100;
  position: absolute;
}/*# sourceMappingURL=style.css.map */