/* default settings */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* reset browser (chrome, safari, firefox, ie, edge)
/* only for new website (remove if you are updating for other website)
@import "reset";
/* =================================================================== */
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/*/
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme*/
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.*/
/* ==========================================================================
 * Base styles: opinionated defaults
 * ==========================================================================*/
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

html {
  color: #01222F;
  line-height: 1.5;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media (max-width: 768px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media (min-width: 769px) and (max-width: 1366px) {
  html {
    font-size: 1.1713030747vw;
  }
}

body {
  background-color: #E6F6FD;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.*/
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
\::-moz-selection,
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440*/
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

iframe {
  border: none;
}

/*
 * Remove default fieldset styles.*/
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.*/
textarea {
  resize: vertical;
}

/* ==========================================================================
 * Author's custom styles
 * ==========================================================================*/
/* ==========================================================================
 * Helper classes
 * ==========================================================================*/
/*
 * Hide visually and from screen readers*/
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe*/
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1*/
}
.sr-only.focusable:active, .sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638*/
/*
 * Hide visually and from screen readers, but maintain layout*/
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.*/
.clearfix::before {
  content: " ";
  display: table;
}
.clearfix::after {
  content: " ";
  display: table;
  clear: both;
}

/* ==========================================================================
* EXAMPLE Media Queries for Responsive Design.
* These examples override the primary ('mobile first') styles.
* Modify as content requires.
* ==========================================================================*/
@media only screen and (min-width: 35em) { /* Style adjustments for viewports that meet the condition*/ }
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) { /* Style adjustments for high resolution devices*/ }
/* ==========================================================================
 * Print styles.
 * Inlined to avoid the additional HTTP request:
 * https://www.phpied.com/delay-loading-your-print-css/
 * ==========================================================================*/
@media print {
  * {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  *::before, *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster*/
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a {
    text-decoration: underline;
  }
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol*/
  a[href^="#"]::after, a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables*/
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.text-underline {
  text-decoration: underline;
}
.text-line-through {
  text-decoration: line-through;
}
.text-no-underline {
  text-decoration: none;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-300 {
  font-weight: 300;
}
.text-400 {
  font-weight: 400;
}
.text-500 {
  font-weight: 500;
}
.text-600 {
  font-weight: 600;
}
.text-700 {
  font-weight: 700;
}
.text-en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 600;
}

.d-block {
  display: block !important;
}
.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (max-width: 768px) {
  .only-pc {
    display: none;
  }
}
@media (min-width: 769px) {
  .only-sp {
    display: none;
  }
}

.wrapper {
  margin: 0 auto;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
  width: 100%;
  max-width: 75rem;
}
@media (max-width: 768px) {
  .wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 100%;
  }
}

.main {
  position: relative;
  z-index: 1;
}

.btn {
  border: none;
}
.btn:disabled {
  cursor: default !important;
}
.btn:not(:disabled) {
  cursor: pointer !important;
}

.btn-blue {
  margin: 0 auto;
  border-radius: 4.125rem;
  color: white;
  background: #1EB1EB url("../../img/arrow_white.svg") no-repeat 93.5% center/0.4375rem;
  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;
  font-size: 1rem;
  line-height: 1;
  width: 18.125rem;
  height: 4rem;
  font-weight: 900;
  -webkit-box-shadow: 0.25rem 0.25rem 0 #D6D6D6;
          box-shadow: 0.25rem 0.25rem 0 #D6D6D6;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
@media (min-width: 769px) and (hover: hover) {
  .btn-blue:hover {
    background-color: #9A9A9A;
    -webkit-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
  }
}

.header {
  padding-top: 2.5rem;
  padding-right: 3.75rem;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .header {
    padding-top: 1.75rem;
    padding-right: 1.25rem;
  }
}
.header_menu_right {
  padding-left: 1.3125rem;
  width: 10.6875rem;
  height: 4.375rem;
  border-radius: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
          backdrop-filter: blur(30px) saturate(150%);
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(1, 34, 47, 0.1);
          box-shadow: 0 0.1875rem 0.375rem rgba(1, 34, 47, 0.1);
  z-index: 1000;
  position: relative;
}
@media (max-width: 768px) {
  .header_menu_right {
    width: 9.5625rem;
    height: 3.75rem;
  }
}
.header_lang .txt-lang {
  padding-left: 0.5rem;
  width: 4.5rem;
  height: 1.8125rem;
  border: 1px solid #1FB1EB;
  border-radius: 1.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  color: #1FB1EA;
  line-height: 1;
  font-weight: 600;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 769px) and (hover: hover) {
  .header_lang .txt-lang:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
.header_lang .txt-lang:after {
  content: "";
  width: 0.5625rem;
  height: 0.375rem;
  position: absolute;
  top: 50%;
  right: 0.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../../common/img/arrow_blue.svg") no-repeat center center/100% 100%;
}
@media (max-width: 768px) {
  .header_lang .txt-lang {
    padding-left: 0.375rem;
    width: 3.9375rem;
    height: 1.625rem;
    font-size: 0.75rem;
    font-weight: bold;
  }
}
.header_lang_inner {
  position: absolute;
  top: calc(100% - 0.625rem);
  z-index: 1001;
  width: 6.25rem;
  background-color: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
  display: none;
}
.header_lang_inner a {
  display: block;
  width: 100%;
  height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #1FB1EB;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header_lang_inner a:hover {
  background-color: #1FB1EB;
  color: #fff;
}
.header_lang_inner a.active {
  background-color: #1FB1EB;
  color: #fff;
}
.header_lang.is-active .header_lang_inner {
  display: block;
}
.header_lang.is-active .txt-lang:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.header_hambuger {
  margin-left: 1rem;
  width: 3.375rem;
  height: 3.375rem;
  background-color: #1FB1EB;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 769px) and (hover: hover) {
  .header_hambuger:hover {
    opacity: 0.8;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media (max-width: 768px) {
  .header_hambuger {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.header_hambuger_btn {
  width: 1.3125rem;
  height: 0.9375rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .header_hambuger_btn {
    width: 1rem;
    height: 0.75rem;
  }
}
.header_hambuger_btn span {
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: #fff;
  border-radius: 0.09375rem;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header_hambuger_btn span:nth-child(1) {
  top: 0;
}
.header_hambuger_btn span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header_hambuger_btn span:nth-child(3) {
  bottom: 0;
}
.header_hambuger.is-active .header_hambuger_btn span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
}
.header_hambuger.is-active .header_hambuger_btn span:nth-child(2) {
  opacity: 0;
}
.header_hambuger.is-active .header_hambuger_btn span:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-30deg);
          transform: translateY(50%) rotate(-30deg);
}
.header_main {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 60rem;
  height: 100vh;
  z-index: 999;
}
@media (max-width: 768px) {
  .header_main {
    width: 100%;
  }
}
.header_inner {
  padding: 12.5rem 0 6.25rem 6.25rem;
}
@media (max-width: 768px) {
  .header_inner {
    padding: 6.25rem 3rem 6.25rem;
  }
}
.header_nav {
  width: 100%;
}
@media (max-width: 768px) {
  .header_nav {
    height: calc(98dvh - 6.25rem);
    overflow: hidden;
  }
}
.header_nav_inner {
  padding-bottom: 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: auto;
}
@media (min-width: 769px) {
  .header_nav_inner {
    max-height: 100vh;
  }
}
@media (max-width: 768px) {
  .header_nav_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
}
.header_nav_list {
  width: 58%;
  display: block;
}
@media (max-width: 768px) {
  .header_nav_list {
    width: 100%;
  }
  .header_nav_list:first-child li:first-child .text-en {
    padding-top: 2px;
  }
}
.header_nav_list li {
  width: 100%;
}
.header_nav_list li + li {
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .header_nav_list li + li {
    margin-top: 2rem;
  }
}
.header_nav_list + .header_nav_list {
  width: 40%;
}
@media (max-width: 768px) {
  .header_nav_list + .header_nav_list {
    margin-top: 2rem;
    padding-top: 0.625rem;
    width: 100%;
  }
}
.header_nav_link {
  display: block;
  color: #035475;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header_nav_link span {
  display: block;
}
.header_nav_link span.text-en {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 768px) {
  .header_nav_link span.text-en {
    font-size: 1.5rem;
  }
}
.header_nav_link span.text-ja {
  margin-top: 0.3125rem;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 768px) {
  .header_nav_link span.text-ja {
    margin-top: 0;
    font-size: 0.6875rem;
    line-height: 1.5454545455;
  }
}
@media (min-width: 769px) and (hover: hover) {
  .header_nav_link:hover {
    color: #0AAFE8;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
}
.header.is-show {
  opacity: 1 !important;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header.is-active {
  display: block !important;
}
.header.is-active .header_menu_right {
  -webkit-box-shadow: none;
          box-shadow: none;
}

body.has-header .header {
  z-index: 9;
}

@media (min-width: 769px) {
  .overlay-black {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: -1;
  }
}
@media (max-width: 768px) {
  .overlay-black {
    display: none !important;
  }
}

.overlay-blur {
  position: fixed;
  top: 3.125rem;
  right: 4.6875rem;
  width: 0;
  height: 0;
  background-color: #fff;
  border-radius: 3.125rem;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
          backdrop-filter: blur(30px) saturate(150%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
}

.header.is-active .overlay-blur {
  width: 60rem;
  height: 100vh;
  background-color: white;
  -webkit-backdrop-filter: blur(0) saturate(0);
          backdrop-filter: blur(0) saturate(0);
  top: 0;
  right: 0;
  border-radius: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 999;
}
.header.is-active .overlay-black {
  width: 100%;
  -webkit-animation: widthMenu 0.5s ease forwards;
          animation: widthMenu 0.5s ease forwards;
}

@-webkit-keyframes widthMenu {
  0% {
    width: 0%;
    opacity: 0;
  }
  30% {
    width: 50%;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes widthMenu {
  0% {
    width: 0%;
    opacity: 0;
  }
  30% {
    width: 50%;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
.footer {
  background-color: #01A0E2;
  width: 100%;
  height: 6.25rem;
}
@media (max-width: 768px) {
  .footer {
    height: 5.8125rem;
  }
}
.footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 100%;
}
@media (max-width: 768px) {
  .footer img {
    width: 100%;
  }
}

.circle-wrapper {
  position: relative;
  width: 11rem;
  height: 5.0625rem;
  margin: 0 auto;
  opacity: 0;
}
.circle-wrapper img {
  width: 1.875rem;
}
.circle-wrapper.animated {
  opacity: 1;
}
.circle-wrapper.animated .right {
  opacity: 1;
  -webkit-animation: openRight 0.5s forwards cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: openRight 0.5s forwards cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.circle-wrapper.animated .content {
  -webkit-animation: fadeIn 0.3s ease-in-out 0.5s forwards;
          animation: fadeIn 0.3s ease-in-out 0.5s forwards;
}
.circle-wrapper .half-circle {
  position: absolute;
  top: 0;
  height: auto;
  z-index: 1;
}
.circle-wrapper .left {
  top: 2.5625rem;
  left: 0.125rem;
  -webkit-transform: rotate(121deg);
          transform: rotate(121deg);
}
.circle-wrapper .right {
  top: 2.5625rem;
  left: 1.125rem;
  opacity: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: translateX(0) rotate(-56deg);
          transform: translateX(0) rotate(-56deg);
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.circle-wrapper .content {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 0;
}
.circle-wrapper .content img {
  width: auto;
}

/* Keyframes */
@-webkit-keyframes openRight {
  from {
    top: 2.5rem;
    left: 1.125rem;
    -webkit-transform: translateX(0) rotate(-56deg);
            transform: translateX(0) rotate(-56deg);
  }
  to {
    top: 0.375rem;
    left: 2.375rem;
    -webkit-transform: translateX(6.25rem) rotate(0);
            transform: translateX(6.25rem) rotate(0);
  }
}
@keyframes openRight {
  from {
    top: 2.5rem;
    left: 1.125rem;
    -webkit-transform: translateX(0) rotate(-56deg);
            transform: translateX(0) rotate(-56deg);
  }
  to {
    top: 0.375rem;
    left: 2.375rem;
    -webkit-transform: translateX(6.25rem) rotate(0);
            transform: translateX(6.25rem) rotate(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes clipIn {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0%);
            clip-path: inset(0%);
  }
}
@keyframes clipIn {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0%);
            clip-path: inset(0%);
  }
}
.circle-wrapper-hello--01 {
  position: relative;
  width: 23.5625rem;
  height: 30.625rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .circle-wrapper-hello--01 {
    margin-top: -1.75rem;
    margin-left: 1.9375rem;
    width: 23.25rem;
    height: 30.75rem;
  }
}
.circle-wrapper-hello--01 .hello_img_deco {
  position: absolute;
  top: 46.8%;
  right: -0.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6.875rem;
  height: 6.4375rem;
  z-index: 3;
  opacity: 0;
}
@media (max-width: 768px) {
  .circle-wrapper-hello--01 .hello_img_deco {
    width: 4.5625rem;
    height: 4.875rem;
    top: 40.8%;
    right: 2.25rem;
  }
}
.circle-wrapper-hello--01 .img-right {
  width: 23.5625rem;
  height: 20.9375rem;
  position: absolute;
  bottom: 9.625rem;
  left: 0;
  z-index: 3;
}
.circle-wrapper-hello--01.animated .left {
  z-index: 0;
}
.circle-wrapper-hello--01.animated .right {
  -webkit-animation: openRightHllo01 0.75s forwards cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: openRightHllo01 0.75s forwards cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  z-index: 3;
}
.circle-wrapper-hello--01.animated .hello_img {
  opacity: 1;
  scale: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, scale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, scale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  z-index: 1;
}
.circle-wrapper-hello--01.animated .hello_img_deco {
  -webkit-animation: fadeIn 0.8s ease-in-out 1s forwards;
          animation: fadeIn 0.8s ease-in-out 1s forwards;
}
.circle-wrapper-hello--01 .half-circle {
  position: absolute;
  height: auto;
}
.circle-wrapper-hello--01 .half-circle.left {
  bottom: 0;
  left: 0.125rem;
  width: 18.75rem;
  z-index: 0;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.circle-wrapper-hello--01 .half-circle.right {
  top: 9.125rem;
  left: 1.8125rem;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: translateX(0) rotate(18deg);
          transform: translateX(0) rotate(18deg);
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  width: 17.8125rem;
  z-index: 2;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
@media (max-width: 768px) {
  .circle-wrapper-hello--01 .half-circle.right {
    width: 17.9375rem;
  }
}
.circle-wrapper-hello--01 .hello_img {
  position: absolute;
  top: 56.7%;
  left: 40.7%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 0;
  width: 19.25rem;
  z-index: 0;
  opacity: 0;
  scale: 0;
}
@media (max-width: 768px) {
  .circle-wrapper-hello--01 .hello_img {
    top: 55.7%;
    left: 40%;
    width: 18.1875rem;
  }
}
.circle-wrapper-hello--01 .hello_img img {
  width: 100%;
}

/* Keyframes */
@-webkit-keyframes openRightHllo01 {
  from {
    top: 9.125rem;
    left: 1.8125rem;
    -webkit-transform: translateX(0) rotate(18deg);
            transform: translateX(0) rotate(18deg);
  }
  to {
    top: 1.8125rem;
    left: -0.3125rem;
    -webkit-transform: translateX(0) rotate(0);
            transform: translateX(0) rotate(0);
  }
}
@keyframes openRightHllo01 {
  from {
    top: 9.125rem;
    left: 1.8125rem;
    -webkit-transform: translateX(0) rotate(18deg);
            transform: translateX(0) rotate(18deg);
  }
  to {
    top: 1.8125rem;
    left: -0.3125rem;
    -webkit-transform: translateX(0) rotate(0);
            transform: translateX(0) rotate(0);
  }
}
.circle-wrapper-hello--02 {
  position: relative;
  width: 22.625rem;
  height: 33.125rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .circle-wrapper-hello--02 {
    margin-top: -5rem;
    margin-left: 1.4375rem;
    width: 22.6875rem;
    height: 33.125rem;
  }
}
.circle-wrapper-hello--02 .hello_img_deco {
  position: absolute;
  top: 45%;
  left: -2.0625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4.875rem;
  height: 6.875rem;
  z-index: 3;
  opacity: 0;
}
@media (max-width: 768px) {
  .circle-wrapper-hello--02 .hello_img_deco {
    top: 46%;
  }
}
.circle-wrapper-hello--02 .img-right {
  width: 23.5625rem;
  height: 24.0625rem;
  position: absolute;
  bottom: 9.0625rem;
  right: 0;
  z-index: 3;
}
.circle-wrapper-hello--02.animated .right {
  -webkit-animation: openRightHllo02 0.75s forwards cubic-bezier(0.215, 0.61, 0.355, 1);
          animation: openRightHllo02 0.75s forwards cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.circle-wrapper-hello--02.animated .hello_img {
  opacity: 1;
  scale: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, scale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
  transition: opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s, scale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.circle-wrapper-hello--02.animated .hello_img_deco {
  -webkit-animation: fadeIn 0.8s ease-in-out 1s forwards;
          animation: fadeIn 0.8s ease-in-out 1s forwards;
}
.circle-wrapper-hello--02 .half-circle {
  position: absolute;
  height: auto;
}
.circle-wrapper-hello--02 .half-circle.left {
  bottom: 0;
  right: 3.75rem;
  width: 18.8125rem;
  z-index: 0;
}
.circle-wrapper-hello--02 .half-circle.right {
  top: 11.5625rem;
  right: 5.4375rem;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transform: translateX(0) rotate(-18deg);
          transform: translateX(0) rotate(-18deg);
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  width: 17.9375rem;
  z-index: 2;
}
.circle-wrapper-hello--02 .hello_img {
  position: absolute;
  top: 59%;
  left: 42%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 0;
  width: 16.6875rem;
  z-index: 0;
  opacity: 0;
  scale: 0;
}
.circle-wrapper-hello--02 .hello_img img {
  width: 100%;
}
@media (max-width: 768px) {
  .circle-wrapper-hello--02 .hello_img {
    top: 59.6%;
  }
}

/* Keyframes */
@-webkit-keyframes openRightHllo02 {
  from {
    top: 11.5625rem;
    right: 5.4375rem;
    -webkit-transform: translateX(0) rotate(-18deg);
            transform: translateX(0) rotate(-18deg);
  }
  to {
    top: 1.8125rem;
    right: 3.875rem;
    -webkit-transform: translateX(0) rotate(0);
            transform: translateX(0) rotate(0);
  }
}
@keyframes openRightHllo02 {
  from {
    top: 11.5625rem;
    right: 5.4375rem;
    -webkit-transform: translateX(0) rotate(-18deg);
            transform: translateX(0) rotate(-18deg);
  }
  to {
    top: 1.8125rem;
    right: 3.875rem;
    -webkit-transform: translateX(0) rotate(0);
            transform: translateX(0) rotate(0);
  }
}
.primary-title {
  display: block;
  text-align: center;
}
.primary-title_box {
  margin: 0 auto;
  overflow: hidden;
  width: 23.5rem;
  height: 6.5rem;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .primary-title_box {
    width: 100%;
    height: 6.25rem;
  }
}
.primary-title_box img {
  margin: 0 auto;
  position: relative;
}
.primary-title_sub {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-weight: 600;
}
@media (max-width: 768px) {
  .primary-title_sub {
    margin-top: 0.625rem;
    font-size: 1rem;
    line-height: 1.6875;
  }
}