@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color--white: #ffffff;
  --color-font-base: #414f5d;
  --color-font-light: #919ca7;
  --color-bg-base: #f5f8f9;
  --color-bg-entry: #e0ebee;
  --color-bg-gradient-blue: linear-gradient(
      174.99deg,
      #75c2eb 0%,
      #43cfcf 50%,
      #4bd2d7 100%
  );
  --color-bg-gradient-blue-hover: linear-gradient(
      174.99deg,
      #69b7e3 0%,
      #13aaaa 50%,
      #21a9b0 100%
  );
  --color-bg-gradient-light-blue: linear-gradient(
      134.57deg,
      #e4eff9 0%,
      #e3f3f3 50%,
      #b6def0 100%
  );
  --color-bg-gradient-light-blue-hover: linear-gradient(
      134.57deg,
      #f0f8ff 0%,
      #d8f0fa 50%,
      #b6dcef 100%
  );
  --color-bg-gradient-light-green: linear-gradient(
      134.57deg,
      #e4f9f8 0%,
      #e3f3e9 50%,
      #c8f1c2 100%
  );
  --color-bg-gradient-light-green-hover: linear-gradient(
      134.57deg,
      #f0fcfd 0%,
      #d8f8f0 50%,
      #b6ead5 100%
  );
  --color-bg-header: linear-gradient(
      0deg,
      rgba(39, 56, 78, 0) 0%,
      rgba(39, 56, 78, 0.3) 100%
  );
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 960rem;
  --width-content: 1080rem;
  --width-content-l: 1300rem;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Zen Kaku Gothic New", sans-serif;
  --font-family-en: "Josefin Sans", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-header-entry: 40;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 5;
  --z-index-background: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

textarea {
  resize: vertical;
  display: block;
}

select {
  cursor: pointer;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: inherit;
}

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

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  width: 100%;
  height: auto;
  display: block;
}

dialog {
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  color: inherit;
  border: none;
}

iframe {
  vertical-align: bottom;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
:root {
  --base-vw: 380;
}
@media screen and (min-width: 768px) {
  :root {
    --base-vw: 1440;
  }
}

html {
  font-size: calc(100vw / var(--base-vw));
}

body {
  font-size: 16rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  background-color: var(--color-bg-base);
  z-index: var(--z-index-default);
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

/*!
component > button
------------------------------
*/
.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-button-more {
  padding: 15rem 23rem 13rem 23rem;
  border-radius: 32rem;
  border: 1rem solid var(--color-font-base);
  width: 117rem;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}
@media (any-hover: hover) {
  .c-button-more:hover {
    scale: 1.05;
  }
}
@media screen and (min-width: 768px) {
  .c-button-more {
    border: 1.5rem solid var(--color-font-base);
    border-radius: 50%;
    width: 100rem;
    height: 100rem;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10rem;
  }
}
.c-button-more__text {
  font-size: 14rem;
  font-weight: 600;
  line-height: 1;
  font-family: var(--font-family-en);
}
.c-button-more::after {
  content: "";
  display: block;
  width: 7rem;
  height: 12rem;
  background-image: url(../img/button/button_arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.c-button-greeting {
  padding: 15rem 23rem 13rem 23rem;
  border-radius: 32rem;
  border: 1rem solid var(--color-font-base);
  width: 203rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .c-button-greeting:hover {
    background-color: var(--color-font-base);
    color: var(--color--white);
  }
  .c-button-greeting:hover::after {
    background-image: url(../img/button/button_arrow-right-white.svg);
  }
}
@media screen and (min-width: 768px) {
  .c-button-greeting {
    padding: 17rem 31rem;
    width: 254rem;
  }
}
.c-button-greeting__text {
  font-size: 14rem;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .c-button-greeting__text {
    font-size: 16rem;
  }
}
.c-button-greeting::after {
  content: "";
  display: block;
  width: 7rem;
  height: 12rem;
  background-image: url(../img/button/button_arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.c-button-interview {
  padding: 18rem 32rem;
  border-radius: 32rem;
  width: 279rem;
  background-image: var(--color-bg-gradient-light-blue);
}
@media screen and (min-width: 768px) {
  .c-button-interview {
    padding: 18rem 32rem;
    width: 304rem;
  }
}
.c-button-interview__text {
  font-size: 14rem;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .c-button-interview__text {
    font-size: 16rem;
  }
}
.c-button-interview::after {
  content: "";
  display: block;
  width: 7rem;
  height: 12rem;
  background-image: url(../img/button/button_arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (any-hover: hover) {
  .c-button-interview:hover {
    background-image: var(--color-bg-gradient-light-blue-hover);
  }
}

.c-button-interview--green {
  background-image: var(--color-bg-gradient-light-green);
}
@media (any-hover: hover) {
  .c-button-interview--green:hover {
    background-image: var(--color-bg-gradient-light-green-hover);
  }
}

.c-button-entry {
  padding: 18rem 32rem 14rem 32rem;
  border-radius: 56rem;
  width: 322.58rem;
  background-image: var(--color-bg-gradient-blue);
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}
.c-button-entry__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8rem;
}
.c-button-entry__text-en {
  font-size: 24rem;
  font-family: var(--font-family-en);
  line-height: 1.7;
  color: var(--color--white);
}
.c-button-entry__text-ja {
  font-size: 14rem;
  line-height: 1.7;
  color: var(--color--white);
}
.c-button-entry::after {
  content: "";
  display: block;
  width: 11.58rem;
  height: 20rem;
  background-image: url(../img/button/button_arrow-right-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (any-hover: hover) {
  .c-button-entry:hover {
    background-image: var(--color-bg-gradient-blue-hover);
  }
}

/*!
component > title
------------------------------
*/
.c-title-en {
  font-family: var(--font-family-en);
  font-size: 32rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-title-en {
    font-size: 42rem;
  }
}

.c-title-ja {
  font-size: 14rem;
  line-height: 1.7;
  color: var(--color-font-light);
}

.c-title-type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12rem;
}

.c-title-type2 {
  display: block;
}

.c-title-type2-ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.c-title-type2-ja::before {
  content: "";
  height: 1rem;
  margin-right: 8rem;
  background-color: var(--color-font-light);
}

.c-title-type2-ja--feature::before {
  width: 73rem;
}
@media screen and (min-width: 768px) {
  .c-title-type2-ja--feature::before {
    width: 122rem;
  }
}

.c-title-type2-ja--entry::before {
  width: 34rem;
}
@media screen and (min-width: 768px) {
  .c-title-type2-ja--entry::before {
    width: 70rem;
  }
}

.c-title-type3 {
  display: block;
  text-align: center;
}

.c-title-type3-ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-title-type3-ja::before, .c-title-type3-ja::after {
  content: "";
  width: 46rem;
  height: 1rem;
  background-color: var(--color-font-light);
}
@media screen and (min-width: 768px) {
  .c-title-type3-ja::before, .c-title-type3-ja::after {
    width: 76rem;
  }
}
.c-title-type3-ja::before {
  margin-right: 8rem;
}
.c-title-type3-ja::after {
  margin-left: 8rem;
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  width: min(91%, var(--width-content-s));
  margin-inline: auto;
}

.l-container {
  width: min(91%, var(--width-content));
  margin-inline: auto;
}

.l-container-l {
  width: min(91%, var(--width-content-l));
  margin-inline: auto;
}

/*!
layout > header
------------------------------
*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-header);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  padding: 10rem 20rem;
  -webkit-box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
}

.l-header-title {
  margin-left: 20rem;
  font-size: 24rem;
  font-weight: 800;
  line-height: 1.7;
  font-family: var(--font-family-en);
  color: var(--color-font-base);
}
@media screen and (min-width: 768px) {
  .l-header-title {
    margin-left: 70rem;
    font-size: 32rem;
  }
}

@media screen and (min-width: 768px) {
  .l-header-nav-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: auto;
    margin-right: 64rem;
    gap: 64rem;
  }
}

.l-header-nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header-nav {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .l-header-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 32rem;
  }
}

.l-header-item {
  color: var(--color--black);
}
.l-header-item a {
  display: inline-block;
  position: relative;
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .l-header-item a {
    font-size: 16rem;
    font-weight: 800;
    line-height: 1.7;
    padding: 5rem 0;
  }
}
.l-header-item a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1rem;
  background-color: var(--color--white);
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (any-hover: hover) {
  .l-header-item a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.l-header-menu-button {
  width: 64rem;
  height: 64rem;
  background-color: var(--color-bg-base);
  cursor: pointer;
  position: relative;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-header-menu-button {
    display: none;
  }
}
.l-header-menu-button span {
  position: absolute;
  display: inline-block;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20rem;
  height: 1rem;
  background-color: var(--color-font-base);
}
.l-header-menu-button span:nth-child(1) {
  top: 17rem;
}
.l-header-menu-button span:nth-child(2) {
  top: 24rem;
}
.l-header-menu-button span:nth-child(3) {
  top: 31rem;
}
.l-header-menu-button span:nth-child(3)::after {
  content: "menu";
  position: absolute;
  top: 4rem;
  left: -9rem;
  color: var(--color-font-base);
  font-family: var(--font-family-en);
  font-size: 12rem;
  text-transform: uppercase;
}

/*!
layout > hamburger-menu
------------------------------
*/
.l-hamburger-menu-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: var(--z-index-modal);
}
@media screen and (min-width: 768px) {
  .l-hamburger-menu-dialog {
    display: none;
  }
}

.l-hamburger-menu-dialog-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10rem 20rem;
}

.l-hamburger-menu-button {
  width: 64rem;
  height: 64rem;
  background-color: var(--color-bg-base);
  position: relative;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-hamburger-menu-button {
    display: none;
  }
}
.l-hamburger-menu-button span {
  position: absolute;
  display: inline-block;
  left: 45%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 23.7rem;
  height: 1rem;
  background-color: var(--color-font-base);
}
.l-hamburger-menu-button span:nth-child(1) {
  top: 16rem;
  rotate: -37deg;
}
.l-hamburger-menu-button span:nth-child(2) {
  top: 31rem;
  rotate: 40deg;
}
.l-hamburger-menu-button::after {
  content: "CLOSE";
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: var(--color-font-base);
  font-family: var(--font-family-en);
  font-size: 12rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.l-hamburger-menu-content {
  padding: 0 20rem;
}

.l-hamburger-menu-list {
  margin-top: 32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24rem;
}

.l-hamburger-menu-item {
  color: var(--color-font-base);
}
.l-hamburger-menu-item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 243rem;
  height: 100%;
}

.l-hamburger-menu-item-text-en {
  font-family: var(--font-family-en);
  font-size: 24rem;
  line-height: 1.7;
  text-transform: uppercase;
}

.l-hamburger-menu-item-text-ja {
  font-size: 14rem;
  line-height: 1.7;
  margin-left: 8rem;
}

.l-hamburger-menu-button-entry {
  margin-top: 40rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18rem 32rem 14rem 32rem;
  border-radius: 56rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
  border: 1rem solid var(--color-bg-base);
}
.l-hamburger-menu-button-entry__text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8rem;
}
.l-hamburger-menu-button-entry__text-en {
  font-size: 24rem;
  font-family: var(--font-family-en);
  line-height: 1.7;
  color: var(--color--white);
}
.l-hamburger-menu-button-entry__text-ja {
  font-size: 14rem;
  line-height: 1.7;
  color: var(--color--white);
}
.l-hamburger-menu-button-entry::after {
  content: "";
  display: block;
  width: 11.58rem;
  height: 20rem;
  background-image: url(../img/button/button_arrow-right-white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*!
layout > footer
------------------------------
*/
.l-footer {
  padding: 56rem 0;
}

.l-footer-text {
  font-size: 14rem;
  line-height: 1.7;
  text-align: right;
}

/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  position: relative;
  background-image: url("/assets/img/top/top-kv-image.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}

.top-kv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 24rem;
  font-weight: 800;
  line-height: 1.7;
  font-family: var(--font-family-en);
  color: var(--color--black);
}
@media screen and (min-width: 768px) {
  .top-kv-text {
    font-size: 80rem;
  }
}

.top-kv-text span {
  display: inline-block;
}

/*!
page > top > tab
------------------------------
*/
.tab {
  margin-top: 60rem;
}

.tab-title {
  font-size: 28rem;
  font-weight: 600;
  color: #2c18ac;
  text-align: center;
}

.tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tab-list-item {
  font-size: 20rem;
  font-weight: 600;
  color: #d3d2d6;
  border-bottom: 2rem solid #ada7d2;
  padding: 10rem 100rem;
  cursor: pointer;
}

.tab-list-item.is-active {
  color: #2c18ac;
  border-bottom: 2rem solid #301ea9;
}

.tab-contents {
  margin: 30rem auto 0;
  max-width: 800rem;
}

.tab-content-item {
  display: none;
}

.tab-content-item.is-active {
  display: block;
}

.tab-content-item-text {
  font-size: 16rem;
  line-height: 1.7;
  color: #333;
}

/*!
page > top > modal
------------------------------
*/
.modal {
  margin-top: 100rem;
}

.modal-title {
  font-size: 28rem;
  font-weight: 600;
  color: #2c18ac;
  text-align: center;
}

.modal-button-container {
  text-align: center;
  margin-top: 20rem;
}

.modal-dialog-inner {
  padding: 30rem;
  width: 50vw;
  height: 30vh;
  position: relative;
}

/* モーダルを開いたときの背景色 */
#js-modal-dialog::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
#js-modal-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-close-button {
  position: absolute;
  top: 20rem;
  right: 20rem;
  background-color: rgb(194, 194, 194);
  border-radius: 10%;
  width: 40rem;
  height: 40rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .modal-close-button:hover {
    opacity: 0.8;
  }
}
.modal-close-button span {
  display: block;
  width: 20rem;
  height: 1.5px;
  position: absolute;
  top: 50%;
  background-color: #1b1b1b;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal-close-button span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modal-dialog-text {
  text-align: start;
  padding-right: 50rem;
}

.modal-button {
  background-color: #2c18ac;
  color: #fff;
  font-weight: 800;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .modal-button:hover {
    opacity: 0.8;
  }
}

/*!
page > top > dropdown-menu
------------------------------
*/
.dropdown-button {
  font-weight: 600;
}

.dropdown-menu {
  padding: 100px 0;
  max-width: 760px;
  margin: 0 auto;
}

.dropdown-menu-content {
  position: absolute;
  left: 45%;
  top: 70px;
  background-color: #f6f6f6;
  z-index: 2;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.dropdown-menu-item {
  white-space: nowrap;
}

.dropdown-menu-item:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.dropdown-menu-item a,
.dropdown-menu-item button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 48px 8px 24px;
  font-size: 20rem;
}

.dropdown-menu-item a:hover,
.dropdown-menu-item button:hover {
  background-color: #eee;
}

/*!
page > top > accordion
------------------------------
*/
.accordion {
  margin-top: 100px;
}

.accordion-title {
  font-size: 28px;
  font-weight: 600;
  color: #2c18ac;
  text-align: center;
}

.accordion-container {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}

.accordion-details.is-open .accordion-icon span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-summary {
  cursor: pointer;
  list-style: none;
  background-color: rgb(88, 88, 228);
  color: #f7f5ff;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}

.accordion-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.accordion-icon span {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #f7f5ff;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.accordion-icon span:first-child {
  width: 100%;
  height: 2px;
}

.accordion-icon span:last-child {
  width: 2px;
  height: 100%;
}

.accordion-content-text {
  background-color: rgb(227, 224, 233);
  padding: 30px;
}

/*!
page > top > modal
------------------------------
*/
.cta-section {
  margin-top: 200px;
  height: 400px;
  color: #fff;
  text-align: center;
  font-size: 30px;
}

.cta-title {
  font-size: 30px;
  font-weight: 600;
  color: #2c18ac;
  text-align: center;
}

.cta-text {
  font-size: 16px;
  color: #333;
  text-align: center;
}

.cta-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 100px;
  height: 50px;
  font-size: 20px;
  font-weight: bold;
  background-color: #313131;
  color: #fff;
  letter-spacing: 0.1em;
  opacity: 0;
  -webkit-transform: translateY(125px);
          transform: translateY(125px);
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
}
@media (any-hover: hover) {
  .cta-button:hover {
    background-color: #e5e5e5;
    color: #313131;
  }
}