@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 about product
===============================================*/
section.top_about_product .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container {
    padding: 1.6rem;
  }
}
section.top_about_product .section_container {
  display: flex;
  margin-top: 86px;
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container {
    flex-direction: column-reverse;
    margin-top: 60px;
  }
}
section.top_about_product .section_container .ly_contents_inner {
  padding: 0 0 0 24px;
  margin: auto;
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container .ly_contents_inner {
    padding: 0 0 24px 0;
  }
}
section.top_about_product .section_container .ly_buttons_area {
  display: flex;
  gap: 0 10px;
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container .ly_buttons_area {
    justify-content: space-between;
    flex-direction: column;
  }
}
section.top_about_product .section_container .ly_buttons_area button {
  box-shadow: 0px 1px 24px 0px rgba(39, 114, 73, 0.5019607843);
  width: 280px;
  border-radius: 48px;
  font-size: 1.6rem;
  text-align: center;
  height: 64px;
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container .ly_buttons_area button {
    margin: 8px auto;
    width: 100%;
  }
}
section.top_about_product .section_container .ly_buttons_area button .button_inner {
  margin: 0 0 12px 0;
}
section.top_about_product .section_container .ly_buttons_area button .annotation {
  font-size: 1.2rem;
}
section.top_about_product .section_container .ly_buttons_area button .title {
  font-weight: 700;
}
section.top_about_product .section_container .main_title {
  display: flex;
  flex-direction: column;
  margin: 0 0 1.6rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #222222;
}
@media screen and (max-width: 1200px) {
  section.top_about_product .section_container .main_title {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container .main_title {
    font-size: clamp(2.2rem, 6.2vw, 2.4rem);
    line-height: 1.3;
  }
}
section.top_about_product .section_container .main_title .title_line {
  display: block;
  margin-bottom: 0.8rem;
}
section.top_about_product .section_container .main_title .title_line:last-child {
  margin-bottom: 0;
}
section.top_about_product .section_container .main_title .title_line_last {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
section.top_about_product .section_container .main_title .title_line_last .title_text {
  line-height: 1.25;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  section.top_about_product .section_container .main_title .title_line_last {
    display: block;
  }
  section.top_about_product .section_container .main_title .title_line_last .title_text {
    display: inline;
    line-height: inherit;
    white-space: normal;
  }
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container .main_title .title_line {
    margin-bottom: 4px;
  }
  section.top_about_product .section_container .main_title .title_line:last-child {
    margin-bottom: 0;
  }
}
section.top_about_product .section_container .main_title .title_brand {
  display: inline-block;
  margin-left: 2px;
  font-size: 6rem;
  font-weight: 800;
  line-height: 1.05;
  transform: translateY(-13px);
  color: rgb(42, 167, 160);
}
@media screen and (max-width: 1200px) {
  section.top_about_product .section_container .main_title .title_brand {
    display: inline;
    margin-left: 6px;
    font-size: 5.4rem;
    line-height: inherit;
    transform: translateY(0);
  }
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container .main_title .title_brand {
    font-size: 3rem;
  }
}
section.top_about_product .section_container .description {
  font-size: 1.8rem;
  max-width: 620px;
  margin: 0 0 1.6rem;
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container .description {
    font-size: 1.4rem;
    max-width: unset;
    margin-bottom: 0.8rem;
  }
}
section.top_about_product .section_container .feature_tags {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 1.6rem;
  max-width: 620px;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 640px) {
  section.top_about_product .section_container .feature_tags {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }
}
section.top_about_product .section_container .feature_tags .feature_tag {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid rgba(2, 156, 151, 0.35);
  border-radius: 12px;
  background-color: rgba(2, 156, 151, 0.1);
  box-shadow: 0 4px 12px rgba(2, 156, 151, 0.12);
  color: #029C97;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  section.top_about_product .section_container .feature_tags .feature_tag:last-child {
    grid-column: 1/-1;
    width: calc((100% - 0.8rem) / 2);
    justify-self: center;
  }
}
section.top_about_product .section_container .about_ar {
  margin-top: 24px;
  font-size: 1.4rem;
  max-width: 560px;
}
@media screen and (max-width: 960px) {
  section.top_about_product .section_container .about_ar {
    max-width: unset;
  }
}
section.top_about_product .section_container .effect {
  padding: 0;
  font-size: 1.8rem;
}
section.top_about_product .section_container ul {
  margin-top: 8px;
  font-size: 1.8rem;
  -moz-column-count: 2;
       column-count: 2;
}
section.top_about_product .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_about_product .section_container li {
    font-size: 1.6rem;
  }
}

/*===============================================
top appeal
===============================================*/
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;
  }
}
section.top_appeal .section_container .ly_appeal_container {
  box-shadow: 0px 1px 24px 0px rgba(39, 114, 73, 0.5019607843);
  border-radius: 24px 24px 24px 24px;
  background-color: #F8F8F8;
}
section.top_appeal .section_container .ly_appeal_container .ly_issue_container {
  border-radius: 24px 24px 0px 0px;
  background-color: #022F2D;
  color: #fff;
  padding: 40px 16px 64px 16px;
}
section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_header_container {
  display: flex;
}
section.top_appeal .section_container .ly_appeal_container .ly_issue_container h2 {
  font-size: 4rem;
  text-align: center;
  margin: auto;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_issue_container h2 {
    font-size: 2.4rem;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_card_list {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_card_list {
    flex-direction: column;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_card_list .card {
  display: flex;
  justify-content: center;
  background-color: #022F2D;
  border: none;
  margin: 8px;
  flex: 1;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_card_list .card {
    flex-direction: row;
    justify-content: start;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_card_list .card .ly_text_container {
  margin: auto;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_card_list .card .ly_text_container {
    margin: auto 0;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_card_list .card .ly_text_container .title {
  text-align: center;
  margin: auto;
  font-size: 2.8rem;
  font-weight: 900;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_card_list .card .ly_text_container .title {
    text-align: left;
    font-size: 1.6rem;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_card_list .card .ly_text_container .description {
  text-align: center;
  line-height: 1.5;
  font-size: 1.6rem;
  margin: auto;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_card_list .card .ly_text_container .description {
    text-align: left;
    font-size: 1.4rem;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_card_list .card img {
  width: 76px;
  height: 76px;
  margin: 24px auto;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_issue_container .ly_card_list .card img {
    margin: auto 16px auto 8px;
    width: 56px;
    height: 56px;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container {
  border-radius: 0px 0px 24px 24px;
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_header_container {
  padding: 16px;
  text-align: center;
  font-size: 4rem;
  font-weight: 900;
  color: #022F2D;
  margin: 0;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_header_container {
    font-size: 2.4rem;
    text-align: center;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_topic_title_container {
  margin-top: 48px;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_topic_title_container {
    margin-top: 24px;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_topic_title_container .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  padding: 16px;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_topic_title_container .title {
    font-size: 2rem;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list {
  padding: 0px 100px 80px 100px;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list {
    padding: 16px;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_about_container {
  display: flex;
  padding: 24px 56px;
  margin: 16px auto;
  max-width: 1320px;
  border-radius: 120px;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_about_container {
    flex-direction: column;
    border-radius: 16px;
    padding: 16px;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_about_container img {
  width: 280px;
  margin: auto 32px auto auto;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_about_container img {
    width: 140px;
    margin: auto;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_about_container .ly_text_container {
  margin: auto;
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_about_container .title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_about_container .title {
    font-size: 1.6rem;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_about_container .description {
  font-weight: 400;
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_about_container .description {
    font-size: 1.4rem;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_about_container::after {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  /* 左側 */
  border-right: 50px solid transparent;
  /* 右側 */
  border-top: 100px solid red;
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container {
  display: flex;
  margin-top: 48px;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container {
    flex-direction: column;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container.first {
  margin-top: 0;
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container.flex_reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container.flex_reverse {
    flex-direction: column;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container .ly_text_container {
  margin-top: 36px;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container .ly_text_container {
    margin-top: 0;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container .ly_text_container .ly_title {
  display: flex;
  margin: 16px 0;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container .ly_text_container .ly_title {
    margin: 0;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container .ly_text_container .ly_title .number {
  font-size: 2.4rem;
  font-weight: 900;
  margin: auto 16px auto 0;
  padding: 0 16px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #022F2D;
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container .ly_text_container .ly_title h3 {
  margin: auto auto auto 0;
  font-size: 2.8rem;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container .ly_text_container .ly_title h3 {
    font-size: 2rem;
  }
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container .ly_text_container p {
  font-size: 1.4rem;
}
section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container img {
  box-shadow: 0px 1px 24px 0px rgba(34, 34, 34, 0.2666666667);
  margin: auto 24px;
  border-radius: 16px;
  width: 40%;
}
@media screen and (max-width: 960px) {
  section.top_appeal .section_container .ly_appeal_container .ly_resolution_container .ly_resolution_list .ly_topic_container img {
    width: 100%;
    margin: auto;
  }
}

/*===============================================
top column
===============================================*/
section.top_column .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_column .section_container {
    padding: 1.6rem;
  }
}
section.top_column .section_container .ly_header_container {
  text-align: center;
  margin-bottom: 24px;
}
section.top_column .section_container .ly_contents_container {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}
section.top_column .section_container .ly_contents_container .card {
  min-width: 320px;
  margin: 16px;
  border: none;
  color: #222222;
}
section.top_column .section_container .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 .section_container .ly_contents_container .card p {
  font-size: 1.6rem;
  margin-top: 16px;
}
@media screen and (max-width: 960px) {
  section.top_column .section_container .ly_contents_container .card p {
    font-size: 1.4rem;
  }
}

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

/*===============================================
top how to use
===============================================*/
section.top_how_to_use {
  background-color: #022F2D;
}
section.top_how_to_use .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container {
    padding: 1.6rem;
  }
}
section.top_how_to_use .section_container .ly_header_container {
  padding-top: 0;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}
section.top_how_to_use .section_container .ly_panels {
  border-radius: 240px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
}
section.top_how_to_use .section_container .ly_panels .card {
  margin: 6px;
  border-radius: 16px;
  text-align: center;
  padding: 16px 8px;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels .card {
    display: flex;
    flex-direction: row;
    margin: 4px auto;
    width: 100%;
  }
}
section.top_how_to_use .section_container .ly_panels .card .ly_step_container {
  min-width: 88px;
}
section.top_how_to_use .section_container .ly_panels .card .ly_step_container .step_index {
  display: flex;
  justify-content: center;
  line-height: normal;
  vertical-align: middle;
  margin: 0;
}
section.top_how_to_use .section_container .ly_panels .card .ly_step_container .step_index .step {
  font-size: 1.2rem;
  color: #029C97;
  margin: auto 4px;
}
section.top_how_to_use .section_container .ly_panels .card .ly_step_container .step_index .number {
  color: #029C97;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels .card .ly_step_container .step_index .number {
    font-size: 1.6rem;
  }
}
section.top_how_to_use .section_container .ly_panels .card img {
  margin: 8px auto 0 auto;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels .card img {
    margin: 0 16px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels .card .ly_text_container {
    text-align: left;
    margin: auto 0;
  }
}
section.top_how_to_use .section_container .ly_panels .card .ly_text_container .title {
  font-size: 1.8rem;
}
@media screen and (max-width: 960px) {
  section.top_how_to_use .section_container .ly_panels .card .ly_text_container .title {
    font-size: 1.6rem;
  }
}
section.top_how_to_use .section_container .ly_panels .card .ly_text_container .description {
  font-size: 1.4rem;
  line-height: 1.5;
}
section.top_how_to_use .section_container .annotation {
  margin: 16px 0;
  color: #888888;
  font-size: 1rem;
}

/*===============================================
top fee
===============================================*/
section.top_fee {
  background-color: #022F2D;
}
section.top_fee .section_container {
  padding: 2rem 14rem;
  max-width: 1044px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_fee .section_container {
    padding: 1.6rem;
  }
}
section.top_fee .section_container {
  color: #fff;
}
section.top_fee .section_container .ly_header_container {
  text-align: center;
  border-top: 1px solid #707070;
  padding: 0;
}
section.top_fee .section_container .ly_container {
  font-weight: 700;
  text-align: center;
  margin: 32px;
}
section.top_fee .section_container .ly_container .title {
  font-size: 36px;
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  section.top_fee .section_container .ly_container .title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }
}
section.top_fee .section_container .ly_container .title .price {
  margin: 0 8px 0 16px;
  font-size: 4.8rem;
}
@media screen and (max-width: 960px) {
  section.top_fee .section_container .ly_container .title .price {
    font-size: 2.8rem;
  }
}
section.top_fee .section_container .ly_container .title .unit {
  font-size: 2.4rem;
}
@media screen and (max-width: 960px) {
  section.top_fee .section_container .ly_container .title .unit {
    font-size: 1.6rem;
  }
}
section.top_fee .section_container .ly_container .title .plus {
  margin: 4px;
  font-size: 3.2rem;
  font-weight: 300;
}
@media screen and (max-width: 960px) {
  section.top_fee .section_container .ly_container .title .plus {
    font-size: 1.8rem;
  }
}
section.top_fee .section_container .ly_container .description {
  font-size: 2.4rem;
}
@media screen and (max-width: 960px) {
  section.top_fee .section_container .ly_container .description {
    font-size: 1.6rem;
  }
}
section.top_fee .section_container .ly_table {
  margin: 24px auto;
  color: #222222;
  border: 1px solid #222222;
  max-width: 1156px;
}
section.top_fee .section_container .ly_table .table_header {
  padding: 16px;
  border: 1px solid #222222;
  background-color: #E6F5F5;
  vertical-align: middle;
  font-weight: 700;
  font-size: 1.8rem;
  min-width: 80px;
}
@media screen and (max-width: 960px) {
  section.top_fee .section_container .ly_table .table_header {
    font-size: 1.4rem;
  }
}
section.top_fee .section_container .ly_table .table_body {
  padding: 24px;
  border: 1px solid #222222;
  background-color: #ffffff;
  font-size: 1.6rem;
  white-space: normal;
  line-height: 1.2;
  vertical-align: middle;
}
@media screen and (max-width: 960px) {
  section.top_fee .section_container .ly_table .table_body {
    font-size: 1.4rem;
  }
}

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

/*===============================================
top case
===============================================*/
section.top_case {
  background-color: #F8F8F8;
}
section.top_case .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_case .section_container {
    padding: 1.6rem;
  }
}
section.top_case .section_container {
  margin: 0 auto;
}
section.top_case .section_container .ly_header_container {
  text-align: center;
  padding: 64px 0 0 0;
}
@media screen and (max-width: 960px) {
  section.top_case .section_container .ly_header_container {
    padding-top: 32px;
  }
}
section.top_case .section_container .ly_contents_container {
  margin: 24px 0 0 0;
  color: #222222;
  display: flex;
  padding-bottom: 16px;
  gap: 16px;
  overflow-x: auto;
}
@media screen and (max-width: 960px) {
  section.top_case .section_container .ly_contents_container {
    grid-template-columns: repeat(auto-fit, 320px);
  }
}
section.top_case .section_container .ly_contents_container .card {
  display: flex;
  flex-direction: column;
  min-width: calc((100% - 1.6rem) / 2);
  max-width: calc((100% - 1.6rem) / 2);
  border-radius: 16px;
  border: 1px solid rgba(152, 152, 152, 0.35);
  background-color: #fff;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  gap: 35px;
}
@media screen and (max-width: 960px) {
  section.top_case .section_container .ly_contents_container .card {
    min-width: 320px;
    max-width: 100%;
    padding: 12px;
  }
}
section.top_case .section_container .ly_contents_container .card .title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
section.top_case .section_container .ly_contents_container .card .title .company {
  order: 2;
  white-space: nowrap;
}
section.top_case .section_container .ly_contents_container .card .title .logo_frame {
  order: 1;
  width: 170px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
section.top_case .section_container .ly_contents_container .card .title .logo_frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
section.top_case .section_container .ly_contents_container .card .title .logo-nitori {
  transform: scale(1.08);
}
section.top_case .section_container .ly_contents_container .card .title .logo-autec {
  transform: scale(1.03);
}
section.top_case .section_container .ly_contents_container .card .title .logo-fuji {
  transform: scale(1.05);
}
section.top_case .section_container .ly_contents_container .card .title .logo-ibata {
  transform: scale(1.04);
}
@media screen and (max-width: 960px) {
  section.top_case .section_container .ly_contents_container .card .title {
    font-size: 1.8rem;
  }
  section.top_case .section_container .ly_contents_container .card .title .company {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  section.top_case .section_container .ly_contents_container .card .title .logo_frame {
    width: 130px;
    height: 40px;
  }
  section.top_case .section_container .ly_contents_container .card .title .logo-nitori {
    transform: scale(1.05);
  }
  section.top_case .section_container .ly_contents_container .card .title .logo-autec {
    transform: scale(1.02);
  }
  section.top_case .section_container .ly_contents_container .card .title .logo-fuji {
    transform: scale(1.03);
  }
  section.top_case .section_container .ly_contents_container .card .title .logo-ibata {
    transform: scale(1.02);
  }
}
section.top_case .section_container .ly_contents_container .card .ly_description_container {
  margin-left: 0;
}
section.top_case .section_container .ly_contents_container .card .ly_description_container .tag {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 0;
  margin: 0 0 2px;
  border-radius: 0;
  background-color: transparent;
  color: #222222;
  -webkit-text-decoration: underline #FFD646 3px;
          text-decoration: underline #FFD646 3px;
  width: -moz-fit-content;
  width: fit-content;
}
section.top_case .section_container .ly_contents_container .card .ly_description_container .description {
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 6px;
  line-height: 1.4;
}
section.top_case .section_container .ly_contents_container .card .ly_description_container .description:last-child {
  margin-bottom: 0;
}
section.top_case .section_container .ly_contents_container .card .ly_description_container .description a {
  color: #029C97;
  text-decoration: underline;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  section.top_case .section_container .ly_contents_container .card .ly_description_container .description {
    font-size: 1.4rem;
  }
}
section.top_case .section_container .ly_contents_container .card .ly_description_container .description:nth-of-type(1) {
  min-height: 2.8em;
}
section.top_case .section_container .ly_contents_container .card .ly_description_container .description:nth-of-type(2) {
  min-height: 4.2em;
}
section.top_case .section_container .ly_contents_container .card .ly_description_container .description:nth-of-type(3) {
  min-height: 7em;
}
section.top_case .section_container .ly_contents_container .card .ly_description_container .decision-points span {
  display: block;
}
@media screen and (max-width: 960px) {
  section.top_case .section_container .ly_contents_container .card .ly_description_container .description:nth-of-type(1),
  section.top_case .section_container .ly_contents_container .card .ly_description_container .description:nth-of-type(2),
  section.top_case .section_container .ly_contents_container .card .ly_description_container .description:nth-of-type(3) {
    min-height: auto;
  }
}

/*===============================================
top contact us
===============================================*/
section.top_contact_us {
  background-color: #F8F8F8;
}
section.top_contact_us .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_contact_us .section_container {
    padding: 1.6rem;
  }
}
section.top_contact_us .section_container {
  color: #fff;
  padding: 32px 140px 0 140px;
}
@media screen and (max-width: 960px) {
  section.top_contact_us .section_container {
    padding: 16px 24px 0;
  }
}
@media screen and (max-width: 640px) {
  section.top_contact_us .section_container {
    padding: 16px;
  }
}
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: 960px) {
  section.top_contact_us .section_container .ly_inner_container {
    border-radius: 160px;
    padding: 20px 24px;
  }
}
@media screen and (max-width: 640px) {
  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;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}
@media screen and (max-width: 960px) {
  section.top_contact_us .section_container .ly_inner_container .ly_text_container {
    margin: 0 16px;
  }
}
@media screen and (max-width: 640px) {
  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: 900;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  writing-mode: horizontal-tb;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}
@media screen and (max-width: 960px) {
  section.top_contact_us .section_container .ly_inner_container .ly_text_container .title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 640px) {
  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;
  writing-mode: horizontal-tb;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}
@media screen and (max-width: 960px) {
  section.top_contact_us .section_container .ly_inner_container .ly_text_container .description {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  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: 960px) {
  section.top_contact_us .section_container .ly_inner_container img {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 640px) {
  section.top_contact_us .section_container .ly_inner_container img {
    position: absolute;
    width: 80px;
    height: 60px;
    top: -20px;
    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: 240px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  section.top_contact_us .section_container .ly_inner_container .el_white_button {
    width: 200px;
    padding: 24px 12px;
  }
}
@media screen and (max-width: 640px) {
  section.top_contact_us .section_container .ly_inner_container .el_white_button {
    width: 240px;
    padding: unset;
  }
}
@media screen and (max-width: 1200px) and (min-width: 641px) {
  section.top_contact_us .section_container {
    padding: 16px 24px 0;
  }
  section.top_contact_us .section_container .ly_inner_container {
    border-radius: 160px;
    padding: 20px 24px;
  }
  section.top_contact_us .section_container .ly_inner_container .ly_text_container {
    margin: 0 16px;
  }
  section.top_contact_us .section_container .ly_inner_container .ly_text_container .title {
    font-size: 2.2rem;
  }
  section.top_contact_us .section_container .ly_inner_container .ly_text_container .description {
    font-size: 1.4rem;
  }
  section.top_contact_us .section_container .ly_inner_container img {
    width: 80px;
    height: 80px;
  }
  section.top_contact_us .section_container .ly_inner_container .el_white_button {
    width: 200px;
    padding: 24px 12px;
  }
}

/*===============================================
top function
===============================================*/
section.top_function .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_function .section_container {
    padding: 1.6rem;
  }
}
section.top_function .section_container .ly_header_container {
  text-align: center;
  padding: 0;
}
section.top_function .section_container .subtitle {
  margin-top: 16px;
  text-align: center;
}
section.top_function .section_container p {
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  section.top_function .section_container p {
    font-size: 1.4rem;
  }
}
section.top_function .section_container .ly_card_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 960px) {
  section.top_function .section_container .ly_card_list {
    flex-direction: column;
  }
}
section.top_function .section_container .ly_card_list .card {
  border: none;
  margin: 16px auto;
  width: 30%;
}
@media screen and (max-width: 960px) {
  section.top_function .section_container .ly_card_list .card {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
}
section.top_function .section_container .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 .section_container .ly_card_list .card img {
    margin: auto 16px;
    max-width: 120px;
    min-width: 120px;
    height: 140px;
  }
}
section.top_function .section_container .ly_card_list .card .ly_text_container {
  margin: 0 24px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  section.top_function .section_container .ly_card_list .card .ly_text_container {
    text-align: left;
    margin: 0 8px 0 0;
  }
}
section.top_function .section_container .ly_card_list .card .ly_text_container .title {
  font-size: 2.8rem;
  margin: auto;
}
@media screen and (max-width: 960px) {
  section.top_function .section_container .ly_card_list .card .ly_text_container .title {
    font-size: 1.8rem;
    margin: auto 0;
  }
}
section.top_function .section_container .ly_card_list .card .ly_text_container .description {
  font-size: 1.6rem;
  margin: auto;
}
@media screen and (max-width: 960px) {
  section.top_function .section_container .ly_card_list .card .ly_text_container .description {
    font-size: 1.4rem;
  }
}
section.top_function .section_container .ly_card_list .card:nth-child(4) .ly_text_container {
  margin: 0;
}
section.top_function .section_container .ly_card_list .card:nth-child(4) .ly_text_container .title {
  white-space: nowrap;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1200px) {
  section.top_function .section_container .ly_card_list .card:nth-child(4) .ly_text_container {
    margin: 0 24px;
  }
  section.top_function .section_container .ly_card_list .card:nth-child(4) .ly_text_container .title {
    white-space: normal;
    letter-spacing: inherit;
  }
}
section.top_function .section_container .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 .section_container .ly_movie_container .title {
    font-size: 1.4rem;
  }
}
section.top_function .section_container .ly_movie_container .demo {
  margin: 0 auto;
  width: 100%;
  height: 540px;
}
@media screen and (max-width: 960px) {
  section.top_function .section_container .ly_movie_container .demo {
    height: 420px;
  }
}

/*===============================================
top logo list
===============================================*/
section.top_logo_list .section_container {
  padding: 2rem 8rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 960px) {
  section.top_logo_list .section_container {
    padding: 1.6rem;
  }
}
section.top_logo_list .section_container {
  padding-top: 0px;
  margin-top: 16px;
}
@media screen and (max-width: 960px) {
  section.top_logo_list .section_container {
    margin-top: 0;
  }
}
section.top_logo_list .section_container h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 16px;
}
section.top_logo_list .section_container .ly_loop_wrap {
  display: flex;
  justify-content: center;
}
section.top_logo_list .section_container .ly_loop_wrap .loop1,
section.top_logo_list .section_container .ly_loop_wrap .loop2 {
  width: 1640px;
  text-align: center;
}
section.top_logo_list .section_container .ly_loop_wrap .loop_item {
  display: inline-block;
  width: 240px;
  margin: 0 16px;
}
@media screen and (max-width: 960px) {
  section.top_logo_list .section_container .ly_loop_wrap .loop_item {
    width: 120px;
    margin: 0 8px;
  }
}
section.top_logo_list .section_container .ly_loop_wrap .loop_item img {
  width: auto;
}
section.top_logo_list .section_container .anchor_area {
  text-align: center;
  font-size: 1.8rem;
  margin: 24px;
}
@media screen and (max-width: 960px) {
  section.top_logo_list .section_container .anchor_area {
    font-size: 1.4rem;
    margin: 16px;
  }
}
section.top_logo_list .section_container .anchor_area a {
  text-decoration: underline;
}

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

/*===============================================
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: 120px;
  margin: auto 40px 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: 280px;
  border-radius: 48px;
  font-size: 1.6rem;
  text-align: center;
  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 .button_inner {
  margin: 0 0 12px 0;
}
header.rittai_lp .ly_hamburgerMenu .ly_buttons_area button .annotation {
  font-size: 1.2rem;
}
header.rittai_lp .ly_hamburgerMenu .ly_buttons_area button .title {
  font-weight: 700;
}

/*===============================================
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: #029C97;
}

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

.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::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 {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  padding: 0;
}
.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-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 30px solid #022F2D;
}

/*===============================================
arc
===============================================*/
.el_arc_container {
  background-color: #fff;
}
.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);
}

@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 {
  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;
}
.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);
}/*# sourceMappingURL=style.css.map */