@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 .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 86px;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
@media screen and (max-width: 960px) {
  section.top_view .section_container {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 60px;
  }
}
section.top_view .section_container .ly_contents_inner.text_container {
  min-width: 530px;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .ly_contents_inner.text_container {
    min-width: unset;
  }
}
section.top_view .section_container .ly_contents_inner.video_container {
  margin: auto 0;
  display: flex;
  align-items: center;
}
section.top_view .section_container .ly_contents_inner.video_container .iframe_container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
section.top_view .section_container .ly_contents_inner.video_container .iframe_container iframe,
section.top_view .section_container .ly_contents_inner.video_container .iframe_container .cover {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .ly_contents_inner {
    margin: 0;
  }
}
section.top_view .section_container .ly_contents_inner .title_annotation {
  font-size: 2.8rem;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .ly_contents_inner .title_annotation {
    font-size: 1.8rem;
  }
}
section.top_view .section_container .ly_contents_inner .title {
  font-size: 4.8rem;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .ly_contents_inner .title {
    font-size: 3.2rem;
  }
}
section.top_view .section_container .ly_contents_inner .target_list {
  margin-top: 32px;
}
section.top_view .section_container .ly_contents_inner .target_list .target {
  border-radius: 24px;
  color: white;
  background-color: #022F2D;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 0 16px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .ly_contents_inner .target_list .target {
    font-size: 1.2rem;
  }
}
section.top_view .section_container .ly_contents_inner .target_list .description {
  color: #022F2D;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .ly_contents_inner .target_list .description {
    font-size: 1.6rem;
  }
}
section.top_view .section_container .ly_buttons_area {
  margin: 32px 0;
}
section.top_view .section_container .ly_buttons_area button {
  box-shadow: 0px 1px 24px 0px rgba(39, 114, 73, 0.5019607843);
  width: 100%;
  border-radius: 48px;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  height: 64px;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .ly_buttons_area button {
    margin: 8px auto;
    width: 100%;
  }
}
section.top_view .section_container .ly_buttons_area button .annotation {
  font-size: 1.2rem;
}
section.top_view .section_container .ly_buttons_area button .contents {
  font-size: 1.8rem;
  font-weight: 900;
}
section.top_view .section_container .description {
  font-size: 1.8rem;
  max-width: 560px;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .description {
    font-size: 1.4rem;
    max-width: unset;
  }
}
section.top_view .section_container .effect {
  padding: 0;
  font-size: 1.8rem;
}
section.top_view .section_container ul {
  margin-top: 8px;
  font-size: 1.8rem;
  -moz-column-count: 2;
       column-count: 2;
}
section.top_view .section_container li {
  font-size: 1.8rem;
  font-weight: 600;
  -webkit-text-decoration: underline #FFD646 4px;
          text-decoration: underline #FFD646 4px;
  color: #022F2D;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container li {
    font-size: 1.6rem;
  }
}
section.top_view .section_container .background .triangle_1 {
  top: 500px;
  left: -1%;
  width: 150px;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .background .triangle_1 {
    width: 80px;
  }
}
section.top_view .section_container .background .triangle_2 {
  top: 540px;
  right: 20%;
  width: 150px;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .background .triangle_2 {
    right: 5%;
    width: 80px;
  }
}
section.top_view .section_container .background .ball_1 {
  top: 120px;
  left: 5%;
  width: 30px;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .background .ball_1 {
    width: 40px;
  }
}
section.top_view .section_container .background .ball_2 {
  top: 630px;
  left: 20%;
  width: 30px;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .background .ball_2 {
    width: 40px;
  }
}
section.top_view .section_container .background .circle_1 {
  top: 370px;
  left: 40%;
  width: 150px;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .background .circle_1 {
    width: 80px;
  }
}
section.top_view .section_container .background .circle_2 {
  top: 100px;
  right: -2%;
  width: 150px;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .background .circle_2 {
    width: 80px;
  }
}
section.top_view .section_container .background .square_1 {
  top: 100px;
  left: 38%;
  width: 100px;
}
@media screen and (max-width: 960px) {
  section.top_view .section_container .background .square_1 {
    width: 80px;
  }
}

/*===============================================
top about product
===============================================*/
section.top_about_product {
  background-color: #E6F5F5;
  padding: 24px 0;
}
@media screen and (max-width: 960px) {
  section.top_about_product {
    padding: 16px 0;
  }
}
section.top_about_product .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container {
    grid-template-columns: none;
    margin: 24px 0;
  }
}
section.top_about_product .section_container .ly_contents {
  margin: auto 70px auto 0;
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container .ly_contents {
    margin: 0;
  }
}
section.top_about_product .section_container .ly_contents .title {
  color: #029C97;
  font-weight: 900;
  font-size: 4rem;
  padding-top: 0;
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container .ly_contents .title {
    font-size: 2rem;
  }
}
section.top_about_product .section_container .ly_contents .description {
  font-size: 1.8rem;
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container .ly_contents .description {
    font-size: 1.4rem;
  }
}
section.top_about_product .section_container .ly_image_container {
  display: grid;
  align-items: center;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px 32px;
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container .ly_image_container {
    margin-top: 16px;
  }
}

/*===============================================
top report
===============================================*/
section.top_appeal .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
section.top_appeal .section_container .ly_header_container {
  text-align: center;
  padding: 16px;
  margin: auto;
  font-size: 4rem;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_header_container {
    font-size: 2.4rem;
  }
}
section.top_appeal .section_container .ly_function_list {
  padding: 0px 100px 80px 100px;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list {
    padding: 0 0 32px 0;
  }
}
section.top_appeal .section_container .ly_function_list .ly_topic_container {
  display: flex;
  margin-top: 48px;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list .ly_topic_container {
    flex-direction: column;
    margin-top: 24px;
  }
}
section.top_appeal .section_container .ly_function_list .ly_topic_container.flex_reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list .ly_topic_container.flex_reverse {
    flex-direction: column;
  }
}
section.top_appeal .section_container .ly_function_list .ly_topic_container .ly_text_container {
  margin-top: 0;
}
section.top_appeal .section_container .ly_function_list .ly_topic_container .ly_text_container .ly_title {
  display: flex;
  margin: 0 0 16px 0;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list .ly_topic_container .ly_text_container .ly_title {
    margin: 0;
  }
}
section.top_appeal .section_container .ly_function_list .ly_topic_container .ly_text_container .ly_title .number {
  font-size: 4rem;
  font-weight: 900;
  margin: auto 16px auto 0;
  padding: 8px 16px;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #022F2D;
  line-height: 1.5;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list .ly_topic_container .ly_text_container .ly_title .number {
    font-size: 2.4rem;
  }
}
section.top_appeal .section_container .ly_function_list .ly_topic_container .ly_text_container .ly_title .title {
  margin: auto auto auto 0;
  font-size: 2.8rem;
}
section.top_appeal .section_container .ly_function_list .ly_topic_container .ly_text_container .ly_title .title .annotation {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  font-weight: 700;
  color: #029C97;
  border: 1px solid #029C97;
  border-radius: 56px;
  padding: 4px 16px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list .ly_topic_container .ly_text_container .ly_title .title {
    font-size: 2rem;
  }
}
section.top_appeal .section_container .ly_function_list .ly_topic_container .ly_text_container p {
  font-size: 1.4rem;
}
section.top_appeal .section_container .ly_function_list .ly_topic_container .ly_text_container p:last-child {
  margin-bottom: 0;
}
section.top_appeal .section_container .ly_function_list .ly_topic_container .image {
  display: grid;
  min-width: 460px;
  max-width: 460px;
  min-height: 320px;
  max-height: 320px;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list .ly_topic_container .image {
    min-width: unset;
    max-width: unset;
    min-height: 240px;
    max-height: 240px;
  }
}
section.top_appeal .section_container .ly_function_list .ly_topic_container .image img {
  box-shadow: 0px 1px 24px 0px rgba(34, 34, 34, 0.2666666667);
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 260px;
  width: 500px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list .ly_topic_container .image img {
    height: 240px;
  }
}
section.top_appeal .section_container .ly_function_list__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  overflow-x: scroll;
}
section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container {
  padding: 16px;
  border-radius: 24px;
  background-color: #E6F5F5;
  min-width: 320px;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container {
    flex-direction: column;
  }
}
section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container .ly_text_container {
  display: grid;
  grid-template-rows: 2fr 3fr 2fr;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container .ly_text_container {
    margin-top: 0;
    grid-template-rows: 1fr 3fr 2fr;
  }
}
section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container .ly_text_container .ly_title {
  display: flex;
  margin: 16px 0;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container .ly_text_container .ly_title {
    margin: 0;
  }
}
section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container .ly_text_container .ly_title .number {
  font-size: 2.4rem;
  font-weight: 900;
  margin: auto 16px auto 0;
  padding: 0 16px;
  color: #029C97;
  border-right: 1px solid #029C97;
  border-bottom: 1px solid #029C97;
}
section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container .ly_text_container .ly_title .title {
  margin: auto auto auto 0;
  font-size: 2.4rem;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container .ly_text_container .ly_title .title {
    font-size: 2rem;
    min-height: 72px;
  }
}
section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container .ly_text_container .ly_title .title .annotation {
  font-size: 1.6rem;
  font-weight: 400;
}
section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container .ly_text_container img {
  box-shadow: 0px 1px 24px 0px rgba(34, 34, 34, 0.2666666667);
  display: flex;
  margin: auto;
  border-radius: 16px;
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container .ly_text_container img {
    width: 100%;
    margin: auto;
    -o-object-fit: cover;
       object-fit: cover;
    height: 160px;
  }
}
section.top_appeal .section_container .ly_function_list__bottom .ly_topic_container .ly_text_container .description {
  margin-top: 8px;
  font-size: 1.4rem;
}

/*===============================================
top column
===============================================*/
section.top_column {
  padding: 2rem 14rem;
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_column {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
section.top_column .ly_header_container {
  text-align: center;
}
section.top_column .ly_contents_container {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}
section.top_column .ly_contents_container .card {
  min-width: 320px;
  margin: 16px;
  border: none;
  color: #222222;
}
section.top_column .ly_contents_container .card img {
  box-shadow: 0px 1px 24px 0px rgba(34, 34, 34, 0.2666666667);
  min-width: 320px;
  height: 160px;
  border-radius: 8px;
}
section.top_column .ly_contents_container .card p {
  font-size: 1.6rem;
  margin-top: 16px;
}
@media screen and (max-width: 960px) {
  section.top_column .ly_contents_container .card p {
    font-size: 1.4rem;
  }
}

/*===============================================
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;
  }
}

/*===============================================
top how to use
===============================================*/
section.top_how_to_use .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container {
    grid-template-columns: none;
  }
}
section.top_how_to_use .section_container .ly_header_container {
  padding-top: 0;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_header_container {
    text-align: center;
  }
}
section.top_how_to_use .section_container .ly_description {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 16px 32px 16px 0;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_description {
    margin: 16px 0;
    font-size: 1.4rem;
  }
}
section.top_how_to_use .section_container .ly_panels {
  border-radius: 240px;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels {
    grid-template-columns: 1fr;
    border-radius: 12px;
    margin: 40px 0;
  }
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels .ly_panel_container {
    grid-template-columns: none;
  }
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container:not(:first-child) {
  margin-top: 36px;
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container .line {
  border: 1px solid #029C97;
  width: 1px;
  height: 120%;
  position: absolute;
  left: -10px;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels .ly_panel_container .line {
    display: none;
  }
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_step_container {
  display: flex;
  position: absolute;
  top: -20px;
  left: -40px;
  justify-content: center;
  align-items: center;
  min-width: 60px;
  max-width: 60px;
  min-height: 60px;
  max-height: 60px;
  border-radius: 56px;
  background-color: #029C97;
  color: #fff;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_step_container {
    left: -30px;
  }
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_step_container .step_index {
  line-height: normal;
  vertical-align: middle;
  margin: 0;
  text-align: center;
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_step_container .step_index .step {
  font-size: 1.2rem;
  margin: auto 4px;
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_step_container .step_index .number {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_step_container .step_index .number {
    font-size: 1.8rem;
  }
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_image_container {
  margin: 0 16px;
  position: relative;
  min-width: 250px;
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_image_container img {
  border-radius: 16px;
  box-shadow: 0px 1px 24px 0px rgba(39, 114, 73, 0.5019607843);
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_text_container {
    text-align: left;
    margin: 16px 32px;
  }
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_text_container .title {
  line-height: 1;
  font-size: 2.4rem;
  padding: 0;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_text_container .title {
    font-size: 1.6rem;
  }
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_text_container .title .annotation {
  color: #888888;
  font-size: 1.4rem;
  font-weight: 400;
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_text_container .title .annotation.right {
  margin-left: 24px;
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_text_container .description {
  margin: 8px 0 0 0;
  padding: 0 24px;
}
section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_text_container .description li {
  font-size: 1.6rem;
  font-weight: 400;
  list-style: disc;
  margin: 0;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels .ly_panel_container .ly_text_container .description li {
    font-size: 1.2rem;
  }
}

/*===============================================
top fee
===============================================*/
section.top_fee {
  background-color: #F8F8F8;
}
section.top_fee .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  color: #222222;
}
@media screen and (max-width: 960px) {
  section.top_fee .section_container {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
section.top_fee .section_container .ly_header_container {
  text-align: center;
  padding: 0;
}
section.top_fee .section_container .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
  max-width: 980px;
}
@media screen and (max-width: 1200px) {
  section.top_fee .section_container .container {
    grid-template-columns: none;
    margin-top: 16px;
    padding: 0;
  }
}
section.top_fee .section_container .container .plan_container {
  border-radius: 24px;
  background-color: #029C97;
  color: #fff;
  position: relative;
}
section.top_fee .section_container .container .plan_container .title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  section.top_fee .section_container .container .plan_container .title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
    align-items: end;
    gap: 16px;
    margin: 0 12px;
    font-size: 1.8rem;
    padding: 16px 0;
  }
}
section.top_fee .section_container .container .plan_container .title .title_annotation {
  font-size: 1.2rem;
  font-weight: 400;
}
section.top_fee .section_container .container .plan_container .plan_inner_container {
  margin: 12px;
  padding: 16px;
  text-align: center;
  background-color: #fff;
  color: #222222;
  border-radius: 16px;
  font-size: 1.2rem;
}
@media screen and (max-width: 1200px) {
  section.top_fee .section_container .container .plan_container .plan_inner_container {
    margin-top: 0;
  }
}
@media screen and (max-width: 1200px) {
  section.top_fee .section_container .container .plan_container .plan_inner_container .account,
  section.top_fee .section_container .container .plan_container .plan_inner_container .rendering,
  section.top_fee .section_container .container .plan_container .plan_inner_container .ly_monthly_fee_container {
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
    text-align: left;
  }
}
section.top_fee .section_container .container .plan_container .plan_inner_container .subtitle {
  font-weight: 700;
}
section.top_fee .section_container .container .plan_container .plan_inner_container .key_text {
  color: #029C97;
  font-weight: 700;
}
section.top_fee .section_container .container .plan_container .plan_inner_container .key_text.x_large,
section.top_fee .section_container .container .plan_container .plan_inner_container .key_text .x_large {
  font-size: 4rem;
}
@media screen and (max-width: 1200px) {
  section.top_fee .section_container .container .plan_container .plan_inner_container .key_text.x_large,
  section.top_fee .section_container .container .plan_container .plan_inner_container .key_text .x_large {
    font-size: 2.8rem;
  }
}
section.top_fee .section_container .container .plan_container .plan_inner_container .key_text.large,
section.top_fee .section_container .container .plan_container .plan_inner_container .key_text .large {
  font-size: 2.4rem;
}
@media screen and (max-width: 1200px) {
  section.top_fee .section_container .container .plan_container .plan_inner_container .key_text.large,
  section.top_fee .section_container .container .plan_container .plan_inner_container .key_text .large {
    font-size: 1.8rem;
  }
}
section.top_fee .section_container .container .plan_container .plan_inner_container .key_text.medium,
section.top_fee .section_container .container .plan_container .plan_inner_container .key_text .medium {
  font-size: 1.6rem;
}
@media screen and (max-width: 1200px) {
  section.top_fee .section_container .container .plan_container .plan_inner_container .key_text.medium,
  section.top_fee .section_container .container .plan_container .plan_inner_container .key_text .medium {
    font-size: 1.4rem;
  }
}
section.top_fee .section_container .container .plan_container .plan_inner_container .key_text.small,
section.top_fee .section_container .container .plan_container .plan_inner_container .key_text .small {
  font-size: 1.2rem;
}
section.top_fee .section_container .container .plan_container .plan_inner_container .divider {
  border: 1px solid #E6F5F5;
}
section.top_fee .section_container .container .plan_container .plan_inner_container .ly_monthly_fee_container {
  min-height: 100px;
  margin: 12px;
}
@media screen and (max-width: 1200px) {
  section.top_fee .section_container .container .plan_container .plan_inner_container .ly_monthly_fee_container {
    min-height: unset;
    margin: 12px 0;
  }
}
section.top_fee .section_container .container .plan_container .plan_inner_container .rendering {
  min-height: 62px;
}
@media screen and (max-width: 1200px) {
  section.top_fee .section_container .container .plan_container .plan_inner_container .rendering {
    min-height: unset;
  }
}
section.top_fee .section_container .annotation {
  font-size: 1.2rem;
  margin: 52px auto 0 auto;
  max-width: 800px;
}
@media screen and (max-width: 1200px) {
  section.top_fee .section_container .annotation {
    margin-top: 24px;
  }
}

/*===============================================
top reason
===============================================*/
section.top_reason {
  padding: 2rem 14rem;
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto;
  background-color: #F8F8F8;
}
@media screen and (max-width: 960px) {
  section.top_reason {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
section.top_reason h2 {
  text-align: center;
}
section.top_reason .ly_panels {
  border-radius: 40px 40px 0 0;
  padding: 40px;
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 960px) {
  section.top_reason .ly_panels {
    grid-template-columns: 1fr;
    padding: 8px;
  }
}
section.top_reason .ly_panels .card {
  padding: 16px;
  text-align: center;
  border: none;
}
@media screen and (max-width: 960px) {
  section.top_reason .ly_panels .card {
    display: flex;
    flex-direction: row;
    padding: 16px 0;
    border-bottom: 1px solid #989898;
  }
  section.top_reason .ly_panels .card:not(:first) {
    border-top: 1px solid #989898;
  }
}
section.top_reason .ly_panels .card img {
  margin: 8px auto;
  width: 128px;
  height: 128px;
}
@media screen and (max-width: 960px) {
  section.top_reason .ly_panels .card img {
    margin: auto 16px;
    width: 64px;
    height: 64px;
  }
}
section.top_reason .ly_panels .card .ly_text_container {
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 960px) {
  section.top_reason .ly_panels .card .ly_text_container {
    text-align: left;
    margin: 0;
  }
}
section.top_reason .ly_panels .card .ly_text_container .title {
  font-size: 2.4rem;
}
@media screen and (max-width: 960px) {
  section.top_reason .ly_panels .card .ly_text_container .title {
    font-size: 1.6rem;
  }
}
section.top_reason .ly_panels .card .ly_text_container .description {
  font-size: 1.4rem;
}
section.top_reason .ly_services {
  border-radius: 0 0 40px 40px;
  padding: 0 40px 40px 40px;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  section.top_reason .ly_services {
    padding: 8px;
  }
}
section.top_reason .ly_services .ly_service_container {
  display: flex;
  margin: 0 0 24px 0;
}
@media screen and (max-width: 960px) {
  section.top_reason .ly_services .ly_service_container {
    flex-direction: column;
  }
}
section.top_reason .ly_services .ly_service_container .ly_service_text_container {
  margin: auto 0;
}
section.top_reason .ly_services .ly_service_container .ly_service_text_container .annotation {
  color: #888888;
  font-size: 1.4rem;
}
@media screen and (max-width: 960px) {
  section.top_reason .ly_services .ly_service_container .ly_service_text_container .annotation {
    font-size: 1.2rem;
  }
}
section.top_reason .ly_services .ly_service_container .ly_service_text_container .title {
  font-weight: 700;
  font-size: 2.4rem;
}
section.top_reason .ly_services .ly_service_container .ly_service_text_container .description {
  font-size: 1.4rem;
}
@media screen and (max-width: 960px) {
  section.top_reason .ly_services .ly_service_container .ly_service_text_container .description {
    font-size: 1.2rem;
  }
}
section.top_reason .ly_services .ly_service_container .ly_service_text_container a {
  font-size: 1.6rem;
  font-weight: 900;
  text-decoration: underline;
}
section.top_reason .ly_services .ly_service_container img {
  margin: auto 0 auto auto;
  width: 260px;
}
@media screen and (max-width: 960px) {
  section.top_reason .ly_services .ly_service_container img {
    margin: 8px auto;
    width: 60%;
  }
}

/*===============================================
top case
===============================================*/
section.top_case {
  padding: 2rem 14rem;
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto;
  background-color: #F8F8F8;
}
@media screen and (max-width: 960px) {
  section.top_case {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
section.top_case .ly_header_container {
  text-align: center;
  padding: 64px 0 0 0;
}
@media screen and (max-width: 960px) {
  section.top_case .ly_header_container {
    padding-top: 32px;
  }
}
section.top_case .ly_contents_container {
  margin: 24px 0 0 0;
  color: #222222;
}
section.top_case .ly_contents_container .card {
  min-width: 480px;
  max-width: 480px;
  border-radius: 16px;
  padding: 24px;
}
@media screen and (max-width: 960px) {
  section.top_case .ly_contents_container .card {
    min-width: 120px;
    max-width: 100%;
    padding: 8px;
  }
}
section.top_case .ly_contents_container .card .title {
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 16px 0;
}
section.top_case .ly_contents_container .card .title img {
  width: 120px;
}
@media screen and (max-width: 960px) {
  section.top_case .ly_contents_container .card .title img {
    width: 100px;
  }
}
section.top_case .ly_contents_container .card .title .company {
  margin: auto 0;
}
section.top_case .ly_contents_container .card .description {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  section.top_case .ly_contents_container .card .description {
    font-size: 1.4rem;
  }
}

/*===============================================
top contact us
===============================================*/
section.top_contact_us .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  padding: 48px 140px 48px 140px;
}
@media screen and (max-width: 960px) {
  section.top_contact_us .section_container {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
@media screen and (max-width: 1200px) {
  section.top_contact_us .section_container {
    margin-top: 32px;
  }
}
section.top_contact_us .section_container .ly_inner_container {
  display: flex;
  box-shadow: 0px 1px 24px 0px rgba(39, 114, 73, 0.5019607843);
  background-color: #029C97;
  border-radius: 240px;
  margin: 0 auto;
  padding: 24px 64px;
  position: relative;
  max-width: 1154px;
}
@media screen and (max-width: 1200px) {
  section.top_contact_us .section_container .ly_inner_container {
    flex-direction: column;
    border-radius: 48px;
    text-align: center;
    padding: 48px 16px 24px 16px;
  }
}
section.top_contact_us .section_container .ly_inner_container .ly_text_container {
  margin: 0 24px;
}
@media screen and (max-width: 1200px) {
  section.top_contact_us .section_container .ly_inner_container .ly_text_container {
    margin: 0;
  }
}
section.top_contact_us .section_container .ly_inner_container .ly_text_container .title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  section.top_contact_us .section_container .ly_inner_container .ly_text_container .title {
    font-size: 1.8rem;
  }
}
section.top_contact_us .section_container .ly_inner_container .ly_text_container .description {
  margin: 16px 0 0 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 1200px) {
  section.top_contact_us .section_container .ly_inner_container .ly_text_container .description {
    margin: 16px 0;
    font-size: 1.4rem;
  }
}
section.top_contact_us .section_container .ly_inner_container img {
  width: 100px;
  height: 100px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  section.top_contact_us .section_container .ly_inner_container img {
    position: absolute;
    width: 160px;
    height: 120px;
    top: -60px;
    right: 0;
    left: 0;
  }
}
section.top_contact_us .section_container .ly_inner_container .el_button_wrapper_anchor {
  margin: auto;
}
section.top_contact_us .section_container .ly_inner_container .el_white_button {
  box-shadow: 0px 1px 24px 0px rgba(39, 114, 73, 0.5019607843);
  padding: 32px 20px;
  font-weight: 900;
  width: 320px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  section.top_contact_us .section_container .ly_inner_container .el_white_button {
    width: 320px;
    height: 64px;
    padding: unset;
  }
}
section.top_contact_us .section_container .ly_inner_container .el_white_button .annotation {
  font-size: 1.2rem;
}
section.top_contact_us .section_container .ly_inner_container .el_white_button .title {
  color: #029C97;
}
section.top_contact_us .section_container .ly_inner_container .el_white_button .annotation {
  color: #029C97;
  font-weight: 400;
  font-size: 1.4rem;
}

/*===============================================
top function
===============================================*/
section.top_function {
  padding: 2rem 14rem;
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_function {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
section.top_function .ly_header_container {
  text-align: center;
  padding: 0;
}
section.top_function p {
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  section.top_function p {
    font-size: 1.2rem;
  }
}
section.top_function .ly_card_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  section.top_function .ly_card_list {
    flex-direction: column;
  }
}
section.top_function .ly_card_list .card {
  border: none;
  margin: 16px auto;
  width: 30%;
}
@media screen and (max-width: 960px) {
  section.top_function .ly_card_list .card {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
}
section.top_function .ly_card_list .card img {
  margin: 0 auto;
  border-radius: 8px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 360px;
  height: 240px;
}
@media screen and (max-width: 960px) {
  section.top_function .ly_card_list .card img {
    margin: auto 16px;
    max-width: 120px;
    min-width: 120px;
    height: 140px;
  }
}
section.top_function .ly_card_list .card .ly_text_container {
  margin: 0 24px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  section.top_function .ly_card_list .card .ly_text_container {
    text-align: left;
    margin: 0 8px 0 0;
  }
}
section.top_function .ly_card_list .card .ly_text_container .title {
  font-size: 2.8rem;
  margin: auto;
}
@media screen and (max-width: 960px) {
  section.top_function .ly_card_list .card .ly_text_container .title {
    font-size: 1.8rem;
    margin: auto 0;
  }
}
section.top_function .ly_card_list .card .ly_text_container .description {
  font-size: 1.6rem;
  margin: auto;
}
@media screen and (max-width: 960px) {
  section.top_function .ly_card_list .card .ly_text_container .description {
    font-size: 1.4rem;
  }
}
section.top_function .ly_movie_container .title {
  color: #888888;
  font-size: 1.8rem;
  font-weight: 900;
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  section.top_function .ly_movie_container .title {
    font-size: 1.2rem;
  }
}
section.top_function .ly_movie_container .demo {
  margin: 0 auto;
  width: 100%;
  height: 540px;
}
@media screen and (max-width: 960px) {
  section.top_function .ly_movie_container .demo {
    height: 420px;
  }
}

/*===============================================
top logo list
===============================================*/
section.top_logo_list .section_container {
  padding: 2rem 14rem;
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  background-color: #EEEEEE;
  padding: 16px 32px;
  max-width: 960px;
  margin: auto;
}
@media screen and (max-width: 960px) {
  section.top_logo_list .section_container {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
@media screen and (max-width: 960px) {
  section.top_logo_list .section_container {
    flex-direction: column;
    padding: 12px 10px;
  }
}
section.top_logo_list .section_container .title {
  font-weight: 700;
  font-size: 1.6rem;
  margin: auto;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  section.top_logo_list .section_container .title {
    margin: 0 auto 8px auto;
  }
}
section.top_logo_list .section_container .ly_contents {
  display: flex;
}
section.top_logo_list .section_container .ly_contents .image {
  width: 240px;
  margin: auto 16px;
}
@media screen and (max-width: 960px) {
  section.top_logo_list .section_container .ly_contents .image {
    margin: auto 16px auto 0;
  }
}
section.top_logo_list .section_container .ly_contents .ly_description_container .client {
  font-weight: 900;
  font-size: 1.4rem;
  margin-right: 16px;
}
section.top_logo_list .section_container .ly_contents .ly_description_container .client .link {
  color: #029C97;
  font-weight: 400;
  margin: auto 0px;
  text-decoration: underline;
}
section.top_logo_list .section_container .ly_contents .ly_description_container .description {
  font-size: 1.4rem;
}

/*===============================================
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 merit
===============================================*/
section.top_merit .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_merit .section_container {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
@media screen and (max-width: 960px) {
  section.top_merit .section_container {
    flex-direction: column-reverse;
  }
}
section.top_merit .section_container .ly_header_container {
  text-align: center;
  margin: 48px 0;
}
@media screen and (max-width: 960px) {
  section.top_merit .section_container .ly_header_container {
    margin: 24px 0;
  }
}
section.top_merit .section_container .ly_container {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  section.top_merit .section_container .ly_container {
    grid-template-columns: none;
  }
}
section.top_merit .section_container .ly_container .ly_target_contents .target {
  color: #029C97;
  font-weight: 700;
  font-size: 1.8rem;
  margin: 12px 0;
}
section.top_merit .section_container .ly_container .ly_target_contents .title {
  font-weight: 700;
  font-size: 2rem;
}
section.top_merit .section_container .ly_container .ly_target_contents ul {
  margin-top: 8px;
  font-size: 1.4rem;
  padding: 0 24px;
}
section.top_merit .section_container .ly_container .ly_target_contents li {
  font-size: 1.4rem;
  font-weight: 600;
  list-style: disc;
}
@media screen and (max-width: 960px) {
  section.top_merit .section_container .ly_container .ly_target_contents li {
    font-size: 1.2rem;
  }
}

/*===============================================
top services
===============================================*/
section.top_services .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  section.top_services .section_container {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
section.top_services .section_container .ly_header_container {
  text-align: center;
}
section.top_services .section_container .ly_description {
  text-align: center;
  margin-top: 16px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  section.top_services .section_container .ly_description {
    text-align: left;
  }
}
section.top_services .section_container .ly_contents_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
@media screen and (max-width: 1200px) {
  section.top_services .section_container .ly_contents_container {
    grid-template-columns: none;
  }
}
section.top_services .section_container .ly_contents_container .card {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  flex-direction: row;
  background-color: #E6F5F5;
  border-radius: 36px;
  padding: 32px 24px;
  border: none;
}
@media screen and (max-width: 1200px) {
  section.top_services .section_container .ly_contents_container .card {
    grid-template-columns: none;
  }
}
section.top_services .section_container .ly_contents_container .card .ly_text_container {
  display: grid;
  grid-template-rows: 2fr 2fr 1fr;
}
@media screen and (max-width: 1200px) {
  section.top_services .section_container .ly_contents_container .card .ly_text_container {
    text-align: center;
  }
}
section.top_services .section_container .ly_contents_container .card .title {
  padding-top: 0;
  font-weight: 900;
  font-size: 2rem;
}
section.top_services .section_container .ly_contents_container .card .description {
  font-weight: 400;
  font-size: 1.2rem;
}
section.top_services .section_container .ly_contents_container .card .el_main_button {
  width: 256px;
  height: 32px;
  border-radius: 48px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  section.top_services .section_container .ly_contents_container .card .el_main_button {
    margin: auto;
  }
}
section.top_services .section_container .ly_contents_container .card img {
  margin: auto;
  border-radius: 16px;
  height: 142px;
  width: 231px;
}

/*===============================================
top issue
===============================================*/
section.top_issue .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  margin: 40px auto auto auto;
}
@media screen and (max-width: 960px) {
  section.top_issue .section_container {
    padding: 1.6rem 1.6rem 3.2rem 1.6rem;
  }
}
@media screen and (max-width: 960px) {
  section.top_issue .section_container {
    margin-top: 0;
  }
}
section.top_issue .section_container .title {
  text-align: center;
  font-weight: 900;
  font-size: 4rem;
  margin: auto;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  section.top_issue .section_container .title {
    font-size: 2.4rem;
  }
}
section.top_issue .section_container .ly_issue_container {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 56px auto;
}
@media screen and (max-width: 960px) {
  section.top_issue .section_container .ly_issue_container {
    grid-template-columns: none;
    margin-bottom: 0;
    margin: 16px auto;
  }
}
section.top_issue .section_container .ly_issue_container .ly_issue {
  background-color: #E6F5F5;
  border-radius: 9px;
  padding: 48px 24px 16px 24px;
  position: relative;
}
@media screen and (max-width: 960px) {
  section.top_issue .section_container .ly_issue_container .ly_issue {
    display: flex;
    padding: 16px 24px;
  }
}
section.top_issue .section_container .ly_issue_container .ly_issue .image {
  width: 64px;
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  section.top_issue .section_container .ly_issue_container .ly_issue .image {
    transform: none;
    position: unset;
    margin-right: 14px;
    margin: auto 14px auto 0;
    min-width: 36px;
  }
}
section.top_issue .section_container .ly_issue_container .ly_issue .text {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 960px) {
  section.top_issue .section_container .ly_issue_container .ly_issue .text {
    text-align: left;
  }
}
section.top_issue .section_container .ly_issue_container .ly_issue .text .underline {
  text-decoration: underline;
  text-decoration-color: #FFD646;
  text-decoration-thickness: 4px;
  font-size: 1.8rem;
  font-weight: 900;
}

/*===============================================
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_lp {
  background-color: rgba(255, 255, 255, 0.5215686275);
  position: fixed;
  z-index: 100;
  width: 100%;
}
header.rittai_lp .ly_contents {
  display: flex;
  padding: 12px 32px;
}
@media screen and (max-width: 960px) {
  header.rittai_lp .ly_contents {
    padding: 4px 8px;
  }
}
header.rittai_lp .ly_contents .ly_logo {
  max-width: 240px;
  margin: auto 20px auto 0;
}
header.rittai_lp .ly_contents .ly_menu {
  margin: auto 0;
  font-size: 1.6rem;
}
header.rittai_lp .ly_contents .ly_menu .menu_item {
  margin: 0 8px;
}
@media screen and (max-width: 960px) {
  header.rittai_lp .ly_contents .ly_menu {
    display: none;
  }
}
header.rittai_lp .ly_contents .ly_button_container {
  display: flex;
  margin: auto 0 auto auto;
}
header.rittai_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_lp .ly_contents .ly_button_container button {
    font-size: 1.2rem;
    width: 120px;
  }
}
@media screen and (max-width: 960px) {
  header.rittai_lp .ly_contents .ly_button_container .room_button {
    display: none;
  }
}
header.rittai_lp .ly_hamburgerMenu .ly_buttons_area {
  width: 100%;
  position: fixed;
  bottom: 5px;
  width: calc(100% - 48px);
}
header.rittai_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_lp .ly_hamburgerMenu .ly_buttons_area button {
    margin: 8px auto;
    width: 100%;
  }
}
header.rittai_lp .ly_hamburgerMenu .ly_buttons_area button .download_button {
  text-align: center;
  margin: 0 0 12px 0;
}
header.rittai_lp .ly_hamburgerMenu .ly_buttons_area button .download_button .annotation {
  font-size: 1.2rem;
}

/*===============================================
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 */