@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  cursor: pointer;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #464646;
  font-size: 1.3rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 368px) {
  body {
    font-size: 1.25rem;
  }
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/pc-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 480px) {
  body::before {
    content: none;
  }
}
body.noscroll {
  overflow: hidden;
}

img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  -webkit-user-drag: none;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #464646;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.85;
}

.object_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.object_contain {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/*------------------------------------------------------------------------------
  l-wrapper
------------------------------------------------------------------------------*/
.l-wrapper {
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

.l-wrapper__pc {
  position: absolute;
  top: 50%;
  left: 30%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 31.2rem;
}
@media screen and (max-width: 1280px) {
  .l-wrapper__pc {
    left: 25%;
  }
}
@media screen and (max-width: 1023px) {
  .l-wrapper__pc {
    left: 2rem;
    max-width: 24rem;
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .l-wrapper__pc {
    display: none;
  }
}

.l-wrapper__pc-logo {
  max-width: 29.6rem;
  margin: 0 auto 2.8rem;
}
@media screen and (max-width: 1023px) {
  .l-wrapper__pc-logo {
    max-width: 20rem;
  }
}

.l-wrapper__sp {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: none;
  width: 100%;
  height: 100%;
  max-width: 42rem;
  max-height: 100vh;
  height: 100%;
  margin: 0 16vw 0 auto;
  overflow-y: scroll;
  overflow-x: hidden;
  position: relative;
  -webkit-box-shadow: 0px 0px 48px rgba(115, 196, 192, 0.08);
          box-shadow: 0px 0px 48px rgba(115, 196, 192, 0.08);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 1023px) {
  .l-wrapper__sp {
    margin-right: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .l-wrapper__sp {
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .l-wrapper__sp {
    max-width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    max-height: 100%;
  }
}
.l-wrapper__sp::-webkit-scrollbar {
  display: none;
}

.l-main {
  display: block;
  background-color: transparent;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*------------------------------------------------------------------------------
  l-header
------------------------------------------------------------------------------*/
.l-header {
  position: absolute;
  top: 2.7rem;
  left: 1rem;
  width: 100%;
  display: block;
  z-index: 9;
}

.l-header__logo {
  max-width: 20.2rem;
}
@media screen and (max-width: 368px) {
  .l-header__logo {
    max-width: 17rem;
  }
}

/*------------------------------------------------------------------------------
  l-footer
------------------------------------------------------------------------------*/
.l-footer {
  background-color: #1B9A94;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.l-footer__copyright {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: center;
  display: block;
  padding: 1rem 0 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*------------------------------------------------------------------------------
  c-inner
------------------------------------------------------------------------------*/
.c-inner {
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 1.6rem;
}

/*------------------------------------------------------------------------------
  c-burger-menu
------------------------------------------------------------------------------*/
.c-burger-menu {
  position: fixed;
  top: 0;
  right: 16vw;
  opacity: 0;
  z-index: 99;
  height: 100%;
  width: 40.4rem;
  -webkit-transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  visibility: hidden;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .c-burger-menu {
    right: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-burger-menu {
    right: calc(50% - 210px + 8px);
  }
}
@media screen and (max-width: 480px) {
  .c-burger-menu {
    right: 0;
    width: calc(100% - 1.6rem);
  }
}
.c-burger-menu.open {
  display: block;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 0;
  -webkit-box-shadow: -6px 0 32px rgba(0, 0, 0, 0.24);
          box-shadow: -6px 0 32px rgba(0, 0, 0, 0.24);
  background-color: #1B9A94;
  visibility: visible;
  z-index: 999;
}

.c-burger-menu__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8rem 1.6rem 0;
}

.c-burger-menu__nav-item {
  width: 100%;
  padding: 1.8rem 0;
  border-bottom: 1px dashed #EBF8F6;
}
.c-burger-menu__nav-item:first-child {
  border-top: 1px dashed #EBF8F6;
}

.c-burger-menu__nav-link {
  color: #EBF8F6;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.c-burger-menu__btn.c-btn {
  margin: 3.2rem auto 2rem;
}
.c-burger-menu__btn.c-btn .c-btn__copy {
  color: #fff;
}

.c-burger-menu__instagram {
  max-width: 3.2rem;
  display: block;
  margin: 0 auto;
}

/*------------------------------------------------------------------------------
  c-burger-btn
------------------------------------------------------------------------------*/
.c-burger-btn {
  position: fixed;
  display: block;
  cursor: pointer;
  top: 0;
  right: 16vw;
  z-index: 9999;
  width: 78px;
  height: 76px;
  background-color: #1B9A94;
  /* ハンバーガーメニューが開いたとき */
}
@media screen and (max-width: 1023px) {
  .c-burger-btn {
    right: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .c-burger-btn {
    right: calc(50% - 210px);
  }
}
@media screen and (max-width: 480px) {
  .c-burger-btn {
    right: 0;
  }
}
@media screen and (max-width: 368px) {
  .c-burger-btn {
    width: 70px;
    height: 72px;
  }
}
.c-burger-btn.cross {
  background-color: transparent;
}
.c-burger-btn.cross .c-burger-btn__bar--top {
  -webkit-transition-delay: 40ms;
          transition-delay: 40ms;
  -webkit-transform: translateY(6px) rotate(135deg);
          transform: translateY(6px) rotate(135deg);
  background-color: #fff;
}
.c-burger-btn.cross .c-burger-btn__bar--bottom {
  -webkit-transition-delay: 20ms;
          transition-delay: 20ms;
  -webkit-transform: translateY(-6px) rotate(-135deg);
          transform: translateY(-6px) rotate(-135deg);
  background-color: #fff;
}

.c-burger-btn__bar {
  margin: 0 auto;
  display: block;
  height: 2px;
  width: 36px;
  border-radius: 1px;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-burger-btn__bar--top {
  margin-bottom: 10px;
}

/*------------------------------------------------------------------------------
  c-fixed-cta
------------------------------------------------------------------------------*/
.c-fixed-cta {
  position: fixed;
  display: block;
  cursor: pointer;
  top: 0;
  right: calc(16vw + 7.8rem);
  z-index: 99;
  width: 78px;
  height: 76px;
  background-color: #F1877F;
  border-radius: 0 0 0 12px;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1023px) {
  .c-fixed-cta {
    right: calc(5vw + 7.8rem);
  }
}
@media screen and (max-width: 767px) {
  .c-fixed-cta {
    right: calc(50% - 210px + 78px);
  }
}
@media screen and (max-width: 480px) {
  .c-fixed-cta {
    right: 78px;
  }
}
@media screen and (max-width: 368px) {
  .c-fixed-cta {
    right: 70px;
    width: 70px;
    height: 72px;
  }
}
.c-fixed-cta::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 52%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/doc-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 24px;
}
@media screen and (max-width: 368px) {
  .c-fixed-cta::before {
    width: 21px;
    height: 20px;
  }
}

.c-fixed-cta__text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  padding-top: 3.2rem;
}
@media screen and (max-width: 368px) {
  .c-fixed-cta__text {
    font-size: 1.3rem;
    padding-top: 2.8rem;
  }
}

/*------------------------------------------------------------------------------
  c-btn
------------------------------------------------------------------------------*/
.c-btn {
  margin: 0 auto;
}

.c-btn__link {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  max-width: 29rem;
  height: 5.2rem;
  background-color: #F1877F;
  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;
  border-radius: 4.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 368px) {
  .c-btn__link {
    max-width: 27rem;
  }
}
.c-btn__link::after {
  content: "";
  position: absolute;
  top: 52.5%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/btn-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  height: 19px;
}

.c-btn__copy {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-align: center;
  display: block;
  margin-top: 0.6rem;
}

/*------------------------------------------------------------------------------
  c-title
------------------------------------------------------------------------------*/
.c-title {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 1.6rem;
}
.c-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  background-image: url(../img/title-ornament.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 31px;
  height: 24px;
}

.c-title--center {
  text-align: center;
  padding-top: 2.8rem;
}
.c-title--center::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-title--white::before {
  background-image: url(../img/title-ornament-blue.png);
}
.c-title--white .c-title__en {
  color: #fff;
  background: linear-gradient(94deg, #26B3A7 1.29%, #1B9A94 97.6%);
  background: none;
  -webkit-text-fill-color: #fff;
}
.c-title--white .c-title__ja {
  color: #fff;
}

.c-title__en {
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.07em;
  font-family: "Comfortaa", sans-serif;
  background: linear-gradient(94deg, #26B3A7 1.29%, #1B9A94 97.6%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.c-title__ja {
  color: #F1877F;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

/*------------------------------------------------------------------------------
  p-mv
------------------------------------------------------------------------------*/
.p-mv {
  background-image: url(../img/mv-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 13rem 0 7rem;
  position: relative;
}

.p-mv__main-inner {
  padding-left: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-mv__main {
  width: 100%;
  margin-bottom: 4.8rem;
  position: relative;
}
.p-mv__main::before {
  content: "";
  position: absolute;
  bottom: -3.4rem;
  left: -0.6rem;
  width: 22.8rem;
  height: 6rem;
  background-image: url(../img/match-party.png);
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: hard-light;
  z-index: 1;
}

.p-mv__text-list li {
  color: #73C4C0;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.07em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  display: inline-block;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1px;
  padding: 0.6rem 1rem;
}
@media screen and (max-width: 368px) {
  .p-mv__text-list li {
    font-size: 1.2rem;
    padding: 0.6rem 0.8rem;
  }
}
.p-mv__text-list li:not(:last-child) {
  margin-bottom: 0.7rem;
}
.p-mv__text-list li .u-accent-color {
  font-size: 1.6rem;
}

.p-mv__btn {
  position: absolute;
  bottom: -5.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}

/*------------------------------------------------------------------------------
  p-about
------------------------------------------------------------------------------*/
.p-about {
  background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(115, 196, 192, 0.1) 12px, rgba(115, 196, 192, 0.1) 13px);
  padding: 11rem 0 14.4rem;
}

.p-about__texts {
  text-align: center;
  margin-top: 4.2rem;
  position: relative;
  z-index: 1;
}
.p-about__texts::before {
  content: "";
  position: absolute;
  top: -2.2rem;
  left: 53%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/about-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 563px;
  height: 383px;
  z-index: 0;
}
.p-about__texts p {
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  z-index: 1;
}
.p-about__texts p:not(:last-of-type) {
  margin-bottom: 1.6rem;
}
.p-about__texts p .u-primary-dark-color {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.7;
}

.p-about__logo {
  width: 144px;
}

/*------------------------------------------------------------------------------
  p-overview
------------------------------------------------------------------------------*/
.p-overview {
  background-color: #EBF8F6;
  padding: 3.2rem 0 4rem;
  position: relative;
}
.p-overview::before, .p-overview::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #EBF8F6;
  clip-path: ellipse(50% 45% at 50% 50%);
  width: 120%;
  width: 500px;
  height: 220px;
  z-index: 0;
}
.p-overview::before {
  top: -60px;
}
.p-overview::after {
  bottom: -70px;
}

.p-overview__detail {
  border-top: 1px dashed #8BCCCA;
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.p-overview__detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dashed #8BCCCA;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.4rem 0;
}
.p-overview__detail-row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 9rem;
          flex: 0 0 9rem;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.p-overview__detail-row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-overview__detail-row dd .text-sm {
  font-size: 1.1rem;
  font-weight: normal;
  line-height: 1.6;
}

/*------------------------------------------------------------------------------
  p-features
------------------------------------------------------------------------------*/
.p-features {
  background-image: url(../img/feature-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 12.8rem 0 8rem;
}

.p-features__media-wrap {
  margin-top: 5.6rem;
}

.p-feature-media {
  position: relative;
  background-color: #F3FBFB;
  border-radius: 4px;
  width: calc(100% - 10px);
  max-width: 33.2rem;
  border-radius: 4px;
  margin-left: auto;
  margin-right: auto;
}
.p-feature-media:not(:last-child) {
  margin-bottom: 4.8rem;
}

.p-feature-media--odd {
  margin-left: auto;
  -webkit-box-shadow: -6px 6px 0 0 #05706E;
          box-shadow: -6px 6px 0 0 #05706E;
}
.p-feature-media--odd .p-feature-media__img {
  left: -1rem;
}
.p-feature-media--odd .p-feature-media__body {
  padding-top: 2.8rem;
  padding-bottom: 1.6rem;
  padding-right: 1.6rem;
  margin-left: auto;
}
.p-feature-media--odd .p-feature-media__number {
  left: -1px;
}

.p-feature-media--even {
  -webkit-box-shadow: 6px 6px 0 0 #05706E;
          box-shadow: 6px 6px 0 0 #05706E;
}
.p-feature-media--even .p-feature-media__img {
  right: -1rem;
}
.p-feature-media--even .p-feature-media__body {
  padding-left: 1.6rem;
  padding-top: 2.8rem;
  padding-bottom: 1.6rem;
}
.p-feature-media--even .p-feature-media__number {
  left: 14px;
}

.p-feature-media__img {
  position: absolute;
  top: -1.8rem;
  width: 122px;
}
@media screen and (max-width: 368px) {
  .p-feature-media__img {
    width: 33.4vw;
  }
}

.p-feature-media__body {
  max-width: 20.5rem;
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 11.1rem;
}
@media screen and (max-width: 368px) {
  .p-feature-media__body {
    max-width: 54.8vw;
  }
}

.p-feature-media__number {
  position: absolute;
  top: -1.2rem;
  width: 126px;
  display: block;
  mix-blend-mode: multiply;
}

.p-feature-media__text {
  letter-spacing: 0.03em;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  display: block;
}
.p-feature-media__text .u-accent-color {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}

/*------------------------------------------------------------------------------
  p-schedule
------------------------------------------------------------------------------*/
.p-schedule {
  background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(115, 196, 192, 0.1) 12px, rgba(115, 196, 192, 0.1) 13px);
  padding: 8rem 0 14rem;
}

.p-schedule__contents {
  margin-top: 3.4rem;
  position: relative;
}
.p-schedule__contents::before, .p-schedule__contents::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-schedule__contents::before {
  background-image: url(../img/ornament01.png);
  top: -1.2rem;
  left: 29rem;
  width: 45px;
  height: 52px;
}
.p-schedule__contents::after {
  background-image: url(../img/ornament02.png);
  bottom: -3.8rem;
  left: 19.6rem;
  width: 66px;
  height: 60px;
}

.p-schedule__flow {
  position: relative;
}
.p-schedule__flow::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 11px;
  width: 1px;
  height: calc(100% - 18px);
  background-color: #73C4C0;
}

.p-schedule__flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2.8rem;
  position: relative;
}
.p-schedule__flow-item::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 6px;
  width: 11px;
  height: 11px;
  background-color: #73C4C0;
  border-radius: 50%;
}
.p-schedule__flow-item:not(:last-child) {
  margin-bottom: 2.8rem;
}

.p-schedule__flow-time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 62px;
          flex: 0 0 62px;
  color: #73C4C0;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: "Comfortaa", sans-serif;
}

.p-schedule__flow-text {
  font-weight: 600;
}
.p-schedule__flow-text .text-sm {
  font-size: 1.2rem;
  font-weight: normal;
}

/*------------------------------------------------------------------------------
  p-faq
------------------------------------------------------------------------------*/
.p-faq {
  background-color: #EBF8F6;
  padding: 4.6rem 0 6rem;
  position: relative;
}
.p-faq::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #EBF8F6;
  clip-path: ellipse(50% 45% at 50% 50%);
  width: 120%;
  width: 500px;
  height: 220px;
  z-index: 0;
}

.p-faq__list {
  margin-top: 4rem;
}

.p-faq__item {
  background-color: #fff;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #1B9A94;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.08);
}
.p-faq__item:not(:last-child) {
  margin-bottom: 0.8rem;
}

.p-faq__item-title {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #1B9A94;
  box-sizing: border-box;
  padding: 2rem 3rem 2rem 4.8rem;
  position: relative;
}
.p-faq__item-title::before {
  content: "Q";
  position: absolute;
  top: 21px;
  left: 12px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1;
  font-family: "Comfortaa", sans-serif;
}
.p-faq__item-title button {
  position: absolute;
  top: 20px;
  right: 10px;
  width: 22px;
  height: 22px;
  display: block;
}
.p-faq__item-title button:focus {
  outline: rgb(0, 95, 204);
}
.p-faq__item-title button::before, .p-faq__item-title button::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
}
.p-faq__item-title button::before {
  top: 11px;
  width: 13px;
  height: 1px;
}
.p-faq__item-title button::after {
  top: 5px;
  width: 1px;
  height: 13px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.p-faq__item-title.open button::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}

.p-faq__item-answer {
  line-height: 1.5;
  text-align: justify;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding: 2rem 1.6rem 2rem 4.8rem;
  display: none;
}
.p-faq__item-answer::before {
  content: "A";
  position: absolute;
  top: 20px;
  left: 15px;
  color: #1B9A94;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1;
  font-family: "Comfortaa", sans-serif;
}
.p-faq__item-answer .u-accent-color {
  font-weight: bold;
}

/*------------------------------------------------------------------------------
  p-instagram
------------------------------------------------------------------------------*/
.p-instagram {
  background: repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(115, 196, 192, 0.1) 12px, rgba(115, 196, 192, 0.1) 13px);
  padding: 7.2rem 0 5.6rem;
}

.p-instagram__text {
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.12em;
  text-align: center;
  margin: 3.2rem 0 2.8rem;
}

.p-instagram__link {
  display: block;
  max-width: 8.8rem;
  margin: 0 auto 2.4rem;
}

.p-instagram__message {
  max-width: 13rem;
  display: block;
  margin: 0 auto;
}

/*------------------------------------------------------------------------------
  p-cta
------------------------------------------------------------------------------*/
.p-cta {
  background-image: url(../img/cta-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 8rem 0 7.4rem;
}

.p-cta__box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  max-width: calc(100% - 2rem);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5.6rem 0 4rem;
  margin: 0 auto;
  position: relative;
  z-index: 0;
}

.p-cta__en {
  position: absolute;
  top: -3.4rem;
  left: 2rem;
  width: 29rem;
  display: block;
  mix-blend-mode: multiply;
  z-index: 0;
}

.p-cta__title {
  max-width: 20.7rem;
  margin: 0 auto 2rem;
}

.p-cta__text {
  text-align: center;
  margin-bottom: 1.4rem;
}

/*------------------------------------------------------------------------------
  u-color
------------------------------------------------------------------------------*/
.u-primary-color {
  color: #73C4C0;
}

.u-primary-dark-color {
  color: #1B9A94;
}

.u-accent-color {
  color: #F1877F;
}

.u-white-color {
  color: #fff;
}

/*------------------------------------------------------------------------------
  u-fz
------------------------------------------------------------------------------*/
.u-fz16 {
  font-size: 1.6rem;
}

.u-fz15 {
  font-size: 1.5rem;
}

.u-fz14 {
  font-size: 1.4rem;
}

.u-fz13 {
  font-size: 1.3rem;
}

.u-fz12 {
  font-size: 1.2rem;
}

/*------------------------------------------------------------------------------
  u-fw
------------------------------------------------------------------------------*/
.u-fw-bold {
  font-weight: bold;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-normal {
  font-weight: 400;
}

/*------------------------------------------------------------------------------
  u-text-align
------------------------------------------------------------------------------*/
.u-text-align-left {
  text-align: left;
}

.u-text-align-center {
  text-align: center;
}

.u-text-align-right {
  text-align: right;
}

/*------------------------------------------------------------------------------
  margin
------------------------------------------------------------------------------*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-space-2 {
  margin-top: 2px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-space-4 {
  margin-top: 4px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-1 {
  margin-top: 8px !important;
}

.u-mt-2 {
  margin-top: 16px !important;
}

.u-mt-3 {
  margin-top: 24px !important;
}

.u-mt-4 {
  margin-top: 32px !important;
}

.u-mt-5 {
  margin-top: 40px !important;
}

.u-mt-6 {
  margin-top: 48px !important;
}

.u-mt-7 {
  margin-top: 56px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-05 {
  margin-bottom: 4px !important;
}

.u-mb-1 {
  margin-bottom: 8px !important;
}

.u-mb-2 {
  margin-bottom: 16px !important;
}

.u-mb-3 {
  margin-bottom: 24px !important;
}

.u-mb-4 {
  margin-bottom: 32px !important;
}

.u-mb-5 {
  margin-bottom: 40px !important;
}

.u-mb-6 {
  margin-bottom: 48px !important;
}

.u-mb-7 {
  margin-bottom: 56px !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-my-5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u-my-6 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-my-7 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.u-ml-1 {
  margin-left: 8px !important;
}

.u-ml-2 {
  margin-left: 16px !important;
}

.u-ml-05 {
  margin-left: 4px !important;
}

.u-mr-1 {
  margin-right: 8px !important;
}

.u-mr-2 {
  margin-right: 16px !important;
}

.u-mr-3 {
  margin-right: 24px !important;
}

.u-mr-4 {
  margin-right: 32px !important;
}

.u-mr-5 {
  margin-right: 40px !important;
}

.u-m-space-4 {
  margin: 4px !important;
}

.u-m-1 {
  margin: 8px !important;
}

.u-m-2 {
  margin: 16px !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

/*------------------------------------------------------------------------------
  padding
------------------------------------------------------------------------------*/
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: 8px !important;
}

.u-pt-2 {
  padding-top: 16px !important;
}

.u-pt-3 {
  padding-top: 24px !important;
}

.u-pt-4 {
  padding-top: 32px !important;
}

.u-pt-5 {
  padding-top: 40px !important;
}

.u-pt-6 {
  padding-top: 48px !important;
}

.u-pt-7 {
  padding-top: 56px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-1 {
  padding-bottom: 8px !important;
}

.u-pb-2 {
  padding-bottom: 16px !important;
}

.u-pb-3 {
  padding-bottom: 24px !important;
}

.u-pb-4 {
  padding-bottom: 32px !important;
}

.u-pb-5 {
  padding-bottom: 40px !important;
}

.u-pb-6 {
  padding-bottom: 48px !important;
}

.u-pb-7 {
  padding-bottom: 56px !important;
}

.u-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-py-7 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.u-pl-1 {
  padding-left: 8px !important;
}

.u-pl-2 {
  padding-left: 16px !important;
}

.u-pr-1 {
  padding-right: 8px !important;
}

.u-pr-2 {
  padding-right: 16px !important;
}

.u-p-1 {
  padding: 8px !important;
}

.u-p-2 {
  padding: 16px !important;
}

/*------------------------------------------------------------------------------
  u-flex
------------------------------------------------------------------------------*/
.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-justify-content-star {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

.u-justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: end !important;
}

.u-justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.u-justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.u-align-items-flex-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.u-align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: end !important;
}

.u-align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
      -ms-grid-row-align: start !important;
      align-self: start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
      -ms-grid-row-align: end !important;
      align-self: end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.u-align-self-strech {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/*# sourceMappingURL=style.css.map */