@charset "UTF-8";
/*! sanitize.css v3.0.0 | CC0 1.0 Public Domain | github.com/10up/sanitize.css */
/*
 * Normalization
 */
audio:not([controls]) {
  display: none;
  /* Chrome 44-, iOS 8+, Safari 9+ */
}

button {
  overflow: visible;
  /* Internet Explorer 11- */
  -webkit-appearance: button;
  /* iOS 8+ */
}

details {
  display: block;
  /* Edge 12+, Firefox 40+, Internet Explorer 11-, Windows Phone 8.1+ */
}

html {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  /* Edge 12+, Internet Explorer 11- */
  overflow-y: scroll;
  /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%;
  /* iOS 8+ */
}

input {
  -webkit-border-radius: 0;
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* iOS 8+ */
}

input[type="search"] {
  -webkit-appearance: textfield;
  /* Chrome 45+, Safari 9+ */
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Chrome 45+, Safari 9+ */
}

main {
  display: block;
  /* Android 4.3-, Internet Explorer 11-, Windows Phone 8.1+ */
}

pre {
  overflow: auto;
  /* Internet Explorer 11- */
}

progress {
  display: inline-block;
  /* Internet Explorer 11-, Windows Phone 8.1+ */
}

small {
  font-size: 75%;
  /* All browsers */
}

summary {
  display: block;
  /* Firefox 40+, Internet Explorer 11-, Windows Phone 8.1+ */
}

svg:not(:root) {
  overflow: hidden;
  /* Internet Explorer 11- */
}

template {
  display: none;
  /* Android 4.3-, Internet Explorer 11-, iOS 7-, Safari 7-, Windows Phone 8.1+ */
}

textarea {
  overflow: auto;
  /* Edge 12+, Internet Explorer 11- */
}

[hidden] {
  display: none;
  /* Internet Explorer 10- */
}

/*
 * Universal inheritance
 */
*,
:before,
:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  font-size: inherit;
  line-height: inherit;
}

:before,
:after {
  text-decoration: inherit;
  vertical-align: inherit;
}

/*
 * Opinionated defaults
 */
/* specify the border style and width of all elements */
*,
:before,
:after {
  border-style: solid;
  border-width: 0;
}

/* specify the core styles of all elements */
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

/* specify the root styles of the document */
:root {
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000000;
  cursor: default;
  font: 100%/1.5 sans-serif;
  text-rendering: optimizeLegibility;
}

/* specify the text decoration of anchors */
a {
  text-decoration: none;
}

/* specify the alignment of media elements */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/* specify the background color of form elements */
button,
input,
select,
textarea {
  background-color: transparent;
}

/* specify the inherited color and font of form elements */
button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

/* specify the minimum height of form elements */
button,
[type="button"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="reset"],
[type="search"],
[type="submit"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
  min-height: 1.5em;
}

/* specify the font family of code elements */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/* specify the list style of nav lists */
nav ol,
nav ul {
  list-style: none;
}

/* specify the standard appearance of selects */
select {
  -moz-appearance: none;
  /* Firefox 40+ */
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
  /* Edge 12+, Internet Explorer 11- */
}

select::-ms-value {
  color: currentColor;
  /* Edge 12+, Internet Explorer 11- */
}

/* specify the border styling of tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* specify the resizability of textareas */
textarea {
  resize: vertical;
}

/* specify the background color, font color, and drop shadow of text selections */
::-moz-selection {
  background-color: #b3d4fc;
  /* required when declaring ::selection */
  color: #4c2b03;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* required when declaring ::selection */
  color: #4c2b03;
  text-shadow: none;
}

/* specify the progress cursor of updating elements */
[aria-busy="true"] {
  cursor: progress;
}

/* specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* specify the style of visually hidden yet accessible elements */
[hidden][aria-hidden="false"] {
  clip: rect(0 0 0 0);
  display: inherit;
  position: absolute;
}

[hidden][aria-hidden="false"]:focus {
  clip: auto;
}
@-webkit-keyframes move {
  0% {
    margin-left: -50px;
  }
  100% {
    margin-left: 0px;
  }
}
@keyframes move {
  0% {
    margin-left: -50px;
  }
  100% {
    margin-left: 0px;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

#animation {
  margin: 50px 0;
  font-size: 40px;
  font-weight: bold;
  color: #ff0000;
}

.fadein {
  opacity: 0;
}

.fadeInDown {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*  ------サブページ------  */
.page-article {
  padding: 15rem 0 5rem;
}

.page-article__title {
  color: #fff;
  margin: 3rem 0;
}

.page-article__title-ja, .page-article__title-en {
  display: block;
  text-align: center;
}

.page-article__title-ja {
  font-size: 2.2rem;
  font-weight: 200;
  margin-bottom: 2.6rem;
}

@media screen and (min-width: 640px) {
  .page-article__title-ja {
    font-size: 3rem;
  }
}

.page-article__title-en {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .1rem;
}

@media screen and (min-width: 640px) {
  .page-article__title-en {
    font-size: 2rem;
  }
}

/*********************/
/*  見出し  */
/*********************/
.post-type-page {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.post-type-page p {
  margin-top: 1rem;
  line-height: 2;
  font-weight: normal;
}

.post-type-page a:not([class]) {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
}

.post-type-page a:not([class]):hover {
  opacity: .7;
}

.post-type-page .h2 {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: dotted 4px #fff;
  padding-bottom: 2rem;
  margin: 50px 0 30px;
}

@media screen and (min-width: 640px) {
  .post-type-page .h2 {
    font-size: 2.4rem;
    margin: 80px 0 50px;
  }
}

.post-type-page .h3 {
  position: relative;
  font-size: 2.3rem;
  font-weight: 400;
  padding-bottom: 2rem;
  margin: 50px 0 30px;
  text-align: center;
  letter-spacing: 0.15em;
}

.post-type-page .h3:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  content: '';
  width: 50px;
  height: 1px;
  background: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 640px) {
  .post-type-page .h3 {
    font-size: 2.8rem;
    margin: 80px 0 50px;
  }
}

.post-type-page .ul {
  list-style: none;
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 0 0 0 1.5rem;
}

@media screen and (min-width: 640px) {
  .post-type-page .ul {
    margin-top: 50px;
    font-size: 1.6rem;
    padding: 0 0 0 3.5rem;
  }
}

.post-type-page .ul li {
  position: relative;
  padding: 0 0 0 2rem;
  font-weight: 400;
}

.post-type-page .ul li:not(:first-child) {
  margin-top: 3rem;
}

.post-type-page .ul li::before {
  content: ' ';
  display: inline-block;
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
}

@media screen and (min-width: 640px) {
  .post-type-page .ul li::before {
    top: 1.3rem;
  }
}

.post-type-page .ol {
  list-style: none;
  margin-top: 30px;
  counter-reset: number 0;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
  padding: 0 0 0 1.5rem;
}

@media screen and (min-width: 640px) {
  .post-type-page .ol {
    margin-top: 50px;
    font-size: 1.6rem;
    padding: 0 0 0 3.5rem;
  }
}

.post-type-page .ol li {
  position: relative;
  padding: 0 0 0 2.5rem;
  font-weight: 400;
}

.post-type-page .ol li:not(:first-child) {
  margin-top: 3rem;
}

.post-type-page .ol li::before {
  font-family: 'Lora', serif;
  counter-increment: number 1;
  content: counter(number) ".";
  display: inline-block;
  position: absolute;
  top: 1rem;
  left: 0;
  line-height: 0.7;
  font-weight: 400;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
}

@media screen and (min-width: 640px) {
  .post-type-page .ol li::before {
    font-size: 2rem;
  }
}

.post-type-page .table {
  width: 100%;
  margin: 50px;
  padding: 1.5rem;
  border: 1px solid #000;
  font-size: 1.4rem;
}

@media screen and (min-width: 640px) {
  .post-type-page .table {
    font-size: 1.6rem;
  }
}

.post-type-page .table tr:not(:last-child) {
  border-bottom: 1px solid #000;
}

.post-type-page .table th {
  text-align: left;
  vertical-align: top;
  padding: 1rem 0 1rem 1rem;
}

@media screen and (min-width: 640px) {
  .post-type-page .table th {
    padding: 1.5rem 0 1.5rem 2.5rem;
  }
}

.post-type-page .table td {
  padding: 1rem 0 1rem 1rem;
}

@media screen and (min-width: 640px) {
  .post-type-page .table td {
    padding: 1.5rem 0 1.5rem 2.5rem;
  }
}

.post-type-page .span-br {
  display: inline-block;
}

.post-type-page .box {
  background: rgba(255, 255, 255, 0.4);
  margin-top: 50px;
  padding: 1.5rem 2rem;
  overflow: hidden;
}

@media screen and (min-width: 640px) {
  .post-type-page .box {
    padding: 3rem 4rem;
  }
}

.post-type-page .target p {
  margin: 2rem 0;
}

.post-type-page .price {
  width: 100%;
  max-width: 680px;
  margin: 3.5rem auto;
  table-layout: fixed;
}

.post-type-page .price table,
.post-type-page .price th,
.post-type-page .price tr,
.post-type-page .price td {
  border: solid 1px #144F97;
  font-size: 1.4rem;
  padding: 1rem;
}

.post-type-page .price th {
  text-align: left;
  font-weight: bold;
}

.post-type-page .price .item-01 {
  width: 14rem;
}

.post-type-page .price .item-02 {
  width: 20rem;
}

.post-type-page .price .item-bold {
  font-size: 1.6rem;
}

.post-type-page .attention {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-top: 2rem;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.row__item {
  width: 100%;
}

.row__item--mobile-1 {
  width: 8.33333%;
}

.row__item--mobile-2 {
  width: 16.66667%;
}

.row__item--mobile-3 {
  width: 25%;
}

.row__item--mobile-4 {
  width: 33.33333%;
}

.row__item--mobile-5 {
  width: 41.66667%;
}

.row__item--mobile-6 {
  width: 50%;
}

.row__item--mobile-7 {
  width: 58.33333%;
}

.row__item--mobile-8 {
  width: 66.66667%;
}

.row__item--mobile-9 {
  width: 75%;
}

.row__item--mobile-10 {
  width: 83.33333%;
}

.row__item--mobile-11 {
  width: 91.66667%;
}

.row__item--mobile-12 {
  width: 100%;
}

.row__item--mobile-fifth {
  width: 20%;
}

@media screen and (min-width: 640px) {
  .row__item--tablet-1 {
    width: 8.33333%;
  }
}

@media screen and (min-width: 640px) {
  .row__item--tablet-2 {
    width: 16.66667%;
  }
}

@media screen and (min-width: 640px) {
  .row__item--tablet-3 {
    width: 25%;
  }
}

@media screen and (min-width: 640px) {
  .row__item--tablet-4 {
    width: 33.33333%;
  }
}

@media screen and (min-width: 640px) {
  .row__item--tablet-5 {
    width: 41.66667%;
  }
}

@media screen and (min-width: 640px) {
  .row__item--tablet-6 {
    width: 50%;
  }
}

@media screen and (min-width: 640px) {
  .row__item--tablet-7 {
    width: 58.33333%;
  }
}

@media screen and (min-width: 640px) {
  .row__item--tablet-8 {
    width: 66.66667%;
  }
}

@media screen and (min-width: 640px) {
  .row__item--tablet-9 {
    width: 75%;
  }
}

@media screen and (min-width: 640px) {
  .row__item--tablet-10 {
    width: 83.33333%;
  }
}

@media screen and (min-width: 640px) {
  .row__item--tablet-11 {
    width: 91.66667%;
  }
}

@media screen and (min-width: 640px) {
  .row__item--tablet-12 {
    width: 100%;
  }
}

@media screen and (min-width: 640px) {
  .row__item--tablet-fifth {
    width: 20%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-1 {
    width: 8.33333%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-2 {
    width: 16.66667%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-3 {
    width: 25%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-4 {
    width: 33.33333%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-5 {
    width: 41.66667%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-6 {
    width: 50%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-7 {
    width: 58.33333%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-8 {
    width: 66.66667%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-9 {
    width: 75%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-10 {
    width: 83.33333%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-11 {
    width: 91.66667%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-12 {
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .row__item--desktop-fifth {
    width: 20%;
  }
}

.row--std {
  margin: -10px;
}

.row--std .row__item {
  padding: 10px;
}

.row--wide {
  margin: -10px;
}

@media screen and (min-width: 640px) {
  .row--wide {
    margin: -20px;
  }
}

.row--wide .row__item {
  padding: 10px;
}

@media screen and (min-width: 640px) {
  .row--wide .row__item {
    padding: 20px;
  }
}

@media screen and (max-width: 639px) {
  .row--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.row--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.row--right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.row--align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 640px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .container {
    max-width: 1064px;
  }
}

:root {
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
  -webkit-font-feature-settings: "pkna";
          font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
}

p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: .05em;
}

@media screen and (min-width: 1024px) {
  p {
    font-size: 1.6rem;
  }
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

:focus {
  outline: 0;
}

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

@media screen and (max-width: 639px) {
  .hidden-mobile {
    display: none;
  }
}

@media screen and (min-width: 640px) and (max-width: 1023px) {
  .hidden-tablet {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .hidden-desktop {
    display: none;
  }
}

.alignleft,
.alignright,
.aligncenter {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1em auto;
}

@media screen and (min-width: 640px) {
  .alignleft {
    float: left;
    margin: 0 1em 0 0;
  }
}

@media screen and (min-width: 640px) {
  .alignright {
    float: right;
    margin: 0 0 0 1em;
  }
}

img.aligncenter {
  max-width: 100%;
  height: auto;
}

.container {
  padding: 0 2rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
}

.loader__icon {
  position: absolute;
  border-left: 2px solid #000;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  border-right: 2px solid rgba(0, 0, 0, 0.2);
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  height: 46px;
  width: 46px;
  left: 50%;
  top: 50%;
  margin: -23px 0 0 -23px;
  text-indent: -9999em;
  font-size: 10px;
  z-index: 9999;
  -webkit-animation: load 0.8s infinite linear;
          animation: load 0.8s infinite linear;
}

.loader__icon, .loader__icon:after {
  border-radius: 50%;
  width: 46px;
  height: 46px;
}

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

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 100;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background: linear-gradient(rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

.nav-list {
  width: 100%;
  font-size: 1.2rem;
  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;
  letter-spacing: .1em;
}

@media screen and (min-width: 640px) {
  .nav-list {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 639px) {
  .nav-list--sub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .nav-list--sub .nav-list__link {
    margin: 0.5rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .nav-list {
    font-size: 1.6rem;
  }
}

.nav-list__item {
  margin: 0 10px;
}

@media screen and (min-width: 1024px) {
  .nav-list__item {
    margin: 0 20px;
  }
}

.nav-list__item--btn {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.2)));
  background: linear-gradient(rgba(255, 255, 255, 0.2));
  padding: 0.2rem 1.8rem;
  border: solid 1px #fff;
  border-radius: 30px;
}

@media screen and (min-width: 1024px) {
  .nav-list__item--btn {
    padding: 1.2rem 1.8rem;
    border-radius: 28px;
  }
}

.nav-list__link {
  display: block;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.section {
  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;
  min-height: 100vh;
  padding: 10rem 0;
}

.section__title {
  position: relative;
  width: 100%;
  font-size: 4rem;
  font-weight: normal;
  text-align: center;
  letter-spacing: .25em;
  margin: 0 auto 5rem;
  padding-bottom: 2rem;
  background: no-repeat center bottom;
  background-size: 420px 60px;
}

@media screen and (min-width: 1024px) {
  .section__title {
    width: 440px;
    height: 100px;
    margin: 0 auto 10rem;
  }
}

.section__title-text {
  height: 18px;
}

@media screen and (min-width: 1024px) {
  .section__title-text {
    height: 40px;
  }
}

.section__title-svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -150px;
  width: 300px;
  max-width: 440px;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}

@media screen and (min-width: 1024px) {
  .section__title-svg {
    width: 440px;
    height: 60px;
    margin-left: 0;
    left: 0;
  }
}

.section__title-svg--active {
  -webkit-animation: 1s wave cubic-bezier(0.4, 0, 1, 1) forwards;
          animation: 1s wave cubic-bezier(0.4, 0, 1, 1) forwards;
}

.hero {
  min-height: 100vh;
}

@-webkit-keyframes wave {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes wave {
  100% {
    stroke-dashoffset: 0;
  }
}

.hero__title {
  text-align: center;
}

.hero__title svg {
  width: 180px;
  height: 100px;
  fill: #fff;
}

@media screen and (min-width: 640px) {
  .hero__title svg {
    width: 360px;
    height: 200px;
  }
}

.concept {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1000px;
  width: 100%;
}

@media screen and (min-width: 640px) {
  .concept {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.concept__media {
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 640px) {
  .concept__media {
    max-width: 300px;
  }
}

@media screen and (max-width: 639px) {
  .concept__media img {
    width: 140px;
    height: auto;
    margin: 0 auto 3rem;
  }
}

.concept__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  letter-spacing: .1em;
}

@media screen and (min-width: 1024px) {
  .concept__body {
    padding: 0 5rem;
  }
}

.concept p:not(:first-child) {
  margin-top: 1em;
}

.concept .copy {
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 2.6rem;
}

.concept .name {
  text-align: right;
}

.company-data {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.company-data dt,
.company-data dd {
  font-size: 1.4rem;
  font-weight: normal;
  padding-top: 10px;
  line-height: 30px;
}

@media screen and (min-width: 1024px) {
  .company-data dt,
  .company-data dd {
    font-size: 1.6rem;
  }
}

.company-data dt {
  font-weight: bold;
}

@media screen and (min-width: 1024px) {
  .company-data dt {
    padding-bottom: 10px;
  }
}

.company-data dd {
  padding-bottom: 20px;
  background: no-repeat center bottom;
  background-size: 100% 10px;
}

@media screen and (min-width: 1024px) {
  .company-data dd {
    padding-left: 140px;
    margin-top: -50px;
    background-size: 680px 10px;
  }
}

.company-data dd:nth-of-type(odd) {
  background-image: url(../images/border1.svg);
}

.company-data dd:nth-of-type(even) {
  background-image: url(../images/border2.svg);
}

.form-data {
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
}

.form-data dt,
.form-data dd {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 30px;
}

@media screen and (min-width: 1024px) {
  .form-data dt,
  .form-data dd {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.form-data dt:not(:first-child) {
  margin-top: 20px;
}

@media screen and (min-width: 1024px) {
  .form-data dt:not(:first-child) {
    margin-top: 0;
  }
}

@media screen and (min-width: 1024px) {
  .form-data dd {
    padding-left: 140px;
    margin-top: -50px;
  }
}

.form-data input,
.form-data textarea {
  width: 100%;
  line-height: 34px;
  padding: 5px 20px;
  border: 1px solid #fff;
  border-radius: 22px;
}

.form-data input::-webkit-input-placeholder,
.form-data textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-data input:-ms-input-placeholder,
.form-data textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-data input::-ms-input-placeholder,
.form-data textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-data input::placeholder,
.form-data textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

input.wpcf7-form-control.wpcf7-submit {
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: block;
  border: solid 1px #fff;
  width: 260px;
  padding: 1rem;
  border-radius: 50px;
  margin: 3rem auto 0;
}

div.wpcf7-validation-errors {
  border: none;
  text-align: center;
  text-decoration: underline;
  font-size: 1.8rem;
  margin-top: 0;
}

span.wpcf7-not-valid-tip {
  color: #ffa2a2;
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
}

.checkbox-text {
  display: block;
  text-align: center;
}

.checkbox-text label {
  cursor: pointer;
}

.pptext {
  display: block;
  margin: 2rem 0 0;
  text-align: center;
}

.pptext a {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.main {
  position: relative;
}

.footer {
  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;
  font-size: 1.4rem;
}

.copyright {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 640px) {
  .copyright {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (max-width: 639px) {
  .copyright__txt {
    margin-top: 2rem;
  }
}

.copyright__link {
  font-size: 1.4rem;
  color: #fff;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/bg.jpg) no-repeat center top;
  background-size: cover;
  z-index: -1;
}

.bubble {
  position: absolute;
  bottom: 10%;
  left: 10%;
  display: block;
  width: 6px;
  height: 6px;
}

@media screen and (min-width: 1024px) {
  .bubble {
    width: 20px;
    height: 20px;
  }
}

.bubble img {
  max-width: 100%;
  height: auto;
}

.bubble:nth-child(1) {
  bottom: 10%;
  left: 90%;
}

.bubble:nth-child(2) {
  bottom: 20%;
  left: 88%;
}

.bubble:nth-child(3) {
  bottom: 10%;
  left: 34%;
}

.bubble:nth-child(4) {
  bottom: 28%;
  left: 80%;
}

.bubble:nth-child(5) {
  bottom: 30%;
  left: 25%;
  width: 10px;
  height: 10px;
}

.bubble:nth-child(6) {
  bottom: 20%;
  left: 70%;
  width: 10px;
  height: 10px;
}

.bubble:nth-child(7) {
  bottom: 5%;
  left: 30%;
}

.bubble:nth-child(8) {
  bottom: -12%;
  left: 13%;
  width: 10px;
  height: 10px;
}

.bubble:nth-child(9) {
  bottom: -23%;
  left: 88%;
}

.bubble:nth-child(10) {
  bottom: 18%;
  left: 65%;
  width: 10px;
  height: 10px;
}

.bubble:nth-child(11) {
  bottom: -10%;
  left: 52%;
  width: 10px;
  height: 10px;
}

.bubble:nth-child(12) {
  bottom: -5%;
  left: 12%;
  width: 10px;
  height: 10px;
}

.bubble:nth-child(13) {
  bottom: -10%;
  left: 23%;
  width: 10px;
  height: 10px;
}

.mayu {
  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;
  width: 100%;
  height: 248px;
  font-size: 1.5rem;
  color: #AAC2DC;
  background: url(../images/mayu.png) no-repeat center top;
  background-size: 100%;
  margin: 50px auto 0;
}

@media screen and (min-width: 640px) {
  .mayu {
    width: 386px;
    height: 248px;
  }
}

.ito {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 100px;
  height: 100%;
  background: url(../images/ito.svg) repeat-y center 0;
  background-size: 100px 1000px;
  opacity: .3;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: 16s scrolling linear infinite;
          animation: 16s scrolling linear infinite;
}

@-webkit-keyframes scrolling {
  0% {
    background-position: center 0;
  }
  100% {
    background-position: center -1000px;
  }
}

@keyframes scrolling {
  0% {
    background-position: center 0;
  }
  100% {
    background-position: center -1000px;
  }
}

.children-card {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.2);
  letter-spacing: .05rem;
  margin-top: 1.5rem;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

@media screen and (min-width: 640px) {
  .children-card {
    padding: 25px;
  }
}

.children-card__title {
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
}

@media screen and (min-width: 640px) {
  .children-card__title {
    font-size: 19px;
  }
}

.children-card__caption {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
}

.children-card:hover {
  opacity: 0.7;
}

.pagetitle-img {
  margin-bottom: 5rem;
}

@media screen and (min-width: 1024px) {
  .pagetitle-img {
    margin-bottom: 9rem;
  }
}

.pagetitle-img img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1023px) {
  .pagetitle-img img {
    max-height: 35px;
  }
}

@media screen and (min-width: 1024px) {
  .pagetitle-img img {
    max-width: 510px;
  }
}
