@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

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

ul > li {
  list-style: disc;
}

ol > li {
  list-style: decimal;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

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

caption,
th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

/*----------------------------------------
	Custom Properties
----------------------------------------*/
:root {
  --text-color: #716060;
  --background-color: #fff;
  --font-family-base: "Zen Kaku Gothic New", sans-serif;
  --font-family-en: "Inter", sans-serif;
  --font-size-base-pc: 1.8rem;
  --font-size-base-sp: 1.5rem;
  --font-weight-thin: 100;
  --font-weight-extraLight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-extraBold: 800;
  --font-weight-black: 900;
  --ease-linear: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-inout-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-inout-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-inout-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-inout-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-inout-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-inout-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-inout-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-inout-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*----------------------------------------
	Common
----------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

@media only screen and (min-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1919px) {
  html {
    font-size: calc(32% + 0.25vw);
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 375px) {
  html {
    font-size: 58%;
  }
}
body {
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: var(--font-size-base-pc);
  line-height: 2;
  letter-spacing: 0.02em;
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  position: relative;
}

a {
  color: var(--text-color);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

button {
  border: none;
}

label {
  white-space: nowrap;
}

input {
  border: none;
}

@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: var(--font-size-base-sp);
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100vw;
  height: 15rem;
}
.l-header::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.is_scrolled .l-header::after {
  opacity: 1;
}

@media (max-width: 767px) {
  .l-header {
    height: 9rem;
  }
}
.l-footer {
  position: relative;
}

.container {
  width: 90%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@media (max-width: 767px) {
  .container {
    width: 82%;
  }
}
.c-button {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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: var(--font-size-base-pc);
  color: #fff;
  font-weight: 600;
  padding: 1.3rem 4rem 1.5rem 4rem;
  line-height: 1.4;
  border-radius: 10rem;
  background-color: #FF663C;
}
@media (max-width: 767px) {
  .c-button {
    font-size: var(--font-size-base-sp);
    padding: 1.5rem 2rem 1.7rem 2rem;
  }
}
.input-text {
  width: 100%;
  padding: 1.6rem 1rem;
  border: 1px solid #CDD6DD;
  font-size: var(--font-size-base-pc);
  background-color: #fff;
}

.input-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  padding: 1.6rem 2.4rem 1.6rem 1rem;
  border: 1px solid #CDD6DD;
  outline: 0;
  font-size: var(--font-size-base-pc);
  text-overflow: ellipsis;
  width: 100%;
  cursor: pointer;
  background: #fff url(../img/common/icon_select_arrow.svg) no-repeat right 12px center;
  background-size: 12px auto;
}

.input-textarea {
  border: 1px solid #CDD6DD;
  width: 100%;
  padding: 1.6rem 1rem;
  font-size: var(--font-size-base-pc);
}

::-webkit-input-placeholder {
  color: #CDD6DD;
  position: relative;
  left: 1rem;
}

::-moz-placeholder {
  color: #CDD6DD;
  position: relative;
  left: 1rem;
}

:-ms-input-placeholder {
  color: #CDD6DD;
  position: relative;
  left: 1rem;
}

::-ms-input-placeholder {
  color: #CDD6DD;
  position: relative;
  left: 1rem;
}

::placeholder {
  color: #CDD6DD;
  position: relative;
  left: 1rem;
}

@media (max-width: 767px) {
  .input-text {
    padding: 1.4rem 0.5rem;
    font-size: var(--font-size-base-sp);
  }
  .input-select {
    font-size: var(--font-size-base-sp);
  }
  .input-textarea {
    font-size: var(--font-size-base-sp);
  }
}
.is_opened .p-header {
  opacity: 1;
}
.p-header {
  opacity: 0;
  -webkit-transition: 1s cubic-bezier(0.52, 0.08, 0.18, 1) 0.4s;
  transition: 1s cubic-bezier(0.52, 0.08, 0.18, 1) 0.4s;
  width: 90%;
  height: 15rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo {
  width: 20rem;
  line-height: 1;
}
.p-header__logo a {
  display: block;
}
.p-header__logo a:hover {
  opacity: 0.65;
}
.p-header__logo a img {
  width: 100%;
}

@media (max-width: 767px) {
  .p-header {
    height: 9rem;
  }
  .p-header .p-gnavi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-header .p-gnavi .p-gnavi__logo {
    width: 70%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-header .p-gnavi .p-gnavi__index {
    width: 100%;
    margin-top: 4rem;
    margin-left: 3.2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .p-header .p-gnavi .p-gnavi__index li {
    width: 100%;
    position: relative;
    margin-right: 0;
  }
  .p-header .p-gnavi .p-gnavi__index li:not(:last-of-type) {
    margin-right: 0;
  }
  .p-header .p-gnavi .p-gnavi__index li a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  .p-header .p-gnavi .p-gnavi__index li a .en {
    font-size: 2.4rem;
  }
  .p-header__logo {
    width: 14rem;
  }
  .p-header__gnavi {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    padding: 0 8% 0 8%;
    opacity: 0;
    visibility: hidden;
  }
  .p-header__gnavi::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #D2F5FC;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .p-header__gnavi .p-gnavi__logo {
    width: 19rem;
    margin-top: 10rem;
  }
  .p-header__sp-visual {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 140px;
    background: url(../img/top/bg_service_sp.svg) no-repeat center bottom -2px;
    background-size: cover;
  }
  .p-header__sp-visual img {
    position: absolute;
  }
  .p-header__sp-visual img.item-3 {
    width: 33%;
    top: 0;
    right: 8%;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
    -webkit-animation: swing-rondo 3s steps(2, end) infinite;
            animation: swing-rondo 3s steps(2, end) infinite;
  }
  .menu-open .p-header__gnavi {
    display: block;
    opacity: 1;
    left: 0;
    visibility: visible;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}
.p-footer {
  padding: 8rem 0 3.2rem 0;
}
.p-footer::after, .p-footer::before {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
}
.p-footer::before {
  background-image: url(../img/common/bg_footer_right.svg);
  right: 0;
}
.p-footer::after {
  background-image: url(../img/common/bg_footer_left.svg);
  left: 0;
}

.p-footer__container .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-footer__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 24rem;
  margin-right: 5.6rem;
}

.p-footer__contact {
  line-height: 1.5;
}
.p-footer__contact .name {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
}

.p-footer__gnavi.p-gnavi .p-gnavi__index {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-footer__gnavi.p-gnavi .p-gnavi__index li {
  width: 50%;
  margin-bottom: 2.4rem;
}
.p-footer__gnavi.p-gnavi .p-gnavi__index li:not(:last-of-type) {
  margin-right: 0;
}
.p-footer__gnavi.p-gnavi .p-gnavi__index li a {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-footer__copyright {
  width: 100%;
  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;
  text-align: center;
  opacity: 0.5;
  color: #716060;
  font-size: 1.4rem;
  font-family: var(--font-family-en);
  padding-top: 8rem;
}

@media (max-width: 767px) {
  .p-footer__container .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 76%;
  }
  .p-footer__logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6.4rem;
  }
  .p-footer__logo a {
    width: 17rem;
    margin-right: 0;
  }
  .p-footer__contact {
    margin-top: 5.6rem;
  }
  .p-footer__contact .name {
    margin-bottom: 1.4rem;
  }
  .p-footer__gnavi {
    margin-left: auto;
    margin-right: 0;
    width: 29rem;
  }
  .p-footer__copyright {
    font-size: 1.2rem;
    padding-top: 4rem;
  }
}
.p-top-visual {
  background-color: #D2F5FC;
  position: relative;
  overflow: hidden;
  width: 100vw;
  min-height: 70rem;
  padding: 30rem 0 18rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top-visual .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1380px;
}

.p-top-visual__content {
  width: 42%;
  padding-bottom: 6%;
  padding-left: 2%;
}
.p-top-visual__content h2 {
  font-size: 4.6rem;
  line-height: 1.5;
  margin-bottom: 4rem;
}
.p-top-visual__content p {
  font-size: 2rem;
}

.p-top-visual__image {
  width: 58%;
  position: relative;
}
.p-top-visual__image::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 76%;
}
.p-top-visual__image img {
  position: absolute;
  display: block;
}
.p-top-visual__image img.char-cloud {
  width: 65%;
  bottom: 9%;
  left: 0;
}
.p-top-visual__image img.char-rondo {
  width: 76%;
  top: 0;
  left: 8%;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  -webkit-animation: swing-rondo 3s steps(2, end) infinite;
          animation: swing-rondo 3s steps(2, end) infinite;
}
.p-top-visual__image img.char-dog {
  width: 10%;
  bottom: 26%;
  right: 0;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  -webkit-animation: swing-dog 3s steps(2, end) infinite;
          animation: swing-dog 3s steps(2, end) infinite;
}

@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
}

@keyframes swing {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
}
@-webkit-keyframes swing-rondo {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
@keyframes swing-rondo {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
@-webkit-keyframes swing-dog {
  0% {
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes swing-dog {
  0% {
    -webkit-transform: rotate(-25deg);
            transform: rotate(-25deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .p-top-visual__content {
    padding-left: 0;
    padding-bottom: 2%;
  }
  .p-top-visual__content h2 {
    font-size: 4rem;
  }
  .p-top-visual__content p .hide-mobile-inline {
    display: none;
  }
  .p-top-visual__image {
    width: 56%;
  }
  .p-top-service__footer img.item-3 {
    top: 15% !important;
  }
}
@media (max-width: 767px) {
  .p-top-visual {
    padding: 20rem 0 8rem 0;
  }
  .p-top-visual .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .p-top-visual__content {
    width: 100%;
    max-width: initial;
    padding-left: 0;
    margin-top: 4.8rem;
  }
  .p-top-visual__content h2 {
    font-size: 3rem;
    margin-bottom: 2.4rem;
  }
  .p-top-visual__content p {
    font-size: 1.7rem;
  }
  .p-top-visual__image {
    width: 100%;
  }
  .p-top-visual__image::after {
    padding-top: 84%;
  }
  .p-top-visual__image img.char-rondo {
    width: 93%;
    top: 0;
    left: 0;
  }
  .p-top-visual__image img.char-cloud {
    width: 75%;
    bottom: 0;
    left: 3%;
  }
  .p-top-visual__image img.char-dog {
    width: 13%;
    bottom: 0;
    right: 5%;
  }
}
.p-top-message {
  text-align: center;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20rem 0 40rem;
  background-color: #D2F5FC;
  position: relative;
}

.p-top-message__heading {
  font-size: 4rem;
  margin-bottom: 3.2rem;
  font-weight: 600;
}

.p-top-message__content {
  font-size: 2rem;
}

.p-top-message__cracker {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-top-message__cracker.inviewed img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0, 0.12, 0, 1);
          transition-timing-function: cubic-bezier(0, 0.12, 0, 1);
}
.p-top-message__cracker.inviewed img.item-1 {
  top: 11%;
  left: 8%;
  -webkit-transform: rotate(145deg);
          transform: rotate(145deg);
}
.p-top-message__cracker.inviewed img.item-2 {
  top: 10%;
  right: 7%;
  -webkit-transform: rotate(-255deg);
          transform: rotate(-255deg);
}
.p-top-message__cracker.inviewed img.item-3 {
  top: 80%;
  right: 69%;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
.p-top-message__cracker.inviewed img.item-4 {
  top: 62%;
  left: 81.4%;
}
.p-top-message__cracker.inviewed img.item-5 {
  top: 56%;
  right: 84.4%;
}
.p-top-message__cracker.inviewed img.item-6 {
  top: 0;
  left: 72.4%;
}
.p-top-message__cracker.inviewed img.item-7 {
  top: 61%;
  right: 8%;
  -webkit-transform: rotate(205deg);
          transform: rotate(205deg);
}
.p-top-message__cracker.inviewed img.item-8 {
  top: 62%;
  right: 93%;
}
.p-top-message__cracker.inviewed img.item-9 {
  top: 5%;
  right: 76%;
}
.p-top-message__cracker.inviewed img.item-10 {
  top: 93%;
  left: 29%;
  -webkit-transform: rotate(280deg);
          transform: rotate(280deg);
}
.p-top-message__cracker.inviewed img.item-11 {
  bottom: 8%;
  left: 17%;
  -webkit-transform: rotate(257deg);
          transform: rotate(257deg);
}
.p-top-message__cracker.inviewed img.item-12 {
  bottom: 14%;
  left: 3%;
  -webkit-transform: rotate(312deg);
          transform: rotate(312deg);
}
.p-top-message__cracker.inviewed img.item-13 {
  bottom: 71%;
  right: 20%;
  -webkit-transform: rotate(215deg);
          transform: rotate(215deg);
}
.p-top-message__cracker img {
  position: absolute;
  height: auto;
}
.p-top-message__cracker img.item-1 {
  width: 9%;
  top: 29%;
  left: 42%;
}
.p-top-message__cracker img.item-2 {
  width: 13%;
  top: 26%;
  right: 37%;
}
.p-top-message__cracker img.item-3 {
  width: 9%;
  top: 40%;
  right: 35%;
}
.p-top-message__cracker img.item-4 {
  width: 6%;
  top: 38%;
  left: 36.4%;
}
.p-top-message__cracker img.item-5 {
  width: 5%;
  top: 46%;
  right: 47.4%;
}
.p-top-message__cracker img.item-6 {
  width: 2%;
  top: 27.4%;
  left: 38.4%;
}
.p-top-message__cracker img.item-7 {
  width: 1.6%;
  top: 26%;
  right: 48%;
}
.p-top-message__cracker img.item-8 {
  width: 2%;
  top: 37%;
  right: 35%;
}
.p-top-message__cracker img.item-9 {
  width: 3.4%;
  top: 40%;
  right: 31%;
}
.p-top-message__cracker img.item-10 {
  width: 3%;
  top: 49%;
  left: 35%;
}
.p-top-message__cracker img.item-11 {
  width: 3%;
  bottom: 38%;
  left: 38%;
}
.p-top-message__cracker img.item-12 {
  width: 4%;
  bottom: 44%;
  left: 41%;
}
.p-top-message__cracker img.item-13 {
  width: 3%;
  bottom: 44%;
  right: 43%;
}

.p-top-message__footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 28rem;
  background: #D2F5FC url(../img/top/bg_message.svg) no-repeat center bottom;
  background-size: cover;
  overflow: hidden;
}
.p-top-message__footer img {
  position: absolute;
  width: 24%;
  bottom: 4%;
  right: 18%;
  -webkit-transition: 3s;
  transition: 3s;
  -webkit-transition-timing-function: cubic-bezier(0, 0.15, 0, 1);
          transition-timing-function: cubic-bezier(0, 0.15, 0, 1);
}

.inview.p-top-message__footer img {
  right: 8%;
}

.p-top-message__cracker-hook {
  width: 10px;
  height: 10px;
  opacity: 0;
  position: absolute;
  top: 60%;
}

@media (min-width: 768px) and (max-width: 999px) {
  .p-top-message__cracker-hook {
    top: 60%;
  }
}
@media (max-width: 767px) {
  .p-top-message {
    padding: 14rem 0 30rem;
  }
  .p-top-message__heading {
    font-size: 2.6rem;
  }
  .p-top-message__content {
    font-size: 1.7rem;
  }
  .p-top-message__footer {
    height: 14rem;
    background-size: contain;
  }
  .p-top-message__footer img {
    width: 53%;
    bottom: 1%;
    right: 10%;
  }
  .p-top-message__footer.inview img {
    right: -10%;
  }
  .p-top-message__cracker.inviewed img.item-1 {
    top: 36%;
    left: -12%;
    -webkit-transform: rotate(206deg);
            transform: rotate(206deg);
  }
  .p-top-message__cracker.inviewed img.item-2 {
    top: 0;
    right: -9%;
  }
  .p-top-message__cracker.inviewed img.item-3 {
    top: 72%;
    right: 60%;
    -webkit-transform: rotate(296deg);
            transform: rotate(296deg);
  }
  .p-top-message__cracker.inviewed img.item-4 {
    top: 31%;
    left: 86%;
  }
  .p-top-message__cracker.inviewed img.item-5 {
    top: 10%;
    right: 101.4%;
  }
  .p-top-message__cracker.inviewed img.item-6 {
    top: -2%;
    left: 60%;
  }
  .p-top-message__cracker.inviewed img.item-7 {
    top: 7%;
    right: -14%;
  }
  .p-top-message__cracker.inviewed img.item-8 {
    top: 18%;
    right: -22%;
  }
  .p-top-message__cracker.inviewed img.item-9 {
    top: 32%;
    right: 82%;
  }
  .p-top-message__cracker.inviewed img.item-10 {
    top: 85%;
    left: 26%;
  }
  .p-top-message__cracker.inviewed img.item-11 {
    bottom: 20%;
    left: 7%;
  }
  .p-top-message__cracker.inviewed img.item-12 {
    bottom: 19%;
    left: 98%;
  }
  .p-top-message__cracker.inviewed img.item-13 {
    bottom: 86%;
    right: 19%;
  }
  .p-top-message__cracker img.item-1 {
    width: 20%;
    top: 27%;
    left: 25%;
  }
  .p-top-message__cracker img.item-2 {
    width: 24%;
    top: 26%;
    right: 24%;
  }
  .p-top-message__cracker img.item-3 {
    width: 20%;
    top: 40%;
    right: 21%;
  }
  .p-top-message__cracker img.item-4 {
    width: 9%;
    top: 40%;
    left: 21.4%;
  }
  .p-top-message__cracker img.item-5 {
    width: 9%;
    top: 43%;
    right: 47.4%;
  }
  .p-top-message__cracker img.item-6 {
    width: 4%;
    top: 24%;
    left: 20%;
  }
  .p-top-message__cracker img.item-7 {
    width: 6.6%;
    top: 23%;
    right: 46%;
  }
  .p-top-message__cracker img.item-8 {
    width: 5%;
    top: 38%;
    right: 18%;
  }
  .p-top-message__cracker img.item-9 {
    width: 8%;
    top: 49%;
    right: 9%;
  }
  .p-top-message__cracker img.item-10 {
    width: 10%;
    top: 51%;
    left: 13%;
  }
  .p-top-message__cracker img.item-11 {
    width: 8%;
    bottom: 35%;
    left: 28%;
  }
  .p-top-message__cracker img.item-12 {
    width: 11%;
    bottom: 41%;
    left: 32%;
  }
  .p-top-message__cracker img.item-13 {
    width: 6%;
    bottom: 42%;
    right: 32%;
  }
  .p-top-message__cracker-hook {
    top: 60%;
  }
}
.p-top-about {
  background-color: #77C46D;
  color: #fff;
}

.p-top-about__content {
  margin-top: 4rem;
}
.p-top-about__content dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.p-top-about__content dl dt {
  width: 18rem;
  font-weight: 600;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #fff;
}
.p-top-about__content dl dd {
  width: calc(100% - 18rem);
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #fff;
}

@media (max-width: 767px) {
  .p-top-about .p-section-heading {
    padding: 8rem 0 4rem 0;
  }
  .p-top-about__content {
    margin-top: 4rem;
  }
  .p-top-about__content dl dt {
    width: 10rem;
    font-weight: 600;
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .p-top-about__content dl dd {
    width: calc(100% - 10rem);
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
  }
}
.p-top-member {
  color: #fff;
  padding: 10rem 0 25rem 0;
  background: #77C46D url(../img/top/bg_member.svg) no-repeat center bottom -2px;
  background-size: contain;
}
.p-top-member .p-section-heading {
  padding: 6.4rem 0;
}

.p-top-member__header {
  display: none;
}

.p-top-member__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 75rem;
}
.p-top-member__content .item {
  width: 26%;
}
.p-top-member__content .item .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 20rem;
  height: 20rem;
  border-radius: 10rem;
  border: 1.2rem solid #fff;
}
.p-top-member__content .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-member__content .info {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.2rem;
}
.p-top-member__content .info .position {
  font-size: 1.6rem;
  padding: 0 0.4rem 0.4rem 0.4rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px dashed #fff;
}
.p-top-member__content .info .name {
  font-size: 2rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .p-top-member {
    padding: 2rem 0 15rem 0;
  }
  .p-top-member .p-section-heading {
    padding: 10rem 0 6.4rem 0;
  }
  .p-top-member__header {
    display: block;
    position: relative;
    height: 10rem;
  }
  .p-top-member__header img {
    position: absolute;
  }
  .p-top-member__header img.item-1 {
    width: 20%;
    top: 0;
    left: 6%;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
    -webkit-animation: swing-rondo 3s steps(2, end) infinite;
            animation: swing-rondo 3s steps(2, end) infinite;
  }
  .p-top-member__header img.item-2 {
    width: 27%;
    top: 0;
    left: 23%;
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
    -webkit-animation: swing-rondo 3s steps(2, end) infinite;
            animation: swing-rondo 3s steps(2, end) infinite;
  }
  .p-top-member__content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-member__content .item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2.4rem;
  }
  .p-top-member__content .item .info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 0;
    margin-left: 4rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-top-member__content .item .info .position {
    width: 100%;
  }
  .p-top-member__content .item .image {
    width: 17rem;
    height: 17rem;
    border-radius: 10rem;
    border: 1rem solid #fff;
  }
}
.p-top-service {
  background-color: #FDFCFC;
  padding-bottom: 28vw;
  position: relative;
}
.p-top-service .container {
  z-index: 1;
  position: relative;
}
.p-top-service .p-section-heading .en {
  color: #65A5E5;
}

.p-top-service__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top-service__block:not(:last-of-type) {
  margin-bottom: 14rem;
}
.p-top-service__block .p-top-service__content {
  width: 38%;
}
.p-top-service__block .p-top-service__content .name {
  line-height: 1;
  margin-bottom: 3.2rem;
}
.p-top-service__block .p-top-service__content .name span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-top-service__block .p-top-service__content .name span.jp {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.p-top-service__block .p-top-service__content .name span.en {
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.6;
}
.p-top-service__block .p-top-service__content .summary {
  padding-bottom: 2.4rem;
  margin-bottom: 3.2rem;
  border-bottom: 1px dashed var(--text-color);
  font-size: 2rem;
}
.p-top-service__block .p-top-service__content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.6rem;
  line-height: 1.5;
}
.p-top-service__block .p-top-service__content .info dt {
  width: 15rem;
  margin-right: 1.6rem;
  font-weight: 600;
}
.p-top-service__block .p-top-service__content .info dd {
  width: calc(100% - 16.6rem);
  margin-bottom: 1.4rem;
}
.p-top-service__block .p-top-service__visual {
  width: 54%;
}
.p-top-service__block .p-top-service__visual picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-service__footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 48rem;
  background: url(../img/top/bg_service.svg) no-repeat center bottom -2px;
  background-size: cover;
}
.p-top-service__footer img {
  position: absolute;
}
.p-top-service__footer img.item-1 {
  width: 8%;
  bottom: 4%;
  left: 8%;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-animation: swing 3s steps(2, end) infinite;
          animation: swing 3s steps(2, end) infinite;
}
.p-top-service__footer img.item-2 {
  width: 11%;
  bottom: 0;
  left: 15%;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  -webkit-animation: swing 3s steps(2, end) infinite;
          animation: swing 3s steps(2, end) infinite;
}
.p-top-service__footer img.item-3 {
  width: 10%;
  top: 3%;
  right: 6%;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  -webkit-animation: swing-rondo 3s steps(2, end) infinite;
          animation: swing-rondo 3s steps(2, end) infinite;
}

@media (max-width: 767px) {
  .p-top-service {
    padding-bottom: 24rem;
  }
  .p-top-service .p-section-heading {
    padding: 12rem 0 10rem 0;
  }
  .p-top-service__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-service__block:not(:last-of-type) {
    margin-bottom: 9rem;
  }
  .p-top-service__block .p-top-service__content {
    width: 100%;
    margin-bottom: 2.4rem;
  }
  .p-top-service__block .p-top-service__content .name span.jp {
    font-size: 2.6rem;
  }
  .p-top-service__block .p-top-service__content .name span.en {
    font-size: 1.4rem;
  }
  .p-top-service__block .p-top-service__content .summary {
    font-size: 1.7rem;
  }
  .p-top-service__block .p-top-service__content .info {
    font-size: 1.5rem;
    padding-left: 4%;
    padding-right: 4%;
  }
  .p-top-service__block .p-top-service__content .info dt,
  .p-top-service__block .p-top-service__content .info dd {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.32rem;
  }
  .p-top-service__block .p-top-service__content .info dd {
    margin-bottom: 1.6rem;
  }
  .p-top-service__block .p-top-service__visual {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .p-top-service__block .p-top-service__visual picture {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-service__footer {
    height: 14rem;
    background: url(../img/top/bg_service_sp.svg) no-repeat center bottom -2px;
    background-size: cover;
  }
  .p-top-service__footer img.item-1, .p-top-service__footer img.item-2 {
    display: none;
  }
  .p-top-service__footer img.item-3 {
    width: 33%;
    top: 0;
    right: 8%;
  }
}
.p-top-contact {
  padding: 0 0 20rem 0;
  background: #B9F0FF url(../img/top/bg_contact.svg) no-repeat center top;
  background-size: 100% auto;
}
.p-top-contact .p-section-heading {
  color: #fff;
  padding: 6rem 0;
}
.p-top-contact form {
  position: relative;
  background-color: #F5F3EE;
  max-width: 970px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem;
}
.p-top-contact form .p-form {
  margin-left: auto;
  margin-right: auto;
}

.p-top-contact__content {
  margin-top: 2.4rem;
}

.p-top-contact__char {
  position: absolute;
  width: 10%;
  left: 0;
  top: -10%;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-animation: swing 3s steps(2, end) infinite;
          animation: swing 3s steps(2, end) infinite;
}

@keyframes swing {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(25deg);
            transform: rotate(25deg);
  }
}
@media (max-width: 767px) {
  .p-top-contact {
    background: #B9F0FF url(../img/top/bg_contact_sp.svg) no-repeat center top;
    background-size: 100% auto;
    padding-bottom: 25rem;
  }
  .p-top-contact .p-section-heading {
    padding: 8rem 0 10rem;
  }
  .p-top-contact__content {
    margin-top: 16rem;
  }
  .p-top-contact__char {
    width: 22%;
    left: 5%;
    top: -5%;
  }
}
.p-loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  background: #fff;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.is_opened .p-loading {
  opacity: 0;
  visibility: hidden;
}

.p-gnavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-gnavi .p-gnavi__logo {
  display: none;
}
.p-gnavi .p-gnavi__index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-gnavi .p-gnavi__index li {
  font-weight: 600;
  list-style: none !important;
}
.p-gnavi .p-gnavi__index li:not(:last-of-type) {
  margin-right: 4rem;
}
.p-gnavi .p-gnavi__index li a {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
.p-gnavi .p-gnavi__index li a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.6;
}
.p-gnavi .p-gnavi__index li a .en {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.p-gnavi .p-gnavi__index li a .jp {
  font-size: 1.2rem;
}

.p-menu-btn {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  z-index: 1001;
  width: 58px;
  height: 58px;
  cursor: pointer;
  display: none;
}

.p-menu-btn span {
  display: block;
  width: 32px;
  height: 2px;
  background-color: #716060;
  position: absolute;
  z-index: 1;
  left: 13px;
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-open .p-menu-btn span {
  background-color: #716060 !important;
}

.p-menu-btn span.l1 {
  top: 16px;
  -webkit-animation: MenuTopCloseAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
          animation: MenuTopCloseAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

.p-menu-btn span.l2 {
  top: 27px;
}

.p-menu-btn span.l3 {
  top: 38px;
  -webkit-animation: MenuBottomCloseAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
          animation: MenuBottomCloseAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

.menu-open .p-menu-btn span.l1 {
  -webkit-animation: MenuTopOpenAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
          animation: MenuTopOpenAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

.menu-open .p-menu-btn span.l3 {
  -webkit-animation: MenuBottomOpenAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
          animation: MenuBottomOpenAnime cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
}

@-webkit-keyframes MenuTopOpenAnime {
  0% {
    top: 16px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    top: 27px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@keyframes MenuTopOpenAnime {
  0% {
    top: 16px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    top: 27px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@-webkit-keyframes MenuTopCloseAnime {
  0% {
    top: 27px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: 16px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes MenuTopCloseAnime {
  0% {
    top: 27px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: 16px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@-webkit-keyframes MenuBottomOpenAnime {
  0% {
    top: 38px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    top: 27px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@keyframes MenuBottomOpenAnime {
  0% {
    top: 38px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    top: 27px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@-webkit-keyframes MenuBottomCloseAnime {
  0% {
    top: 27px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: 38px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
@keyframes MenuBottomCloseAnime {
  0% {
    top: 27px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  50% {
    top: calc(50% - 1px);
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    top: 38px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.menu-open .p-menu-btn span.l2 {
  display: none;
}

@media (max-width: 767px) {
  .p-menu-btn {
    display: block;
  }
}
.p-form {
  padding: 10rem 0;
  max-width: 660px;
}
.p-form .p-form__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.4rem 0;
}
.p-form .p-form__block.privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 0;
}
.p-form .p-form__block.privacy a {
  text-decoration: underline;
}
.p-form .p-form__block.button {
  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;
  text-align: center;
  padding: 0;
}
.p-form .p-form__block.button .c-button {
  padding: 1.5rem 4rem 1.7rem 4rem;
  min-width: 27rem;
}
.p-form .p-form__block .label {
  width: 30%;
  min-width: 26rem;
  padding: 1rem 0;
}
.p-form .p-form__block .label .icon-required {
  margin-left: 0.4rem;
}
.p-form .p-form__block .control {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.wpcf7-form-control-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wpcf7-form-control.wpcf7-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wpcf7-list-item-label {
  margin-left: 0.8rem;
}

span.wpcf7-list-item {
  margin: 0;
}

.wpcf7 form .wpcf7-response-output,
div.wpcf7-response-output {
  border: none;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: initial;
}

.wpcf7 form .wpcf7-response-output {
  width: 100%;
  margin: 20px auto;
  color: #398f14;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  padding: 12px;
  border: none;
}

span.wpcf7-not-valid-tip,
.wpcf7-not-valid-tip-no-ajax {
  margin-top: 0.6rem;
}

.wpcf7 form.invalid .wpcf7-response-output,
div.wpcf7-validation-errors {
  color: #c00;
  font-weight: 700;
  border: none;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7-mail-sent-ok {
  color: #365899;
  font-weight: 700;
  border: none;
}

.wpcf7-not-valid {
  border-color: #98A6B5;
}

@media (max-width: 767px) {
  .p-form {
    font-size: var(--font-size-base-sp);
    width: 86%;
    padding: 8rem 0 6rem 0;
  }
  .p-form .p-form__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem 0;
  }
  .p-form .p-form__block .label {
    width: 100%;
    min-width: initial;
    font-size: 1.5rem;
  }
  .p-form .p-form__block .control {
    width: 100%;
    min-width: initial;
  }
  .p-form .p-form__block.privacy {
    -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;
    padding: 2rem 0 0 0;
  }
  .p-form .p-form__block.privacy .label {
    display: none;
  }
  .p-form .p-form__block.button .control {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .wpcf7 form .wpcf7-response-output {
    margin-top: 0 !important;
  }
}
.p-404 {
  text-align: center;
  padding-top: 20rem;
  padding-bottom: 10rem;
  background-color: #D2F5FC;
}

.p-404 h1 {
  line-height: 1;
  margin: 0 auto 8rem auto;
  font-family: var(--font-family-en);
  font-weight: 700;
}

.p-404 h1 span {
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.p-404 h1 span:first-of-type {
  font-size: 12rem;
  margin-bottom: 2rem;
  color: var(--color-green);
}

.p-404-content p {
  line-height: 2;
}

.p-404-back-navi {
  margin-top: 4rem;
}

.p-404-back-navi a {
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media (max-width: 767px) {
  .p-404 h1 span:first-of-type {
    font-size: 10rem;
    margin-bottom: 1rem;
  }
  .p-404 h1 span {
    font-size: 2rem;
  }
}
.p-gotop {
  width: 100px;
  height: 70px;
  position: fixed;
  right: 2.4rem;
  bottom: 92px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-gotop img.p-gotop__btn {
  width: 28%;
  margin-top: 2rem;
}
.p-gotop img.p-gotop__char {
  width: 66%;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  -webkit-animation: swing-dog 4s steps(2, end) infinite;
          animation: swing-dog 4s steps(2, end) infinite;
}

.is_scrolled .p-gotop {
  opacity: 1;
  visibility: visible;
}

.gotop_fixed .p-gotop {
  position: absolute;
  top: -199px;
  bottom: initial;
}

.p-section-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  padding: 12rem 0;
}
.p-section-heading span {
  display: block;
  text-align: center;
}
.p-section-heading span.en {
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.p-section-heading span.jp {
  font-weight: 600;
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  .p-section-heading {
    padding: 6rem 0;
  }
  .p-section-heading span.en {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
  .p-section-heading span.jp {
    font-size: 1.5rem;
  }
}
.p-page {
  padding-top: 22rem;
  padding-bottom: 14rem;
  background-color: #D2F5FC;
}

.p-page__head {
  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;
  padding: 0 0 12rem 0;
}
.p-page__head .p-page__head-title {
  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;
  text-align: center;
  line-height: 1;
}
.p-page__head .p-page__head-title .en {
  font-size: 5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.p-page__head .p-page__head-title .jp {
  font-weight: 600;
  font-size: 1.6rem;
  opacity: 0.6;
}

.p-page__body .container {
  max-width: 800px;
}

@media (max-width: 767px) {
  .p-page {
    padding-top: 17rem;
    padding-bottom: 10rem;
  }
  .p-page__head {
    padding-bottom: 10rem;
  }
  .p-page__head .p-page__head-title .en {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
  .p-page__head .p-page__head-title .jp {
    font-size: 1.5rem;
  }
}
.p-post-body {
  /* 見出し */
  /* 段落 */
  /* リスト */
  /* 画像 */
  /* レイアウト */
  /* カラム */
  /* 引用 */
  /* 表 */
  /* ギャラリー */
  /* 詩 */
  /* ボタン */
}
.p-post-body h1, .p-post-body h2, .p-post-body h3, .p-post-body h4, .p-post-body h5 {
  line-height: 1.5;
  margin-bottom: 2rem;
}
.p-post-body h1 {
  font-size: 3.6rem;
}
.p-post-body h2 {
  font-size: 2.6rem;
}
.p-post-body h3 {
  font-size: 2rem;
}
.p-post-body h4 {
  font-size: var(--font-size-base-pc);
}
.p-post-body h5 {
  font-size: var(--font-size-base-pc);
}
.p-post-body p {
  margin-bottom: 2.4rem;
}
.p-post-body p.none-margin {
  margin-bottom: 0;
}
.p-post-body .wp-block-list {
  padding-left: 2rem;
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-image {
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-image figcaption {
  font-size: 1.6rem;
  margin: 0.4rem 0 0 0;
}
.p-post-body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  padding: 0 8% 0 0;
}
.p-post-body .wp-block-media-text .wp-block-media-text__content {
  padding: 0 0 0 8%;
}
.p-post-body .wp-block-media-text .wp-block-media-text__content .has-large-font-size {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.p-post-body .wp-block-quote {
  overflow-wrap: break-word;
  background-color: #F0F0F0;
  padding: 4rem;
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-quote p {
  border: none;
  line-height: 1.65;
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-quote p:last-of-type {
  margin-bottom: 0;
}
.p-post-body .wp-block-quote cite {
  font-size: 1.6rem;
}
.p-post-body .wp-block-table {
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-table table {
  border-top: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
}
.p-post-body .wp-block-table table tr {
  border-bottom: 1px solid #C7C7C7;
}
.p-post-body .wp-block-table table tr td {
  border-right: 1px solid #C7C7C7;
  padding: 1rem 1.4rem;
}
.p-post-body .wp-block-table figcaption {
  font-size: 1.6rem;
  margin-top: 0.4rem;
}
.p-post-body .wp-block-gallery.has-nested-images figcaption {
  font-size: 1.6rem;
  margin: 0;
  position: relative !important;
  background: none !important;
  color: #000 !important;
  font-size: 12px !important;
  padding: 0 !important;
}
.p-post-body .wp-block-verse {
  margin-bottom: 2.4rem;
}
.p-post-body .wp-block-buttons .wp-block-button {
  margin-bottom: 1rem;
}
.p-post-body .wp-block-button__link {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  background-color: #fff;
  border: 2px solid #A0A0A0;
  color: var(--color-green);
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 1.6rem;
  padding: 1rem 1.6rem 1.3rem 1.6rem;
  border-radius: 100px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.p-post-body .wp-block-button__link:hover {
  background: var(--color-green);
  border-color: var(--color-green);
}
.p-post-body.container {
  max-width: 90rem;
}

/* 区切り線 */
.wp-block-separator {
  margin: 4rem 0;
  border: none !important;
  border-bottom: 1px solid #CDD6DD !important;
}

.page-feature .p-post-body.container {
  max-width: 138rem;
}

@media (max-width: 767px) {
  .p-post-body {
    /* 見出し */
    /* 画像 */
    /* レイアウト */
    /* ギャラリー */
    /* 引用 */
  }
  .p-post-body h1, .p-post-body h2, .p-post-body h3, .p-post-body h4, .p-post-body h5 {
    margin-bottom: 1.5rem;
  }
  .p-post-body h1, .p-post-body h2, .p-post-body h3, .p-post-body h4, .p-post-body h5 {
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .p-post-body h1 {
    font-size: 2rem;
  }
  .p-post-body h2 {
    font-size: 1.8rem;
  }
  .p-post-body h3 {
    font-size: 1.6rem;
  }
  .p-post-body h4 {
    font-size: var(--font-size-base-sp);
  }
  .p-post-body h5 {
    font-size: var(--font-size-base-sp);
  }
  .p-post-body .wp-block-image {
    margin-bottom: 2.4rem;
  }
  .p-post-body .wp-block-image figcaption {
    font-size: 1.2rem;
  }
  .p-post-body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
  .p-post-body .wp-block-media-text .wp-block-media-text__content {
    padding: 12px 0 0 0;
  }
  .p-post-body .wp-block-gallery.has-nested-images figcaption {
    font-size: 1.2rem;
  }
  .p-post-body .wp-block-quote {
    padding: 2rem;
  }
}
.fadeIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1), -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}

.fadeIn.inview {
  opacity: 1;
}

.fadeUpIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.fadeUpIn.inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.maskIn {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.maskIn.inview {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.blurIn {
  -webkit-animation-name: blurInAnime;
          animation-name: blurInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

@-webkit-keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.show-mobile-inline,
.show-mobile {
  display: none;
}

.hide-mobile {
  display: block;
}

.hide-mobile-inline {
  display: inline-block;
}

@media (max-width: 767px) {
  .show-mobile {
    display: block;
  }
  .show-mobile-inline {
    display: inline-block;
  }
  .hide-mobile {
    display: none;
  }
  .hide-mobile-inline {
    display: none;
  }
  .br-mobile {
    display: block !important;
  }
}/*# sourceMappingURL=style.css.map */