@charset "UTF-8";
/*--------------------------------------------------------------
Foundation
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Cabin:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, i, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, figure, figcaption,
button, input, textarea, select, i {
  border: 0;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  line-height: 1.5;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

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

body {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  background: #f3a9a9;
  color: #74404f;
  overflow-x: hidden;
  overflow-y: scroll;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

body.low {
  background: #8dd0d6;
}

ul, li {
  list-style: none;
}

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

a:hover,
a:active,
a:focus {
  outline: 0;
}

a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  -webkit-transition-property: opacity, color, background, box-shadow, -webkit-transform;
  transition-property: opacity, color, background, box-shadow, -webkit-transform;
  transition-property: opacity, color, background, transform, box-shadow;
  transition-property: opacity, color, background, transform, box-shadow, -webkit-transform;
  opacity: 1;
  line-height: inherit;
}

img {
  vertical-align: middle;
}

img,
input[type="image"] {
  border: 0;
  height: auto;
  max-width: 100%;
}

input[type="submit"], input[type="button"], button {
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: inherit;
  letter-spacing: inherit;
  background: none;
}

strong {
  font-weight: bold;
}

a {
  text-decoration: none;
}

a:hover,
input[type="image"]:hover {
  opacity: 0.7;
}

p {
  line-height: inherit;
}

p * {
  line-height: inherit;
}

main {
  overflow: hidden;
}

.m_ft {
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.ft_e {
  font-family: 'Cabin', sans-serif;
}

/*--------------------------------------------------------------
Component
--------------------------------------------------------------*/
.evt {
  visibility: hidden;
}

.c_anchor {
  position: absolute;
  width: 100%;
  left: 0;
  margin-top: -12rem;
}

@media screen and (max-width: 767px) {
  .c_anchor {
    margin-top: -8rem;
  }
}

.c_ttl {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: .12em;
  line-height: 1.6;
  white-space: nowrap;
  margin-bottom: 3.8rem;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .c_ttl {
    margin-bottom: 4.5rem;
  }
}

.c_ttl em {
  color: #e7336e;
}

.c_ttl > img {
  display: block;
  height: 5.3rem;
  margin-bottom: 1.5rem;
}

.c_btn {
  margin: 11rem 0 18.7rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .c_btn {
    margin: 12rem 0 16rem;
  }
}

.c_btn img {
  position: absolute;
  left: 7rem;
  transform: translateY(-100%);
  width: 11.2rem;
}

.c_btn a {
  display: block;
  background: #e7336e;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: .06em;
  line-height: 3.92;
  border-radius: .6em;
  box-shadow: 0 1rem 0 #ba1f52;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .c_btn a {
    font-size: 3.8rem;
    line-height: 13rem;
  }
}

.c_btn a.b {
  font-size: 1.6rem;
  line-height: 8rem;
  box-shadow: 0 .6rem 0 #ba1f52;
  position: relative;
}

@media screen and (max-width: 767px) {
  .c_btn a.b {
    font-size: 2.2rem;
    line-height: 9rem;
  }
}

.c_btn a.b:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1rem solid transparent;
  border-right: 1.2rem solid #fff;
  left: 3.5rem;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3em, 0);
    transform: translate3d(0, 3em, 0);
  }
  30% {
    opacity: .5;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3em, 0);
    transform: translate3d(0, 3em, 0);
  }
  30% {
    opacity: .5;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*--------------------------------------------------------------
Utility
--------------------------------------------------------------*/
.u_wrap {
  overflow: hidden;
}

.u_inner {
  width: 90rem;
  margin: 0 auto;
  max-width: 100%;
}

html {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1140px) {
  html {
    font-size: calc(100vw * 10 / 1140);
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw * 10 / 750);
  }
}

.u_clearfix:after,
.u_clearfix > li:after {
  height: 0;
  visibility: hidden;
  content: ".";
  display: block;
  clear: both;
}

* html .u_clearfix,
* html .u_clearfix > li {
  zoom: 1;
}

* + html .u_clearfix,
* + html .u_clearfix li {
  zoom: 1;
}

.u_switch_img {
  opacity: 1;
}

.u_relative {
  position: relative;
}

@media screen and (min-width: 768px) {
  .u_visible_sp {
    display: none;
  }
  .u_tel {
    pointer-events: none;
    cursor: default;
  }
  .u_tel:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .u_visible_pc {
    display: none;
  }
  .u_inner {
    width: auto;
    margin: 0 4rem;
  }
  .u_inner.b {
    margin: 0;
  }
}

/*--------------------------------------------------------------
Layout/PageBase
--------------------------------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 66;
  height: 12rem;
}

#header a {
  display: block;
}

@media screen and (max-width: 767px) {
  #header {
    height: 8rem;
  }
}

.h_logo {
  position: absolute;
  z-index: 1;
}

.h_logo img {
  width: 27.5rem;
}

.h_nav li {
  font-size: 1.6rem;
  letter-spacing: .12em;
}

@media screen and (max-width: 767px) {
  .h_nav li {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 12rem;
  }
}

@media screen and (min-width: 768px) {
  .h_nav {
    display: flex;
    gap: 5rem;
    padding-top: 2rem;
  }
  .h_nav a {
    position: relative;
  }
  .h_nav a:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1em;
    width: .6rem;
    height: .6rem;
    border-radius: 50%;
    border: solid 2px #74404f;
    opacity: 0;
    transition: opacity .2s ease-in;
  }
  .h_nav a:hover {
    opacity: 1;
  }
  .h_nav a:hover:before {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .h_link {
    display: flex;
    gap: 1rem;
  }
  .h_link li {
    width: 24rem;
  }
}

@media screen and (max-width: 767px) {
  .h_link li {
    margin-top: 2.3rem;
  }
}

.h_link a {
  border: solid 2px #e7336e;
  border-radius: 3em;
  height: 6rem;
  text-align: center;
  color: #e7336e;
  font-weight: bold;
  line-height: 1.2;
  font-size: 1.5rem;
  padding-top: .7em;
  background: #fff;
  letter-spacing: .12em;
}

@media screen and (max-width: 767px) {
  .h_link a {
    font-size: 3.2rem;
    height: 12rem;
  }
}

.h_link small {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .12em;
}

@media screen and (max-width: 767px) {
  .h_link small {
    font-size: 2rem;
  }
}

.h_link .entry {
  background: #e7336e;
  color: #fff;
}

@media screen and (min-width: 768px) {
  #toggle_menu {
    display: flex !important;
    justify-content: flex-end;
    padding: 3rem;
    gap: 5.8rem;
  }
}

@media screen and (max-width: 767px) {
  .h_menu {
    position: absolute;
    right: 4rem;
    top: 3rem;
    width: 10.4rem;
    cursor: pointer;
  }
  #toggle_menu {
    position: fixed;
    display: none;
    left: 0;
    width: 100%;
    overflow-y: auto;
    height: 100%;
    background: #f3a9a9;
    padding: 25rem 12rem 4rem;
  }
  body.open {
    overflow-y: hidden;
  }
}

#footer {
  border-top: solid 1px #fff;
  padding: 2rem 0 2.5rem;
}

@media screen and (max-width: 767px) {
  #footer {
    padding: 3rem 0 3.5rem;
  }
}

.f_link a {
  font-size: 1.2rem;
  letter-spacing: .1em;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .f_link a {
    font-size: 1.8rem;
  }
}

.f_copy {
  font-size: 1rem;
  letter-spacing: .1em;
  position: absolute;
  right: 0;
  top: 1.2rem;
}

@media screen and (max-width: 767px) {
  .f_copy {
    font-size: 1.4rem;
    top: 1rem;
  }
}

/*--------------------------------------------------------------
Project
--------------------------------------------------------------*/
.top_main {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: #8dd0d6;
  padding-top: 14.5rem;
  padding-top: 20rem;
  margin-bottom: 12rem;
}

@media screen and (max-width: 767px) {
  .top_main {
    padding-top: 22rem;
    margin-bottom: 4rem;
  }
}

.top_main .wave {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4rem;
  z-index: 1;
  width: calc(100% + 8rem);
}

.top_main .wave img {
  animation: wave 5s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.top_main .wave .a, .top_main .wave .b {
  width: 100%;
  height: 100%;
}

.top_main .wave .a {
  z-index: 1;
  position: relative;
}

.top_main .wave .b {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  animation-delay: 4s;
  animation-name: wave2;
}

.top_main .wave .boat {
  position: absolute;
  left: calc(50% - 17rem - 4rem);
  bottom: 9%;
  animation-name: wave3;
  width: 27.625%;
}

@media screen and (max-width: 767px) {
  .top_main .wave .boat {
    width: 44.2rem;
    bottom: 12%;
    left: 18rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1520px) {
  .top_main .wave {
    width: 160rem;
  }
}

.top_main .bird {
  position: absolute;
  top: 26rem;
  right: calc(50% - 50rem);
  width: 14.5rem;
}

@media screen and (max-width: 767px) {
  .top_main .bird {
    top: auto;
    right: 5rem;
    margin-top: 11rem;
  }
}

.top_main .blow {
  position: absolute;
  top: 40rem;
  right: calc(50% - 56rem);
  width: 13.6rem;
}

@media screen and (max-width: 767px) {
  .top_main .blow {
    right: 26rem;
    width: 21rem;
    top: auto;
  }
}

.top_main svg {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
}

.top_main path {
  fill: none;
  stroke-width: 65;
  stroke: #FFFFFF;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}

@media screen and (max-width: 767px) {
  .top_main .cloud {
    position: absolute;
    top: 16rem;
    width: 100%;
    left: 0;
  }
  .top_main .logo {
    width: 68.6rem;
    height: 23.8rem;
    position: relative;
    margin-left: 4rem;
  }
  .top_main .catch {
    margin: 0 4rem 2rem;
  }
}

@media screen and (min-width: 768px) {
  .top_main .cloud {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 170rem;
    top: 0;
  }
  .top_main .catch {
    width: 80.8rem;
    position: absolute;
    right: calc(50% - 45rem);
    top: 15.5rem;
    z-index: 2;
  }
  .top_main .logo {
    position: absolute;
    width: 77.2rem;
    height: 26.8rem;
    top: 28.5rem;
    left: calc(50% - 35.5rem);
  }
}

@keyframes wave {
  0% {
    transform: translate3d(4rem, 2rem, 0);
  }
  40% {
    transform: translate3d(-1rem, -3.5rem, 0);
  }
  100% {
    transform: translate3d(4rem, 2rem, 0);
  }
}

@keyframes wave2 {
  0% {
    transform: translate3d(2rem, 2rem, 0);
  }
  50% {
    transform: translate3d(0, -2.5rem, 0);
  }
  100% {
    transform: translate3d(2rem, 2rem, 0);
  }
}

@keyframes wave3 {
  0% {
    transform: translate3d(2rem, 2rem, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(0, -2.5rem, 0) rotate(8deg);
  }
  100% {
    transform: translate3d(2rem, 2rem, 0) rotate(-1deg);
  }
}

.c_sec {
  width: 56rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .c_sec {
    width: 51rem;
  }
}

@media screen and (min-width: 768px) {
  .c_sec .c_ttl {
    margin-bottom: 6rem;
  }
}

.c_sec p {
  font-size: 1.6rem;
  line-height: 2.125;
  letter-spacing: .03em;
  margin-top: 2em;
}

@media screen and (max-width: 767px) {
  .c_sec p {
    font-size: 2.6rem;
    line-height: 1.92;
    margin-top: 1.2em;
  }
}

.top_img {
  position: absolute;
  z-index: -1;
}

.top_img img {
  width: 100%;
}

.top_img .bg {
  width: 100%;
}

.top_img .img {
  position: absolute;
  z-index: 1;
  left: 0;
  opacity: .6;
}

@media screen and (max-width: 767px) {
  .top_img01 .a {
    top: -.5%;
  }
  .top_img01 .b {
    top: -.5%;
  }
  .top_img01 .c {
    top: 6.5%;
  }
  .top_img01 .d {
    top: 15.5%;
  }
  .top_img01 .e {
    top: 69.5%;
  }
  .top_img01 .f {
    top: 82.5%;
  }
  .top_img02 {
    margin-top: -12rem;
  }
  .top_img02 .a {
    top: 0;
  }
  .top_img02 .b {
    top: 74.5%;
  }
}

@media screen and (min-width: 768px) {
  .top_left {
    width: 37rem;
    left: 0;
  }
  .top_left .a {
    top: 64.5rem;
  }
  .top_left .b {
    top: 138rem;
  }
  .top_left .c {
    top: 178rem;
  }
  .top_right {
    width: 38.3rem;
    right: 0;
  }
  .top_right .a {
    top: 0;
  }
  .top_right .b {
    top: 18.5rem;
  }
  .top_right .c {
    top: 21.7rem;
  }
  .top_right .d {
    top: 53.7rem;
  }
  .top_right .e {
    top: 119.4rem;
  }
}

.top_concept {
  margin-bottom: 20.5rem;
}

@media screen and (max-width: 767px) {
  .top_concept {
    margin: 27.5rem 0 41rem;
  }
}

.top_concept .c_ttl em {
  position: relative;
}

.top_concept .c_ttl em img {
  position: absolute;
  right: -.1em;
  width: .675em;
  top: -.95em;
}

.top_sol .chara {
  margin: 16rem 0 17rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top_sol .chara {
    margin: 40rem 0 18rem;
  }
}

.top_sol .chara p {
  position: absolute;
  right: 0;
  width: 30.8rem;
  bottom: -1.5rem;
}

@media screen and (max-width: 767px) {
  .top_sol .chara p {
    width: 26.1rem;
    bottom: -5.1rem;
  }
}

.top_sol .fig {
  background: #e7336e url(../img/hand.png) no-repeat center top/contain;
  border-radius: 50% 50% / 40% 70%;
  animation: clip 4s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  width: 63.4rem;
  height: 58.8rem;
  position: relative;
}

.top_sol .fig:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/hand_b.png) no-repeat center top/contain;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .top_sol .fig {
    width: 51rem;
    height: 47.3rem;
  }
}

.top_sol .ttl {
  margin-bottom: .4rem;
  background: #fff;
  border-radius: 3rem 3rem 0 0;
  text-align: center;
  color: #e7336e;
  font-size: 1.8rem;
  letter-spacing: .06em;
  line-height: 4.22;
  position: relative;
  cursor: pointer;
}

.top_sol .ttl:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border: 1rem solid transparent;
  border-top: 1.2rem solid #e7336e;
  margin-top: .25em;
  margin-left: 1.5em;
}

.top_sol .ttl.open:after {
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 767px) {
  .top_sol .ttl {
    font-size: 2.8rem;
    line-height: 10rem;
    padding-right: 1.4em;
  }
  .top_sol .ttl:after {
    border: 1.5rem solid transparent;
    border-top: 1.8rem solid #e7336e;
    margin-left: .5em;
  }
}

.top_sol .ttl.open:after {
  margin-top: -.3em;
}

.top_sol .ttl.open + ul {
  display: block;
}

.top_sol ul {
  background: #fff;
  border-radius: 0 0 3rem 3rem;
  padding: 4rem;
  display: none;
}

@media screen and (max-width: 767px) {
  .top_sol ul {
    padding: 6rem;
  }
}

.top_sol li {
  position: relative;
}

@media screen and (min-width: 768px) {
  .top_sol li:nth-child(1) {
    padding-bottom: 4.5rem;
  }
  .top_sol li:nth-child(2) {
    padding-bottom: 3.5rem;
  }
}

@media screen and (max-width: 767px) {
  .top_sol li + li {
    padding-top: 6rem;
    border-top: solid 1px #ffdcdc;
    margin-top: 5rem;
    position: relative;
    position: relative;
  }
  .top_sol li + li:before {
    content: '';
    width: 10rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -.5rem;
    background: #fff;
    height: 1rem;
  }
  .top_sol li + li:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 1.5rem solid transparent;
    border-top: 1.8rem solid #ffdcdc;
    top: -1rem;
  }
}

@media screen and (min-width: 768px) {
  .top_sol li + li dl {
    border-top: solid 1px #ffdcdc;
  }
  .top_sol li + li dl {
    padding-top: 3.5rem;
  }
  .top_sol li + li .img {
    position: relative;
  }
  .top_sol li + li .img:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 1rem solid transparent;
    border-top: 1.2rem solid #ffdcdc;
    top: -5rem;
  }
}

@media screen and (min-width: 768px) {
  .top_sol li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .top_sol li dl {
    width: 64rem;
  }
  .top_sol li .img {
    width: 14.3rem;
  }
}

@media screen and (max-width: 767px) {
  .top_sol .img {
    text-align: center;
    margin-bottom: 3.5rem;
  }
  .top_sol .img img {
    width: 19.1rem;
  }
}

.top_sol dt {
  font-weight: bold;
  position: relative;
  letter-spacing: .06em;
  padding-left: 3.8em;
  margin-bottom: .4em;
}

@media screen and (max-width: 767px) {
  .top_sol dt {
    font-size: 3rem;
    padding-left: 3.4em;
  }
}

.top_sol dt:before {
  content: '';
  position: absolute;
  width: 1em;
  border-bottom: solid 2px #e7336e;
  top: .7em;
  left: 0;
}

.top_sol dt i {
  position: absolute;
  left: 1.8em;
}

@media screen and (max-width: 767px) {
  .top_sol dt i {
    left: 1.4em;
  }
}

.top_sol dd p {
  font-size: 1.4rem;
  line-height: 2.1;
  letter-spacing: .06em;
  margin-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 767px) {
  .top_sol dd p {
    font-size: 2.4rem;
    margin-top: 1em;
  }
}

.top_sol .lead {
  text-align: center;
  margin: 9rem 0 8rem;
  line-height: 2.3;
  letter-spacing: .08em;
}

@media screen and (max-width: 767px) {
  .top_sol .lead {
    margin: 11rem 0 10rem;
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .top_sol .flow {
    text-align: center;
  }
  .top_sol .flow img {
    width: 46.6rem;
  }
}

.top_sol .entry {
  background: #8dd0d6;
  text-align: center;
  position: relative;
  padding-top: 9rem;
}

.top_sol .cloud1 {
  position: absolute;
  left: calc(50% - 81.3rem);
  top: -1rem;
  z-index: 2;
}

.top_sol .cloud2 {
  position: absolute;
  right: calc(50% - 81.8rem);
  bottom: 66.1rem;
}

.top_sol .box figure {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .top_sol .box figure {
    width: 59rem;
    position: relative;
    left: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .top_sol .box figure {
    margin: 0 -4rem;
    position: relative;
    left: 2.5rem;
  }
}

.top_sol .video {
  position: relative;
  height: 0;
  padding-top: 91.5254%;
  overflow: hidden;
}

.top_sol .video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 0px transparent);
}

.top_sol .ttl2 {
  font-size: 2.6rem;
  color: #fff;
  background: #74404f;
  border-radius: 3em;
  padding: .7em;
  width: 11.9em;
  margin: 0 auto 4rem;
  position: relative;
}

.top_sol .ttl2:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 0.5rem solid transparent;
  border-top: 1rem solid #74404f;
  bottom: -1.4rem;
}

@media screen and (max-width: 767px) {
  .top_sol .ttl2 {
    font-size: 3.6rem;
    margin-bottom: 7rem;
  }
  .top_sol .ttl2:after {
    border: 1.2rem solid transparent;
    border-top: 2rem solid #74404f;
    bottom: -3rem;
  }
}

@keyframes clip {
  0% {
    border-radius: 50%;
  }
  25% {
    border-radius: 50% 50% / 40% 70%;
  }
  50% {
    border-radius: 40% 50% / 45% 60%;
  }
  75% {
    border-radius: 50% 50% / 70% 40%;
  }
  100% {
    border-radius: 50%;
  }
}

.c_wave {
  position: relative;
  bottom: -4rem;
  z-index: 1;
  margin: 0 -4rem;
}

.c_wave.top {
  bottom: auto;
  top: -4rem;
}

.c_wave.top .a:before {
  bottom: auto;
  top: -4rem;
}

.c_wave img {
  width: 100%;
}

.c_wave .a, .c_wave .b {
  animation: c_wave 5s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.c_wave .a {
  z-index: 1;
  position: relative;
  left: 0;
}

.c_wave .a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4rem;
  background: #8dd0d6;
  bottom: -4rem;
  left: 0;
  z-index: 1;
}

.c_wave .a.pink:before {
  background: #f3a9a9;
}

.c_wave .b {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  animation-delay: 4s;
  animation-name: c_wave2;
}

@keyframes c_wave {
  0% {
    transform: translate3d(3rem, 1rem, 0);
  }
  40% {
    transform: translate3d(0, -1rem, 0);
  }
  100% {
    transform: translate3d(3rem, 1rem, 0);
  }
}

@keyframes c_wave2 {
  0% {
    transform: translate3d(1rem, 1rem, 0);
  }
  60% {
    transform: translate3d(0, -1rem, 0);
  }
  100% {
    transform: translate3d(1rem, 1rem, 0);
  }
}

.top_list {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .top_list ul {
    display: flex;
    justify-content: space-between;
  }
  .top_list li {
    width: 29rem;
  }
}

.top_list li {
  border-radius: 3rem;
  box-shadow: 0px 10px 20px 0px rgba(131, 74, 74, 0.2);
  background: #fff url(../img/list_bg.png) no-repeat center bottom/contain;
  padding: 2.9rem 2.9rem 4.5rem;
}

.top_list li img {
  width: 23rem;
}

@media screen and (max-width: 767px) {
  .top_list li {
    margin-top: 2rem;
    background-image: url(../img/list_bg_sp.png);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem;
  }
  .top_list li dl {
    width: calc(100% - 32.5rem);
  }
  .top_list li figure {
    width: 27.7rem;
  }
  .top_list li figure img {
    width: 100%;
  }
}

.top_list dt {
  font-weight: bold;
  margin: 1.2em 0 .5em;
  font-size: 2.4rem;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .top_list dt {
    font-size: 3.4rem;
  }
}

.top_list dd {
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  .top_list dd {
    font-size: 2.4rem;
  }
}

.top_member {
  margin-bottom: 14rem;
}

.top_inter {
  margin-bottom: 19rem;
}

@media screen and (max-width: 767px) {
  .top_inter {
    margin-bottom: 14rem;
  }
}

.top_inter li {
  padding: 0;
}

.top_inter li a {
  display: block;
  padding: 2.9rem 2.9rem 4.5rem;
}

@media screen and (max-width: 767px) {
  .top_inter li {
    display: block;
  }
  .top_inter li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem;
  }
}

.top_inter dd {
  text-align: right;
  color: #e7336e;
  margin-top: 4rem;
  padding-right: 1.8em;
  position: relative;
}

.top_inter dd:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0.5rem solid transparent;
  border-left: 0.6rem solid #e7336e;
  right: 0;
}

@media screen and (max-width: 767px) {
  .top_inter dd {
    padding-right: 1.5em;
  }
  .top_inter dd:after {
    border: .8rem solid transparent;
    border-left: 0.8rem solid #e7336e;
  }
}

.top_faq {
  background: #8dd0d6;
  margin-top: -7rem;
}

@media screen and (max-width: 767px) {
  .top_faq {
    padding-bottom: 10rem;
  }
}

.top_faq dt {
  margin-bottom: 2px;
}

.top_faq dl {
  border-radius: 3rem;
  overflow: hidden;
  background: #fff;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

.top_faq dt, .top_faq dd {
  position: relative;
  padding: 2.5rem 1em 2.5rem 6.5rem;
}

@media screen and (max-width: 767px) {
  .top_faq dt, .top_faq dd {
    padding: 3rem 1em 3rem 9rem;
  }
}

.top_faq dt:before, .top_faq dd:before {
  content: 'Q.';
  font-family: 'Cabin', sans-serif;
  font-size: 2.4rem;
  position: absolute;
  color: #e7336e;
  left: 3rem;
  top: 2rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .top_faq dt:before, .top_faq dd:before {
    font-size: 3rem;
    left: 4rem;
    top: 2.7rem;
  }
}

.top_faq dt {
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: .06em;
  cursor: pointer;
  padding-right: 3em;
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .top_faq dt {
    font-size: 2.6rem;
  }
}

.top_faq dt:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border: 1rem solid transparent;
  border-top: 1.2rem solid #e7336e;
  right: 3rem;
  margin-top: .25em;
}

.top_faq dt.open:after {
  transform: translateY(-50%) rotate(180deg);
}

@media screen and (max-width: 767px) {
  .top_faq dt {
    line-height: 1.9;
  }
  .top_faq dt:after {
    border: 1.2rem solid transparent;
    border-top: 1.5rem solid #e7336e;
    right: 3.5rem;
  }
}

.top_faq dt.open:after {
  margin-top: -.3em;
}

.top_faq dt.open + dd {
  display: block;
}

.top_faq dd {
  font-size: 1.4rem;
  letter-spacing: .06em;
  line-height: 2;
  font-weight: 400;
  border-top: solid 2px #8dd0d6;
  display: none;
}

@media screen and (max-width: 767px) {
  .top_faq dd {
    font-size: 2.4rem;
  }
}

.top_faq dd a {
  color: #e7336e;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .top_faq dd {
    line-height: 1.66;
  }
}

.top_faq dd:before {
  content: 'A.';
  top: 1.6rem;
}

@media screen and (max-width: 767px) {
  .top_faq dd:before {
    top: 2.4rem;
  }
}

.top_entry {
  margin-bottom: 15rem;
}

@media screen and (min-width: 768px) {
  .top_entry {
    margin-bottom: 18rem;
    text-align: center;
  }
  .top_entry ul {
    display: flex;
  }
  .top_entry li {
    width: 33.33%;
  }
  .top_entry li + li {
    border-left: solid 1px #da9393;
  }
}

@media screen and (max-width: 767px) {
  .top_entry ul {
    border-bottom: solid 1px #da9393;
  }
  .top_entry li {
    border-top: solid 1px #da9393;
    padding: 5.5rem 4rem 6rem;
    display: flex;
    justify-content: space-between;
  }
  .top_entry dl {
    width: calc(100% - 26rem);
    white-space: nowrap;
  }
}

.top_entry dt {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: .2em;
}

@media screen and (max-width: 767px) {
  .top_entry dt {
    font-size: 3.4rem;
  }
}

.top_entry dt em {
  color: #e7336e;
}

.top_entry dt.ft_e {
  font-size: 2.5rem;
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  .top_entry dt.ft_e {
    font-size: 3.6rem;
  }
}

.top_entry dd {
  font-size: 1.6rem;
  letter-spacing: .1em;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .top_entry dd {
    font-size: 2.6rem;
  }
}

.top_entry figure {
  margin-bottom: 3rem;
}

.top_entry figure img {
  height: 12.2rem;
}

@media screen and (max-width: 767px) {
  .top_entry figure img {
    height: 13.4rem;
  }
}

.top_entry .btn {
  margin-top: 2.5rem;
}

.top_entry .btn a {
  text-align: center;
  background: #fff;
  border-radius: 3em;
  font-size: 1.4rem;
  color: #e7336e;
  width: 10.7em;
  line-height: 2.85;
  display: inline-block;
  position: relative;
}

.top_entry .btn a:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0.5rem solid transparent;
  border-left: 0.6rem solid #e7336e;
  right: 1em;
}

@media screen and (max-width: 767px) {
  .top_entry .btn a {
    font-size: 2.2rem;
  }
  .top_entry .btn a:after {
    border: .8rem solid transparent;
    border-left: 0.8rem solid #e7336e;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.inter_body {
  margin-top: 12rem;
  background: url(../img/inteview_bg.png) no-repeat center top/133rem;
}

@media screen and (max-width: 767px) {
  .inter_body {
    background-position: -5% top;
    padding-top: 10rem;
  }
}

.inter_body .img {
  width: 46rem;
  margin: 0 auto 8rem;
}

.inter_body .ttl {
  font-size: 2rem;
  letter-spacing: .1em;
  text-align: center;
  margin-top: 1em;
}

@media screen and (max-width: 767px) {
  .inter_body .ttl {
    font-size: 2.8rem;
  }
}

.inter_body .box {
  background: #fff;
  border-radius: 3rem;
  padding: 7rem 9rem 9rem;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .inter_body .box {
    padding: 7rem 6rem;
  }
}

.inter_body .c_ttl {
  font-size: 2.6rem;
}

@media screen and (max-width: 767px) {
  .inter_body .c_ttl {
    font-size: 3rem;
  }
}

.inter_body dl {
  border-top: solid 1px #74404f;
  padding-top: 5rem;
}

.inter_body dt {
  font-size: 1.6rem;
  line-height: 1.875;
  color: #e7336e;
  letter-spacing: .04em;
  margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
  .inter_body dt {
    font-size: 2.6rem;
  }
}

.inter_body dd {
  font-size: 1.4rem;
  line-height: 1.85;
  letter-spacing: .06em;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .inter_body dd {
    font-size: 2.4rem;
  }
}

.inter_body dd + dt {
  margin-top: 5rem;
}

.inter_body dd p + p {
  margin-top: 1em;
}

.inter_body .c_btn {
  margin-top: 6rem;
}

/*# sourceMappingURL=style.css.map */